@font-face {
  font-family: 'Lateral Standard Regular';
  src: url('../fonts/Lateral-StandardRegular.woff') format('woff2'),
    url('../fonts/Lateral-StandardRegular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Lateral Extended Light";
  src: url("../fonts/Lateral-ExtendedLight.woff") format('woff2'),
    url("../fonts/Lateral-ExtendedLight.woff") format('woff');
  font-weight: 200;
  font-style: normal;
}

:root {
  --color-fg: hsl(0, 100%,0%);
  --color-bg: hsl(0, 100%, 100%);
  --color-bg-alt: #fff;

  --color-accent: #00C9FF;
  --color-accent-alt: #FF9E1B;
  --color-accent-dark: hsl(240, 97%, 14%);

  --color-blue: #1653ff;
  --color-error: #d23b0e;

  --font-body: "Lateral Standard Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-headline: "Lateral Extended Light", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter-width: 2rem;
  --column-width: 2rem;

  --input-corners: 4px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 110%;
}

/* typography */

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  line-height: 1.3em;
  margin-bottom: 0.8rem;
}

h1, h2 {
  font-family: var(--font-headline);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

h1, h2 {
  text-transform: none;
}

pre, code {
  font-family: monospace;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 21px;
  font-size: 16px;
  text-align: left;
}

p > a {
  display: inline-block;
  margin: 0 0.15em;
}

:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsla(220, 100%, 50%, 80%);
}

/* layout */

