<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ticket-section {
    background: #f7f8f9;
    padding: 5rem 2rem;
}

.ticket-list {
    display: grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    gap: 2.8rem;
    max-width: 1170px;
    margin: 0 auto;
}
.ticket-list +.ticket-list {
    margin-top: 2.8rem;
}

@media (min-width: 1024px) {
    .ticket-list {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

.ticket-item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .ticket-item {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .ticket-item-with-image {
        grid-column: span 2 / span 2;
    }
}

.ticket-item-image-container {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    padding-bottom: 100%;
}

@media (min-width: 1024px) {
    .ticket-item-image-container {
        width: 50%;
        padding-bottom: 0;
    }
}

.ticket-item-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-item-content-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    padding: 7rem 2rem 1rem;
    min-height: 55rem;
}

@media (min-width: 640px) {
    .ticket-item-content-container {
        padding: 7rem 4rem 1rem;
    }
}

@media (min-width: 1024px) {
    .ticket-item-content-container {
        padding: 7rem 7rem 1rem;
    }
}

.ticket-item-price {
    color: #3B55E6;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
}

.ticket-item-subheading {
    color: #222328;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.ticket-item-heading {
    color: #222328;
    font-size: 4.2rem;
    font-style: normal;
    line-height: 5.2rem;
    text-align: left;
    margin: 0;
}

.ticket-item-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1rem;
}

.ticket-item-price-item {
    color: #222328;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.025rem;
}

.ticket-item-description {
    margin-top: 3.2rem;
    color: #8C8F94;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.8rem;
    letter-spacing: -0.025rem;
    word-break: break-word;
}

.ticket-item-description p {
    margin: 0;
}

.ticket-item-top-content {
    width: 100%;
    height: 100%;
}

.ticket-item-bottom-content {
    width: 100%;
    margin-top: auto;
    padding-top: 5rem;
}

.ticket-item-buy-description {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8F94;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.25px;
    text-transform: uppercase;
    min-height: 5rem;
}

.ticket-item-buy-error-description {
    display: flex;
    align-items: start;
    justify-content: center;
    color: #F00;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.25px;
    text-transform: uppercase;
    min-height: 3.4rem;
    margin-top: 3rem;
}
.ticket-item-btn,
.ticket-item-btn-outlined {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    border-radius: 9999px;
    text-transform: uppercase;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out, border-color 300ms ease-in-out;
}

.ticket-item-btn:not(:disabled):hover,
.ticket-item-btn-outlined:not(:disabled):hover {
    color: #fff;
    border-color: #243fd9;
    background-color: #243fd9;
}

@media (min-width: 420px) {
    .ticket-item-btn,
    .ticket-item-btn-outlined {
        width: 12rem;
    }
}

.ticket-item-btn:disabled,
.ticket-item-btn-outlined:disabled {
    color: #222328;
    opacity: 0.4;
    border-color: #E8E9E9;
    background-color: #E8E9E9;
    cursor: not-allowed;
}

.ticket-item-btn-outlined{
    color: #222328;
}

.ticket-item-btn svg,
.ticket-item-btn-outlined svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: currentColor;
}

.ticket-item-btn {
    height: 5rem;
    background: #3B55E6;
    border: 2px solid #3B55E6;
}

.ticket-item-btn-outlined{
    height: 5rem;
    background-color: transparent;
    border: 2px solid #3B55E6;
}

.ticket-item-btn-placeholder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #8C8F94;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    border-radius: 9999px;
    background: #F7F8F9;
    text-transform: uppercase;
    height: 5rem;
    padding: 0 4.8rem;
}

.ticket-item-promo-code-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0.7rem;
    justify-content: flex-end;
    align-items: center;
    gap: 0.4rem;
    align-self: stretch;

}

@media (min-width: 640px) {
    .ticket-item-promo-code-wrapper {
        flex-direction: row;
        height: 6.2rem;
        border-radius: 9999px;
        border: 2px solid #E8E9E9;
    }
}

