/**** Find a rental page css goes here **/
.clearFilters {
    text-align: right; font-size: 14px; padding: 5px 0;
}
.rentalsBox {
    padding-top: 20px;
    padding-bottom: 50px;
    max-width: 900px;
    margin: 0 auto;
}
.clearFilters a { color: #004274;}
.rentalsForm{
    background: #e8e8e8; font-size: 14px;
}
.rentalsForm .dropdown-toggle.minmaxPrice,
.rentalsForm .form-control {
    border-radius: 0;
    border: 0;
    appearance: none;
    text-align: center;
    background: #e8e8e8;
    border-right: 1px solid #c1c1c1;
    padding: 13px 10px;
    height: auto !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 13px;
    cursor: pointer;
}
.rentalsForm input {
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    height: 34px;
    padding: 0 30px 0 10px;
    margin: 7px;
    width: calc(100% - 14px);
}
.searchBar a {
    position: absolute;
    right: 15px;
    top: 16px;
    width: 15px;
    height: 15px;
    display: inline-flex;
}
.rentalsForm .dropdown {
    border-right: 1px solid #c1c1c1;
    height: 100%;	
}
.rentalsForm .dropdown-menu input {
    padding-right: 10px;
}
.rentalsForm .dropdown-toggle {
    border: 0;
    height: 100%;
    padding: 13px 10px;
    width: 100%;
    background: transparent;
}
.rentalsForm .dropdown-toggle::after {
    display: none;
}
.rentalslist {margin-top: 15px; margin-bottom: 0px;}
.rentalslist ul {padding-left: 0; margin-bottom: 0;}
.rentalslist ul li {list-style: none;}
.rentalslist ul li a {
    list-style: none; display: inline-flex; overflow: hidden;
    border: 1px solid #ccc; border-radius: 10px; color: #3b3b3b;
    text-decoration: none; width: 100%;
}
.rentalslist ul li:not(:last-child) {
    margin-bottom: 15px;
}
.imgBox {
    width: 30%; color: #3b3b3b; flex: 1 0 auto; height: 180px;
}
.imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infoBox {
    padding:10px; width:70%; flex:1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.infoBox h2 {
    font-size: 18px; color: #004274;
}
.infoBox p {font-size: 14px; margin-bottom: 0;   line-height: 18px;}
.infoBox h3 {
    font-size: 14px; font-weight: 600; margin-top: 5px;
}
.infoBox .price {
    font-size: 18px; color: #004274; font-weight: 600;
}
.infoBox .content {
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.availability {
    text-transform: capitalize;
    font-weight: 500; color: #3b3b3b;
}
.btn-primary {
    background: #EC3A3A; border-color: #EC3A3A;
}
.btn-primary:hover {background: #EC3A3A; border-color: #EC3A3A;}
#overlay{ 
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.51);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 70px;
  height: 70px;
  border: 7px #ddd solid;
  border-top: 7px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}

/* media queries  */
@media (max-width: 1399px) {
    .infoBox h2 {
        font-size: 16px;
    }
    .infoBox .price {
        font-size: 16px;
    }
    .rentalsBox {
        padding-top:0px;
    }
}
@media (max-width: 991px) {
    .imgBox {
        height: 160px;width: 130px;
    }
} 
@media (max-width: 575px) {
    .rentalsForm .dropdown-toggle.minmaxPrice, .rentalsForm .form-control {
        padding: 7px 10px;
        text-align: left;
        background-position-y:7px;
        border-right: 0;
    }
    .rentalsForm .dropdown {
        border-right: 0;
    }
    .rentalsForm .form-group:not(:last-child) {
        border-bottom: 1px solid #c1c1c1;
    }
    .infoBox h2, .infoBox p, .infoBox h3, .infoBox .price {
        font-size: 12px; margin-bottom: 0;
    }
    .imgBox {height:auto;  max-height: 160px;}
} 
/*** Find a rental page css ends here **/