:root {
  --color-bg: #f7f2ed;
  --color-black: #000;
  --color-white: #fff;
  --color-text-secondary: #6B7484;
  --color-text-placeholder: #6B7484;
  --color-accent: #C7361D;
  --color-primary-start: #3B96FF;
  --color-primary-end: #FF8229;
  --color-popup-start: #F7F2EDB2;
  --color-popup-end: #918E8BB2;

  --gradient-primary: linear-gradient(90deg, var(--color-primary-start) 0%, var(--color-primary-end) 100%);
  --gradient-popup-bg: linear-gradient(180deg, var(--color-popup-start) 0%, var(--color-popup-end) 100%);

  --font-size-base: 3.5185vw;
  --font-size-h1: 5.185185vw;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("/font/ZenMaruGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("/font/ZenMaruGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

html, body {
  /* タッチ操作を一切受け付けない（クリック/タップのみ有効にする） */
  touch-action: none;
  
  /* ユーザーによるテキスト選択も禁止（サイネージ向け） */
  user-select: none;
  -webkit-user-select: none;
  
  /* 長押しによるコンテキストメニュー（右クリック）を禁止 */
  -webkit-touch-callout: none;

  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
body {
  background: var(--color-bg);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size-base);
  color: var(--color-black);
}
p {
  margin: 0;
}

main {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 3.1481vw;
  font-weight: 700;
  line-height: 1;
  border: none;
  border-radius: 9.2592vw;
  min-width: 47.777vw;
  height: 8.8888vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.large-btn {
  font-size: 4.6296vw;
  height: 18.5185vw;
  min-width: 83.333vw;
  border-radius: 1.3888vw;
}
.process-end-btn {
  width: 27.777vw;
  height: 27.777vw;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
  border: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.process-end-btn img {
  width: 4.6296vw;
  height: 4.6296vw;
  margin-bottom: 3.8888vw;
}
.mic-switch-btn {
  width: 27.777vw;
  height: 27.777vw;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 4.0740vw;
  border: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.mic-switch-btn.muted {
  background: #fffb;
  border: none;
  color: #6B7484;
  position: relative;
}
.mic-switch-btn.muted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  padding: 0.3703vw;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}
.mic-switch-btn img {
  height: 7.4074vw;
  height: 7.4074vw;
  margin-bottom: 1.1111vw;
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 3.9814vw;
}
h1 {
  display: inline-block;
  margin: 8.333vw auto 0 auto;
  padding-bottom: 1.85185vw;
  font-size: var(--font-size-h1);
  font-weight: 700;
  border-bottom: 0.648vw dotted var(--color-accent);
}
.avatar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.avatar-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#realTimeAvatarVideo {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
}
#realTimeAvatarVideo.active {
  z-index: 1;
}
.flow-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5.5555vw;
  background: var(--gradient-popup-bg);
  backdrop-filter: blur(1.3888vw);
  z-index: 10;
}
.flow-wrap.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.3703vw;
}
.flow-wrap.intro p {
  font-size: 3.7037vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.emphasis {
  position: relative;
}
.emphasis::after {
  content: '';
  position: absolute;
  top: -2.4074vw;
  left: -2.4074vw;
  width: 32.592vw;
  height: 32.592vw;
  background: #5d5d5d44;
  mix-blend-mode: multiply;
  z-index: -1;
  border-radius: 100%;
}
.btn-desc-popup {
  background-image: url('/img/flow/btn_desc_popup_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3.5185vw 5.5555vw 5.9259vw 5.5555vw;
  margin-left: 31.759vw;
  font-weight: 700;
  line-height: 4.4444vw;
  text-align: center;
}
.flow-header {
  margin-bottom: 2.7777vw;
  position: relative;
}
.flow-title {
  padding: 0.9259vw 0;
  font-weight: 700;
  text-align: center;
}
.flow-back {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  line-height: 1.5;
  border: none;
  border-bottom: 0.3703vw solid var(--color-black);
  background: transparent;
  cursor: pointer;
}
.flow-input {
  padding: 3.0555vw 3.7037vw;
  margin-bottom: 3.7037vw;
  color: var(--color-black);
  font-size: 3.1481vw;
  font-weight: 700;
  line-height: 1;
  background: var(--color-bg);
  border-radius: 9.2592vw;
  position: relative;
}
.flow-input-placeholder {
  display: block;
  padding-left: 6.1111vw;
  color: var(--color-text-placeholder);
  position: relative;
}
.flow-input-placeholder::before {
  content: url('/img/icon/mic_off_b.png');
  position: absolute;
  left: 0;
  width: 3.9814vw;
  height: 4.2592vw;
}
.flow-input-text {
  display: block;
  padding-left: 6.1111vw;
}
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3703vw;
  width: 2.9629vw;
  position: absolute;
  left: 3.7037vw;
  top: 50%;
  transform: translateY(50%);
}
.dot {
  width: 0.7407vw;
  height: 0.7407vw;
  background-color: var(--color-black);
  border-radius: 50%;
  animation: fluffy 0.6s infinite alternate;
}
/* 2番目と3番目のドットに遅延を入れる */
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes fluffy {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-80%);
    opacity: 1;
  }
}
.flow-input-text {
  display: block;
}
.flow-options {
  display: flex;
  gap: 2.7777vw;
}
.flow-option {
  flex: 1;
  height: 38.148vw;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 1.3888vw;
  padding: 6.9444vw 0;
  border: 0.5555vw solid var(--color-black);
  border-radius: 5.5555vw;
  font-weight: 700;
  line-height: 1.5;
}
.flow-option.touched {
  border-color: var(--color-accent);
}
.flow-option img {
  height: 12.777vw;
  object-position: center;
  object-fit: none;
}
.flow-option::after {
  content: url('/img/icon/arrow_right.png');
  width: 8.333vw;
  height: 8.333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  position: absolute;
  bottom: -0.5555vw;
  right: -0.5555vw;
  border-top-left-radius: 5.5555vw;
  border-bottom-right-radius: 5.5555vw;
}
.flow-option.touched::after {
  background: var(--color-accent);
}
.other-option {
  margin-top: 1.6666vw;
}
.flow-buttons {
  margin-top: 3.7037vw;
}
.flow-other-option {
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 700;
  line-height: 1.5;
  border: 0.5555vw solid var(--color-black);
  border-radius: 5.5555vw;
  padding: 2.2222vw;
  width: 51.8518vw;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.flow-other-option::after {
  content: url('/img/icon/arrow_right_black.png');
  position: absolute;
  right: 5.5555vw;
}
.flow-wrap.show-img-full {
  height: 100%;
  padding: 0 5.5555vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6.4814vw;
}
.show-img-full img {
  max-width: 100%;
  height: auto;
}
.flow-wrap.show-img {
  padding: 5.5555vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.7037vw;
}
.flow-content .flow-back-btn,
.flow-content .flow-next-btn {
  width: 13.5185vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5925vw;
  background: var(--color-white);
  color: var(--color-text-secondary);
  border: none;
  border-radius: 0.9259vw;
  font-size: 2.4074vw;
}
.flow-content .flow-next-btn {
  background: var(--color-accent);
  color: var(--color-white);
}
.flow-wrap.camera {
  opacity: 0;
  z-index: -1;
}
.flow-wrap.camera.show-ocr {
  opacity: 1;
  z-index: 10;
}
.flow-wrap.camera video {
  border-radius: 2.7777vw;
}
.stt-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60.1851vw;
  height: 60.1851vw;
  opacity: 0;
  pointer-events: none;
  background: #00000066;
  color: var(--color-white);
  backdrop-filter: blur(1.3888vw);
  border-radius: 100%;
  font-size: 6.4814vw;
  font-weight: 700;
  z-index: 100;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.stt-notification img {
  width: 23.1481vw;
  height: 23.1481vw;
}
.stt-notification span {
  font-size: 3.7037vw;
  margin-top: 1.8518vw;
}
.stt-notification.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: sttNotificationFade 1.5s ease-out forwards;
}
@keyframes sttNotificationFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  75% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05) translate(0, 1vw);
    opacity: 0.9;
  }
}
.loading-container-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8.3333vw;
  width: 60.1851vw;
  height: 60.1851vw;
  pointer-events: none;
  background: #00000066;
  color: var(--color-white);
  backdrop-filter: blur(1.3888vw);
  border-radius: 100%;
  font-size: 6.4814vw;
  font-weight: 700;
  z-index: 100;
}
.loading-container-wrap .loading-container {
  position: static;
  width: 19.4444vw;
  gap: 1.8518vw;
}
.loading-container-wrap .loading-container .dot{
  width: 4.6296vw;
  height: 4.6296vw;
}
.loading-container-wrap span {
  font-size: 3.7037vw;
  line-height: 1.5;
  text-align: center;
}

