.ppSideBar{
    background-color: rgba(66,66,66,1);
    width: 25%;
    min-height: 420px;
    position: relative;
    float:left;
}
.filtersOpt{display: none;}
.priceFilters input[type=text]{
    background-color: #222;
    border-radius: 3px;
    padding:3px;
    border:1px solid #111;
    width: 90px;
    font-size: 1.1em;
    color:#239cd3;
}
.ppSideBar .suggestedPP{
    height: 210px;
    overflow: hidden;
    border-radius: 3px;
    padding:10px;
    background-color: rgba(0,0,0,.5);
    border:1px solid #222;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.productPage{
    background-color: #222;
    width: 70%;
    float:right;
    padding:10px;
}

.ppTitle{
    background-color: #222;
    border-radius: 3px;
    padding-top:10px;
    padding-bottom: 10px;
    color:mediumslateblue;
    color: #e6763b;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#45484d+0,000000+100;Black+3D+%231 */
    background: #45484d; /* Old browsers */
    background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.ppTitle h1{
    font-size: 1.5em;
}

input[type=range] {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 98%;
  margin: 2px;
  padding: 0 2px;
  /* Add some L/R padding to ensure box shadow of handle is shown */
  overflow: hidden;
  border: 0;
  border-radius: 1px;
  outline: none;
  border: 3px solid #333;
  background: linear-gradient(grey, grey) no-repeat center;
  /* Use a linear gradient to generate only the 2px height background */
  background-size: 100% 2px;
  pointer-events: none;
  position: relative;
  display: block;
}
input[type=range]:active,
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  height: 28px;
  width: 28px;
  border-radius: 28px;
  background-color:#e6763b;
  position: relative;
  margin: 5px 0;
  /* Add some margin to ensure box shadow is shown */
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  pointer-events: all;
  box-shadow: 0 1px 4px 0.5px rgba(0, 0, 0, 0.25);
}
input[type=range]::-webkit-slider-thumb::before {
  content: ' ';
  display: block;
  position: absolute;
  top: 13px;
  left: 100%;
  width: 2000px;
  height: 2px;
}
.multi-range {
  position: relative;
  height: 50px;
}
.multi-range input[type=range] {
  position: absolute;
}
.multi-range input[type=range]:nth-child(1)::-webkit-slider-thumb::before {
  background-color: red;
}
.multi-range input[type=range]:nth-child(2) {
  background: none;
}
.multi-range input[type=range]:nth-child(2)::-webkit-slider-thumb::before {
  background-color: grey;
}
.bigFilterBtn{
    background-color: rgba(0,0,0,.3);
    border-radius: 3px;
    padding:0px;
    margin: 10px;
    border:2px solid #666;
}
.bigFilterBtn:hover{
    cursor: pointer;
    background-color: #e6763b;
}
@media screen and (max-width:980px){
    .productPage{
        width:98%;
        float:right;
    }
    .ppSideBar{
        position: absolute;
        width: 85%;
    }
    .ppImages,.ppImg{
        width: 98%;
    }
    .ppTitle h1{
        font-size: 1em;

    }
    .filtersOpt{display: block;}
}