
html, body { overflow: hidden; }
input[readonly]
{
 background-color: transparent;
}
input[type=range] {
  height: 38px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000;
  background: #D3D3D3;
  border-radius: 10px;
  border: 1px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000;
  border: 1px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #08438E;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #D3D3D3;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000;
  background: #3071A9;
  border-radius: 5px;
  border: 1px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000;
  border: 1px solid #000000;
  height: 30px;
  width: 15px;
  border-radius: 5px;
  background: #FFFFFF;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #3071A9;
  border: 1px solid #000000;
  border-radius: 10px;
  box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #3071A9;
  border: 1px solid #000000;
  border-radius: 10px;
  box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 1px 1px 1px #000000;
  border: 1px solid #000000;
  height: 30px;
  width: 15px;
  border-radius: 5px;
  background: #FFFFFF;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071A9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #3071A9;
}
fieldset{
    border:1px solid gray;
    padding:20px;
    border-radius:20px;
}
legend{
    padding:0px 20px;
}
 .ticks {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}
 .tick {
  position: relative;
  display: flex;
  justify-content: center;
  width: 1px;
  background: gray;
  height: 10px;
  line-height: 50px;
  margin-bottom: 20px;
}
/*Validation CSS */
.chckcls{
        background-color:rgba(255, 0, 0, 0.1);
        border: 1px solid rgba(255, 0, 0, 0.3); 
        padding:6px;
        width:100%; 
    }
.chckcls1{
        background-color:transparent;
        border: none;
        padding:0px;
        width:100%;
    }

#warningmsg{
      background-color:rgba(255, 0, 0, 0.1);
      border: 1px solid rgba(255, 0, 0, 0.3); 
      padding:10px 20px;
      width:100%; 
      color:#A93226;
      display:none;
}

#datewarningmsg{
      background-color:rgba(255, 0, 0, 0.1);
      border: 1px solid rgba(255, 0, 0, 0.3); 
      padding:10px 20px;
      width:100%; 
      color:#A93226;
      display:none;
}
/*Validation CSS ends*/

