/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12.07.2019, 15:30:46
    Author     : iab
*/
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0 20px 0;
  background:inherit
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.01), 0px 0px 1px rgba(13, 13, 13, 0);
  background: rgba(154, 151, 133, 0.75);
  border-radius: 20.8px;
  border: 0px solid rgba(154, 151, 133, 0);
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0.3px 0.3px 0.4px #000000, 0px 0px 0.3px #0d0d0d;
  border: 1.9px solid #a64f1f;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: rgba(200, 100, 40, 0.80);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(175, 172, 158, 0.75);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.01), 0px 0px 1px rgba(13, 13, 13, 0.01);
  background: rgba(154, 151, 133, 0.75);
  border-radius: 20.8px;
  border: 0px solid rgba(154, 151, 133, 0);
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0.3px 0.3px 0.4px #000000, 0px 0px 0.3px #0d0d0d;
  border: 1.9px solid #a64f1f;
  height: 30px;
  width: 30px;
  border-radius: 26px;
  background: rgba(200, 100, 40, 0.80);
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: rgba(132, 129, 109, 0.75);
  border: 0px solid rgba(154, 151, 133, 0);
  border-radius: 41.6px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.01), 0px 0px 1px rgba(13, 13, 13, 0.01);
}
input[type=range]::-ms-fill-upper {
  background: rgba(154, 151, 133, 0.75);
  border: 0px solid rgba(154, 151, 133, 0);
  border-radius: 41.6px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.01), 0px 0px 1px rgba(13, 13, 13, 0.01);
}
input[type=range]::-ms-thumb {
  box-shadow: 0.3px 0.3px 0.4px #000000, 0px 0px 0.3px #0d0d0d;
  border: 1.9px solid #a64f1f;
  height: 30px;
  width: 30px;
  border-radius: 26px;
  background: rgba(200, 100, 40, 0.80);
  cursor: pointer;
  height: 8.4px;
}
input[type=range]:focus::-ms-fill-lower {
  background: rgba(154, 151, 133, 0.75);
}
input[type=range]:focus::-ms-fill-upper {
  background: rgba(175, 172, 158, 0.75);
}

