html {
    scroll-behavior: smooth;
    user-select: none;
}

body {
    min-width: 1280px;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    min-width: 1280px;
    background-image: linear-gradient(#495971, #2A3544);
    display: flex;
    /*
    box-shadow: 0 0 8px grey;
    */
}

.navbar-img {
    height: 65px;
    margin: 0 10px 0 10px;
}

.navbar-right {
    height: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.navbar-left {
    height: 100%;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.navbar-center {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    left: 46%;
}

.navbar-content {
    color: whitesmoke;
    padding: 10px;
    border: 3px solid whitesmoke;
    border-radius: 10px;
    margin: 0 5px 0 5px;
}

.navbar-content.navbar-btn {
    width: 22px;
    border-radius: 25px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

.navbar-btn:hover {
    color: rgb(0, 140, 255);
    border-color: rgb(0, 140, 255);
    cursor: pointer;
}

.navbar-link:hover {
    color: rgb(0, 140, 255);
    border-color: rgb(0, 140, 255);
    cursor: pointer;
}



.start-caption {
    margin: 0 auto 0 auto;
    text-shadow: 5px 5px 10px lightgray;
    font-size: 75px;
    color: rgba(20, 20, 20, .5);
    cursor: pointer;
}

.row {
    width: 100%;
    display: flex;
}

.row.start {
    position: absolute;
    top: 40%;
    width: 99%;
}

.chartDiv {
    width: 32%;
    height: 370px;
    border-left: 1px solid lightgrey;
    border-top: 1px solid lightgrey;
    margin: 10px auto 0 auto;
    box-shadow: 5px 10px 10px grey;
    transition: box-shadow 1s ease-out;
}

/*
.chartDiv:focus {
    box-shadow: 0 0 15px 10px blue;
}
*/

.chart {
    width: 100%;
}

.settings {
    margin: 92px auto 0 auto;
    display: flex;
    padding-right: 5px;
    border-radius: 8px;
    background-image: linear-gradient(#495971, #2A3544);
    box-shadow: 0 8px 8px grey;
    min-width: 1070px;
}

.kentta {
    display: flex;
    margin: 1em 0 1em .5em;
    text-align: center;
    color: whitesmoke;
}

.field {
    display: inline;
    font-weight: bold;
}

.control {
    margin: auto 1em auto 1em;
    display: flex;
}

.control-content {
    color: whitesmoke;
    padding: 10px;
    border: 3px solid whitesmoke;
    border-radius: 10px;
    margin: 0 5px 0 5px;
    cursor: pointer;
}

.control-content:hover {
    color: rgb(0, 140, 255);
    border-color: rgb(0, 140, 255);
}

.space {
    width: 50px;
}

.selected {
    color: rgb(0, 140, 255);
    border-color: rgb(0, 140, 255);
}

.dial{
    position: absolute;
    top: 20%;
    border-radius: 1em;
    border: 1px solid darkblue;
    padding: 1em;
}

.dialHead {
    text-align: center;
}

.dialBody {
    display: flex;
}

.dialBody.progDial {
    display: inline-block;
}

.dialBody.repDial {
    width: 350px;
}

.dialForm {
    width: 50%;
    text-align: center;
}

.dialForm.first {
    border-right: 2px solid darkgray;
}

.dialForm.last {
    border-left: 2px solid darkgray;
    margin-left: -2px;
}

.dialFooter {
    text-align: right;
}

.progLine {
    margin-bottom: 5px;
}

.progInput {
    margin-right: 3px;
}

.progInput.lastInput {
    margin: 0;
}

.short {
    width: 95px;
}

.fuel {
    width: 55px;
}

dialog::backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.multiSelect {
    overflow-x: hidden;
    overflow-y: auto;
    width: 200px;
    height: 100px;
    padding: 5px;
    border: 1px solid darkblue;
    border-radius: 5px;
}

.multiSelect:first-of-type {
    margin-left: auto;
    margin-right: 5px;
}

.multiSelect:last-of-type {
    margin-right: auto;
}

.selectionLabels {
    width: 100%;
    text-align: center;
}

#deviceSelection {
    width: 100%;
    display: flex;
}

.disabled {
    color: gray;
    border-color: gray;
}

.disabled:hover {
    color: gray;
    border-color: gray;
    cursor: default;
}

.radio:hover {
    cursor: pointer;
}

body:hover {
    cursor: default;
}

.model {
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 8px 8px grey;
    border: 8px solid #495971;
    margin: 10px auto 10px auto;
}

@keyframes highlightChart {
    0% {
        box-shadow: 5px 10px 10px grey;
    }
    20% {
        box-shadow: 0 0 15px 30px #fbff009f;
    }
    100% {
        box-shadow: 5px 10px 10px grey;
    }
}