﻿.custom-group-select {
    border: none;
    color: #0e2857;
    font-size: 16px;
    height: 53px;
    outline: none;
    width: 100%;
    position: relative;
}

.custom-group-select .close {
    display: none;
}

.custom-group-select .search-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.custom-group-select .search-wrapper .list-search {
    max-width: 450px;
    background: transparent;
}

.custom-group-select .search-wrapper button {
    width: 20px;
    height: 20px;
    line-height: 16px;
    outline: none;
    border: none;
    background-image: url(../../img/quickJoin/down-arrow-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: 12px;
    cursor: pointer;
}

.custom-group-select .options {
    height: auto;
    min-height: 15px;
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    background: #FFFFFF;
    padding: 20px 0px;
    border-radius: 12px;
    box-shadow: 0px 12px 16px -4px rgba(16,24,40,0.1), 0px 4px 6px -2px rgba(16,24,40,0.05);
    outline: none;
    z-index: 2;
    top: 53px;
    width:100%;
}

.custom-group-select .options h4 {
    font-weight: 700;
    color: #1298FF;
    margin-top: 10px;
    padding: 12px 25px;
}

.custom-group-select .options ul {
    list-style: none;
}

.custom-group-select .options li {
    padding: 10px 25px;
}

.custom-group-select .options li:hover {
    background: #B0D6FF;
}

.custom-group-select .options .selected {
    color: #1298FF;
    background: url(../../img/quickJoin/correct.png) center no-repeat;
    background-size: 16px;
}

@media screen and (max-width:480px) {
    .custom-group-select .options {
        height: 100vh;
        max-height: none;
        top: 0;
        left: 0;
        padding-top: 80px;
    }

    .custom-group-select .options div {
        height: calc(100% - 120px);
        width: 100%;
        overflow-y: scroll;
        padding: 20px 0px;
    }

    .custom-group-select.group-select-sm {
        position: fixed;
        top: 0px;
        left: 0;
        z-index: 2;
        padding: 15px 20px;
    }

    .custom-group-select.group-select-sm .search-wrapper {
        width: 80%;
    }

    .custom-group-select.group-select-sm .search-wrapper .list-search {
        border: 1px solid #67C8FF;
        z-index: 6;
        border-radius: 5px;
        padding: 0px 10px;
    }

    .custom-group-select.group-select-sm .close {
        display: block;
        position: fixed;
        right: 15px;
        top: 18px;
        height: 39px;
        width: 39px;
        background: url(../../img/quickJoin/close.svg) no-repeat;
        border: none;
        outline: none;
        z-index: 3;
    } 
 
}