.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;
}

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

.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;
    margin-left: 0;
    padding: 0;
    text-align: left;
}

.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, 0.11);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
}

.nice-select .nice-select-search {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: none;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 12px;
    margin: 0 10px 0 0;
    width: 100% !important;
    min-height: 36px;
    line-height: 22px;
    height: auto;
    outline: 0 !important;
}

.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 ---------------- */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: 1px solid #ececec;
    color: #5c5e61;
    border-radius: 3px;
    height: 54px;
    padding: 16px;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    font-size: 15px;
    line-height: 18.75px;
    font-weight: 400;
    outline: none;
    position: relative;
    transition: all linear 0.2s;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    border-radius: 16px;
    position: relative;
}
.nice-select::after {
    content: '';
    right: 10px;
    top: 50%;
    color: #5c5e61;
    background-image: url(../icons/arrow-down.svg);
    position: absolute;
    transform: translateY(-50%) rotate(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    width: 16px;
    height: 16px;
}
.nice-select > span {
    font-weight: 400;
}
.nice-select > .list {
    position: absolute;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
    font-size: 14px;
    max-height: 155px;
    overflow: auto;
    z-index: 1;
}
.nice-select > .list::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}
.nice-select > .list::-webkit-scrollbar-thumb {
    background-color: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}
.nice-select > .list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}
.nice-select > .list .option {
    width: 100%;
    padding: 10px 10px;
    color: #000;
    position: relative;
    cursor: pointer;
}
.nice-select > .list .option:hover {
    background-color: rgba(0, 0, 0, 0.12);
}
.nice-select > .list .option.selected {
    color: var(--Main-color);
    background-color: rgba(0, 0, 0, 0.12);
    opacity: 1;
}
.nice-select > .list .option.selected::after {
    position: absolute;
    font-family: 'icomoon' !important;
    content: '\e917';
    content: '✓';
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.nice-select.open {
    border-color: #ececec !important;
    z-index: 99;
}
.nice-select.open::after {
    transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    width: 100%;
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
}
.nice-select.select-sort {
    justify-content: end;
    padding-right: 30px !important;
    border: none;
}
.nice-select.select-sort::after {
    background-image: url(../icons/arrow-down-2.svg);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    right: 0;
}
.nice-select.select-sort.open::after {
    transform: translateY(-50%) rotate(-180deg);
}
.nice-select.select-sort.style-2 > .list {
    right: 0;
    width: 70%;
    left: unset;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: 1px solid #ececec;
    color: #000;
    border-radius: 0;
    height: 50px;
    padding: 16px;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    font-size: 15px;
    line-height: 18.75px;
    font-weight: 400;
    outline: none;
    position: relative;
    transition: all linear 0.2s;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    position: relative;
}
/*------------ nice-select ---------------- */
