body,
html {
    background: darkblue;
    color: white;
}

a {
    color: lightgreen;
    text-decoration: none;
    background-color: transparent;
}

a:visited {
    color: lightgreen;
}

a:active {
    color: lightgreen;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.button-name {
    white-space: nowrap;
}

.bg-gold {
    background-color: gold;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.notify {
    position: fixed;
    top: 100px;
    /*right: 100px;*/
    background-color: forestgreen;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px -3px black;
    min-width: 90px;
    color: white;
    text-shadow: 0px 0px 4px black;
}

.notify.danger {
    background-color: red;
}

.notify .close {
    cursor: pointer;
    font-size: 30px;
    line-height: 15px;
}

.notify .title {
    white-space: nowrap;
    margin-right: 20px;
    font-weight: bold;
}

.bigger {
    position: relative;
    top: 5px;
    width: 18px;
    height: 18px;
}

.btn {
    margin-top: 3px;
    margin-left: 3px;
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}

.form-above {
    position: fixed;
    background: aliceblue;
    width: 50%;
    top: 100px;
    padding: 10px;
    /* border: 1px solid gray; */
    box-shadow: 0px 0px 4px 0px darkgrey;
    left: 25%;
}

progress.vertical {
    margin-top: 70px;
    transform: rotate(270deg);
    margin-bottom: 70px;
    height: 30px;
}

.p-value-text {
    font-size: 40px;
    font-weight: bold;
    font-family: sans-serif;
}

.info-panel {
    font-size: 12px;
}

.bg-slate-gray {
    background-color: slategray;
}