:root {
  --primary-color: #11709b;
  --primary-dark: #0e5e82;
  --primary-light: #ECF6FD;
  --color-danger: #b60d10;
  --color-warning: #b65f0f;
  --color-success: #0e816c;
  --color-info: #5a67bf;
  --bg-primary: #fefefe;
  --bg-disabled: #dfdfdf;
  --bg-outline: #efefef;
  --bg-danger: #F1E8E9;
  --font-family-default: lato-regular;
  --fs-200: 0.5rem;
  --fs-300: 0.75rem;
  --fs-400: 0.875rem;
  --fs-500: 1rem;
  --fs-600: 1.125rem;
  --fs-700: 1.5rem;
  --text-white: #fefefe;
  --text-contrast: #1D1617;
  --text-primary: #11709b;
  --text-disabled: #5C5C5C;
  --system-colours-danger-dark: #B60D10;
  --text-black-high-emphasis: #514f4f;
  --clr-neutral-100: #242424;
  --clr-neutral-200: #666666;
  --clr-neutral-300: #5C5C5C;
  --clr-neutral-600: #DFDFDF;
  --clr-neutral-700: #fefefe;
  --text-black-medium-emphasis: #666666;
  --card-border: 1px solid transparent;
}

.h1 {
  font-family: lato-bold !important;
  font-size: var(--fs-700);
  font-style: normal;
  font-weight: 700;
  line-height: 2.25rem;
}

.h2 {
  font-family: lato-bold !important;
  font-size: var(--fs-600);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
}

.h3 {
  font-family: lato-bold !important;
  font-size: var(--fs-500);
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
}

.h5 {
  font-family: lato-bold !important;
  font-size: var(--fs-300);
  font-style: normal;
  font-weight: 700;
  line-height: 0.75rem;
}

