.customselect{
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    cursor: pointer;
    height: 44px;
    display: flex;
    align-items: center;
}

.customselect.sort{
    color: black;
    width: 215px;
    max-width: 100%;
}

.simulateur form .customselect,.simulateur form .form-control{
    color: black;
    background-color: white;
    border-radius: 6px;
    padding-left: 3rem;
    padding-right: 3rem;
    font-size: 20px;
}

.simulateur form .end-2{
    right: 1rem;
}


.simulateur form .span-select{
    margin-left: auto;
}

.customselect .dropdown-menu{
    width: 100%;
    left: 0;
    border: none;
    transform: translateY(100%);
    bottom: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 20px;
    opacity: 0;
    transition: 0.5s ease;
    display: block!important;
    visibility: hidden;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-bottom: 10px;
}

.customselect .dropdown-menu.show{
    transform: translateY(100%);
    opacity: 1;
    transition: 0.5s ease;
    display: block!important;
    margin-bottom: 0;
    visibility: visible;
    overflow-y: auto;
    max-height: 20rem;
}

.customselect.dropdown-toggle img{
    transition: 0.5s ease;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);

}

.customselect.dropdown-toggle img.rotate{
    transition: 0.5s ease;
    transform: rotate(-180deg);
}

.customselect.dropdown-toggle::after{
    display: none!important;
}

.customselect .dropdown-item svg{
    opacity: 0;
    transition: 0.5s ease;
}


.customselect .dropdown-item {
    pointer-events: none;
    cursor: pointer;
}

.customselect .dropdown-item div{
    width: 23px;
    height: 23px;
    background-color: #E5E5E5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customselect .dropdown-item:hover,
.customselect .dropdown-item:active {
    background-color: transparent;
}
