.ticketSummary__overview {
    width: 100%;
    border: none !important;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: var(--mbase-txtSize-7);
    margin: 0;
}

.ticketSummary__title {
    font-weight: var(--mbase-txt-regular);
    text-align: left;
    margin-bottom: var(--mbase-spacer);
    color: var(--mbase-clr-theme);
    font-size: var(--mbase-txtSize-3);
}

.ticketSummary__value,
.ticketSummary__price {
    padding-block: var(--mbase-spacer-sm);
    font-family: inherit;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    vertical-align: top;
    border: none !important;
}

.ticketSummary tr {
    border: none !important;
}

.ticketSummary tr:hover {
    cursor: auto;
    background: transparent;
    color: var(--mbase-clr-txt-body);
}

.ticketSummary__price {
    text-align: right;
    white-space: nowrap;
}

.ticketSummary__value--total,
.ticketSummary__price--total {
    font-weight: bold;
    font-size: var(--mbase-txtSize-5);
}

.ticketSummary__separatorBefore::before {
    content: "";
    border-top: 1px solid var(--mbase-clr-brdr-light);
    margin: var(--mbase-spacer-sm) 0 var(--mbase-spacer);
    width: 100%;
    display: block;
}

.ticketSummary__mobileSummary,
.ticketSummary__closeButton {
    display: none;
}

.ticketSummary__totalPrice {
    font-weight: var(--mbase-txt-bold);
}

@media (max-width: 47.98em) {
    .ticketSummary__mobileSummary {
        position: fixed;
        display: block;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 0;
        margin: 0;
        padding: var(--mbase-spacer);
        box-shadow: 0 0 var(--mbase-spacer-sm) rgba(0, 0, 0, 0.2);
        background-color: rgba(255, 255, 255, 0.97);
        z-index: 9999;
    }
}

@media (max-width: 47.98em) {
    .ticketSummary__footer {
        display: none;
    }
}

@media (max-width: 47.98em) {
    .ticketSummary__container {
        position: fixed;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
        padding: var(--mbase-spacer-xl) var(--mbase-spacer) var(--mbase-spacer-xxl);
        opacity: 0;
        visibility: hidden;
        background-color: var(--mbase-clr-bg-light);
        transition: opacity var(--mbase-transition-time) ease-in, top 0s var(--mbase-transition-time), visibility 0s var(--mbase-transition-time);
        z-index: 9998;
    }

    .ticketSummary__container.ticketSummary__container--visible {
        transition: top var(--mbase-transition-time) cubic-bezier(0, 0, 0.3, 1), visibility 0s cubic-bezier(0, 0, 0.3, 1);
        position: fixed;
        top: 0;
        overflow: auto;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 47.98em) {
    .ticketSummary__button {
        display: flex;
        justify-content: space-between;
        margin: 0;
    }
}

@media (max-width: 47.98em) {
    .ticketSummary__ticketAmount::after {
        content: "";
        display: inline-block;
        width: 0.6em;
        height: 0.6em;
        margin-left: var(--mbase-spacer-xs);
        opacity: 0.9;
        background: url(/ui/laborama-2023/img/arrows/icon--arrow-up--gray.svg) no-repeat;
        background-size: 0.6em;
        transition: all 0.25s ease-in-out;
    }

    [aria-expanded="true"] .ticketSummary__ticketAmount::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 47.98em) {
    .ticketSummary__closeButton {
        position: absolute;
        display: block;
        top: var(--mbase-spacer);
        right: var(--mbase-spacer);
        width: 1.4em;
        height: 1.4em;
        text-indent: -999em;
        opacity: 0.9;
        background: url(/ui/laborama-2023/img/icon--close.svg) no-repeat;
        background-size: 1.4em 1.4em;
    }
}

.ticketSummary__ticketFallback {
    display: flex;
    width: 100%;
    min-height: 8.5em;
    height: 7em;
    margin: 0;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

@media (max-width: 47.98em) {
    .ticketSummary__ticketFallback {
        min-height: 0;
        height: auto;
    }

    .ticketSummary__ticketFallback.ticketSummary__ticketFallback--desktop {
        display: none;
    }
}