/* お客さま情報テーブル */
.customer-info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 1.3888vw;
  overflow: hidden;
  font-size: 2.2222vw;
  font-weight: 700;
}

.customer-info-table thead th {
  background: var(--color-white);
  color: var(--color-black);
  text-align: center;
  padding: 2.2222vw;
  border-bottom: 0.1851vw solid var(--color-black);
}

.customer-info-table tbody tr {
  border-bottom: 0.1851vw solid var(--color-black);
}

.customer-info-table tbody tr:last-child {
  border-bottom: none;
}

.customer-info-table tbody td {
  padding: 1.8518vw 2.7777vw;
  border-right: 0.1851vw solid var(--color-black);
  text-align: left;
}

.customer-info-table tbody td:last-child {
  border-right: none;
}

.customer-info-table tbody td.label {
  background: #E8DDD1;
}

.customer-info-table tbody td.value {
  background: var(--color-bg);
}

/* 日付ピッカー */
.input-card {
  background: var(--color-white);
  border-radius: 2.7777vw;
  overflow: hidden;
  padding: 3.7037vw;
}

.input-header {
  margin-bottom: 3.7037vw;
}

.input-title {
  font-size: 3.1481vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.7777vw;
  color: var(--color-black);
}

.input-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.7777vw;
}

.input-month-label {
  font-size: 3.1481vw;
  font-weight: 400;
  color: var(--color-black);
  flex: 1;
  text-align: center;
}

