/*
    A quick-win refresh ahead of the new Eventcube Store UI
*/

body {
    font-family: var(--font-family-primary);
    -webkit-font-smoothing: antialiased;
    color: #333;
}

body.dark-scheme .color-scheme {
    color: #ccc;
}

body.dark-scheme a:hover .color-scheme,
body.dark-scheme a:active .color-scheme {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
legend {
    font-family: var(--font-family-primary);
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

h2,
.hb {
    font-size: 22px;
}

fieldset {
    padding: 0;
    margin: 0;
}

legend {
    top: 0;
    left: 0;
}

textarea,
select,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'] {
    width: 100%;
    padding: 7px 20px;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 22px;
}

textarea:focus,
select:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus {
    border: 1px solid #ccc;
}

/* hide input[type="number"] arrow */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type='number'] {
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type='checkbox'] {
    left: 0;
    float: none;
}

.checkbox input[type='checkbox'] {
    left: 0;
    float: none;
    margin: 0;
    margin-right: 0.5rem;
}

.checkbox input[type='checkbox'] + label {
    top: 2px;
    float: none;
    display: inline;
}

button,
.btn {
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white !important;
}

.btn-secondary:hover {
    opacity: 0.75;
    background-color: var(--secondary);
    color: white !important;
}

.btn-outline {
    background-color: transparent;
    padding-top: 9px;
    padding-bottom: 9px;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.card {
    margin-bottom: 2rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.13);
}

.card-large {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .card-large {
        padding: 3rem;
    }
}

.badge {
    display: inline-block;
    padding: 0 6px;
    background-color: #eee;
    color: #8d8d8d;
    font-family: var(--font-family-secondary);
    font-weight: 700;
    font-size: 0.65em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-warning {
    background-color: rgba(255, 194, 0, 0.15);
    color: #ffc200;
}

#nav li a:hover,
#nav li a:active {
    background-color: transparent;
}

.poweredby-footer {
    background: rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 15px;
}

.poweredby-footer p {
    font-family: Inter, sans-serif;
    color: #8d8d8d;
    letter-spacing: 1px;
    font-size: 10px;
}

.poweredby-footer img {
    max-width: 200px;
    display: inline-block;
}

.poweredby-footer #logo a img,
#navbar-store-logo,
#navbar-store-logo #logo,
#navbar-store-logo #logo a,
#navbar-store-logo #logo a img {
    padding: 0px !important;
    object-fit: contain;
}

#navbar-store-logo #logo,
#navbar-store-logo #logo a,
#navbar-store-logo #logo a img {
    max-width: 200px;
    max-height: 40px;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    #main {
        /* 100vh - navbar height - footer height */
        min-height: calc(100vh - 309px);
        background: #fcfbfb;
    }

    #main .wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

#events > h1 {
    margin-bottom: 1.5rem;
}

#events .cols {
    margin: 0 -13px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#events .event.quarter {
    padding: 0 13px;
    margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
    #events .event.quarter {
        width: 80%;
    }
}

@media screen and (max-width: 414px) {
    #events .event.quarter {
        width: 80%;
    }
}

@media screen and (max-width: 375px) {
    #events .event.quarter {
        width: 90%;
    }
}

#events .event .card {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.13);
}

#events .event a {
    text-decoration: none;
}

#events .event .event-image {
    width: 100%;
    height: auto;
}

#events .event .event-content {
    padding: 1rem 1rem 1.3rem;
    margin: 0;
    text-align: center;
}

#events .event .event-content .event-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2lh;
    margin-bottom: 0.8rem;
    font-size: 20px;
    line-height: 24px;
    white-space: normal;
}

#events .event .event-content .event-title > a {
    display: block;
    display: -webkit-box;
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

#events .event .event-content .event-date {
    font-family: var(--font-family-primary);
    font-size: 12px;
    line-height: 16px;
    height: 2lh;
    color: #333;
    margin-bottom: 0.8rem;
}

#events .event .event-content .cta {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-transform: none;
}

#events .event .event-content .cta.sml {
    margin: 0;
    padding: 11px 1.5rem;
}

#tickets {
    padding-bottom: 0;
    padding-top: 0;
}

#tickets #password button[type='submit'] {
    width: 100%;
}

#tickets #no-password {
    margin: 0 calc(-1rem + 1px);
}

