@keyframes growthUp {
    from {
        
        left: -300px;
    }
    to {
       
        left: 0;
    }
}
@keyframes growthOut {
    to {
        opacity: 1;
        left: 0;
    }
}
.drop-down {
    background-color: #C6D7EB;
    color: #0D132C;
    padding: 10px 20px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    display: none;
    position: fixed;
    top: 15%;
    z-index: 5;
    animation: growthUp ease-in .3s, growthOut linear 1s 2s forwards;
    font-family: Roboto;
}

.label {
    display: flex;
    align-items: center;
}

.label h3 {
    margin: 5px;
    font-size: 15px;
    font-weight: 700;
}
.images {
    display: flex;
    justify-content: center;
}
.img__cv {
    width: 120px; 
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.img__cv:first-child {
    margin-right: 15px;
}
.img__cv:hover {
    /* border: 2px solid #777; */
    
    transform: scale(1.1);
    transition: all 0.3s;
}
.tranparent {
    width: 180px;
    height: 30px;
    background-color: transparent;
    position: absolute;
    z-index: 3;
    transform: translateY(-30px);
}
.leftDrawer__desktop-btn {
    position: absolute;
    left: 100%;
    top: 50%;
    height: 80px;
    align-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.leftDrawer__desktop-btn i{
    font-size: 15px;
}
.container__color.active {
    border: 1px solid #5b805b;
}
.template__containner {
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
}
.template__containner h4 {
    margin: 0;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 900;
}
.container__color {
    justify-content: center;
    margin: 0;
    border: 1px solid transparent;
}
.container__color:hover {
    border: 1px solid #0D132C;
    border-radius: 3px;
}
.container__color li {
    width: 14px;
    height: 14px;
    margin: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.1);
}
.custom--color {
    display: flex;
    justify-content: center;
}
.custom--color__input input{
    margin: 0 5px;
}
.custom--color__input {
    position: relative;

}
.custom--color__input i {
    position: absolute;
    z-index: 1;
    color:#0D132C;
    opacity: .8;
    font-size: 9px;
    top: 8px;
    left: 8.5px;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}
.template__cv2 {
    margin-right: 30px;
}
input[type="color"] {
	-webkit-appearance: none;
	width: 14px;
    height: 14px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0,0,0,.1);   
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
input[type="color"]::-webkit-color-swatch {
	border: solid 1px transparent;
    /* border-radius: 50%; */
}
.container__img--template {
    display: flex;
    
}
.container__img--template div{
    margin: 0 5px;
}
.container__img--template h4{
    font-size: 13px;
    margin: 0 10px;
}
.label img {
    width: 14px;
}