@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Lato-Regular"), local("Lato Regular"), url("https://storage.googleapis.com/ygt-fonts/Lato-Regular.woff2") format("woff2"), url("https://storage.googleapis.com/ygt-fonts/Lato-Regular.woff") format("woff");
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Lato-Italic"), local("Lato Italic"), url("https://storage.googleapis.com/ygt-fonts/Lato-Italic.woff2") format("woff2"), url("https://storage.googleapis.com/ygt-fonts/Lato-Italic.woff") format("woff");
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lato-Bold"), local("Lato Bold"), url("https://storage.googleapis.com/ygt-fonts/Lato-Bold.woff2") format("woff2"), url("https://storage.googleapis.com/ygt-fonts/Lato-Bold.woff") format("woff");
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Lato-BoldItalic"), local("Lato Bold Italic"), url("https://storage.googleapis.com/ygt-fonts/Lato-BoldItalic.woff2") format("woff2"), url("https://storage.googleapis.com/ygt-fonts/Lato-BoldItalic.woff") format("woff");
}

/* line 38, app/assets/stylesheets/base.scss */
:root {
  box-sizing: border-box;
  height: 100%;
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Fira Sans, Ubuntu, Noto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  --color-midnight: rgb(17, 24, 39);
  --color-navy: rgb(23, 42, 72);
  --color-white: #ffffff;
  --color-light-gray: rgb(243, 244, 246);
  --color-cool-gray: rgb(225, 227, 232);
  --color-gray-500: rgb(107, 114, 128);
  --color-blue: rgb(37, 99, 235);
  --color-blue-600: #069;
  --color-green: #00ad95;
  --color-green-hover: #33bfa9;
  --color-green-border: rgb(187, 247, 208);
  --color-green-border-fade: rgba(187, 247, 208, 0.5);
  --color-green-fade: rgb(240, 253, 244);
  --color-dark-green: rgb(22, 101, 52);
  --color-success-green: rgb(22, 163, 74);
  --color-cyan: rgb(143, 245, 224);
  --color-light-blue: rgb(236, 245, 255);
  --color-blue-border: rgb(198, 223, 253);
  --color-lavender: #eef3ff;
  --color-red: rgb(230, 38, 38);
  --header-height: 56px;
}

/* line 71, app/assets/stylesheets/base.scss */
*,
*:after,
*:before {
  box-sizing: inherit;
}

/* line 77, app/assets/stylesheets/base.scss */
button,
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

/* Chrome, Edge, Safari */
/* line 86, app/assets/stylesheets/base.scss */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* line 1, app/assets/stylesheets/component.scss */
.btn {
  padding-inline: 1.5rem;
  padding-block: 1rem;
  border-radius: 0.25rem;
  min-width: fit-content;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* line 10, app/assets/stylesheets/component.scss */
.btn.solid {
  color: var(--color-white);
  background-color: var(--color-green);
  text-decoration: none;
}

/* line 15, app/assets/stylesheets/component.scss */
.btn.solid:hover:not(:disabled) {
  background-color: var(--color-green-hover);
}

/* line 19, app/assets/stylesheets/component.scss */
.btn.solid:disabled {
  opacity: 0.5;
}

/* line 24, app/assets/stylesheets/component.scss */
.btn.outline {
  color: var(--color-green);
  background-color: var(--color-white);
  outline: 2px solid var(--color-cyan);
}

/* line 29, app/assets/stylesheets/component.scss */
.btn.outline:hover {
  color: var(--color-white);
  background-color: var(--color-cyan);
}

/* line 35, app/assets/stylesheets/component.scss */
.btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* line 41, app/assets/stylesheets/component.scss */
.success-block {
  color: var(--color-dark-green);
  background-color: var(--color-green-fade);
  padding: 1rem;
  border-radius: 0.5rem;
  outline: 2px solid var(--color-green-border);
  display: flex;
  justify-content: space-between;
}

/* line 50, app/assets/stylesheets/component.scss */
.success-block svg {
  margin-right: 0.5rem;
  vertical-align: bottom;
  color: var(--color-success-green);
}

/* line 56, app/assets/stylesheets/component.scss */
.success-block button {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  color: var(--color-dark-green);
}

/* line 63, app/assets/stylesheets/component.scss */
.success-block button:hover {
  opacity: 0.5;
}

/* line 69, app/assets/stylesheets/component.scss */
.tooltip {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: relative;
}

/* line 75, app/assets/stylesheets/component.scss */
.tooltip svg {
  width: 100%;
}

/* line 79, app/assets/stylesheets/component.scss */
.tooltip:focus .tooltip-content {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  /* line 85, app/assets/stylesheets/component.scss */
  .tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
  }
}

