


.nice-select {
    font-size: 16px;
    padding-right: 15px;
    outline: none;
    display: block;
    cursor: pointer;
    text-align: left;
    user-select: none;
    position: relative;
    white-space: nowrap;
    background-color: transparent;
    transition: all .2s ease-in-out;
}

.nice-select:after {
    position: absolute;
    content: "\f078";
    top: 50%;
    right: 0px;
    font-size: 10px;
    line-height: 10px;
    color: #555555;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    transform-origin: 66% 66%;
    transform: translateY(-50%);
    transition: all .15s ease-in-out;
}

.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 {
    color: #999;
    pointer-events: none;
    border-color: #ededed;
}

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

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

.nice-select .list {
    padding: 10px;
    min-width: 120px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    top: 40px;
    right: 0;
    opacity: 0;
    z-index: 5;
    -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 .list:hover .option:not(:hover) {
    background-color: transparent !important
}

.nice-select .option {
    outline: none;
    cursor: pointer;
    text-align: left;
    list-style: none;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 5px;
    padding: 4px 15px;
    transition: all .2s
}

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

.nice-select .option.selected {
    font-weight: 700;
}

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

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