.ticket-item-promo-code-input {
    width: 100%;
    height: 4.8rem;
    background-color: transparent;
    text-align: left;
    color: #222328;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    padding: 0 2rem;
    border-radius: 9999px;
    border: 2px solid #E8E9E9;
}
.ticket-item-promo-code-input::placeholder {
    color: #A9A9A9;
}
@media (min-width: 640px) {
    .ticket-item-promo-code-input {
        height: 100%;
        border: none;
    }
}

.ticket-item-promo-code-btn {
    flex-shrink: 0;
    width: 100%;
    height: 5rem;
    font-size: 1.4rem;
    padding: 0 4.5rem;
    border-radius: 9999px;
    background-color: #3B55E6;
    text-transform: uppercase;
    transition: background-color 300ms;
}

.ticket-item-promo-code-btn:hover {
    background-color: #243fd9;
}

@media (min-width: 640px) {
    .ticket-item-promo-code-btn {
        width: auto;
    }
}

.ticket-item-basket-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket-item-basket-amount-wrapper {
    display: flex;
    align-items: center;
}

.ticket-item-basket-amount, .ticket-item-basket-amount-placeholder {
    width: 5rem;
    color: #222328;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}

.ticket-list-view-basket-wrapper {
    display: flex;
    justify-content: center;
    position: sticky;
    margin-top: 4rem;
    bottom: 2.8rem;
}

.ticket-list-view-basket-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 38.4rem;
    height: 6.2rem;
    padding: 0 2rem;
    border-radius: 9999px;
    background: #3B55E6;
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 300ms ease-in-out;
}
.ticket-list-view-basket-btn:disabled {
    cursor: not-allowed;
}
.ticket-list-view-basket-btn:not(:disabled):hover {
    background-color: #243fd9;
}

.ticket-list-view-basket-btn-icon-wrapper {
    width: 2.4rem;
    height: 2.4rem;
}

.ticket-list-view-basket-btn-icon-wrapper svg {
    fill: currentColor;
    width: 2.4rem;
    height: 2.4rem;
}

.ticket-basket {
    width: 100%;
    max-width: 750px;
    padding: 2rem;
    border-radius: 10px;
    background: #FFF;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .ticket-basket {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .ticket-basket {
        padding: 7rem;
    }
}

.ticket-basket-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    border: none;
    color: #222328;
    background-color: #E8E9E9;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
    padding: 0;
    margin: 0 0 6.4rem;
}
.ticket-basket-close-btn:hover {
    color: #FFF;
    background-color: #243fd9;
}
.ticket-basket-close-btn &gt; svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: currentColor;
}

.ticket-basket-title {
    color: #222328;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
}

.ticket-basket-product-list {
    margin-top: 1.2rem;
}

.ticket-basket-product-item, .ticket-basket-product-subitem {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    color: #222328;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.25px;
}

.ticket-basket-product-subitem {
    font-size: 12px;
    padding-top: 0;
}

.ticket-basket-product-item-name {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-grow: 1;
    text-transform: uppercase;
}

.ticket-basket-product-item .ticket-basket-product-item-name-name {
    font-weight: 700;
}

.ticket-basket-product-item-name-spacer {
    margin: 0 0.3rem;
    display: none;
}

.ticket-basket-product-item-name-subname {
    color: #8C8F94;
}

.ticket-basket-product-item-amount,
.ticket-basket-product-item-price
{
    text-align: right;
}

.ticket-basket-product-item-amount {
    flex-shrink: 0;
    width: 4rem;
}

.ticket-basket-product-item-price {
    flex-shrink: 0;
    width: 7.2rem;
}

@media (min-width: 640px) {
    .ticket-basket-product-item-name {
        flex-direction: row;
    }
    .ticket-basket-product-item-name-spacer {
        display: block;
    }
}