/* line 91, app/assets/stylesheets/component.scss */
.tooltip .tooltip-content {
  position: absolute;
  width: 212px;
  text-align: left;
  font-weight: 400;
  background-color: var(--color-green);
  border-radius: 0.25rem;
  padding: 1rem;
  color: var(--color-white);
  line-height: 1.4;
  top: calc(100% + 6px);
  right: -1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* line 109, app/assets/stylesheets/component.scss */
.tooltip .tooltip-content:before {
  content: "";
  position: absolute;
  top: -11px;
  right: 1rem;
  transform: rotate(180deg) translateX(20%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--color-green) transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

/* line 123, app/assets/stylesheets/component.scss */
.clubhouse-reward {
  border-radius: 0.75rem;
  border: 1px solid var(--color-cool-gray);
  padding: 1.5rem 1rem;
  background-color: var(--color-lavender);
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  text-align: center;
  column-gap: 0.2rem;
  flex: 1;
}

/* line 134, app/assets/stylesheets/component.scss */
.clubhouse-reward div {
  padding-block: 0.5rem;
}

/* line 137, app/assets/stylesheets/component.scss */
.clubhouse-reward div:last-child {
  font-size: 0.875rem;
}

/* line 140, app/assets/stylesheets/component.scss */
.clubhouse-reward div:last-child > span:last-child {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.15rem;
}

/* line 149, app/assets/stylesheets/component.scss */
.clubhouse-reward .clubhouse-logo {
  background: url(/assets/ygt-clubhouse-rewards-b310b62522d760c2530178f517669c08564180f87d7511c8db8c7379b9092ded.svg) no-repeat;
  background-position: center;
  background-size: 120px;
}

/* line 155, app/assets/stylesheets/component.scss */
.clubhouse-reward .divider {
  height: 100%;
}
/* line 5, app/assets/stylesheets/content.scss */
a {
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease-in;
}

/* line 10, app/assets/stylesheets/content.scss */
a:link, a:visited {
  color: #069;
}

/* line 15, app/assets/stylesheets/content.scss */
a:hover, a:active, a:focus {
  color: #08c;
}

/* line 22, app/assets/stylesheets/content.scss */
header a {
  font-size: 1.2rem;
  white-space: nowrap;
}

/* line 27, app/assets/stylesheets/content.scss */
body {
  background-color: #fff;
  color: var(--color-midnight);
  font-size: 1rem;
}

/* line 33, app/assets/stylesheets/content.scss */
button,
input,
optgroup,
textarea {
  -webkit-appearance: none;
  appearance: none;
}

/* line 41, app/assets/stylesheets/content.scss */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  border-color: transparent;
  box-shadow: 0 0 2px black;
}

/* line 51, app/assets/stylesheets/content.scss */
button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* line 56, app/assets/stylesheets/content.scss */
button:not([type="button"]),
input[type="submit"] {
  background-color: #069;
  color: white;
  box-shadow: none;
}

/* line 65, app/assets/stylesheets/content.scss */
button:not([type="button"]):hover, button:not([type="button"]):active, button:not([type="button"]):focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus {
  background-color: #08c;
}

/* line 72, app/assets/stylesheets/content.scss */
footer {
  background-color: #323232;
  color: white;
  border-top: 0.875rem solid #484848;
}

/* line 79, app/assets/stylesheets/content.scss */
p.small {
  font-size: smaller;
}

/* line 83, app/assets/stylesheets/content.scss */
p.title {
  font-size: 1.25rem;
  font-weight: 700;
}

/* line 89, app/assets/stylesheets/content.scss */
span.nowrap {
  white-space: nowrap;
}

/* line 93, app/assets/stylesheets/content.scss */
table.passengers {
  border: 0.1rem solid #484848;
}

/* line 96, app/assets/stylesheets/content.scss */
table.passengers tr.dark {
  background-color: #f5f5f5;
}

/* line 101, app/assets/stylesheets/content.scss */
ul.error {
  list-style-type: none;
}

/* line 106, app/assets/stylesheets/content.scss */
fieldset#marketing-preferences input[type="submit"] {
  margin: 0;
  padding: 0.6em 0.75em;
}