@media (min-width: 768px) {
    #tickets #password button[type='submit'] {
        width: auto;
    }

    #tickets #no-password {
        margin: 0 -20px;
    }
}

#tickets .ticket {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #e8e8e8;
}

#tickets .ticket:last-child {
    border-bottom: none;
}

#content-main #order-footer {
    display: flex;
    justify-content: end;
}

#content-main .ticket-group-footer #order-footer .pre-bg {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0rem;
    background-color: var(--primary);
    color: white !important;
    border-radius: 8px 8px 1px 1px;
    text-transform: uppercase;
    margin: 0px;
    padding: 0;
    min-height: 38px;
}

.category-title-wrapper:hover {
    background-color: color-mix(in srgb, var(--primary), #fff 7%);
}

#tickets #no-password {
    background-color: transparent !important;
}

#tickets #password {
    padding: 0 !important;
    border-radius: 1px 1px 8px 8px !important;
}

.protected-ticket-footer {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 1rem 0rem;
}

#tickets .group-buy {
    margin-top: 0rem !important;
}

#form-upsell .ticket {
    border-radius: 8px;
}

#order-basket .order-event.card {
    border-radius: 1px 1px 8px 8px;
}

.hb.category-title {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
}

.special-ticket-wrapper {
    padding: 0.75rem 1rem;
    height: 30px;
    background-color: var(--primary);
    border-radius: 8px 8px 1px 1px;
    min-height: 38px;
}

.special-ticket-title {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.hb.category-title {
    margin: 0 !important;
}

.promoter-header.group .hosted-by {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.highlight-cta.group {
    padding: 0px !important;
    margin: 0px !important;
}

.hosted-by .promoter-image,
.event-image {
    border-radius: 8px;
}

.default-ticket-wrapper,
img.flyer {
    border-radius: 8px;
}

.category-title-wrapper,
.ticket.group {
    padding: 0.75rem 1rem;
}

.category-title-wrapper p {
    height: 25px;
}

#tickets .ticket.highlight:active {
    background: rgb(var(--color-primary) / 0.1);
}

.group-by-wrapper {
    margin: 1rem 0rem !important;
    padding: 1rem;
    border-radius: 8px;
    background: rgb(var(--color-primary) / 0.1) !important;
}

.group-by-link {
    text-decoration: none;
}

.highlight-cta.group,
.highlight-cta.group:hover,
.group-by-wrapper a:hover {
    color: color-mix(in srgb, var(--primary) 40%, #000000 80%) !important;
}

.group-by-wrapper:hover,
.highlight-copy:hover,
highlight-cta-icon:hover,
.special-ticket-title.caption {
    color: white;
}

.event-age.tooltip.caption {
    color: #8d8d8d;
    background-color: #e8e8e8;
}

/* Caption */
.caption {
    font-family: 'Inter-Bold', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 18px;
}

/* Body */
.body {
    font-family: 'DMSans-Regular', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

/* Body XS */
.body-xs {
    font-family: 'DMSans-Regular', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 16px;
}

/* Body XXS */
.body-xxs {
    font-family: 'DMSans-Regular', sans-serif;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 13px;
}

.highlight-cta,
.group-cta-container {
    display: flex !important;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.group-cta-container {
    justify-content: end;
}

@media (min-width: 768px) {
    #tickets .ticket {
        display: flex;
        align-items: center;
    }
}

#tickets .ticket .ticket-title {
    float: none;
    display: block;
    font-size: 14px;
    line-height: 18px;
}

#tickets .ticket .delivery-method {
    display: none;
    font-weight: 700;
    margin-right: 5px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#tickets .ticket .notice,
#order .ticket .notice {
    border-radius: 0;
    font-size: 10px;
    text-transform: uppercase;
    margin-right: 5px !important;
    margin-bottom: 3px !important;
}

#tickets .ticket .ticket-info {
    margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
    #tickets .ticket .ticket-info {
        margin-bottom: 0 !important;
    }
}

#tickets .ticket.offsale * {
    color: #8d8d8d !important;
}

#tickets .ticket .ticket-info .desc {
    margin-top: 0.25rem;
}

#tickets .ticket .ticket-info .desc p {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
    color: #8d8d8d;
}

#tickets .ticket .includes {
    margin-top: 1rem;
}

#tickets .ticket .includes > h6 {
    color: #8d8d8d;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    margin-bottom: 4px;
}