.input-arrow {
  width: 6.4814vw;
  height: 6.4814vw;
  background: transparent;
  border: none;
  font-size: 4.6296vw;
  font-weight: 400;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

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

.input-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.input-week:last-child {
  margin-bottom: 0;
}

.input-week-labels {
  margin-bottom: 1.8518vw;
}

.input-weekday {
  font-size: 2.4074vw;
  font-weight: 400;
  color: var(--color-black);
  text-align: center;
  padding: 0.9259vw 0;
}

/* 日曜日（1列目）を赤色に */
.input-week-labels .input-weekday:nth-child(1),
.input-week .input-day:nth-child(1) {
  color: var(--color-accent);
}

/* 土曜日（7列目）を青色に */
.input-week-labels .input-weekday:nth-child(7),
.input-week .input-day:nth-child(7) {
  color: #1F59A4;
}

.input-day {
  background: var(--color-white);
  border: none;
  font-size: 2.4074vw;
  font-weight: 400;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1.1111vw 0;
  transition: all 0.2s ease;
}

.input-day:not(:disabled):active {
  transform: scale(0.95);
}

.input-day-outside {
  opacity: 0.3;
  color: #C6C6C6;
  background: #f5f5f5;
}

.input-day-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f5f5f5;
}

.input-day-selected {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
}

/* 選択された日付が日曜日または土曜日の場合も白色テキスト */
.input-day-selected:nth-child(1),
.input-day-selected:nth-child(7) {
  color: var(--color-white) !important;
}

.input-footer {
  display: flex;
  gap: 2.7777vw;
  justify-content: center;
}

.input-btn {
  flex: 1;
  padding: 2.2222vw 4.6296vw;
  font-size: 2.7777vw;
  font-weight: 700;
  border: 0.2777vw solid var(--color-black);
  border-radius: 0.9259vw;
  cursor: pointer;
  transition: all 0.2s ease;
}

.input-btn.button {
  background: var(--color-accent);
  color: var(--color-white);
}

.input-btn.button:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.input-btn.button.secondary {
  background: var(--color-white);
  color: var(--color-black);
}

.input-btn.button.secondary:active {
  background: var(--color-bg);
}

/* テンキーパッド */
.input-label {
  font-size: 3.1481vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.7777vw;
  color: var(--color-black);
}

.input-keypad {
  display: flex;
  flex-direction: column;
  gap: 2.2222vw;
}

.input-row {
  display: flex;
  gap: 2.2222vw;
  justify-content: center;
}

