﻿@font-face {
  font-family: "Airbnb Cereal";
  src: url(../../fonts/Airbnb_Cereal-Book.woff2);
}
@font-face {
  font-family: "Airbnb Cereal";
  font-weight: 500;
  src: url(../../fonts/Airbnb_Cereal-Medium.woff2);
}
@font-face {
  font-family: "Airbnb Cereal";
  font-weight: bold;
  src: url(../../fonts/Airbnb_Cereal-Bold.woff2);
}
/*COLORS*/
/*@import "_utilities.scss";*/
/*
    How to use:  
        -- Variables: 

            $min_width 
            $max_width
            $min_font
            $max_font

        @include fluid-type($min_width, $max_width, $min_font, $max_font);
*/
body.events-page, body.allTickets-page {
  display: flex;
  flex-direction: column;
}
body.events-page main.dashboard-page, body.allTickets-page main.dashboard-page {
  flex: 1;
}

.loader-wrap {
  padding: 100px 0;
}

.disabledShopField {
  color: grey !important;
  border-color: grey !important;
  pointer-events: none;
  opacity: 0.5;
}

.MessageErrorTop {
  background-color: #FF385C;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  padding: 30px;
  margin-bottom: 10px;
}

.text-bold {
  font-weight: bold;
}

.contact-us {
  padding: 63px 0;
}
.contact-us .center-content .contact-us-text {
  color: #222;
}
.contact-us .center-content .contact-us-text-headline {
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 48px;
}
.contact-us .center-content .contact-us-text-headline {
  font-size: 32px;
}
@media screen and (min-width: 320px) {
  .contact-us .center-content .contact-us-text-headline {
    font-size: calc(32px + 16 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .contact-us .center-content .contact-us-text-headline {
    font-size: 48px;
  }
}
.contact-us .center-content .contact-us-text-subheadline {
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 24px;
}
.contact-us .center-content .contact-us-text-subheadline {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .contact-us .center-content .contact-us-text-subheadline {
    font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .contact-us .center-content .contact-us-text-subheadline {
    font-size: 32px;
  }
}
.contact-us .center-content .contact-us-text-copy {
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
}
.contact-us .center-content .contact-us-text-copy {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .contact-us .center-content .contact-us-text-copy {
    font-size: calc(16px + 0 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .contact-us .center-content .contact-us-text-copy {
    font-size: 16px;
  }
}
.contact-us .center-content .contact-us-text-copy span {
  display: block;
}
.contact-us .center-content .contact-us-text-copy span.bold-text {
  font-weight: bold;
}
.contact-us .center-content .contact-us-text-copy a {
  color: #FF385C;
}
.contact-us .center-content .contact-us-text-copy a:hover {
  text-decoration: none;
}
.contact-us .center-content .contact-us-logo {
  margin: 63px 0 63px;
  background-image: url("../../images/client-imgs/airbnb_logo_internal.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  max-width: 320px;
  height: 100px;
}

.btn {
  cursor: pointer;
  width: 100%;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: unset;
  transition: all 0.33s ease;
}
.btn.add-to-cart-btn {
  padding: 15px 0;
  background-color: rgba(34, 34, 34, 0.9);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
  max-width: 200px;
}
.btn.add-to-cart-btn:hover {
  background-color: #FF385C;
}
.btn.add-to-cart-btn[disabled=disabled] {
  opacity: 0.5;
}
.btn.add-to-cart-btn .btn-text {
  transition: all 0.25s ease;
  display: inline-block;
}
.btn.add-to-cart-btn .btn-text #BtnAddToCartText {
  display: block;
}
.btn.add-to-cart-btn .btn-text #MessageSuccess {
  display: none;
}
.btn.add-to-cart-btn .btn-text #MessageSuccess .btn-check {
  color: #008000;
}
.btn.add-to-cart-btn .btn-text #MessageError {
  display: none;
}
.btn.add-to-cart-btn #btnLoader {
  width: 0;
  overflow: hidden;
  display: inline-block;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.25s ease;
}
.btn.add-to-cart-btn.is-clicked .btn-text {
  padding-left: 10px;
}
.btn.add-to-cart-btn.is-clicked .btn-text #BtnAddToCartText {
  display: block;
}
.btn.add-to-cart-btn.is-clicked .btn-text #MessageSuccess {
  display: none;
}
.btn.add-to-cart-btn.is-clicked .btn-text #MessageError {
  display: none;
}
.btn.add-to-cart-btn.is-clicked #btnLoader {
  width: 28px;
  opacity: 1;
  transform: scale(1);
}
.btn.add-to-cart-btn.disabled-shop {
  background-color: #f2f2f2;
  color: #676767;
  cursor: default;
}
.btn.add-to-cart-btn.disabled-shop .btn-text #MessageSuccess {
  display: none;
}
.btn.add-to-cart-btn.disabled-shop .btn-text #MessageError {
  display: none;
}
.btn.add-to-cart-btn.disabled-shop #btnLoader {
  width: 28px;
  opacity: 0;
  transform: scale(0.5);
}
.btn.add-to-cart-btn.is-disabled {
  background-color: #f2f2f2;
  color: #676767;
  cursor: default;
}
.btn.add-to-cart-btn.is-disabled .btn-text {
  padding-left: 10px;
}
.btn.add-to-cart-btn.is-disabled .btn-text #BtnAddToCartText {
  display: none;
}
.btn.add-to-cart-btn.is-disabled .btn-text #MessageSuccess {
  display: block;
}
.btn.add-to-cart-btn.is-disabled .btn-text #MessageError {
  display: none;
}
.btn.add-to-cart-btn.is-disabled #btnLoader {
  width: 28px;
  opacity: 0;
  transform: scale(0.5);
  display: none;
}
.btn.checkout-btn {
  padding: 10px 0;
  background-color: rgba(34, 34, 34, 0.9);
  width: 200px;
  font-size: 16px;
  color: #fff;
  text-transform: none;
}
.btn.checkout-btn:hover {
  background-color: #FF385C;
}
.btn.return-home-btn {
  max-width: max-content;
  text-align: center;
  padding: 15px 30px;
  background-color: rgba(34, 34, 34, 0.9);
  margin: 50px 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
}
.btn.return-home-btn:hover {
  background-color: #FF385C;
}
.btn.modal-btn {
  width: 100%;
  max-width: 250px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  color: #ffffff;
  text-transform: none;
  background-color: rgba(34, 34, 34, 0.9);
  transition: none;
}
.btn.modal-btn.confirm-btn {
  margin: 0 auto;
}
.shop-category {
  padding: 50px 20px;
}
.shop-category .center-content .shop-category-content {
  padding: 50px 0;
}
.shop-category .center-content .shop-category-content .shop-category-item {
  background-color: transparent;
  border: 1px solid rgba(34, 34, 34, 0.5);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.shop-category .center-content .shop-category-content .shop-category-item .category-item-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
}
.shop-category .center-content .shop-category-content .shop-category-item .category-item-link .category-icon {
  margin-right: 10px;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.shop-category .center-content .shop-category-content .shop-category-item .category-item-link .category-icon .category-icon-img {
  width: 100%;
  height: 100%;
}
.shop-category .center-content .shop-category-content .shop-category-item .category-item-link .category-title {
  color: #222;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  /*text-transform: uppercase;*/
  font-family: "Airbnb Cereal", sans-serif;
}
@media (max-width: 767px) {
  .shop-category .center-content .shop-category-content .shop-category-item .category-item-link .category-title {
    font-size: 16px;
    line-height: 1;
  }
}

.grid.grid-one-column .grid-item.grid-event-item {
  border: 1px solid rgba(34, 34, 34, 0.5);
  border-radius: 8px;
  margin-bottom: 24px;
}
.grid.grid-one-column .grid-item.grid-event-item:last-of-type {
  /*border-bottom: none;*/
}
.grid.grid-one-column.--ticketNamesGrid {
  border-bottom: 1px solid #222;
  margin-bottom: 40px;
}
.grid.grid-one-column.--ticketNamesGrid:last-child {
  border: none;
}
.grid.grid-one-column.--ticketNamesGrid .grid-item {
  margin-bottom: 0;
}
.grid.grid-one-column.--ticketNamesGrid + .assets-form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid.grid-one-column.--ticketNamesGrid + .assets-form-submit .submit-total {
  font-weight: 500;
}
.grid.grid-one-column.--ticketNamesGrid + .assets-form-submit .submit-total {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .grid.grid-one-column.--ticketNamesGrid + .assets-form-submit .submit-total {
    font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .grid.grid-one-column.--ticketNamesGrid + .assets-form-submit .submit-total {
    font-size: 32px;
  }
}
.grid.grid-one-column.--ticketNamesGrid + .assets-form-submit .btn {
  width: 100%;
  max-width: max-content;
  padding: 15px;
}
.grid.grid-one-column.--ticketNamesGrid .inner-event-headline {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
}
.grid.grid-one-column.--ticketNamesGrid .inner-event-headline {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .grid.grid-one-column.--ticketNamesGrid .inner-event-headline {
    font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .grid.grid-one-column.--ticketNamesGrid .inner-event-headline {
    font-size: 32px;
  }
}
.grid.grid-one-column.--ticketNamesGrid .event-price {
  display: block;
  padding: 10px 0 0;
  font-weight: 900;
}
.grid.grid-two-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .grid.grid-two-column {
    display: block;
  }
}
.grid.grid-two-column .grid-item {
  margin-bottom: 2%;
  flex-basis: 49%;
}
@media (max-width: 767px) {
  .grid.grid-two-column .grid-item {
    margin-bottom: 24px;
  }
  .grid.grid-two-column .grid-item .grid-item {
    flex-basis: unset;
    width: 100%;
  }
}
.grid.grid-offset-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1023px) {
  .grid.grid-offset-right {
    display: block;
  }
}
.grid.grid-offset-right .grid-item:first-child {
  /*flex: 1 0 70%;*/
}
@media (max-width: 1023px) {
  .grid.grid-offset-right .grid-item:first-child {
    width: 100%;
    margin: 0 0 30px;
  }
}
.grid.grid-offset-right .grid-item:last-child {
  /*flex: 1 0 30%;*/
}
@media (max-width: 1023px) {
  .grid.grid-offset-right .grid-item:last-child {
    width: 100%;
  }
}
.grid.grid-offset-right .grid-item:last-child > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .grid.grid-offset-right .grid-item:last-child > div {
    align-items: flex-start;
  }
}
.grid.grid-cart-detail-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.grid.grid-cart-detail-top .grid-item {
  /*flex: 1 0 50%;*/
}
.grid.grid-cart-detail-top .grid-item .grid .grid-item:first-child {
  align-self: flex-end;
}
.grid.grid-cart-detail-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.grid.grid-cart-detail-bottom:last-child {
  margin-bottom: 0;
}
.grid.grid-cart-detail-bottom .grid-item {
  /*flex: 1 0 50%;*/
}
.grid.grid-cart-detail-bottom .grid-item:first-child {
  flex: 2;
}
.grid.grid-cart-detail-bottom .grid-item:last-child {
  flex: 1;
  justify-content: flex-start;
}
.grid.grid-cart-detail-bottom .grid-item .grid .grid-item:first-child {
  flex: unset;
  align-self: flex-start;
}
.grid.filter-grid {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 1023px) {
  .grid.filter-grid {
    flex-wrap: wrap;
  }
}
.grid.filter-grid .grid-item {
  width: -moz-calc(100% - 20px);
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  position: relative;
  margin-right: 20px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .grid.filter-grid .grid-item {
    width: -moz-calc(50% - 20px);
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .grid.filter-grid .grid-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.grid.filter-grid .grid-item:first-child {
  max-width: 215px;
}
@media (max-width: 1023px) {
  .grid.filter-grid .grid-item:first-child {
    max-width: none;
  }
}
@media (max-width: 1023px) {
  .grid.filter-grid .grid-item:nth-child(2n) {
    width: 50%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .grid.filter-grid .grid-item:nth-child(2n) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.grid.filter-grid .grid-item:last-child {
  width: 100%;
  max-width: 400px;
  margin-right: 0;
}
@media (max-width: 1023px) {
  .grid.filter-grid .grid-item:last-child {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .grid.filter-grid .grid-item:last-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

#ShowShopDetails {
  position: relative;
}
#ShowShopDetails .shop-details {
  /*box-shadow: 0 -2px 6px 0 #CCCCCC;*/
}
#ShowShopDetails .shop-details.no-shadow {
  box-shadow: none;
  background-color: #ebebeb;
}
#ShowShopDetails .shop-details .shop-details-item {
  padding: 25px 50px;
  border-radius: 4px;
}
#ShowShopDetails .shop-details .shop-details-item:first-child {
  background-color: #fff;
  border: 2px solid #DDDDDD;
}
#ShowShopDetails .shop-details .shop-details-item:last-child {
  background-color: rgba(221, 221, 221, 0.5);
}
#ShowShopDetails .shop-details .shop-details-item .shop-details-text {
  color: #222;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
