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

button.exp__dd-btn {
  display: block;
  position: relative;
  padding: 0.7em 1.7em .7em .8em;
  width: 100%;
  font: inherit;
  font-size: 0.875em;
  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;
  height: 2.25em;
  padding: 0 1.5em;
}

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

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, .5);
  background: var(--experiences-disabled-background, rgba(80, 93, 191, .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;
  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;
  font: inherit;
  background: transparent;
  border: 0;
}

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: 9.375em;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.exp__tslots-timeslot {
  display: flex;
  padding: 0 1.25em;
  font-size: 0.875em;
  border-top: solid 1px rgba(200,200,200,0.5);
  height: 3.75em;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.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
}

.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__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;
  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: .5em;
  display: flex;
  flex-direction: column;
}

.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,.05), 0 1px 3px 0 rgba(63,63,68,.15);
  position: fixed;
  top: 0;
  width: 90%;
  color: #212b36;
  display: flex;
  padding: 1.2rem;
  border-radius: 0 0 3px 3px;
  transition: box-shadow .2s cubic-bezier(.64,0,.35,1);
  transition-delay: .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: .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: -.5rem;
  bottom: -.5rem;
  left: -.5rem;
  right: -.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: .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: .5rem;
}

.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 .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: .4rem;
}

.exp__admin-err__container > .exp__admin-err__icon-container {
  fill: #de3618;
  margin: 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__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 {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
}

.exp__form-wrapper {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  max-height: 44vh;
  border-top: 1px solid #f5f5f5;
  border-top: 1px solid var(--experiences-secondary-background);
  border-bottom: 1px solid #f5f5f5;
  border-bottom: 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 .5rem;
}
