.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;	  
}
.subrow {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  font-size: 32px;
}
.right {
    color: white;
    justify-content: flex-end;
    width: 100%;
   text-align: right;
}
.sublist {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.iconBlock {
  width: 128px;
  height: 128px;
  font-size: 48px;
  color: white;
}
.vblock {
  width: 200px;
  height: 128px;
  font-size: 48px;
  color: white;
}
.tblock {
  width: 200px;
  height: 128px;
  font-size: 24px;
  color: white;
}
.gblock {
  width: 300px;
  height: 128px;
  font-size: 24px;
  color: white;
}
.wblock {
  width: 100%;
  height: 128px;
  font-size: 24px;
  color: white;
}
.settingNameBlock {
  width: 150px;
  height: 35px;
  font-size: 18px;
  color: white;
}
.settingValueBlock {
  width: 300px;
  height: 35px;
  font-size: 18px;
  color: white;
}
.settingsIndBlock {
  width: 250px;
  font-size: 32px;
  color: white;
  display: flex;
  flex-direction: row;
}
.helperText {
  font-size:16px;
  font-weight: normal;
}

/*** TOGGLE SWITCH ***/

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .toggle {
  background-color: #f58400;
}

input:focus + .toggle {
  box-shadow: 0 0 1px #f58400;
}

input:checked + .toggle:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.toggle.round {
  border-radius: 34px;
}

.toggle.round:before {
  border-radius: 50%;
}

/*** SLIDER ***/

.slidecontainer {
    width: 100%; /* Width of the outside container */
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;   
    background: #d3d3d3;
    outline: none;
//    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 36px;
    border-radius: 50%; 
    background: #f58400;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f58400;
    cursor: pointer;
}

body {
    height: 100vh;
    background-color: gray;
    color: white;
    font-family: Arial;
    font-weight: bold;
}

h1 {
    color: white;
    font-size: 50px;
}

a:link {
    color: white;
}

a:visited {
    color: white;
}

#risk_chart{ 
    background: url(images/mold-background.png) no-repeat;
}


button {
  padding: 5px 40px;
  font-size: 15px;
  border-radius: 10px;
  background-color: white;
}

.chart {
  width: 100%; 
  min-height: 450px;
}

@media all and (max-width:640px){
    table{
        width:100%;
	align:center;
    }
    td{
        display:block;
        width:100%;
	align:center;
    }
    tr{
        display:block;
        margin-bottom:30px;
	align:center;
    }
    div{
        display:block;
        width:100%;
	align:center;
    }
}

