.nice-select {
    -webkit-tap-highlight-color: transparent;
    display: block;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 44px 10px 12px;
    position: relative;
    color: var(--text-color);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    border: 1px solid var(--border-default-color);
    cursor: pointer;
    height: 40px;
    width: 100%;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus,
.nice-select:hover{
    background: var(--w-ghost-hover-color);
}
.nice-select:after {
    content: '';
    background-image: url(../../image/svg/dropdown.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    height: 20px;
    width: 20px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
    -webkit-transform:translateY(-50%) rotate(-180deg);
    -ms-transform:translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0); }
.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
.nice-select.disabled:after {
    border-color: #cccccc; }
.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 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid var(--border-default-color);
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 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; }
.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important; }
.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding: 0 12px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    user-select: none;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--w-ghost-hover-color);
    color: var(--text-color);
}
.nice-select .option.selected {
    position: relative;
    padding-right: 44px;
}
.nice-select .option.selected:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;

    background-image: url(../../image/svg/check-dropdown.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.nice-select .list {
    display: none;
}
.nice-select .list::-webkit-scrollbar {
    width: 8px;
}
.nice-select .list::-webkit-scrollbar-thumb:active {
    background: rgba(188, 191, 214, 1);
}
.nice-select .list::-webkit-scrollbar-thumb {
    background: rgba(188, 191, 214, 0.5);
    border-radius: 14px;
}
.nice-select.open .list {
    display: block;
    max-height: 450px;
    overflow-y: scroll;
    padding-right: 4px;
}