#tickets .ticket .includes ul li {
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #979797;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    line-height: 12px;
    letter-spacing: 0.83px;
    color: #8d8d8d;
    margin: 0;
    margin-right: 2px;
    border-radius: 0;
}

#tickets #order-totals {
    display: none;
}

#tickets #order-footer {
    padding: 0;
}

#tickets .ticket .price {
    padding-top: 7px;
}

#tickets .price span {
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
}

#tickets .ticket .price > span,
#tickets .ticket .ticket-total span {
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: 18px;
}

#tickets .ticket .price > small {
    color: #8d8d8d;
    font-size: 12px;
    line-height: 16px;
    white-space: initial;
}

#tickets .ticket .price > small > span {
    white-space: nowrap;
}

#tickets .ticket .label-deposit {
    margin-left: 0.25rem;
    top: -1px;
    border-radius: 0;
    background: #e8e8e8;
    color: #8d8d8d;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--font-family-secondary);
    letter-spacing: 1px;
    padding: 1px 7px;
}

.ordercheckout .ticket .label-deposit {
    background: #eeeeee;
    color: #8d8d8d;
    font-family: var(--font-family-secondary);
    letter-spacing: 1px;
}
.ticket .label-deposit {
    background: #eeeeee;
    color: #8d8d8d;
    font-family: var(--font-family-secondary);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 1px;
}

.ticket .price .deposit-info {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
}

#event-content .card {
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

#event-content .description {
    font-size: 14px;
    line-height: 20px;
}

#event-content .description p {
    margin-top: 0;
    margin-bottom: 1em;
}

#event-content .description ul,
#event-content .description ol {
    padding-inline-start: 1.5rem;
    margin-bottom: 1em;
}

#order-totals {
    font-style: normal;
    font-size: 1.1em;
}

#basket a {
    font-size: 16px;
    font-weight: 700;
}

#basket a:hover,
#basket a:active {
    background-color: transparent !important;
}

@media (max-width: 768px) {
    #event-content {
        padding-top: 2rem;
    }
}

@media (min-width: 768px) {
    #basket a:hover,
    #basket a:active {
        background-color: var(--primary) !important;
    }
}

#nav {
    font-weight: 700;
}

#event-show .event-image .flyer {
    border: none;
    box-shadow: none;
}

@media (min-width: 768px) {
    #event-show .event-image .flyer {
        border-radius: 8px;
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.13);
    }
}

#event-header {
    width: 100%;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    #event-header {
        width: 100%;
    }
}

@media screen and (max-width: 414px) {
    #event-header {
        width: 80%;
    }
}

@media screen and (max-width: 375px) {
    #event-header {
        width: 90%;
    }
}

#event-header .card {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    #event-header .card {
        border-top: 5px solid var(--secondary);
        padding: 35px 45px;
    }
}

#event-header .event-image {
    float: none;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

#event-header .event-details {
    float: none;
    width: auto;
}

#event-header .event-details .event-title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    #event-header .event-details .event-title {
        font-size: 36px;
    }
}

#event-header .event-details .event-date {
    font-size: 1rem;
    line-height: 1.25;
}

.section-header {
    margin-bottom: 0.5rem;
}

#buy-tickets .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-protection-wrapper {
    display: flex;
    align-items: center;
}

.booking-protection-wrapper .booking-protection-icon {
    width: 20px;
    height: 22px;
    margin-right: 0.5rem;
}

.booking-protection-wrapper .booking-protection-title {
    font-family: var(--font-family-secondary);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: #ffc200;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .booking-protection-title br {
        display: none;
    }
}

#sidebar .event-image {
    margin-bottom: 2rem;
}

#sidebar .sidebar-title {
    margin-bottom: 1rem;
}

#sidebar .sidebar-title h4.hc {
    color: #8d8d8d;
}

.event-promoter {
    margin-top: 0;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    text-align: center;
}

#sidebar .event-promoter {
    text-align: left;
}

.event-promoter.main .promoter-image {
    float: none;
    width: 128px;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-promoter .promoter-header {
    margin-bottom: 0.5rem;
}

.event-promoter .promoter-header > a {
    color: #333;
}

.event-promoter .promoter-bio {
    margin-top: 0;
    margin-bottom: 1rem;
}

body.dark-scheme .event-promoter .promoter-bio {
    color: #999;
}

.event-promoter .promoter-bio p {
    font-size: 14px;
    line-height: 20px;
    color: #767676;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.event-promoter #promoter-social {
    margin-bottom: 0;
}

#promoter-social {
    display: flex;
}

