/* =========================================================
   QEP EVENT PASS CHECKOUT
   Dedicated styles for the event pass shortcode.
   Based on the supplied Figma layout.
   ========================================================= */

.qep-event-checkout {
  --qep-event-bg: #001127;
  --qep-event-panel: #142438;
  --qep-event-primary: #0066ff;
  --qep-event-primary-hover: #0052cd;
  --qep-event-text: #ffffff;
  --qep-event-muted: #b2b9c1;
  --qep-event-label: #d7dadf;
  --qep-event-placeholder: #667085;
  --qep-event-divider: #354352;
  --qep-event-border: rgba(255, 255, 255, 0.12);
  --qep-event-danger: #d92d20;

  width: 100%;
  min-height: 100vh;
  padding: 160px var(--space-4xl, 32px) 80px;
  padding-top: 0;
  background: var(--qep-event-bg);
  color: var(--qep-event-text);
  font-family: "Sequel Sans", sans-serif;
}

.qep-event-checkout-view{
  padding-top: 160px;
}

.qep-event-checkout,
.qep-event-checkout * {
  box-sizing: border-box;
}

.qep-event-checkout button,
.qep-event-checkout input {
  font: inherit;
}

/* =========================================================
   OUTER LAYOUT
   ========================================================= */

.qep-event-checkout-form {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.qep-event-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 640px) 337px;
  justify-content: center;
  align-items: start;
  gap: 64px;
}

.qep-event-checkout-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 48px;
}

.breakdance h1.qep-event-checkout-title,
.qep-event-checkout-title {
  margin: 0;
  color: var(--qep-event-text);
  font-size: var(--qep-h1, 32.44px);
  line-height: var(--qep-h1-lh, 42px);
  font-weight: 500;
}

/* =========================================================
   SHARED SECTIONS
   ========================================================= */

.qep-event-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.qep-event-section--divided {
  margin: 0;
  padding: 0;
  border: 0;
}

.qep-event-section--divided + .qep-event-section--divided {
  padding-top: 48px;
  border-top: 1px solid var(--qep-event-border);
}

.qep-event-section-label {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--qep-event-label);
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
  font-weight: 400;
}

.qep-event-section-label span,
.qep-event-field label span,
.qep-event-authorization em {
  color: var(--qep-event-danger);
  font-style: normal;
}

.breakdance h2.qep-event-section-title,
.qep-event-section-title {
  margin: 0 0 24px;
  color: var(--qep-event-text);
  font-size: var(--qep-h4, 22.78px);
  line-height: var(--qep-h4-lh, 32px);
  font-weight: 500;
}

/* =========================================================
   PASS SELECTOR
   ========================================================= */

.qep-event-pass-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.qep-event-pass-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 16px;
  gap: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--qep-event-panel);
  color: var(--qep-event-text);
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.qep-event-pass-option:hover:not(:disabled) {
  border-color: rgba(0, 102, 255, 0.55);
}

.qep-event-pass-option.is-selected {
  border-color: var(--qep-event-primary);
}

.qep-event-pass-option.is-disabled,
.qep-event-pass-option:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.qep-event-pass-name {
  display: block;
  color: var(--qep-event-muted);
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
  font-weight: 400;
}

.qep-event-pass-price {
  display: block;
  color: var(--qep-event-text);
  font-size: var(--qep-h3, 25.63px);
  line-height: var(--qep-h3-lh, 34px);
  font-weight: 600;
}

.qep-event-pass-price .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.qep-event-pass-price .woocommerce-Price-currencySymbol {
  margin-right: 0;
}

.qep-event-pass-description {
  display: block;
  width: 100%;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid var(--qep-event-divider);
  color: var(--qep-event-placeholder);
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
  font-weight: 400;
}

.qep-event-pass-status {
  margin-top: auto;
  color: var(--qep-event-danger);
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
}

/* =========================================================
   FORM FIELDS
   ========================================================= */

.qep-event-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

.qep-event-fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 24px;
}

.qep-event-section:last-of-type .qep-event-fields--two {
  column-gap: 24px;
}

.qep-event-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 6px;
}

.qep-event-field--full {
  grid-column: 1 / -1;
}

.qep-event-field label {
  display: flex;
  align-items: flex-start;
  margin: 0;
  color: var(--qep-event-muted);
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
  font-weight: 400;
}

