@charset "UTF-8";
.ai-conversation-interface-container {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  overflow: hidden;
}
.ai-conversation-interface-container.hidden {
  display: none !important;
}
.ai-conversation-interface-container.active {
  display: grid !important;
  flex: 1;
  width: 99vw;
  margin-top: 60px;
  min-height: calc(100vh - 80px);
}
.ai-conversation-interface-container.ai-listening .ai-side {
  filter: grayscale(100%);
  opacity: 0.7;
}
.ai-conversation-interface-container.ai-listening .user-side {
  transform: scale(1.1);
}

.ai-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
  overflow: hidden;
}

.user-side {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.ai-visual-indicator {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #C9F512;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.ai-visual-indicator.ai_talking {
  opacity: 1;
  animation: gentle-pulse 2s ease-in-out infinite;
}
.ai-visual-indicator.ai_listening {
  opacity: 0.2;
}
.ai-visual-indicator.user_speaking {
  opacity: 0.2;
}
.ai-visual-indicator.muted {
  opacity: 0.4;
}

.ai-speech-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 170px);
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ai-speech-area::-webkit-scrollbar {
  width: 8px;
}
.ai-speech-area::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.ai-speech-area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.ai-speech-area::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.ai-speech-container {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 20px 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ai-speech-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 85px;
  font-weight: 400;
  line-height: 1.1em;
  text-align: left;
  color: #ffffff;
}

.text-chunk {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 85px;
  font-weight: 550;
  line-height: 1.1em;
  text-align: left;
  color: #ffffff;
  margin-bottom: 2rem;
  margin-top: 1rem;
  display: block;
  padding-left: 50px;
  padding-bottom: 15px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, border-left 0s ease-in-out;
}
.text-chunk.chunk-entering {
  opacity: 0;
}
.text-chunk.chunk-current {
  opacity: 0.1;
  transform: translateY(30px);
  animation: slide-up 0.2s ease-out forwards;
  border-left: 20px solid #C9F512;
}
.text-chunk.chunk-previous {
  opacity: 0.6;
  border-left: 20px solid rgba(0, 0, 0, 0.5);
}

@keyframes slide-up {
  from {
    transform: translateY(30px);
    opacity: 0.3;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-up-far {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(-20px);
  }
}
.typing-indicator {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 85px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.7;
  margin: 0.3rem 0;
  display: none;
  transition: opacity 0.2s ease-in-out;
}
.typing-indicator.typing-visible {
  opacity: 0.7;
  animation: typing-dots 1.4s infinite;
}
.typing-indicator.typing-hidden {
  opacity: 0;
}

@keyframes typing-dots {
  0%, 20% {
    content: "...";
  }
  40% {
    content: "...";
  }
  60% {
    content: "...";
  }
  80%, 100% {
    content: "...";
  }
}
.typing-indicator::after {
  content: "";
  animation: typing-ellipsis 1.4s infinite;
}

@keyframes typing-ellipsis {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75%, 100% {
    content: "...";
  }
}
.webcam-preview-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60%;
  border-radius: 16px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease-in-out;
}

.webcam-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #000;
}

.webcam-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.webcam-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}

.webcam-placeholder-icon {
  font-size: 3rem;
  opacity: 0.6;
}

.webcam-placeholder-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.microphone-status-area {
  max-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  border-radius: 0px 0px 10px 10px;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  padding: 30px 25px 15px 25px;
  gap: 15px;
  transition: all 0.3s ease-out;
  height: 90px;
}
.microphone-status-area .microphone-status-area-icon {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #E7EFC2;
  border-radius: 50px;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -60px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transform: scale(0.8);
  transition: all 0.3s ease-out;
}
.microphone-status-area .microphone-status-area-icon svg {
  width: 100%;
  height: 100%;
}
.microphone-status-area .microphone-status-area-icon svg.mic-disabled-icon {
  color: #dc3545;
}
.microphone-status-area.mic-listening {
  background-color: rgba(201, 245, 18, 0.3);
  height: 150px;
  font-size: 35px;
}
.microphone-status-area.mic-listening::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #C9F512;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  box-shadow: 0 0 20px #C9F512;
}
.microphone-status-area.mic-listening .microphone-status-area-icon {
  background-color: #C9F512;
  border: 5px solid white;
  color: black;
  transform: scale(1);
  box-shadow: 0 0 20px #C9F512;
}
.microphone-status-area.mic-listening .microphone-status-area-icon svg.mic-enabled-icon, .microphone-status-area.mic-on .microphone-status-area-icon svg.mic-enabled-icon {
  display: block;
}
.microphone-status-area.mic-listening .microphone-status-area-icon svg.mic-disabled-icon, .microphone-status-area.mic-on .microphone-status-area-icon svg.mic-disabled-icon {
  display: none;
}
.microphone-status-area.mic-muted .microphone-status-area-icon svg.mic-enabled-icon {
  display: none;
}
.microphone-status-area.mic-muted .microphone-status-area-icon svg.mic-disabled-icon {
  display: block;
}
.microphone-status-area .microphone-status-area-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.microphone-status-area .microphone-status-area-text .microphone-label-listening {
  font-style: italic;
  font-size: 62px;
  font-weight: 800;
  text-transform: uppercase;
}
.microphone-status-area.mic-muted {
  height: 150px;
  background-color: #3f292c;
}
.microphone-status-area.mic-muted::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #dc3545;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.75);
}
.microphone-status-area.mic-muted .microphone-status-area-icon {
  transform: scale(1);
  border: 5px solid white;
  background-color: #dc3545;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.65);
}
.microphone-status-area.mic-muted .microphone-status-area-icon svg.mic-disabled-icon {
  color: white;
}
.microphone-status-area.mic-muted .microphone-label-muted {
  display: block;
  color: white;
  font-size: 70px;
  font-weight: 700;
}
.microphone-status-area.mic-muted .microphone-label-on, .microphone-status-area.mic-muted .microphone-label-listening {
  display: none;
}
.microphone-status-area.mic-on {
  height: 150px;
  background-color: rgba(231, 239, 194, 0.18);
}
.microphone-status-area.mic-on::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #E7EFC2;
  box-shadow: 0 0 20px rgba(231, 239, 194, 0.75);
}
.microphone-status-area.mic-on .microphone-status-area-icon {
  transform: scale(1);
  border: 5px solid white;
  background-color: #E7EFC2;
  color: #1f2418;
  box-shadow: 0 0 20px rgba(231, 239, 194, 0.65);
}
.microphone-status-area.mic-on .microphone-label-on {
  display: block;
  color: white;
  font-size: 80px;
  font-weight: 700;
}
.microphone-status-area.mic-on .microphone-label-listening, .microphone-status-area.mic-on .microphone-label-muted {
  display: none;
}
.microphone-status-area.mic-listening {
  font-size: 70px;
  background-color: rgba(201, 245, 18, 0.2);
}
.microphone-status-area.mic-listening .microphone-status-area-text {
  opacity: 1;
}
.microphone-status-area.mic-listening .microphone-label-listening {
  display: block;
}
.microphone-status-area.mic-listening .microphone-label-on, .microphone-status-area.mic-listening .microphone-label-muted {
  display: none;
}

.activity-bar-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background-color: rgba(255, 255, 255, 0);
  overflow: hidden;
}

.activity-bar-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background-color: #C9F512;
  opacity: 0.6;
  display: none !important;
  opacity: 0 !important;
  transition: left 0.2s ease-in-out, width 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.activity-bar-indicator.ai_talking {
  left: 0;
  width: 60%;
  background-color: #C9F512;
  opacity: 1;
}
.activity-bar-indicator.ai_listening {
  left: 60%;
  width: 40%;
  background-color: #C9F512;
  opacity: 1;
}
.activity-bar-indicator.muted {
  left: 0;
  width: 60%;
  opacity: 0.2;
  background-color: #666;
}

@media (min-width: 1024px) {
  .ai-conversation-interface-container {
    grid-template-columns: 60% 40%;
  }
  .ai-visual-indicator {
    width: 110px;
    height: 110px;
  }
  .ai-speech-text {
    font-size: 85px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .ai-visual-indicator {
    width: 90px;
    height: 90px;
  }
  .ai-speech-area {
    padding-left: 200px;
  }
  .ai-speech-text {
    font-size: 24px;
  }
}
@keyframes pulse-glow {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}
@keyframes gentle-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}
@keyframes mic-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(98, 186, 11, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(98, 186, 11, 0.6);
  }
}
.cpr-counter-overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
}
.cpr-counter-overlay.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
}
.cpr-counter-overlay.opacity-100 {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cpr-counter-overlay.compression-pulse {
  animation: compressionPulse 0.3s ease-out;
}

.cpr-counter-content {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(201, 245, 18, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 240px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #ffffff;
  text-align: center;
}

.cpr-counter-header {
  margin-bottom: 12px;
}

.cpr-active-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cpr-active-indicator .active-dot {
  width: 8px;
  height: 8px;
  background-color: #C9F512;
  border-radius: 50%;
  animation: activePulse 2s infinite;
}
.cpr-active-indicator .active-label {
  font-size: 14px;
  font-weight: 500;
  color: #C9F512;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cpr-active-indicator.active .active-dot {
  animation: activePulse 1.5s infinite;
}

.cpr-counter-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compression-count-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.compression-count-container .count-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compression-count-container .compression-count {
  font-size: 64px;
  font-weight: 700;
  color: #C9F512;
  line-height: 1;
  min-width: 120px;
  transition: transform 0.2s ease-out;
}

@keyframes activePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
@keyframes compressionPulse {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
    border-color: rgba(201, 245, 18, 0.3);
  }
  50% {
    transform: translateX(-50%) translateY(0) scale(1.05);
    border-color: rgba(201, 245, 18, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 245, 18, 0.4);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
    border-color: rgba(201, 245, 18, 0.3);
  }
}
@media (max-width: 768px) {
  .cpr-counter-overlay {
    top: 10px;
    left: 50%;
    right: 10px;
    transform: translateX(-50%);
  }
  .cpr-counter-content {
    padding: 12px 16px;
    min-width: 200px;
    border-radius: 12px;
  }
  .compression-count-container .compression-count {
    font-size: 48px;
  }
}
@media (prefers-contrast: high) {
  .cpr-counter-content {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #C9F512;
  }
  .active-label {
    color: #ffffff;
  }
}
.cpr-rate-warning-container {
  position: absolute;
  bottom: 16px;
  left: 8px;
  right: 8px;
  z-index: 25;
  pointer-events: none;
}

.cpr-rate-warning {
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 28px 56px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  width: 100%;
}
.cpr-rate-warning.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}
.cpr-rate-warning--slow {
  background-color: #F59E0B;
}
.cpr-rate-warning--fast {
  background-color: #EF4444;
}

.cpr-rate-warning__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cpr-rate-warning__icon svg {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.95);
}

