/*
    select
*/
.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}
.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #0F0F10;
}
.select * {
    user-select: none;
}
.select-styled {
    display: flex;
    position: relative;
    font-size: 36px;
    color: #0F0F10;
    border-bottom: 4px solid #0F0F10;
    margin: 0 32px;
    padding: 0 8px;
    text-align: center;
}
.select-styled:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #0F0F10 transparent transparent transparent;
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
}
.select-styled.active:after {
    top: 50%;
    border-color: transparent transparent #0F0F10 transparent;
}
.select-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 16px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #F5F5F5;
    border: 2px solid #0F0F10;
    min-width: 100%;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
}
.select-options li {
    margin: 0;
    padding: 12px 8px;
}
.select-options li:not(:first-child) {
    border-top: 1px solid #0F0F10;
}
.select-options li:hover {
    color: #0F0F10;
    background: #D7D7D7;
}
.select-options li[rel="hide"] {
    display: none;
}