.event-promoter #promoter-social li a,
.event-promoter #promoter-social li {
    display: flex;
    width: 32px;
    height: 32px;
    text-align: center;
}

.event-promoter #promoter-social li a:hover {
    opacity: 0.75;
}

.event-promoter #promoter-social li a > span {
    display: none;
}

.ordercheckout header,
#checkout-page header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ordercheckout header .timer,
.ordercheckout header .right,
#checkout-page header .timer {
    margin-left: auto;
    margin-top: 0;
}

#checkout-flow {
    display: none;
}

#cdexpire p {
    font-size: 16px;
}

#order-booking-protection.card {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: none;
    border: 1px solid #e8e8e8;
}

@media (min-width: 768px) {
    #order-booking-protection.card {
        padding: 1.75rem 2.5rem;
        flex-direction: row;
    }
}

#order-booking-protection > div {
    flex: 1;
}

#order-booking-protection .booking-protection-wrapper {
    margin-bottom: 0.75rem;
}

#order-booking-protection .booking-protection-desc {
    color: #787878;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    #order-booking-protection .booking-protection-desc {
        margin-bottom: 0;
    }
}

#order-booking-protection .booking-protection-actions {
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    #order-booking-protection .booking-protection-actions {
        justify-content: flex-start;
        margin-left: 2rem;
    }
}

#order-booking-protection label {
    width: auto;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
}

@media (min-width: 768px) {
    #order-booking-protection label {
        font-size: 14px;
    }
}

#order-booking-protection input[type='radio'] {
    width: auto;
}

#order-basket .order-event.card {
    margin-bottom: 1.5rem;
    padding: 0;
}

#order-basket .order-event.card .card-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e8e8e8;
    border-top: 5px solid var(--secondary);
    font-size: 13px;
    line-height: 1.4;
    color: #787878;
}

@media (min-width: 768px) {
    #order-basket .order-event.card .card-header {
        padding: 1rem 2.5rem;
    }
}

#order-basket .order-event.card .card-header .event-title {
    margin-right: 0.75rem;
    font-family: var(--font-family-secondary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8d8d8d;
    text-transform: uppercase;
    text-decoration: none;
}

#order-basket footer {
    display: flex;
    flex-direction: column-reverse;
}

#order-basket footer #order-promo {
    margin-bottom: 1rem;
}

#order-basket footer #order-footer {
    margin-bottom: 1rem;
}

.promo-wrap {
    padding: 0;
}

#order-basket footer #order-footer .order-form button[type='submit'] {
    width: 100%;
}

@media (min-width: 768px) {
    #order-basket footer {
        flex-direction: row;
        justify-content: space-between;
    }

    #order-basket footer #order-promo {
        width: 30%;
        margin-bottom: 0;
    }

    #order-basket footer #order-footer {
        width: 40%;
        margin-bottom: 0;
    }

    #order-basket footer #order-footer .order-form button[type='submit'] {
        width: auto;
    }
}

#order-basket .ticket {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

@media (min-width: 768px) {
    #order-basket .ticket {
        flex-direction: row;
        padding: 1.5rem 2.5rem;
    }
}

#order-basket .ticket:first-of-type {
    border: none;
}

#order-basket .ticket .ticket-info {
    margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
    #order-basket .ticket .ticket-info {
        margin-bottom: 0 !important;
    }
}

#order-basket .ticket .ticket-title {
    display: block;
    float: none;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0.25rem;
}

#order-basket .ticket .upsell-wrap {
    float: none;
    padding: 0;
}

#order-basket .ticket .ticket-desc {
    margin: 0;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #8d8d8d;
    font-size: 12px;
    line-height: 16px;
}

#order-basket .ticket .includes {
    margin: 0;
    margin-bottom: 0.5rem;
}

#order-basket .ticket .includes h6 {
    color: #8d8d8d;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    margin-bottom: 4px;
}

#order-basket .ticket .includes ul li {
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #979797;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    line-height: 12px;
    letter-spacing: 0.83px;
    color: #8d8d8d;
    margin: 0;
    margin-right: 2px;
    border-radius: 0;
}

#order-basket .details,
#buy-tickets .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#buy-tickets .instalment .details {
    flex-wrap: nowrap;
}

