.search-page-single-status {
    width: 100%;
    margin: 0 auto;
    max-height: 40px;
    position: relative;
    margin-bottom: 20px;
}

.search-page-single-status div:not(div.search-status) {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s linear 1s, opacity 1.5s ease 0s;
}

.search-page-single-status:hover div:not(div.search-status) {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.search-result-single-doc {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .25);
    transition: box-shadow 0.25s;
}

.search-result-single-doc:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
}

.search-status {
    display: inline-block;
    min-height: 20px;
    max-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

em {
    background-color: var(--main-color-light)!important;
    padding: 0 3px;
    font-style: normal!important;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    margin-right: 5px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
}

.theme-color.theme-hover:hover .checkmark {
    border: 2px solid var(--main-color-hover);
}

label:hover input ~ .checkmark {
    background-color: #eee;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

label input:checked ~ .checkmark {
    background-color: var(--main-color);
    display: block;
}

label.theme-color.theme-hover:hover input:checked ~ .checkmark {
    background-color: var(--main-color-hover);
    border: 2px solid var(--main-color-hover);
}

/* Show the checkmark when checked */
label input:checked ~ .checkmark:after {
    display: block;
}

label .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.temp-back {
    width: 100vw!important;
    background: url("/wp-content/themes/transcribathon/images/search-header.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

input[type=checkbox] {
    position: absolute;
    left: -9999px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Custom double range slider */
.range-container {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.sliders-control {
    position: relative;
    min-height: 20px;
}

.form-control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
}

.form-control-container-time {
    font-size: 14px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 15px;
    height: 10px;
    background-color: #000;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 15px;
    height: 10px;
    background-color: #000;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

/* input[type="range"]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type="range"]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
} */

input[type="number"] {
    width: 50px;
    height: 100%;
    font-size: 16px;
    border: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 100%;
    position: absolute;
    background-color: #EEEEEE;
    pointer-events: none;
    border-radius: 5px;
}

#startSlider {
    height: 0;
    z-index: 1;
    top: 5px;
}

div[data-active="inactive"] {
    background-color: #EEEEEE;
    color: #000;
}

div[data-active="active"] {
    background-color: var(--main-color);
    color: #fff;
}

#timespan-chart {
    background-color: #EEEEEE;
    border-radius: 5px;
    width: 100%!important;
    max-width: 100%;
}