.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    outline: none;
    position: relative;
    text-align: left !important;
    white-space: nowrap;
    width: auto;
    color: #E09D49;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #E09D49;
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    color: #000;
    font-size: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding-right: 5px;
}

.nice-select.open .list::-webkit-scrollbar {width: 5px; height: 3px;}
.nice-select.open .list::-webkit-scrollbar-button {background-color: #ffffff; }
.nice-select.open .list::-webkit-scrollbar-track {background-color: #ffffff;}
.nice-select.open .list::-webkit-scrollbar-track-piece {background-color: #ffffff;}
.nice-select.open .list::-webkit-scrollbar-thumb {background-color: #005382; border-radius: 5px;}
.nice-select.open .list::-webkit-scrollbar-corner {background-color: #ffffff;}
.nice-select.open .list::-webkit-resizer {background-color: #ffffff;}

.nice-select.disabled {
    border-color: #E09D49;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #E09D49;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    width: 300px;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 20px;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 9;
    height: 399px;
    overflow: auto;
    border-right: 5px solid #ffffff;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: normal;
    font-size: 16px;
    padding: 17px 30px;
    list-style: none;
    outline: none;
    text-align: left;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #E5EBF3;
}

.nice-select li.option.selected{
    color: #E09D49;
    background-color: transparent !important;
}

.nice-select li.option.selected:after {
    content: url('../pic/city-active-icon.svg');
    padding-left: 10px;
    position: relative;
    top: -2px;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}
