/*====== CUSTOM CSS ======*/

.hotels-list {
    width: 100% !important;
    display: flex;
    flex-flow:row wrap;
  justify-content: space-evenly;
    flex-direction: row;
    min-width: 100% !important;
}

.hotel-rate-buttons {
    margin: 15px 0px 15px 0px;
}

.hotel-rate-buttons button{
    display:inline-block;
    margin-bottom:20px;
}

.hotel-rate-buttons a.active-button button{
    background-color:#23527c;
}

.hotel-content{
  flex: 0 0 200px;
  background:#f1f1f1;
  border:1px solid #e1e1e1;
  padding:10px 10px 60px 10px;
  border-radius:5px;
  -webkit-border-radius:5px;
  -moz-border-radius: 5px;
  margin-bottom:10px;
  position:relative;
}

.hotel-content h3{
  font-size:16px;
  margin-top:10px;
}


.hotel-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.hotel-image img {
    object-fit: contain;
    object-position: -20% 0;
    max-width:250px;
}

.hotel-meta {
    border-top: 1px solid #e1e1e1;
    padding-top: 10px;
}

.hotel-meta .hotel-price{
  display:block;
  margin-bottom:5px;
  font-size:15px;
  font-weight:bold;
}
.hotel-meta .hotel-category{
  display:block;
  font-weight:bold;
  font-size:13px;
  font-style:italic;
  margin-bottom:10px;
  margin-top:5px;
}
.hotel-meta .hotel-savings{
  display:block;
  background:#6dbf6d;
  font-size:15px;
  width:50%;
  margin:0 auto 5px auto;
  font-weight:bold;
  padding:3px 0px;
    color:#ffffff;
}
.hotel-meta .hotel-price span{
  display:block;
  font-size:.9em;
}


.hotel-content .hotel-desc{
  font-size:14px;
}

.hotel-content button{
  padding:0px;
  position:absolute;
  bottom:10px;
  left:14%;
  z-index:10;
}

.hotel-content button a{
  color:#ffffff;
  display:block;
  padding:10px 30px;
  border-radius:30px;
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
}
.hotel-content button a:hover{
  color:#dddddd;
}

.hotel-content button a span {
    display: block;
    font-size: .6em;
    line-height: 1em;
}

@media (min-width:992px){
 .col-md-offset-2{
   margin-left:0px;
 }
}

@media (max-width:768px){
  .hotel-content button{
    left:14%;
  }
}
