/*!
 * Selectron23 v.1.0.3 // 2021.05.24
 * https://github.com/realmag777/selectron23
 *
 * You may use Selectron23 under the terms of the MIT license. Basically that
 * means you are free to use Selectron23 as long as this header is left intact.
 * Copyright 2021 Rostislav Sofronov
 */

.selectron23{
    display: inline-block;
    height: auto;
    max-width: 100%;
    position: relative;
    transform: scale(1);
    transform-origin: top left;   
    z-index: 999999;
}

.selectron23 *{
    box-sizing: content-box !important;
}

.selectron23-container{
    font-family: sans-serif;
    cursor: pointer;
    padding: 0;
    width: inherit;
    min-height: 1px;
    max-height: 1px;
    overflow: hidden;
    position: absolute;
    /* position: relative; */
    width: 100%;
    z-index: 9999;
    user-select: none;
    /* box-shadow: 0px 1px 3px #ddd; */
}

.selectron23-container .selectron23-option{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    padding: 8px; 
    border-radius: var(--Spacing-8PX, 8px); 
    background: #0B0B0B;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%; 
}

.selectron23-container .selectron23-option img{
    margin-top: -3px;
}

.selectron23-container div:last-of-type{
    border-bottom: none !important;
    margin-bottom: 0 !important;
}


.selectron23-container .selectron23-option:hover{
    background:#F1F5F91A;
}


.selectron23-option-text{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.selectron23-container[data-opened="1"] > span {
    transform:rotate(180deg);transition: all 0.15s ease-out;
}

.selectron23-container > span {
    cursor: pointer;transition: all 0.15s ease-out;
    position: absolute;
    margin-top: -10px;right:2px;top:0;
    width:24px;height:24px;background:url(../images/arrow_down.svg)center center no-repeat;background-size:100%;
}

/* Works on Firefox */
.selectron23 * {
    scrollbar-width: thin;
    scrollbar-color: #fcfcfc #ddd;
}

/* Works on Chrome, Edge, and Safari */
.selectron23 *::-webkit-scrollbar {
    width: 12px;
}

.selectron23 *::-webkit-scrollbar-track {
    background: #ddd;
}

.selectron23 *::-webkit-scrollbar-thumb {
    background-color: #fcfcfc;
    border-radius: 20px;
    border: 3px solid #ddd;
}