.input-key {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  color: var(--color-black);
  border: none;
  border-radius: 1.3888vw;
  font-size: 4.6296vw;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1.1111vw 0;
  box-shadow: 0 0.2777vw 0.5555vw rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.input-key:active {
  transform: scale(0.95);
  box-shadow: 0 0.1388vw 0.2777vw rgba(0, 0, 0, 0.2);
}

.input-key-empty {
  flex: 1;
  visibility: hidden;
}

.input-key-back {
  flex-direction: column;
  gap: 0.9259vw;
  padding: 1.1111vw 0;
}

.input-key-back-icon {
  font-size: 1.4814vw;
  color: #666;
  line-height: 1;
}

.input-key-back-text {
  font-size: 1.6666vw;
  color: var(--color-black);
  line-height: 1;
}

/* 受付完了カード */
.card.complete {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background: var(--color-bg);
  border-radius: 2.7777vw;
  border: 0.3703vw solid var(--color-black);
  width: auto;
  min-width: 60vw;
}

.card.complete .card-header {
  font-size: 3.1481vw;
  font-weight: 700;
  text-align: center;
  background: var(--color-white);
  padding: 2.7777vw;
  border-bottom: 0.3703vw solid var(--color-black);
  border-radius: 2.7777vw 2.7777vw 0 0;
}

.card.complete .card-content {
  background: var(--color-bg);
  padding: 3.7037vw 2.7777vw;
  text-align: center;
  border-radius: 0 0 2.7777vw 2.7777vw;
}

.card.complete .card-content p {
  font-size: 2.2222vw;
  line-height: 1.8;
  margin-bottom: 2.7777vw;
}

.card.complete .card-content p:last-child {
  margin-bottom: 0;
  font-size: 1.8518vw;
  line-height: 1.6;
}

.card.complete .card-content span {
  display: block;
  font-size: 8.3333vw;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1.8518vw 0;
  line-height: 1.2;
}

/* かなキーパッド */
.kana-keypad-container {
  background: transparent;
  padding: 0;
  border-radius: 0;
  width: 60.1851vw;
}

.kana-candidates-bar {
  display: flex;
  align-items: center;
  gap: 1.3888vw;
  background: var(--color-white);
  border-radius: 1.3888vw;
  margin-bottom: 2.2222vw;
  box-shadow: 0 0.2777vw 0.5555vw rgba(0, 0, 0, 0.1);
}

.kana-candidate-nav {
  width: 4.6296vw;
  height: 4.6296vw;
  background: transparent;
  border: none;
  font-size: 1.6666vw;
  font-weight: 700;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.kana-candidate-nav.prev {border-right: 0.1388vw solid #666;}
.kana-candidate-nav.next {border-left: 0.1388vw solid #666;}

.kana-candidate-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.kana-candidates-list {
  flex: 1;
  display: flex;
  gap: 1.3888vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.kana-candidates-list::-webkit-scrollbar {
  display: none;
}

.kana-candidate-item {
  flex-shrink: 0;
  background: var(--color-white);
  border: none;
  border-radius: 0.9259vw;
  padding: 0.9259vw;
  font-size: 2.0370vw;
  font-weight: 400;
  color: var(--color-black);
  cursor: pointer;
  transition: all 0.2s ease;
  scroll-snap-align: start;
  white-space: nowrap;
}
.kana-keypad-container .input-keypad {
  gap: 0.9259vw;
}
.kana-keypad-container .input-keypad.alnum-keypad {
  padding-top: 2.7777vw;
  padding-bottom: 2.7777vw;
}
.kana-keypad-container .input-row {
  gap: 0.9259vw;
}
.kana-keypad-container .input-key {
  width: 4.6296vw;
  height: 4.6296vw;
  padding: 0;
  font-size: 2.2222vw;
  flex: none;
  transition: none;
}
.kana-keypad-container .input-key.number-key {
  width: 9.2592vw;
  height: 6.0185vw;
  font-size: 2.5925vw;
}

.kana-actions {
  display: flex;
  margin-top: 0.9259vw;
  justify-content: space-between;
}

.kana-action-btn {
  background: var(--color-white);
  color: var(--color-black);
  border: none;
  border-radius: 1.3888vw;
  width: 15.7407vw;
  font-size: 2.2222vw;
  font-weight: 700;
  height: 4.6296vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0.2777vw 0.5555vw rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.kana-action-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0.1388vw 0.2777vw rgba(0, 0, 0, 0.2);
}

.kana-action-btn.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.pdf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 1.3888vw;
  width: 90vw;
  height: 90vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  border-radius: 2.7777vw;
  padding: 2.7777vw;
  background: var(--color-white);
  box-shadow: 0 0.2777vw 0.5555vw rgba(0, 0, 0, 0.15);
}
.pdf-container iframe {
  width: 100%;
  height: 95%;
  border: none;
}

#terms-html button {
  background: transparent;
  border: none;
  color: #C7361D;
  text-decoration: underline;
}
.pdf-control-btn {
  border: none;
  border-radius: 1.8518vw;
  background: var(--color-white);
  color: #333;
  font-weight: 700;
  cursor: pointer;
  padding: 1.3888vw 4.6296vw;
  box-shadow: 0 0.2777vw 0.5555vw rgba(0, 0, 0, 0.3);
}

.pdf-controls-overlay {
  z-index: 1001;
  display: flex;
  flex-direction: row;
  gap: 1.3888vw;
}

.flow-info {
  text-align: center;
  font-size: .7em;
  color: #666;
}
.flow-info span {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--color-accent);
}

.invalid-date-popup {
  animation: fadeIn 0.3s ease-out forwards;
  background: rgba(0, 0, 0, 0.5);
}

.invalid-date-popup > div {
  animation: fadeInScale 0.3s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}