@charset "UTF-8";

/* ====================================
   Shopping Cart SCSS
   Import Design System Variables
   ==================================== */

:root,
[data-theme=light] {
  --navbar-height-desktop-full: 64px;
  --navbar-height-desktop-simple: 64px;
  --navbar-height-mobile-full: 110px;
  --navbar-height-mobile-simple: 82px;
  --timebar-height: 32px;
  --wr-header-height-desktop: 300px;
  --wr-header-height-mobile: 240px;
  --mobile-subnav-height: 40px;
  --desktop-subnav-height: 46px;
  --navbar-height: var(--navbar-height-mobile-full);
  --color-afton-black: #000000;
  --color-afton-white: #ffffff;
  --color-afton-purple: #d2affa;
  --color-gray-100: #e6e6f0;
  --color-purple-500: #7f37f5;
  --color-gray-500: #9399a5;
  --color-verification: #d2affa;
  --color-alert: #e54866;
  --color-discount-typography: #b4ff78;
  --color-discount-light: #449a00;
  --text-primary: #000000;
  --text-secondary: #7f37f5;
  --text-tertiary: #9399a5;
  --text-inverse: #ffffff;
  --text-disabled: rgba(0, 0, 0, 0.4);
  --text-success: #449a00;
  --link-color: #7F37F5;
  --link-hover-color: #610ced;
  --bg-primary: #ffffff;
  --bg-secondary: #e6e6f0;
  --bg-tertiary: #f3f3f3;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --card-bg: var(--bg-tertiary);
  --btn-primary-bg: #000000;
  --btn-primary-text: #ffffff;
  --btn-primary-border: transparent;
  --btn-primary-hover-bg: #ffffff;
  --btn-primary-hover-text: #000000;
  --btn-primary-hover-border: #000000;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #7f37f5;
  --btn-secondary-border: #7f37f5;
  --btn-secondary-hover-bg: #7f37f5;
  --btn-secondary-hover-text: #ffffff;
  --btn-secondary-hover-border: #7f37f5;
  --btn-secondary-solid-bg: transparent;
  --btn-secondary-solid-text: #7f37f5;
  --btn-secondary-solid-border: #7f37f5;
  --btn-secondary-solid-hover-bg: #7f37f5;
  --btn-secondary-solid-hover-text: #ffffff;
  --btn-secondary-solid-hover-border: #7f37f5;
  --btn-contrast-bg: #000000;
  --btn-contrast-text: #ffffff;
  --btn-contrast-border: transparent;
  --btn-contrast-hover-bg: #ffffff;
  --btn-contrast-hover-text: #000000;
  --btn-contrast-hover-border: #000000;
  --btn-inverse-bg: #ffffff;
  --btn-inverse-text: #000000;
  --btn-inverse-border: transparent;
  --btn-inverse-hover-bg: #e6e6f0;
  --btn-inverse-hover-text: #000000;
  --btn-inverse-hover-border: transparent;
  --btn-purple-bg: #d2affa;
  --btn-purple-text: #000000;
  --btn-purple-border: transparent;
  --btn-purple-hover-bg: #bf9ef5;
  --btn-purple-hover-text: #000000;
  --btn-purple-hover-border: transparent;
  --btn-disabled-bg: #9399a5;
  --btn-disabled-text: rgba(0, 0, 0, 0.35);
  --btn-disabled-border: transparent;
  --border-primary: #d2d2dc;
  --border-secondary: #9399a5;
  --border-focus: #d2affa;
  --input-bg: #e6e6f0;
  --input-border: #e6e6f0;
  --input-text: #000000;
  --input-placeholder: #9399a5;
  --input-focus-border: #d2affa;
  --input-focus-bg: #ffffff;
  --input-focus-shadow: rgba(210, 175, 250, 0.2);
  --input-error-border: #e54866;
  --input-success-border: #449a00;
  --select-bg: #ffffff;
  --select-arrow-color: #000000;
  --tab-active-bg: #000000;
  --tab-active-text: #ffffff;
  --tab-inactive-bg: #d2d2dc;
  --tab-inactive-text: #000000;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-theme=dark] {
  --color-afton-black: #000000;
  --color-afton-white: #ffffff;
  --color-afton-purple: #d2affa;
  --color-gray-900: #161616;
  --color-gray-800: #262626;
  --color-gray-500: #9399a5;
  --color-purple-500: #7f37f5;
  --color-verification: #d2affa;
  --color-alert: #e54866;
  --color-discount-typography: #b4ff78;
  --text-primary: #ffffff;
  --text-secondary: #7f37f5;
  --text-tertiary: #9399a5;
  --text-inverse: #000000;
  --text-disabled: rgba(255, 255, 255, 0.4);
  --text-success: #b4ff78;
  --link-color: #d2affa;
  --link-hover-color: #b77ff7;
  --bg-primary: #000000;
  --bg-secondary: #161616;
  --bg-tertiary: #262626;
  --bg-overlay: rgba(0, 0, 0, 0.8);
  --card-bg: var(--bg-tertiary);
  --btn-primary-bg: #d2affa;
  --btn-primary-text: #000000;
  --btn-primary-border: transparent;
  --btn-primary-hover-bg: #bf9ef5;
  --btn-primary-hover-text: #000000;
  --btn-primary-hover-border: transparent;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #7f37f5;
  --btn-secondary-border: #7f37f5;
  --btn-secondary-hover-bg: #7f37f5;
  --btn-secondary-hover-text: #ffffff;
  --btn-secondary-hover-border: #7f37f5;
  --btn-secondary-solid-bg: transparent;
  --btn-secondary-solid-text: #d2affa;
  --btn-secondary-solid-border: #d2affa;
  --btn-secondary-solid-hover-bg: transparent;
  --btn-secondary-solid-hover-text: #d2affa;
  --btn-secondary-solid-hover-border: #d2affa;
  --btn-contrast-bg: #ffffff;
  --btn-contrast-text: #000000;
  --btn-contrast-border: transparent;
  --btn-contrast-hover-bg: #e6e6f0;
  --btn-contrast-hover-text: #000000;
  --btn-contrast-hover-border: transparent;
  --btn-inverse-bg: #000000;
  --btn-inverse-text: #ffffff;
  --btn-inverse-border: transparent;
  --btn-inverse-hover-bg: #ffffff;
  --btn-inverse-hover-text: #000000;
  --btn-inverse-hover-border: #000000;
  --btn-purple-bg: #d2affa;
  --btn-purple-text: #000000;
  --btn-purple-border: transparent;
  --btn-purple-hover-bg: #bf9ef5;
  --btn-purple-hover-text: #000000;
  --btn-purple-hover-border: transparent;
  --btn-disabled-bg: #9399a5;
  --btn-disabled-text: rgba(255, 255, 255, 0.3);
  --btn-disabled-border: transparent;
  --border-primary: #404040;
  --border-secondary: #9399a5;
  --border-focus: #d2affa;
  --input-bg: #262626;
  --input-border: #404040;
  --input-text: #ffffff;
  --input-placeholder: #9399a5;
  --input-focus-border: #d2affa;
  --input-focus-bg: #333333;
  --input-focus-shadow: rgba(210, 175, 250, 0.2);
  --input-error-border: #e54866;
  --input-success-border: #b4ff78;
  --select-bg: #2a2a2a;
  --select-arrow-color: #ffffff;
  --tab-active-bg: #d2affa;
  --tab-active-text: #000000;
  --tab-inactive-bg: #262626;
  --tab-inactive-text: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5),
      0 4px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6),
      0 10px 10px -5px rgba(0, 0, 0, 0.5);
}

