body {
    background-color: black;
}

#ctrlBox {
    height: 60px;
    width: 800px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.301);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    border-radius: 10px;
}

#ctrlTable {
    color: rgb(210, 210, 210);
    width: 100%;
    height: 100%;
}

#ctrlTable td {
    width: 33%;
    font-size: large;
    text-align: center;
}

.checkbox {
    color: rgb(210, 210, 210);
    display: inline-flex;
    cursor: pointer;
    position: relative;
    font-size: large;
}

.checkbox > span {
    color: #34495E;
    padding: 0.5rem 0.25rem;
}

.checkbox > input {
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 2px solid white;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    background-color: black;
    cursor: pointer;
  }

.checkbox > input:checked {
    border: 2px solid white;
    background-color: rgb(98, 214, 98);
}

.checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    color: #41B883;
    position: absolute;
    left: 0.7rem;
    top: 0.2rem;
}

.checkbox > input:active {
    border: 2px solid #34495E;
}

.checkbox > label {
    padding-top: 5px;
    padding-left: 5px;
}

.slider {
    position: relative;
    z-index: 10;
    background-color: black;
}

.button:hover {
    filter: drop-shadow(-3px 3px 0px #68caff);
    cursor: pointer;
    transition: all .1s ease-in-out; 
    transform: scale(1.03);
}

.button {
    border: 1px solid black;
    border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
    background: #68caff;
    margin-top: -4.5px;
}

input[type=range]::-moz-range-thumb {
    background: #68caff;
}

input[type=range]::-ms-thumb {
    background: #68caff;
}