@media (min-width: 768px) {
    #order-basket .details,
    #buy-tickets .details {
        justify-content: flex-end;
    }
}

#order-basket .ticket .price {
    flex: 1;
    width: auto !important;
    padding: 0;
    float: none;
    text-align: left;
}

#buy-tickets .ticket .price {
    flex: 1;
    padding-top: 0;
}

@media (min-width: 768px) {
    #order-basket .ticket .price {
        text-align: right;
    }
}

#order-basket .ticket .price p {
    font-size: 12px;
    color: #8d8d8d;
}

#order-basket .ticket .price span {
    font-size: inherit;
    font-weight: inherit;
    font-style: normal;
    line-height: inherit;
}

#order-basket .ticket .qty,
#buy-tickets .ticket .qty {
    width: auto !important;
    float: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    #order-basket .ticket .qty {
        flex: 1;
    }
}

#buy-tickets .ticket .qty.note {
    min-width: 134px;
}

#buy-tickets form#tickets .twothirds {
    margin-bottom: 0;
}

#buy-tickets form#tickets #order-footer button[type='submit'] {
    width: 100%;
}

@media (min-width: 768px) {
    #buy-tickets form#tickets #order-footer button[type='submit'] {
        width: auto;
    }
}

#order-basket .ticket .qty input[type='number'],
#buy-tickets .ticket .qty input[type='number'] {
    width: 70px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

#order-basket .ticket .qty .qty-adjust,
#buy-tickets .ticket .qty .qty-adjust {
    padding: 10px;
    background-color: transparent;
    color: var(--secondary);
}

#order-basket .ticket .ticket-total {
    float: none;
    width: 100% !important;
    margin-top: 1rem !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
}

@media (min-width: 768px) {
    #order-basket .ticket .ticket-total {
        flex: 1;
        margin-top: 0 !important;
    }
}

#order-basket .ticket .ticket-total span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-style: normal;
}

#order-totals {
    margin-bottom: 1rem;
}

#order-totals > div {
    border: none;
}

#order-totals .total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

#order-totals .total-item.grand-total {
    padding-top: 0.75rem;
    border-top: 1px solid #e8e8e8;
}

#order-totals .total-item .total-caption {
    font-size: 1rem;
}

#order-totals .total-item .total-caption > small {
    font-size: 0.75rem;
    color: #787878;
}

#order-totals .total-item .total-amount {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

#order-totals .total-item.grand-total .total-amount {
    font-size: 24px;
    line-height: 36px;
}

#content-main #order.card,
#order-complete #order.card {
    padding: 0;
}

#content-main #order #order-basket .event,
#order-complete #order #order-basket .event {
    margin: 0;
    padding: 0;
    border-top: 5px solid var(--secondary);
}

#order-complete #order #order-basket .event:not(:first-of-type) {
    border-top: none;
}

#content-main #order #order-basket .event .event-header,
#order-complete #order #order-basket .event .event-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.4375rem;
    border-bottom: 1px solid #e8e8e8;
}

#order-complete #order #order-basket .event .event-header {
    border-bottom: none;
    padding-bottom: 0;
}

#order-complete #order #order-basket .event .event-action {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.4375rem;
}

#order-complete #order #order-basket .event .event-action .addeventatc {
    margin-top: 0;
}

#order-complete
    #order
    #order-basket
    .event
    .event-action
    .weesharer
    .social
    a.btn:hover {
    color: #fff !important;
    opacity: 0.8;
}

#order-complete
    #order
    #order-basket
    .event
    .event-action
    .weesharer
    .icon-large {
    font-size: 0.875rem;
}

#order-complete #order #order-basket .event .broadcast-links {
    margin: 1rem 1.4375rem;
    margin-top: 0;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

#order-complete #order #order-basket .event .broadcast-links a.btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

#content-main #order #order-basket .event .event-title,
#order-complete #order #order-basket .event .event-title {
    left: 0;
    margin: 0;
    margin-bottom: 0.5rem;
    white-space: normal;
    font-family: var(--font-family-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
}

#content-main #order #order-basket .event .event-title a,
#order-complete #order #order-basket .event .event-title a {
    display: inline;
    padding: 0;
    background-color: transparent;
    color: #8d8d8d;
    font-weight: inherit;
}