html {
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.af-icon-btn,
.af-search-btn {
  color: var(--text-primary);
}

.af-icon-btn svg,
.af-search-btn svg {
  stroke: currentColor;
  fill: none;
}

.af-icon-btn img,
.af-search-btn img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.theme-icon {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

[data-theme=dark] .theme-icon {
  -webkit-filter: invert(1) brightness(1);
          filter: invert(1) brightness(1);
}

.theme-logo {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.brand-logo,
.no-filter {
  -webkit-filter: none !important;
          filter: none !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

[data-theme=light] .social-media a img {
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

[data-theme=dark] .social-media a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/* ====================================
                        Shopping Cart Styles
                        ==================================== */

.summary-wrapper {
  padding: 0 1rem;
  border-bottom: 2px solid var(--text-inverse);
}

.shopping-cart-frame {
  float: left;
  width: 100%;
  position: relative;
  padding: 62px 0;
}

.cart_timer_div {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--navbar-height-mobile-full);
}

@media (min-width: 992px) {
  .cart_timer_div {
    top: var(--navbar-height-desktop-full);
  }
}

.waiting_room_timer_div {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--navbar-height-mobile-full);
}

@media (min-width: 992px) {
  .waiting_room_timer_div {
    top: var(--navbar-height-desktop-full);
  }
}

.waiting_room_footer_timer_div {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--navbar-height-mobile-full);
}

@media (min-width: 992px) {
  .waiting_room_footer_timer_div {
    top: var(--navbar-height-desktop-full);
  }
}

body:has(.modal.show) .waiting_room_timer_div {
  display: none !important;
}

body:has(.modal.show) .waiting_room_footer_timer_div {
  display: none !important;
}

.af-navbar--simple ~ .waiting_room_timer_div,
body:has(.af-navbar--simple) .waiting_room_timer_div {
  top: var(--navbar-height-mobile-simple);
}

@media (min-width: 992px) {
  .af-navbar--simple ~ .waiting_room_timer_div,
  body:has(.af-navbar--simple) .waiting_room_timer_div {
    top: var(--navbar-height-desktop-simple);
  }
}

body:has(.af-navbar--no-search) .waiting_room_timer_div {
  top: var(--navbar-height-mobile-simple);
}

@media (min-width: 992px) {
  body:has(.af-navbar--no-search) .waiting_room_timer_div {
    top: var(--navbar-height-desktop-full);
  }
}

.af-navbar--simple ~ .waiting_room_footer_timer_div,
body:has(.af-navbar--simple) .waiting_room_footer_timer_div {
  top: var(--navbar-height-mobile-simple);
}

@media (min-width: 992px) {
  .af-navbar--simple ~ .waiting_room_footer_timer_div,
  body:has(.af-navbar--simple) .waiting_room_footer_timer_div {
    top: var(--navbar-height-desktop-simple);
  }
}

body:has(.af-navbar--no-search) .waiting_room_footer_timer_div {
  top: var(--navbar-height-mobile-simple);
}

@media (min-width: 992px) {
  body:has(.af-navbar--no-search) .waiting_room_footer_timer_div {
    top: var(--navbar-height-desktop-full);
  }
}

body:has(.modal.show) .cart_timer_div {
  display: none !important;
}

.af-navbar--simple ~ .cart_timer_div,
body:has(.af-navbar--simple) .cart_timer_div {
  top: var(--navbar-height-mobile-simple);
}

@media (min-width: 992px) {
  .af-navbar--simple ~ .cart_timer_div,
  body:has(.af-navbar--simple) .cart_timer_div {
    top: var(--navbar-height-desktop-simple);
  }
}

body:has(.af-navbar--no-search) .cart_timer_div {
  top: var(--navbar-height-mobile-simple);
}

@media (min-width: 992px) {
  body:has(.af-navbar--no-search) .cart_timer_div {
    top: var(--navbar-height-desktop-full);
  }
}

.purchase-checkout-time-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 32px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 999;
  background: #ff667d;
}

.waiting_room_footer_timer_div .purchase-checkout-time-wrap {
  position: relative;
  bottom: 0;
  top: auto;
}

.main-footer .waiting_room_footer_timer_div .purchase-checkout-time-wrap {
  position: fixed;
}

a.purchase-checkout-time {
  font-size: 0.875rem;
  color: #ffffff !important;
  margin-bottom: 0;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  text-decoration: none;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 6px;
}

a.purchase-checkout-time:hover {
  text-decoration: none;
}

a.purchase-checkout-time img {
  width: 14px;
  height: 14px;
  margin-right: 0;
  flex-shrink: 0;
}

a.purchase-checkout-time span {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-left: 0;
}

.header--on-scroll a.purchase-checkout-time {
  top: var(--navbar-height-desktop-simple) !important;
}

.shopping-cart-wrap {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 10px;
  margin-bottom: 0;
}

.shopping-cart-head-sticky {
  width: 100%;
  float: left;
  position: relative;
  z-index: 777 !important;
  background: #fff;
  padding: 0;
}

.sticky-wrapper.is-sticky .shopping-cart-head-sticky.timer-header-sticky {
  top: calc(var(--navbar-height-desktop-simple) + var(--timebar-height) - 1px) !important;
}

.sticky-wrapper.is-sticky .shopping-cart-head {
  padding-top: 10px;
}

@media (max-width: 767.98px) {
  .sticky-wrapper.is-sticky .shopping-cart-head {
    padding-top: 20px;
  }
}

.shopping-cart-head {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #7666ff;
}

.shopping-cart-head h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  color: #343434;
}

.shopping-cart-head .btn-success {
  font-size: 1rem;
  background: #41d96a;
  border-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
  .shopping-cart-frame {
    padding: 40px 0 60px 0;
  }

  .sticky-wrapper.is-sticky .shopping-cart-head-sticky {
    top: 63px !important;
  }

  .sticky-wrapper.is-sticky .shopping-cart-head-sticky.timer-header-sticky {
    top: 63px !important;
  }

  .shopping-cart-head h4 {
    font-size: 1.625rem;
    line-height: 1;
    margin: 0;
  }
}

@media (max-width: 575.98px) {
  .sticky-wrapper.is-sticky .shopping-cart-head-sticky {
    top: 51px !important;
  }

  .sticky-wrapper.is-sticky .shopping-cart-head-sticky.timer-header-sticky {
    top: 51px !important;
  }
}

/* Shopping Cart Card Styles Starts */

.shopping-cart-card {
  margin: 0 auto;
  width: 844px;
  padding: 0;
  margin-top: 25px;
  background: #ffffff;
  border: 1px solid rgba(118, 102, 255, 0.4);
  border-radius: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.shopping-cart-card:first-child {
  margin-top: 42px;
}

.shopping-cart-card-head {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  position: relative;
  width: 100%;
  min-height: 91px;
}

.success-event-card .shopping-cart-card-head {
  height: 275px;
}

.success-event-card .shopping-cart-card-head .show-details {
  padding: 0 30px 0 34px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 1199.98px) {
  .success-event-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    float: left;
    width: 100%;
  }

  .success-event-card .shopping-cart-card {
    max-width: 600px;
  }

  .success-event-card .shopping-cart-card-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .success-event-card .shopping-cart-card-head .show-details {
    padding: 30px 30px 30px 34px;
  }

  .success-event-card .event-image {
    width: 100% !important;
    height: 340px;
  }
}

@media (max-width: 991.98px) {
  .success-event-card .shopping-cart-card {
    max-width: 100%;
    margin-left: 0;
  }

  .success-event-card .event-image {
    height: 320px !important;
  }
}

@media (max-width: 767.98px) {
  .success-event-card .event-image {
    height: 220px !important;
  }
}

@media (max-width: 575.98px) {
  .success-event-card .shopping-cart-card {
    max-width: 390px;
    margin-left: auto;
  }
}

@media (max-width: 379.98px) {
  .success-event-card .event-image {
    height: 205px !important;
  }
}

.shopping-cart-card-head-data {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 12px 10px 8px 25px;
}

.shopping-cart-card-head-data h3 {
  font-size: 1rem;
  color: #7666ff;
  font-weight: 500;
  margin-bottom: 4px;
}

.shopping-cart-card-head-data p {
  font-size: 0.8125rem;
  color: #7666ff;
  margin-bottom: 0;
  line-height: 1.7;
}

.shopping-cart-card-head .share-widget-parent {
  bottom: auto;
  right: 30px;
  top: -14px;
}

.action-btn-group {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 10px;
}

.action-btn-group a {
  padding: 5px;
}

.action-btn-group .edit {
  width: 22px !important;
  height: 22px !important;
}

.action-btn-group .delete {
  width: 19px !important;
  height: 21px !important;
}

@media (max-width: 767.98px) {
  .shopping-cart-card-head-data p {
    line-height: 1.3 !important;
    width: 90%;
  }
}

.shopping-cart-card-item-wrap {
  float: left;
  width: 100%;
}

.shopping-cart-card-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 93px;
  padding-left: 15px;
  position: relative;
}

.shopping-cart-card-item.ticket-item {
  padding-left: 17px;
}

.shopping-cart-card-item.ticket-price {
  padding-left: 0;
  padding-right: 15px;
}

.shopping-cart-card-item-wrap.promo-code {
  min-height: 60px;
  height: unset;
}

.shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item {
  min-height: 60px;
  height: 100%;
}

.shopping-cart-card-item-wrap.delivary-method {
  min-height: 59px;
  height: 100%;
}

.shopping-cart-frame .shopping-cart-card-item-wrap.delivary-method {
  padding: 5px 0 7px;
}

.shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item {
  min-height: 49px;
  height: 100%;
}

.shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item.pricing {
  padding: 0 0;
}

.checkout-type-button-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2px 6px;
}

.shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap {
  margin-left: 0;
  width: 100%;
}

.shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group {
  width: 350px;
  height: 38px;
}

.shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group .btn-outline-green {
  padding: 0 28px;
  height: 31px;
}

.shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input {
  font-size: 0.875rem;
  height: 31px;
}

.shopping-cart-card-item.delivary-method .checkout-type-btn {
  margin: 2px 0;
  padding: 6px 10px;
  color: #666;
}

.shopping-cart-card-item.delivary-method .checkout-type-btn:hover {
  color: #fff !important;
  background: #7666ff;
}

.shopping-cart-card-item.delivary-method .checkout-type-btn img {
  margin-left: 7px;
}

.checkout-type-btn.btn-primary {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 5px;
}

.checkout-type-btn.btn-primary:not(:disabled):not(.disabled).active,
.checkout-type-btn.btn-primary:not(:disabled):not(.disabled):active,
.show > .checkout-type-btn.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #7666ff;
  border-color: #7666ff;
}

.shopping-cart-card-item.ticket-item .shopping-cart-card-item-label {
  font-weight: 500;
  line-height: 19px;
}

.shopping-cart-frame .service-tax-wrap .my-tickets-download-tickets-item-middle--text {
  font-size: 0.8125rem;
  font-weight: 500 !important;
  margin-bottom: 0;
}