.subtitle {
  font-family: lato-regular;
  font-size: var(--fs-500);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

.p {
  font-family: lato-medium !important;
  font-size: var(--fs-500);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.p-bold {
  font-family: lato-bold !important;
  font-size: var(--fs-500);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}

.caption {
  color: var(--text-black-high-emphasis);
  font-family: lato-medium;
  font-size: var(--fs-400);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.caption-bold {
  font-family: lato-bold;
  font-size: var(--fs-400);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.caption-small {
  font-family: lato-medium;
  font-size: var(--fs-300);
  font-style: normal;
  font-weight: 500;
  line-height: 1.125rem;
}

.text-danger {
  color: var(--system-colours-danger-dark) !important;
}

.text-black {
  color: var(--text-black-high-emphasis) !important;
}

.text-primary {
  color: var(--primary-color);
}

button {
  border: none;
  border-radius: 2rem;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--text-white);
}
button.btn-small {
  padding: 0.875rem;
}
button:active {
  background-color: var(--primary-dark);
}
button:disabled, button[disabled] {
  background-color: var(--clr-neutral-600);
  color: var(--text-disabled);
}
button.btn-secondary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color, #11709B);
  background: var(--clr-neutral-700, #FEFEFE);
  box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
}
button.btn-secondary:active {
  background: var(--primary-light, #ECF6FD);
}
button.btn-secondary:disabled, button.btn-secondary[disabled] {
  border: 1px solid #DFDFDF;
  background-color: var(--clr-neutral-700);
  color: var(--text-disabled);
}
button.btn-text {
  border: none;
  padding: 0;
  background-color: transparent;
  color: var(--primary-color);
}
button.btn-text:disabled, button.btn-text[disabled] {
  color: var(--text-disabled);
}
button.btn-warning {
  padding: 0.875rem;
  border-radius: 2rem;
  color: var(--color-danger);
  border: 1px solid var(--color-danger);
  background: var(--clr-neutral-700);
  box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
}
button.btn-warning:active {
  background: var(--bg-danger);
}
button.btn-warning:disabled, button.btn-warning[disabled] {
  border: 1px solid #DFDFDF;
  background-color: var(--clr-neutral-700);
  color: var(--text-disabled);
}
button.btn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.8125rem;
  border: 1px solid var(--primary-color);
  background: var(--clr-neutral-700);
  padding: 0;
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
}
button.btn-icon:active {
  background: var(--primary-light, #ECF6FD);
}
button.btn-icon:disabled, button.btn-icon[disabled] {
  border-color: #DFDFDF;
}
button.btn-icon:disabled > svg > path, button.btn-icon[disabled] > svg > path {
  fill: var(--text-disabled);
}

.card {
  padding: 1rem;
  border-radius: 1.25rem;
  background: var(--bg-primary);
  box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
  border: 1px solid transparent;
}

.card-selected {
  border: 1px solid var(--primary-color);
}

select {
  margin-block: 10px;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
  outline: none;
  background-position: right 5rem top 50%;
  border: 1px solid transparent;
}
select:focus {
  border: 1px solid var(--primary-color);
}
select:disabled {
  background: var(--bg-disabled);
  color: var(--text-disabled);
}
select:required:invalid {
  color: var(--text-black-medium-emphasis, #666);
}
select option[value=""][disabled] {
  display: none;
}
select option {
  color: var(--clr-neutral-100);
}

select::-ms-expand {
  display: none;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 3.5rem !important;
  height: 1.75rem;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  outline: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  border-radius: 50%;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.25rem;
  width: 1.25rem;
  left: 0.25rem;
  bottom: 0.25rem;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #11709B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(1.625rem);
  -ms-transform: translateX(1.625rem);
  transform: translateX(1.625rem);
}

input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  height: 1.75rem;
  width: 1.75rem;
  padding: 0.5rem !important;
  border-radius: 100%;
  margin: 0.25rem;
  border: 1px solid var(--clr-neutral-300);
  align-self: center;
}
input[type=radio]:disabled {
  border: 1px solid #aaa;
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.6;
}
input[type=radio]:checked {
  border-radius: 100%;
  border: 1px solid var(--primary-color);
}
input[type=radio]:checked::before {
  position: relative;
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20id%3D%22Checkbox%22%3E%20%3Cpath%20id%3D%22Vector%22%20d%3D%22M16%204C9.33333%204%204%209.33333%204%2016C4%2022.6667%209.33333%2028%2016%2028C22.6667%2028%2028%2022.6667%2028%2016C28%209.33333%2022.6667%204%2016%204ZM22.2667%2012.9333L14.9333%2020.9333C14.6667%2021.2%2014.2667%2021.3333%2014%2021.3333C13.7333%2021.3333%2013.3333%2021.2%2013.0667%2020.9333L9.73333%2017.3333C9.2%2016.8%209.33333%2016%209.86667%2015.4667C10.4%2014.9333%2011.2%2015.0667%2011.7333%2015.6L14%2018.1333L20.4%2011.2C20.9333%2010.6667%2021.7333%2010.6667%2022.2667%2011.0667C22.8%2011.4667%2022.8%2012.4%2022.2667%2012.9333Z%22%20fill%3D%22%2311709B%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E");
  top: 3px;
  right: 11px;
  transform: scale(120%);
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.form-group > * {
  width: 100%;
}

.form-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: auto;
}
.form-actions > * {
  flex: 1;
}

.form-group-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

label {
  color: var(--text-black-medium-emphasis, #666);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3125rem;
}

input,
select {
  position: relative;
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  border-radius: 1rem;
  background: var(--surface-white, #FEFEFE);
  box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
  -webkit-appearance: none;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
  height: 55px;
  border: 1px solid transparent;
  outline: none;
}
input:not(.input-validation-error):hover,
select:not(.input-validation-error):hover {
  border: 1px solid var(--primary-color);
}
input:not(.input-validation-error):not(.error):focus,
select:not(.input-validation-error):not(.error):focus {
  border: 1px solid var(--primary-color) !important;
}
input[type=date],
select[type=date] {
  display: block;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.stripe-input {
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 5px;
  transition: background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #30313d;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 4px;
}

.stripe-label {
  margin-bottom: 0.25rem;
  font-size: 0.93rem;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #30313d;
  font-size: 0.875rem;
  font-weight: 400;
}

.error,
.invalid-feedback {
  margin-top: 0.25rem;
  color: #df1b41;
  font-size: 0.93rem;
}

input.error,
.input-validation-error {
  outline: none;
  color: #df1b41;
  border-color: #df1b41 !important;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), 0 0 0 1px #df1b41;
}

::-webkit-input-placeholder { /* WebKit browsers */
  text-transform: none;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  text-transform: none;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  text-transform: none;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  text-transform: none;
}

::placeholder { /* Recent browsers */
  text-transform: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  padding: 1rem;
  align-items: center;
  z-index: 1;
  left: auto;
  right: 1rem;
}

.dropdown-content.show {
  padding: 0rem;
  box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
  display: flex;
  flex-direction: column;
  width: 13.75rem;
  align-items: stretch;
}
.dropdown-content.show > button {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

#modal-container {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  opacity: 0.3;
  background: #757575;
  z-index: 40000;
  top: 0;
  left: 0;
  overflow: hidden;
}

.modal {
  display: none;
  top: 0;
  position: fixed;
  z-index: 40001;
  width: 100vw;
  justify-content: stretch;
  align-items: center;
  height: 100vh;
  height: 100dvh;
}
.modal > .card {
  margin-inline: 1rem;
}

.modal-open {
  overflow: hidden;
}

.modal-close {
  overflow: inherit;
  height: auto;
}

.modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: none;
  gap: 1.25rem;
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 0.75rem;
  align-items: flex-start;
}

.modal-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.modal-actions > * {
  flex: 1;
}

.modal-body {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  max-height: 80%;
}

.space-modal {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-modal {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

#addPlateForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
#addPlateForm .p {
  color: #1D1617;
}
#addPlateForm #selectState {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}
#addPlateForm #selectLicensePlate {
  text-transform: uppercase;
}

#plateForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
#plateForm > button {
  justify-self: flex-end;
  margin-top: auto;
}
#plateForm .plate-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#plateForm .plate-header > p {
  color: #1D1617;
}
#plateForm .plate-header > button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#plateForm .plate-list {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  overflow-y: auto;
  height: calc(100svh - 81px - 80px - 24px - 140px);
}
#plateForm .vehicle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
#plateForm .vehicle .card-title {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
}

@media screen and (max-height: 415px) {
  #plateForm .plate-list {
    overflow-y: hidden;
    height: auto;
  }
}
#rateForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
#rateForm .rate-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
#rateForm .rate-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  height: calc(100svh - 81px - 80px - 24px - 140px);
}

