body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: lightgrey;
}
.displaydiv {
    background-color: white;
    border-style: solid;
    border-color: lightgrey;
    border-width: 0px 0px 0px 1px;
}
/* *--------                 CONTAINERS             ----------------*/
.cntControls {
    background-color: white;
    border-style: solid;
    border-color: lightgrey;
    border-width: 0px 0px 0px 1px;
}
/* *--------                 BUTTONS             ----------------*/
.standardButton {
    width: 120px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 2px 2px 1px 0px #00000080;
    box-shadow: 2px 2px 1px 0px #00000080;
    color: #00529c;
    font-size: 13px;
    border-width: 1px;
    cursor: pointer;
}
.standardButton:hover {
    background-color: #bfdfd7;
    font-weight: bold;
    border-width: 2px;
}
.standardButton :active {
    transform: translateY(3px);
}
/*--------------------------LABELS ----------------*/
.label {
    color: black;
    font-size: 12px;
}
.big-label {
    color: black;
    font-size: 20px;
    font-weight: bold;
}
/* *--------                 OTHER            ----------------*/
/*Track Styles *****/
/* Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
    background: #ffffff80;
    height: 12px;
}
/*Firefox ********/
input[type="range"]::-moz-range-track {
    background: #053a5f;
    height: 12px;
}
/*Thumb Styles *****/
/*Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -3px; /* Centers thumb on the track */
    background-color: #2b93e8;
    height: 16px;
    width: 6px;
}
/* Focus Styles *****/
/* Removes default focus */
input[type="range"]:focus {
    outline: none;
}
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]:focus::-webkit-slider-thumb {
    border: 1px solid #606060;
    outline: 3px solid #808080;
    outline-offset: 0.125rem;
}
/******** Firefox ********/
input[type="range"]:focus::-moz-range-thumb {
    border: 1px solid #606060;
    outline: 3px solid #606060;
}