.qep-event-field input {
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 10px 16px;
  border: 2px solid var(--qep-event-border);
  border-radius: 8px;
  outline: none;
  background: var(--qep-event-bg);
  color: var(--qep-event-text);
  font-size: var(--qep-body, 16px);
  line-height: var(--qep-body-lh, 24px);
  font-weight: 400;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.qep-event-field input::placeholder {
  color: var(--qep-event-placeholder);
  opacity: 1;
}

.qep-event-field input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.qep-event-field input:focus {
  border-color: var(--qep-event-primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.14);
}

.qep-event-field input.is-error {
  border-color: var(--qep-event-danger);
  background: rgba(217, 45, 32, 0.04);
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.12);
}

.qep-event-field-error {
  display: none;
  margin: 0;
  color: #fda29b;
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
}

.qep-event-field-error.is-visible {
  display: block;
}

/* =========================================================
   CARD FIELD
   ========================================================= */

.qep-event-card-field {
  position: relative;
  width: 100%;
}

.qep-event-card-brand {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  overflow: hidden;
  border: 1px solid #eaecf0;
  border-radius: 4px;
  background: #ffffff;
  transform: translateY(-50%);
  pointer-events: none;
}

.qep-event-card-brand svg {
  display: block;
  width: 34px;
  height: 24px;
}

.qep-event-card-field input {
  padding-left: 60px;
}

/* =========================================================
   AUTHORIZATION
   ========================================================= */

.qep-event-authorization {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--qep-event-muted);
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
  cursor: pointer;
}

.qep-event-authorization input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--qep-event-primary);
}

/* =========================================================
   ALERT
   ========================================================= */

.qep-event-alert {
  display: none;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
}

.qep-event-alert.is-error {
  display: block;
  border: 1px solid rgba(217, 45, 32, 0.4);
  background: rgba(217, 45, 32, 0.1);
  color: #fda29b;
}

.qep-event-alert.is-success {
  display: block;
  border: 1px solid rgba(18, 183, 106, 0.4);
  background: rgba(18, 183, 106, 0.1);
  color: #75e0a7;
}

/* =========================================================
   SUMMARY SIDEBAR
   ========================================================= */

.qep-event-checkout-sidebar {
  width: 337px;
  min-width: 0;
}

.qep-event-summary {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 337px;
  padding: 24px;
  gap: 24px;
  border: 1px solid var(--qep-event-border);
  border-radius: 16px;
  background: var(--qep-event-panel);
  box-shadow:
    0 95px 80px rgba(0, 0, 0, 0.12),
    0 39.6887px 33.4221px rgba(0, 0, 0, 0.0863),
    0 21.2195px 17.869px rgba(0, 0, 0, 0.0715),
    0 11.8955px 10.0172px rgba(0, 0, 0, 0.06),
    0 6.3176px 5.3201px rgba(0, 0, 0, 0.0485),
    0 2.6289px 2.2138px rgba(0, 0, 0, 0.0337);
  backdrop-filter: blur(25px);
}

.breakdance h2.qep-event-summary-title,
.qep-event-summary-title {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--qep-event-text);
  font-size: var(--qep-h4, 22.78px);
  line-height: var(--qep-h4-lh, 32px);
  font-weight: 500;
}

.qep-event-summary-product {
  display: grid;
  grid-template-columns: 61.86px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 85.86px;
  padding-top: 24px;
  gap: 12px;
  border-top: 1px solid var(--qep-event-border);
}

.qep-event-summary-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61.86px;
  height: 61.86px;
  overflow: hidden;
  border-radius: 6.72px;
  background: var(--qep-event-bg);
  color: var(--qep-event-text);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
}

.qep-event-summary-product-info {
  min-width: 0;
}

.qep-event-summary-product-name {
  display: block;
  overflow: hidden;
  color: var(--qep-event-text);
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.qep-event-summary-quantity-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--qep-event-text);
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
}

.qep-event-summary-quantity-control::before {
  content: "x";
}

.qep-event-qty-button {
  display: none;
}

.qep-event-summary-totals {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--qep-event-divider);
}

.qep-event-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  color: var(--qep-event-muted);
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
  font-weight: 400;
}

.qep-event-summary-row strong {
  color: var(--qep-event-text);
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  text-align: right;
}

.qep-event-summary-row--total {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--qep-event-divider);
  color: var(--qep-event-text);
  font-size: var(--qep-h6, 18px);
  line-height: var(--qep-h6-lh, 26px);
  font-weight: 500;
}

