



.dropdown-container, .make-dropdown-container, .model-dropdown-container, .chassi-dropdown-container, .fuel-dropdown-container {
    position: relative;
    /* max-width: 320px; */
    width: 100%;
    border-radius: 8px;
    margin: 0;
}


.strong-label {
    font-weight: bold;
    font-size: 1.5vw;
}

.list-items {
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    padding: 2vw;
    width: 100%;
    background-color: white; 
    border-radius: 0 0 1vh 1vh;
    border: .5vh solid var(--bt-gray);
    border: 1px solid var(--bt-gray);
    border-top: none;
    display: none;
    z-index: 5;
    max-height: 40vh;
    min-height: 16vh;
    overflow-y: auto;
    scrollbar-color: var(--bt-gray) transparent;
}



.dropdown-container.seller strong{
    margin-right: 1vh;
}

.select-btn.open ~ .list-items {
    display: block;
}

.list-items .item{
    display: flex;
    align-items: center;
    list-style: none;
    height: 4vh;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 16px;
    border-radius: 8px;
    
}

.list-items .item:hover{
    background-color: #e7edfe;
}

.item .item-text{
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.model-make {
    font-size: 18px;
    font-weight: bold;
}

.item .checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px; 
    width: 16px;
    border: 1.5px solid #768a94;
    border-radius: 4px;
    margin-right: 12px;
    transition: all 0.3s ease-in-out;
}

.item.checked .checkbox {
    border-color: #4070f4;
    background-color: var(--bt-blue);
}

.checkbox .check-icon{
    color: #fff;
    font-size: 11px;
    transform: scale(0);
}

.item.checked .check-icon {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}


@media screen and (max-width: 800px) {

    .dropdown-container.seller strong {
        margin-right: .4vh;
    }

    .item .item-text{
        font-size: 2.3vw;
        font-weight: 400;
        color: #333;
    }

    .model-make {
        font-size: 2.5vw;
    }

    .item .checkbox{
        height: 1.2vh; 
        width: 1.2vh;
        margin-right: 1vh;
        border-width: .4vw;
    }

    .item .check-icon{
        font-size: 2vw;
    }

    .list-items .item {
        padding: 1vw 0;
        height: 2vh;
    }

    .list-items {
        max-height: 20vh;
        min-height: 8vh;
    }

}