/* Amelia standalone event page — Anitea design. */

.wpa-events-single-template,
.wpa-events-single-template .amelia-wpa,
.wpa-events-single-template .amelia-wpa * {
    box-sizing: border-box;
    font-family: "Comfortaa", sans-serif !important;
}

.wpa-events-single-template .wpa-events__shell {
    --anitea-brand: #247a78;
    --anitea-text: #202020;
    --anitea-muted: #777;
    --anitea-line: #dedede;
    --anitea-soft: #f2f2f2;
    --anitea-radius: 20px;
    min-height: 100vh;
    padding: 32px 0 70px;
    color: var(--anitea-text);
    background: #fff;
}

.wpa-events-single-template .wpa-events__inner {
    width: min(calc(100% - 48px), 1200px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 60px;
}

.wpa-events-single-template .anitea-event-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    margin: 0 0 14px;
    padding: 7px 15px 7px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 999px;
    color: #3d3d3d;
    background: #fff;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.wpa-events-single-template .anitea-event-back:hover {
    border-color: #bdbdbd;
    color: #202020;
    background: #f5f5f5;
}

.wpa-events-single-template .anitea-event-back__arrow {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}

.wpa-events-single-template .anitea-event-back__arrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: translateX(1px) rotate(45deg);
}

.wpa-events-single-template .wpa-events__columns {
    position: relative;
    display: block;
    width: 100%;
}

.wpa-events-single-template .anitea-event-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(340px, 31%, 400px);
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Gallery */
.wpa-events-single-template .wpa-events__carousel {
    width: 100%;
    min-width: 0;
}

.wpa-events-single-template .wpa-events__carousel-viewport {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--anitea-radius) 0 0 var(--anitea-radius);
    background: #eee;
}

.wpa-events-single-template .wpa-events__carousel-track,
.wpa-events-single-template .wpa-events__carousel-slide {
    height: 100%;
}