.tooltip_info-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url("/images_v2/info_icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

[data-theme=dark] .tooltip_info-icon {
  -webkit-filter: invert(1) brightness(1);
          filter: invert(1) brightness(1);
}

.service-tax-wrap .buy-tickets-cart-footer-row {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  position: relative;
  gap: 10px;
  padding: 0 1rem 0.5rem;
}

@media (min-width: 992px) {
  .service-tax-wrap .buy-tickets-cart-footer-row {
    padding: 0 1rem 0.5rem;
  }
}

.service-tax-wrap .buy-tickets-cart-footer-row label {
  font-size: 0.875rem;
}

.bundle-subsection-row {
  padding: 0 0 0.5rem 1.5rem;
}

.bundle-subsection-row:last-child {
  margin: 0 0 1rem !important;
  border-bottom: 2px solid var(--text-inverse);
}

.bundle-subsection-row .my-tickets-download-tickets-item-middle--text,
.bundle-subsection-row .my-tickets-download-tickets-cost--text {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.7;
}

.bundle-subsection-row .my-tickets-download-tickets-item-middle--text::before {
  content: "\203A   ";
}

.service-tax-wrap .buy-tickets-cart-footer-row--ename {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 1rem;
  gap: 0;
  border-bottom: 2px solid var(--text-inverse);
}

.service-tax-wrap .buy-tickets-cart-footer-row--ename-edit {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 5px;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.ename-edit__btns {
  display: -webkit-box;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: start;
          align-items: flex-start;
}

.service-tax-wrap .buy-tickets-cart-footer-row--ename h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  color: #222222;
  margin: 0;
}

.service-tax-wrap .buy-tickets-cart-footer-row--ename p {
  font-size: 0.875rem;
  margin: 0;
}

.shopping-cart-card-item .service-tax-wrap {
  float: left;
  width: 100%;
}

.shopping-cart-card-item .apply-promo-widget__input-group,
.shopping-cart-card-item .buy-tickets-cart-promo-widget-wrap {
  position: relative;
  top: 0;
  left: 0;
}

.shopping-cart-card-item .buy-tickets-cart-footer-row.d-none .my-tickets-download-tickets-cost--text,
.shopping-cart-card-item .buy-tickets-cart-footer-row.d-none .my-tickets-download-tickets-cost--text span {
  font-size: 0.8125rem;
}

.shopping-cart-card-item-label {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  color: #343434;
  margin-bottom: 0;
}

.shopping-cart-card-item .buy-tickets-class-head-price--new-price {
  background-image: none;
  font-size: 0.8125rem;
}

.shopping-cart-card-item-wrap.promo-code .applied-coupon-details,
.shopping-cart-card-item-wrap.promo-code .applied-coupon-details--master-cart {
  position: relative;
  top: 0;
  left: 0;
  min-height: 38px;
  height: unset;
  width: 100%;
}

.shopping-cart-card-item-wrap.promo-code .applied-coupon-details .applied-coupon-details__code,
.shopping-cart-card-item-wrap.promo-code .applied-coupon-details--master-cart .applied-coupon-details__code {
  float: unset;
  overflow-x: auto;
}

.shopping-cart-card-item-wrap.promo-code .applied-coupon-details:after,
.shopping-cart-card-item-wrap.promo-code .applied-coupon-details--master-cart:after {
  top: 4px;
  left: 10px;
  right: unset;
}

.shopping-cart-card-item-wrap.promo-code .applied-coupon-details .applied-coupon-details__clear-code,
.shopping-cart-card-item-wrap.promo-code .applied-coupon-details--master-cart .applied-coupon-details__clear-code {
  top: 9px;
  right: 10px;
  border: 1px solid #979797;
}

@media (max-width: 991.98px) {
  .shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap {
    margin-right: 0;
  }

  .shopping-cart-card-item-wrap.promo-code .applied-coupon-details,
  .shopping-cart-card-item-wrap.promo-code .applied-coupon-details--master-cart {
    width: calc(100% - 0px);
  }
}

.shopping-cart-wrap .event-image {
  width: 34%;
  background-color: var(--bg-tertiary);
  background-size: contain;
  background-repeat: no-repeat;
}

.ticket-review-wrap .event-image {
  width: 194px;
}

.event-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 91px;
  background-size: cover;
  object-fit: cover;
  background-position: top;
}

/* Helpers Styles Starts */

.bold-6 {
  font-weight: 600 !important;
}

