/* ==========================================
   PÁGINA DE COMPRA
========================================== */

.checkoutEventBar {
    color: #ffffff;
    background: #282828;
}

.checkoutEventContainer {
    width: min(1140px, calc(100% - 40px));
    min-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.checkoutEventThumb {
    width: 70px;
    height: 38px;
    flex-shrink: 0;
    object-fit: cover;
    background: #9d0000;
}

.checkoutEventInfo {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkoutEventInfo strong {
    font-size: 15px;
    line-height: 1.3;
}

.checkoutEventInfo span {
    font-size: 13px;
}

.checkoutMain {
    min-height: calc(100vh - 175px);
    padding: 48px 0 80px;
    background: #ffffff;
}

.checkoutContainer {
    width: min(806px, calc(100% - 40px));
    margin: auto;
}

.dateSelectorHeader {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 18px;
}

.dateSelectorHeader h1 {
    font-size: 18px;
}

.dateArrows {
    display: flex;
    gap: 12px;
}

.dateArrows button {
    width: 30px;
    height: 30px;
    border: 0;
    color: #999999;
    background: transparent;
    font-size: 26px;
    line-height: 1;
}

.dateTabs {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    border-bottom: 1px solid #e4e4e4;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.dateTabs::-webkit-scrollbar {
    display: none;
}

.dateTab {
    position: relative;
    min-width: 157px;
    min-height: 105px;
    padding: 26px 18px 20px;
    flex-shrink: 0;
    border: 0;
    color: #313131;
    background: transparent;
    text-align: center;
}

.dateTab strong {
    display: block;
    margin-bottom: 4px;
    color: #00a7c4;
    font-size: 18px;
}

.dateTab span {
    font-size: 13px;
}

.dateTab.active {
    border: 1px solid #e2e2e2;
    border-bottom-color: #ffffff;
    background: #ffffff;
}

.dateTab.active::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 13px;
    height: 13px;
    border-right: 3px solid #00a7c4;
    border-bottom: 3px solid #00a7c4;
    transform: translateX(-50%) rotate(45deg);
}

.selectedArtists {
    min-height: 64px;
    padding: 20px 22px;
    border: 1px solid #e4e4e4;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    font-size: 14px;
    line-height: 1.55;
}

.ticketOptions {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticketOption {
    min-height: 96px;
    padding: 20px 24px 20px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #dddddd;
    border-left: 8px solid #dedede;
    border-radius: 7px;
    background: #ffffff;
}

.ticketOptionInfo {
    flex: 1;
}

.ticketOptionInfo h2 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.ticketOptionPrice {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.ticketOptionPrice strong {
    color: #00a7c4;
    font-size: 18px;
}

.ticketOptionPrice span {
    color: #999999;
    font-size: 13px;
}

.ticketBuyButton {
    min-width: 155px;
    min-height: 44px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: #00a7c4;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition:
        background .2s ease,
        transform .2s ease;
}

.ticketBuyButton:hover {
    background: #078fa7;
    transform: translateY(-2px);
}

.ticketOptionUnavailable {
    opacity: .6;
}

.ticketOptionUnavailable .ticketBuyButton {
    pointer-events: none;
    background: #a8a8a8;
}

@media (max-width: 760px) {

    .checkoutEventContainer {
        width: calc(100% - 28px);
        min-height: 82px;
    }

    .checkoutEventThumb {
        width: 62px;
        height: 42px;
    }

    .checkoutEventInfo strong {
        font-size: 13px;
    }

    .checkoutEventInfo span {
        font-size: 11px;
    }

    .checkoutMain {
        padding: 30px 0 60px;
    }

    .checkoutContainer {
        width: calc(100% - 28px);
    }

    .dateSelectorHeader {
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .dateSelectorHeader h1 {
        font-size: 17px;
    }

    .dateTab {
        min-width: 130px;
        min-height: 96px;
        padding: 22px 14px 18px;
    }

    .dateTab strong {
        font-size: 16px;
    }

    .dateTab span {
        font-size: 11px;
    }

    .selectedArtists {
        min-height: 60px;
        padding: 17px;
        font-size: 12px;
    }

    .ticketOption {
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .ticketBuyButton {
        width: 100%;
    }

}