.qep-event-summary-row--total strong {
  font-weight: 500;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.qep-event-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 12px 32px;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--qep-event-primary);
  color: var(--qep-event-text);
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.qep-event-submit:hover:not(:disabled) {
  background: var(--qep-event-primary-hover);
}

.qep-event-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.qep-event-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: qep-event-spin 0.7s linear infinite;
}

.qep-event-submit.is-loading .qep-event-submit-label {
  display: none;
}

.qep-event-submit.is-loading .qep-event-submit-spinner {
  display: block;
}

@keyframes qep-event-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .qep-event-checkout {
    padding-top: 120px;
  }

  .qep-event-checkout-layout {
    grid-template-columns: minmax(0, 640px) minmax(300px, 337px);
    gap: 40px;
  }

  .qep-event-checkout-sidebar,
  .qep-event-summary {
    width: 100%;
  }
}

/* =========================================================
   MOBILE / STACKED
   ========================================================= */

@media (max-width: 900px) {
  .qep-event-checkout {
    padding:
      var(--space-8xl, 64px)
      var(--space-3xl, 24px)
      var(--space-8xl, 64px);
  }

  .qep-event-checkout-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 640px;
    margin: 0 auto;
  }

  .qep-event-checkout-sidebar {
    width: 100%;
  }

  .qep-event-summary {
    position: static;
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .qep-event-checkout {
    padding:
      var(--space-6xl, 48px)
      var(--space-xl, 16px)
      var(--space-8xl, 64px);
  }

  .qep-event-checkout-main {
    gap: 40px;
  }

  .qep-event-pass-options,
  .qep-event-fields--two {
    grid-template-columns: 1fr;
  }

  .qep-event-pass-option {
    height: auto;
    min-height: 170px;
  }

  .qep-event-section--divided + .qep-event-section--divided {
    padding-top: 40px;
  }

  .qep-event-summary {
    padding: 20px;
  }

  .qep-event-summary-product {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .qep-event-summary-thumb {
    width: 54px;
    height: 54px;
  }
}



/*Thank you*/

/* =========================================================
   EVENT PASS CONFIRMATION
   ========================================================= */

.qep-event-confirmation[hidden] {
  display: none !important;
}

.qep-event-confirmation {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 1180px;
  padding: 160px 80px;
  overflow: hidden;
  background: #001127;
  color: #ffffff;
}

.qep-event-confirmation-pattern {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 758px;
  height: 280px;
  transform: translateX(-50%);
  pointer-events: none;
}

.qep-event-confirmation-pattern svg {
  display: block;
  width: 100%;
  height: 100%;
}

.qep-event-confirmation-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
  gap: 80px;
}

.qep-event-confirmation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
  text-align: center;
}

.qep-event-confirmation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 105px;
}

.qep-event-confirmation-icon svg {
  display: block;
  width: 104px;
  height: 105px;
}

.qep-event-confirmation-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 6px;
}

.breakdance .qep-event-confirmation-heading h1,
.qep-event-confirmation-heading h1 {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: var(--qep-xxl, 41.6px);
  line-height: var(--qep-xxl-lh, 52px);
  font-weight: 600;
  text-align: center;
}

.qep-event-confirmation-heading p {
  width: min(565px, 100%);
  margin: 0;
  color: #b2b9c1;
  font-size: var(--qep-body, 16px);
  line-height: var(--qep-body-lh, 24px);
  text-align: center;
}

.qep-event-confirmation-order {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(694px, 100%);
  gap: 48px;
}

.qep-event-confirmation-order-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.qep-event-confirmation-order-number span {
  color: #b2b9c1;
  font-size: var(--qep-h6, 18px);
  line-height: var(--qep-h6-lh, 26px);
  font-weight: 400;
}

.qep-event-confirmation-order-number strong {
  color: #0066ff;
  font-size: var(--qep-h5, 20.25px);
  line-height: var(--qep-h5-lh, 28px);
  font-weight: 500;
}

.qep-event-confirmation-summary {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #142438;
  box-shadow:
    0 95px 80px rgba(0, 0, 0, 0.12),
    0 39.6887px 33.4221px rgba(0, 0, 0, 0.0863),
    0 21.2195px 17.869px rgba(0, 0, 0, 0.0715),
    0 11.8955px 10.0172px rgba(0, 0, 0, 0.06),
    0 6.3176px 5.3201px rgba(0, 0, 0, 0.0485),
    0 2.6289px 2.2138px rgba(0, 0, 0, 0.0337);
  backdrop-filter: blur(25px);
}

