#diffCases{
  display: block;
  margin: 0 auto;
  max-width: 600px;
}

.diffsim{
  width: 600px;
  height: 475px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.controls
{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
}

.in{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

input, label {
    display:block;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.65em;
    margin-bottom: 10px;
    margin-right: 15px;
}
.pLabel{
  margin-bottom: 16px;
}
/** Slider*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
  input[type='range'] {
    width: 75px;
    margin-right: 15px;
    -webkit-appearance: none;
    background-color: #444444;
    border-radius: 2.5px;
  }
  input[type='range']::-webkit-slider-runnable-track {
    width: 100;
    height: 5px;
    -webkit-appearance: none;
  }
  input[type='range']::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    -webkit-appearance: none;
    margin-top: -4px;
    cursor: ew-resize;
    background: #3FA9F5;
    border-radius: 10px;
  }
}

/** Button*/
button{
  background-color: #FF931E;
  border: none;
  border-radius:5px;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin-right: 15px;
  }

/** Checkbox*/
input[type='checkbox']{
  -webkit-appearance: none;
  position: relative;
  margin-right: 27px;
  margin-left: 0;
  outline:0;
}
input[type="checkbox"]:focus{
  outline:0;
}
input[type='checkbox']::before{
  content: "";
  display: inline-block;

  height: 12px;
  width: 12px;
  border-radius:4px;
  position: absolute;
  background: #3FA9F5;
  top: -6px;
  bottom: 0px;
  right: 0px;
  left: 0px;

  color: #444444;
}
input[type='checkbox']:checked::after{
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: #FF931E;
  border-radius:4px;
  position: absolute;
  left: 0px;
  top: -6px;
  bottom: 0px;
  right: 0px;
}

/** Select Menu*/
select {
  border: 1px solid #ccc;
  width: 70px;
  height: 20px;
  border-radius: 5px;
  font-size: 11;
  text-align: center;
}




/** FF*/

input[type="range"]::-moz-range-progress {
  background-color: #43e5f7;
}

input[type="range"]::-moz-range-track {
  background-color: #9a905d;
}


/* IE*/

input[type="range"]::-ms-fill-lower {
  background-color: #43e5f7;
}

input[type="range"]::-ms-fill-upper {
  background-color: #9a905d;
}
