@import url(vazir.css);
body {
  background-color: #EEE;
  font-family: Vazir, Tahoma, Geneva, sans-serif;
}

#lifelinemodalbody {
  background-color: #EEE;
}

#lifeline {
  width: 100%;
  height: 100%;
}

#birth {  
  height: 100px;  
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  background-image: url(../img/lineoflife/baby.svg);
}
#death {
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  background-image: url(../img/lineoflife/winner.svg);

}
input[type=range] {
  -webkit-appearance: none;
  background: #EEE;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: #4f5050;
}
input[type=range]::-webkit-slider-thumb {
  height: 100px;
  width: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/lineoflife/runer.svg);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -50px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #4f5050;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  animate: 0.2s;
  background: #EEE;
}
input[type=range]::-moz-range-thumb {
  height: 100px;
  width: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/lineoflife/runer.svg);
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 1px solid #010101;
  border-radius: 3px;
  box-shadow: 1px 1px 1px #000000, 0 0 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0 0 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  height: 100px;
  width: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/lineoflife/runer.svg);
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}