.wpa-events-single-template .wpa-events__carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpa-events-single-template .wpa-events__carousel-nav {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 46px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    color: transparent;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: none;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 160ms ease, background-color 160ms ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wpa-events-single-template .wpa-events__carousel:hover .wpa-events__carousel-nav,
.wpa-events-single-template .wpa-events__carousel-nav:focus-visible {
    opacity: 1;
}

.wpa-events-single-template .wpa-events__carousel-nav:hover {
    background: rgba(255, 255, 255, 0.9);
}

.wpa-events-single-template .wpa-events__carousel-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 28px;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.wpa-events-single-template .wpa-events__carousel-nav--prev {
    left: 34px;
}

.wpa-events-single-template .wpa-events__carousel-nav--prev::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 30'%3E%3Cpath d='M15.5 3.5 5 15l10.5 11.5' fill='none' stroke='%23171717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.wpa-events-single-template .wpa-events__carousel-nav--next {
    right: 34px;
}

.wpa-events-single-template .wpa-events__carousel-nav--next::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 30'%3E%3Cpath d='M4.5 3.5 15 15 4.5 26.5' fill='none' stroke='%23171717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.wpa-events-single-template .wpa-events__carousel-dots {
    bottom: 17px;
    gap: 7px;
}

.wpa-events-single-template .wpa-events__carousel-dot,
.wpa-events-single-template .wpa-events__carousel-dot.is-active {
    width: 9px;
    height: 9px;
    min-width: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.wpa-events-single-template .wpa-events__carousel-dot.is-active {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: #fff;
}

/* Desktop booking panel */
.wpa-events-single-template .wpa-events__col--tickets {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 34px 26px;
    border-radius: 0 var(--anitea-radius) var(--anitea-radius) 0;
    background: var(--anitea-soft);
}

.wpa-events-single-template .wpa-events__tickets-root {
    display: contents !important;
}

.wpa-events-single-template .wpa-events__tickets-head {
    order: 1;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
}

.wpa-events-single-template .wpa-events__tickets-title {
    margin: 0;
    color: #282828;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.wpa-events-single-template .wpa-events__tickets-sub,
.wpa-events-single-template .wpa-events__ticket-summary {
    display: none !important;
}

.wpa-events-single-template .wpa-events__tickets-scroll {
    display: block !important;
    flex: 0 0 auto !important;
    order: 3;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0;
    overflow: visible;
}

.wpa-events-single-template .wpa-events__tickets-list,
.wpa-events-single-template .wpa-events__ticket-card,
.wpa-events-single-template .wpa-events__ticket-body,
.wpa-events-single-template .wpa-events__ticket-row,
.wpa-events-single-template .wpa-events__qty {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    visibility: visible !important;
}

.wpa-events-single-template
    .wpa-events__col--tickets.anitea-booking-ready {
    visibility: visible;
}

.wpa-events-single-template .wpa-events__ticket-price {
    display: none !important;
}

.wpa-events-single-template .wpa-events__qty .el-input-number {
    position: relative;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 50px !important;
    min-height: 50px !important;
    overflow: hidden !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wpa-events-single-template .wpa-events__qty .el-input-number__decrease,
.wpa-events-single-template .wpa-events__qty .el-input-number__increase {
    position: absolute !important;
    z-index: 2 !important;
    top: 50% !important;
    bottom: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #333 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 1 !important;
    transform: translateY(-50%) !important;
}

.wpa-events-single-template .wpa-events__qty .el-input-number__decrease {
    left: 0 !important;
}

.wpa-events-single-template .wpa-events__qty .el-input-number__increase {
    right: 0 !important;
}

.wpa-events-single-template .wpa-events__qty .el-input-number__decrease::before,
.wpa-events-single-template .wpa-events__qty .el-input-number__increase::before {
    display: block;
    font-family: Arial, sans-serif !important;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
}

.wpa-events-single-template .wpa-events__qty .el-input-number__decrease::before {
    content: "−";
}

.wpa-events-single-template .wpa-events__qty .el-input-number__increase::before {
    content: "+";
}

.wpa-events-single-template .wpa-events__qty .el-input-number__decrease > *,
.wpa-events-single-template .wpa-events__qty .el-input-number__increase > * {
    display: none !important;
}

.wpa-events-single-template .wpa-events__qty .el-input,
.wpa-events-single-template .wpa-events__qty .el-input__wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    outline: 0 !important;
    color: #222 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wpa-events-single-template .wpa-events__qty .el-input__wrapper {
    padding: 0 48px !important;
}

.wpa-events-single-template .wpa-events__qty .el-input__inner {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    color: #202020 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 48px !important;
    text-align: center !important;
    opacity: 1 !important;
}

.wpa-events-single-template .wpa-events__footer-mount {
    position: static;
    order: 2;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
}

.wpa-events-single-template .wpa-events__book-button,
.wpa-events-single-template .wpa-events__book-button-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wpa-events-single-template .wpa-events__book-button-btn {
    width: 100%;
    height: 50px;
    min-height: 50px;
    margin: 0;
    padding: 0 19px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 999px !important;
    color: #fff;
    background: var(--anitea-brand) !important;
    box-shadow: none;
    font-size: 22px;
    font-weight: 500;
}

.wpa-events-single-template .wpa-events__book-button-btn .am-button__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    color: #fff;
    font-size: inherit !important;
    line-height: 1;
}

.wpa-events-single-template .anitea-event-button-price {
    font-size: inherit !important;
    white-space: nowrap;
}

.wpa-events-single-template .anitea-event-button-label {
    font-size: inherit !important;
}

@media (min-width: 900px) {
    .wpa-events-single-template .anitea-event-button-label {
        display: none !important;
    }

    .wpa-events-single-template
        .wpa-events__book-button-btn
        .am-button__inner {
        justify-content: center;
    }

    .wpa-events-single-template .anitea-event-button-price {
        font-size: 20px !important;
        font-weight: 500;
    }
}

/* Content below the hero */
.wpa-events-single-template .wpa-events__col--event {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0;
    padding: 22px 0 0;
}

.wpa-events-single-template .wpa-events__block--tight {
    order: 1;
    margin: 0 0 7px;
}

.wpa-events-single-template .wpa-events__meta-row {
    order: 2;
    display: block;
    width: 100%;
    margin: 0 0 13px;
}

.wpa-events-single-template .wpa-events__block:not(.wpa-events__block--tight) {
    order: 3;
}

.wpa-events-single-template .wpa-events__divider {
    order: 5;
    display: none;
}

.wpa-events-single-template .anitea-event-reviews {
    width: 100%;
    max-width: none;
    margin-top: 28px;
}

.wpa-events-single-template .wpa-events__begin,
.wpa-events-single-template .wpa-events__event-status-row,
.wpa-events-single-template .wpa-events__price-block,
.wpa-events-single-template .wpa-events__block-label {
    display: none !important;
}

.wpa-events-single-template .wpa-events__meta-main {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.wpa-events-single-template .wpa-events__event-title {
    margin: 0;
    color: #171717;
    font-family: "El Messiri", serif !important;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -0.01em;
}

.wpa-events-single-template .wpa-events__timetable-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 5px;
    color: #343434;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.45;
}

.wpa-events-single-template .wpa-events__timetable-date,
.wpa-events-single-template .wpa-events__timetable-time {
    color: inherit;
    font: inherit;
}

.wpa-events-single-template .wpa-events__timetable-date::after {
    content: ",";
}

.wpa-events-single-template .wpa-events__desc-wrap {
    position: relative;
    width: 100%;
}

.wpa-events-single-template .wpa-events__desc {
    position: relative;
    width: 100%;
    max-height: 9.1em;
    overflow: hidden;
    color: #3a3a3a;
    font-family: "Comfortaa", sans-serif !important;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.52;
}

.wpa-events-single-template
    .wpa-events__desc-wrap.has-overflow:not(.is-expanded)
    .wpa-events__desc::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.8em;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 88%);
}

