.exp__button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.exp__cancel-icon-component {
  height: 20px;
}

.exp__cancel-icon-wrapper {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 10%;
}

.exp__book-now-btn {
  background: #4a90e2;
  width: 100%;
  max-width: 220px;
  margin: 30px 0 15px 0;
  border: none;
  border-radius: 3px;
  color: white;
  text-align: center;
  padding: 7px;
  font-size: 1rem;
}

.exp__close-modal-btn {
  border: none;
  background: none;
}

button.exp__dd-btn {
  display: block;
  position: relative;
  padding: 0.7em 0.8em;
  width: 100%;
  font: inherit;
  font-size: 0.725em;
  background: #fff;
  background: var(--experiences-primary-background);
  border-radius: 3px;
  color: #000;
  color: var(--experiences-primary-action);
  text-align: left;
  cursor: pointer;
  border: solid 1px #ccc;
  box-sizing: border-box;
  margin: 1em 0;
}

button.exp__dd-btn:disabled {
  opacity: 0.8;
  cursor: default;
}

button.exp__dd-btn:after {
  display: block;
  content: "";
  position: absolute;
  right: 0.525em;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-width: 0.3125em 0.3125em 0 0.3125em;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent;
}

button.exp__tslots-timeslot-btn,
button.exp__quant-btn,
button.exp__book-btn {
  background: #505dbf;
  background: var(--experiences-primary-action);
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: block;
  font: inherit;
  min-height: 2.25em;
  padding: 0 1.5em;
}

button.exp__tslots-timeslot-btn {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 9rem;
}

button.exp__book-btn {
  padding: 0.75em 1em;
  width: 100%;
  height: auto;
  font: inherit;
  font-size: 0.875em;
}