.rate-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  height: auto;
}
.rate-card > .rate-card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-grow: 1;
}
.rate-card > .rate-card-body > .rate-card-title {
  display: flex;
  align-self: center;
  flex-direction: column;
}
.rate-card > .rate-card-body > .rate-card-title.disabled {
  color: #999;
  opacity: 0.6;
  cursor: not-allowed;
}
.rate-card > .rate-card-body > .rate-card-amount {
  align-self: center;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
.rate-card > .rate-card-body > .rate-card-amount.disabled {
  filter: grayscale(100%) opacity(0.5);
  cursor: not-allowed;
}

.close-modal-button {
  scale: 1.5;
  margin-top: 0.3rem;
  margin-right: 0.3rem;
}

.counter {
  display: flex;
  width: 8rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.counter button {
  font-size: 1.25rem;
}
.counter #counter-value {
  flex: 1;
  text-align: center;
}

.no-rates {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.no-rate-date-and-time {
  text-align: center;
  margin-top: 1rem;
}

@media screen and (max-height: 415px) {
  #rateForm .rate-list {
    overflow-y: hidden;
    height: auto;
  }
}
.full-price-wrapper {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: var(--fs-200);
}

.receipt-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.25rem !important;
}
.receipt-container .receipt-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.receipt-container > .receipt-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-black-high-emphasis);
}
.receipt-container .expires-at {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-black-high-emphasis);
}
.receipt-container .label {
  color: var(--text-black-medium-emphasis);
}
.receipt-container .value {
  color: var(--text-black-high-emphasis);
}
.receipt-container #emailFormPlaceholder {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
.receipt-container .receipt-email-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.receipt-container .receipt-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.receipt-container .receipt-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: row;
}
.receipt-container .receipt-total > .card-info {
  display: flex;
  gap: 0.5rem;
}
.receipt-container .receipt-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.receipt-container .receipt-end .park-happy-logo {
  width: 4rem;
}
.receipt-container .receipt-end .footer-message {
  margin-inline: 2rem;
}

