body {
    font-family: Arial, Helvetica, sans-serif;
}
.action-button {
    background-color: #00000000;
    border-radius: 8px;
    color: rgb(240, 240, 116);
    border-width: 2px;
    border-color: #474d56;
}
.action-button:hover {
    font-weight: bold;
    box-shadow: 7px 6px 8px #606060;
}
.action-button:active {
    transform: translateY(3px);
}
.spin-button {
    background-color: #474d56;
    color: white;
}
.spin-button:hover {
    background-color: #fdd2b8;
    color: black;
    font-weight: bold;
}
.spin-button:active {
    transform: translateY(3px);
}
.toggleon {
    background-color: #025a18;
    border-radius: 8px;
    color: rgb(165, 252, 201);
    font-weight: bold;
}
.toggleon:hover {
    font-weight: bold;
}
.toggleon:active {
    transform: translateY(3px);
}
.toggleoff {
    background-color: darkgrey;
    border-radius: 8px;
    color: black;
    border-width: 0.5px;
    border-color: #474d56;
}
.toggleoff:hover {
    font-weight: bold;
}
.toggleoff:active {
    transform: translateY(3px);
}
#btnControlPanelSide{
    width: 20px;
    height: 50px;
    border-radius: 0px 6px 6px 0px;
    background-color: #00000000;
    border-color: white;
    color: white;
    font-size: 18px;
}
#btnControlPanelSide:hover{
    background-color: #FFFFFF;
    color: black;
}
/* -----------------------------------
           Stack Panes
---------------------------------------*/
.stack-pane{
    background-color: #232428;
    border-style: solid;
    border-width: 0px 1px 1px 1px;
    border-color: #999fa8;
    color: #a0a0a0;
}
.statechg-button{
    border: none;
    padding: 0px;
    font-size: 16px;
    color: white;
    background-color:  grey;
}
.statechg-button:hover{
    background-color:  lightgrey;
}
.statechg-button:active{
    background-color:  lightblue;
}
.acinfo{
    font-size: 14px;
}
/* -----------------------------------
            SVG Aircraft
---------------------------------------*/
.aircraft-icon {
    cursor: pointer;
    stroke: black;
    fill: white;
    opacity: 0.05;
    stroke-width: 3;
}
.aircraft-icon:hover{
    fill: yellow;
}
.aircraft-icon:active{
    fill: black;
}
/* -----------------------------------
            Geo (Maps) Page
---------------------------------------*/
#pnlNav {
    background-color: #232428;
    border-radius: 0px 0px 14px 14px;
    border-style: solid;
    border-width: 0px 1px 1px 1px;
    border-color: #999fa8;
}
.navbutton {
    background-color: #10101000;
    background-repeat: no-repeat;
    background-size: contain;
    outline: none;
    border-style: none;
    border-radius: 8px;
    border-color: #bdc1c9;
}
.navbutton:hover {
    transform: scale(1.3);
    transition: 0.2s;
}
.navbutton:active {
    transform: translateY(3px);
}
.sel-box-dark{
    background-color: black;
    color: white;
    font-weight: bold;
    font-size: 16px;
    font-size: 0.8vw;
}
.dark-button{
    background-color: #10101000;
    color: #808080;
    border-style: solid;
    border-radius: 6px;
    border-width: 1px;
    border-color: '#404040';
    font-size: 18px;
}
.dark-button:hover{
    background-color: #404040;
}
.dark-button:active{
    transform: translateY(3px);
}
.dark-button-on{
    background-color: #10101000;
    color: #FFFFFF;
    border-style: solid;
    border-radius: 6px;
    border-width: 1px;
    border-color: '#404040';
    font-size: 20px;
    font-weight: bold;
}
.dark-button-on:hover{
    background-color: #404040;
}
.dark-button-on:active{
    transform: translateY(3px);
}

/* -----------------------------------
//      Loading Items
---------------------------------------*/
#LoadingDiv {
    padding: 0;
    position: absolute;
    border-radius: 18px;
    top: 5%;
    left: 5%;
    margin: 0 auto;
    width: 600px;
    height: 200px;
    background-color: #404040;
    border-width: 10px;
    border-style: solid;
    border-color: #303030;
    box-shadow: 7px 10px 8px #202020;
}
#bar {
    position: absolute;
    top: 60px;
    height: 18px;
    width: 500px;
    left: 50px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: hidden;
}
#circle {
    position: absolute;
    top: -30px;
    margin-left: -30px;
    height: 60px;
    width: 10px;
    left: 0;
    background: #202020;
    -webkit-animation: mymove 1s infinite
}
#pLoad {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0px;
    width: 500px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}
#msg1{
    position: absolute;
    left: 0;
    top: 5px;
    width: 600px;
    text-align: center;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 28px;
}
#loadmessage{
    position: absolute;
    left: 0;
    top: 100px;
    width: 600px;
    text-align: center;
    font-family: arial, sans-serif;
    font-size: 18px;
    color: #a0a0a0;
}
#loadpct{
    position: absolute;
    left: 0;
    top: 100px;
    width: 600px;
    text-align: center;
    font-family: arial, sans-serif;
    font-size: 36px;
    color: #a0a0a0;
}
@keyframes mymove {
    0% {
        left: 0;
        width: 10px;
    }
    50% {
        left: 45%;
        width: 110px;
    }
    100% {
        left: 110%;
        width: 10px;
    }
}