button.exp__book-btn:disabled,
button.exp__tslots-timeslot-btn:disabled {
  background: rgba(80, 93, 191, 0.5);
  background: var(--experiences-disabled-background, rgba(80, 93, 191, 0.5));
  color: #fff;
  color: var(--experiences-disabled-text, #fff);
  cursor: default;
}

button.exp__book-btn.secondary:disabled,
button.exp__tslots-timeslot-btn.secondary:disabled {
  background: #ccc;
  background: var(--experiences-disabled-background, #ccc);
  color: #888;
  color: var(--experiences-disabled-text, #888);
  cursor: default;
}

button.exp__book-btn.secondary {
  background: #f5f5f5;
  background: var(--experiences-secondary-background);
  color: #000;
}

button.exp__book-btn.exp__full-width {
  width: 100%;
}

.exp__dd-timeslots,
.exp__dd-quantity {
  width: 100%;
  min-width: 17em;
  position: absolute;
  padding: 0.35em;
  background: #fff;
  background: var(--experiences-primary-background);
  border: solid 1px rgba(200, 200, 200, 0.5);
  border-radius: 4px;
  box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.08);
  z-index: 4;
  display: none;
  transition: all 250ms ease;
  pointer-events: none;
  box-sizing: border-box;
}

.exp__dd-timeslots:before,
.exp__dd-quantity:before {
  position: absolute;
  left: 50%;
  margin-left: -8px;
  bottom: 100%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: rgba(200, 200, 200, 0.5) transparent;
}

.exp__dd-timeslots:after,
.exp__dd-quantity:after {
  position: absolute;
  left: 50%;
  margin-left: -7px;
  bottom: 100%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 7px 7px 7px;
  border-style: solid;
  border-color: #fff transparent;
  border-color: var(--experiences-primary-background) transparent;
}

.exp__dd-timeslots.exp__is-active,
.exp__dd-quantity.exp__is-active {
  pointer-events: all;
  display: block;
}

.exp__dd-timeslots > *,
.exp__dd-quantity > * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.exp__cal {
  background: #f5f5f5;
  background: var(--experiences-secondary-background);
  border-radius: 3px;
  text-align: center;
}

.exp__cal header {
  display: flex;
  padding: 0 0.5em;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  min-height: 2.5em;
  font-weight: 600;
}

.exp__cal footer {
  padding: 1.5em 1em 1.125em;
  font-size: 0.875em;
}

button.exp__cal-prev-week-btn,
button.exp__cal-next-week-btn {
  flex: 0;
  cursor: pointer;
  padding: 1rem 1.5rem;
  font: inherit;
  background: transparent;
  border: 0;
  min-width: 40px;
  min-height: 40px;
}

button.exp__cal-prev-week-btn:disabled,
button.exp__cal-next-week-btn:disabled {
  cursor: default;
}

.exp__cal-month-name {
  flex: 1;
  width: 100%;
}

.exp__cal-weekdays {
  display: flex;
  justify-content: space-between;
}

.exp__cal-weekday {
  font-size: 0.875em;
  font-weight: bold;
  width: 14.2857142857143%;
}

.exp__cal-weekday-name,
.exp__cal-weekday-date {
  display: block;
  padding: 0.75em 0;
}

.exp__cal-weekday-date {
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}

.exp__cal-weekday-date > span {
  position: relative;
  z-index: 2;
}

.exp__cal-weekday-date:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ccc;
  width: 74%;
  padding-bottom: 74%;
  content: "";
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: all 250ms ease;
  z-index: 0;
}

.exp__cal-weekday-date:hover:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.exp__cal-weekday.exp__cal-weekday-empty {
  opacity: 0.4;
}

.exp__cal-weekday.exp__cal-weekday-empty.exp__is-active {
  opacity: 1;
}

.exp__cal-weekday.exp__is-active .exp__cal-weekday-date {
  color: #fff;
  color: var(--experiences-primary-background);
}

.exp__cal-weekday.exp__cal-weekday-empty .exp__cal-weekday-date {
  cursor: default;
}

.exp__cal-weekday.exp__cal-weekday-empty .exp__cal-weekday-date:before {
  display: none;
}

.exp__cal-weekday.exp__is-active .exp__cal-weekday-date:before {
  transform: translate(-50%, -50%) scale(1);
  background: #505dbf;
  background: var(--experiences-primary-action);
  opacity: 1;
}

.exp__tslots {
  margin-top: 0.5em;
  max-height: 11em;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.exp__tslots-timeslot {
  display: flex;
  flex-wrap: wrap;
  padding: .5em;
  font-size: 0.875em;
  border-top: solid 1px rgba(200, 200, 200, 0.5);
  align-items: center;
  justify-content: flex-start;
}

.exp__tslots-timeslot:first-child {
  border-top: 0;
}

.exp__tslots-timeslot-time {
  color: #505dbf;
  color: var(--experiences-primary-action);
}

.exp__tslots-timeslot-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exp__tslots-timeslot:hover {
  background: #f5f5f5;
  background: var(--experiences-secondary-background);
}

.exp__tslots-timeslot:hover .exp__tslots-timeslot-units {
  display: none;
}

.exp__tslots-timeslot-sold-out .exp__tslots-timeslot-time {
  color: #999;
}

.exp__tslots-timeslot-sold-out .exp__tslots-timeslot-units {
  display: block !important;
  color: red;
}

.exp__tslots-timeslot-units {
  display: block !important;
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-toggle,
.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-toggle-active {
  display: flex;
  align-items: center;
  min-height: 1.5em;
  border: none;
  background: transparent;
  margin-right: .5em;
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-toggle-active {
  transform: rotateX(180deg);
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-toggle path,
.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-toggle-active path {
  fill: #888;
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence,
.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-active {
  display: none;
  width: 100%;
  padding-top: .5rem;
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-active {
  display: block;
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-list {
  width: 100%;
  opacity: .4;
}

.exp__tslots-timeslot .exp__tslots-timeslot-occurrence-active h4 {
  font-size: inherit;
  margin-bottom: .5rem;
}

.exp__quant {
  display: block;
}

.exp__quant-variant {
  border-bottom: solid 1px #dfe3e8;
  padding: 0.35em;
  /* For Pol and his long variant names */
  min-height: 3.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exp__quant-variant-name {
  width: 34%;
  /* For Pol and his long variant names */
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.exp__quant-variant-total {
  width: 30%;
  font-weight: 600;
}

.exp__quant-controls {
  width: 35%;
  display: flex;
  align-items: center;
}

.exp__quant-add-button {
  width: 35%;
  height: 2.36em;
  box-shadow: 0 1px 0 rgba(22, 29, 37, 0.05);
  border-radius: 3px;
  border: 1px solid #c4cdd5;
  background-image: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);

  color: #212b36;
  font-size: 0.875em;
  font-weight: 400;
}

.exp__quant-add-button:disabled {
  opacity: 0.5;
}

.exp__quant-footer {
  padding: 0.35em;
  min-height: 3.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exp__quant-footer .exp__quant-variant-name {
  font-weight: 600;
}

.exp__availability__text {
  margin: 1rem 0;
  width: 100%;
}

.exp__spinner__wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2em;
}

button.exp__quant-minus-btn,
button.exp__quant-plus-btn {
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  border: solid 1px #333;
  color: #333;
  border-radius: 50%;
  background: transparent;
  font: inherit;
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

button.exp__quant-minus-btn:disabled,
button.exp__quant-plus-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.exp__quant-amount {
  display: block;
  width: 3em;
  text-align: center;
  font-size: 0.875em;
  font-weight: bold;
}

button.exp__quant-btn {
  align-items: center;
  display: flex;
  font-size: 0.875em;
  justify-content: center;
  width: 35%;
}

button.exp__quant-btn:disabled {
  background: #ccc;
  cursor: default;
}

.exp__modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  /**
   * FIXME: This is *not* a perfect fix because different themes use different methods for
   * handling z-index for different elements on the page (top nav, social media links, etc).
   * In other words, there is not a single "catch-all" z-index value we can hard code here,
   * and the likely scenario would be handling z-index issues on a case by case basis.
   */
  z-index: 100000;
}

.exp__modal-content {
  padding: 2.5em;
  text-align: center;
  width: 90%;
  max-width: 35em;
  max-height: 88vh;
  overflow: hidden;
  border: #f5f5f5;
  border: 1px solid var(--experiences-secondary-background);
  background: #fff;
  background: var(--experiences-primary-background);
  border-radius: 0.5em;
  overflow-y: auto;
  position: relative;
}

.banner {
  background-color: #fbeae5;
  box-shadow: inset 0 3px 0 0 #de3618, inset 0 0 0 0 transparent,
    0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  position: fixed;
  top: 0;
  width: 90%;
  color: #212b36;
  display: flex;
  padding: 1.2rem;
  border-radius: 0 0 3px 3px;
  transition: box-shadow 0.2s cubic-bezier(0.64, 0, 0.35, 1);
  transition-delay: 0.1s;
  /**
   * FIXME: This is *not* a perfect fix because different themes use different methods for
   * handling z-index for different elements on the page (top nav, social media links, etc).
   * In other words, there is not a single "catch-all" z-index value we can hard code here,
   * and the likely scenario would be handling z-index issues on a case by case basis.
   */
  z-index: 10000;
}

.banner .banner__ribbon {
  flex: 0 0 3.2rem;
  margin-right: 1rem;
}

.banner .banner__ribbon .icon {
  height: 1.2rem;
  width: 1.2rem;
  max-height: 100%;
  max-width: 100%;
  align-items: center;
  margin: 0.8rem;
  display: flex;
  position: relative;
  fill: #bf0711;
}

.banner .banner__ribbon .icon .icon__svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  color: #fff;
  max-width: 100%;
  max-height: 100%;
}

.banner .banner__ribbon .icon::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border-radius: 50%;
  background-color: #fead9a;
}

.banner .icon__close {
  margin-left: auto;
  width: 22px;
}

.banner .icon__close .icon__close__svg {
  fill: #637381;
  cursor: pointer;
}

.banner .icon__close .icon__close__svg:hover {
  fill: #000;
}

.banner .banner__header {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
}

.exp__select,
.exp__text-field {
  resize: none;
  outline: none;
  display: flex;
  width: 100%;
  margin: 0.5em 0;
  font-size: 0.875em;
  font: inherit;
}

.exp__select.placeholder,
.exp__text-field::placeholder {
  color: #a0acb7;
  color: var(--experiences-placeholder-color);
}

.exp__select__wrapper,
.exp__text-field__wrapper {
  width: 100%;
  align-self: flex-end;
  padding: 0.5rem;
}

.exp__select__wrapper label,
.exp__text-field__wrapper label {
  word-wrap: break-word;
}

.exp__select__wrapper.half-width,
.exp__text-field__wrapper.half-width {
  width: 50%;
}

.exp__select:focus,
.exp__text-field:focus {
  border-color: #5c6ac4;
  border-color: var(--experiences-secondar-action);
  box-shadow: #5c6ac4;
  box-shadow: inset 0 0 0 0 transparent,
    0 0 0 1px var(--experiences-secondar-action);
}

.exp__select.exp__is-error,
.exp__select.exp__is-error:focus,
.exp__text-field.exp__is-error,
.exp__text-field.exp__is-error:focus {
  border-color: red;
  box-shadow: inset 0 0 0 0 transparent, 0 0 0 1px red;
}

.exp__info {
  margin: 1em 0;
  padding: 0 0.5rem;
}

.exp__book-btn + .exp__book-btn {
  margin-left: 1rem;
}

.exp__link {
  cursor: pointer;
}

.exp__user-form {
  display: flex;
  flex-wrap: wrap;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

.exp__spinner-component {
  animation: loading 500ms linear infinite;
  height: 25px;
  width: 25px;
}

button > .exp__spinner-component {
  max-height: 10px;
}

.exp__message__sold-out {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #bf0711;
}

.exp__admin-err__container {
  color: #bf0711;
  display: flex;
  margin-top: 0.4rem;
}

.exp__admin-err__container > .exp__admin-err__icon-container {
  fill: #de3618;
  margin: 0 0.4rem 0 -2px;
}

.exp__admin-err__icon-container > .exp__admin-err__icon-span {
  cursor: pointer;
  display: block;
  height: 1.5rem;
  max-height: 100%;
  width: 1.5rem;
  max-width: 100%;
}

.exp__admin-err__icon-span > .exp__admin-err__icon-svg {
  color: #fff;
  display: block;
  max-height: 100%;
  position: relative;
  max-width: 100%;
}

@media (max-width: 800px) {
  .booking-form__wrapper {
    margin-bottom: 1.5rem;
  }
}

.exp__select__label,
.exp__text-field__label {
  text-align: left;
}

.exp__select__label.hidden,
.exp__text-field__label.hidden {
  display: none;
}

.exp__text-field__custom-optional__label {
  font-size: 12px;
  margin: 0 1rem;
}

.exp__select__label.optional::after,
.exp__text-field__label.optional::after {
  font-size: 12px;
  content: "(optional)";
  margin: 0 1rem;
}

.exp__select > option[hidden] {
  display: none;
}

.exp__form-content {
  overflow: auto;
}

.exp__make-Block {
  display: block;
}

.exp__form-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
  max-height: 44vh;
  border-top: 1px solid #f5f5f5;
  border-top: 1px solid var(--experiences-secondary-background);
}

p.exp__limit_info {
  font-size: 10px;
  margin-bottom: -5px;
  padding: 6px;
}

p#attribution {
  margin-top: 20px !important;
  font-size: 0.7em !important;
}

p#attribution > a {
  color: #5c6ac4 !important;
}

h3.exp__header-label {
  margin-bottom: 10px;
}

.exp__host-details-container {
  align-items: flex-start;
  display: flex;
}

.exp__host-details__container {
  display: flex;
  height: 100%;
}

.exp__host-image {
  height: 120px;
  width: 120px;
}

.exp__host-desc-container {
  align-items: flex-start;
  flex: 1;
  min-height: 120px;
  justify-content: flex-start;
  padding-left: 40px;
}

.exp__host-desc-container.exp__as-without-padding {
  padding: 0;
}

.exp__carousel-prev-btn,
.exp__carousel-next-btn {
  align-items: center;
  justify-items: center;
  display: flex;
}

.exp__book-btn.exp__as-secondary-button {
  background: #f5f5f5;
  background: var(--experiences-secondary-background);
  color: #637381;
  color: var(--experiences-secondary-text);
}

.exp__quant-label.exp__as-divider {
  margin: 0 0.5rem;
}

button.exp__cal-weekday,
button.exp__cal-prev-week-btn,
button.exp__cal-next-week-btn,
button.exp__quant-minus-btn,
button.exp__quant-plus-btn {
  background-color: initial;
  color: inherit;
  white-space: initial;
  border: initial;
  cursor: initial;
  font-weight: initial;
  line-height: initial;
  margin: initial;
  position: initial;
  text-decoration: initial;
  text-align: center;
  text-transform: initial;
  display: initial;
  padding: initial;
  border-radius: initial;
  font-size: initial;
  box-shadow: initial;
  transition: initial;
}

/*================ CUSTOM MIXINS ================*/
.bottom-spacer-small {
  margin-bottom: 8px;
}
.product__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 20vh;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
@media (max-width: 500px) {
  .product__title-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.product__title-container .product__title-container__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.product__title-container .product__title-container__tagline {
  font-size: 1rem;
}
.product__display-grid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  max-width: 940px;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .product__display-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product__display-grid .product__display-grid__infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
  min-height: 30px;
  width: 100%;
}
.product__display-grid .product__display-grid__detailsbox {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.product__display-grid .product__display-grid__detailsbox:last-child {
  border: 0;
  margin-bottom: 50px;
}
.product__display-grid .product__display-grid__detailsbox ul,
.product__display-grid .product__display-grid__detailsbox ol {
  padding-left: 25px;
}
.product__display-grid .product__display-grid__detailsbox ul li {
  list-style: disc;
}
.product__display-grid .product__display-grid__detailsbox ol li {
  list-style: decimal;
}
.product__display-grid__col1 .product__display-grid__divider {
  border-top: 1px solid #dfdfdf;
  margin: 20px 0 5px;
}
.product__display-grid__col2 {
  padding-left: 8%;
  width: 100%
}
.product__display-grid__col1 {
  flex: 1 0 25%;
  min-width: 250px;
}
@media (max-width: 800px) {
  .product__display-grid__col1 {
    flex: 1 0 auto;
  }
  .product__display-grid__col2 {
    padding: 0;
    width: 100%;
  }
}
.product__display-grid__host-text {
  padding-left: 40px;
}
.product__display-grid__text,
.product__display-grid__header {
  margin: 0;
}
.product__display-grid__header {
  font-size: 1rem;
}
.product__display-grid__hostbox {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 500px) {
  .product__display-grid__hostbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product__display-grid__host-image {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  visibility: hidden;
}
.product__display-grid__host-image.isShowing {
  visibility: visible;
}
.product__display-grid__host-image + .product__display-grid__host-desc {
  padding-left: 10%;
}
@media (max-width: 500px) {
  .product__display-grid__host-image + .product__display-grid__host-desc {
    padding-left: 0%;
    padding-top: 10%;
  }
}

.product__dropdown-group {
  margin-top: 1.5rem;
  position: relative;
  /** 
   * FIXME: This is *not* a perfect fix because different themes use different methods for 
   * handling z-index for different elements on the page (top nav, social media links, etc). 
   * In other words, there is not a single "catch-all" z-index value we can hard code here, 
   * and the likely scenario would be handling z-index issues on a case by case basis.
   */
  z-index: 100000;
}

.dropdowns__mask {
  height: 100%;
  width: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
}
.dropdowns__dropdown-button {
  background: #fff;
  border-radius: 3px;
  outline: none;
  text-align: left;
  padding: 5px 10px;
  height: 30px;
  width: 190px;
}
.dropdowns__dropdown-button:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent;
}
#calendar-content {
  top: 40px;
}
#quantity-content {
  top: 100px;
}
#book-event-button {
  color: #fff;
  background: #505dbf;
  border-radius: 4px;
  height: 40px;
  margin-bottom: 25px;
  width: 190px;
  top: 120px;
  position: absolute;
  outline: none;
}
.dropdowns__dropdown-content {
  background: #fff;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 3px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  min-width: 190px;
  opacity: 0;
  padding: 5px;
  z-index: 50;
  pointer-events: none;
  position: absolute;
}
.dropdowns__dropdown-content:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: 112px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: rgba(200, 200, 200, 0.5) transparent;
}
.dropdowns__dropdown-content:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: 113px;
  border-width: 0 7px 7px 7px;
  border-style: solid;
  border-color: #fff transparent;
}
.availability-calendar__calendar-active,
.ticket-quantity__quantity-active {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: all;
}
.availability-calendar__calendar-container {
  font-size: 0.9rem;
  background: #f3f3f3;
  border-radius: 3px;
  padding: 8px 0;
  cursor: default;
}
.availability-calendar__calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 10px 0 0 0;
  padding: 0 20px;
  list-style-type: none;
}
.availability-calendar__calendar li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
  min-height: 70px;
  min-width: 40px;
}
.availability-calendar__calendar li > span {
  position: absolute;
  top: -4px;
}
.availability-calendar__calendar span,
.availability-calendar__calendar label {
  font-size: 0.8rem;
  font-weight: 600;
}
.availability-calendar__calendar label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  min-height: 35px;
  width: 100%;
  z-index: 90;
}
.availability-calendar__calendar input[type="radio"] {
  opacity: 0;
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.availability-calendar__calendar input[type="radio"]:checked + label {
  border: none;
  border-radius: 50%;
  background: #4a90e2;
  color: #fff;
  height: 35px;
  width: 35px;
}
.availability-calendar__calendar input[type="radio"]:disabled + label {
  color: #c2c2c2;
  cursor: default;
}
.availability__calendar__warning {
  color: #c64862;
}
.availability__calendar__hidden {
  display: none;
}
.availability-calendar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}
.availability-calendar__header .availability-calendar__month-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
}
.availability-calendar__header .availability-calendar__arrow {
  background: transparent;
  border: none;
  font-size: 2rem;
}
.availability-calendar__header .availability-calendar__arrow:disabled {
  cursor: default;
}
.availability-calendar__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.availability-calendar__timeslots-ul {
  cursor: default;
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
}
.availability-calendar__timeslots-ul li {
  border-bottom: 1px solid #ccc;
  height: 60px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.availability-calendar__timeslots-ul li:hover {
  border-radius: 3px;
  background: #f3f3f3;
}
.availability-calendar__timeslots-ul li .availability__calendar__time-sold-out {
  color: #aaa;
}
.availability-calendar__timeslots-ul li .availability__calendar__spots-sold-out {
  color: #c64862;
}
.availability-calendar__timeslots-ul li .availability__calendar__select-button {
  outline: none;
  border-radius: 3px;
  background: #4a90e2;
  color: #fff;
  padding: 8px 20px;
}
.availability-calendar__timeslots-ul li:last-child {
  border: none;
}
#quantity-button:disabled {
  border-color: #dfdfdf;
  color: #dfdfdf;
}
#quantity-button:disabled:after {
  border-color: rgba(0, 0, 0, 0.2) transparent;
}
.ticket-quantity__quantity-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 20px;
}
.ticket-quantity__quantity-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 25px;
  min-width: 80px;
}
.ticket-quantity__circle-btn {
  height: 20px;
  width: 20px;
  line-height: 20px;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 50%;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.ticket-quantity__circle-btn:disabled {
  border-color: #f3f3f3;
  color: #f3f3f3;
  cursor: default;
}
.ticket-quantity__circle-btn span {
  position: absolute;
  top: -1px;
}
.ticket-quantity__minus span {
  font-size: 1rem;
}
.ticket-quantity__quantity-confirm {
  outline: none;
  border-radius: 3px;
  background: #505dbf;
  color: #fff;
  padding: 8px 16px;
}
.ticket-quantity__quantity-label {
  cursor: default;
  font-weight: 600;
}
/*================ DEFAULT OVERRIDE ================*/
#MainContent {
  padding: 0 15%;
  width: 100%;
}
@media (max-width: 800px) {
  #MainContent {
    padding: 0 10%;
  }
}
.product__section-container {
  margin: 0 auto;
  max-width: 940px;
}
@media only screen and (max-width: 800px) {
  .product__section-container {
    padding: 0 1rem;
  }
}
.social-sharing {
  border-top: 1px solid #dfdfdf;
  padding: 25px 0 0 0;
  margin: 25px 0 0 0;
  list-style: none;
}
.social-sharing a svg {
  color: #979797;
}

