/* Hot offers widget */

.section_title {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin: 50px 0 30px;
}

.hot_offers_widget {
    margin-bottom: 2rem;
}

.hot_offers_widget.hot_offers_reveal {
    opacity: 0;
    transform: translate3d(0, -28px, 0);
}

.hot_offers_widget.hot_offers_reveal.is_revealed {
    animation-name: hot_offers_reveal_in;
    animation-duration: 0.7s;
    animation-fill-mode: both;
}

@keyframes hot_offers_reveal_in {
    from {
        opacity: 0;
        transform: translate3d(0, -28px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hot_offers_widget .offer_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1420px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.hot_offers_widget .offer_wrapper a {
    color: #393939;
    text-decoration: none;
    overflow: hidden;
}

.hot_offers_widget .offer_item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    max-width: 400px;
    position: relative;
    transition: all 0.3s ease-out;
    width: 300px;
}

.hot_offers_widget .offer_item:hover {
    margin-top: -5px;
}

.hot_offers_widget .offer_item.offer_item_loading {
    filter: blur(12px);
    opacity: 0;
    transform: translate3d(0, 56px, 0) scale(0.94);
}

.hot_offers_widget .offer_item.offer_item_loading.is_loaded {
    filter: blur(0);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hot_offers_widget .offer_item > a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.hot_offers_widget .offer_price {
    background: var(--primary-color);
    position: absolute;
    right: 0;
    top: 170px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px 6px;
    border-radius: 15px 0 0 15px;
    text-shadow: none;
    color: #fff;
    line-height: 1.2;
    z-index: 2;
}

.hot_offers_widget .offer_rating {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    font-size: 12px;
    line-height: 1.3;
    color: #374151;
    white-space: nowrap;
}

.hot_offers_widget .offer_rating i {
    color: #f5b301;
    font-size: 11px;
}

.hot_offers_widget .offer_rating strong {
    font-weight: 600;
    color: #111827;
}

.hot_offers_widget .offer_rating span {
    color: #555;
}

.hot_offers_widget .offer_price span {
    color: #fff;
    display: block;
    line-height: normal;
    text-align: center;
    width: 100%;
}

.hot_offers_widget .offer_price span.from {
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(24, 23, 19, 0.5);
    transition: all 0.4s ease-out;
}

.hot_offers_widget .offer_item:hover .offer_price span.from {
    margin-top: 0;
}

.hot_offers_widget .offer_price span.person {
    font-size: 10px;
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(24, 23, 19, 0.5);
}

.hot_offers_widget .offer_img {
    height: 188px;
    width: 100%;
}

.hot_offers_widget .offer_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hot_offers_widget .title_label {
    color: #666;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    padding-right: 50px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.4s ease-out;
    white-space: nowrap;
    z-index: 1;
}

.hot_offers_widget .offer_content {
    background-color: #fff;
    line-height: 1.5;
    padding: 25px 15px 15px;
    position: relative;
    z-index: 1;
}

.hot_offers_widget .offer_content h4 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.hot_offers_widget .tour_info_title_h {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
    padding-bottom: 4px;
    color: #333 !important;
}

.hot_offers_widget .offer_content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    text-transform: none;
}

.tour_info_description .hot_description_title {
    margin-bottom: 3px;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 600;
    padding-bottom: 2px;
}

.tour_info_description .tour_info_title {
    margin-bottom: 3px;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 600;
    padding-bottom: 2px;
}

.tour_info_description > div {
    font-weight: 300;
    text-align: left;
    line-height: 1.5;
    font-size: 14px;
    color: #333;
}

.tour_info_description i {
    color: var(--primary-color);
    margin-right: 3px;
}

@keyframes hot_offers_bounce_vertical {
    0%, 100% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 1199.98px) {
    .hot_offers_widget .offer_item {
        width: 47%;
    }
}

@media (max-width: 991.98px) {
    .hot_offers_widget .offer_item {
        width: 80%;
    }
}

@media (max-width: 767.98px) {
    .hot_offers_widget .offer_item {
        width: 95%;
    }
}