#content-main #order #order-basket .event .event-title a:hover,
#order-complete #order #order-basket .event .event-title a:hover {
    background-color: transparent !important;
    color: var(--secondary) !important;
}

#content-main #order #order-basket .event .event-date {
    font-size: 13px;
    color: #787878;
}

#content-main #order #order-basket .event .ticket {
    padding: 1.5rem 1.4375rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
}

#content-main #order #order-basket .event .ticket > .details {
    width: auto !important;
    padding: 0;
    margin-left: auto;
}

#content-main #order #order-basket .event .ticket > .details .ticket-total {
    font-size: 1rem;
    margin-top: 0 !important;
}

#content-main #order #order-basket .event .ticket .ticket-info {
    flex: 1;
    width: auto !important;
    padding-right: 1rem;
    margin-bottom: 0 !important;
}

#content-main #order #order-basket .event .ticket .ticket-title {
    font-size: 1rem;
}

#content-main #order #order-basket .event .ticket .instalment-details,
#content-main #order #order-basket .event .ticket .broadcast-links {
    width: 100%;
    margin: 0;
    margin-top: 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

#content-main #order #order-totals {
    padding: 1.4375rem;
    margin: 0;
}

#content-main #order #order-totals .total-item .total-amount {
    font-size: 14px;
    line-height: 18px;
}

#content-main #order #order-totals .total-item.grand-total {
    margin: 0;
}

#content-main #order #order-totals .total-item.grand-total .total-amount {
    font-size: 1.3125rem;
}

#content-main #payment-form.card {
    padding: 1rem 1.5rem;
}

@media (min-width: 768px) {
    #content-main #payment-form.card {
        padding: 2rem 2.75rem;
    }
}

#content-main #payment-form fieldset legend {
    font-size: 1.3125rem;
}

#content-main #payment-form label {
    font-size: 0.875rem;
    font-weight: 700;
}

#content-main #payment-form .terms label {
    width: auto;
}

#content-main #payment-form .checkbox label {
    font-size: 0.8125rem;
    font-weight: 400;
    padding: 0;
}

#content-main #payment-form textarea,
#content-main #payment-form input[type='text'],
#content-main #payment-form input[type='email'],
#content-main #payment-form select {
    width: 100%;
}

@media (min-width: 768px) {
    #content-main #payment-form textarea,
    #content-main #payment-form input[type='text'],
    #content-main #payment-form input[type='email'],
    #content-main #payment-form select {
        width: calc(65% - 4px);
    }
}

#content-main #payment-form .error p {
    width: 100%;
    margin-left: 0;
    padding: 0;
    text-align: left;
}

@media (min-width: 768px) {
    #content-main #payment-form .error p {
        width: 100%;
        margin-left: 0;
        width: 65%;
        margin-left: 35%;
    }
}

#content-main #payment-form .checkbox.error p {
    width: 65%;
    margin-left: 0;
    padding: 0;
    text-align: left;
}

#content-main #payment-form .toolbar {
    margin-top: 1.75rem;
}

#empty-basket {
    padding: 1.5rem 2rem;
}

.menu-sub li a {
    font-size: 1.25rem;
    line-height: 1.2;
    color: #333;
    padding: 1rem;
}

.terms input#terms {
    display: inline-block;
    float: none;
    margin: 0;
    margin-right: 0.5rem;
}

.terms input#terms + label {
    display: inline;
    float: none;
    padding: 0;
}

#payment-form-submit-btn {
    width: 100%;
}

@media (min-width: 768px) {
    #payment-form-submit-btn {
        width: auto;
    }
}

.social-discount {
    border: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.social-discount header {
    display: block;
}

.social-discount header h5 {
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.social-discount .social-discount-wrapper {
    display: block;
}

.social-discount .social-discount-panel .close {
    width: auto;
}

.social-discount button span {
    border-radius: 50px;
    padding: 2px 10px;
}

@media (min-width: 768px) {
    .social-discount .social-discount-wrapper {
        display: inline-block;
        margin-right: 0.5rem;
    }
}

.addeventatc {
    z-index: 9 !important;
}

.ticket .upsell-img {
    display: none;
}

.upsell .ticket .upsell-img {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .upsell .ticket .upsell-img {
        width: 150px;
        margin-bottom: 0;
        margin-right: 1rem;
        align-self: flex-start;
    }
}

.payment-method-selector {
    display: flex;
    align-items: center;
}

.payment-method-selector__tile {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 28px 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 12px;
}

.payment-method-selector__tile--active {
    border: 1px solid #444;
}

.payment-method-selector--tabs {
    margin: 12px 0;
}

.payment-method-selector--tab {
    font-size: 14px;
}

.payment-method-selector--tab.hide {
    display: none;
}

.footer-links-container {
    height: 100%;
    display: flex;
    justify-items: center;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 12px;
}

.uncontrolled-footer-links-container {
    width: 230px;
}

.footer-links-container #copy {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0rem 1rem;
}

.terms-links-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.poweredby-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem 0rem;
    padding-bottom: 0rem;
    min-height: 165px;
}

