/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    border: initial;
    background-color: initial;
    color: inherit;
    font: inherit;
    outline: none;
}

body {
    background-color:#b8d0e4;
}





/* BASE Styles */

.app {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #0f021d;
    height: 100vh;
    width: 100vw;
    background-color:#b8d0e4;
}

.app__container {
    display: flex;
    height: calc(100vh - 55px);
}


.header {
    background-image: linear-gradient(to right, #18A0BE, #622DB9);
    height: 55px;
    display: flex;
    
        a:link {
        color: pink;
        background-color: transparent;
        text-decoration: none;
      }
      
      a:visited {
        color: orange;
        background-color: transparent;
        text-decoration: none !important;
      }
      
      a:hover {
        color: blue;
        background-color: transparent;
        text-decoration: underline;
      }
      
      a:active {
        color: cyan;
        background-color: transparent;
        text-decoration: underline;
      }
}

.logo {
    align-self: center;
    margin-left: 20px;
    margin-right: 30px;
    animation: fade-in-from-top 0.5s ease-in-out;
}

.dd-toggle {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 13px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    animation: fade-in-from-top 0.5s ease-in-out;
}

.dd-toggle:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.07);

}

.dd-toggle:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.07);

}

.dd-toggle:nth-of-type(9) {
    margin-left: auto;
    padding: 0 20px;
}
.dd-toggle:last-child {
    display: flex;
    align-items: center;
}

.dd-toggle__icon {

}

.dd-toggle__img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.dd-toggle__text {

}

/* --------------- */

.sidebar {
    background-color: #10171A;
    width: 75px;
    display: flex;
    flex-direction: column;
    height: 2800px;
}

.menu {

}

.menu__button {
    padding: 19px 0;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: all 0.4s ease-in-out;
    animation: fade-in-from-left 0.5s ease-in-out;
    
      a:link {
        color: red;
        background-color: transparent;
        text-decoration: none;
      }
      
      a:visited {
        color: cyan;
        background-color: transparent;
        text-decoration: none !important;
      }
      
      a:hover {
        color: blue;
        background-color: transparent;
        text-decoration: underline;
      }
      
      a:active {
        color: orange;
        background-color: transparent;
        text-decoration: underline;
      }
}

.menu__button a {
	color: #e1ebee;
	text-decoration:none;
    font-size: smaller;
	}

.menu__button--active {
    background-color: #2B363B;
    color: #fff;
    position: relative;
}

.menu__button:hover {
    background-color: #2B363B;
    color: #fff;
    cursor: pointer;
}

.menu__button:focus {
    background-color: #2B363B;
    color: #fff;
    cursor: pointer;
}

.menu__button--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #18A0BE;

}

.menu__icon {
    font-size: 18px;
    margin-bottom: 3px;
}

.menu__text {
    font-size: 12px;
    font-weight: 500;
}

.footer {
    margin-top: auto;
    margin-bottom: 60px;
    transform: rotate(-90deg);

}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    white-space: nowrap;
}

/* --------------- */


.panel {
    background-color: #2B363C;
    width: 350px;
    padding: 15px 31px;
}

.panel__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #4b5155;
    padding-bottom: 12px;
}

.first-heading {
    font-size: 18px;
    font-weight: 400;

}

.panel__collapse-icon {
    color: #6B7276;
    cursor: pointer;
}

.panel__images {
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.panel__img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    animation: fade-in 1s;
}

.panel__img:nth-child(2) {
    animation: fade-in 1s 0.1s backwards;
}

.panel__img:nth-child(3) {
    animation: fade-in 1s 0.2s backwards;
}

.panel__img:nth-child(4) {
    animation: fade-in 1s 0.3s backwards;
}

.panel__img:nth-child(5) {
    animation: fade-in 1s 0.4s backwards;
}

.panel__img:hover {
    transform: scale(1.05);
    opacity: 0.7;
    
}

.panel__btn {
    width: 140px;
    height: 140px;
    border-radius: 7px;
    background-color: #333e44;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    animation: fade-in 1s 0.5s backwards;
}

.panel__btn:hover, 
.panel__btn:focus {
    background-color: #404c52;
}

.panel_upload-icon {
    font-size: 25px;
    color: #21292d;
}



/* ---------------- */

.main {
    background-color:#b8d0e4;
    flex: 1;
}

.info-bar {
    height: 50px;
    background-color:#b8d0e4;
    border-bottom: 1px solid #D6DDE1;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumbs {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.breadcrumbs__link {
    color: #A6ADB1;
    text-decoration: none;
}

.breadcrumbs__icon {
    color: #A6ADB1;
    margin: 0 13px;
}