/* line 112, app/assets/stylesheets/content.scss */
#accreditation {
  background: transparent center center url("https://storage.googleapis.com/public.yourgolftravel.com/accreditation-logos-sprite.png") no-repeat;
  background-size: 100%;
}

/* line 119, app/assets/stylesheets/content.scss */
.logo-yourgolftravel {
  background: transparent center center url(/assets/your-golf-travel-logo-920236a46771a232bae64ca4e49a1a9d700b76302e491501fd3d735bb0e35204.png) no-repeat;
  background-size: 100%;
}

/* line 126, app/assets/stylesheets/content.scss */
.spinner .loading {
  border: 12px solid #f3f3f3;
  border-top-color: #3498db;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* line 136, app/assets/stylesheets/content.scss */
#join-clubhouse {
  text-align: center;
  display: block;
}

/* line 144, app/assets/stylesheets/content.scss */
.error {
  background-color: #e75252;
  color: #fff;
}

/* line 144, app/assets/stylesheets/content.scss */
.notice {
  background-color: #069;
  color: #fff;
}

/* line 144, app/assets/stylesheets/content.scss */
.pending {
  background-color: #f1993c;
  color: #fff;
}

/* line 144, app/assets/stylesheets/content.scss */
.success {
  background-color: #159d83;
  color: #fff;
}

/* line 152, app/assets/stylesheets/content.scss */
[placeholder] {
  text-overflow: ellipsis;
}

/* line 156, app/assets/stylesheets/content.scss */
::-ms-input-placeholder {
  color: rgba(127, 127, 127, 0.675);
}

/* line 161, app/assets/stylesheets/content.scss */
::-moz-placeholder {
  color: rgba(127, 127, 127, 0.675);
  opacity: 1;
}

/* line 167, app/assets/stylesheets/content.scss */
::-webkit-input-placeholder {
  color: rgba(127, 127, 127, 0.675);
}

/* line 172, app/assets/stylesheets/content.scss */
::placeholder {
  color: rgba(127, 127, 127, 0.675);
}
@charset "UTF-8";
/* line 9, app/assets/stylesheets/form.scss */
button:disabled {
  cursor: not-allowed;
}

/* line 14, app/assets/stylesheets/form.scss */
button:not([type="button"]),
input[type="submit"] {
  padding: 0.5rem 0.75rem;
}

/* line 19, app/assets/stylesheets/form.scss */
div.field_with_errors,
input[type="email"],
input[type="tel"],
input[type="text"],
label:not(.check) {
  flex-basis: 100%;
}

/* line 27, app/assets/stylesheets/form.scss */
div.field_with_errors {
  display: inline;
  justify-content: inherit;
  flex-wrap: inherit;
  color: #e75252;
}

@media (min-width: 769px) {
  /* line 37, app/assets/stylesheets/form.scss */
  div.field_with_errors:nth-of-type(odd) {
    flex-basis: 20%;
  }
  /* line 41, app/assets/stylesheets/form.scss */
  div.field_with_errors:nth-of-type(even) {
    flex-basis: auto;
  }
}

/* line 47, app/assets/stylesheets/form.scss */
fieldset {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  padding: 0;
  border: none;
}