.receipt-message {
  padding: 1.25rem;
  animation: fadeIn 1s;
}
.receipt-message .message-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--color-success);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.receipt-message .message-header > span {
  flex-grow: 1;
}
.receipt-message .message-body {
  color: var(--text-black-high-emphasis);
}

.receipt-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.receipt-actions > button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.customer-details {
  color: var(--text-black-high-emphasis);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  padding: 2rem 0.5rem !important;
}
.customer-details > span, .customer-details > span > button {
  font-size: 1.25rem;
  word-break: break-word;
}

.access-code-message {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 22px;
  margin-top: 15px;
}

.totp-input {
  display: flex;
  margin-top: 8px;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.totp-input input:nth-child(4) {
  margin-left: 25px;
}

.totp-box {
  width: 50px;
  height: 70px;
  font-size: 24px;
  border: 1px solid #000;
  text-align: center;
}

#error-message {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1rem;
}

.container > .panel-header {
  font-size: var(--fs-600);
}

.logo-text {
  width: 5rem;
  height: 5rem;
  margin: auto;
}

#qr-code {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: transparent;
  color: var(--text-black-high-emphasis);
  text-decoration: underline;
}

#qr-scanner {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#qr-scanner svg {
  color: var(--primary-color);
}

#countdown-expired-panel {
  text-align: center;
  margin-top: 8px;
}

#payment-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#payment-form > .p {
  margin-bottom: 1.25rem;
}
#payment-form > #cardNameInput {
  margin-bottom: 0.75rem;
}
#payment-form > #payment-element {
  margin-bottom: 1.25rem;
}

#payment-method-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.25rem;
}
#payment-method-form .pay-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#payment-method-form .pay-header > p {
  color: #1D1617;
}
#payment-method-form .pay-header > button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
  margin-bottom: auto;
}

.payment-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.payment-item .item-body {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
}

.summary-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.summary-form > .p {
  color: #1D1617;
  margin-bottom: 1.5rem;
}
.summary-form > .form-actions {
  margin-top: auto;
}

.summary-selected-card-title {
  color: var(--text-black-high-emphasis);
}

.summary-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.summary-row > button {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: normal;
}
.summary-row input[type=text] {
  width: 85%;
}

.coupon-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.coupon-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

.coupon-title {
  font-size: 1rem;
}
.coupon-title strong {
  font-weight: 700;
}

.coupon-discount {
  font-size: 0.95rem;
  margin-top: 2px;
}

.coupon-collapse.hidden {
  display: none;
}

.toggle-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
  color: #11709B;
}

.summary-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.summary-wrapper > .card {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.notification-message {
  border: 1px solid #B60D10;
  margin-bottom: 1rem;
}
.notification-message > .message-header {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.notification-message > .message-header > span {
  flex: 1;
  color: #B60D10;
}

#stallNumberForm {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#stallNumberForm > .p {
  color: #1D1617;
  margin-bottom: 1.5rem;
}
#stallNumberForm > #submitButton {
  margin-top: auto;
}

.lots-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  padding-inline: 1.5rem;
  margin-top: 1.5rem;
}
.lots-list > a {
  text-decoration: none;
}

.align-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  padding-bottom: 0.75rem;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.align-bottom > * {
  justify-self: flex-end;
  margin-top: auto;
}

#park-until-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
#park-until-form > .p {
  margin-bottom: 1rem;
}

#amount-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.amount-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#date-picker {
  border: 1px solid var(--primary-color) !important;
}

.error-wrapper img {
  width: 50%;
}

.error-message {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
  text-align: center;
}

.spacer {
  padding-bottom: 5rem;
}

.back-button {
  display: block;
  margin: 0.75em auto;
  padding: 0.75em;
  min-width: 300px;
  border: 0.1em solid gray;
}