.mb-26 {
  margin-bottom: 26px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.purple-color {
  color: #7666ff !important;
}

.bg-purple {
  background: rgba(118, 102, 255, 0.2) !important;
}

/* Helpers Styles Ends */

.shopping-cart-card-item .link {
  font-size: 0.6875rem;
}

.footer-btn-wrap {
  float: left;
  width: 100%;
  position: relative;
}

.ticket-review-wrap h4.event-name {
  margin: 15px 0 20px;
  padding-bottom: 15px;
}

@media (max-width: 767.98px) {
  .footer-btn-wrap {
    z-index: 1999;
    position: fixed;
    left: 0;
    bottom: -1px;
    padding: 0;
    background: var(--bg-secondary);
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    max-height: 100vh;
    overflow: hidden;
    width: 100%;
  }

  .mobile-fixed-pricecheckout {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
            justify-content: space-between;
    color: var(--text-primary);
    padding: 1rem;
    gap: 10px;
    background: var(--bg-tertiary);
  }

  .mobile-fixed-pricecheckout .mobile-fixed-btn {
    border-radius: 4px;
  }

  .fixed-button {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1999;
    width: 100%;
    background: var(--bg-secondary);
    padding: 0;
  }

  .select-ticket-mobile-btn,
  .place_order_btn {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
  }

  .ticket-review-wrap {
    margin-bottom: 0px !important;
  }

  .event-suggestion-wrap {
    padding-top: 0px;
  }

  .buy-tickets-cart-footer-wrap {
    min-height: 0;
    padding: 1rem !important;
  }
}

/* Modal Background Blur Effect Styles Starts */

.supreme-container {
  float: left;
  width: 100%;
  position: relative;
}

.supreme-container.modalBlur > *:not(.modal) {
  -webkit-filter: blur(8px);
}

.supreme-container.modalDesaturate > *:not(.modal) {
  -webkit-filter: saturate(0%);
}

.modal-backdrop {
  opacity: 0.65;
  -webkit-filter: alpha(opacity=65);
}

/* Modal Background Blur Effect Styles Ends */

/* Billing Section Styles Starts */

.billing-wrap {
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.billing-wrap li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  padding: 6px 15px;
}

.billing-wrap li:nth-child(2n+1) {
  background: #f6f6f6;
}

.billing-wrap li:nth-child(2n) {
  background: rgba(246, 246, 246, 0.4);
}

.billing-wrap li:last-child {
  background: #ffffff;
  padding: 15px;
}

.billing-item {
  font-size: 1rem;
  font-weight: 400;
  color: #343434;
  margin-bottom: 0;
}

.billing-wrap .my-tickets-download-tickets-cost--text {
  font-size: 1rem;
}

.my-tickets-download-tickets-cost--text.total {
  color: #343434;
}

.my-tickets-download-tickets-item-middle--text.promo-code,
.my-tickets-download-tickets-cost--text.promo-code,
.my-tickets-download-tickets-item-right--sub-text.promo-code {
  color: #ff9624;
}

/* Billing Section Styles Ends */

/* FullView Modal Scroll Styles Starts */

.fullview-modal::-webkit-scrollbar {
  width: 4px !important;
}

.fullview-modal::-webkit-scrollbar-thumb {
  background: #bab2ff !important;
  border-radius: 5px !important;
}

.fullview-modal::-webkit-scrollbar-track {
  background: transparent !important;
}

/* FullView Modal Scroll Styles Ends */

/* Checkout as a Guest Modal Section Styles Ends */

.checkout-as-a-guest-modal.fullview-modal {
  background-color: transparent;
}

.checkout-as-a-guest-modal-body {
  background: #ffffff;
  border: 1px solid rgba(118, 102, 255, 0.4);
  border-radius: 4px;
  padding: 34px 52px 0;
}

.checkout-as-a-guest-modal .fullview-modal-content {
  max-width: 543px;
}

.checkout-as-a-guest-modal-body input::-webkit-input-placeholder {
  color: var(--input-placeholder);
}

.checkout-as-a-guest-modal-body input::-moz-placeholder {
  color: var(--input-placeholder);
}

.checkout-as-a-guest-modal-body input:-ms-input-placeholder {
  color: var(--input-placeholder);
}

.checkout-as-a-guest-modal-body input::-ms-input-placeholder {
  color: var(--input-placeholder);
}

.checkout-as-a-guest-modal-body input::placeholder {
  color: var(--input-placeholder);
}

.checkout-as-a-guest-modal-body .form-group__input {
  margin-bottom: 28px;
}

.checkout-as-a-guest-modal-body .btn {
  box-shadow: none;
}

.checkout-as-a-guest-modal-body .forgot-wrap {
  margin-top: 32px;
  margin-bottom: 7px;
}

.checkout-as-a-guest-modal-body .purchase-modal-form label {
  margin-bottom: 5px;
  margin-top: 10px;
}

.checkout-as-a-guest-modal-body .purchase-modal-form .btn-fb {
  padding: 11px 0;
}

.checkout-as-a-guest-modal-body .purchase-modal-data-frame h2 {
  margin-top: 12px;
  margin-bottom: 5px;
}

.checkout-as-a-guest-modal-body p.or {
  margin: 14px 0 16px;
}

.checkout-as-a-guest-modal-body .purchase-modal-data-frame .minimal-footer {
  margin-bottom: 9px;
}

.checkout-as-a-guest-modal-body .purchase-modal-data-frame p span {
  color: #7f838b;
}

.checkout-as-a-guest-modal .fullview-modal-dialog {
  min-height: unset;
}

/* Checkout as a Guest Modal Section Styles Ends */

/* Cart Checkout Modal Section Styles Starts */

.cart-checkout-modal {
  overflow-y: auto;
}

.fullview-modal-cart-checkout {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}

@media (max-width: 767.98px) {
  .fullview-modal-cart-checkout {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .fullview-modal-cart-checkout {
    margin-bottom: 150px;
  }
}

.fullview-modal-cart-checkout .fullview-modal-form-head {
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.0464286px;
  text-transform: uppercase;
  color: #1c2331;
  margin-top: 9px;
}

.fullview-modal-head--text {
  font-size: 2.5rem;
  font-weight: 500;
  color: #343434;
  text-align: center;
  margin-bottom: 0;
}

.cart-checkout-modal .fullview-modal-dialog {
  padding: 0;
}

.fullview-modal-head-top {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px;
}

.cart-checkout-modal .indented-form-section {
  padding: 19px 0px;
}

.fullview-modal-cart-checkout .fullview-modal-form-head {
  margin-bottom: 20px;
}

/* .fullview-modal-cart-checkout .payment-method-wrap {
                            padding: 20px 0;
                        } */

.cart-checkout-modal .profile-basic-info-form {
  margin-top: 0;
  margin-bottom: 0;
}

.cart-checkout-modal .profile-basic-info-form .form-group {
  margin-bottom: 13px;
}

.cart-checkout-modal .profile-basic-info-form.card .form-group:last-child {
  margin-bottom: 6px;
}

.cart-checkout-modal .profile-basic-info-form input:disabled {
  background: #f8f8f8 !important;
  border: 1px solid rgba(186, 189, 193, 0.3) !important;
}

.terms-and-privacy {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 400;
  color: #1c2331;
  margin-top: 22px;
  margin-bottom: 46px;
}

.terms-and-privacy .link {
  color: #51bfff !important;
}

.terms-and-privacy .link:hover {
  cursor: pointer;
  color: #51bfff !important;
}

.sm-shopping-cart {
  width: 100%;
}

.cart-checkout-modal .sm-shopping-cart {
  margin: 20px 0 0 0;
}

.ticket-item-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-right: 10px;
}

.sm-shopping-cart .shopping-cart-card-item-wrap {
  min-height: 61px;
  height: unset;
}

.sm-shopping-cart .shopping-cart-card-item {
  min-height: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.cart-checkout-modal .shopping-cart-card-item.ticket-item .shopping-cart-card-item-label {
  font-size: 0.875rem;
}

.cart-checkout-modal .buy-tickets__checkout-head-wrap.no-head-wrap {
  margin-top: 0;
}

.cart-checkout-modal .profile-basic-info-form.card-payment .form-group:last-child {
  margin-bottom: 7px;
}

.cart-checkout-modal .buy-tickets__notify-events-wrap {
  margin-top: 20px;
  position: relative;
  float: left;
  width: 100%;
}

.ticket-review-wrap {
  float: left;
  width: 100%;
  margin-bottom: 0px;
  padding: 1rem 0;
}

.ticket-review-wrap .shopping-cart-wrap {
  margin-bottom: 25px;
}

.ticket-review-questions-wrap {
  float: left;
  width: 100%;
  padding: 0;
}

.ticket-review-questions-head {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 1rem 0 0;
}

.ticket-review-questions-head h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0px;
}

.ticket-review-questions-head h3 span {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.ticket-review-questions-item {
  float: left;
  width: 100%;
  border-bottom: 1px solid var(--border-primary);
}

.ticket-review-questions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 23px 0;
}

.ticket-review-questions.right {
  height: 100%;
  padding: 14px 0;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.ticket-review-questions h4 {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.payment-selector {
  width: 100%;
  float: left;
}

.payment-selector .custom-control {
  margin: 0;
}

.payment-selector .payment-selector__head {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.payment-selector .payment-selector__head-text {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 !important;
}

.payment-selector .custom-control-label img {
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}

.custom-radio.normal .custom-control-input:checked ~ .custom-control-label img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.custom-radio.normal .custom-control-input:checked ~ .custom-control-label .payment-selector__head-text {
  color: #7666ff;
}

.payment-selector .payment-selector__sub-text {
  float: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Payment Selector - Radio Card Overrides */

.payment-selector .radio-card {
  padding: 0.85rem 1.25rem;
  margin-bottom: 0;
  background: var(--bg-secondary);
  height: 100%;
  border-radius: 1rem;
  align-content: center;
}

.payment-selector .radio-card .radio-card__input {
  align-self: center;
}

.payment-selector .radio-card__label {
  -webkit-box-align: center;
          align-items: center;
}

.payment-selector .radio-card__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.5rem;
}

.payment-selector .radio-card__content img {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.paypal-btn-wrap {
  width: 100%;
  float: left;
}

.payment-selector .custom-control-label {
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
          align-items: center;
}

.paypal-successfull-auth {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 20px;
  background: rgba(65, 217, 106, 0.2);
  border: 1px solid #41d96a;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 0 30px;
  text-align: center;
}

.paypal-successfull-auth img {
  width: 40px;
  margin: 0 0 10px;
}

.paypal-successfull-auth p {
  font-size: 0.9375rem;
  color: #000;
  font-weight: 500;
  margin: 0;
}

.paypal-failed-auth {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 0 30px;
  text-align: center;
  background: rgba(235, 87, 87, 0.1);
  border: 1px solid #eb5757;
}

.paypal-failed-auth img {
  width: 40px;
  margin: 0 0 10px;
}

.paypal-failed-auth p {
  font-size: 0.9375rem;
  color: #eb5757;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 767.98px) {
  .cart-checkout-modal .buy-tickets__notify-events-wrap {
    margin-top: 0px;
  }

  .fullview-modal-head--text {
    font-size: 2rem;
    line-height: 1;
  }
}

@media (max-width: 575.98px) {
  .payment-selector .payment-selector__head-text {
    font-size: 0.875rem;
  }

  .paypal-successfull-auth,
  .paypal-failed-auth {
    padding: 15px;
  }

  .payment-selector .custom-control-label img {
    display: none;
  }

  .payment-selector .custom-control {
    padding-left: 25px;
  }

  .payment-selector .payment-selector__sub-text {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .payment-selector .radio-card__content img {
    width: 24px;
  }
}

.rounded-number {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 29px;
  position: relative;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #7666ff;
}

.rounded-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 29px;
  height: 29px;
  border: 2px solid #7666ff;
  border-radius: 14.784px;
}

/* Cart Checkout Modal Section Styles Ends */

/* Custom Radio/Checkbox noraml Styles Starts */

.custom-radio.normal .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #7666ff;
  background-image: none;
  width: 8px;
  height: 8px;
  top: 14px;
  left: -20px;
  border-radius: 15px;
}

.custom-radio.normal .custom-control-label::before {
  top: 10px;
}

.normal .custom-control-label::before {
  background: #f5f5f5;
  border-color: #e1e1e1;
}

.custom-radio.normal .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #f5f5f5;
}

.custom-checkbox.normal .custom-control-label,
.custom-radio.normal .custom-control-label {
  color: #1c2331;
  line-height: 2 !important;
}

.custom-checkbox.normal .custom-control-label::before,
.custom-checkbox.normal .custom-control-label::after {
  border-radius: 2px !important;
  top: 6px;
}

/* Custom Radio/Checkbox noraml Styles Ends */

/* Time Out Modal Styles Starts */

.time-out-modal {
  z-index: 1000001 !important;
}

.time-out-modal .modal-dialog {
  max-width: 504px;
}

.time-out-modal .btn {
  height: unset;
  min-height: 44px;
  font-size: 0.875rem;
  line-height: 1.1;
  width: 100%;
}

/* Time Out Modal Styles Ends */

/* Custom Select Styles Starts */

.cart-checkout-select {
  width: 100%;
  padding: 0 20px;
}

/* Custom Select Styles Starts */

/* Order Summary Styles Starts */

.order-summary-widget {
  display: none;
  float: left;
  width: 100%;
  background: var(--bg-tertiary);
  margin-top: 14px !important;
}

.order-summary-widget .buy-tickets-cart-head-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 2px solid var(--text-inverse);
  justify-content: space-between;
}

.order-summary-widget .buy-tickets-cart-head {
  font-weight: 500;
}

.order-summary__body {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  position: relative;
  max-height: 580px;
  overflow-y: auto;
}

.order-summary__body .service-tax-wrap {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--text-inverse);
}

.order-summary__body .service-tax-wrap:last-child {
  border-bottom: 0;
  margin: 0;
  padding: 0 0 10px;
}

.order-summary__body .service-tax-wrap .my-tickets-download-tickets-item-middle--text .ticket-count {
  font-size: 0.75rem;
}

.order-summary__footer {
  float: left;
  width: 100%;
  position: relative;
  padding: 11px 20px 21px;
  border-top: 1px solid rgba(118, 102, 255, 0.6);
}

@media (max-width: 991.98px) {
  .order-summary__body {
    max-height: inherit;
    overflow-y: visible;
  }
}

@media (max-width: 767.98px) {
  .order-summary-widget {
    margin-top: 0 !important;
    background: var(--bg-tertiary);
    max-height: 70vh;
    overflow: hidden;
  }

  .order-summary__body {
    max-height: calc(70vh - 56px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
}

@media (max-width: 575.98px) {
  .mb-15 {
    margin-bottom: 15px;
  }
}

.fullview-modal .buy-tickets__checkout-form-wrap {
  padding: 10px 0;
  float: left;
  width: 100%;
}

.cart-checkout-modal .custom-control-label {
  line-height: 1.8 !important;
  cursor: pointer;
}

.cart-checkout-modal .custom-control-label::before {
  background-color: #f5f5f5;
  border-color: #e1e1e1;
}

.cart-checkout-modal .buy-tickets__checkout-head-wrap {
  margin-top: 30px;
  margin-bottom: 10px;
  width: 100%;
  float: left;
}

/* Order Summary Styles Ends */

/* Media Query Starts */

@media (max-width: 1199.98px) {
  .order-summary-widget.cart-widget {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .rounded-number::before {
    left: -4px;
  }
}

@media (max-width: 991.98px) {
  .purchase-checkout-time-wrap a.purchase-checkout-time {
    top: 74px;
  }

  .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item {
    min-height: unset;
    height: 100%;
    padding-bottom: 0;
  }

  .shopping-cart-frame .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item {
    padding-top: 0;
  }

  .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item.delivary-method,
  .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item.promo-code {
    padding: 0 13px;
  }

  .shopping-cart-card-item.delivary-method .checkout-type-btn {
    min-width: 100px;
    margin-right: 0;
    padding: 6px;
  }

  .shopping-cart-card-item.delivary-method .checkout-type-btn img {
    margin-left: 3px;
  }

  .shopping-cart-wrap {
    padding: 0;
  }

  .shopping-cart-card {
    float: left;
    width: 100%;
  }

  .shopping-cart-card-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    height: 100%;
  }

  .shopping-cart-card-head-data {
    min-height: 97px;
    padding: 15px 10px;
    position: relative;
    -webkit-box-align: center;
            align-items: center;
  }

  .shopping-cart-card-head-data p {
    line-height: 1.5;
  }

  .shopping-cart-card-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
    min-height: unset;
    height: 100%;
    padding: 13px 16px;
  }

  .shopping-cart-card-item-wrap,
  .shopping-cart-card-item-wrap.promo-code,
  .sm-shopping-cart .shopping-cart-card-item-wrap,
  .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item {
    height: 100%;
  }

  .shopping-cart-card-item-wrap.delivary-method {
    min-height: 10px;
    height: 100%;
  }

  .shopping-cart-card-item-wrap.promo-code {
    min-height: 90px;
  }

  .shopping-cart-card-item.sm-billing::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #cdcdcd;
    position: absolute;
    top: 14px;
    left: 0;
  }

  .shopping-cart-card-head-data h3 {
    margin-bottom: 6px;
    margin-top: 2px;
  }

  .shopping-cart-card-head-data p {
    font-size: 0.75rem;
    line-height: 1.9;
  }

  .sm-your-tickets {
    padding: 11px 13px 12px;
  }

  .sm-your-tickets .sm-tickets-name {
    padding: 6px 0 14px;
  }

  .shopping-cart-frame .sm-your-tickets .sm-tickets-name {
    padding: 6px 0;
  }

  .sm-billing {
    padding: 13px 0 0 !important;
  }

  .shopping-cart-frame .sm-billing {
    padding-top: 0 !important;
  }

  .sm-your-tickets .shopping-cart-card-item.ticket-item {
    padding: 4px 0 12px;
  }

  .shopping-cart-frame .sm-your-tickets .shopping-cart-card-item.ticket-item {
    padding: 4px 0 1px;
  }

  .shopping-cart-card-item .service-tax-wrap {
    padding-top: 28px;
  }

  .shopping-cart-frame .shopping-cart-card-item .service-tax-wrap {
    padding-top: 30px;
  }

  .shopping-cart-frame .service-tax-wrap .buy-tickets-cart-footer-row {
    margin-bottom: 0;
  }

  .shopping-cart-card-item .service-tax-wrap .my-tickets-download-tickets-item-middle--text {
    font-size: 0.75rem;
  }

  .shopping-cart-card-item .service-tax-wrap .my-tickets-download-tickets-cost--text {
    font-size: 0.75rem;
  }

  .shopping-cart-card-item.ticket-item .shopping-cart-card-item-label {
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .sm-your-tickets .shopping-cart-card-item-label {
    margin-bottom: 6px;
  }

  .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item-label {
    margin-bottom: 10px;
  }

  .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item.promo-code {
    padding-bottom: 15px;
  }

  .cart-checkout-modal .sm-shopping-cart .shopping-cart-card-item {
    min-height: 39px;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .ticket-review-questions.left {
    padding: 30px 0 0 0;
  }

  .ticket-review-questions.right {
    padding: 23px 10px;
  }

  .ticket-review-questions.right.input {
    padding: 10px 10px 25px;
  }

  .ticket-review-wrap .event-image,
  .shopping-cart-wrap .event-image {
    width: 100%;
    height: 93px;
  }

  .rounded-number::before {
    left: -1px;
  }

  .shopping-cart-frame .shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap {
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .order-summary-widget.cart-widget .order-summary__footer {
    padding: 8px 20px;
    display: none;
  }

  .custom-checkbox.normal .custom-control-label::before,
  .custom-checkbox.normal .custom-control-label::after {
    top: 4px;
  }

  .rounded-number::before {
    left: 12px;
  }

  .fullview-modal-head-top {
    padding: 15px;
  }

  .fullview-modal-cart-checkout .payment-method-wrap {
    padding: 0;
  }

  .cart_footer_timer_div .purchase-checkout-time-wrap {
    position: relative;
    bottom: 0;
    top: auto;
  }

  .main-footer .cart_footer_timer_div .purchase-checkout-time-wrap {
    position: fixed;
  }

  .footer-btn-wrap .purchase-checkout-time-wrap a.purchase-checkout-time {
    top: unset;
    bottom: -1px;
    margin-bottom: 0;
    position: relative;
  }
}

@media (max-width: 575.98px) {
  .shopping-cart-card-item-wrap .ticket-item-wrap {
    width: 100%;
    padding-right: 0;
  }

  .shopping-cart-wrap .container {
    padding: 0;
  }

  .ticket-review-wrap .shopping-cart-wrap.shopping-cart-wrap--summary {
    margin-bottom: 140px;
  }

  .shopping-cart-card-item .link {
    font-size: 0.625rem;
  }

  .shopping-cart-card-item.delivary-method .checkout-type-button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 100%;
  }

  .shopping-cart-card-item.delivary-method .checkout-type-btn {
    margin-bottom: 6px;
    width: 100%;
    gap: 7px;
  }

  .shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group {
    width: 100%;
  }

  .shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input {
    font-size: 0.8125rem;
  }

  .shopping-cart-card-item-label {
    font-size: 0.875rem;
  }

  .shopping-cart-card-item.ticket-item .shopping-cart-card-item-label {
    font-size: 0.875rem;
  }

  .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item-label {
    margin-bottom: 20px;
    margin-top: 11px;
  }

  .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item {
    padding: 0px 16px 0px !important;
  }

  .shopping-cart-frame .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item {
    padding: 0 16px 0;
    min-height: 49px;
  }

  .shopping-cart-frame .shopping-cart-card-item.promo-code .buy-tickets-cart-promo-widget-wrap {
    margin-bottom: 16px;
  }

  .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item.delivary-method {
    padding: 0 9px 10px 9px;
  }

  .shopping-cart-frame .shopping-cart-card-item-wrap.delivary-method .shopping-cart-card-item.delivary-method {
    padding-bottom: 3px;
  }

  .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item-label {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .shopping-cart-frame .shopping-cart-card-item-wrap.promo-code .shopping-cart-card-item-label {
    margin-top: 14px;
    margin-bottom: 22px;
  }

  .shopping-cart-frame .shopping-cart-head {
    border-bottom: none;
  }

  .shopping-cart-frame .shopping-cart-card:first-child {
    margin-top: 1px;
  }

  .ticket-review-wrap .shopping-cart-wrap {
    margin-bottom: 14px;
  }

  .featured-events-wrap.card-sm.shopping-cart {
    margin: 0;
    padding: 0 10px;
  }

  .checkout-as-a-guest-modal-body {
    border: none;
    width: 100%;
    height: 100%;
    padding: 16px 20px 0 26px;
  }

  .checkout-as-a-guest-modal.fullview-modal {
    background-color: #ffffff;
  }

  .checkout-as-a-guest-modal .fullview-modal-content {
    max-width: 100%;
  }

  .checkout-as-a-guest-modal-body p.or {
    margin: 4px 0 7px !important;
  }

  .checkout-as-a-guest-modal-body .purchase-modal-form p {
    font-size: 0.875rem;
    margin-bottom: 0;
  }

  .checkout-as-a-guest-modal-body .minimal-footer {
    font-size: 0.8125rem !important;
    line-height: 24px !important;
    color: #8d9198;
  }

  .checkout-as-a-guest-modal-body .minimal-footer a {
    font-size: 0.8125rem !important;
  }

  .checkout-as-a-guest-modal-body .purchase-modal-data-frame h2 {
    margin: 40px 0 7px 0;
  }

  .fullview-modal-head-top {
    padding: 15px 10px;
  }

  .fullview-modal-head .fullview-modal-head--logo {
    width: 83px;
    margin-left: 26px;
  }

  .checkout-as-a-guest-modal-body .forgot-wrap {
    margin-top: 34px;
    margin-bottom: 9px;
  }

  .checkout-as-a-guest-modal .fullview-modal-dialog {
    padding-top: 20px;
  }

  .checkout-as-a-guest-modal .fullview-modal-head {
    margin-bottom: 12px;
  }

  .cart-checkout-select {
    padding: 0;
  }

  .fullview-modal-cart-checkout .fullview-modal-head--text {
    text-align: left;
    font-size: 2rem;
    margin: 5px 0;
  }

  .fullview-modal-cart-checkout .buy-tickets__checkout-head {
    margin-bottom: 5px;
  }

  .cart-checkout-modal .profile-basic-info-form {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .cart-checkout-modal .buy-tickets__checkout-form-wrap .profile-basic-info-label {
    margin-bottom: 0;
  }

  .cart-checkout-modal .profile-basic-info-form .form-group {
    margin-bottom: 5px;
  }

  .fullview-modal-cart-checkout .fullview-modal-form-head {
    font-size: 1.4375rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .shopping-cart-card-head-data h3 {
    margin-bottom: 4px;
  }

  .cart-checkout-modal .buy-tickets__checkout-head-wrap {
    margin-top: 30px;
  }

  .cart-checkout-modal .profile-basic-info-form .custom-checkbox {
    margin: 6px 20px 10px;
  }

  .cart-checkout-modal .buy-tickets__checkout-head-wrap.no-head-wrap {
    margin-top: 20px;
  }

  .cart-checkout-modal .buy-tickets__notify-events-wrap .custom-checkbox {
    margin: 20px 0 22px 20px;
  }

  .terms-and-privacy {
    padding: 0 10px;
    margin-top: 20px;
    margin-bottom: 49px;
  }

  .summary-cart-modal-sm.checkout-time .buy-tickets-cart-show-main-head-wrap .close--aft {
    top: 20px;
  }

  .summary-cart-modal-sm.checkout-time .order-summary__body {
    padding: 26px 25px 17px;
    background: #f2f2f2;
    height: 75%;
  }

  .summary-cart-modal-sm.checkout-time .buy-tickets-cart-footer-wrap.fullview {
    min-height: 122px;
  }

  .summary-cart-modal-sm.checkout-time .order-summary__body .service-tax-wrap .my-tickets-download-tickets-item-middle--text,
  .summary-cart-modal-sm.checkout-time .order-summary__body .service-tax-wrap .my-tickets-download-tickets-cost--text {
    font-size: 1.125rem;
    margin-bottom: 0;
  }

  .summary-cart-modal-sm.checkout-time .buy-tickets-cart-price-text span {
    font-weight: 500;
    color: #343434;
  }

  .summary-cart-modal-sm.checkout-time .buy-tickets-cart-footer-row {
    margin-bottom: 8px;
  }

  .fullview-modal-cart-checkout .payment-method-wrap .buy-tickets__checkout-form-wrap.indicate .security-icon {
    background-size: 46px;
  }

  .shopping-cart-card-item-wrap.promo-code .applied-coupon-details,
  .shopping-cart-card-item-wrap.promo-code .applied-coupon-details--master-cart {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .custom-radio.normal .custom-control-label::before {
    top: 4px;
  }

  .custom-radio.normal .custom-control-input:checked ~ .custom-control-label::after {
    top: 8px;
  }

  .rounded-number {
    left: -15px;
  }

  .rounded-number::before {
    left: 17px;
    min-width: 29px;
    position: relative;
  }

  .time-out-modal .modal-dialog {
    max-width: 355px;
    margin: 15px auto;
  }

  .time-out-modal .my-tickets__change-method-modal-footer-wrap {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

/* Shopping Cart Card Styles Starts */

.event-name-wth {
  width: 80%;
}

@media (max-width: 575.98px) {
  .event-name-wth {
    width: calc(100% - 10px);
  }
}

.ticket-soldout-btn {
  color: #eb5757 !important;
}

/* Applied coupon details variant for master cart event blocks */

.applied-coupon-details--master-cart {
  width: 100%;
  top: auto !important;
}

.auth-cart-countdown {
  position: fixed !important;
  left: 0;
  top: 0;
  z-index: 999;
}

@media (max-width: 575.98px) {
  .auth-cart-countdown {
    bottom: 0;
    top: auto;
  }

  .auth-cart-countdown .purchase-checkout-time-wrap {
    bottom: auto !important;
  }
}

/* CHECKOUT QUESTIONS STARTS */

.checkout-qstns-main-wrapper {
  background-color: var(--bg-tertiary);
  border-radius: 1rem;
}

.checkout-qstns-main-wrapper .checkout-questions-head {
  padding: 1rem;
  border-radius: 1rem 1rem 0 0;
}

.checkout-qstns-main-wrapper .checkout-questions-head h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
}

.checkout-qstns-main-wrapper .ticket-review-questions-head {
  -webkit-box-align: start;
          align-items: flex-start;
}

.checkout-qstns-main-wrapper .ticket-review-questions-head span.counter {
  font-size: 1rem;
  line-height: 1;
  margin-right: 8px;
}

.checkout-qstns-main-wrapper .ticket-review-questions-head span {
  line-height: 1;
  color: var(--text-primary);
  margin: 0;
  font-size: 1rem;
}

.checkout-qstns-main-wrapper .ticket-review-questions-head span .event-name {
  color: var(--text-secondary);
}

.checkout-qstns-main-wrapper .answer-wrapper {
  margin-top: 1rem;
}

.checkout-qstns-main-wrapper .answer-wrapper .form-group__input {
  float: unset;
  padding: 0 !important;
}

.checkout-qstns-main-wrapper .checkout-questions-body:last-of-type {
  border-bottom: 0;
}

.checkout-qstns-main-wrapper .checkout-questions-body .question-wrap {
  padding-top: 15px;
  border-top: 1px solid var(--border-primary);
}

.checkout-qstns-main-wrapper .checkout-questions-body .question-wrap:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.checkout-qstns-main-wrapper .checkout-questions-body .sub-question-wrap {
  border-top: 2px solid var(--text-inverse);
}

.checkout-qstns-main-wrapper .checkout-questions-body .sub-question-wrap:first-of-type {
  padding: 0 1rem;
}

.checkout-qstns-main-wrapper .checkout-questions-body .sub-question-wrap.sub-question {
  margin-left: 20px;
  margin-top: 15px;
  max-width: calc(100% - 20px);
}

.checkout-qstns-main-wrapper .checkout-questions-body .per-order-questions--col-right {
  padding: 0 1rem;
}

.checkout-qstns-main-wrapper .checkout-questions-body .per-order-questions--col-right:last-child {
  padding: 0 1rem 1rem;
}

.checkout-qstns-main-wrapper .checkout-questions-body .ticket-class {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.checkout-qstns-main-wrapper .checkout-questions-body .ticket-code {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-primary);
  padding-top: 12px;
}

.checkout-qstns-main-wrapper .checkout-questions-body .ticket-code .ticket-counter {
  font-weight: 600;
}

.checkout-qstns-main-wrapper .checkout-questions-body .ticket-code .ticket-counter-span {
  font-weight: 600;
}

[data-theme=dark] .checkout-qstns-main-wrapper {
  background-color: var(--bg-secondary);
}

@media (max-width: 767.98px) {
  .checkout-qstns-main-wrapper {
    margin-bottom: 110px;
  }
}

@media (max-width: 575.98px) {
  .checkout-qstns-main-wrapper {
    margin-bottom: 0;
  }

  .checkout-qstns-main-wrapper .checkout-questions-body .custom-checkbox {
    margin-left: 0;
    margin-bottom: 0;
  }

  .checkout-qstns-main-wrapper .checkout-questions-body .custom-control {
    padding-left: 24px;
  }
}

/* CHECKOUT QUESTIONS STARTS */

.promo-code {
  padding: 15px;
}

.promo-code .shopping-cart-card-item.promo-code {
  padding: 0 !important;
}

.promo-code .shopping-cart-card-item.promo-code .apply-promo-widget__input-group.is-invalid ~ .invalid-feedback {
  margin-top: 4px !important;
  padding-left: 0 !important;
  line-height: 1;
  max-width: 80%;
}

@media (max-width: 767.98px) {
  .promo-code .shopping-cart-card-item.promo-code .apply-promo-widget__input-group.is-invalid ~ .invalid-feedback {
    top: 0px !important;
    width: 100% !important;
  }
}

.my-tickets-download-tickets-cost--text.promo-code,
.my-tickets-download-tickets-item-middle--text.promo-code {
  padding: unset !important;
}

.promo-code-v2 {
  padding: 0 24px;
}

.promo-code-v2 .input-group.apply-promo-widget__input-group:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(118, 102, 255, 0.3);
  top: 50%;
  left: -30px;
}

.promo-code-v2 .input-group.apply-promo-widget__input-group:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(118, 102, 255, 0.3);
  top: 50%;
  right: -30px;
}

.promo-code-v2 .buy-tickets-cart-promo-widget-wrap {
  margin: 0;
}

.promo-code-v2 .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group {
  width: 100% !important;
  height: unset !important;
  z-index: 1;
}

.promo-code-v2 .buy-tickets-cart-promo-widget-wrap .invalid-feedback {
  margin: 0 !important;
  padding: 0;
}

.promo-code-v2 .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group .event_promo_code,
.promo-code-v2 .buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group .btn-outline-green {
  height: 38px !important;
}

.ticket-checkout-summary {
  border-bottom: 1px solid rgba(118, 102, 255, 0.3) !important;
  padding: 10px 0 15px 0 !important;
}

.ticket-checkout-summary:last-child {
  border-bottom: none !important;
}

.ticket-checkout-summary .ticket-category {
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 6px;
  line-height: 1;
}

.ticket-checkout-summary .buy-tickets-cart-footer-row--ename h3 {
  color: #1c2331 !important;
  margin-bottom: 5px;
}

.ticket-checkout-summary .buy-tickets-cart-footer-row--ename p {
  font-size: 0.8125rem !important;
  color: #333 !important;
  line-height: 1.2;
}

.ticket-checkout-summary .buy-tickets-cart-footer-row--ename {
  margin: 0;
  padding: 0;
  border: none;
}

.ticket-checkout-summary .buy-tickets-cart-footer-row {
  margin-bottom: 2px;
}

.ticket-checkout-summary .my-tickets-download-tickets-item-middle--text {
  color: var(--color-afton-purple) !important;
  font-weight: 400;
  text-transform: capitalize;
}

.ticket-checkout-summary .my-tickets-download-tickets-item-middle--text span {
  font-size: 0.75rem;
  color: #666;
}

.ticket-checkout-summary .my-tickets-download-tickets-cost--text {
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
}

.ticket-checkout-summary .my-tickets-download-tickets-cost--text span {
  margin-right: 4px;
  font-weight: 400;
}

.ticket-checkout-summary .total-amount span {
  font-weight: 500 !important;
}

.minimal-navigation-wrap {
  width: 100%;
}

.minimal-navigation-head {
  position: absolute;
  width: 100%;
  text-align: center;
}

.minimal-navigation-head h1 {
  font-size: 2.5rem;
  margin: 0;
}

@media (max-width: 767.98px) {
  .minimal-navigation-head h1 {
    text-align: right;
    font-size: 1.125rem;
  }
}

.order-summary__footer-v2 .buy-tickets-cart-head {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #1c2331;
}

.order-summary__footer-v2 .grand_total {
  color: #333 !important;
}

/* Fix for tooltip flickering on Happiness Locked Protection */

.happiness-locked-line-item .tooltip_info-icon {
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
}

/* Override bootstrap tooltip for better positioning and long content */

.happiness-locked-line-item .tooltip {
  pointer-events: none;
}

/* Ensure tooltip stays visible and doesn't flicker */

.tooltip.show {
  opacity: 1 !important;
}

/* Prevent tooltip from being cut off */

.tooltip.bs-tooltip-top,
.tooltip.bs-tooltip-bottom {
  margin: 5px 0;
}

.tooltip.bs-tooltip-left,
.tooltip.bs-tooltip-right {
  margin: 0 5px;
}

.happiness-locked-toggle div {
  border-radius: 0;
}

.happiness-locked-toggle div:last-of-type {
  padding: 0;
}

.happiness-locked-toggle > div:first-child {
  border-bottom: 2px solid var(--text-inverse);
  border-top: 2px solid var(--text-inverse);
}

.terms-condition {
  font-size: 1rem;
  color: var(--text-tertiary);
}

/* ====================================
               Checkout Section Cards
               Wrapper for checkout form sections
               ==================================== */

.checkout-section-card {
  background-color: var(--bg-tertiary);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .checkout-section-card {
    padding: 1rem;
  }
}

.checkout-section-card > *:last-child {
  margin-bottom: 0;
}

.iti--container {
  z-index: 9999 !important;
  width: auto !important;
}

@media (max-width: 767.98px) {
  .iti--container {
    min-width: 280px !important;
  }
}

.iti--container .iti__country-list {
  max-height: 220px;
  overflow-y: auto;
}

@media (max-width: 767.98px) {
  .iti--container .iti__country-list {
    min-width: 280px;
  }
}

.country-code-phone-number .iti__selected-flag {
  border-right: 2px solid var(--border-primary) !important;
}

/* ====================================
                     Payment Card Input - CVV Tooltip Icon
                     ==================================== */

/* Position the CVV tooltip icon inside the security code input field */

/* Floating label wrapper commented out - using simple placeholders now */

.form-group .time-tooltip {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  z-index: 5;
}

/* Icons inherit text color based on theme */

.refund-reasons-icons {
  color: var(--text-primary);
}

.refund-reasons-icons span {
  font-size: 0.875rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .payment-method-wrap {
    padding-bottom: 80px;
  }

  .row:has(.ticket-review-wrap) .payment-method-wrap {
    padding-bottom: 0;
  }

  .shopping-cart-wrap {
    padding-bottom: 80px;
  }
}

:root,
[data-theme=light] {
  --navbar-height-desktop-full: 64px;
  --navbar-height-desktop-simple: 64px;
  --navbar-height-mobile-full: 110px;
  --navbar-height-mobile-simple: 82px;
  --timebar-height: 32px;
  --wr-header-height-desktop: 300px;
  --wr-header-height-mobile: 240px;
  --mobile-subnav-height: 40px;
  --desktop-subnav-height: 46px;
  --navbar-height: var(--navbar-height-mobile-full);
  --color-afton-black: #000000;
  --color-afton-white: #ffffff;
  --color-afton-purple: #d2affa;
  --color-gray-100: #e6e6f0;
  --color-purple-500: #7f37f5;
  --color-gray-500: #9399a5;
  --color-verification: #d2affa;
  --color-alert: #e54866;
  --color-discount-typography: #b4ff78;
  --color-discount-light: #449a00;
  --text-primary: #000000;
  --text-secondary: #7f37f5;
  --text-tertiary: #9399a5;
  --text-inverse: #ffffff;
  --text-disabled: rgba(0, 0, 0, 0.4);
  --text-success: #449a00;
  --link-color: #7F37F5;
  --link-hover-color: #610ced;
  --bg-primary: #ffffff;
  --bg-secondary: #e6e6f0;
  --bg-tertiary: #f3f3f3;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --card-bg: var(--bg-tertiary);
  --btn-primary-bg: #000000;
  --btn-primary-text: #ffffff;
  --btn-primary-border: transparent;
  --btn-primary-hover-bg: #ffffff;
  --btn-primary-hover-text: #000000;
  --btn-primary-hover-border: #000000;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #7f37f5;
  --btn-secondary-border: #7f37f5;
  --btn-secondary-hover-bg: #7f37f5;
  --btn-secondary-hover-text: #ffffff;
  --btn-secondary-hover-border: #7f37f5;
  --btn-secondary-solid-bg: transparent;
  --btn-secondary-solid-text: #7f37f5;
  --btn-secondary-solid-border: #7f37f5;
  --btn-secondary-solid-hover-bg: #7f37f5;
  --btn-secondary-solid-hover-text: #ffffff;
  --btn-secondary-solid-hover-border: #7f37f5;
  --btn-contrast-bg: #000000;
  --btn-contrast-text: #ffffff;
  --btn-contrast-border: transparent;
  --btn-contrast-hover-bg: #ffffff;
  --btn-contrast-hover-text: #000000;
  --btn-contrast-hover-border: #000000;
  --btn-inverse-bg: #ffffff;
  --btn-inverse-text: #000000;
  --btn-inverse-border: transparent;
  --btn-inverse-hover-bg: #e6e6f0;
  --btn-inverse-hover-text: #000000;
  --btn-inverse-hover-border: transparent;
  --btn-purple-bg: #d2affa;
  --btn-purple-text: #000000;
  --btn-purple-border: transparent;
  --btn-purple-hover-bg: #bf9ef5;
  --btn-purple-hover-text: #000000;
  --btn-purple-hover-border: transparent;
  --btn-disabled-bg: #9399a5;
  --btn-disabled-text: rgba(0, 0, 0, 0.35);
  --btn-disabled-border: transparent;
  --border-primary: #d2d2dc;
  --border-secondary: #9399a5;
  --border-focus: #d2affa;
  --input-bg: #e6e6f0;
  --input-border: #e6e6f0;
  --input-text: #000000;
  --input-placeholder: #9399a5;
  --input-focus-border: #d2affa;
  --input-focus-bg: #ffffff;
  --input-focus-shadow: rgba(210, 175, 250, 0.2);
  --input-error-border: #e54866;
  --input-success-border: #449a00;
  --select-bg: #ffffff;
  --select-arrow-color: #000000;
  --tab-active-bg: #000000;
  --tab-active-text: #ffffff;
  --tab-inactive-bg: #d2d2dc;
  --tab-inactive-text: #000000;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-theme=dark] {
  --color-afton-black: #000000;
  --color-afton-white: #ffffff;
  --color-afton-purple: #d2affa;
  --color-gray-900: #161616;
  --color-gray-800: #262626;
  --color-gray-500: #9399a5;
  --color-purple-500: #7f37f5;
  --color-verification: #d2affa;
  --color-alert: #e54866;
  --color-discount-typography: #b4ff78;
  --text-primary: #ffffff;
  --text-secondary: #7f37f5;
  --text-tertiary: #9399a5;
  --text-inverse: #000000;
  --text-disabled: rgba(255, 255, 255, 0.4);
  --text-success: #b4ff78;
  --link-color: #d2affa;
  --link-hover-color: #b77ff7;
  --bg-primary: #000000;
  --bg-secondary: #161616;
  --bg-tertiary: #262626;
  --bg-overlay: rgba(0, 0, 0, 0.8);
  --card-bg: var(--bg-tertiary);
  --btn-primary-bg: #d2affa;
  --btn-primary-text: #000000;
  --btn-primary-border: transparent;
  --btn-primary-hover-bg: #bf9ef5;
  --btn-primary-hover-text: #000000;
  --btn-primary-hover-border: transparent;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #7f37f5;
  --btn-secondary-border: #7f37f5;
  --btn-secondary-hover-bg: #7f37f5;
  --btn-secondary-hover-text: #ffffff;
  --btn-secondary-hover-border: #7f37f5;
  --btn-secondary-solid-bg: transparent;
  --btn-secondary-solid-text: #d2affa;
  --btn-secondary-solid-border: #d2affa;
  --btn-secondary-solid-hover-bg: transparent;
  --btn-secondary-solid-hover-text: #d2affa;
  --btn-secondary-solid-hover-border: #d2affa;
  --btn-contrast-bg: #ffffff;
  --btn-contrast-text: #000000;
  --btn-contrast-border: transparent;
  --btn-contrast-hover-bg: #e6e6f0;
  --btn-contrast-hover-text: #000000;
  --btn-contrast-hover-border: transparent;
  --btn-inverse-bg: #000000;
  --btn-inverse-text: #ffffff;
  --btn-inverse-border: transparent;
  --btn-inverse-hover-bg: #ffffff;
  --btn-inverse-hover-text: #000000;
  --btn-inverse-hover-border: #000000;
  --btn-purple-bg: #d2affa;
  --btn-purple-text: #000000;
  --btn-purple-border: transparent;
  --btn-purple-hover-bg: #bf9ef5;
  --btn-purple-hover-text: #000000;
  --btn-purple-hover-border: transparent;
  --btn-disabled-bg: #9399a5;
  --btn-disabled-text: rgba(255, 255, 255, 0.3);
  --btn-disabled-border: transparent;
  --border-primary: #404040;
  --border-secondary: #9399a5;
  --border-focus: #d2affa;
  --input-bg: #262626;
  --input-border: #404040;
  --input-text: #ffffff;
  --input-placeholder: #9399a5;
  --input-focus-border: #d2affa;
  --input-focus-bg: #333333;
  --input-focus-shadow: rgba(210, 175, 250, 0.2);
  --input-error-border: #e54866;
  --input-success-border: #b4ff78;
  --select-bg: #2a2a2a;
  --select-arrow-color: #ffffff;
  --tab-active-bg: #d2affa;
  --tab-active-text: #000000;
  --tab-inactive-bg: #262626;
  --tab-inactive-text: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5),
      0 4px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6),
      0 10px 10px -5px rgba(0, 0, 0, 0.5);
}

html {
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.af-icon-btn,
.af-search-btn {
  color: var(--text-primary);
}

.af-icon-btn svg,
.af-search-btn svg {
  stroke: currentColor;
  fill: none;
}

.af-icon-btn img,
.af-search-btn img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.theme-icon {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

[data-theme=dark] .theme-icon {
  -webkit-filter: invert(1) brightness(1);
          filter: invert(1) brightness(1);
}

.theme-logo {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.brand-logo,
.no-filter {
  -webkit-filter: none !important;
          filter: none !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

[data-theme=light] .social-media a img {
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

[data-theme=dark] .social-media a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.shopping-cart-frame {
  float: left;
  width: 100%;
  position: relative;
  padding: 4rem 0;
  background: var(--bg-primary);
}

@media (max-width: 767.98px) {
  .shopping-cart-frame {
    padding: 2.5rem 0 60px 0;
  }
}

.purchase-checkout-time-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 32px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 999;
  background: var(--color-alert);
}

a.purchase-checkout-time {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff !important;
  margin-bottom: 0;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 6px;
}

a.purchase-checkout-time:hover {
  text-decoration: none;
}

a.purchase-checkout-time img {
  width: 14px;
  height: 14px;
  margin-right: 0;
  flex-shrink: 0;
}

a.purchase-checkout-time span {
  font-size: 0.9375rem;
  font-weight: 500;
}

.shopping-cart-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  margin-top: 1rem;
}

.shopping-cart-head-sticky {
  width: 100%;
  position: relative;
  z-index: 777 !important;
  background: var(--bg-primary);
  padding: 0;
}

.shopping-cart-head {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-afton-purple);
}

.shopping-cart-head h4 {
  font-family: "PP Right Compact", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-primary);
  margin: 0;
}

@media (max-width: 767.98px) {
  .shopping-cart-head h4 {
    font-size: 1.625rem;
    line-height: 1;
    margin: 0;
  }
}

.shopping-cart-card {
  width: 100%;
  padding: 0;
  margin-top: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.shopping-cart-card:first-child {
  margin-top: 2.5rem;
}

@media (max-width: 991.98px) {
  .shopping-cart-card {
    width: 100%;
  }
}

.shopping-cart-card-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .shopping-cart-card-head {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 0;
  }
}

.cart-event-image-wrapper {
  width: 100%;
  aspect-ratio: 701/397;
  position: relative;
  background-color: var(--bg-secondary);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center;
          mask-position: center;
}

.cart-event-image-wrapper .cart-event-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 992px) {
  .cart-event-image-wrapper {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 718px;
    height: 499px;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .cart-event-image-wrapper {
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .cart-event-image-wrapper {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .cart-event-image-wrapper {
    width: 100%;
    height: 280px;
  }
}

.cart-event-details {
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
}

@media (min-width: 992px) {
  .cart-event-details {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.cart-title-actions-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}

.cart-event-title {
  font-family: "PP Right Compact", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.25rem, calc(1.07vw + 1.24rem), 2.25rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
  margin: 0;
  -webkit-box-flex: 1;
          flex: 1;
}

@media (max-width: 767.98px) {
  .cart-event-title {
    font-size: 1.5rem;
    font-weight: 800;
  }
}

.cart-event-info {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5rem;
}

.cart-event-info > div {
  display: -webkit-box;
  display: flex;
  gap: 0.5rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.cart-event-label {
  font-weight: 600;
  color: var(--color-afton-purple);
}

.cart-event-value {
  font-weight: 400;
  color: var(--text-primary);
}

.cart-event-type,
.cart-event-description,
.cart-event-age {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.cart-event-type {
  font-weight: 600;
}

.cart-event-actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
  top: auto;
  position: absolute;
  right: 0;
}

.cart-action-btn {
  width: 32px !important;
  height: 32px !important;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

.cart-action-btn img {
  width: 16px !important;
  height: 16px !important;
}

.cart-action-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.cart-tickets-section {
  width: 100%;
  padding: 2.5rem 1.5rem;
  background: var(--bg-primary);
  border-top: 2px solid var(--border-primary);
}

.cart-tickets-table__header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 0.5rem;
  gap: 1.5rem;
}

.cart-section-title {
  font-family: "PP Right Compact", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
  margin: 0;
}

.cart-tickets-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-tickets-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-primary);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.cart-tickets-list li:last-child {
  border-bottom: none;
}

.cart-tickets-list .ticket-name {
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.cart-tickets-list .ticket-amount {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-afton-purple);
}

li.selected-ticket-list__bundle {
  flex-wrap: wrap;
  -webkit-box-align: start;
          align-items: flex-start;
}

li.selected-ticket-list__bundle > .ticket-name {
  font-weight: 600;
}

.bundle-list {
  list-style: none;
  width: 100%;
  padding: 0 0 0 1.5rem;
  margin: 0.5rem 0 0 0;
}

.bundle-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 4px 0;
  border-bottom: none;
}

.bundle-list li .ticket-name {
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

.bundle-list li .ticket-name::before {
  content: "\203A   ";
}

.bundle-list li .ticket-amount {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

.cart-pricing-breakdown {
  width: 100%;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
}

@media (min-width: 992px) {
  .cart-pricing-breakdown {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.cart-pricing-title {
  font-family: "PP Right Compact", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
  margin: 0 0 1.5rem 0;
}

.cart-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-pricing-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-secondary);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cart-pricing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-pricing-item:first-child {
  padding-top: 0;
}

.cart-pricing-item--total {
  background: var(--color-afton-purple);
  margin: 1.5rem 0 0 0;
  padding: 1.5rem 2.5rem !important;
  border-radius: 50px;
  border-bottom: none;
}

.cart-pricing-item--total .cart-pricing-label {
  color: #000000;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.cart-pricing-item--total .cart-pricing-value {
  color: #000000;
  font-size: 1.75rem;
  font-weight: 900;
}

.cart-pricing-item--discount .cart-pricing-label {
  color: var(--color-discount-light);
}

.cart-pricing-item--discount .cart-pricing-value {
  color: var(--color-discount-light);
  font-weight: 700;
}

.cart-pricing-label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-pricing-value {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-pricing-value--discount {
  color: var(--text-success);
}

.cart-promo-delivery-section {
  width: 100%;
  margin: 1.5rem 0;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .cart-promo-delivery-section {
    grid-column: 2/3;
    grid-row: 3/4;
    margin: 1.5rem 0;
  }
}

.cart-section-block {
  width: 100%;
}

.cart-section-block + .cart-section-block {
  padding-top: 2rem;
  border-top: 1px solid var(--border-secondary);
}

.cart-section-label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}

@media (max-width: 991.98px) {
  .cart-promo-delivery-section {
    margin-top: 1.5rem;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .cart-pricing-breakdown {
    padding: 1.5rem;
  }

  .cart-promo-delivery-section {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .cart-section-block + .cart-section-block {
    padding-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .cart-pricing-item {
    padding: 1rem 0;
  }

  .cart-pricing-item .cart-pricing-label {
    font-size: 0.875rem;
  }

  .cart-pricing-item .cart-pricing-value {
    font-size: 1.125rem;
  }

  .cart-pricing-item--total {
    padding: 1rem 1.5rem;
  }

  .cart-pricing-item--total .cart-pricing-label {
    font-size: 1rem;
  }

  .cart-pricing-item--total .cart-pricing-value {
    font-size: 1.5rem;
  }
}

.shopping-cart-card-item-wrap.delivary-method {
  padding: 1rem 2.5rem;
  background: var(--bg-secondary);
}

.shopping-cart-card-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 49px;
  position: relative;
}

.shopping-cart-card-item.delivary-method {
  min-height: unset;
  height: 100%;
  padding: 0;
}

.shopping-cart-card-item-label {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.checkout-type-button-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkout-type-btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 2px solid var(--border-primary);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.checkout-type-btn:hover {
  color: #000000 !important;
  background: var(--color-afton-purple);
  border-color: var(--color-afton-purple);
}

.checkout-type-btn.active {
  color: #000000;
  background: var(--color-afton-purple);
  border-color: var(--color-afton-purple);
}

.checkout-type-btn img {
  width: 16px;
  height: 16px;
}

.delivery_method_required {
  border: 2px solid var(--color-alert) !important;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.shopping-cart-card-item-wrap.promo-code {
  min-height: 60px;
  height: unset;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.buy-tickets-cart-promo-widget-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 0.5rem;
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group {
  max-width: 100%;
  height: 48px;
  display: -webkit-box;
  display: flex;
  position: relative;
  padding: 0;
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  height: 48px;
  border-radius: 100px 0 0 100px;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 0 1rem;
  -webkit-box-flex: 1;
          flex: 1;
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input::-webkit-input-placeholder {
  color: var(--input-placeholder);
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input::-moz-placeholder {
  color: var(--input-placeholder);
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input:-ms-input-placeholder {
  color: var(--input-placeholder);
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input::-ms-input-placeholder {
  color: var(--input-placeholder);
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input::placeholder {
  color: var(--input-placeholder);
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group input:focus {
  border-color: #7F37F5;
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(210, 175, 250, 0.2);
  outline: none;
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group .input-group-append .btn-outline-green {
  padding: 0 2.5rem;
  border-radius: 0 100px 100px 0 !important;
  background: var(--color-afton-purple);
  border: none;
  color: #000000;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group .input-group-append .btn-outline-green:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group .input-group-append .btn-outline-green:focus {
  border-color: var(--color-afton-purple);
  box-shadow: 0 0 0 4px var(--input-focus-shadow) !important;
}

.buy-tickets-cart-promo-widget-wrap .apply-promo-widget__input-group.is-invalid input {
  border-color: var(--color-alert);
}

.buy-tickets-cart-promo-widget-wrap .invalid-feedback {
  color: var(--color-alert);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  padding-left: 1rem;
  text-align: left;
}

.applied-coupon-details,
.applied-coupon-details--master-cart {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border: 2px solid var(--color-discount-light);
  border-radius: 1rem;
  justify-self: center;
}

.applied-coupon-details::after,
.applied-coupon-details--master-cart::after {
  content: "\2713";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--color-discount-light);
  color: var(--text-inverse);
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  font-weight: 700;
}

.applied-coupon-details .applied-coupon-details__code,
.applied-coupon-details--master-cart .applied-coupon-details__code {
  -webkit-box-flex: 1;
          flex: 1;
  padding-left: 2.5rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.applied-coupon-details .applied-coupon-details__clear-code,
.applied-coupon-details--master-cart .applied-coupon-details__clear-code {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-alert);
  color: var(--text-inverse);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.applied-coupon-details .applied-coupon-details__clear-code::before,
.applied-coupon-details--master-cart .applied-coupon-details__clear-code::before {
  content: "\D7";
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cart-billing-section {
  width: 100%;
  background: var(--bg-primary);
  border-radius: 1rem;
}

.billing-wrap {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  background: var(--bg-primary);
  border: 2px solid var(--border-primary);
  border-radius: 1rem;
  overflow: hidden;
}

.billing-wrap li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
}

.billing-wrap li:nth-child(2n+1) {
  background: var(--bg-secondary);
}

.billing-wrap li:nth-child(2n) {
  background: var(--bg-primary);
}

.billing-wrap li:last-child {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-top: 2px solid var(--border-primary);
}

.billing-item {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0;
}

.my-tickets-download-tickets-cost--text {
  font-size: 1rem;
  font-weight: 600;
}

.my-tickets-download-tickets-cost--text.total {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.my-tickets-download-tickets-cost--text.promo-code {
  color: var(--text-success);
}

@media (max-width: 991.98px) {
  .shopping-cart-wrap {
    margin-top: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .checkout-type-button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 100%;
  }

  .checkout-type-button-wrap .checkout-type-btn {
    width: 100%;
  }
}

.footer-btn-wrap {
  float: left;
  width: 100%;
  position: relative;
}

@media (max-width: 767.98px) {
  .footer-btn-wrap {
    z-index: 1999;
    position: fixed;
    left: 0;
    bottom: -1;
    background-color: var(--bg-secondary);
    padding: 1rem;
  }

  .footer-btn-wrap .mobile-fixed-btn {
    border-radius: 100px;
  }
}

.event-suggestion-wrap {
  margin-top: 2.5rem;
}

@media (max-width: 767.98px) {
  .event-suggestion-wrap {
    padding-top: 0;
    margin-top: 1.5rem;
  }
}

.event-suggestion-head span {
  font-weight: 400;
}

.shopping-cart .upcoming-events-slider .slick-slide {
  padding: 0 0.5rem;
}

@media (max-width: 767.98px) {
  .shopping-cart .upcoming-events-slider .slick-dots {
    display: none !important;
  }
}

.delayed-delivery-alert {
  background: var(--bg-secondary);
  border-radius: 1rem;
  border: 1px solid var(--border-primary);
  padding: 0.5rem 1rem;
}

