.hotel-cards {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

.hotel-card {
    margin-bottom: 20px;
    position: relative;
    width: calc(25% - 19px);
    font-size: 13px;
    -webkit-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.05);
    display: inline-block;
    border-radius: 5px;
    vertical-align: top;
    margin-right: 15px;
    background-color: #fff;
    color: #475669;
    font-family: 'apercu_pro', sans-serif;
}

.hotel-card__icon-abs .hint {
    top: 41px;
}

.hotel-card__icon-abs {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 20;
    font-size: 20px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
}

.hotel-card__img {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    padding: 5px;
    border-radius: 5px;
}

.hotel-card__link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.hotel-card__img img {
    border-radius: 5px;
}

.hotel-card__abs-acts {
    position: absolute;
    left: 15px;
    z-index: 3;
    top: 5px;
}

.hotel-card__abs-acts > * {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 20px;
}

.hotel-card__img-count {
    background-image: url(/i/icon-photo.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    color: #0074c5;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    height: 51px;
    background-size: contain;
    line-height: 68px;
    opacity: 0.7;
    text-align: center;
    width: 53px;
    cursor: pointer;
}

.hotel-card__map:hover, .hotel-card__img-count:hover {
    opacity: 1;
}

.hotel-card__map {
    background-image: url(/i/icon-map-on.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 40px;
    width: 50px;
    background-size: contain;
    cursor: pointer;
    opacity: 0.7;
}

.hotel-card__act {
    height: 40px;
    width: 50px;
    background-image: url(/i/icon-gear.svg);
    text-align: center;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0.7;
}

.hotel-card .hotel-card__top {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.hotel-card__price b {
    font-size: 24px;
    margin-right: 5px;
}

.hotel-card__price {
    color: #475669;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

a.hotel-card__name:hover {
    color: #318cc6;
}

.hotel-card__name {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #475669;
    display: block;
    text-transform: uppercase;
}

.hotel-card__bottom {
    padding: 15px;
}

.hotel-card__txt {
    font-size: 13px;
    margin-bottom: 5px;
}

@media screen and (max-width: 1600px) {
    .hotel-card {
        width: calc(33.3% - 18px);
    }
}

@media screen and (max-width: 1024px) {
    .hotel-card {
        width: calc(50% - 18px);
    }

    .hotel-card__name {
        font-size: 14px;
    }
}

@media screen and (max-width: 766px) {
    .hotel-cards, .hotel-card {
        width: 100%;
    }
    .hotel-card__price b{
        font-size: 16px;
    }
}