.container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.alt-bg {
  background-color: #242037;
  background-image: url("../images/bg-stars.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

aside.alt-bg {
  background-position: left;
}

.alt-bg h1, .alt-bg h2, .alt-bg h3,
.alt-bg h4, .alt-bg h5, .alt-bg h6,
.alt-bg p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

.alt-bg .logo img {
  filter: drop-shadow(0 4px 27px rgba(0, 0, 0, 0.4));
}

.center-layout {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

/* header */

header {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header.large-header {
  padding: 18px 20px;
  position: absolute;
  top: 20px;
}

/* footer */

footer {
  margin-bottom: 2rem;
  text-align: center;
}

/* main */

.success-container {
  text-align: center;
  max-width: 70vw;
  padding: 20px 0 60px 0;
  color: var(--color-bg);
}

.success-container .logo {
  min-width: 200px;
  max-width: 200px;
}

.success-container p {
  text-align: center;
}

.success-container .main-content p {
  margin: 0 0 30px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 21px;
}

.success-container .main-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 31px;
  text-align: center;
}

.success-container .main-content {
  margin-bottom: 40px;
}

.success-container .main-content p:last-child {
  margin-bottom: 0;
}

.success-details {
  margin-top: 25px;
  font-size: 16px;
}

.error-title {
  color: var(--color-bg);
}

/* components */

.btn {
  overflow-wrap: break-word;
  text-decoration: none;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: 0em;
  font-size: calc((1.4 - 1) * 1.2vw + 1rem);
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  padding: .7rem 1.169rem;
  border-width: 2px;
  border-style: solid;
  transition: 0.1s background-color linear, 0.1s color linear;
  border-radius: 300px;
  color: var(--color-fg);
  border-color: var(--color-fg);
  background: var(--color-bg);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn:hover, .btn:focus, .btn:active {
  text-decoration: none;
}

/* .btn:hover:not(:disabled),
.btn:focus:not(:disabled) {
  background: var(--color-fg);
  color: var(--color-bg);
  text-decoration: none;
}

.btn:visited:not(:disabled) {
  color: var(--color-fg);
} */

.btn:disabled {
  /* filter: opacity(0.7) contrast(0.5) brightness(0.5); */
  color: #fff;
  background-color: #6c757d;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--color-fg);
  color: var(--color-bg);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
  padding: 17px 25px;
}

.btn-primary:visited {
  color: var(--color-bg);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--color-bg);
  color: var(--color-fg);
}

.btn-alt {
  background: var(--color-bg);
  color: var(--color-fg);
}

.btn-alt:hover, .btn-alt:focus {
  background: var(--color-fg);
  color: var(--color-bg);
}

.btn-external {
  --color: var(--color-fg);
  border-radius: 8px;
  color: var(--color-bg);
  background: var(--color);
  padding: 12px 26px;
  font-weight: 600;
  font-size: 16px;
}

.btn-external:hover,
.btn-external:focus,
.btn-external:active {
  background: transparent;
  color: var(--color-fg);
}

.is-concealed {
  opacity: 0.4;
  pointer-events: none;
  position: relative;
}

.is-concealed::after {
  content: "";
  inset: 0;
  background: #ccc;
  opacity: 0.6;
  z-index: 2;
}

/* from: css-tricks.com */
.hide-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Logo */

.logo {
  text-indent: -9999px;
  width: 270px;
  height: 48px;
}

.logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.logo-small .logo {
  width: 140px;
}

.large-header .logo img {
  width: 400px;
  max-width: 400px;
}

/* Forms */

.cart {
  margin-right: 1.6vw;
  margin-bottom: 24px;
}

.cart-title {
  margin-top: 0;
}

.cart .product, .totals {
  display: flex;
  justify-content: space-between;
}

.product {
  padding-bottom: 10px;
  vertical-align: middle;
}

.product-info {
  flex: 2;
  margin-right: 10px;
  padding-right: 10px;
}

.product-info > * {
  display: block;
  line-height: 1.45;
}

.product-name {
  font-weight: 500;
  line-height: 21px;
  font-size: 18px;
  margin-bottom: 15px;
}

.product-description {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
}

.product-description-line {
  display: block;
}

.product-actions *.is-disabled {
  visibility: hidden;
  pointer-events: none;
}

.totals {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
  border-top: 1px solid var(--color-fg);
  padding-top: 15px;
  margin-top: 8px;
  vertical-align: baseline;
}

.total-amount {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 26px;
}

.form-group {
  margin: 0 auto 50px auto;
  border: none;
  padding: 0;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group legend {
  /* text-transform: uppercase; */
  margin-bottom: 10px;
  line-height: 1.4;
}

/* .form-group label {
  display: none;
} */

.cart .group-title,
.form-group .group-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.cart .group-title {
  margin-bottom: 20px;
}

.form-group .group-title {
  margin-bottom: 28px;
}

.form-group .group-notice {
  font-size: 12px;
  margin: 5px auto 25px;
}

.field-wide {
  width: 100%;
}

.field-row {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
}

.field-row:last-child {
  margin-bottom: 0;
}

.field-row > * {
  display: block;
  width: 100%;
}

.field-row > .field {
  margin-bottom: 1rem;
}

.form-group > .field {
  margin-bottom: 1rem;
}

.field {
  position: relative;
}

.field input,
.field textarea,
.field .input-dropdown {
  transition: box-shadow 0.3s ease;
}

.field label:not(.input-checkbox) {
  display: none;
}

.field input:not([type=checkbox]),
.field textarea,
.field .input-dropdown {
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-bg);
  border: 1px solid var(--color-fg);
  color: var(--color-fg);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21px;
  padding: 14px 12px;
  border-radius: var(--input-corners);
}

.field :is(input, textarea, .input-dropdown).has-error {
  border-color: var(--color-error);
}

.field textarea,
.field input:not([type=checkbox]) {
  cursor: text;
}

.field textarea:focus,
.field input:not([type=checkbox]):focus {
  color: var(--color-fg);
  background: var(--color-bg);
}

.field-row input:not([type=checkbox]),
.field-row .input-dropdown {
  width: 90%;
}

.field textarea {
  width: 95%;
}

.field select,
.field textarea::placeholder,
.field input:not([type=checkbox])::placeholder {
  color: var(--color-fg);
}

.field select:focus {
  outline-offset: 15px;
}

.field input:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.field input[type="number"] {
  text-align: center;
  font-weight: 500;
  padding: 5px 10px;
}

.field iframe {
  width: 100%;
}

.field-row .field-frame {
  margin-right: 12px;
  padding-right: 4px;
}

.field-row .field-frame:last-of-type {
  margin-right: 0;
  padding-right: 0;
}

.form-footer {
  padding: 10px 0 25px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.form-footer .form-verification {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 5px 0 10px 0;
}

.form-footer .disclaimer {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
}

.form-footer .captcha-widget {
  padding: 5px;
}

.form-footer .btn-primary {
  width: 100%;
  margin-top: 24px;
}

.error-messages {
  list-style-type: none;
  width: 100%;
  margin: 18px 0 2px 0;
  padding: 0;
  visibility: visible;
}

.error-messages:empty {
  margin: 0;
  visibility: hidden;
}

.error-messages .error {
  display: block;
  color: var(--color-error);
  padding: 0;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.has-error {
  position: relative;
}

input.has-error,
input[data-error] {
  border-color: var(--color-error);
}

[data-error]::after {
  content: attr(data-error);
  color: var(--color-error);
  display: block;
}

.input-num {
  display: flex;
  justify-content: space-around;
}

.input-num input[type=number] {
  -moz-appearance: textfield;
  max-width: 2ch;
}

.input-num input[type=number]::-webkit-inner-spin-button,
.input-num input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-num-btns {
  display: none;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 6px;
}

.input-num-btns > * {
  --color: var(--color-fg);
  --width: calc(14px / 2);
  --height: calc(14px / 2);
  display: block;
  appearance: none;
  width: 0;
  height: 0;
  border-style: solid;
  cursor: pointer;
}

.input-num-btns > *:hover {
  filter: brightness(0.8);
}

.input-num-btns > *:active {
  filter: brightness(0.65);
  transform: scale(0.9);
}

.input-num-btns .increment {
  border-width: 0 var(--width) var(--height) var(--width);
  border-color: transparent transparent var(--color) transparent;
}

.input-num-btns .decrement {
  border-width: var(--height) var(--width) 0 var(--width);
  border-color: var(--color) transparent transparent transparent;
}

.input-dropdown {
  cursor: pointer;
  display: flex;
}

.input-dropdown::after {
  --color: var(--color-fg);
  --width: calc(14px / 2);
  --height: calc(14px / 2);
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 23px;
  right: 6%;
  border-style: solid;
  border-width: var(--height) var(--width) 0 var(--width);
  border-color: var(--color) transparent transparent transparent;
  pointer-events: none;
}

.input-dropdown select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}

.input-checkbox {
  display: block;
  margin: 5px 0;
  cursor: pointer;
}

.input-checkbox input[type=checkbox] {
  margin-right: 10px;
}

.input-checkbox span {
  user-select: none;
}

.input-checkbox a {
  display: inline-block;
  margin: 0 4px;
}

/* Reserve Checkout */

.reserve-container {
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 0;
  width: 100%;
}

.reserve-container > * {
  padding: 0 20px;
}

.reserve-side {
  padding-top: 32px;
  padding-bottom: 15px;
  z-index: 1;
}

.reserve-side .logo {
  margin-bottom: 60px;
}

.reserve-side .partner-logo-container {
	display: flex;
	align-items: flex-end;
	width: 100%;
}
.reserve-side .partner-logo-container .partner-logo {
	max-width: 50%;
	width: 100%;
	display: block;
}

.side-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 28px;
  margin-bottom: 1em;
  color: var(--color-bg);
}

.reserve-side p {
  font-size: 16px;
  letter-spacing: -.01rem;
  line-height: 19px;
  font-weight: 500;
}

.side-container {
  position: static;
}

.side-content {
  max-width: 90%;
  color: var(--color-bg);
}

.reserve-form {
  padding-top: 40px;
  padding-bottom: 80px;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}

.reserve-form::after {
  content: "Loading...";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  opacity: 0;
  background: hsla(0, 0%, 0%, 0.8);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  padding-top: 50vh;
}

.reserve-form.is-loading > * {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.reserve-form.is-loading::after {
  opacity: 1;
  pointer-events: auto;
  cursor: wait;
}

.reserve-side > *:first-child,
.reserve-form > *:first-child {
  margin-top: 0;
}

.reserve-side > *:last-child,
.reserve-form > *:last-child {
  margin-bottom: 0;
}

.reserve-container h1,
.reserve-container h2,
.reserve-container h3 {

}

/* tablet */
@media (min-width: 768px) {
  :root {
    --side-width: 30vw;
  }

  .reserve-container {
    /* grid-template-columns: 2fr 2.5fr; */
    grid-template-columns: var(--side-width) 1fr;
    grid-column-gap: 5px;
  }

  .reserve-container > * {
    padding: 35px var(--gutter-width);
  }

  .reserve-side {
    padding-bottom: 25px;
  }

  .side-container {
    position: fixed;
    top: 2rem;
    max-width: calc(var(--side-width) - 2vw - (var(--gutter-width) * 2));
  }

  .side-content {
    max-width: 550px;
  }

  .side-title {
    font-size: 25px;
    line-height: 1.3;
  }

  .reserve-side p {
    font-size: 16px;
    line-height: 22px;
  }

  .reserve-side .logo {
    margin-bottom: 20px;
  }

  .reserve-form {
    padding-bottom: 2rem;
  }

  .form-group .group-title {
    margin-bottom: 20px;
  }

  .field-row {
    gap: 10px;
    flex-direction: row;
  }

  .field-row > .field {
    margin-bottom: 0;
  }

  .form-group > .field {
    margin-bottom: 16px;
  }

  .field-row input:not([type=checkbox]),
  .field-row .input-dropdown {
    width: 90%;
  }

  .field-row .field:only-child input:not([type=checkbox]),
  .field-row .field:only-child .input-dropdown {
    width: 95%;
  }

  .form-footer .btn-primary {
    margin-top: 18px;
  }

  .input-num-btns {
    display: flex;
  }

  .field-row .input-dropdown {
    width: 100%;
  }

  .input-dropdown::after {
    right: 4%;
  }

  .success-container {
    max-width: 60vw;
  }
}

fieldset[data-group="payment"] {
  width: 98%;
  margin-left: 0;
}

fieldset[data-group="alt-payment"] {
  margin-top: 5px;
}

fieldset[data-group="alt-payment"] .btn {
  margin-bottom: 6px;
}

fieldset[data-group="alt-payment"] .text-help {
  display: block;
  margin-bottom: 25px;
}

.text-help {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 12px;
  display: block;
}

/* laptop */
@media (min-width: 1024px) {
  .field-row {
    margin-bottom: 2rem;
  }

  .reserve-container {
    grid-column-gap: 1rem;
  }

  .reserve-side {
    padding-bottom: 40px;
  }

  .side-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .reserve-side p {
    font-size: 18px;
    line-height: 1.2;
  }

  .form-group .group-title {
    margin-bottom: 18px;
  }

  .success-container {
    max-width: 50vw;
  }
}

/* embedded reservation page */

.reserve-container.embedded {
  display: block;
}

.reserve-container.embedded .reserve-side {
  display: none;
}