.nice-select,
.nice-select.open .list {
    width: 100%;
    border-radius: 8px;
}

.nice-select .list::-webkit-scrollbar {
    width: 0;
}

.nice-select .list {
    margin-top: 5px;
    top: 100%;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    max-height: 210px;
    overflow-y: scroll;
    padding: 52px 0 0 0;
}

.nice-select.has-multiple {
    white-space: inherit;
    height: auto;
    padding: 7px 12px;
    min-height: 53px;
    line-height: 22px;
}

.nice-select.has-multiple span.current {
    border: 1px solid #CCC;
    background: #EEE;
    padding: 0 10px;
    border-radius: 3px;
    display: inline-block;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 3px;
    margin-right: 3px;
}

.nice-select.has-multiple .multiple-options {
    display: block;
    line-height: 37px;
    margin-left: 30px;
    padding: 0;
}

.nice-select .nice-select-search-box {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    margin-top: 5px;
    top: 100%;
    left: 0;
    z-index: 8;
    padding: 5px;
    background: #FFF;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 0 1px rgba(68, 88, 112, .11);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translatey(-21px);
    -ms-transform: scale(.75) translatey(-21px);
    transform: scale(.75) translatey(-21px);
    -webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
}

.nice-select .nice-select-search {
    padding: 10px;
    border-radius: 5px;
    border: solid 1px var(--light-grey-color-three);
    font-size: 15px;
    letter-spacing: normal;
    text-align: left;
    color: var(--dark-color);
    height: auto;
    width: 100%;
}

.nice-select.open .nice-select-search-box {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    -webkit-transform: scale(1) translatey(0);
    -ms-transform: scale(1) translatey(0);
    transform: scale(1) translatey(0);
}

.nice-select.open .nice-select-search-box +.list {
    margin-top: 61px !important;
    border-radius: 0px 0px 8px 8px;
    min-height: 50px;
}

.nice-select.open .nice-select-search-box +.list .not-found-message {
    text-align: left;
    color: var(--grey-color-tone-two);
    margin-top: 5px;
    padding: 0 7px;
}

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

    .nice-select.open .nice-select-search-box {
        z-index: 10;
        margin-top: 1px;
    }

    .nice-select.open .nice-select-search-box +.list {
        margin-top: 56px !important;
        z-index: 10 !important;
    }

}
