
.product-range-wrapper {
  /*displat: -webkit-flex;
  displat:flex;
  -webkit-flex-direction: column;
  flex-direction:column;
  width:600px;
  margin:0px auto;*/
  /*outline: 1px solid purple;*/
 }
.product-range-block {
  /*display: -webkit-flex;
  display:flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width:100%;
  height:auto;*/
  /*outline: 1px solid red;*/
}
.ref-height-block {
  /*flex-grow:3;*/
  /*background-color:red;*/
}
.size-chart-block {
  /*flex-grow:9;*/
  /*background-color:green;*/
}
.product-range-block img {
  width:100%;
  /*outline: 1px solid blue;*/
}
#img {
  width: 100% !important;
}
#slider_count {
  /*margin:0px auto;
  width:200px;
  padding:20px 20px;
  text-align:center;
  background-color:yellow;*/
}

/* ::::::::::::::::::::Range Slider Styles::::::::::::::::::::::::: */
.range-slider-block {
  margin: 0;
  width:50%;
  }
#range-slider {
  padding:40px 0px;
  width:100%;
  background: transparent;
  /*outline: 1px solid green;*/
}
/* Remove Range Sliders Default Styles*/
input[type=range]{
    -webkit-appearance: none;
    -moz-appearance: none;
}
/* Track */
input[type=range]::-webkit-slider-runnable-track{
    height: 10px;
    background: #eeece9;
    border: none;
    border-radius: 6px;
}

input[type=range]::-moz-range-track{
    height: 10px;
    background: #eeece9;
    border: none;
    border-radius: 6px;
}

input[type=range]:focus {
    outline: none;
}

/* Thumb */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #0f0f0f;
    margin-top: -9px;
    transition: box-shadow 0.5s;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #0f0f0f;
    margin-top: -9px;
    transition: box-shadow 0.5s;
}

/*input[type=range]:hover::-webkit-slider-thumb{
    box-shadow: 0 0 0 10pt rgba(190,190,190,0.4);
    cursor:pointer;
}

input[type=range]:hover::-moz-range-thumb {
    box-shadow: 0 0 0 10pt rgba(190,190,190,0.4);
    cursor:pointer;
}*/


/* JS Stykes */
/* Changes Thumb color to darker green when mousedownn */
input[type=range].thumb-down::-webkit-slider-thumb{
  background:#0f0f0f;
}

input[type=range].thumb-down::-moz-range-thumb{
  background:#0f0f0f;
}
/* Changes Thumb color back to light green when mouseup */
input[type=range].thumb-up::-webkit-slider-thumb{
  background:#0f0f0f;  
}

input[type=range].thumb-up::-moz-range-thumb{
  background:#0f0f0f;  
}
/* Changes Ring color Green */
/*input[type=range].hover-ring::-webkit-slider-thumb{
    box-shadow: 0 0 0 6pt rgba(70,148,127,0.46);
    cursor:pointer;
}

input[type=range].hover-ring::-moz-range-thumb{
    box-shadow: 0 0 0 6pt rgba(70,148,127,0.46);
    cursor:pointer;
}

input[type=range].hover-ring-out::-webkit-slider-thumb{
    box-shadow: 0 0 0 0pt rgba(0,0,0,0);
    cursor:pointer;
}

input[type=range].hover-ring-out::-moz-range-thumb {
    box-shadow: 0 0 0 0pt rgba(0,0,0,0);
    cursor:pointer;
}*/

output { 
  position: absolute;
  background-image: linear-gradient(top, #444444, #999999);
  width: 40px; 
  height: 30px; 
  text-align: center; 
  color: white; 
  border-radius: 10px; 
  display: inline-block; 
  font: bold 15px/30px Georgia;
  bottom: 175%;
  left: 0;
  margin-left: -1%;
}
output:after { 
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #999999;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}


@media (max-width: 1200px) {
    #range-slider {
      padding: 10px 0px;
  }

    .range-slider-block {
      width:80%;
  }
}



