body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: white;
}
div {
    color: white;
}
/* *--------                 STACK Panes            ----------------*/
.stack-pane{
    background-color: white;
    border-style: solid;
    border-color: #a0a0a0;
    border-width: 0px 1px 1px 1px;
}
.stack-pane-title{
    color: #707070;
    font-size: 12px;
}
.stack-label{
    font-size: 13px;
    color: white;
}
.stack-pane-chgbutton{
    color: blue;
    border: none;
    background-color: white;
}
.stack-pane-chgbutton:hover{
    font-weight: bold;
    background-color: #FFFFFF40;
}
.control-button{
    background-color: #00529c;
    border-radius: 12px;
    border-color: #6781ba;
    transition-duration: 0.25s;
    color: white;
}
.control-button:hover{
    background-color: #00a6dc;
    color: #00529c;
}
.control-button:active {
    transform: translateY(4px);
}
/* *--------                 BUTTONS             ----------------*/
.link-button {
    font-size: 16px;
    width: 200;
    height: 20;
    background-color: white;
    border: none;
    font-weight: bold;
    color: black;
 }
.link-button:hover {
   color: #1faa92;
   transform: translateX(4px);
}
.link-button:active {
      transform: translateY(4px);

 }
.std-button {
    background-color: white;
    border-radius: 8px;
    color: #00529c;
    font-size: 16px;
    width: 200px;
    height: 30px;
    border-style: solid;
    border-width: 1px;
    border-color: #6781ba;
    font-weight: bold;
 }
.std-button:hover {
    font-size: 20px;
}
.std-button:active {
      transform: translateY(4px);
 }
.filterButton {
    background-color: white;
    color: grey;
    font-size: 14px;
    border-style: none;
    font-weight: bold;
 }
.filterButton:hover {
    color: black;
}
.filterButton:active {
      transform: translateY(4px);
 }
 .filterButton-on {
    background-color: white;
    color: #1faa92;
    font-size: 18px;
    border-style: none;
    font-weight: bold;
 }
.filterButton-on:hover {
    color: #1faa92;
}
.filterButton-on:active {
      transform: translateY(4px);
 }
 .app-button {
    background-color: #00a6dc;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    border-style: solid;
    border-width: 0px;
    border-color: #f4793b;
    font-size: 14px;
    font-weight: bold;
 }
.app-button:hover {
    border-width: 4px;
}
.app-button:active {
      transform: translateY(4px);
 }
#btnLaunch {
    background-color: #7bc466;
    color: white;
    font-size: 20px;
    border-style: solid;
    border-width: 0px;
    border-color: darkgreen;
    font-weight: bold;
 }
 #btnLaunch:hover {
    border-width: 2px;
}
#btnLaunch:active {
      transform: translateY(4px);
 }
 #btnCloseDisplay {
    background-color: darkgray;
    color: white;
    font-size: 14px;
    border-style: none;
    font-weight: bold;
 }
 #btnCloseDisplay:hover {
    color: black;
}
#btnCloseDisplay:active {
      transform: translateY(2px);
 }
 /*Track Styles *****/
/* Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
    background: #FFFFFF40;
    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: #3f97de;
    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;
       
}

