/* ELEMENTS */ 

body {
    /*background-color: white;*/
    background-color: #595959;
    color: #FFFFFF;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    scrollbar-color:  #FF9900 #595959;
}

h1 {
    color: #FF9900;
}

hr {
    border: 1px solid white;
}

input {
   background-color: #656565;
   color: #FFFFFF;
   border: 1px solid gray;
}


button {
    background-color: #595959;
    color: #FFFFFF;
    border: 1px solid gray;
}

/* CLASSES */

.hidden_link {
    color: white;
    /*color: black;*/
    text-decoration: none;
}



/**
   BROWSER SPECIFIC	
*/

/* Webkit/Blink */
input[type=range] {
    background: #656565;
}

input[type=range]::-webkit-slider-thumb {
    background: #656565;
}

/* Firefox */
input[type=range]::-moz-range-thumb {
  background: #656565;
}


/* Hide buttons */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


input[type=number] {
  -moz-appearance: textfield;
}


/* Webkit scrollbars */
::-webkit-scrollbar {
    background: #595959;
}

::-webkit-scrollbar-thumb {
    background: #FF9900;
}

::-webkit-scrollbar-corner {
    background: #595959;
}

::-moz-scrollbar-button, ::-webkit-scrollbar-button {
  width: 0px;
}