.poweredby-footer-container {
    background-color: #4d0c3a;
    border-radius: 8px 8px 1px 1px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 80px;
    margin: 0rem 1rem;
}

.poweredby-badge-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
    height: 165px;
}

.poweredby-footer-container p {
    color: white;
    letter-spacing: 0px;
}

.poweredby-footer-container img {
    width: 60px;
}

.social-links a {
    height: 100%;
    display: flex;
}

.social-links img {
    margin: 0px;
    width: 32px;
    height: 32px;
}

.store-footer-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    gap: 0.3rem 0rem;
    z-index: 10;
}

.social-links {
    margin: 0px;
}

@media (max-width: 768px) {
    #logo,
    #logo a,
    #logo a img {
        width: auto;
        height: auto;
        max-height: 50px;
        max-width: 150px;
    }

    .footer-links-container {
        flex-direction: column;
        width: 80%;
    }

    .footer-links-container #copy {
        flex-direction: column;
    }

    .poweredby-footer-container {
        margin: 0rem;
        width: 90px;
    }

    .poweredby-badge-container,
    .poweredby-footer {
        height: 265px;
    }
}

.store-footer-container .social-links li a svg,
#promoter-social li a svg {
    width: 32px;
    height: 32px;
    fill: var(--primary) !important;
}

#footer #powered {
    padding: 0px;
    line-height: 0px;
}

.sold-out-tickets-waiting-list-container button,
.sold-out-tickets-waiting-list-container input {
    height: 42px;
}

.sold-out-tickets-waiting-list-container input {
    width: 170px;
}

.sold-out-tickets-waiting-list-container #event_notify {
    gap: 0rem 1rem;
    display: flex;
}

.sold-out-tickets-waiting-list-container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem 0rem;
    padding: 0;
}

.text-logo,
.text-logo span {
    max-height: 3em !important;
    overflow: hidden !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .mobile-toggle-container,
    #basket {
        max-width: 74px;
    }

    .sold-out-tickets-waiting-list-container #event_notify {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

.group.ordercheckout h1,
.group.ordercheckout h2,
.group.ordercheckout h3,
.group.ordercheckout h5,
.group.ordercheckout h6,
.group.ordercheckout p {
    font-family: 'DM Sans', sans-serif !important;
}

.header_2025 #navbar-store-logo {
    justify-content: center !important;
}

.header_2025 .pre-nav,
.header_2025 #nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 0;
}

.header_2025 #basket a.tooltip:hover,
.event-content a:hover {
    color: white !important;
    opacity: 0.8;
}

.header_2025 #nav li a:hover,
.event-promoter a:hover {
    color: black !important;
    opacity: 0.6;
}

#footer .footer-links-container a:hover {
    color: white !important;
    opacity: 0.8;
}

#buy-tickets .ticket .qty button.qty-adjust:hover {
    color: var(--secondary) !important;
    opacity: 0.6 !important;
}

#tickets {
    margin-bottom: 1rem;
}

#no-tickets {
    width: 100%;
}

#notify .status.error {
    border-radius: 8px;
}

.pre-bg {
    color: white;
}

.social-links li a {
    cursor: pointer;
}

.social-links li a:hover {
    opacity: 0.8 !important;
}

.share-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0rem 1rem;
    margin-top: 0.5rem;
}

.share-container svg {
    height: 32px;
    width: 32px;
}

.header_2025 #nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_2025 .header-navbar-top {
    height: 72px;
}

.select-seats-btn,
.select-seats-btn:hover {
    background-color: var(--primary);
}

.select-seats-btn:hover {
    opacity: 0.8;
}

#basket a {
    box-sizing: content-box;
}

a.pre-bg:hover {
    color: white !important;
}

