.nice-select {
    border: 1px solid #C5C5C5;
    border-radius: 4px;
    padding: 0px 16px;
    padding-right: 48px;
    color: #333333;
    font-family: inherit;
    -webkit-appearance: none;
    font-family: inherit;
    background-size: 24px 24px;
    background-image: url(https://static.edmclass.com/common/caret-down.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    outline: none;
    min-width: 150px;
    height: 50px;
    line-height: 47px;
    font-size: 18px;
    letter-spacing: -0.02px;
    position: relative;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: var(--s-color1);
}

.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: -1px !important;
    right: -1px !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 .current .date,
.nice-select .current .correct {
    display: none;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #D9D9DA;
    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;
}

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

.nice-select .option {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding: 0 16px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
}

.nice-select .option .correct {
    margin-left: auto;
    margin-right: 24px;
}

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

.nice-select .option.selected {
    /* font-weight: bold; */
    color: #333333;
}

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

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

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