button.exp__cal-weekday,
button.exp__cal-prev-week-btn,
button.exp__cal-next-week-btn,
button.exp__quant-minus-btn,
button.exp__quant-plus-btn {
  background-color: initial;
  color: inherit;
  white-space: initial;
  border: initial;
  cursor: initial;
  font-weight: initial;
  line-height: initial;
  margin: initial;
  position: initial;
  text-decoration: initial;
  text-align: center;
  text-transform: initial;
  display: initial;
  padding: initial;
  border-radius: initial;
  font-size: initial;
  box-shadow: initial;
  transition: initial;
}

.Carousel {
  position: relative;
  margin-bottom: 2em;
}

.Carousel-ImageSlide {
  display: block;
  margin: 0 auto;
}

.product__carousel-container .product__carousel-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  padding: 0 0.5rem;
  height: 100%;
  width: 100%;
  z-index: 3;
}
.product__carousel-container .product__carousel-images {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product__carousel-container .product__carousel-images .exp__carousel-image {
  position: absolute;
  width: 100%;
  z-index: 1;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100%;
}
.product__carousel-container .product__carousel-images .exp__carousel-image.exp__is-active {
  z-index: 2;
  visibility: visible;
}
.product__carousel-container .product__carousel-images .exp__carousel-image .product__image {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;
}
.product__carousel-container .product__carousel-images li.product__active-image {
  top: 0;
}
.product__carousel-container .Carousel-SlideArrow-Left svg {
  margin-right: 0.2rem;
}

.product__carousel-container .Carousel-SlideArrow-Left {
  left: 1em;
}

.product__carousel-container .Carousel-SlideArrow-Right {
  right: 1em;
}

.product__carousel-container .Carousel-SlideArrow-Right svg {
  margin-left: 0.1rem;
}

.product__carousel-container .Carousel-SlideArrow-Right svg,
.product__carousel-container .Carousel-SlideArrow-Left svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product__carousel-container .Carousel-SlideArrow-Left,
.product__carousel-container .Carousel-SlideArrow-Right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  outline: none;
  border: 0;
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.8);
  background: #4a90e2;
  background: var(--experiences-primary-action);
}
@media (max-width: 450px) {
  .Carousel-ImageSlide {
    max-width: 100%;
  }
}
@media (max-width: 350px) {
  .product__carousel-container .Carousel-SlideArrow-Left,
  .product__carousel-container .Carousel-SlideArrow-Right {
    height: 2rem;
    width: 2rem;
  }
}
.product__carousel-container .Carousel-SlideArrow-Left:focus,
.product__carousel-container .Carousel-SlideArrow-Right:focus {
  -webkit-box-shadow: 0 0 3px 2px #4a90e2;
  box-shadow: 0 0 3px 2px #4a90e2;
}