.filters-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1c1b1d;
  z-index: 100000;
  padding: 20px;
  color: #fff;
}
 
@media (max-width: 767px) {
  .visible-xs-inline {
      display: inline-block !important;
  }
}


.filters-mobile.open {
  display: block;
}

.filter-count {
  display: inline-block;
  text-align: center;
  padding-top: 1px;
  background: #F96666;
  border-radius: 10px;
  width: 20px;
  height: 20px;
}

.close-filters {
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}

/* .arrow:hover {
  background:#F0F0F0; 
}
.day {
  border:0px solid #fff; 
  border-radius:50%;
  padding-top:2px;  
}
.day:hover {
  border:2px solid #222222;   
  padding-top:0px;   
} */

 /*
.button { 
    font-size: 15px;
    line-height: 1;
    color: #252628;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    font-weight: 400;
    background-color: rgba(4,167,183,0);
    -webkit-box-shadow: 0 4px 34px -22px rgba(37,38,40,0);
    box-shadow: 0 4px 34px -22px rgba(37,38,40,0);
    padding:10px;
    border-radius:5px;
}

.button:hover {
    background:#4FBDBA;
    color:#fff;
}

.close {  
    position:relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left:5px;
    cursor:pointer;
    vertical-align: middle;
  }
  
  .close:before, .close:after {
    position: absolute; 
    background-color:#000;
    content: ' ';
    height: 12px;
    width: 1px; 
  }

  .close:before {
    transform: rotate(45deg);
  }

  .close:after {
    transform: rotate(-45deg);
  }

  .close:hover:after {
    background-color:#ea8203;
  }
  
  .close:hover:before {
    background-color:#ea8203;
  }
 
  input:hover::placeholder {
    color: transparent;
  }

   select {
    color:#484848;  
    padding-left:5px;
    padding-right:5px;  
    font-weight:400;
    font-size:13px;
    height: 32px;
    border:thin solid #e9e9f2;
    outline:none; 
    background-color: #fff; 
    -webkit-appearance: none;}

   select option {
  background-color: #fff; 
  -webkit-appearance: none;

}