body {
    background-color: #031D20;
    color: white;
    margin: 10;
    padding: 10;
    font-family: Roboto;
}

hr {
    border-right: 0;
    border-left: 0;
    width: "100%";
}

.navbar {
    overflow: hidden;
    background-color: #031D20;
    width: 310px;
    margin: 0px auto;
}

.navbar a {
    float: left;
    color: #AEAEAE;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 14px;
}

.navbar a:hover {
    color: #6A6A6A;
}

.content {
    width: 900px;
    margin: 0px auto;
}

.range-slider-section label {
    display: inline-block;
    font-size: 16px;
    float: left;
}

.range-slider-section input[type="text"] {
    background-color: #031D20;
    color: white;
    text-align: right;
    font-size: 16px;
    float: right;
    border: none;
}

.range-slider-section input[type="text"]:focus {
    outline: none;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #074B3F;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.switch-slider {
    background-color: #00C281;
}

input:focus+.switch-slider {
    box-shadow: 0 0 1px #00C281;
}

input:checked+.switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch-slider.round {
    border-radius: 34px;
}

.switch-slider.round:before {
    border-radius: 50%;
}

table {
    width: 100%;
}

tr {
    text-align: center;
    height: 25px;
}

input[type="range"] {
    background-color: #031D20;
}

/* FireFox */
input[type="range"]::-moz-range-track {
    background-color: #074B3F;
    height: 4px;
}

input[type="range"]::-moz-range-progress {
    background-color: #00C281;
    height: 4px;
}

input[type="range"]::-moz-range-thumb {
    background-color: #00C281;
    border: none;
    border-radius: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Chrome, Opera, Safari, Edge */
/*input[type=range]::-webkit-slider-runnable-track {
    background-color: #074B3F;
    height: 4px;
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #00C281;
    border: none;
    border-radius: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: -5px;
    color: #00C281;
}*/

/*https://blog.logrocket.com/creating-custom-css-range-slider-javascript-upgrades/*/