.breakdance .qep-event-confirmation-summary h2,
.qep-event-confirmation-summary h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--qep-h4, 22.78px);
  line-height: var(--qep-h4-lh, 32px);
  font-weight: 500;
}

.qep-event-confirmation-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
  align-items: start;
  width: 100%;
  padding-top: 24px;
  gap: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.qep-event-confirmation-product-column,
.qep-event-confirmation-value-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 24px;
}

.qep-event-confirmation-value-column {
  align-items: flex-end;
}

.qep-event-confirmation-column-label {
  color: #b2b9c1;
  font-size: var(--qep-xs, 12.64px);
  line-height: var(--qep-xs-lh, 16px);
}

.qep-event-confirmation-product-details {
  display: flex;
  align-items: center;
  gap: 24px;
}

.qep-event-confirmation-product-image {
  display: flex;
  flex: 0 0 61.86px;
  align-items: center;
  justify-content: center;
  width: 61.86px;
  height: 61.86px;
  overflow: hidden;
  border-radius: 6.72px;
  background: #001127;
}

.qep-event-confirmation-product-image svg,
.qep-event-confirmation-product-image img {
  display: block;
  max-width: 44px;
  max-height: 44px;
}

.qep-event-confirmation-product-name,
.qep-event-confirmation-value-column strong {
  color: #ffffff;
  font-size: var(--qep-body, 16px);
  line-height: var(--qep-body-lh, 24px);
  font-weight: 400;
}

.qep-event-confirmation-pricing {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.qep-event-confirmation-pricing-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 0;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.qep-event-confirmation-pricing-row,
.qep-event-confirmation-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.qep-event-confirmation-pricing-row {
  color: #b2b9c1;
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
}

.qep-event-confirmation-pricing-row strong {
  color: #ffffff;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
}

.qep-event-confirmation-total {
  color: #ffffff;
  font-size: var(--qep-h6, 18px);
  line-height: var(--qep-h6-lh, 26px);
  font-weight: 500;
}

.qep-event-confirmation-total strong {
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
}

.qep-event-confirmation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(364px, 100%);
  height: 42px;
  padding: 12px 32px;
  border: 1px solid #0066ff;
  border-radius: 8px;
  background: transparent;
  color: #0066ff !important;
  font-size: var(--qep-small, 14.22px);
  line-height: var(--qep-small-lh, 18px);
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.qep-event-confirmation-button:hover {
  background: #0066ff;
  color: #ffffff !important;
}

.qep-event-confirmation-footer {
  width: min(650px, 100%);
  margin: 0;
  color: #b2b9c1;
  font-size: var(--qep-body, 16px);
  line-height: var(--qep-body-lh, 24px);
  text-align: center;
}

@media (max-width: 767px) {
  .qep-event-confirmation {
    min-height: 100vh;
    padding:
      var(--space-8xl, 64px)
      var(--space-xl, 16px);
  }

  .qep-event-confirmation{
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .qep-event-checkout{
    padding-top: 0;
  }

  .breakdance .qep-event-confirmation-heading h1, 
  .qep-event-confirmation-heading h1{
    font-size: 28.83px;
  }

  .qep-event-confirmation-heading p{
    font-size: 16px;
  }

  .qep-event-checkout-view{
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .qep-event-confirmation-pattern {
    width: 520px;
    height: auto;
  }

  .qep-event-confirmation-content {
    gap: 56px;
  }

  .qep-event-confirmation-heading h1 {
    font-size: var(--qep-h2, 32.44px);
    line-height: var(--qep-h2-lh, 42px);
  }

  .qep-event-confirmation-summary {
    padding: 20px;
  }

  .qep-event-confirmation-product {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
  }

  .qep-event-confirmation-product-details {
    gap: 12px;
  }

  .qep-event-confirmation-product-image {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

@media (max-width: 520px) {
  .qep-event-confirmation-product {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .qep-event-confirmation-value-column {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
  }

  .qep-event-confirmation-value-column {
    align-items: center;
  }

  .qep-event-confirmation-product-column {
    gap: 16px;
  }
}