/* This file is additional styles for ASP/JQuery validation. */
.field-validation-valid {
  display: none;
}

.input-validation-error {
  border: 1px solid #ff0000 !important;
}

.field-validation-error > span,
.field-validation-error {
  color: #df1b41 !important;
}

@font-face {
  font-family: "lato-bold";
  src: url("../fonts/lato-bold.woff2") format("woff2");
}
@font-face {
  font-family: "lato-medium";
  src: url("../fonts/lato-medium.woff2") format("woff2");
}
@font-face {
  font-family: "lato-regular";
  src: url("../fonts/lato-regular.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: var(--text-black-high-emphasis);
}

img,
svg {
  display: block;
  max-width: 100%;
}

body {
  width: 100%;
  font-family: var(--font-family-default);
  font-size: var(--fs-500);
}

label {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style-type: none;
}

.header {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid var(--surface-outline, #EFEFEF);
}
.header img {
  width: 3.75rem;
}
.header div {
  text-align: right;
}

nav > ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 5rem;
}
nav > ul > .nav-item:nth-child(2) {
  display: flex;
  justify-content: center;
}
nav > ul > .nav-item:nth-child(3) {
  display: flex;
  justify-content: flex-end;
}
nav > ul .nav-item-icon {
  position: relative;
  text-align: center;
}
nav > ul .nav-item-icon circle {
  stroke-width: 1px;
  stroke: #5E686F;
}
nav > ul .nav-item-line {
  flex: 1 content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-grow: 1;
}
nav > ul .nav-item-line.active {
  border-bottom: 0.125rem solid var(--text-primary);
  border-image: linear-gradient(to left, transparent 50%, var(--text-primary) 50%);
  border-image-slice: 1;
}
nav > ul .nav-item-line.completed {
  border-bottom: 0.125rem solid var(--text-primary);
}
nav > ul .dotted-line {
  background: linear-gradient(to right, transparent 50%, #5E686F 50%);
  background-size: 5px 2px, 100% 2px;
  flex-grow: 1;
  height: 0.0625rem;
}
nav > ul .nav-item-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5E686F;
  font-family: lato-medium;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
nav > ul .nav-item-title {
  color: #5C5C5C;
  font-family: lato-medium;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
nav > ul .nav-item {
  flex: 1 content;
  width: fit-content;
  flex-shrink: 1;
  flex-grow: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
nav > ul .nav-item.active {
  border-bottom: 0.125rem solid var(--text-primary);
}
nav > ul .nav-item.active circle {
  stroke-width: 2px;
  stroke: var(--text-primary);
}
nav > ul .nav-item.active .nav-item-title,
nav > ul .nav-item.active .nav-item-number {
  color: var(--text-primary);
  font-family: lato-bold;
  font-size: var(--fs-400);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}
nav > ul .nav-item.completed {
  border-bottom: 0.125rem solid var(--text-primary);
}
nav > ul .nav-item.completed circle {
  fill: var(--primary-color);
  stroke-width: 2px;
  stroke: var(--primary-color);
}
nav > ul .nav-item.completed .nav-item-number {
  color: var(--text-white);
  font-family: lato-bold;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
nav > ul .nav-item.completed .nav-item-title {
  color: var(--text-primary);
  font-family: lato-medium;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

.container {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  min-height: calc(100dvh - 80px - 81px);
  display: flex;
  flex-direction: column;
}

.full-container {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  min-height: calc(100dvh - 81px) !important;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none;
}

.hr {
  height: 1px;
  background-color: var(--bg-outline);
  border: none;
  margin-inline: 1.25rem;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.error-wrapper {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}
.error-wrapper > .p-bold {
  margin-top: 1rem;
  color: var(--text-black-medium-emphasis);
}

.card-icon {
  height: 19px;
}

.hr-line {
  height: 1px;
  background-color: var(--bg-outline);
  border: none;
  margin-inline: 1.25rem;
}

.fill-space {
  flex: 1;
}

.push-bottom {
  flex: 1;
}

/*# sourceMappingURL=app.css.map */
