/* 
    Created on : 19/March/2024
    Author     : Sergiy Sydorenko
*/
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.graphic {
  border: 1px solid gray;
  margin:auto;
  padding:0px;
  display: block;
  max-height: 50vh;
}
.biggerFont {
  font-size: 18px;
  padding-top: 10px;
}
.biggerFont label:hover {
  cursor: pointer;
}
.biggerFont input:hover {
  cursor: pointer;
}
.slider {
  display: block;
  width: 100%;
  min-width: 100px;
  height: 25px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.centered {
  text-align: center;
}
.bottomMargin {
  margin-bottom: 8px;
}
.slidersTable {
  margin: 0px;
  padding: 0px;
  border-spacing: 4px;
  width: 100%;
}
.slidersTable tbody{
  width: 100%;
}
.slidersTable td{
  padding:5px;
}
.slidersTable td:first-child{
  border: 1px solid gray;
  border-radius: 3px;
  width: 15%;
  padding: 2px;
  background: gray;
  color: white;
  font-size: 16px;
  font-family: sans-serif;
}
.slidersTable td:last-child{
  width:10%;
  min-width:42px;
  border: 1px solid gray;
  border-radius: 3px;
  background: gray;
  color: white;
  font-size: 16px;
  padding: 2px;
  font-family: sans-serif;
}
input[type=range] {
  /*removes default webkit styles*/
  -webkit-appearance: none;
  
  /*fix for FF unable to apply focus style bug */
  border: 1px solid white;
  
  /*required for proper track sizing in FF*/
  width: 300px;
  width: 100%;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  width: 100%;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 30px;
  width: 23px;
  border-radius: 3px;
  background: lightgray;
  margin-top: -12px;
  border: 1px solid gray;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type=range]::-moz-range-track {
  width: 300px;
  width: 100%;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
  border: none;
  height: 30px;
  width: 16px;
  border-radius: 20%;
  background: lightgray;
  border: 1px solid gray;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
  outline: 1px solid white;
  outline-offset: -1px;
}

input[type=range]::-ms-track {
  width: 300px;
  width: 100%;
  height: 5px;
  
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 10px 0;

  /*remove default tick marks*/
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}
input[type=range]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 3px;
  background: lightgray;;
  border: 1px solid gray;
  margin-top: -2px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #888;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}