.payment-alert__section {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 24px 10px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    background: var(--main-red);
}

.payment-wait__section {
    width: 100%;
    display: flex;
    padding: 128px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    text-align: center;
}

.countdown .number-label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .payment-alert__section {
        flex-direction: column;
        gap: 12px;
    }
}

#child-ticket .ticket__amount {
    visibility: collapse;
}

/* -------------------------------------------------------------------------- */
/*                                   Tickets                                  */
/* -------------------------------------------------------------------------- */
.buy-tickets__section {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.buy-tickets__section__ticket {
    display: flex;
    flex: 1 0 0;
    padding: 64px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    text-align: center;
    border-right: 1px solid rgba(28, 28, 28, 0.20);
    background: var(--white);
}

.ticket__info__age {
    margin-top: 8px;
}

.minus,
.plus {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.ticket__info__total-cost {
    margin-top: 24px;
}

.ticket__amount {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ticket__amount:hover {
    cursor: pointer;
}

.buy-tickets__total {
    width: 100%;
    padding: 0 24px;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#email-for-tickets {
    max-width: 400px;
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .buy-tickets__section__ticket {
        flex: 0 0 100%;
    }
}
/* -------------------------------------------------------------------------- */