/* line 58, app/assets/stylesheets/form.scss */
fieldset > div.form {
  display: grid;
  grid-template-columns: repeat(4, min-content auto);
  flex-basis: 100%;
}

@media (min-width: 769px) {
  /* line 47, app/assets/stylesheets/form.scss */
  fieldset {
    padding-inline: 0;
  }
}

/* line 70, app/assets/stylesheets/form.scss */
form.rooming_list {
  margin-bottom: 2em;
}

/* line 73, app/assets/stylesheets/form.scss */
form.rooming_list input[type="text"],
form.rooming_list select {
  margin-inline-end: 0.5rem;
}

/* line 78, app/assets/stylesheets/form.scss */
form.rooming_list input[type="text"]:last-child {
  margin-inline-end: 0;
}

/* line 85, app/assets/stylesheets/form.scss */
div.field_with_errors input:not([type="submit"]) {
  box-shadow: 0 0 2px 1px #e75252;
}

/* line 90, app/assets/stylesheets/form.scss */
input:not([type="submit"]):not(:invalid):focus {
  box-shadow: 0 0 2px 1px #069;
}

/* line 95, app/assets/stylesheets/form.scss */
input:not([type="submit"]):user-invalid {
  box-shadow: 0 0 2px 1px #e75252;
}

/* line 100, app/assets/stylesheets/form.scss */
input[type="email"],
input[type="text"],
select {
  margin: 0 1rem 1rem 0;
}

/* line 106, app/assets/stylesheets/form.scss */
input[type="checkbox"] {
  align-self: baseline;
  -webkit-appearance: checkbox;
  appearance: auto;
  box-shadow: none;
}

/* line 113, app/assets/stylesheets/form.scss */
input[type="submit"] {
  margin: 0.55rem 0 0 Min(1vw, Max(0.25rem, 3.25rem));
}

/* line 116, app/assets/stylesheets/form.scss */
input[type="submit"]:disabled {
  background-color: #ccc;
}

/* line 121, app/assets/stylesheets/form.scss */
label {
  margin: 0 0.5rem;
}

/* line 125, app/assets/stylesheets/form.scss */
legend {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: -999rem;
}

/* line 133, app/assets/stylesheets/form.scss */
.spinner {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-block-start: 10px;
}

/* line 142, app/assets/stylesheets/form.scss */
form.quote-payment .terms-and-conditions {
  flex-basis: 100%;
  text-align: right;
}

/* line 147, app/assets/stylesheets/form.scss */
form.quote-payment input[type="submit"] {
  margin-left: auto;
}

/* line 153, app/assets/stylesheets/form.scss */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* line 158, app/assets/stylesheets/form.scss */
.form-field label {
  margin: 0;
  font-weight: bold;
}

/* line 163, app/assets/stylesheets/form.scss */
.form-field svg {
  width: 1rem;
  height: auto;
  margin-right: 0.25rem;
}

/* line 169, app/assets/stylesheets/form.scss */
.form-field input[type="email"],
.form-field input[type="text"],
.form-field input[type="number"] {
  margin: 0;
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: 0.25rem;
  width: 100%;
}

/* line 179, app/assets/stylesheets/form.scss */
.form-field #payment_form_amount {
  width: Min(100%, 480px);
}

/* line 183, app/assets/stylesheets/form.scss */
.form-field small {
  color: var(--color-gray-500);
  margin-top: -0.5rem;
}

/* line 188, app/assets/stylesheets/form.scss */
.form-field .field-inline {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 601px) {
  /* line 188, app/assets/stylesheets/form.scss */
  .form-field .field-inline {
    flex-direction: row;
  }
}

/* line 198, app/assets/stylesheets/form.scss */
.form-field [data-status="success"] {
  color: var(--color-success-green);
}

/* line 202, app/assets/stylesheets/form.scss */
.form-field [data-status="error"] {
  color: var(--color-red);
}

/* line 206, app/assets/stylesheets/form.scss */
.form-field [data-status] {
  display: none;
}

/* line 208, app/assets/stylesheets/form.scss */
.form-field [data-status] svg {
  vertical-align: bottom;
}