#ShowShopDetails .shop-details .shop-details-item .shop-details-text.total-cost-details {
  font-size: 18px;
  margin: 0 45px 0 0;
}
#ShowShopDetails .shop-details .shop-details-item .shop-details-text .show-hide-details {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  margin-left: 20px;
  text-decoration: underline;
  cursor: pointer;
  color: #FF385C;
}
#ShowShopDetails .shop-details .shop-details-item .shop-details-text .show-hide-details:hover {
  text-decoration: none;
}
#ShowShopDetails .shop-details .shop-details-item .center-content .shop-details-headline {
  font-size: 30px;
  color: #3ec4df;
  letter-spacing: 2.5px;
}
#ShowShopDetails .shop-details .shop-details-item .center-content .shop-details-event-headline {
  color: #222;
}
#ShowShopDetails .shop-details .shop-details-item .center-content .shop-details-event-headline {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  #ShowShopDetails .shop-details .shop-details-item .center-content .shop-details-event-headline {
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  #ShowShopDetails .shop-details .shop-details-item .center-content .shop-details-event-headline {
    font-size: 24px;
  }
}
#ShowShopDetails .shop-details .shop-details-item .checkout-button {
  width: 100%;
  max-width: 235px;
}

.shop-details {
  /*box-shadow: 0 -2px 6px 0 #CCCCCC;*/
}
.shop-details.no-shadow {
  box-shadow: none;
  background-color: #f2f2f2;
}
.shop-details .shop-details-item#IDCartDetail span {
  display: block;
  font-size: 14px;
}
.shop-details .shop-details-item#IDCartDetail span.reserved-tickets {
  margin: 0 10px 0 0;
}
.shop-details .shop-details-item#IDCartDetail span.event-name {
  font-weight: 500;
  font-size: 16px;
}
.shop-details .shop-details-item#IDCartDetail span.remove-selection {
  font-size: 12px;
  cursor: pointer;
  color: #FF385C;
  font-weight: 500;
  margin-top: 10px;
}
.shop-details .shop-details-item#IDCartDetail .shop-details-text {
  color: #000000;
}
.shop-details .shop-details-item#IDCartDetail .shop-details-text.total-cost-details {
  font-size: 16px;
  margin: 0 45px 0 0;
}
.shop-details .shop-details-content {
  padding: 25px 50px;
  border-radius: 4px;
}
.shop-details .shop-details-content .center-content .shop-details-item .shop-details-item-content {
  width: 50%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.shop-details .shop-details-content .center-content .shop-details-item .shop-details-item-content .shop-details-text.has-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.shop-details .shop-details-content .center-content .shop-details-headline {
  font-size: 30px;
  color: #005a9d;
  letter-spacing: 2.5px;
  font-family: "Airbnb Cereal", sans-serif;
  text-transform: uppercase;
}
.shop-details .shop-details-content .center-content .shop-details-event-headline {
  color: #222;
  margin-bottom: 8px;
  font-weight: 500;
}
.shop-details .shop-details-content .center-content .shop-details-event-headline {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .shop-details .shop-details-content .center-content .shop-details-event-headline {
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .shop-details .shop-details-content .center-content .shop-details-event-headline {
    font-size: 24px;
  }
}
.shop-details .shop-details-content .center-content .shop-details-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  max-width: 50%;
  font-weight: 500;
}
.shop-details .shop-details-content .center-content .shop-details-total {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .shop-details .shop-details-content .center-content .shop-details-total {
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .shop-details .shop-details-content .center-content .shop-details-total {
    font-size: 24px;
  }
}
.shop-details .shop-details-content .checkout-button {
  width: 100%;
  max-width: 235px;
}

.shop-timer {
  float: right;
}

.shop-filter {
  padding: 50px 20px 0;
}
.shop-filter .center-content .shop-filter-content {
  position: relative;
}
.shop-filter .center-content .shop-filter-content .shop-filter-headline {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  color: #222;
  margin: 0 0 24px;
}
.shop-filter .center-content .shop-filter-content input[type=text] {
  display: block;
  width: 100%;
  color: #666666;
  background-color: #ffffff;
  font-size: 16px;
  border: 1px solid rgba(34, 34, 34, 0.5);
  border-radius: 500px;
  padding: 0 10px;
  line-height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.shop-filter .center-content .shop-filter-content .clear-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
.shop-filter .center-content .shop-filter-content .clear-btn:after {
  content: "+";
  font-family: "FontAwesome";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.shop-form .shop-form-label {
  display: block;
  margin: 0 0 10px;
  position: relative;
  color: #000000;
}
.shop-form .shop-form-row {
  position: relative;
  margin: 0 0 30px 0;
}
.shop-form .shop-form-row.radio-btn-group {
  border: 1px solid #222;
  border-radius: 4px;
  /*margin: 0 0 30px 0;*/
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  padding: 0 10px 0 10px;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row:last-child {
  border: none;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row input[type=radio] + .radio-btn-label {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #222;
  border-radius: 50%;
  margin: 0 15px 0 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row input[type=radio] + .radio-btn-label:after {
  position: absolute;
  display: none;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FF385C;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row input[type=radio]:checked + .radio-btn-label {
  border: 1px solid #222;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row input[type=radio]:checked + .radio-btn-label:after {
  display: block;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row .radio-btn-copy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #222;
  width: 100%;
  padding: 15px 0;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row.is-disabled input[type=radio] + .radio-btn-label {
  opacity: 0.4;
}
.shop-form .shop-form-row.radio-btn-group .shop-radio-btn-row.is-disabled .radio-btn-copy {
  opacity: 0.4;
}
.shop-form .shop-form-row input[type=text] {
  width: 100%;
  color: #222;
  background-color: #fff;
  font-size: 14px;
  border: 1px solid #222;
  border-radius: 3px;
  padding: 15px 10px;
  line-height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.shop-form .shop-form-row textarea {
  width: 100%;
  color: #222;
  background-color: #fff;
  font-size: 14px;
  border: 1px solid #222;
  border-radius: 3px;
  padding: 5px 10px;
  line-height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.shop-form .shop-form-row select {
  display: none;
}
.shop-form .shop-form-row .dropdown-content.select-dropdown {
  position: absolute;
  top: initial !important;
}
.shop-form .shop-form-row.shop-text-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}
.shop-form .shop-form-row.shop-text-row .shop-total-text {
  font-size: 14px;
  color: #222;
  font-weight: 500;
}
.shop-form-row.shop-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.assets-form {
  position: relative;
  padding: 50px 0;
}
.assets-form .center-content {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}
.assets-form h5, .assets-form .form-section-title {
  color: #222;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.assets-form h5, .assets-form .form-section-title {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .assets-form h5, .assets-form .form-section-title {
    font-size: calc(16px + 0 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .assets-form h5, .assets-form .form-section-title {
    font-size: 16px;
  }
}
.assets-form .single-form-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.assets-form .single-form-section .single-form-section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.assets-form .single-form-section .single-form-section-row .single-form-section-box {
  width: 48%;
  position: relative;
}
.assets-form .single-form-section .single-form-section-row .single-form-section-box .single-input {
  width: 100%;
}
.assets-form .single-form-section .single-form-section-row .single-form-section-box .single-input label {
  font-size: 14px;
  font-weight: 400;
}
.assets-form .single-form-section .single-form-section-row .single-form-section-box .reg-form-error {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FF385C;
  font-size: 11px;
}
.assets-form .single-form-section .single-input {
  position: relative;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 20px;
}
.assets-form .single-form-section .single-input .reg-form-error {
  position: absolute;
  bottom: -15px;
  left: 0;
  color: #FF385C;
  font-size: 11px;
}
.assets-form .single-form-section .single-input .note {
  font-size: 11px;
  font-style: italic;
  display: block;
}
@media (max-width: 767px) {
  .assets-form .single-form-section .single-input {
    width: 100%;
    margin-right: 0;
  }
}
.assets-form .single-form-section .single-input.full {
  width: 100%;
  margin-right: 0;
}
.assets-form .single-form-section .single-input:nth-child(3n) {
  margin-right: 0;
}
.assets-form .single-form-section .single-input label {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  letter-spacing: 0.75px;
  margin: 0 0 10px;
  display: flex;
  min-height: 16px;
  align-items: flex-end;
}
.assets-form .single-form-section .single-input .select-wrapper {
  position: relative;
  width: 100%;
  background: #fff;
}
.assets-form .single-form-section .single-input .select-wrapper ul.select-dropdown {
  background: #fff;
  border: 1px solid #222;
}
.assets-form .single-form-section .single-input select, .assets-form .single-form-section .single-input input.select-dropdown {
  border: 1px solid #222;
  border-radius: 4px;
  font-size: 14px;
  color: #222;
  padding: 0 10px;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  width: 100%;
  display: block;
  background: #fff;
}
.assets-form .single-form-section .single-input input[type=text], .assets-form .single-form-section .single-input input[type=password], .assets-form .single-form-section .single-input input[type=tel] {
  border: 1px solid rgba(34, 34, 34, 0.5);
  border-radius: 500px;
  font-size: 16px;
  color: #222;
  padding: 0 10px;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  width: 100%;
}
.assets-form .single-form-section .single-input textarea {
  border: 1px solid;
  border-radius: 4px;
  font-size: 16px;
  color: #000000;
  padding: 5px 10px;
  box-sizing: border-box;
  height: 40px;
  line-height: 25px;
  width: 100%;
  height: 4em;
  overflow: hidden;
}
.assets-form .single-form-section .single-input.radio {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.assets-form .single-form-section .single-input input[type=radio] {
  display: none;
}
.assets-form .single-form-section .single-input input[type=radio] + .radio-btn-label {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #222;
  border-radius: 50%;
  margin: 0 15px 0 0;
  transition: all 0.5s ease;
  cursor: pointer;
}
.assets-form .single-form-section .single-input input[type=radio] + .radio-btn-label:after {
  position: absolute;
  display: none;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FF385C;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.assets-form .single-form-section .single-input input[type=radio]:checked + .radio-btn-label {
  border-color: #222;
}
.assets-form .single-form-section .single-input input[type=radio]:checked + .radio-btn-label:after {
  display: block;
}
.assets-form .single-form-section .single-input .radio-btn-copy {
  display: inline-block;
  vertical-align: top;
  padding: 0 0 0 0;
  margin-left: 0;
  margin-top: 10px;
}
.assets-form .single-form-section .single-input .radio-btn-copy .radio-btn-sub-copy {
  font-size: 11px;
  display: block;
  color: #999999;
}
.assets-form .single-form-section .single-input .field-validation-error {
  color: #FF385C !important;
}
.assets-form .single-form-section .single-input .date-time-boxes {
  display: flex !important;
  justify-content: space-between !important;
}
.assets-form .single-form-section .single-input .date-time-boxes .datepicker-box, .assets-form .single-form-section .single-input .date-time-boxes .timepicker-box {
  width: 48% !important;
}
.assets-form .assets-form-section-content {
  position: relative;
  margin: 20px 0;
}
.assets-form .assets-form-section-content.alt {
  padding: 30px;
  /*background: $formAltBg;*/
}
.assets-form .assets-form-section-content hr {
  border: 0;
  clear: both;
  display: block;
  width: 100%;
  background-color: #3ec4df;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shop-icon.has-info-icon {
  padding: 0 0 0 10px;
  color: #0071C5;
}

.shop-link {
  font-size: 14px;
  font-weight: bold;
  line-height: 12px;
  position: relative;
}
.shop-link.back-link {
  color: #FF385C;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
.shop-link.back-link:before {
  content: "\f104";
  font-family: "FontAwesome";
  margin-right: 10px;
}
.shop-link.purchase-link {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  text-transform: none;
  font-family: "Airbnb Cereal", sans-serif;
  border-radius: 8px;
  border: 1px solid rgba(34, 34, 34, 0.3);
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  padding: 16px 24px;
  transition: all 0.33s ease;
  display: inline-block;
}
.shop-link.purchase-link:hover {
  background-color: #FF385C;
  border-color: #FF385C;
}
.shop-link.purchase-link:after {
  display: none;
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 32px;
  margin: 0 0 0 10px;
}
.shop-link.show-hide-details {
  color: #ffffff;
  margin-left: 20px;
}
.shop-link.remove-selection {
  font-size: 12px;
  cursor: pointer;
  color: #FF385C;
}

.shop-text {
  display: block;
}
.shop-text.shop-headline {
  font-size: 30px;
}
.shop-text.shop-headline.blue-headline {
  color: #3EC4DF;
}
.shop-text.category-headline {
  font-size: 30px;
  color: #3ec4df;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Airbnb Cereal", sans-serif;
}
.shop-text.lrg-shop-text {
  font-size: 18px;
}
.shop-text.med-shop-text {
  font-size: 16px;
}
.shop-text.sm-shop-text {
  font-size: 14px;
}
.shop-text.blue-text {
  color: #3EC4DF;
}
.shop-text.white-text {
  color: #ffffff;
}
.shop-text.black-text {
  color: #000000;
}
.shop-text.blue-text {
  color: #0071C5;
}
.shop-text.med-grey-text {
  color: #666666;
}
.shop-text .center-content {
  padding: 15px;
}
.shop-text .center-content.contrast-bg {
  margin-top: 50px;
}
.shop-text.has-info:after {
  content: "\f0da";
  margin-left: 10px;
  color: #0071C5;
  font-family: "FontAwesome";
}
.shop-text.has-info.is-expanded:after {
  content: "\f0d7";
}
.shop-text.iframe-text .center-content {
  padding: 26px 48px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.timer-header .shop-timer {
  display: none;
}
.timer-header.has-timer .shop-timer {
  display: block;
}

.shop-msg {
  font-family: "Airbnb Cereal", sans-serif;
  font-weight: bold;
}
.shop-msg.availability-msg {
  font-size: 14px;
  color: #FF385C;
  position: relative;
  display: block;
}
.shop-msg.availability-msg:before {
  font-size: 12px;
  font-family: "FontAwesome";
  content: "\f071";
  /*position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);*/
}
.shop-msg.quantity-msg {
  display: inline-block;
  font-size: 12px;
  color: #3ec4df;
  font-weight: bold;
  margin-left: 20px;
}

.selected-category {
  padding: 50px 20px;
}
.selected-category .center-content .selected-category-content {
  border: none;
  border-radius: 4px;
}
.selected-category .center-content .selected-category-content .selected-category-item {
  padding: 20px 40px 20px 40px;
}
.selected-category .center-content .selected-category-content .selected-category-item.headline-item {
  border-radius: 8px;
  background: rgba(221, 221, 221, 0.3);
  margin-bottom: 24px;
}
.selected-category .center-content .selected-category-content .selected-category-item.headline-item .category-headline {
  font-size: 20px;
  color: #222;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Airbnb Cereal", sans-serif;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item {
  width: 100%;
}
@media (max-width: 1023px) {
  .selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item {
    display: block;
  }
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span {
  display: block;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-date {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  display: block;
  margin: 0 0 8px;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-name {
  font-size: 14px;
  color: #222;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-id {
  font-size: 14px;
  color: #222;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-id.has-info:after {
  content: "\f0da";
  margin-left: 10px;
  color: #3ec4df;
  font-family: "FontAwesome";
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-id.has-info.is-expanded:after {
  content: "\f0d7";
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-description {
  display: none;
  font-size: 14px;
  color: #222;
  width: 100%;
  max-width: 600px;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-description.is-visible {
  display: block;
}
@media (max-width: 1023px) {
  .selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-description {
    max-width: 100%;
  }
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.event-price {
  font-size: 14px;
  color: #333333;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.availability-msg {
  font-size: 14px;
  color: #FF385C;
  position: relative;
  font-weight: bold;
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item span.availability-msg:before {
  font-size: 12px;
  font-family: "FontAwesome";
  content: "\f071";
}
.selected-category .center-content .selected-category-content .selected-category-item.event-item .inner-event-item .event-purchase-link {
  margin: 0 0 10px;
}
.selected-category .center-content .selected-category-content .selected-category-event-item {
  padding: 20px 40px;
  border-bottom: 1px solid #cccccc;
}
.selected-category .center-content .selected-category-content .selected-category-event-item.shop-form-item {
  border-bottom: none;
}
.selected-category .center-content .selected-category-content .selected-category-event-item .inner-selected-category-item {
  padding: 20px 40px;
  border-bottom: 1px solid #cccccc;
}
.selected-category .center-content .selected-category-content .selected-category-event-item .inner-selected-category-item:last-child {
  border: none;
  border-left: 1px solid #cccccc;
}
.selected-category .center-content .selected-category-content .selected-category-event-item .inner-selected-category-item .has-info .has-info-icon {
  display: inline-block;
}
.selected-category .center-content .selected-category-content .selected-category-event-item .inner-selected-category-item .has-info-icon {
  display: none;
}
.selected-category .center-content .selected-category-content .selected-category-event-item .inner-selected-category-item.selected-cart-item {
  padding: 35px 40px;
  border-bottom: none;
}
.selected-category .center-content .selected-category-content .selected-category-event-item #MessageError {
  background-color: #FF385C;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.selected-category .center-content .selected-category-content .selected-category-event-item #MessageError:before {
  content: "\f06a";
  font-family: "FontAwesome";
  font-size: 20px;
  color: #ffffff;
  margin-right: 10px;
}
.selected-category .center-content .selected-category-content .selected-category-event-item #MessageError.is-visible {
  display: block;
}
.selected-category .center-content .selected-category-content .selected-category-event-item #MessageError .close-error {
  position: absolute;
  top: -5px;
  right: 5px;
  transform: rotate(45deg);
  font-size: 30px;
  cursor: pointer;
}

#frmCompleteNames .selected-category .center-content .selected-category-content .selected-category-item.headline-item {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}
#frmCompleteNames .selected-category .center-content .selected-category-content .grid .grid-item {
  border: none;
  background-color: transparent !important;
}
#frmCompleteNames .selected-category .center-content .selected-category-content .grid .grid-item .selected-category-item {
  padding: 0 40px;
}

.cart {
  padding: 50px 20px;
}
.cart .center-content .cart-content {
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cart .center-content .cart-content .cart-content-item.cart-headline-item {
  background-color: rgba(221, 221, 221, 0.5);
  padding: 20px 40px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.cart .center-content .cart-content .cart-content-item.cart-headline-item .cart-headline-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  color: #FF385C;
  text-decoration: none;
}
.cart .center-content .cart-content .cart-content-item.cart-headline-item .cart-headline-link:before {
  content: "\f104";
  font-family: "FontAwesome";
  margin-right: 10px;
}
.cart .center-content .cart-content .cart-content-item.cart-headline-item .cart-headline-text {
  font-size: 20px;
  color: #222222;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .cart .center-content .cart-content .cart-content-item .inner-cart-content {
    display: block;
  }
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item {
  flex: 1 0 50%;
  padding: 20px 40px;
}
@media (max-width: 1023px) {
  .cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item {
    flex: unset;
    width: 100%;
  }
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item:last-child {
  border-left: 1px solid rgba(221, 221, 221, 0.5);
}
@media (max-width: 1023px) {
  .cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item:last-child {
    border-left: none;
  }
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item .cart-content-link {
  color: #FF385C;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  margin: 0 0 16px;
  display: block;
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item .cart-content-link:before {
  content: "\f104";
  font-family: "FontAwesome";
  margin-right: 10px;
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item span.cart-content-date {
  color: #222;
  font-size: 16px;
  display: block;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.4;
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item span.cart-content-location {
  color: #222;
  font-size: 14px;
  display: block;
  line-height: 1.2;
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item span.cart-content-code {
  font-size: 14px;
  display: block;
  color: #222;
  line-height: 1.2;
}
.cart .center-content .cart-content .cart-content-item .inner-cart-content .inner-cart-content-item span.cart-content-description {
  font-size: 14px;
  display: block;
  color: #999999;
}
.cart .center-content .cart-content .cart-content-item #MessageError {
  background-color: #ff0000;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.cart .center-content .cart-content .cart-content-item #MessageError:before {
  content: "\f06a";
  font-family: "FontAwesome";
  font-size: 20px;
  color: #ffffff;
  margin-right: 10px;
}
.cart .center-content .cart-content .cart-content-item #MessageError.is-visible {
  display: block;
}
.cart .center-content .cart-content .cart-content-item #MessageError .close-error {
  position: absolute;
  top: -5px;
  right: 5px;
  transform: rotate(45deg);
  font-size: 30px;
  cursor: pointer;
}

.footer {
  padding: 64px 0;
  position: relative;
  border-top: 1px solid #F7F7F7;
  background: #F7F7F7;
}
.footer-content {
  position: relative;
  max-width: 1200px;
  padding: 0;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .footer-content {
    padding: 0 24px;
  }
}
.footer-content .footer-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  list-style: none;
}
.footer-content .footer-links-item {
  position: relative;
  padding: 0 6px 0 5px;
  position: relative;
}
.footer-content .footer-links-item:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 60%;
  width: 1px;
  background: #767676;
}
.footer-content .footer-links-item:first-child {
  padding-left: 0;
}
.footer-content .footer-links-item:last-child {
  border-right: none;
}
.footer-content .footer-links-item:last-child:after {
  display: none;
}
.footer-content .footer-links-item a {
  font-size: 14px;
  line-height: 1.2;
  color: #767676;
  text-decoration: none;
  font-weight: 500;
}
.footer-content .footer-links-item a:hover {
  text-decoration: underline;
}
.footer-content p {
  font-size: 12px;
  color: #767676;
  line-height: 1.2;
  margin-bottom: 14px;
  margin-top: 0;
}
.footer-content p:last-child {
  margin-bottom: 0;
}

body.events-page .footer, body.allTickets-page .footer {
  border-top: 1px solid #F7F7F7;
  background: #F7F7F7;
}

.create-account-content-footer.footer {
  background-color: #f7f7f7;
  border-top: none;
}
.create-account-content-footer.footer .footer-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.create-account-content-footer.footer .footer-content .footer-links-item:after {
  background: #767676;
}
.create-account-content-footer.footer .footer-content .footer-links-item a {
  color: #767676;
  text-decoration: underline;
}
.create-account-content-footer.footer .footer-content p {
  color: #767676;
}

.shop-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  height: -webkit-fill-available; /* overrides vh on iOS to use visible height excluding bars */
}
.shop-modal.shop-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.shop-modal.shop-modal-overlay .shop-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 852px;
  padding: 35px 60px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 16px;
  max-height: 70%;
  overflow-y: auto;
  /*Checkbox with label - ADA compliance*/
}
@media (max-width: 767px) {
  .shop-modal.shop-modal-overlay .shop-modal-content {
    padding: 35px 25px;
    top: calc(50% + 40px);
    max-height: 75%;
  }
}
.shop-modal.shop-modal-overlay .shop-modal-content .close-modal {
  position: absolute;
  top: 0;
  right: 2.5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  font-size: 48px;
  line-height: 48px;
  cursor: pointer;
  color: #999999;
}
.shop-modal.shop-modal-overlay .shop-modal-content .shop-modal-headline {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.1;
  color: #222;
  margin: 0 0 24px 0;
  font-family: "Airbnb Cereal", sans-serif;
  font-weight: bold;
}
.shop-modal.shop-modal-overlay .shop-modal-content .shop-modal-copy {
  font-family: "Airbnb Cereal", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  margin: 0 0 24px 0;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row {
  width: 100%;
  margin-bottom: 24px;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  user-select: none;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox input[type=checkbox] {
  border: none;
  position: absolute;
  z-index: -1;
  height: 1px;
  top: 6px;
  left: 6px;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox input[type=checkbox]:checked ~ .checkbox-ui:after {
  content: "";
  background-color: #FF385C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  image-rendering: auto;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox input[type=checkbox]:focus-visible {
  outline: none !important;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox input[type=checkbox]:focus-visible ~ .checkbox-ui {
  outline: 1px dashed #000000;
  outline-offset: 3px;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox .checkbox-ui {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 5px 16px 0 0;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #222;
  content: "";
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox .checkbox-copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  position: relative;
  display: inline-block;
  width: calc(100% - 48px);
  text-align: left;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .checkbox .checkbox-copy p {
  margin-bottom: 0 !important;
}
.shop-modal.shop-modal-overlay .shop-modal-content .checkbox-row .reg-form-error {
  text-align: left;
  padding-left: 40px;
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns {
  display: flex;
  justify-content: center;
  column-gap: 34px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .shop-modal.shop-modal-overlay .shop-modal-content .modal-btns {
    flex-direction: column;
    row-gap: 24px;
    margin-top: 34px;
  }
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn {
  padding: 16px 24px;
  border-radius: 8px;
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn.no-btn {
  max-width: 125px;
  background: rgba(34, 34, 34, 0.9);
  margin: 0;
}
@media (max-width: 767px) {
  .shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn.no-btn {
    max-width: 100%;
  }
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn.no-btn:hover {
  background: #3ec4df;
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn.yes-btn {
  max-width: 186px;
  background-color: #FF385C;
  margin: 0;
}
@media (max-width: 767px) {
  .shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn.yes-btn {
    max-width: 100%;
  }
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn.yes-btn:hover {
  background-color: #222;
}
.shop-modal.shop-modal-overlay .shop-modal-content .modal-btns .modal-btn:focus-within {
  outline: 1px dashed #000000;
  outline-offset: 4px;
}
.shop-modal[data-modal-type=alert] .modal-btns.alert-modal-btns {
  display: block;
}
.shop-modal[data-modal-type=alert] .modal-btns.confirm-modal-btns {
  display: none;
}
.shop-modal[data-modal-type=confirm] .modal-btns.alert-modal-btns {
  display: none;
}
.shop-modal[data-modal-type=confirm] .modal-btns.confirm-modal-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.shop-modal.is-visible {
  -webkit-animation: fadeIn 1s 1 forwards;
  -moz-animation: fadeIn 1s 1 forwards;
  -ms-animation: fadeIn 1s 1 forwards;
  -o-animation: fadeIn 1s 1 forwards;
  animation: fadeIn 1s 1 forwards;
}

.shop-iframe {
  padding: 0 20px 50px;
}
.shop-iframe .center-content {
  border: 2px solid #ccc;
  margin: 0 auto;
  border-radius: 4px;
}

.shop-iframe-timer {
  float: right;
}

.ic-Spin-cycle--classic {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}
.ic-Spin-cycle--classic > svg {
  display: block;
  overflow: visible;
}
.ic-Spin-cycle--classic > svg > * {
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  animation-iteration-count: infinite;
}

.ic-Spin-cycle--classic {
  margin: 0px 0px;
  width: 28px;
  height: 28px;
}
@keyframes yellow {
  from {
    fill: rgb(255, 255, 255);
    transform: scale(1);
  }
  to {
    fill: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}
.ic-Spin-cycle--classic > svg {
  width: 28px;
  height: 28px;
}
.ic-Spin-cycle--classic > svg > * {
  fill: rgba(255, 255, 255, 0.5);
  animation-name: yellow;
  animation-duration: 0.8s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(1) {
  animation-delay: 0.1s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(2) {
  animation-delay: 0.2s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(3) {
  animation-delay: 0.3s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(4) {
  animation-delay: 0.4s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(5) {
  animation-delay: 0.5s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(6) {
  animation-delay: 0.6s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(7) {
  animation-delay: 0.7s;
}
.ic-Spin-cycle--classic > svg > *:nth-of-type(8) {
  animation-delay: 0.8s;
}

.tooltip {
  position: relative;
}
.tooltip .tooltip-item {
  border-radius: 4px;
  display: none !important;
  position: absolute;
  background-color: #3ec4df;
  color: #ffffff;
  width: 500px;
  bottom: 45px;
  left: -243px;
  padding: 25px;
  transform: translateY(-50px);
  transition: all 0.25s ease;
}
.tooltip .tooltip-item:after {
  content: "\f0d7";
  font-family: "FontAwesome";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  font-size: 90px;
  line-height: 0;
  color: #3ec4df;
}
.tooltip .tooltip-item .tooltip-copy {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 18px;
  display: block;
  margin: 0 0 20px 0;
  font-family: "Intel Clear";
}
.tooltip .tooltip-item .tooltip-copy:last-child {
  margin: 0;
}
.tooltip .tooltip-item .tooltip-copy.bold-text {
  font-weight: bold;
}
.tooltip .tooltip-item .tooltip-copy img {
  width: 100%;
}
.tooltip:hover .tooltip-item {
  display: block !important;
  transform: translateY(0);
  -webkit-animation: fadeTooltip .5s 1 forwards;
  -moz-animation: fadeTooltip .5s 1 forwards;
  -ms-animation: fadeTooltip .5s 1 forwards;
  -o-animation: fadeTooltip .5s 1 forwards;
  animation: fadeTooltip .5s 1 forwards;
}

.shop-menu-language {
  display: flex;
  padding-top: 17px;
}
.shop-menu-language select {
  display: block;
  width: 100%;
  color: black;
  background-color: white;
  font-size: 16px;
  border-radius: 3px;
  padding: 0 25px 0 10px;
  line-height: 45px;
  box-sizing: border-box;
  height: 45px;
  position: relative;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABxSURBVGhD7c8xCoBADETRLa29iof3eJoU0wiirsFN5D+YduA3AAAAAADwO7NtCZ5/fm6yrbYtaP7ln0NExQyNkLcxKSKkNyZVhDyNSRkhd2NSR8hVTIkIOYspFSHHmJIRopjSEeIB5SMAAAAAADW0tgMDBmzDpUF0VAAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.shop-menu-language select option {
  font-family: "Airbnb Cereal", sans-serif;
  font-size: 14px !important;
}
.shop-menu-language select option:hover {
  background-color: white;
}

.dashboard-page {
  position: relative;
  padding: 67px 0 31px;
}
@media (max-width: 767px) {
  .dashboard-page {
    padding: 48px 0 30px;
  }
}
.dashboard-page .center-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.dashboard-page .center-content .page-header {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: #222;
  margin-bottom: 24px;
}
.dashboard-page .center-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .dashboard-page .center-content p {
    margin-bottom: 32px;
  }
}
.dashboard-page .center-content .accordion {
  margin-bottom: 30px;
}
.dashboard-page .center-content .accordion-header {
  background-color: #FF385C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.dashboard-page .center-content .accordion-header:focus, .dashboard-page .center-content .accordion-header:focus-within {
  outline: 1px dashed #000000;
  outline-offset: 4px;
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-header {
    padding: 15px;
  }
}
.dashboard-page .center-content .accordion-header h2 {
  margin: 0;
  font-size: clamp(18px, 4.3vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
}
.dashboard-page .center-content .accordion-header .toggle-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: clamp(14px, 3.3vw, 16px);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.dashboard-page .center-content .accordion-header .toggle-btn i {
  padding-left: 10px;
  font-size: 1.25rem;
}
.dashboard-page .center-content .accordion-content {
  border: none;
  padding: 28px 15px 0;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.dashboard-page .center-content .accordion-content .responsive-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table {
    table-layout: auto;
  }
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table colgroup {
    display: none;
  }
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table tr {
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000000;
  }
}
.dashboard-page .center-content .accordion-content .responsive-table th {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
  padding: 0 10px 19px;
  border-bottom: 1px solid #000000;
}
.dashboard-page .center-content .accordion-content .responsive-table td {
  text-align: left;
  padding: 22px 10px;
  border-bottom: 1px solid #000000;
  font-size: clamp(14px, 3.3vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
.dashboard-page .center-content .accordion-content .responsive-table td[data-label="Portal:"] .portal-content i {
  padding-right: 6px;
}
.dashboard-page .center-content .accordion-content .responsive-table td[data-label="Portal:"] .portal-content .new {
  font-size: clamp(14px, 3.3vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #FF385C;
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table td[data-label="Portal:"] .portal-content .new {
    line-height: 1.3;
  }
}
.dashboard-page .center-content .accordion-content .responsive-table td[data-label="URL:"] {
  text-align: center;
}
.dashboard-page .center-content .accordion-content .responsive-table td[data-label="URL:"] .visit-link {
  font-size: clamp(14px, 3.3vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  cursor: pointer;
  color: #222;
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table td[data-label="URL:"] .visit-link {
    line-height: 1.3;
  }
}
.dashboard-page .center-content .accordion-content .responsive-table td[data-label="URL:"] .visit-link:focus, .dashboard-page .center-content .accordion-content .responsive-table td[data-label="URL:"] .visit-link:focus-within {
  outline: 1px dashed #000000;
  outline-offset: 4px;
}
@media (max-width: 767px) {
  .dashboard-page .center-content .accordion-content .responsive-table td {
    display: flex;
    justify-content: space-between;
    line-height: 1.3;
    padding: 8px 10px;
    border: none;
  }
  .dashboard-page .center-content .accordion-content .responsive-table td:before {
    content: attr(data-label);
    font-weight: bold;
  }
}
.dashboard-page .center-content .accordion:not(.collapsed) .accordion-content {
  max-height: 1000px;
  opacity: 1;
}
.dashboard-page .center-content .all-events-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.dashboard-page .center-content .all-events-table .table {
  table-layout: fixed;
  border-spacing: 0;
  width: 1041px;
  max-width: 1041px;
  min-width: 1041px;
  border: 1px solid #767676;
  border-collapse: collapse;
}
.dashboard-page .center-content .all-events-table .table th,
.dashboard-page .center-content .all-events-table .table td {
  white-space: wrap;
}
.dashboard-page .center-content .all-events-table .table th {
  background-color: #F7F7F7;
  padding: 13px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #000000;
  border: 1px solid #767676;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
  min-width: 10%;
  max-width: 10%;
  word-wrap: normal;
  white-space: normal;
}
.dashboard-page .center-content .all-events-table .table th:nth-child(3), .dashboard-page .center-content .all-events-table .table th:nth-child(4), .dashboard-page .center-content .all-events-table .table th:nth-child(7) {
  width: 7%;
  min-width: 7%;
  max-width: 7%;
}
.dashboard-page .center-content .all-events-table .table th:nth-child(8) {
  width: 12%;
  min-width: 12%;
  max-width: 12%;
}
.dashboard-page .center-content .all-events-table .table td {
  background-color: #FFFFFF;
  border: 1px solid #767676;
  color: #000000;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 20px 5px;
  display: table-cell;
  vertical-align: middle;
}
.dashboard-page .center-content .all-events-table .table td .table-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.dashboard-page .center-content .all-events-table .table td .table-btns a {
  text-decoration: none;
  text-align: center;
  font-size: 0.75rem;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
  outline: none;
}
.dashboard-page .center-content .all-events-table .table td .table-btns a .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-bottom: 4px;
}
.dashboard-page .center-content .all-events-table .table td .table-btns a:focus, .dashboard-page .center-content .all-events-table .table td .table-btns a:focus-within {
  outline: 1px dashed #000000;
  outline-offset: 2px;
}
.dashboard-page .center-content .all-events-table .table td .table-btns a:hover {
  color: #FF385C;
}

.has-info + .hidden-text {
  height: 0;
  margin: 0;
  overflow: hidden;
}
.has-info + .hidden-text.is-visible {
  height: auto;
  margin-bottom: 5px;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@-webkit-keyframes fadeTooltip {
  0% {
    opacity: 0;
    z-index: 1;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes fadeTooltip {
  0% {
    opacity: 0;
    z-index: 1;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
  }
}
@-ms-keyframes fadeTooltip {
  0% {
    opacity: 0;
    z-index: 1;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeTooltip {
  0% {
    opacity: 0;
    z-index: 1;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
  }
}
@keyframes fadeTooltip {
  0% {
    opacity: 0;
    z-index: 1;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
  }
}