.wpa-events-single-template .wpa-events__desc-wrap.is-expanded .wpa-events__desc {
    max-height: none;
}

.wpa-events-single-template .wpa-events__desc-wrap.is-expanded .wpa-events__desc::after {
    display: none;
}

.wpa-events-single-template .wpa-events__desc,
.wpa-events-single-template .wpa-events__desc p,
.wpa-events-single-template .wpa-events__desc span {
    color: #3a3a3a !important;
    font-family: "Comfortaa", sans-serif !important;
    font-size: inherit !important;
    font-weight: 400 !important;
    line-height: inherit !important;
}

.wpa-events-single-template .wpa-events__desc p {
    margin: 0 !important;
}

.wpa-events-single-template .wpa-events__desc p + p {
    margin-top: 4px !important;
}

.wpa-events-single-template .wpa-events__desc p:empty {
    display: block;
    height: 4px;
    min-height: 4px;
    margin: 0 !important;
    line-height: 0 !important;
}

.wpa-events-single-template .anitea-event-description-toggle {
    display: inline-block;
    margin: 5px 0 0;
    padding: 0;
    border: 0;
    color: #929292;
    background: transparent;
    box-shadow: none;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.wpa-events-single-template .anitea-event-description-toggle:hover {
    color: #686868;
}

.wpa-events-single-template .anitea-event-description-toggle[hidden] {
    display: none !important;
}

@media (max-width: 899px) {
    .wpa-events-single-template .wpa-events__shell {
        padding: 18px 0 0;
    }

    .wpa-events-single-template .wpa-events__inner {
        width: 100%;
        max-width: none;
        padding: 0 16px;
    }

    .wpa-events-single-template .wpa-events__columns {
        padding-bottom: calc(170px + env(safe-area-inset-bottom, 0px));
    }

    .wpa-events-single-template .anitea-event-back {
        min-height: 36px;
        margin-bottom: 12px;
        padding: 7px 14px 7px 11px;
        font-size: 13px;
    }

    .wpa-events-single-template .anitea-event-hero {
        display: block;
        width: 100%;
    }

    .wpa-events-single-template .wpa-events__carousel-viewport {
        border-radius: var(--anitea-radius);
    }

    .wpa-events-single-template .wpa-events__carousel-nav {
        display: none !important;
    }

    .wpa-events-single-template .wpa-events__carousel-dots {
        bottom: 13px;
    }

    .wpa-events-single-template .wpa-events__col--event {
        width: 100%;
        max-width: none;
        padding-top: 16px;
    }

    .wpa-events-single-template .wpa-events__block--tight {
        margin-bottom: 5px;
    }

    .wpa-events-single-template .wpa-events__event-title {
        font-size: 27px;
        line-height: 1.18;
    }

    .wpa-events-single-template .wpa-events__timetable-row {
        font-size: 16px;
        line-height: 1.4;
    }

    .wpa-events-single-template .wpa-events__desc {
        max-height: 9.15em;
        font-size: 16px;
        line-height: 1.52;
    }

    .wpa-events-single-template .anitea-event-description-toggle {
        font-size: 14px;
    }

    /* The ticket selector and booking button become one sticky mobile bar. */
    .wpa-events-single-template .wpa-events__col--tickets {
        position: fixed !important;
        z-index: 1000;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        min-height: 0;
        margin: 0;
        padding: 10px 16px calc(40px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--anitea-line);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .wpa-events-single-template
        .wpa-events__col--tickets.anitea-booking-at-end {
        position: absolute !important;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
    }

    .wpa-events-single-template .wpa-events__tickets-head {
        display: none !important;
    }

    .wpa-events-single-template .wpa-events__tickets-scroll {
        order: 1;
        margin: 0 0 8px;
    }

    .wpa-events-single-template .wpa-events__footer-mount {
        order: 2;
        margin: 0;
    }

    .wpa-events-single-template .wpa-events__qty .el-input-number {
        height: 50px !important;
        min-height: 50px !important;
    }

    .wpa-events-single-template .wpa-events__qty .el-input-number__decrease,
    .wpa-events-single-template .wpa-events__qty .el-input-number__increase,
    .wpa-events-single-template .wpa-events__qty .el-input,
    .wpa-events-single-template .wpa-events__qty .el-input__wrapper,
    .wpa-events-single-template .wpa-events__qty .el-input__inner {
        height: 48px !important;
        min-height: 48px !important;
        line-height: 48px !important;
    }

    .wpa-events-single-template .wpa-events__book-button-btn {
        height: 50px;
        min-height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .wpa-events-single-template .wpa-events__inner {
        padding-right: 12px;
        padding-left: 12px;
    }

    .wpa-events-single-template .wpa-events__col--tickets {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wpa-events-single-template .wpa-events__carousel-track,
    .wpa-events-single-template .wpa-events__carousel-nav,
    .wpa-events-single-template .anitea-event-back {
        transition: none !important;
    }
}

/* Standalone event-page booking dialogs. */
.wpa-events-single-template .amelia-custom-booking-step-popup {
    --anitea-dialog-brand: #247a78;
    font-family: "Comfortaa", sans-serif !important;
}

.wpa-events-single-template
    .amelia-custom-form-popup
    .am-el__header-inner {
    visibility: hidden !important;
    pointer-events: none !important;
}

.wpa-events-single-template
    .amelia-custom-form-popup
    .anitea-hidden-field {
    display: none !important;
}

.wpa-events-single-template
    .amelia-custom-form-popup
    .el-dialog__footer
    .am-button--secondary,
.wpa-events-single-template
    .amelia-custom-payment-popup
    .el-dialog__footer
    .am-button--secondary {
    display: none !important;
}

.wpa-events-single-template
    .amelia-custom-thank-you-popup
    .el-dialog__footer
    .am-button--secondary {
    display: inline-flex !important;
    border: 1px solid var(--anitea-dialog-brand) !important;
    color: var(--anitea-dialog-brand) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wpa-events-single-template
    .amelia-custom-booking-step-popup
    .el-dialog__footer
    .am-elf__footer {
    justify-content: flex-end !important;
}

.wpa-events-single-template
    .amelia-custom-booking-step-popup
    .el-dialog__footer
    .am-button--primary {
    --am-c-btn-first: var(--anitea-dialog-brand) !important;
    border-color: var(--anitea-dialog-brand) !important;
    background: var(--anitea-dialog-brand) !important;
    box-shadow: none !important;
}

.wpa-events-single-template
    .amelia-custom-booking-step-popup
    .el-input__wrapper:has(.el-input__inner:focus) {
    box-shadow: 0 0 0 1px var(--anitea-dialog-brand) inset !important;
}

.wpa-events-single-template
    .amelia-custom-booking-step-popup
    .el-checkbox__input.is-checked
    .el-checkbox__inner {
    border-color: var(--anitea-dialog-brand) !important;
    background: var(--anitea-dialog-brand) !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-payments__method-button__selected {
    border-color: var(--anitea-dialog-brand) !important;
    background: rgba(36, 122, 120, 0.08) !important;
    box-shadow: none !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-payments__method-button__selected,
.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-payments__method-button__selected p,
.wpa-events-single-template .amelia-custom-payment-popup .am-amount,
.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-pei__info-total
    .am-amount {
    color: var(--anitea-dialog-brand) !important;
}

.wpa-events-single-template .amelia-custom-payment-popup .am-fs__coupon {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    gap: 8px !important;
    width: 100% !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-fs__coupon-form-item {
    grid-column: 1 !important;
    width: 100% !important;
    margin: 0 !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-fs__coupon
    > .am-button {
    grid-column: 2 !important;
    align-self: end !important;
    width: auto !important;
    min-width: 104px !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    border: 1px solid var(--anitea-dialog-brand) !important;
    color: var(--anitea-dialog-brand) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-fs__coupon
    .el-input__prefix,
.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-fs__coupon
    .am-icon-coupon {
    display: none !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .am-fs__coupon
    .el-input__wrapper {
    padding-left: 12px !important;
}

.wpa-events-single-template
    .amelia-custom-payment-popup
    .amelia-custom-back-button {
    color: #303030 !important;
}

@media (max-width: 520px) {
    .wpa-events-single-template
        .amelia-custom-payment-popup
        .am-fs__coupon {
        grid-template-columns: minmax(0, 1fr) auto !important;
    }

    .wpa-events-single-template
        .amelia-custom-payment-popup
        .am-fs__coupon
        > .am-button {
        min-width: 88px !important;
    }
}