/* line 213, app/assets/stylesheets/form.scss */
.form-field select {
  width: 100%;
  cursor: pointer;
  margin: 0;
  padding: 1rem;
  border-radius: 0.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='oklch(55.1%25 0.027 264.364)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 228, app/assets/stylesheets/form.scss */
.form-field .toggle-trigger {
  width: max-content;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 4px;
}

/* line 234, app/assets/stylesheets/form.scss */
.form-field .toggle-trigger:hover {
  font-weight: 700;
}

/* line 238, app/assets/stylesheets/form.scss */
.form-field .toggle-trigger + [data-toggle-content="true"] {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

/* line 243, app/assets/stylesheets/form.scss */
.form-field .toggle-trigger + .visible[data-toggle-content="true"] {
  display: flex;
}

/* line 251, app/assets/stylesheets/form.scss */
[data-component="payment-amount"] .success-block {
  width: Min(100%, 480px);
}

/* line 256, app/assets/stylesheets/form.scss */
form.payment-form {
  margin-top: 2rem;
}

/* line 259, app/assets/stylesheets/form.scss */
form.payment-form fieldset {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

/* line 267, app/assets/stylesheets/form.scss */
form.payment-form .name-list .form-field {
  gap: 0.5rem;
}

/* line 271, app/assets/stylesheets/form.scss */
form.payment-form .name-list small {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-gray-500);
}

/* line 278, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

/* line 284, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer p {
  margin: 0;
  color: var(--color-blue);
  font-size: 0.875rem;
  text-align: center;
}

/* line 290, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer p svg {
  vertical-align: bottom;
  width: 1rem;
  height: auto;
  margin-right: 0.375rem;
}

/* line 298, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer .submit-btn {
  position: relative;
}

/* line 301, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer .submit-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-90px);
  width: 20px;
  height: 20px;
  background: url(/assets/payment-card-04c24f41ed10702f378d613e39fe9aa39f4bc3c0b75a0917dfc9cb8d6f9a8691.png) no-repeat center/contain;
  pointer-events: none;
}

/* line 313, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer .submit-btn input[type="submit"] {
  width: 100%;
  margin: 0;
  padding-block: 1rem;
  background-color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
}

/* line 324, app/assets/stylesheets/form.scss */
form.payment-form .payment-footer .submit-btn input[type="submit"]:hover {
  background-color: var(--color-green-hover);
}

/* line 332, app/assets/stylesheets/form.scss */
.voucher-success {
  border: 1px solid var(--color-green);
  padding: 1rem;
  padding-right: 0.5rem;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  display: flex;
  gap: 0.5rem;
}

/* line 341, app/assets/stylesheets/form.scss */
.voucher-success .icon {
  color: var(--color-green);
}

/* line 344, app/assets/stylesheets/form.scss */
.voucher-success .icon svg {
  width: 1rem;
  height: 1rem;
}

/* line 350, app/assets/stylesheets/form.scss */
.voucher-success section {
  flex: 1;
}

/* line 353, app/assets/stylesheets/form.scss */
.voucher-success section span {
  color: var(--color-gray-500);
}

/* line 358, app/assets/stylesheets/form.scss */
.voucher-success .remove-btn {
  padding-block: 0.5rem;
  padding-inline: 0.85rem;
  font-weight: 600;
  color: var(--color-red);
  background-color: var(--color-white);
}

/* line 365, app/assets/stylesheets/form.scss */
.voucher-success .remove-btn:hover:not(:disabled) {
  color: var(--color-white);
  background-color: var(--color-red);
}

/* line 372, app/assets/stylesheets/form.scss */
.input-with-pound-sign {
  position: relative;
}

/* line 375, app/assets/stylesheets/form.scss */
.input-with-pound-sign::before {
  content: "£";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-gray-500);
}

/* line 385, app/assets/stylesheets/form.scss */
.input-with-pound-sign input[type="number"] {
  padding-left: 2rem;
}
/* line 7, app/assets/stylesheets/layout.scss */
html,
body {
  min-height: 100dvh;
}

/* line 12, app/assets/stylesheets/layout.scss */
body {
  display: flex;
  flex-direction: column;
  height: inherit;
  margin: 0;
  padding: 0;
  background-color: var(--color-light-gray);
}

/* line 21, app/assets/stylesheets/layout.scss */
dd,
dt {
  margin-block-end: 1rem;
}

/* line 26, app/assets/stylesheets/layout.scss */
dd {
  grid-column-start: 2;
  text-align: right;
}

/* line 31, app/assets/stylesheets/layout.scss */
dt {
  grid-column-start: 1;
}

/* line 35, app/assets/stylesheets/layout.scss */
dl {
  display: grid;
}

/* line 39, app/assets/stylesheets/layout.scss */
footer {
  display: flex;
}

/* line 43, app/assets/stylesheets/layout.scss */
footer {
  grid-column: 1 / -1;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1rem 0;
}

/* line 49, app/assets/stylesheets/layout.scss */
footer > * {
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* line 55, app/assets/stylesheets/layout.scss */
h1,
h2 {
  margin: 0 0 1.5rem;
}

/* line 60, app/assets/stylesheets/layout.scss */
header {
  --bg-color: var(--color-navy);
  --text-color: var(--color-white);
  height: var(--header-height);
  background-color: var(--bg-color);
}

/* line 66, app/assets/stylesheets/layout.scss */
header section {
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 72, app/assets/stylesheets/layout.scss */
header section a:link {
  color: var(--text-color);
}

/* line 78, app/assets/stylesheets/layout.scss */
p.error,
p.notice,
p.pending,
p.success {
  margin-block-end: 1rem;
  padding: 1rem;
}

/* line 86, app/assets/stylesheets/layout.scss */
section {
  margin: 1rem 0 0;
}

/* line 89, app/assets/stylesheets/layout.scss */
section:first-of-type {
  margin-block-start: 0;
}

/* line 94, app/assets/stylesheets/layout.scss */
table.passengers {
  margin: 0.5em 0 1em;
  width: 100%;
}

/* line 98, app/assets/stylesheets/layout.scss */
table.passengers td,
table.passengers th {
  padding: 0.4rem;
}

/* line 104, app/assets/stylesheets/layout.scss */
ul.error {
  padding-inline: 1rem;
}

/* line 107, app/assets/stylesheets/layout.scss */
ul.error li {
  padding-block: 1rem;
}

/* line 112, app/assets/stylesheets/layout.scss */
#accreditation {
  width: 60%;
  height: 4rem;
}

@media (min-width: 769px) {
  /* line 112, app/assets/stylesheets/layout.scss */
  #accreditation {
    width: 20rem;
  }
}

/* line 121, app/assets/stylesheets/layout.scss */
#logo {
  width: Min(40vw, 150px);
  height: var(--header-height);
}

