.tl-preload {
    background-color: #f8f7f7;
    border: 0;
}

.tl-room__row, .tl-hotel__row {
    width: 100%;
}

.tl-hotel-price {
    font-family: Circe, sans-serif;
}

.tl-hotel__header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
    padding: 40px 80px;
}

.tl-hotel__header .tl-hotel__row {
    z-index: 2;
}

.tl-hotel__layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.tl-hotel__header .tl-hotel__row:last-child {
    display: none;
}

.tl-hotel__header .tl-hotel__row .tl-hotel__col:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tl-hotel__title {
    font-size: 48px;
    font-family: Forum, sans-serif;
    font-weight: normal;
    color: #fff;
    line-height: 1.2;
    margin-right: 15px;
}

.tl-hotel__star:before {
    content: '*';
    font-size: 48px;
    font-family: Forum, sans-serif;

}

.tl-hotel__star.-star-1:before {
    content: '*';
}

.tl-hotel__star.-star-2:before {
    content: '**';
}

.tl-hotel__star.-star-3:before {
    content: '***';
}

.tl-hotel__star.-star-4:before {
    content: '****';
}

.tl-hotel__star.-star-5:before {
    content: '*****';
}

.tl-hotel__header .tl-link {
    font-size: 24px;
    color: #fff;
    text-decoration: underline;
    line-height: 1.2;
}

.tl-hotel-price .tl-room:not(:last-child) {
    border-color: #d6d6d6 !important;
}

.tl-hotel-price .tl-room .tl-room__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 65px;
    padding: 10px 40px;
}

.tl-hotel-price .tl-hotel {
    border: 0;
    margin-bottom: 48px;
}

.tl-hotel__room-list {
    background-color: #f8f7f7;
    padding: 26px 35px 30px 40px;
}

.tl-room__title:before {
    width: 8px;
    height: 14px;
    background-image: url(../images/icon-arrow.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: none;
    transform: none;
    border: 0;
}

.tl-room.-open .tl-room__title:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.tl-room__title {
    font-size: 30px;
    font-family: Forum, sans-serif;
    font-weight: normal;
    color: #000;
    line-height: 1.2;
}

.tl-link.-room {
    font-size: 20px;
    font-family: Circe, sans-serif;
    color: #ff915a;
    font-weight: bold;
    text-decoration: underline;
    line-height: 1.2;
}

.tl-room__col.-price, .tl-room__price {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
}

.tl-hotel-price .tl-room__price-num {
    color: #000 !important;
}

.tl-room.-open .tl-room__body {
    padding: 10px 0 20px;
}

/*

.tl-room__desc {
    font-size: 20px;
}*/

.tl-hotel-price .tl-button {
    color: #fff;
    background-color: hsla(0, 0%, 100%, .2);
    border: 0;
    font-weight: 600;
    padding: .825rem 1.825rem;
    font-size: .85rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9a71), to(#ffb066));
    background-image: linear-gradient(180deg, #ff9a71, #ffb066);
    margin: 0 10px;
}


.tl-hotel-price .tl-button:after, .tl-hotel-price .tl-button:before {
    content: "";
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: -1;
}

.tl-hotel-price .tl-button, .tl-hotel-price .tl-button:after, .tl-hotel-price .tl-button:before {
    border-radius: 10rem;
    cursor: pointer;
    -webkit-transition: all .17s ease;
    transition: all .17s ease;
}

.tl-hotel-price .tl-button:before {
    background: rgba(255, 154, 113, .2);
    height: calc(100% + 1.225rem);
    width: calc(100% + 1.225rem);
}

.tl-hotel-price .tl-button:after {
    background: rgba(255, 154, 113, .15);
    -webkit-animation: j 1.36s forwards;
    animation: j 1.36s forwards;
    height: calc(100% + 1.725rem);
    width: calc(100% + 1.725rem);
}

.tl-hotel-price .tl-button:hover {
    color: #fff;
}

.tl-hotel-price .tl-button:hover:before {
    -webkit-animation: k .51s;
    animation: k .51s;
}

.tl-hotel-price .tl-button:hover:after {
    -webkit-animation: j 1.36s forwards;
    animation: j 1.36s forwards;
    height: calc(100% + 1.725rem);
    width: calc(100% + 1.725rem);
}


@media (max-width: 767px) {
    .tl-hotel__header {
        height: 240px;
        padding: 40px;
    }

    .tl-room__gallery {
        overflow: hidden;
    }

    .tl-hotel-price .tl-room .tl-room__header {
        padding: 10px;
    }

    .tl-hotel__room-list {
        padding: 0 20px;
    }

    .tl-hotel__title {
        font-size: 42px;
    }

    .tl-room__title {
        font-size: 26px;
    }

    .tl-room__col.-price, .tl-room__price {
        font-size: 18px;
    }

    .tl-link.-room {
        font-size: 18px;
    }

    .tl-hotel__header .tl-link {
        font-size: 20px;
    }

    .tl-hotel__header {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .tl-hotel-price .tl-button {
        font-size: .7rem;
    }

    .tl-hotel__header {
        height: 230px;
        padding: 20px;
    }

    .tl-hotel__room-list {
        padding: 0 10px;
    }

    .tl-hotel__title {
        font-size: 36px;
    }

    .tl-room__title {
        font-size: 22px;
    }

    .tl-room__col.-price, .tl-room__price {
        font-size: 16px;
    }

    .tl-link.-room {
        font-size: 16px;
    }

    .tl-hotel__header .tl-link {
        font-size: 16px;
    }

    .tl-hotel__header {
        padding: 40px 20px;
    }

    .tl-hotel {
        font-size: 16px;
    }

    .tl-hotel__star {
        position: absolute;
        top: 30px;
        right: 20px;
    }
}
