/* ===== Select Box ===== */

.sel {
    font-size: 16px;
    font-family: "HurmeGeometricSans3"!important;
    display: inline-block;
    margin: 0 auto;
    width: 250px;
    padding: 10px 20px 10px 20px;
    background-color: #e6e6e6;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 12px 14px;
}

.sel select {
    background: none;
    border: none;
    width: 100%;
    color: #f7323f;
    font-size: 1.1em;
}

.sel::before {
    position: absolute;
    content: '\f0d7';
    font-family: 'FontAwesome';
    font-size: 1.7em;
    color: #f7323f;
    right: 20px;
    top: 20%;
}

.sel.active::before {
    transform: rotateX(-180deg);
}

.sel.active {
    z-index: 200 !important;
}

.sel__placeholder {
    display: block;
    color: #f7323f;
    font-size: 1.1em;
    text-align: left;
    pointer-events: none;
    user-select: none;
    visibility: visible;
}

.sel.active .sel__placeholder {
    visibility: hidden;
}

.sel__placeholder::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px 10px 20px;
    content: attr(data-placeholder);
    visibility: hidden;
}

.sel.active .sel__placeholder::before {
    visibility: visible;
}

.sel__box {
    position: absolute;
    z-index: 1500;
    top: calc(100%);
    left: 0px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1.1em;
    box-sizing: border-box;
    z-index: 100;
    width: 100%;
}

.sel.active .sel__box {
    display: block;
}

.sel__box__options {
    border-top: 2px solid #ffffff;
    background: #c1c1c1;
    display: list-item;
    font-size: 1em;
    color: #ffffff;
    padding: 0.5em 1em;
    margin: 0;
    user-select: none;
    -webkit-box-shadow: 11px 10px 20px -16px rgba(144, 144, 144, 1);
    -moz-box-shadow: 11px 10px 20px -16px rgba(144, 144, 144, 1);
    box-shadow: 11px 10px 20px -16px rgba(144, 144, 144, 1);
}

.sel__box__options::after {
    background: #ffffff;
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 0.5em;
    margin-left: 5px;
    display: none;
}

.sel__box__options.selected::after {
    background: #ef3742;
    color: #ffffff;
    display: inline;
}

.sel__box__options:hover {
    background: #ef3742;
    color: #ffffff;
}


/* ----- Select Box Black Panther ----- */

.sel {}