/* line 126, app/assets/stylesheets/layout.scss */
.spinner {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-block-start: 10px;
}

/* line 132, app/assets/stylesheets/layout.scss */
.spinner .loading {
  width: 90px;
  height: 90px;
}

/* line 138, app/assets/stylesheets/layout.scss */
.container {
  --content-width: 50rem;
  display: grid;
  grid-template-columns: 1rem [content-start] minmax(0, 1fr) [content-end] 1rem;
}

/* line 144, app/assets/stylesheets/layout.scss */
.container [data-component="content"] {
  grid-column: content;
}

@media (min-width: 769px) {
  /* line 138, app/assets/stylesheets/layout.scss */
  .container {
    grid-template-columns: [side-start] minmax(1rem, 1fr) [content-start] minmax(auto, var(--content-width)) [content-end] minmax(1rem, 1fr);
  }
}

/* line 155, app/assets/stylesheets/layout.scss */
.wide {
  --content-width: 70rem;
}

/* line 159, app/assets/stylesheets/layout.scss */
main {
  flex: 1;
}

/* line 162, app/assets/stylesheets/layout.scss */
main [data-component="content"] {
  padding-block: 2rem;
}

/* line 167, app/assets/stylesheets/layout.scss */
.payment-summary {
  background-color: var(--color-white);
  outline: 1px solid var(--color-cool-gray);
  border-radius: 0.25rem;
  padding: 1rem;
}

