/* Minification failed. Returning unminified contents.
(38,28): run-time error CSS1039: Token not allowed after unary operator: '-config-element-background-color'
(39,25): run-time error CSS1039: Token not allowed after unary operator: '-config-element-radius'
(40,17): run-time error CSS1039: Token not allowed after unary operator: '-config-element-text-color'
(46,28): run-time error CSS1039: Token not allowed after unary operator: '-config-element-background-color-open'
(47,17): run-time error CSS1039: Token not allowed after unary operator: '-config-element-text-color-open'
(52,25): run-time error CSS1039: Token not allowed after unary operator: '-config-element-radius'
(64,28): run-time error CSS1039: Token not allowed after unary operator: '-config-element-background-color'
(65,17): run-time error CSS1039: Token not allowed after unary operator: '-config-element-text-color'
 */

/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    transform: translateY(55%);
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    transform: translateY(0%);
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    padding: 8px 16px;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

.select-selected {
    background-color: var(--config-element-background-color);
    border-radius: var(--config-element-radius);
    color: var(--config-element-text-color);
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: var(--config-element-background-color-open);
    color: var(--config-element-text-color-open);
    top: 110%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: var(--config-element-radius);
    filter: drop-shadow(0px 3px 6px #777);
    overflow: hidden auto;
    max-height: 500px;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: var(--config-element-background-color);
    color: var(--config-element-text-color)
}