.breadcrumbs__name {
    color: #2E3335;
    font-weight: 500;
}

.button {
    background-color: #375BB6;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 500px;
    transition: all 0.4s;
}

.button:hover,
.button:focus {
    background-color: #26438D;
}



.artboard {
    height: calc(90vh - 50px - 55px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    column-gap: 20px;
}

.canvas {
    height: 57.5vh;
    width: 48.6vw;
    position: relative;
    border: none;

}

.canvas__bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.canvas__fg-img {
    height: 75%;
    width: 78%;
    object-fit: cover;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    cursor: grab;
    animation: make-smaller 1s 0.2s backwards;
}

.canvas__circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    animation: fade-in 1s 1s backwards;
}

.canvas__circle:nth-of-type(1) {
    top: 11.5%;
    left: 10.4%;
    cursor:  nw-resize;
}

.canvas__circle:nth-of-type(2) {
    top: 11.5%;
    right: 10.4%;
    cursor:  sw-resize;
}
.canvas__circle:nth-of-type(3) {
    bottom: 11.5%;
    left: 10.4%;
    cursor:  nw-resize;
}
.canvas__circle:nth-of-type(4) {
    bottom: 11.5%;
    right: 10.4%;
    cursor:  sw-resize;
}

.tools {
    height: 57.5vh;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    animation: fade-in-from-right 0.5s ease-in-out;
}


.tool {
    background-color: #E1E6E9;
    height: 44px;
    width: 44px;
    border-radius: 8px;
    color: #404446;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.tool--active {
    background-color: #2B363B;
    color: #fff;
 
}
.tool:last-child {
    margin-top: auto;
}

.tool:hover,
.tool:focus {
    background-color: #2B363B;
    color: #fff;

}

.tool__icon {

}



  .submenu__navbar {
    float: left;
    overflow: hidden;
  }
  
  .submenu__navbar__btn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: rgb(117, 218, 231);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  

  
  .submenu__navbar a:hover, .submenu__navbar:hover .submenu__navbar__btn {
    background-color: #2e6379;
  }
  
  .subnav-content {
    display: none;
    position: absolute;
    background-color: #2e6379;
    width: 60%;
  }
  
  .subnav-content a {
    float: left;
    color: rgb(99, 235, 228);
    text-decoration: none;
  }
  
  .submenu__navbar:hover .subnav-content {
    display: block;
  }

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color: rgba(192, 203, 238, 0.7);
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropbtn {
  background-color: rgba(255, 255, 255, 0.7);
}

.dropbtn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none; 
  border-radius: 4px;
  cursor: pointer;
}


.button1 {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 5px 7px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 12px;
transition-duration: 0.4s;
border: 2px solid #4CAF50;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
margin-bottom: 10px;
}		
					
.truckroll {
background-color: #6e8da7;
color: #0f041f;
border: 2px solid gray ;
border-radius: 16px;
width: 800px;
margin: 0 0 20 1200px;
position: absolute;
}
.container {
background-color: #b8d0e4;

font-family: 'Inter', sans-serif;
margin-left: 100px;
margin-right: 100px;
margin-top: 750px;
position: absolute;
}

.un {
text-decoration: underline;
}

.U {

   text-transform: uppercase;

}

.Italic {
    font-style: italic;
}

.Bold {
    font-weight: bold;
}

.red {
    color: rgb(81, 15, 82);
}

.Links__Top {
	margin: -40px 0 0 20px;
    color: #0d0121;
	
	}

.oem { 
	font-family: arial; 
	font-size: 12pt; 
	font-weight: bold;
        color: #0d0121; 
	}
	
.title {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 16pt; 
	font-weight: bold;
	padding-top: 17px;
	color: blue;
	}

    .Links__Top {
	margin: -40px 0 0 20px;
	
	}


    .Home__button {
        background-color: #4CAF50; /* Green */
        border: none;
        color: white;
        padding: 5px 7px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 10px;
        border-radius: 12px;
        transition-duration: 0.4s;
        border: 2px solid #4CAF50;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        margin-bottom: 10px;
        }
    
      .Home__button a {
        color: #6597e8;
        text-decoration: none;
        font-size: extra-small;
        }
    
.TR__container {
    color:#0d0121;
    font-family: 'Inter', sans-serif;
    margin: 800px 0 0 100px;

}

@media (max-width: 1200px) {

    .app__container {
        height: initial;
        min-height: 100vh;
    }

    .panel {
        display: none;
    }

    .canvas {
        width: 67vw;
    }

    .canvas img {
        width: 200px;
        height: 120px;
    }
}
        