.cpr-rate-warning__text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cpr-rate-warning-container {
    bottom: 12px;
    left: 8px;
    right: 8px;
  }
  .cpr-rate-warning {
    padding: 16px 24px;
    gap: 16px;
    border-radius: 12px;
  }
  .cpr-rate-warning__icon svg {
    width: 56px;
    height: 56px;
  }
  .cpr-rate-warning__text {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .cpr-rate-warning {
    padding: 12px 16px;
    gap: 12px;
    border-radius: 10px;
  }
  .cpr-rate-warning__icon svg {
    width: 44px;
    height: 44px;
  }
  .cpr-rate-warning__text {
    font-size: 24px;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.timer-warning {
  color: #ff3333 !important;
  text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.timer-flashing {
  color: #ff3333 !important;
  animation: timer-flash 0.5s ease-in-out infinite;
}

@keyframes timer-flash {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
  }
  50% {
    opacity: 0.3;
    text-shadow: none;
  }
}
.recording-dot-pulse {
  animation: recording-pulse 1.5s ease-in-out infinite;
}

@keyframes recording-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
.btn-recording-stop {
  background-color: #dc2626 !important;
  color: white !important;
  animation: stop-button-pulse 1s ease-in-out infinite;
}
.btn-recording-stop:hover {
  background-color: #b91c1c !important;
  animation: none;
  transform: scale(1.02);
}

@keyframes stop-button-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
}
.btn-recording-start {
  background-color: #c5ff00 !important;
  color: #111827 !important;
  transition: all 0.2s ease;
}
.btn-recording-start:hover {
  background-color: #a8d900 !important;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(197, 255, 0, 0.4);
}
.btn-recording-start:active {
  transform: scale(0.98);
}

.self-capture-preview {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.self-capture-preview.recording {
  border-color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.uploading-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.uploading-text {
  animation: fade-pulse 1.5s ease-in-out infinite;
}

@keyframes fade-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .btn-recording-start,
  .btn-recording-stop {
    min-height: 60px;
    min-width: 200px;
    font-size: 1.25rem;
  }
  .self-capture-timer {
    font-size: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .timer-flashing,
  .recording-dot-pulse,
  .btn-recording-stop,
  .uploading-spinner,
  .uploading-text {
    animation: none;
  }
  .timer-flashing {
    background-color: rgba(255, 51, 51, 0.2);
    border-radius: 4px;
    padding: 0 8px;
  }
  .btn-recording-stop {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.4);
  }
}
.session-pause-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  margin-right: 12px;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.05s ease;
}
.session-pause-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.session-pause-btn:active {
  transform: translateY(1px);
}
.session-pause-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.session-pause-btn[aria-disabled=true] {
  opacity: 0.3;
  pointer-events: none;
}
.session-pause-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.session-pause-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.session-pause-overlay[hidden] {
  display: none;
}
.session-pause-overlay.visible {
  opacity: 1;
}
.session-pause-overlay__label {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin: 0 0 32px;
  text-align: center;
}
.session-pause-overlay__context-stack {
  display: grid;
  grid-template-areas: "stack";
  align-items: center;
  justify-items: center;
  width: 100%;
  margin-bottom: 48px;
}
.session-pause-overlay__context-stack > * {
  grid-area: stack;
  transition: opacity 0.25s ease;
}
.session-pause-overlay__paused-context {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.session-pause-overlay__paused-context.is-hidden, .session-pause-overlay__countdown.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.session-pause-overlay__media-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.session-pause-overlay__media-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.4);
}
.session-pause-overlay__privacy-msg {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  max-width: 480px;
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.005em;
}
.session-pause-overlay__primary-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.session-pause-overlay__help-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 32px;
  border: 1.5px solid rgba(197, 255, 0, 0.72);
  border-radius: 12px;
  background: rgba(197, 255, 0, 0.14);
  color: #dcff70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.05s ease;
}
.session-pause-overlay__help-btn:hover {
  border-color: #c5ff00;
  background: rgba(197, 255, 0, 0.24);
  color: #efffb8;
}
.session-pause-overlay__help-btn:active {
  transform: translateY(1px);
}
.session-pause-overlay__help-btn:focus-visible {
  outline: 2px solid #c5ff00;
  outline-offset: 3px;
}
.session-pause-overlay__help-btn__icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.session-pause-overlay__resume-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 14px 32px 14px 40px;
  border: none;
  border-radius: 12px;
  background: #027FFF;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.05s ease;
}
.session-pause-overlay__resume-btn:hover {
  background: #0266cc;
}
.session-pause-overlay__resume-btn:active {
  transform: translateY(1px);
}
.session-pause-overlay__resume-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.session-pause-overlay__resume-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.session-pause-overlay__countdown-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.session-pause-overlay__countdown {
  font-size: 120px;
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  will-change: transform, opacity;
}
.session-pause-overlay__countdown.animate {
  animation: session-pause-tick 0.6s ease-out;
}
.session-pause-overlay__start-now-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px 14px 48px;
  border: none;
  border-radius: 12px;
  background: #027FFF;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.05s ease;
  will-change: contents;
}
.session-pause-overlay__start-now-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: #014a99;
  z-index: -1;
  transform-origin: left center;
}
.session-pause-overlay__start-now-btn.filling::before {
  animation: session-pause-start-now-fill 5s linear forwards;
}
.session-pause-overlay__start-now-btn:hover {
  background: #2691ff;
}
.session-pause-overlay__start-now-btn:hover .session-pause-overlay__start-now-btn__icon {
  transform: translateX(2px);
}
.session-pause-overlay__start-now-btn:active {
  transform: translateY(1px);
}
.session-pause-overlay__start-now-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.session-pause-overlay__start-now-btn__label, .session-pause-overlay__start-now-btn__icon {
  position: relative;
  z-index: 1;
}
.session-pause-overlay__start-now-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.session-pause-overlay__cancel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12.5px 46.5px 12.5px 38.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.05s ease;
}
.session-pause-overlay__cancel-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.session-pause-overlay__cancel-btn:hover .session-pause-overlay__cancel-btn__icon {
  transform: translateX(-2px);
}
.session-pause-overlay__cancel-btn:active {
  transform: translateY(1px);
}
.session-pause-overlay__cancel-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.session-pause-overlay__cancel-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.session-pause-overlay__end-link {
  margin-top: 96px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}
.session-pause-overlay__end-link:hover, .session-pause-overlay__end-link:focus-visible {
  color: rgba(255, 255, 255, 0.85);
}
.session-pause-overlay__end-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 520px) {
  .session-pause-overlay__primary-actions {
    width: min(100%, 320px);
    flex-direction: column-reverse;
  }
  .session-pause-overlay__help-btn,
  .session-pause-overlay__resume-btn {
    justify-content: center;
    width: 100%;
  }
}
@keyframes session-pause-tick {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes session-pause-start-now-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .session-pause-overlay__countdown.animate {
    animation: none;
  }
  .session-pause-overlay__start-now-btn.filling::before {
    animation: none;
    width: 100%;
  }
  .session-pause-overlay {
    transition: none;
  }
}
.session-pause-overlay .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.session-pause-end-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px;
}
.session-pause-end-modal.hidden {
  display: none;
}
.session-pause-end-modal__panel {
  background: #ffffff;
  color: #1f2937;
  border-radius: 12px;
  padding: 28px 32px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.session-pause-end-modal__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111827;
}
.session-pause-end-modal__body {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
}
.session-pause-end-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
.session-pause-end-modal__cancel, .session-pause-end-modal__confirm {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.session-pause-end-modal__cancel {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}
.session-pause-end-modal__cancel:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}
.session-pause-end-modal__confirm {
  background: #dc2626;
  color: #ffffff;
  border: 1px solid #dc2626;
}
.session-pause-end-modal__confirm:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}
.session-pause-end-modal__confirm:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.help-center-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}
.help-center-btn:hover {
  background: rgba(197, 255, 0, 0.14);
  border-color: rgba(197, 255, 0, 0.38);
}
.help-center-btn:active {
  transform: translateY(1px);
}
.help-center-btn:focus-visible {
  outline: 2px solid rgba(197, 255, 0, 0.82);
  outline-offset: 3px;
}
.help-center-btn svg {
  width: 19px;
  height: 19px;
  color: #c5ff00;
  flex-shrink: 0;
}