@media (min-width: 769px) {
  /* line 167, app/assets/stylesheets/layout.scss */
  .payment-summary {
    padding: 2rem;
  }
}

/* line 177, app/assets/stylesheets/layout.scss */
.payment-summary h3 {
  margin-top: 0;
}

/* line 181, app/assets/stylesheets/layout.scss */
.payment-summary dl {
  row-gap: 1rem;
}

/* line 185, app/assets/stylesheets/layout.scss */
.payment-summary dd,
.payment-summary dt:last-of-type {
  font-weight: 600;
}

/* line 190, app/assets/stylesheets/layout.scss */
.payment-summary dt:last-of-type,
.payment-summary dd:last-of-type {
  font-size: 1.25rem;
}

/* line 195, app/assets/stylesheets/layout.scss */
.payment-summary dd,
.payment-summary dt,
.payment-summary dl {
  margin: 0;
  font-size: 0.875rem;
}

/* line 202, app/assets/stylesheets/layout.scss */
.payment-summary .divider {
  grid-column: 1 / 3;
}

/* line 207, app/assets/stylesheets/layout.scss */
.divider {
  width: 100%;
  height: 2px;
  background-color: var(--color-cool-gray);
}

/* line 213, app/assets/stylesheets/layout.scss */
.payment-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 769px) {
  /* line 213, app/assets/stylesheets/layout.scss */
  .payment-row {
    flex-direction: row;
  }
}

/* line 222, app/assets/stylesheets/layout.scss */
.payment-row dl {
  border-radius: 0.75rem;
  border: 1px solid var(--color-cool-gray);
  padding: 1rem;
  flex: 1;
  margin: 0;
}

/* line 229, app/assets/stylesheets/layout.scss */
.payment-row dl dt,
.payment-row dl dd {
  margin: 0;
}

/* line 233, app/assets/stylesheets/layout.scss */
.payment-row dl dt:nth-of-type(n + 3),
.payment-row dl dd:nth-of-type(n + 3) {
  color: var(--color-gray-500);
}

/* line 238, app/assets/stylesheets/layout.scss */
.payment-row dl strong {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
/* line 1, app/assets/stylesheets/payment_success.scss */
.payment-success {
  width: Min(100%, 650px);
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* line 9, app/assets/stylesheets/payment_success.scss */
.payment-success .success-block {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  align-self: stretch;
}

/* line 17, app/assets/stylesheets/payment_success.scss */
.payment-success .icon {
  width: 3rem;
  height: 3rem;
}

/* line 21, app/assets/stylesheets/payment_success.scss */
.payment-success .icon svg {
  width: 100%;
}

/* line 26, app/assets/stylesheets/payment_success.scss */
.payment-success h2 {
  margin-top: 1.25rem;
}

/* line 30, app/assets/stylesheets/payment_success.scss */
.payment-success p {
  margin-top: 0;
  text-align: center;
}

/* line 35, app/assets/stylesheets/payment_success.scss */
.payment-success dl {
  margin: 0;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 1rem;
  align-self: stretch;
  row-gap: 0.875rem;
  outline: 2px solid var(--color-green-border-fade);
}

/* line 44, app/assets/stylesheets/payment_success.scss */
.payment-success dl dt,
.payment-success dl dd {
  margin: 0;
}

/* line 48, app/assets/stylesheets/payment_success.scss */
.payment-success dl dt:not(:first-of-type),
.payment-success dl dd:not(:first-of-type) {
  color: var(--color-success-green);
  font-size: 0.875rem;
}

/* line 55, app/assets/stylesheets/payment_success.scss */
.payment-success a {
  text-decoration: underline;
  color: var(--color-blue);
  font-weight: 400;
  text-align: center;
}

/* line 62, app/assets/stylesheets/payment_success.scss */
.payment-success .remaining-balance-note {
  font-style: italic;
  margin-top: 1em;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
