.dates > div {
    width: 100%;
    box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
    border-radius: 25px;
    padding: 25px;
}


.date {
    background-color: white;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #808080;
    font-size: 1.25rem;
    cursor: pointer;
}

.date.is-full {
    cursor: not-allowed;
    opacity: 0.6;
}

.date.is-full input[type="radio"] {
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .date {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .date > .left {
        grid-column: 1 / 3;
        display: flex;
        align-items: center;
        gap: 1rem;
        max-height: min-content;
        align-self: start;
    }
}

.date > .details {
    font-size: 1rem;
}

.date > .tags {
    font-size: 1rem;
}

.date > .details > div {
    margin-bottom: 15px;
}

.date > .tags > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.total-price {
    background-color: var(--category-secondary, #035458);
    color: white;
    position: relative;
    padding-bottom: 40px !important;
}

.total-price > .heading {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.total-price > .value {
    font-weight: 400;
    font-size: 1.25rem;
}

.total-price > .astrix {
    margin-top: 1rem;
    font-width: 400;
    font-size: 1rem;
}

.total-price > .booking {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 24px !important;
    height: fit-content;
    font-size: 20px !important;
    font-weight: 700 !important;
    background-color: #FBB000 !important;
    border-width: 0px !important;
    border-color: RGBA(255, 255, 255, 0) !important;
    border-radius: 18px !important;
    color: #070707 !important;
    transition: all 0.3s ease;
}

.total-price > .booking::after {
    content: "\00BB" !important;
    font-size: 1.4em !important;
    opacity: 1 !important;
    margin-left: .3em !important;
    line-height: 1 !important;
}

.total-price > .booking:hover {
    background-color: #000 !important;
    color: #fff !important;
    transform: translateY(-0.5px);
}

.total-price > .booking:disabled {
    background-color: #c9c9c9 !important;
    color: #666 !important;
    cursor: not-allowed;
    transform: none;
}

.total-price > .booking:disabled:hover {
    background-color: #c9c9c9 !important;
    color: #666 !important;
    transform: none;
}

@media (max-width: 767px) {
    .total-price {
        padding-bottom: 25px !important;
    }

    .total-price > .booking {
        position: static;
        margin-top: 16px;
    }
}

.date .left .context {
    color: var(--category-secondary, #035458);
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 600;
    max-width: 80%;
}

.select-box {
    margin: 10px;
    padding: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: unset;
    outline: 3px solid dimgray; /* border */
    outline-offset: 4px;      /* gap */
}

.select-box.selected {
    background-color: dimgray;
}

/* Discount Price Display */
.total-price > .value {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.total-price > .value .original-price {
    text-decoration: line-through;
    text-decoration-color: white;
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
}

.total-price > .value .discount-percent {
    font-size: 1.3rem;
    font-weight: 400;
    color: #FBB102;
    line-height: 1;
}

.total-price > .value .discount-percent::before {
    content: '-';
}

.total-price > .value .discount-percent::after {
    content: '%';
}

.total-price > .value .discount-name {
    font-size: 0.9rem;
    color: black;
    font-weight: 700;
    white-space: nowrap;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
}

.total-price > .value .final-price {
    font-size: 1.15rem;
    font-weight: 400;
    color: white;
}

.total-price > .value .vat-info {
    font-size: 1.15rem;
}

input[type="radio"] {
     width:22px;
     height:22px;
}

input[type="radio"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

input[type="radio"]:hover {
    cursor: pointer;
}