
#price-range {
  width: 370px;
  margin: 10px auto 30px auto;
  text-align: center;
  font-weight: bold;
}

#value-min, #value-max {
  width: 100px;
  border: none;
  background-color: #f1f1f1;
  font-family: 'Raleway', sans-serif;
}

#slider { margin: 30px 0 30px 0; }

/* Filter and search options */

#buttons, #search {
  text-align: center;
  margin-bottom: 30px;
}
#buttons button{
  box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
    padding: 15px 20px;
    margin: 0px 6px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #333;
    border:none;
    background: transparent;
    outline-color: none;
}
.active{
   outline: none;
}
#buttons button.active{
      box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
    padding: 15px 20px;
    margin: 0px 6px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    border:none;
    background: #802000;  
}
#buttons button.active:before{
    border-style: none;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px dashed #802000;
    display: inline-block;
    height: 0;
    vertical-align: middle;
    width: 0;
    position: absolute;
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";  
}
/* Gallery of images */

#gallery {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}

#gallery img {
  -webkit-box-shadow: 0 0 3px 3px #ebebeb;
  box-shadow: 0 0 3px 3px #ebebeb;
}
@media only screen and (max-width: 700px) {
  #gallery {
  margin: 0 auto;
  }
  #buttons button{
    margin: 5px 10px;
  }
  #buttons button.active:before{
    display: none; 
  }
}