.help-center {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 13, 7, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.help-center[hidden] {
  display: none;
}
.help-center.is-open {
  opacity: 1;
}
.help-center__drawer {
  display: flex;
  flex-direction: column;
  width: min(620px, 100vw - 64px);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 3px solid #a9c875;
  background: #f5f7ef;
  color: #163126;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.32);
  transform: translateX(36px);
  opacity: 0.75;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}
.help-center.is-open .help-center__drawer {
  transform: translateX(0);
  opacity: 1;
}
.help-center__header {
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 28px;
  color: #fff;
  background: #252a27;
  border-bottom: 1px solid rgba(197, 255, 0, 0.18);
}
.help-center__heading-group {
  display: flex;
  align-items: center;
  gap: 13px;
}
.help-center__heading-group h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.help-center__brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 42px;
  color: #c5ff00;
}
.help-center__brand-icon svg {
  width: 29px;
  height: 29px;
}
.help-center__close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.help-center__close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.help-center__close:active {
  transform: scale(0.97);
}
.help-center__close:focus-visible {
  outline: 2px solid #c5ff00;
  outline-offset: 3px;
}
.help-center__close svg {
  width: 20px;
  height: 20px;
}
.help-center__body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 30px 34px 42px;
}
.help-center__index-view {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
.help-center__search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}
.help-center__search-icon {
  position: absolute;
  left: 17px;
  width: 21px;
  height: 21px;
  color: #718079;
  pointer-events: none;
}
.help-center__search {
  width: 100%;
  min-height: 54px;
  padding: 14px 82px 14px 49px;
  border: 2px solid #76a400;
  border-radius: 14px;
  background: #fff;
  color: #163126;
  font: 500 16px/1.4 "Inter", sans-serif;
  box-shadow: 0 5px 18px rgba(19, 55, 37, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.help-center__search::placeholder {
  color: #87928c;
}
.help-center__search:focus {
  outline: none;
  border-color: #76a400;
  box-shadow: 0 0 0 4px rgba(149, 202, 0, 0.14), 0 5px 18px rgba(19, 55, 37, 0.06);
}
.help-center__search-clear {
  position: absolute;
  right: 15px;
  padding: 6px 7px;
  border: 0;
  background: transparent;
  color: #526159;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.help-center__search-clear[hidden] {
  display: none;
}
.help-center__search-clear:hover {
  color: #072d1a;
}
.help-center__search-clear:focus-visible {
  outline: 2px solid #76a400;
  outline-offset: 2px;
  border-radius: 4px;
}
.help-center__section-label {
  margin: 0 0 11px;
  color: #6a766f;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}
.help-center__categories {
  display: grid;
  gap: 12px;
}
.help-center__category {
  overflow: hidden;
  border: 1px solid #dce4d7;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(19, 55, 37, 0.045);
}
.help-center__category-toggle {
  display: grid;
  grid-template-columns: 43px 1fr auto 20px;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 17px 18px;
  border: 0;
  background: #fff;
  color: #163126;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease;
}
.help-center__category-toggle:hover {
  background: #f9fbf6;
}
.help-center__category-toggle:focus-visible {
  outline: 3px solid rgba(118, 164, 0, 0.42);
  outline-offset: -3px;
}
.help-center__category-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  color: #355b20;
  background: #eaf2d8;
}
.help-center__category-icon svg {
  width: 23px;
  height: 23px;
}
.help-center__category-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.help-center__category-copy strong {
  font-size: 18px;
  font-weight: 720;
  line-height: 1.3;
}
.help-center__category-copy span {
  overflow: hidden;
  color: #617068;
  font-size: 14.5px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.help-center__category-count {
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  border-radius: 999px;
  background: #eef2ea;
  color: #637067;
  font-size: 12px;
  font-weight: 700;
}
.help-center__chevron {
  width: 19px;
  height: 19px;
  color: #7e8a83;
  transition: transform 0.2s ease;
}
.help-center__category-toggle[aria-expanded=true] .help-center__chevron {
  transform: rotate(90deg);
}
.help-center__category-panel {
  border-top: 1px solid #e7ece3;
  background: #fbfcf9;
}
.help-center__category-panel[hidden], .help-center__results[hidden], .help-center__article-view[hidden], .help-center__article[hidden], .help-center__empty[hidden] {
  display: none;
}
.help-center__article-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 50px;
  padding: 13px 18px 13px 24px;
  border: 0;
  border-bottom: 1px solid #e7ece3;
  background: transparent;
  color: #163126;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease;
}
.help-center__article-row:last-child {
  border-bottom: 0;
}
.help-center__article-row:hover {
  background: #f2f7e8;
  color: #285005;
}
.help-center__article-row:focus-visible {
  outline: 3px solid rgba(118, 164, 0, 0.38);
  outline-offset: -3px;
}
.help-center__article-row strong {
  font-size: 16.5px;
  font-weight: 680;
  line-height: 1.35;
}
.help-center__article-row svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #859188;
}
.help-center__results {
  display: grid;
  gap: 10px;
}
.help-center__result-count {
  margin: 0 0 3px;
  color: #617068;
  font-size: 13px;
  font-weight: 650;
}
.help-center__search-result {
  margin-bottom: 9px;
  border: 1px solid #dce4d7;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(19, 55, 37, 0.035);
}
.help-center__search-highlight {
  padding: 0 1px;
  border-radius: 3px;
  background: rgba(197, 255, 0, 0.34);
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #6f9200;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.help-center__empty {
  padding: 42px 24px;
  text-align: center;
}
.help-center__empty > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e8eedf;
  color: #607054;
  font-size: 23px;
  font-weight: 750;
}
.help-center__empty h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.help-center__empty p {
  margin: 0;
  color: #617068;
  font-size: 14px;
}
.help-center__support-slot {
  position: sticky;
  bottom: -26px;
  z-index: 1;
  margin-top: auto;
  padding: 26px 0;
  background: linear-gradient(180deg, rgba(245, 247, 239, 0) 0%, #f5f7ef 25%);
}
.help-center__support {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid #c5d3c0;
  border-radius: 14px;
  background: #e1e9dd;
}
.help-center__support > div {
  min-width: 0;
}
.help-center__support strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.25;
}
.help-center__support p {
  margin: 0;
  color: #59665f;
  font-size: 15px;
  line-height: 1.4;
}
.help-center__support a {
  color: #35483e;
  font-weight: 650;
  text-underline-offset: 2px;
}
.help-center__support-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #c9d6c4;
  color: #405048;
  font-size: 18px;
}
.help-center__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  min-width: 0;
}
.help-center__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 12px 8px 8px;
  border: 1px solid #ccd8c6;
  border-radius: 9px;
  background: #fff;
  color: #355443;
  font-size: 16px;
  font-weight: 720;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(19, 55, 37, 0.05);
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.08s ease;
}
.help-center__back:hover {
  color: #244d0c;
  background: #edf5df;
  border-color: #aec48e;
}
.help-center__back:active {
  transform: translateY(1px);
}
.help-center__back:focus-visible {
  outline: 2px solid #76a400;
  outline-offset: 2px;
}
.help-center__back svg {
  width: 16px;
  height: 16px;
}
.help-center__breadcrumb-separator {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #9aa69f;
}
.help-center__article-category {
  min-width: 0;
  overflow: hidden;
  color: #5d6d64;
  font-size: 16.5px;
  font-weight: 690;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.help-center__article > h2 {
  display: block;
  margin: 0;
  border: 0;
  color: #163126;
  font: 600 32px/1.16 "new-kansas", Georgia, serif;
  letter-spacing: -0.02em;
}
.help-center__article > h2:focus {
  outline: none;
}
.help-center__article {
  display: flex;
  min-height: calc(100vh - 155px);
  flex-direction: column;
}
.help-center__article-support {
  margin-top: auto;
  padding-top: 34px;
}
.help-center__article-summary {
  position: relative;
  margin: 11px 0 26px;
  padding-bottom: 23px;
  border-bottom: 1px solid #dce4d7;
  color: #617068;
  font-size: 16px;
  line-height: 1.55;
}
.help-center__article-summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 116px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8caf25 0%, rgba(140, 175, 37, 0) 100%);
  opacity: 0.7;
}
.help-center__article-content {
  color: #263d32;
  font-size: 15.75px;
  line-height: 1.72;
}
.help-center__article-content h2, .help-center__article-content h3, .help-center__article-content h4 {
  display: block;
  border: 0;
  color: #163126;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.help-center__article-content h2 {
  margin: 34px 0 11px;
  font-size: 22px;
}
.help-center__article-content h3 {
  margin: 26px 0 9px;
  font-size: 18px;
}
.help-center__article-content h4 {
  margin: 22px 0 8px;
  font-size: 16px;
}
.help-center__article-content p {
  margin: 0 0 17px;
}
.help-center__article-content ul, .help-center__article-content ol {
  margin: 4px 0 24px;
  padding: 0;
  list-style: none;
}
.help-center__article-content ul > li {
  position: relative;
  margin: 9px 0;
  padding-left: 23px;
}
.help-center__article-content ul > li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86a928;
  box-shadow: 0 0 0 4px rgba(134, 169, 40, 0.1);
}
.help-center__article-content ul.help-center__task-list > li {
  padding-left: 31px;
}
.help-center__article-content ul.help-center__task-list > li::before {
  top: 0.36em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1.5px solid #a8c46b;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}
.help-center__article-content ul.help-center__task-list > li.help-center__task--done::before {
  border-color: #86a928;
  background: #86a928;
}
.help-center__article-content ul.help-center__task-list > li.help-center__task--done::after {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 4px;
  width: 7px;
  height: 4px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}
.help-center__article-content ol {
  counter-reset: help-step;
}
.help-center__article-content ol > li {
  counter-increment: help-step;
  position: relative;
  min-height: 31px;
  margin: 12px 0;
  padding: 3px 0 0 42px;
}
.help-center__article-content ol > li::before {
  content: counter(help-step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border: 1px solid #d3e2b3;
  border-radius: 50%;
  background: #edf5df;
  color: #41650e;
  font: 750 13px/1 "Inter", sans-serif;
}
.help-center__article-content strong {
  color: #122d20;
  font-weight: 750;
}
.help-center__article-content a {
  color: #467300;
  font-weight: 700;
  text-decoration-style: dotted;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.help-center__article-content a:hover {
  color: #2e5000;
}
.help-center__article-content a[target=_blank]::after {
  content: "↗";
  display: inline-block;
  margin-left: 0.22em;
  font-size: 0.78em;
  line-height: 1;
  opacity: 0.68;
  transform: translateY(-0.08em);
}
.help-center__article-content a.help-center__article-link {
  text-decoration-style: solid;
  cursor: pointer;
}
.help-center__article-content a.help-center__article-link::after {
  content: "›";
  margin-left: 0.24em;
  font-size: 1.02em;
  font-weight: 750;
  opacity: 0.6;
}
.help-center__article-content blockquote {
  position: relative;
  margin: 22px 0;
  padding: 16px 18px 16px 48px;
  border: 1px solid #d2e2ad;
  border-left: 4px solid #8caf25;
  border-radius: 10px;
  background: #f1f7e6;
  color: #344b3c;
  box-shadow: 0 2px 10px rgba(29, 65, 39, 0.035);
}
.help-center__article-content blockquote::before {
  content: "i";
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid #63851a;
  border-radius: 50%;
  color: #557611;
  font: 750 12px/1 Georgia, serif;
}
.help-center__article-content blockquote p:last-child {
  margin-bottom: 0;
}
.help-center__article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid #dce4d7;
  border-radius: 13px;
}
.help-center__article-content .help-center__article-figure {
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid #d7e0d2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(19, 55, 37, 0.07);
}
.help-center__article-content .help-center__article-figure figcaption {
  padding: 10px 13px;
  border-top: 1px solid #dfe6db;
  background: #f7f9f3;
  color: #58675f;
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.45;
}
.help-center__article-content .help-center__article-figure img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
  transition: filter 0.18s ease, transform 0.24s ease;
}
.help-center__article-content .help-center__article-figure img:hover {
  filter: brightness(0.96);
  transform: scale(1.012);
}
.help-center__article-content .help-center__article-figure img:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid #86a928;
  outline-offset: -4px;
}
.help-center__article-content .help-center__table-wrap {
  width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid #d6dfd1;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(29, 65, 39, 0.035);
  -webkit-overflow-scrolling: touch;
}
.help-center__article-content table {
  width: 100%;
  min-width: 430px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  line-height: 1.5;
}
.help-center__article-content th, .help-center__article-content td {
  padding: 11px 13px;
  border-bottom: 1px solid #dfe6db;
  text-align: left;
  vertical-align: top;
}
.help-center__article-content th {
  background: linear-gradient(180deg, #f0f5e7 0%, #eaf1df 100%);
  color: #52634f;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.help-center__article-content tbody tr:nth-child(even) {
  background: #fbfcf9;
}
.help-center__article-content tbody tr:hover {
  background: #f5f8f0;
}
.help-center__article-content tr:last-child td {
  border-bottom: 0;
}
.help-center__article-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #e7ece3;
  font-size: 0.9em;
}
.help-center__article-content pre {
  overflow-x: auto;
  padding: 14px;
  border-radius: 10px;
  background: #12281c;
  color: #f5f7ef;
}
.help-center__article-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.help-center__article-content hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid #dce4d7;
}
.help-center__lightbox {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 70px 56px 48px;
  background: rgba(0, 18, 9, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.help-center__lightbox[hidden] {
  display: none;
}
.help-center__lightbox.is-open {
  opacity: 1;
}
.help-center__lightbox-figure {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: min(1100px, 94vw);
  max-height: calc(100vh - 118px);
  margin: 0;
}
.help-center__lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
  transform-origin: center;
}
.help-center__lightbox-figure figcaption {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.45;
  text-align: center;
}
.help-center__lightbox-close {
  position: absolute;
  top: 24px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.help-center__lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.help-center__lightbox-close:active {
  transform: scale(0.96);
}
.help-center__lightbox-close:focus-visible {
  outline: 3px solid #c5ff00;
  outline-offset: 3px;
}
.help-center__lightbox-close svg {
  width: 22px;
  height: 22px;
}
.help-center__live, .help-center__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 680px) {
  .help-center-btn {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    margin-right: 9px;
  }
  .help-center-btn span {
    display: none;
  }
  .help-center__drawer {
    width: 100%;
  }
  .help-center__header {
    padding: 16px 18px;
  }
  .help-center__heading-group h1 {
    font-size: 23px;
  }
  .help-center__brand-icon {
    width: 31px;
    height: 38px;
  }
  .help-center__brand-icon svg {
    width: 27px;
    height: 27px;
  }
  .help-center__body {
    padding: 23px 18px 34px;
  }
  .help-center__category-toggle {
    grid-template-columns: 39px 1fr auto 18px;
    padding: 15px 14px;
    gap: 11px;
  }
  .help-center__category-icon {
    width: 39px;
    height: 39px;
  }
  .help-center__category-copy span {
    display: none;
  }
  .help-center__breadcrumb {
    gap: 6px;
    margin-bottom: 18px;
  }
  .help-center__back {
    padding: 7px 10px 7px 7px;
  }
  .help-center__article-category {
    font-size: 15px;
  }
  .help-center__article {
    min-height: calc(100vh - 132px);
  }
  .help-center__article > h2 {
    font-size: 26px;
  }
  .help-center__article-row {
    padding-left: 18px;
  }
  .help-center__article-content table {
    min-width: 100%;
  }
  .help-center__article-content th, .help-center__article-content td {
    padding: 10px;
  }
  .help-center__lightbox {
    padding: 72px 16px 28px;
  }
  .help-center__lightbox-figure {
    max-width: 100%;
    max-height: calc(100vh - 100px);
  }
  .help-center__lightbox-figure img {
    max-height: calc(100vh - 142px);
    border-radius: 13px;
  }
  .help-center__lightbox-close {
    top: 16px;
    right: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .help-center,
  .help-center__drawer,
  .help-center__lightbox,
  .help-center__article-figure img {
    transition: none;
  }
}
.exit-survey {
  --exit-cream: #f2eddf;
  --exit-lime: #c5ff00;
  --exit-panel: rgba(242, 237, 223, 0.055);
  --exit-border: rgba(242, 237, 223, 0.13);
  width: min(1120px, 100vw - 32px);
  min-height: calc(100vh - 112px);
  margin-top: -2.5rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  color: var(--exit-cream);
  background: transparent;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.exit-survey *,
.exit-survey *::before,
.exit-survey *::after {
  box-sizing: border-box;
}

.exit-survey__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.exit-survey__main {
  width: min(100%, 820px);
  min-height: 0;
  margin: 0 auto;
  padding: 28px 24px 38px;
  position: relative;
  display: grid;
  align-content: center;
}

.exit-survey__screen {
  width: 100%;
  display: none;
}

.exit-survey__screen[data-active=true] {
  display: block;
  animation: exit-survey-question-in 420ms ease-out both;
}

.exit-survey__title,
.exit-survey__success-title {
  border: 0;
  display: block;
  font-family: "new-kansas", Georgia, serif;
  font-style: normal;
}

.exit-survey__title {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.34;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #dcf654;
  text-decoration-thickness: 5px;
  text-underline-offset: 9px;
}

.exit-survey__supporting {
  max-width: 620px;
  margin: 24px auto 0;
  color: #b8cabb;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.exit-survey__panel {
  margin-top: 32px;
  padding: 27px;
  background: var(--exit-panel);
  border: 1px solid var(--exit-border);
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(0, 15, 7, 0.2);
}

.exit-survey__choice {
  --choice-fill: #315e43;
  --choice-text: #fff;
  appearance: none;
  min-height: 66px;
  padding: 14px 18px;
  color: var(--exit-cream);
  background: rgba(242, 237, 223, 0.055);
  border: 1px solid rgba(242, 237, 223, 0.17);
  border-radius: 13px;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 620;
  line-height: 1.35;
  text-align: left;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.exit-survey__choice:hover:not([aria-pressed=true]) {
  color: var(--choice-text);
  background: color-mix(in srgb, var(--choice-fill) 80%, transparent);
  border-color: color-mix(in srgb, var(--choice-fill) 78%, white 22%);
  transform: translateY(-1px);
}

.exit-survey__choice[aria-pressed=true] {
  color: var(--choice-text);
  background: var(--choice-fill);
  border-color: color-mix(in srgb, var(--choice-fill) 76%, white 24%);
  box-shadow: 0 0 0 2px rgba(242, 237, 223, 0.13);
}

.exit-survey__choice:focus-visible,
.exit-survey__next:focus-visible,
.exit-survey__back:focus-visible,
.exit-survey__reset:focus-visible,
.exit-survey__close:focus-visible,
.exit-survey input:focus-visible,
.exit-survey textarea:focus-visible {
  outline: 3px solid rgba(197, 255, 0, 0.55);
  outline-offset: 3px;
}

.exit-survey__choice[data-tone=positive] {
  --choice-fill: #a9ed21;
  --choice-text: #082b12;
}

.exit-survey__choice[data-tone=negative] {
  --choice-fill: #cf5948;
  --choice-text: #fff;
}

.exit-survey__choice[data-tone=neutral] {
  --choice-fill: #61726a;
  --choice-text: #fff;
}

.exit-survey__two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.exit-survey__primary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 22px;
  text-align: center;
}

.exit-survey__choice-icon {
  font-size: 25px;
  line-height: 1;
}

.exit-survey__choice-icon--red {
  color: #ff6b5f;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.exit-survey__rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.exit-survey__rating-choice {
  --choice-fill: #646464;
  min-height: 126px;
  padding: 14px 7px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.exit-survey__rating-choice:nth-child(1) {
  --choice-fill: #d95a4e;
}

.exit-survey__rating-choice:nth-child(2) {
  --choice-fill: #dc8545;
}

.exit-survey__rating-choice:nth-child(3) {
  --choice-fill: #c7a93e;
  --choice-text: #2b2106;
}

.exit-survey__rating-choice:nth-child(4) {
  --choice-fill: #b9c46f;
  --choice-text: #17210a;
}

.exit-survey__rating-choice:nth-child(5) {
  --choice-fill: #67dc4a;
  --choice-text: #05260c;
}

.exit-survey__rating-number {
  font-size: 25px;
  font-weight: 760;
  line-height: 1;
}

.exit-survey__rating-label {
  color: #c7d5ca;
  font-size: 12px;
  font-weight: 520;
}

.exit-survey__rating-choice:hover .exit-survey__rating-label,
.exit-survey__rating-choice[aria-pressed=true] .exit-survey__rating-label {
  color: currentColor;
}

.exit-survey__face {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  color: var(--choice-fill);
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.78;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.exit-survey__rating-choice:hover .exit-survey__face,
.exit-survey__rating-choice[aria-pressed=true] .exit-survey__face {
  color: currentColor;
  opacity: 1;
  transform: scale(1.08);
}

.exit-survey__eyes::before,
.exit-survey__eyes::after {
  content: "";
  width: 2px;
  height: 2px;
  position: absolute;
  top: 8px;
  background: currentColor;
  border-radius: 50%;
}

.exit-survey__eyes::before {
  left: 8px;
}

.exit-survey__eyes::after {
  right: 8px;
}

.exit-survey__mouth {
  width: 12px;
  height: 6px;
  position: absolute;
  left: 7px;
  bottom: 6px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.exit-survey__face--1 .exit-survey__mouth,
.exit-survey__face--2 .exit-survey__mouth {
  bottom: 4px;
  border-top: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.exit-survey__face--1 .exit-survey__mouth {
  height: 8px;
}

.exit-survey__face--3 .exit-survey__mouth {
  height: 0;
  bottom: 8px;
  border: 0;
  border-top: 2px solid currentColor;
  border-radius: 0;
}

.exit-survey__face--4 .exit-survey__mouth {
  height: 4px;
}

.exit-survey__face--5 .exit-survey__mouth {
  height: 8px;
}

.exit-survey__rows,
.exit-survey__followup-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.exit-survey__row-choice {
  width: 100%;
  min-height: 69px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 19px;
}

.exit-survey__row-icon,
.exit-survey__option-icon {
  width: 34px;
  flex: 0 0 34px;
  font-size: 25px;
  line-height: 1;
  text-align: center;
}

.exit-survey__arrow {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.exit-survey__followup {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 237, 223, 0.12);
  animation: exit-survey-followup-in 220ms ease-out both;
}

.exit-survey__followup-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.4;
}

.exit-survey__helper {
  margin: 4px 0 13px;
  color: #a8bbae;
  font-size: 14px;
}

.exit-survey__followup-choice {
  width: 100%;
  min-height: 61px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 17px;
}

.exit-survey__followup[data-selection-tone=warning] .exit-survey__followup-choice {
  --choice-fill: #6f5015;
  --choice-text: #fff8df;
}

.exit-survey__checkbox {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  position: relative;
  border: 2px solid rgba(242, 237, 223, 0.5);
  border-radius: 5px;
}

.exit-survey__followup-choice[aria-pressed=true] .exit-survey__checkbox::after {
  content: "";
  width: 10px;
  height: 6px;
  position: absolute;
  top: 4px;
  left: 3px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.exit-survey__other {
  margin-top: 13px;
}

.exit-survey__other label,
.exit-survey__textarea-label {
  display: block;
  margin-bottom: 8px;
  color: #dce7de;
  font-size: 15px;
  font-weight: 620;
}

.exit-survey__other input,
.exit-survey__textarea {
  width: 100%;
  color: #fff;
  background: rgba(0, 20, 9, 0.46);
  border: 1px solid rgba(242, 237, 223, 0.22);
  border-radius: 11px;
  font: inherit;
}

.exit-survey__other input {
  min-height: 50px;
  padding: 11px 14px;
}

.exit-survey__textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.exit-survey__other input::placeholder,
.exit-survey__textarea::placeholder {
  color: #8da093;
}

.exit-survey__actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.exit-survey__actions--end {
  justify-content: flex-end;
}

.exit-survey__next,
.exit-survey__back,
.exit-survey__reset,
.exit-survey__close {
  appearance: none;
  cursor: pointer;
  font: inherit;
}

.exit-survey__next {
  min-width: 156px;
  min-height: 56px;
  padding: 0 26px;
  color: #052e16;
  background: var(--exit-cream);
  border: 1px solid var(--exit-cream);
  border-radius: 11px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.exit-survey__next:not(:disabled):hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.exit-survey__next:disabled {
  color: #6e8e7c;
  background: rgba(242, 237, 223, 0.08);
  border-color: rgba(242, 237, 223, 0.1);
  cursor: not-allowed;
}

.exit-survey__back {
  min-height: 46px;
  padding: 0 10px;
  color: #c6d4c8;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 600;
}

.exit-survey__back:hover {
  color: #fff;
}

.exit-survey__submit-error {
  margin: 18px 0 0;
  padding: 11px 13px;
  color: #ffe8e4;
  background: rgba(207, 89, 72, 0.18);
  border: 1px solid rgba(224, 102, 79, 0.5);
  border-radius: 9px;
  font-size: 14px;
}

.exit-survey__progress {
  margin-top: 34px;
}

.exit-survey__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.exit-survey__dots span {
  width: 9px;
  height: 9px;
  background: rgba(242, 237, 223, 0.16);
  border: 1px solid rgba(242, 237, 223, 0.08);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.exit-survey__dots span[data-state=complete] {
  background: #9cb9a8;
  border-color: #9cb9a8;
}

.exit-survey__dots span[data-state=current] {
  background: var(--exit-lime);
  border-color: var(--exit-lime);
  box-shadow: 0 0 0 3px rgba(197, 255, 0, 0.12);
  transform: scale(1.16);
}

.exit-survey__footer {
  min-height: 38px;
  padding: 0 0 10px 3px;
  display: flex;
  align-items: flex-end;
}

.exit-survey__reset {
  padding: 4px 5px;
  color: rgba(242, 237, 223, 0.58);
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exit-survey__reset:hover {
  color: #fff;
}

/* Upload intro and minimized badge */
.exit-survey__upload {
  --exit-upload-progress: 2%;
  width: min(100% - 40px, 700px);
  margin: auto;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  color: var(--exit-cream);
  background: rgba(242, 237, 223, 0.09);
  border: 1px solid rgba(197, 255, 0, 0.44);
  border-radius: 38px;
  box-shadow: 0 28px 68px rgba(0, 15, 7, 0.34);
}

.exit-survey__upload-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--exit-lime);
  background: rgba(197, 255, 0, 0.12);
  border-radius: 50%;
}

.exit-survey__spinner {
  width: 39px;
  height: 39px;
  border: 4px solid rgba(197, 255, 0, 0.24);
  border-top-color: var(--exit-lime);
  border-radius: 50%;
  animation: exit-survey-spin 900ms linear infinite;
}

.exit-survey__check {
  display: none;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.exit-survey__upload-copy {
  min-width: 0;
}

.exit-survey__upload-title {
  display: block;
  color: #fff;
  font-size: 29px;
  font-weight: 750;
  line-height: 1.25;
}

.exit-survey__upload-track {
  height: 10px;
  margin-top: 17px;
  display: block;
  overflow: hidden;
  background: rgba(242, 237, 223, 0.12);
  border-radius: 999px;
}

.exit-survey__upload-fill {
  width: 2%;
  height: 100%;
  display: block;
  background: var(--exit-lime);
  border-radius: inherit;
  transition: width 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exit-survey__upload-message {
  margin-top: 14px;
  display: block;
  color: #b8cabb;
  font-size: 16px;
  line-height: 1.4;
}

.exit-survey[data-upload-layout=intro] {
  grid-template-rows: 1fr;
}

.exit-survey[data-upload-layout=intro] .exit-survey__main,
.exit-survey[data-upload-layout=intro] .exit-survey__footer {
  display: none;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top {
  width: min(100% - 40px, 225px);
  margin: 0 auto 24px;
  padding: 8px 11px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  opacity: 0.9;
  background: rgba(242, 237, 223, 0.09);
  border-color: rgba(197, 255, 0, 0.32);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 15, 7, 0.14);
  animation: exit-survey-minimize 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top::before {
  content: "";
  width: var(--exit-upload-progress);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  background: rgba(197, 255, 0, 0.2);
  border-radius: 999px 0 0 999px;
  transition: width 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top > * {
  position: relative;
  z-index: 1;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top .exit-survey__upload-icon {
  width: 30px;
  height: 30px;
  background: rgba(197, 255, 0, 0.1);
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top .exit-survey__spinner {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top .exit-survey__upload-title {
  font-size: 13px;
  font-weight: 650;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top .exit-survey__upload-track,
.exit-survey[data-upload-layout=top] > .exit-survey__upload--top .exit-survey__upload-message {
  display: none;
}

.exit-survey__upload[data-upload-state=complete] {
  border-color: rgba(104, 240, 148, 0.72);
  background: rgba(11, 94, 45, 0.96);
}

.exit-survey__upload[data-upload-state=complete] .exit-survey__upload-icon {
  color: #00330d;
  background: #68f094;
}

.exit-survey__upload[data-upload-state=complete] .exit-survey__spinner {
  display: none;
}

.exit-survey__upload[data-upload-state=complete] .exit-survey__check {
  display: block;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top[data-upload-state=complete] {
  width: min(100% - 40px, 288px);
  grid-template-columns: 34px minmax(0, 1fr);
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top[data-upload-state=complete] .exit-survey__upload-icon {
  width: 34px;
  height: 34px;
}

.exit-survey[data-upload-layout=top] > .exit-survey__upload--top[data-upload-state=complete] .exit-survey__upload-message {
  margin-top: 2px;
  display: block;
  color: #baf7ce;
  font-size: 11px;
  line-height: 1.25;
}

.exit-survey__intro {
  margin: 0 auto 23px;
  color: #dce7de;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.exit-survey[data-survey-stage=prompt] .exit-survey__main {
  min-height: 470px;
  align-content: center;
}

.exit-survey[data-survey-stage=prompt] .exit-survey__screen,
.exit-survey[data-survey-stage=prompt] .exit-survey__progress {
  display: none !important;
}

.exit-survey[data-survey-stage=prompt] .exit-survey__footer {
  visibility: hidden;
}

.exit-survey[data-survey-stage=prompt] .exit-survey__intro {
  max-width: 680px;
  margin: 0 auto;
  color: #fff;
  font-family: "new-kansas", Georgia, serif;
  font-size: clamp(29px, 4.8vw, 39px);
  font-weight: 500;
  letter-spacing: -0.025em;
  animation: exit-survey-prompt-in 620ms ease-out both;
}

.exit-survey[data-survey-stage=questions] .exit-survey__intro {
  margin: 0;
  position: absolute;
  top: 1px;
  left: 24px;
  right: 24px;
  font-size: 18px;
  animation: exit-survey-intro-up 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.exit-survey[data-upload-layout=final] > .exit-survey__upload--top,
.exit-survey[data-upload-layout=success] > .exit-survey__upload--top,
.exit-survey[data-upload-layout=final] .exit-survey__intro,
.exit-survey[data-upload-layout=success] .exit-survey__intro,
.exit-survey[data-upload-layout=final] .exit-survey__footer,
.exit-survey[data-upload-layout=success] .exit-survey__footer {
  display: none;
}

.exit-survey[data-upload-layout=final],
.exit-survey[data-upload-layout=success] {
  grid-template-rows: 1fr;
}

.exit-survey__wait[data-active=true] {
  min-height: 520px;
  display: grid;
  align-content: center;
}

.exit-survey__wait .exit-survey__upload {
  width: 100%;
}

/* Final production completion screen */
.exit-survey__complete[data-active=true] {
  display: block;
}

.exit-survey__success-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 2fr);
  align-items: center;
  gap: 48px;
}

.exit-survey__success-accent {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.exit-survey__success-title {
  margin: 0 0 11px;
  color: #fff;
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 600;
  line-height: 1.08;
}

.exit-survey__success-lead {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.exit-survey__success-panel {
  padding: 25px;
  background: rgba(31, 41, 55, 0.48);
  border: 1px solid rgba(242, 237, 223, 0.08);
  border-radius: 13px;
}

.exit-survey__success-panel h2 {
  margin: 0 0 28px;
  display: block;
  color: #fff;
  border: 0;
  font-family: "new-kansas", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.exit-survey__success-steps {
  margin: 0;
  padding: 0 0 0 42px;
  display: grid;
  gap: 27px;
  list-style: none;
}

.exit-survey__success-steps li {
  min-height: 42px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.exit-survey__success-steps li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: calc(100% + 27px);
  position: absolute;
  top: 30px;
  left: -25px;
  background: rgba(156, 185, 168, 0.5);
}

.exit-survey__step-number {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: -41px;
  display: grid;
  place-items: center;
  color: var(--exit-lime);
  background: #374151;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(31, 41, 55, 0.92);
  font-size: 16px;
  font-weight: 750;
}

.exit-survey__success-steps h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
}

.exit-survey__success-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.exit-survey__success-support {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-align: center;
}

.exit-survey__success-support a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exit-survey__close {
  min-height: 48px;
  margin: 18px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
}

.exit-survey__close:hover {
  background: #4b5563;
}

.exit-survey__close-note {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-align: center;
}

@keyframes exit-survey-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes exit-survey-question-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes exit-survey-followup-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes exit-survey-prompt-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes exit-survey-intro-up {
  from {
    opacity: 0.6;
    transform: translateY(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes exit-survey-minimize {
  from {
    opacity: 0.4;
    transform: scale(1.08);
  }
  to {
    opacity: 0.9;
    transform: scale(1);
  }
}
@media (max-width: 700px) {
  .exit-survey {
    width: 100%;
    min-height: calc(100vh - 104px);
  }
  .exit-survey__main {
    padding: 22px 15px 30px;
  }
  .exit-survey__title {
    font-size: 28px;
    text-decoration-thickness: 4px;
  }
  .exit-survey__supporting {
    margin-top: 20px;
    font-size: 15px;
  }
  .exit-survey__panel {
    margin-top: 27px;
    padding: 18px;
    border-radius: 16px;
  }
  .exit-survey__two {
    grid-template-columns: 1fr;
  }
  .exit-survey__primary {
    min-height: 68px;
    font-size: 19px;
  }
  .exit-survey__rating {
    gap: 6px;
  }
  .exit-survey__rating-choice {
    min-height: 110px;
    padding-inline: 3px;
  }
  .exit-survey__rating-label {
    font-size: 10px;
  }
  .exit-survey__face {
    width: 26px;
    height: 26px;
  }
  .exit-survey__eyes::before {
    left: 6px;
  }
  .exit-survey__eyes::after {
    right: 6px;
  }
  .exit-survey__mouth {
    left: 5px;
  }
  .exit-survey__followup-title {
    font-size: 18px;
  }
  .exit-survey__followup-choice {
    padding: 12px;
    font-size: 15px;
  }
  .exit-survey__row-choice {
    font-size: 16px;
  }
  .exit-survey__next {
    min-width: 142px;
    min-height: 52px;
  }
  .exit-survey__progress {
    margin-top: 28px;
  }
  .exit-survey__upload {
    width: min(100% - 28px, 520px);
    padding: 25px 21px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 17px;
    border-radius: 29px;
  }
  .exit-survey__upload-icon {
    width: 58px;
    height: 58px;
  }
  .exit-survey__spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }
  .exit-survey__upload-title {
    font-size: 22px;
  }
  .exit-survey__upload-message {
    font-size: 14px;
  }
  .exit-survey[data-upload-layout=top] > .exit-survey__upload--top {
    margin-bottom: 18px;
  }
  .exit-survey[data-survey-stage=questions] .exit-survey__intro {
    top: 0;
    left: 15px;
    right: 15px;
    font-size: 16px;
  }
  .exit-survey[data-survey-stage=prompt] .exit-survey__intro {
    max-width: 340px;
    font-size: 29px;
  }
  .exit-survey__success-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .exit-survey__success-accent {
    max-width: 118px;
  }
  .exit-survey__success-title {
    font-size: 36px;
    text-align: center;
  }
  .exit-survey__success-lead {
    text-align: center;
  }
  .exit-survey__success-panel {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .exit-survey *,
  .exit-survey *::before,
  .exit-survey *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Production instructor survey results */
.session-survey-results,
.survey-results {
  --survey-forest: #052a13;
  --survey-panel: #10391f;
  --survey-panel-soft: #164426;
  --survey-line: rgba(200, 229, 205, 0.15);
  --survey-lime: #b8ff00;
  --survey-cream: #f0ead5;
  --survey-muted: #9ab09f;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.session-survey-results *,
.session-survey-results *::before,
.session-survey-results *::after,
.survey-results *,
.survey-results *::before,
.survey-results *::after {
  box-sizing: border-box;
}

.session-survey-results__main {
  width: min(1320px, 100% - 48px);
  margin: 0 auto;
  padding: 36px 0 110px;
}

.session-survey-results__column {
  position: relative;
  width: min(940px, 100%);
  margin: 0 auto;
}

.survey-status-banner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  color: #f4fff5;
  background: #65cf89;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 600;
}

.survey-status-banner--not_started {
  background: #e66b55;
}

.survey-status-banner--in_progress {
  background: #dda935;
}

.survey-status-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: #fff;
  background: rgba(0, 62, 23, 0.4);
  border-radius: 999px;
  white-space: nowrap;
}

.survey-status-banner--not_started .survey-status-banner__pill {
  background: #aa392c;
}

.survey-status-banner--in_progress .survey-status-banner__pill {
  background: #9b6e0d;
}

.survey-status-banner__pill i {
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 50%;
}

.session-survey-results__draft-note {
  margin: 12px 0 0;
  padding: 12px 16px;
  color: #ffeebd;
  background: rgba(206, 151, 28, 0.15);
  border: 1px solid rgba(235, 182, 61, 0.35);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.survey-question-nav {
  position: fixed;
  top: 144px;
  left: clamp(24px, 3vw, 48px);
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 20;
}

.survey-question-nav > p {
  margin: 0 0 10px;
  padding-left: 10px;
  color: #7d9d85;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.survey-question-nav a {
  min-height: 36px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #7d9d85;
  border-left: 2px solid transparent;
  border-radius: 0 5px 5px 0;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  transition: 150ms ease;
}

.survey-question-nav a b {
  color: #87a28e;
  font-size: 14px;
}

.survey-question-nav a:hover,
.survey-question-nav a.is-active {
  color: #ebf7ed;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--survey-lime);
}

.survey-question-nav a.is-unanswered {
  opacity: 0.55;
}

.survey-question-list,
.survey-results__questions {
  display: flex;
  flex-direction: column;
}

.survey-question {
  scroll-margin-top: 24px;
  padding: 78px 0;
  border-bottom: 1px solid rgba(200, 229, 205, 0.13);
}

.survey-question:last-child {
  border-bottom: 0;
}

.survey-question__header {
  position: relative;
  margin: 0 auto 28px;
  text-align: center;
}

.survey-question__header > p {
  margin: 0 0 16px;
  color: var(--survey-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.survey-question__header h2 {
  max-width: 800px;
  display: block;
  margin: 0 auto;
  color: var(--survey-cream);
  border-bottom: 0;
  font-family: "new-kansas", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.28;
}

.survey-question__title-text {
  font-family: inherit;
  text-decoration: underline;
  text-decoration-color: var(--survey-lime);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.survey-question__header > div {
  margin-top: 14px;
  color: #87a28e;
  font-size: 14px;
}

.survey-question__header > span {
  display: block;
  margin-top: 12px;
  color: var(--survey-muted);
  font-size: 14px;
}

.survey-answer-panel,
.survey-no-answer {
  padding: 26px;
  background: rgba(22, 68, 38, 0.7);
  border: 1px solid rgba(187, 225, 194, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 12, 4, 0.12);
}

.session-survey-results .survey-answer-panel,
.session-survey-results .survey-no-answer {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.survey-answer-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.survey-answer-options--rating {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.survey-answer-options--rows {
  grid-template-columns: 1fr;
}

.survey-answer-option {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: var(--survey-muted);
  background: rgba(5, 42, 19, 0.28);
  border: 1px solid rgba(189, 225, 195, 0.13);
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
}

.survey-answer-options--rating .survey-answer-option {
  --rating-fill: #646464;
  min-height: 128px;
  flex-direction: column;
  gap: 7px;
}

.survey-answer-options--rating .survey-answer-option:nth-child(1) {
  --rating-fill: #d95a4e;
}

.survey-answer-options--rating .survey-answer-option:nth-child(2) {
  --rating-fill: #dc8545;
}

.survey-answer-options--rating .survey-answer-option:nth-child(3) {
  --rating-fill: #c7a93e;
  --rating-text: #2b2106;
}

.survey-answer-options--rating .survey-answer-option:nth-child(4) {
  --rating-fill: #b9c46f;
  --rating-text: #17210a;
}

.survey-answer-options--rating .survey-answer-option:nth-child(5) {
  --rating-fill: #67dc4a;
  --rating-text: #05260c;
}

.survey-answer-options--rating .survey-answer-option.is-selected {
  color: var(--rating-text, #fff);
  background: var(--rating-fill);
  border-color: var(--rating-fill);
  box-shadow: 0 0 0 2px rgba(184, 255, 0, 0.45);
}

.survey-answer-option.is-selected {
  color: #0e381d;
  background: #cdf29b;
  border-color: #f4ffe1;
  box-shadow: 0 0 0 2px rgba(184, 255, 0, 0.45);
}

.survey-answer-option--negative.is-selected {
  color: #fff;
  background: #b94839;
  border-color: #ffcbc3;
  box-shadow: 0 0 0 2px rgba(255, 142, 125, 0.35);
}

.survey-answer-option--warning.is-selected {
  color: #fff;
  background: #8b6211;
  border-color: #f4d575;
  box-shadow: 0 0 0 2px rgba(236, 185, 60, 0.3);
}

.survey-answer-option--agree.is-selected {
  color: #0c2915;
  background: var(--survey-lime);
  border-color: #efffbf;
}

.survey-answer-option__icon {
  font-size: 25px;
}

.survey-answer-option__label {
  font-weight: 520;
}

.survey-answer-options--rating .survey-answer-option strong {
  font-size: 18px;
  line-height: 1;
}

.survey-rating-face {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  color: var(--rating-fill);
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.78;
}

.survey-answer-option.is-selected .survey-rating-face {
  color: currentColor;
  opacity: 1;
  transform: scale(1.08);
}

.survey-rating-face__eyes::before,
.survey-rating-face__eyes::after {
  content: "";
  width: 2px;
  height: 2px;
  position: absolute;
  top: 8px;
  background: currentColor;
  border-radius: 50%;
}

.survey-rating-face__eyes::before {
  left: 8px;
}

.survey-rating-face__eyes::after {
  right: 8px;
}

.survey-rating-face__mouth {
  width: 12px;
  height: 6px;
  position: absolute;
  left: 7px;
  bottom: 6px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.survey-rating-face--1 .survey-rating-face__mouth,
.survey-rating-face--2 .survey-rating-face__mouth {
  bottom: 4px;
  border-top: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.survey-rating-face--1 .survey-rating-face__mouth {
  height: 8px;
}

.survey-rating-face--3 .survey-rating-face__mouth {
  height: 0;
  bottom: 8px;
  border: 0;
  border-top: 2px solid currentColor;
  border-radius: 0;
}

.survey-rating-face--4 .survey-rating-face__mouth {
  height: 4px;
}

.survey-rating-face--5 .survey-rating-face__mouth {
  height: 8px;
}

.survey-follow-up {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--survey-line);
}

.survey-follow-up h3 {
  margin: 0;
  color: #dae8dd;
  font-size: 17px;
  font-weight: 700;
}

.survey-follow-up > p {
  margin: 5px 0 14px;
  color: var(--survey-muted);
  font-size: 14px;
  font-style: italic;
}

.survey-follow-up__options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.survey-follow-up-option {
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px 34px 1fr;
  align-items: center;
  padding: 11px 14px;
  color: var(--survey-muted);
  background: rgba(2, 29, 11, 0.28);
  border: 1px solid var(--survey-line);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
}

.survey-follow-up-option.is-selected {
  color: #fff8d5;
  background: #815b0b;
  border-color: #ffe686;
  box-shadow: inset 3px 0 #ffc42e;
}

.survey-follow-up--positive .survey-follow-up-option.is-selected {
  color: #0e381d;
  background: #cdf29b;
  border-color: #f4ffe1;
  box-shadow: inset 3px 0 #8fc64b;
}

.survey-follow-up-option__check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 14px;
}

.survey-follow-up-option__icon {
  font-size: 21px;
  line-height: 1;
}

.survey-follow-up__other {
  margin-top: 16px;
  padding: 16px;
  color: #e9f1ea;
  background: rgba(2, 29, 11, 0.35);
  border-radius: 8px;
}

.survey-follow-up__other strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.survey-follow-up__other p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.survey-follow-up__unknown {
  color: #efbd62 !important;
}

.survey-answer-panel__label {
  margin: 0 0 14px;
  color: #a4baa9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.survey-free-text {
  min-height: 112px;
  margin: 0;
  padding: 18px;
  color: #eaf2eb;
  background: rgba(2, 29, 11, 0.35);
  border: 1px solid var(--survey-line);
  border-radius: 8px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  white-space: pre-wrap;
}

.survey-answer-panel__empty {
  margin: 0;
  padding: 22px;
  color: var(--survey-muted);
  text-align: center;
  font-size: 14px;
  font-style: italic;
}

.survey-no-answer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--survey-muted);
  font-size: 14px;
}

.survey-no-answer em {
  margin-left: auto;
  font-size: 14px;
}

.survey-question--unanswered {
  opacity: 0.72;
}

.survey-empty-state {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 52px;
  color: #8ba591;
  background: rgba(19, 60, 32, 0.55);
  border: 1px solid var(--survey-line);
  border-radius: 15px;
  text-align: center;
}

.survey-empty-state__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px dashed #54755d;
  border-radius: 50%;
}

.survey-empty-state__icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.survey-empty-state h2 {
  margin: 20px 0 8px;
  color: var(--survey-cream);
  font-family: "new-kansas", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.survey-empty-state p {
  max-width: 560px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

/* Aggregate dashboard */
.survey-results {
  min-height: calc(100vh - 48px);
  padding: 38px max(28px, (100vw - 1480px) / 2) 110px;
  color: #1d2b21;
  background: #f3f5f4;
}

.survey-results__page-header {
  width: min(1322px, 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 22px;
}

.survey-results__eyebrow {
  margin: 0 0 5px;
  color: #568260;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.survey-results__page-header h1 {
  margin: 0;
  color: #17261b;
  font-family: "new-kansas", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
}

.survey-results__page-header > div > p:last-child {
  margin: 6px 0 0;
  color: #6d786f;
  font-size: 14px;
}

.survey-date-filter {
  position: relative;
  flex: none;
}

.survey-date-filter__pill {
  min-width: 150px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  color: #26402d;
  background: #fff;
  border: 1px solid #cedbd1;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(24, 47, 31, 0.06);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.survey-date-filter__pill:hover,
.survey-date-filter__pill[aria-expanded=true] {
  background: #eef5f0;
  border-color: #9ebaa5;
}

.survey-date-filter__pill > svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.survey-date-filter__pill .survey-date-filter__chevron {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  transition: transform 150ms ease;
}

.survey-date-filter__pill[aria-expanded=true] .survey-date-filter__chevron {
  transform: rotate(180deg);
}

.survey-date-filter__popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: min(330px, 100vw - 32px);
  overflow: hidden;
  color: #263d2c;
  background: #fff;
  border: 1px solid #d5dfd7;
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(18, 44, 26, 0.18);
  transition: width 150ms ease;
}

.survey-date-filter__popover.is-custom-open {
  width: min(660px, 100vw - 32px);
}

.survey-date-filter__popover-header {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #e4ebe6;
}

.survey-date-filter__popover-header strong {
  font-size: 16px;
}

.survey-date-filter__popover-header > button:last-child {
  width: 34px;
  height: 34px;
  padding: 0;
  color: #617066;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.survey-date-filter__popover-header > button:last-child:hover {
  color: #193822;
  background: #edf3ee;
}

.survey-date-filter__presets {
  width: 100%;
  padding: 8px;
}

.survey-date-filter__presets > button {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 38px 9px 12px;
  color: #334b39;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.survey-date-filter__presets > button:hover {
  background: #edf4ef;
}

.survey-date-filter__presets > button.is-selected {
  color: #124d23;
  background: #e4f1e7;
  font-weight: 700;
}

.survey-date-filter__presets > button.is-selected::after {
  position: absolute;
  right: 13px;
  content: "✓";
  color: #197036;
  font-weight: 800;
}

.survey-date-filter__presets button span {
  flex: none;
  display: block;
  white-space: nowrap;
}

.survey-date-filter__presets button small {
  display: block;
  color: #718077;
  font-size: 14px;
  font-weight: 500;
}

.survey-date-filter__custom-option {
  margin-top: 6px;
  border-top: 1px solid #e4ebe6 !important;
  border-radius: 0 0 8px 8px !important;
}

.survey-date-filter__custom-option svg,
.survey-date-filter__back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.survey-date-filter__custom .survey-date-filter__popover-header {
  grid-template-columns: 1fr auto 1fr;
}

.survey-date-filter__custom .survey-date-filter__popover-header > button:last-child {
  justify-self: end;
}

.survey-date-filter__back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px;
  color: #52665a;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.survey-date-filter__back:hover {
  color: #173c22;
  background: #edf4ef;
}

.survey-date-filter__calendar-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.survey-date-filter .flatpickr-calendar.inline {
  top: auto;
  width: 100%;
  padding: 10px 12px 4px;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.survey-date-filter .flatpickr-calendar.arrowTop::before,
.survey-date-filter .flatpickr-calendar.arrowTop::after {
  display: none;
}

.survey-date-filter .flatpickr-months {
  padding-bottom: 8px;
}

.survey-date-filter .flatpickr-months .flatpickr-month {
  height: 36px;
  color: #263d2c;
  fill: #263d2c;
}

.survey-date-filter .flatpickr-current-month {
  padding-top: 5px;
  font-size: 15px;
}

.survey-date-filter .flatpickr-current-month .flatpickr-monthDropdown-months,
.survey-date-filter .flatpickr-current-month input.cur-year {
  color: #263d2c;
  font-size: 15px;
  font-weight: 700;
}

.survey-date-filter .flatpickr-prev-month,
.survey-date-filter .flatpickr-next-month {
  top: 9px;
  color: #44624d;
  fill: #44624d;
}

.survey-date-filter .flatpickr-innerContainer {
  justify-content: center;
}

.survey-date-filter span.flatpickr-weekday {
  color: #66766c;
  font-size: 14px;
  font-weight: 700;
}

.survey-date-filter .flatpickr-day {
  color: #314b38;
  border-radius: 6px;
  font-size: 14px;
}

.survey-date-filter .flatpickr-day:hover {
  background: #e5efe8;
  border-color: #e5efe8;
}

.survey-date-filter .flatpickr-day.today {
  border-color: #6e9b77;
}

.survey-date-filter .flatpickr-day.inRange {
  background: #dcecdf;
  border-color: #dcecdf;
  box-shadow: -5px 0 0 #dcecdf, 5px 0 0 #dcecdf;
}

.survey-date-filter .flatpickr-day.selected,
.survey-date-filter .flatpickr-day.startRange,
.survey-date-filter .flatpickr-day.endRange,
.survey-date-filter .flatpickr-day.selected:hover,
.survey-date-filter .flatpickr-day.startRange:hover,
.survey-date-filter .flatpickr-day.endRange:hover {
  color: #fff;
  background: #17652d;
  border-color: #17652d;
}

.survey-date-filter__custom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 12px 16px;
  border-top: 1px solid #e4ebe6;
}

.survey-date-filter__custom-footer > span {
  color: #5d6f63;
  font-size: 14px;
  font-weight: 600;
}

.survey-date-filter__custom-footer > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.survey-date-filter__custom-footer button {
  height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.survey-date-filter__text-button {
  color: #52665a;
  background: transparent;
  border: 0;
}

.survey-date-filter__text-button:hover {
  background: #edf4ef;
}

.survey-date-filter__apply {
  color: #fff;
  background: #17652d;
  border: 1px solid #17652d;
}

.survey-date-filter__apply:disabled {
  color: #8b9990;
  background: #e8ece9;
  border-color: #dde4df;
  cursor: not-allowed;
}

.survey-results__preview-controls {
  min-width: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  color: #3e5344;
  background: #fff9df;
  border: 1px solid #e9d990;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(24, 47, 31, 0.05);
}

.survey-results__preview-controls strong {
  display: block;
  color: #394d3f;
  font-size: 14px;
}

.survey-results__preview-controls span {
  display: block;
  margin-top: 3px;
  color: #6f755f;
  font-size: 14px;
}

.survey-results__preview-controls a {
  flex: none;
  color: #155c2a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.survey-results__body {
  width: min(1322px, 100%);
  display: grid;
  grid-template-columns: 210px minmax(0, 1080px);
  align-items: start;
  gap: 32px;
  margin: 0 auto;
}

.survey-results__report {
  width: 100%;
  padding: 44px 48px 104px;
  color: #e9f4ea;
  background: var(--survey-forest);
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(24, 54, 34, 0.16);
}

.survey-question-nav--aggregate {
  position: sticky;
  top: 76px;
  left: auto;
  width: 210px;
  margin-top: 40px;
}

.survey-question-nav--aggregate > p {
  color: #657169;
}

.survey-question-nav--aggregate a {
  color: #667169;
}

.survey-question-nav--aggregate a b {
  color: #4f6f56;
}

.survey-question-nav--aggregate a:hover,
.survey-question-nav--aggregate a.is-active {
  color: #174722;
  background: #e5ebe6;
}

.survey-results__report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--survey-line);
}

.survey-results__report-header p {
  margin: 0;
  color: var(--survey-cream);
  font-family: "new-kansas", Georgia, serif;
  font-size: 27px;
}

.survey-results__report-header h2 {
  margin: 6px 0 0;
  color: #91a897;
  font-size: 14px;
  font-weight: 500;
}

.survey-results__report-header-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.survey-results__report-header-actions > span {
  padding: 9px 13px;
  color: #b8cfbd;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--survey-line);
  border-radius: 999px;
  font-size: 14px;
}

.survey-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 0 8px;
}

.survey-metric-card {
  min-height: 138px;
  padding: 20px;
  background: rgba(21, 67, 37, 0.72);
  border: 1px solid var(--survey-line);
  border-radius: 10px;
}

.survey-metric-card p {
  margin: 0;
  color: var(--survey-muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.survey-metric-card strong {
  display: block;
  margin: 9px 0 5px;
  color: var(--survey-lime);
  font-family: "new-kansas", Georgia, serif;
  font-size: 35px;
  font-weight: 500;
}

.survey-metric-card span {
  color: var(--survey-muted);
  font-size: 14px;
  line-height: 1.45;
}

.survey-metric-card__meter {
  height: 6px;
  display: block;
  overflow: hidden;
  margin: 9px 0;
  background: rgba(0, 18, 6, 0.45);
  border-radius: 999px;
}

.survey-metric-card__meter i {
  height: 100%;
  display: block;
  background: var(--survey-lime);
  border-radius: inherit;
}

.survey-metric-card__stars {
  position: relative;
  width: max-content;
  display: block;
  margin: 7px 0 8px;
  color: #416249 !important;
  font-size: 14px !important;
  letter-spacing: 2px;
  line-height: 1 !important;
}

.survey-metric-card__stars i {
  font-style: normal;
}

.survey-metric-card__stars b {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #f6c640;
  font-weight: inherit;
  white-space: nowrap;
}

.survey-question--aggregate {
  padding: 76px 0;
}

.survey-question--aggregate .survey-question__header {
  max-width: 880px;
}

.survey-answer-panel--aggregate {
  width: min(880px, 100%);
  margin-right: auto;
  margin-left: auto;
  padding: 26px;
}

.survey-rating-spectrum__visual {
  position: relative;
  padding-top: 76px;
}

.survey-rating-spectrum__average {
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateX(-50%);
  color: var(--survey-cream);
  line-height: 1;
  white-space: nowrap;
}

.survey-rating-spectrum__average strong {
  padding: 5px 9px;
  color: #102717;
  background: var(--survey-cream);
  border-radius: 999px;
  font-size: 16px;
}

.survey-rating-spectrum__average::after {
  width: 2px;
  height: 41px;
  margin-top: 4px;
  content: "";
  background: var(--survey-cream);
}

.survey-rating-spectrum__bar {
  height: 82px;
  display: flex;
  background: rgba(0, 19, 6, 0.28);
  border: 1px solid var(--survey-line);
  border-radius: 9px;
}

.survey-rating-spectrum__segment {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #122215;
  white-space: nowrap;
}

.survey-rating-spectrum__segment + .survey-rating-spectrum__segment {
  border-left: 2px solid rgba(0, 38, 13, 0.68);
}

.survey-rating-spectrum__segment:first-child {
  border-radius: 8px 0 0 8px;
}

.survey-rating-spectrum__segment:last-child {
  border-radius: 0 8px 8px 0;
}

.survey-rating-spectrum__segment--1 {
  background: #d95a4e;
}

.survey-rating-spectrum__segment--2 {
  background: #dc8545;
}

.survey-rating-spectrum__segment--3 {
  background: #c7a93e;
}

.survey-rating-spectrum__segment--4 {
  background: #b9c46f;
}

.survey-rating-spectrum__segment--5 {
  background: #67dc4a;
}

.survey-rating-spectrum__segment .survey-rating-face {
  flex: none;
  color: currentColor;
}

.survey-rating-spectrum__segment strong {
  font-size: 17px;
}

.survey-rating-spectrum__segment.is-compact {
  min-width: 2px;
}

.survey-rating-spectrum__tooltip {
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  z-index: 5;
  padding: 8px 11px;
  transform: translate(-50%, 4px);
  color: #eff7f0;
  background: #061f0d;
  border: 1px solid #52735a;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 12, 4, 0.28);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease, transform 120ms ease;
}

.survey-rating-spectrum__tooltip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  transform: translate(-50%, -4px) rotate(45deg);
  background: #061f0d;
  border-right: 1px solid #52735a;
  border-bottom: 1px solid #52735a;
}

.survey-rating-spectrum__segment:hover .survey-rating-spectrum__tooltip,
.survey-rating-spectrum__segment:focus-visible .survey-rating-spectrum__tooltip {
  transform: translate(-50%, 0);
  opacity: 1;
}

.survey-rating-spectrum__segment:focus-visible {
  z-index: 4;
  outline: 2px solid var(--survey-cream);
  outline-offset: 2px;
}

.survey-rating-spectrum__bar--empty {
  align-items: center;
  justify-content: center;
  color: var(--survey-muted);
  font-size: 14px;
  font-style: italic;
}

.survey-rating-spectrum__legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
}

.survey-rating-spectrum__legend-item {
  --rating-fill: #78917e;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 0 8px;
  color: #dce9de;
  text-align: center;
}

.survey-rating-spectrum__legend-item + .survey-rating-spectrum__legend-item {
  border-left: 1px solid var(--survey-line);
}

.survey-rating-spectrum__legend-item--1 {
  --rating-fill: #d95a4e;
}

.survey-rating-spectrum__legend-item--2 {
  --rating-fill: #dc8545;
}

.survey-rating-spectrum__legend-item--3 {
  --rating-fill: #c7a93e;
}

.survey-rating-spectrum__legend-item--4 {
  --rating-fill: #b9c46f;
}

.survey-rating-spectrum__legend-item--5 {
  --rating-fill: #67dc4a;
}

.survey-rating-spectrum__legend-item .survey-rating-face {
  color: var(--rating-fill);
}

.survey-rating-spectrum__legend-item strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.survey-rating-spectrum__legend-item > span:last-child {
  color: var(--survey-muted);
  font-size: 14px;
}

.survey-split-distribution__bar {
  height: 88px;
  display: flex;
  overflow: hidden;
  background: rgba(0, 19, 6, 0.28);
  border: 1px solid var(--survey-line);
  border-radius: 9px;
}

.survey-split-distribution__segment {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
}

.survey-split-distribution__segment-icon {
  font-size: 24px;
}

.survey-split-distribution__segment-value {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.survey-split-distribution__segment-value strong {
  font-size: 18px;
}

.survey-split-distribution__segment-value small {
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
}

.survey-split-distribution__segment--negative {
  justify-content: flex-start;
  color: #fff;
  background: #b94839;
}

.survey-split-distribution__segment--warning {
  color: #fff;
  background: #c1621b;
}

.survey-split-distribution__segment--neutral {
  color: #fff;
  background: #78917e;
}

.survey-split-distribution__segment--positive {
  color: #102717;
  background: #78bd62;
}

.survey-split-distribution__segment--agree {
  color: #102717;
  background: #9cda00;
}

.survey-split-distribution__segment:not(:first-child):not(:last-child) {
  justify-content: center;
}

.survey-split-distribution__segment:last-child {
  justify-content: flex-end;
}

.survey-split-distribution__segment.is-compact {
  justify-content: center;
  padding-right: 5px;
  padding-left: 5px;
}

.survey-split-distribution__segment.is-compact .survey-split-distribution__segment-icon,
.survey-split-distribution__segment.is-compact .survey-split-distribution__count-unit {
  display: none;
}

.survey-split-distribution__segment--negative small,
.survey-split-distribution__segment--warning small,
.survey-split-distribution__segment--neutral small {
  color: rgba(255, 255, 255, 0.8);
}

.survey-split-distribution__segment--agree small,
.survey-split-distribution__segment--positive small {
  color: rgba(16, 39, 23, 0.72);
}

.survey-split-distribution__segment + .survey-split-distribution__segment {
  border-left: 2px solid rgba(0, 38, 13, 0.68);
}

.survey-split-distribution__bar--empty {
  align-items: center;
  justify-content: center;
  color: var(--survey-muted);
  font-size: 14px;
  font-style: italic;
}

.survey-split-distribution__legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 16px;
}

.survey-split-distribution__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce9de;
  font-size: 15px;
}

.survey-split-distribution__legend-item:not(:first-child):not(:last-child) {
  justify-content: center;
  text-align: center;
}

.survey-split-distribution__legend-item:last-child {
  justify-content: flex-end;
  text-align: right;
}

.survey-split-distribution__legend-item:last-child .survey-split-distribution__swatch {
  order: 2;
}

.survey-split-distribution__legend-item > strong {
  font-weight: 650;
}

.survey-split-distribution__swatch {
  width: 18px;
  height: 18px;
  display: block;
  background: #78917e;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
}

.survey-split-distribution__swatch--negative {
  background: #b94839;
}

.survey-split-distribution__swatch--warning {
  background: #c1621b;
}

.survey-split-distribution__swatch--neutral {
  background: #78917e;
}

.survey-split-distribution__swatch--positive {
  background: #78bd62;
}

.survey-split-distribution__swatch--agree {
  background: #9cda00;
}

.survey-split-distribution--count-3 .survey-split-distribution__legend {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.survey-distribution {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.survey-distribution__row {
  --distribution-color: #78917e;
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  gap: 16px;
}

.survey-distribution__row--negative {
  --distribution-color: #b94839;
}

.survey-distribution__row--warning {
  --distribution-color: #c59e3d;
}

.survey-distribution__row--positive {
  --distribution-color: #78bd62;
}

.survey-distribution__row--agree {
  --distribution-color: #9cda00;
}

.survey-distribution__label {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #b7c9ba;
  font-size: 16px;
  line-height: 1.35;
}

.survey-distribution__label strong {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.survey-distribution__count {
  color: var(--survey-muted);
}

.survey-distribution__icon {
  font-size: 21px;
  line-height: 1;
}

.survey-distribution__track {
  position: relative;
  height: 44px;
  overflow: hidden;
  background: rgba(0, 19, 6, 0.28);
  border: 1px solid var(--survey-line);
  border-radius: 7px;
}

.survey-distribution__track i {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 1px;
  background: var(--distribution-color);
  opacity: 0.82;
}

.survey-distribution__row.is-leading .survey-distribution__track {
  border-color: var(--distribution-color);
  box-shadow: inset 0 0 0 1px var(--distribution-color);
}

.survey-distribution__row.is-leading .survey-distribution__track i {
  opacity: 1;
}

.survey-distribution__track b {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  color: #ebf7ed;
  font-size: 14px;
}

.survey-distribution--rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.survey-distribution--rating .survey-distribution__row,
.survey-distribution--count-2 .survey-distribution__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 19, 6, 0.22);
  border: 1px solid var(--survey-line);
  border-radius: 9px;
}

.survey-distribution--rating .survey-distribution__label,
.survey-distribution--count-2 .survey-distribution__label {
  grid-template-columns: 1fr auto;
}

.survey-distribution--rating .survey-distribution__label {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.survey-distribution--rating .survey-distribution__label strong,
.survey-distribution--count-2 .survey-distribution__label strong {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.survey-distribution--rating .survey-distribution__row:nth-child(1) {
  --rating-fill: #d95a4e;
  --distribution-color: #d95a4e;
}

.survey-distribution--rating .survey-distribution__row:nth-child(2) {
  --rating-fill: #dc8545;
  --distribution-color: #dc8545;
}

.survey-distribution--rating .survey-distribution__row:nth-child(3) {
  --rating-fill: #c7a93e;
  --distribution-color: #c7a93e;
}

.survey-distribution--rating .survey-distribution__row:nth-child(4) {
  --rating-fill: #b9c46f;
  --distribution-color: #b9c46f;
}

.survey-distribution--rating .survey-distribution__row:nth-child(5) {
  --rating-fill: #67dc4a;
  --distribution-color: #67dc4a;
}

.survey-distribution--rating .survey-rating-face {
  color: var(--rating-fill);
}

.survey-distribution--rating .survey-distribution__label strong {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.survey-distribution--rating .survey-distribution__count {
  line-height: 1;
}

.survey-distribution__rating-value {
  color: #f0ead5;
  font-size: 17px;
  line-height: 1;
}

.survey-distribution--rating .survey-distribution__track {
  height: 34px;
}

.survey-distribution--count-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.survey-reasons {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--survey-line);
}

.survey-reasons > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.survey-reasons h3 {
  margin: 0;
  color: #dce9de;
  font-size: 17px;
}

.survey-reasons p {
  margin: 5px 0 0;
  color: var(--survey-muted);
  font-size: 14px;
  font-style: italic;
}

.survey-reasons header > span {
  color: var(--survey-muted);
  font-size: 14px;
  white-space: nowrap;
}

.survey-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.survey-reason-row {
  --reason-color: rgba(193, 98, 27, 0.78);
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 11px 14px;
  color: #eaf2eb;
  background: rgba(0, 19, 6, 0.25);
  border: 1px solid var(--survey-line);
  border-radius: 7px;
  font-size: 16px;
  line-height: 1.4;
}

.survey-reasons--positive .survey-reason-row {
  --reason-color: rgba(126, 191, 98, 0.68);
}

.survey-reason-row.is-leading {
  border-color: var(--reason-color);
}

.survey-reason-row > i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--reason-color);
}

.survey-reason-row > *:not(i) {
  position: relative;
  z-index: 1;
}

.survey-reason-row > span {
  font-size: 21px;
  line-height: 1;
}

.survey-reason-row strong {
  font-weight: 550;
}

.survey-reason-row b {
  font-size: 14px;
}

.survey-text-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  color: #dce9de;
  background: rgba(0, 19, 6, 0.25);
  border-radius: 8px;
}

.survey-text-toggle strong {
  display: block;
  font-size: 14px;
}

.survey-text-toggle span {
  display: block;
  margin-top: 4px;
  color: var(--survey-muted);
  font-size: 14px;
}

.survey-text-toggle a,
.survey-text-link {
  color: var(--survey-lime);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.survey-text-entries {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.survey-text-entry {
  position: relative;
  padding: 16px;
  color: #dce8de;
  background: rgba(3, 32, 12, 0.5);
  border: 1px solid var(--survey-line);
  border-radius: 8px;
}

.survey-text-entry header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.survey-text-entry header strong {
  font-size: 14px;
}

.survey-text-entry header span {
  color: var(--survey-muted);
  font-size: 14px;
  text-align: right;
}

.survey-text-entry p {
  margin: 12px 0 10px;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.survey-text-entry__quote {
  margin: 16px 0 12px;
  color: #eef6ef;
  border: 0;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  white-space: pre-wrap;
}

.survey-text-entry__link {
  color: #9bc7a4;
  font-size: 14px;
}

.survey-text-entry__preview-label {
  color: #9bc7a4;
  font-size: 14px;
  font-weight: 650;
}

.survey-text-link {
  display: inline-block;
  margin-top: 13px;
}

.survey-pagination {
  margin-top: 18px;
  color: #9bb2a0;
  font-size: 14px;
}

.survey-pagination nav {
  display: flex;
  gap: 5px;
}

.survey-pagination a,
.survey-pagination .current,
.survey-pagination .disabled {
  display: inline-flex;
  min-width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  color: inherit;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--survey-line);
  border-radius: 4px;
  text-decoration: none;
}

.survey-pagination .current {
  color: #17391e;
  background: var(--survey-lime);
}

.survey-results__filter-error,
.survey-results-empty {
  max-width: 720px;
  margin: 60px auto;
  padding: 38px;
  color: #526057;
  background: #fff;
  border: 1px solid #d9e1db;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(24, 47, 31, 0.07);
  text-align: center;
}

.survey-results__filter-error {
  color: #8d3129;
  background: #fff5f3;
  border-color: #f0c6c0;
  text-align: left;
}

.survey-results__filter-error h2,
.survey-results-empty h2 {
  margin: 0 0 8px;
  color: #1d3022;
  font-family: "new-kansas", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.survey-results__filter-error h2 {
  color: #76271f;
}

.survey-results__filter-error ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}

.survey-results-empty > span {
  display: block;
  margin-bottom: 12px;
  color: #6d9174;
  font-size: 28px;
}

.survey-results-empty p {
  margin: 0;
  font-size: 14px;
}

.survey-results-empty a {
  display: inline-block;
  margin-top: 14px;
  color: #17622c;
  font-size: 14px;
  font-weight: 700;
}

.session-survey-results .session-viewer-header__student h1 {
  font-size: 30px;
}

.session-survey-results .session-viewer-header__student p,
.session-survey-results .session-viewer-header__controls span {
  font-size: 14px;
}

.survey-results a:focus-visible,
.survey-results input:focus-visible,
.survey-results button:focus-visible,
.session-survey-results a:focus-visible {
  outline: 3px solid #f6c640;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .survey-results *,
  .session-survey-results * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 1280px) {
  .session-survey-results__main {
    width: min(940px, 100% - 32px);
  }
  .session-survey-results .survey-question-nav {
    display: none;
  }
}
@media (max-width: 1100px) {
  .session-survey-results .session-viewer-header__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .session-survey-results .session-viewer-header__identity {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .session-survey-results .session-viewer-header__student {
    min-width: 0;
  }
  .session-survey-results .session-viewer-header__student h1,
  .session-survey-results .session-viewer-header__student p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .session-survey-results .session-viewer-header__navigation {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .session-survey-results .session-viewer-header__controls {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 860px) {
  .survey-results {
    padding: 22px 16px 60px;
  }
  .survey-results__page-header {
    align-items: stretch;
    flex-direction: column;
  }
  .survey-date-filter {
    align-self: flex-start;
  }
  .survey-date-filter__popover {
    right: auto;
    left: 0;
  }
  .survey-results__report {
    width: 100%;
    padding: 24px 20px 60px;
  }
}
@media (max-width: 1100px) {
  .survey-results__body {
    display: block;
  }
  .survey-question-nav--aggregate {
    display: none;
  }
}
@media (max-width: 620px) {
  .instructor-navbar__inner {
    padding-right: 8px;
    padding-left: 8px;
  }
  .instructor-navbar__primary {
    min-width: 0;
  }
  .instructor-navbar__brand-label {
    display: none;
  }
  .instructor-navbar__organization {
    max-width: 118px;
    margin-left: 8px;
    padding-left: 8px;
  }
  .instructor-navbar__organization form,
  .instructor-navbar__organization select {
    min-width: 0;
    max-width: 108px;
  }
  .instructor-navbar__organization > span {
    max-width: 108px;
    overflow: hidden;
    padding-right: 7px;
    padding-left: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .instructor-navbar__section-links {
    margin-left: 6px;
  }
  .instructor-navbar__section-link {
    padding-right: 9px;
    padding-left: 9px;
  }
  .instructor-navbar__section-link > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .instructor-navbar__account > div {
    margin-left: 2px;
  }
  .instructor-navbar__account button {
    padding-right: 3px;
    padding-left: 3px;
  }
  .instructor-navbar__account-name,
  .instructor-navbar__account-role,
  .instructor-navbar__account-chevron {
    display: none;
  }
  .session-survey-results .session-viewer-header {
    padding: 12px;
  }
  .session-survey-results .session-viewer-header__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 11px;
  }
  .session-survey-results .session-viewer-header__identity {
    grid-column: 1/-1;
    min-width: 0;
  }
  .session-survey-results .session-viewer-header__back {
    margin-right: 12px;
  }
  .session-survey-results .session-viewer-header__back span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .session-survey-results .session-viewer-header__student {
    min-width: 0;
  }
  .session-survey-results .session-viewer-header__student h1 {
    overflow: hidden;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .session-survey-results .session-viewer-header__student p {
    max-width: 265px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .session-survey-results .session-viewer-header__navigation {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    justify-content: flex-start;
  }
  .session-survey-results .session-viewer-header__navigation > div {
    min-width: 0;
  }
  .session-survey-results .session-viewer-header__step-label,
  .session-survey-results .session-viewer-header__survey-label,
  .session-survey-results .session-viewer-header__progress {
    display: none;
  }
  .session-survey-results .session-viewer-header__navigation .h-7.w-px {
    margin-right: 8px;
    margin-left: 8px;
  }
  .session-survey-results .session-viewer-header__survey-link {
    padding-right: 9px;
    padding-left: 9px;
  }
  .session-survey-results .session-viewer-header__controls {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }
  .session-survey-results__main {
    width: calc(100% - 24px);
    padding-top: 14px;
  }
  .survey-status-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .survey-question {
    padding: 52px 0;
  }
  .survey-question__header h2 {
    font-size: 26px;
  }
  .survey-answer-options,
  .survey-answer-options--rating {
    grid-template-columns: 1fr;
  }
  .survey-answer-options--rating .survey-answer-option {
    min-height: 76px;
    flex-direction: row;
  }
  .survey-metrics {
    grid-template-columns: 1fr;
  }
  .survey-results__report-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .survey-results__report-header-actions {
    align-items: flex-start;
  }
  .survey-distribution__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .survey-distribution__label {
    grid-template-columns: 22px 1fr auto;
  }
  .survey-distribution--rating {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .survey-distribution--rating .survey-distribution__row:last-child {
    grid-column: 1/-1;
  }
  .survey-distribution--count-2 {
    grid-template-columns: 1fr;
  }
  .survey-date-filter__custom-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .survey-date-filter__custom-footer > div {
    justify-content: flex-end;
  }
  .survey-rating-spectrum__legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }
  .survey-rating-spectrum__legend-item:nth-child(odd) {
    border-left: 0;
  }
  .survey-rating-spectrum__legend-item:last-child {
    grid-column: 1/-1;
  }
  .survey-split-distribution__segment {
    gap: 7px;
    padding: 0 11px;
  }
  .survey-split-distribution__legend,
  .survey-split-distribution--count-3 .survey-split-distribution__legend {
    grid-template-columns: 1fr;
  }
  .survey-split-distribution__legend-item,
  .survey-split-distribution__legend-item:not(:first-child):not(:last-child),
  .survey-split-distribution__legend-item:last-child {
    justify-content: flex-start;
    text-align: left;
  }
  .survey-split-distribution__legend-item:last-child .survey-split-distribution__swatch {
    order: 0;
  }
  .survey-reasons > header {
    align-items: flex-start;
    flex-direction: column;
  }
  .survey-reasons header > span {
    white-space: normal;
  }
  .survey-text-entry header {
    flex-direction: column;
    gap: 3px;
  }
  .survey-text-entry header span {
    text-align: left;
  }
}
.is-video-hidden {
  display: none;
}

body.showing-hidden-videos .is-video-hidden {
  display: block;
}

/*# sourceMappingURL=/assets/application-41bd408d.css.map */
