/* Basics */

body {
    background-color: #343a40;
    color: #f8f9fa;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 200px;
}

p {
    font-size: 1.15rem;
}

h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0;
    margin-top: 15px;
}

a, a:visited {
    color: #f8f9fa;
    text-decoration: underline;
}

a:hover, a:active {
    color: #e7e6e6;
    text-decoration: none;
}

a.btn {
    text-decoration: none;
}

small, small a {
    color: #C3CFD9 !important;
}

.container {
    margin-top: 2rem;
}

hr {
    border-top: 0.5px solid #f8f9fa;
}

/* Modal */
.modal-content {
    background-color: #343a40;
}

.modal-header, .modal-footer {
    border: 0;
}

.modal-header {
    justify-content: left;
}

/* Status bar */
.status {
    background-color: #232628;
    width: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 1030;
}

.status-content {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Header */

header {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-top: 5px;
}

.title h1, .title p {
    margin: 0;
}

.live {
    background-color: #dc3545;
    padding: 0.25rem 0.75rem;
    margin: 0.5rem;
    border-radius: 5px;
}

/* Basic buttons and radio */
button, .radio-button {
    border-radius: 0;
    background-color: #c1c1c1;
    border: 0;
    color: buttontext;
    text-align: center;
}

button:hover, .radio-button:hover {
    background-color: #b2b2b2;
}

button:active, .radio-button:active {
    background-color: #6d6d6d;
}

button.active, .radio-button.active {
    background-color: #fff;
}

.radio-button input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

/* Fixture selector */

.fixtures-carousel {
    text-align: center;
    white-space: nowrap;
    width: 100%;
    padding-bottom: 15px;
}

.fixtures-carousel label {
    scroll-snap-align: start;
    padding: 50px 75px;
    margin: 0 10px;
}

.simplebar-content-wrapper {
    scroll-snap-type: x mandatory;
}

.simplebar-scrollbar::before {
    background: #f8f9fa;
}

/* Colour selector */
.colours label {
    height: 75px;
    width: 75px;
    border-radius: 100px;
    border: 0;
    margin: 0.35rem 0.15rem;
    color: rgba(0, 0, 0, 0);
}

.colours label:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .4);
    transform: scale(1.05);
    transition: box-shadow .2s, transform .2s;
    color: rgba(0, 0, 0, 0);
}

.colours label.active {
    box-shadow: 0 0 15px rgba(0, 0, 0, .8);
    transform: scale(1.05);
    border: 3px solid #fff;
    color: rgba(0, 0, 0, 0);
    transition: box-shadow .2s, transform .2s, border .2s;
}

/* Stacked buttons for effects and positions */
.stacked-buttons button, .stacked-buttons label {
    width: 100%;
    padding: 5px;
    font-size: 1.15rem;
    margin-bottom: 8px !important;
}


/* Intensity fader */
#intensityFader {
    height: 47px;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

#intensityFader:focus {
    outline: none;
}

#intensityFader::-webkit-slider-runnable-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #000000;
    background: #c2c2c2;
    border-radius: 5px;
    border: 1px solid #000000;
}

#intensityFader::-webkit-slider-thumb {
    box-shadow: 0 0 1px #000000;
    border: 1px solid #000000;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -13.5px;
}

#intensityFader:focus::-webkit-slider-runnable-track {
    background: #c2c2c2;
}

#intensityFader::-moz-range-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #000000;
    background: #c2c2c2;
    border-radius: 5px;
    border: 1px solid #000000;
}

#intensityFader::-moz-range-thumb {
    box-shadow: 0 0 1px #000000;
    border: 1px solid #000000;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: #ffffff;
    cursor: pointer;
}

#intensityFader::-ms-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

#intensityFader::-ms-fill-lower {
    background: #c2c2c2;
    border: 1px solid #000000;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #000000;
}

#intensityFader::-ms-fill-upper {
    background: #c2c2c2;
    border: 1px solid #000000;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #000000;
}

#intensityFader::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0 0 1px #000000;
    border: 1px solid #000000;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: #ffffff;
    cursor: pointer;
}

#intensityFader:focus::-ms-fill-lower {
    background: #c2c2c2;
}

#intensityFader:focus::-ms-fill-upper {
    background: #c2c2c2;
}