.slidertitle
{
  font-size:20px;
  text-transform: uppercase;
  font-weight: bold;
    padding-right: 10px;
}
.slidervalue
{
  font-size:20px;
  text-transform: uppercase;
  font-weight: bold;
  color:#bb1641;
  position: absolute;
  top:0px;

}
.relative
{
  position: relative;
}
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    margin-top:10px;
    overflow:hidden;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 8px; /* Set a specific slider handle width */
    height: 18px; /* Slider handle height */
    background: #333333; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius:0 !important;
}

.slider::-moz-range-thumb {
    width: 8px;
    height: 18px;
    background: #333333; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius:0 !important;
    border:none;
}
.slider::-moz-range-track {
  background:#eeeeee;
  height:7px;
}
.slider::-webkit-slider-runnable-track
{
  background:#eeeeee;
  height:7px;
}
.slider::-ms-fill-lower
{
  background:#ba154b;
  height:7px;
}
.slider::-moz-range-progress
{
  background:#ba154b;
  height:7px;
}
.slider::-webkit-progress-value
{
  background:#ba154b;
  height:7px;
}