.ticket-basket-total-price {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #E8E9E9;
    padding-top: 1.4rem;
    color: #222328;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.25px;
}

.ticket-basket-products-section {

}

.ticket-basket-buyer-section {
    margin-top: 5.5rem;
}

.ticket-basket-form-control {
    width: 100%;
    height: 4.8rem;
    border-radius: 9999px;
    border: 2px solid #E8E9E9;
    padding: 0 2.8rem;
    color: #222328;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    transition: color 300ms ease-in-out, border-color 300ms ease-in-out;
    text-align: left;
    margin: 0;
}
.ticket-basket-form-control:focus {
    outline: none;
}
.ticket-basket-form-control.invalid {
    color: #F00;
    border-color: #F00;
}
.ticket-basket-form-control::placeholder {
    color: #A9A9A9;
}

.ticket-basket-buyer-fields-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 1.8rem -0.6rem -0.6rem;
}

.ticket-basket-buyer-fields-item {
    width: 100%;
    margin: 0;
    padding: 0.6rem;
}

.ticket-basket-buyer-fields-item-half {
    width: 100%;
    margin: 0;
    padding: 0.6rem;
}
@media (min-width: 1024px) {
    .ticket-basket-buyer-fields-item-half {
        width: 50%;
    }
}

.ticket-basket-terms-section {
    margin-top: 5.6rem;
    margin-bottom: 5.6rem;
}

.ticket-basket-pay-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 38.4rem;
    height: 6.2rem;
    padding: 0 2rem;
    border-radius: 9999px;
    background: #3B55E6;
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 300ms ease-in-out;
}
.ticket-basket-pay-btn:disabled {
    cursor: not-allowed;
}
.ticket-basket-pay-btn:not(:disabled):hover {
    background-color: #243fd9;
}

.ticket-basket-pay-btn-icon-wrapper {
    width: 2.4rem;
    height: 2.4rem;
}
.ticket-basket-pay-btn-icon-wrapper svg {
    fill: currentColor;
    width: 2.4rem;
    height: 2.4rem;
}

.ticket-basket-terms-item {
    display: flex;
    align-items: center;
    color: #222328;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.25px;
    margin: 0;
}

.ticket-basket-terms-item input[type=checkbox] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    width: 2.8rem;
    height: 2.8rem;
    border: 2px #E8E9E9 solid;
    border-radius: 9999px;
    margin: 0 2.4rem 0 0;
}

.ticket-basket-terms-item input[type=checkbox]:after {
    content: '';
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;
    background-color: #3B55E6;
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}
.ticket-basket-terms-item input[type=checkbox]:focus {
    outline: none;
}
.ticket-basket-terms-item input[type=checkbox]:checked:after {
    opacity: 1;
}

.ticket-basket-terms-item a {
    color: #3B55E6;
    transition: color 300ms ease-in-out;
}
.ticket-basket-terms-item a:hover {
    color: #243fd9;
}

.ticket-basket-terms-item + .ticket-basket-terms-item {
    margin-top: 1.6rem;
}

.basket-error-message {
    display: flex;
    align-items: start;
    justify-content: center;
    color: #F00;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.25px;
    text-transform: uppercase;
    min-height: 3.4rem;
    margin-top: 3rem;
}

.ticket-section-switch-wrapper{
    display: flex;
    justify-content: center;
    margin-bottom: 4.5rem;
}

.ticket-section-switch-wrapper .switch {
    border-color: #e8e9e9;
    width: auto;
}

.ticket-section-switch-wrapper .switch a.active {
    background: #3b55e6;
    color: #fff;
}

@media (max-width: 450px) {
    .ticket-section-switch-wrapper .switch a,
    .ticket-section-switch-wrapper .switch a:focus {
        padding: 0 15px;
    }
}

.ticket-section-switch-wrapper .switch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 6rem;
}

.ticket-section-switch-wrapper a {
    height: 5rem;
    line-height: 5rem;
    float: none!important;
}</pre></body></html>