/* city.css */


/*
 * ИЗ MAIN.CSS
 */

/*
.form-inline .form-control {
    display: block;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 0;
}

.form-group:last-child {
    width: 100%;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .form-group {
        width: 28.5%;
    }
    .form-group:last-child {
        width: 12%;
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .form-group {
        width: 30%;
    }
    .form-group:last-child {
        width: 8%;
    }
}

@media (max-width: 767px) {
    .form-group button {
        width: 100%;
    }
}
*/

.property-search label[for=guests],
.property-search label[for=rooms],
.property-search label[for=metro_station_id] {
    display: block;
}

.btn-custom {
    border-radius: 2px;
    height: 36px;
    line-height: 36px;
    outline: 0;
    padding: 0 2rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .btn-tooltip {
      font-size: 13px;
      position: absolute;
      top: -35px;
      right: 0;
      width: 200px;
      text-align: center;
      padding: 4px;
      color: white;
      background: black;
      border-radius: 4px;
    }

    .btn-tooltip:after {
      content: "";
      display: block;
      position: absolute;
      bottom: -5px;
      right: 10px;
      width: 0;
      border-width: 5px 5px 0;
      border-style: solid;
      border-color: black transparent;
    }

    .filter-ajax {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .filter-ajax {
        justify-content: space-around;
    }
}

.favorites.add-to-favorites {
    position: absolute;
    margin: 10px;
    top: -5px;
    left: -3px;
    z-index: 999;
}

.favorites .material-icons{
    color: #ffffff;
    font-size: 30px;
    vertical-align: text-top;
}

.favorites:hover {
    cursor: pointer;
}

.fav-active{
    display: block!important;
}
.fav-no-active{
    display: none!important;
}

.favorite-region {
    color: rgba(0, 0, 0, 0.87);
}

.favorite-region:hover {
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
}

.filter-ajax {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sorting-points {
    margin-left: 15px;
    margin-top: -15px;
    margin-bottom: 0;
    opacity: 0;
    font-size: 13px;
    font-weight: 300;
    color: #8d8d8d;
    position: absolute;
}
.thumbnail:hover .sorting-points {
    opacity: 1;
}