.event-date div {
    overflow: hidden;
    text-overflow: ellipsis;
}
#footer .poweredby-footer .text-logo {
    color: #ffffffd9 !important;
    border: 1px solid #ffffffd9 !important;
}
.pre-footer {
    background: var(--bg-colour);
}

.deposit-ticket-payment-plan-modal {
    max-width: 826px !important;
    padding: 1rem 2rem;

    @media (min-width: 576px) {
        padding: 2.5rem 4rem;
    }
}

#deposit-ticket-payment-plan {
    .wrapper {
        display: flex;
        flex-direction: column;
        column-gap: 1rem;

        @media (min-width: 576px) {
            flex-direction: row;
        }
    }

    .deposit-ticket-info {
        flex: 1;

        .deposit-ticket-title {
            font-size: 36px;
            line-height: 42px;
            margin-bottom: 1rem;
        }

        .payment-plan-table {
            width: 100%;
            font-size: 12px;
            line-height: 16px;
            margin-top: 2rem;

            thead {
                th {
                    text-align: left;
                    font-size: 14px;
                    line-height: 18px;
                    font-weight: 600;
                    border-bottom: 1px solid #333;
                    padding-bottom: 0.5rem;
                }
            }

            tbody {
                td {
                    padding: 0.25rem 0;
                    color: #8d8d8d;

                    &:first-of-type {
                        letter-spacing: 1px;
                        text-transform: uppercase;
                        font-weight: 700;
                        font-family: var(--font-family-secondary);
                    }
                    &:not(:nth-child(1)) {
                        text-align: right;
                    }
                    &:last-of-type {
                        font-size: 14px;
                        color: #333;
                    }
                }

                tr:first-of-type {
                    border-bottom: 1px solid #e8e8e8;

                    td {
                        padding: 0.5rem 0;
                    }
                }
            }
        }
    }

    .milestones {
        flex: 1;
        position: relative;
        padding: 2.5rem 0;
        display: none;

        @media (min-width: 576px) {
            display: block;
        }

        .milestone-items {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .milestone-item {
            flex: 1;
            min-height: 65px;
            font-size: 12px;
            line-height: 16px;
            position: relative;

            .milestone-info {
                display: flex;
                flex-direction: column;
                align-items: end;
                width: 50%;
                transform: translate(-1rem, -1.3rem);
            }
            .milestone-label {
                color: #8d8d8d;
            }
            .milestone-date {
                font-family: var(--font-family-secondary);
                letter-spacing: 1px;
                color: var(--primary);
                font-weight: bold;
                text-transform: uppercase;
            }
            .milestone-amount {
                font-size: 17px;
                line-height: 20px;
                font-weight: 600;
            }
            .milestone-bar {
                position: absolute;
                top: 0;
                bottom: -1px;
                left: 50%;
                border: 1px solid var(--primary);
                width: 10px;
            }
            .milestone-point {
                position: absolute;
                top: 0;
                left: calc(50% - 8px);
                width: 20px;
                height: 5px;
                background-color: var(--primary);
                z-index: 2;
            }
        }

        .today-info {
            position: absolute;
            left: calc(50% + 25px);
            bottom: calc(0px + 2.5rem);
            display: flex;
            flex-direction: column;
            transform: translateY(50%);
            font-size: 12px;
            line-height: 14px;
        }
        .today-label {
            color: #8d8d8d;
            font-family: var(--font-family-secondary);
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .today-deposit {
            font-size: 14px;
            line-height: 17px;
        }
        .today-booking-fee {
            color: #8d8d8d;
        }

        .progress-bar-wrapper {
            position: absolute;
            top: 2.5rem;
            bottom: 2.5rem;
            left: calc(50% + 2px);
            width: 8px;
        }
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--secondary);
            z-index: 1;
        }
    }

    .alert-message {
        margin: 2rem auto 0;
        background-color: color-mix(
            in srgb,
            rgb(var(--color-secondary)),
            #fff 90%
        );
        text-transform: uppercase;
        padding: 1rem 1.375rem;
        border-radius: 8px;

        @media (min-width: 576px) {
            width: 70%;
        }

        & > p {
            font-size: 12px;
            line-height: 14px;
            letter-spacing: 1px;
            font-family: var(--font-family-secondary);
            margin: 0 !important;
            font-weight: 700;
            text-align: center;
        }
    }
}
