.customselect{
    background-color: #FFFFFF;
    color: #B1ABA4;
    width: 100%;
    max-width: 684px;
    font-size: 20px;
    font-weight: 400;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.customselect .dropdown-menu{
    width: calc(100% - 2rem);
    left: 1rem;
    border: none;
    transform: translateY(98%);
    bottom: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 20px;
}

.customselect.dropdown-toggle img{
    transition: 0.5s ease;
}

.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.green span{
    color: #B5B0A1;
    font-weight: 400;
    font-size: 20px;
}

.customselect .dropdown-item.green svg path{
    fill: #B5B0A1;
}

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

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

.customselect-green{
    background-color:transparent;
    color:#B5B0A1;
    border-radius: 0;
    padding: 0;
    width: 248px;
    max-width: 100%;
    margin: 0;
    padding: 0 1.2rem;
}

.customselect .dropdown-menu-green{
    background-color: #B5B0A1;
    color:white;
    width: 248px;
    max-width: 100%;
    border-radius: 0;
    left: 0;
}

.customselect-green .dropdown-menu-green li a{
    color: white;
    cursor: pointer;
}

.customselect-green .dropdown-menu-green li img{
    opacity: 0;
    transition: 0.5s ease;
}