.select-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: block;
    position: relative;
    font-size: 16px;
    color: #fff;
    height: 50px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-dark2);
    padding: 10px;
    -moz-transition: all 0.2s ease-in;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
    transition-delay: 0s;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border: 2px solid var(--color-dark2);
    border-radius: 10px;
    color: var(--color-white);
    height: 50px;
    font-size: 16px;
}

.select-styled::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-color: var(--color-dark) transparent transparent transparent;
    position: absolute;
    top: 22px;
    left: 15px;
}

.select-styled:active,
.select-styled.active {
    border: 2px solid var(--color-dark);
}

.select-styled:active:after,
.select-styled.active:after {
    top: 16px;
    border-color: transparent transparent var(--color-dark) transparent;
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
    margin: 0;
    margin-top: 0px;
    margin-top: 0px;
    padding: 0;
    list-style: none;
    background: var(--color-dark2);
    margin-top: 7px;
    border-radius: 10px;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 10px 20px;
}

.select-options::-webkit-scrollbar-button:vertical:increment {
    opacity: 0;
    background: none;
    height: 10px;
}
.select-options::-webkit-scrollbar-button:vertical:decrement {
    opacity: 0;
    background: none;
    height: 10px;
}
.right-scroll::-webkit-scrollbar-thumb, .right-scroll .select-options::-webkit-scrollbar-thumb {
    background-color: rgb(255 0 0 / 0%);
    border: none;
    border-left: 3px solid rgb(255 255 255 / 20%);
    width: 0px;
}
.select-options::-webkit-scrollbar-thumb, .left-scroll::-webkit-scrollbar-thumb, .left-scroll .select-options::-webkit-scrollbar-thumb {
    background-color: rgb(255 0 0 / 0%);
    border: none;
    border-right: 3px solid rgb(255 255 255 / 20%);
    width: 0;
}
.select-options::-webkit-scrollbar {
    width: 6px;
    background-color: #af2f2f00;
}

.select-options li {
    margin: 0;
    border-radius: 10px;
    padding: 8px 3px;
    text-indent: 15px;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    color: var(--color-white);
}

.select-options li:hover {
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.15);
}

.select-options li[rel="hide"] {
    display: none;
}

@media screen and (max-width: 768px) {
    .select {
        height: 63px;
    }
    .select-styled {
        font-size: 18px;
        padding: 15px;
        height: 63px;
        border-radius: 7px;
    }
    .select-styled::after {
        top: 27px;
    }
    .select-styled:active:after,
    .select-styled.active:after {
        top: 20px;
    }
    .select-options {
        font-size: 18px;
        padding: 5px;
        border-radius: 7px;
    }
    .select-options li {
        font-size: 16px;
        padding: 14px 5px;
    }
}