.calendar-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.calendar {
    display: inline-block;
    width: 50%;
}
.month-header {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}
.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.weekday {
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
}
.day {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    height: 85px;
    display: flex;
    flex-direction: column;
}
.day-number {
    text-align: left;
}
.price {
    font-size: 12px;
    margin-top: 6px;
}
.selected {
    position: relative;
    border-color: #bd1e2d;
}
.selected::after {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: 2px;
    right: 2px;
    background-image: url(../images/frontend/check.svg);
    background-repeat: no-repeat;
}
.other-month,
.day.is-past {
    opacity: 0.5;
    pointer-events: none;
}

.day:not(:has(.price)) {
    pointer-events: none;
}

.other-month .price,
.day.is-past .price {
    text-decoration: line-through;
}

.hotel-cat-radio input {
    position: absolute;
    opacity: 0;
}

.hotel-cat-radio .checkmark {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
}

.hotel-cat-radio:has(input:checked) {
    border-color: #bd1e2d !important;
}

.hotel-cat-radio:has(input:checked) .checkmark {
    display: inline-block;
}

.hotel-category {
    display: none;
}

.hotel-category.active {
    display: block;
}

.btn-calendar-next {
    float: right;
}

.tour-experts .images img {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all .3s;
}

.tour-experts .images img.active {
    border-color: #bd1e2d;
}

.tour-experts .whatsapps a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-experts .whatsapps a:not(.active) {
    display: none;
}

.ta-rating {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    text-decoration: none;
    font-size: 12px;
}

.ta-rating .dots {
    display: flex;
    gap: 4px;
}

.ta-rating .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #00aa6c;
    background-color: transparent;
}

.ta-rating .dot.full {
    background-color: #00aa6c;
}

.ta-rating .dot.half {
    background: linear-gradient(90deg, #00aa6c 50%, transparent 50%);
}

.ta-rating .total-review {
    flex: 0 0 100%;
    padding-left: 25px;
}

.booking-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12px;
}

.booking-rating .score {
    display: inline-block;
    border-radius: 6px 6px 6px 0;
    background: #003b95;
    flex: 0 0 36px;
    max-width: 36px;
    height: 36px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    line-height: 36px;
}

.booking-rating .total-review {
    display: block;
    padding: 2px 0 0 6px;
}

@media (max-width:767px) {
    body.single-group-tour .contact-bar,
    body.single-private-tour .contact-bar {
        display: none;
    }
}