.htlBlockDescTextContainer {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.htlBlockDescReadmore,
.htlBlockDescReadless {
    cursor: pointer;
    font-weight: 400;
    display: none;
}

.htlBlockDescExtras {
    display: none;
}

.htlBlockImgWrapper {
    overflow: hidden;
    height: 550px;
    position: relative;
}

.htlBlockImgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 530px) {
    .hotelBlockDescContainer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.8);
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px;
        z-index: 10;

        max-height: 180px;
        overflow: hidden;
    }

    .htlBlockRating {
        float: right;
    }
}

@media (max-width: 530px) {
    .hotelBlockDescContainer {
        padding: 10px;
    }

    .htlBlockNameText {
        width: 100%;
    }

    .htlBlockImgWrapper {
        height: 250px;
    }
}

.htlBlockNameText {
    font-size: 18px;
    color: #222222;
    font-weight: 400;
    text-transform: capitalize;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.htlBlockRating {
    font-size: 18px;
    color: #f5a623;
    font-weight: 400;
}

.htlBlockDescText {
    font-size: 16px;
    word-break: break-word;
    color: #555555;
    font-weight: 300;
    line-height: 21px;
    margin-bottom: 5px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

a.htlBlockBookNow {
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    background: transparent;
    border: 1px solid #333333;
    padding: 10px 30px;
    text-transform: capitalize;
}

.btn.htlBlockBookNow:hover {
    border: 1px solid #333333;
}