/* ============================================
   FORM STYLES - Vendez Votre Voiture Express
   ============================================ */

/* --- Header fix: tablet + mobile only --- */
@media (max-width: 1080px) {
  #header-bottom-bar {
    display: none !important;
  }

  #header-wrap {
    display: flex !important;
    align-items: center !important;
  }

  .style1 .logo {
    padding: 0 !important;
    float: none !important;
    flex-shrink: 0;
  }

  #header-controls-right {
    float: none !important;
    margin-left: auto !important;
    flex-shrink: 0;
  }
}

/* --- Reduce section spacing on mobile --- */
@media (max-width: 767px) {
  .tatsu-HkjU-jnd-l .tatsu-section-pad {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* --- Step indicator --- */
.form-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 25px;
  padding: 0 10px;
}

.form-step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  background: #e0e0e0;
  color: #999;
  transition: all 0.3s;
  flex-shrink: 0;
}

.form-step-dot.active {
  background: #FC8915;
  color: #fff;
  box-shadow: 0 3px 10px rgba(252,137,21,0.35);
}

.form-step-dot.done {
  background: #035083;
  color: #fff;
}

.form-step-line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  margin: 0 8px;
  border-radius: 3px;
  transition: background 0.3s;
  max-width: 80px;
}

.form-step-line.active {
  background: #035083;
}

.form-step-label {
  font-size: 10px;
  font-family: Poppins, sans-serif;
  color: #999;
  text-align: center;
  margin-top: 4px;
  transition: color 0.3s;
}

.form-step-label.active {
  color: #FC8915;
  font-weight: 600;
}

/* --- Form fields --- */
.form-field-group {
  margin-bottom: 18px;
}

.form-field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-family: Poppins, sans-serif;
}

.form-field-label .req {
  color: #FC8915;
  margin-left: 2px;
}

.form-field-hint {
  font-size: 12px;
  color: #999;
  font-family: Poppins, sans-serif;
  margin: 4px 0 8px;
  font-style: italic;
}

.form-field-input,
.form-field-select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  height: 48px;
  line-height: 1.4;
}

/* Select arrow */
.form-field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field-input:focus,
.form-field-select:focus {
  border-color: #035083;
  box-shadow: 0 0 0 3px rgba(3,80,131,0.08);
}

.form-field-input::placeholder,
.form-field-select::placeholder {
  color: #bbb;
  opacity: 1;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* Webkit/Firefox placeholder consistency */
.form-field-input::-webkit-input-placeholder { color: #bbb; opacity: 1; font-size: 14px; }
.form-field-input::-moz-placeholder { color: #bbb; opacity: 1; font-size: 14px; }
.form-field-input:-ms-input-placeholder { color: #bbb; opacity: 1; font-size: 14px; }

/* Textarea placeholder fix */
.form-field-textarea::placeholder { color: #bbb !important; opacity: 1; }
.form-field-textarea::-webkit-input-placeholder { color: #bbb !important; }
.form-field-textarea::-moz-placeholder { color: #bbb !important; }

.form-field-input.error,
.form-field-select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.08);
}

.form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Custom select dropdown --- */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-display {
  width: 100%;
  padding: 13px 42px 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  color: #333;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  user-select: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select-display:hover {
  border-color: #035083;
}

.custom-select-display.open {
  border-color: #035083;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 0 3px rgba(3,80,131,0.08);
}

.custom-select-display.error {
  border-color: #e74c3c;
}

.custom-select-display .placeholder {
  color: #bbb;
}

.custom-select-display .brand-logo {
  width: 32px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.custom-select-display .selected-text {
  font-weight: 500;
  color: #333;
}

.custom-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  transition: transform 0.25s;
  line-height: 1;
}

.custom-select-arrow.open {
  transform: translateY(-50%) rotate(180deg);
  color: #035083;
}

.custom-select-arrow svg {
  width: 14px;
  height: 14px;
}

/* --- Dropdown panel --- */
.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #035083;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 10px 10px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 200;
  display: none;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.custom-select-dropdown.open {
  display: block;
  animation: dropdownSlide 0.2s ease;
}

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Search */
.custom-select-search {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.custom-select-search input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  color: #333;
  outline: none;
  background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 12px center no-repeat;
  transition: border-color 0.2s;
}

.custom-select-search input:focus {
  border-color: #035083;
  background-color: #fff;
}

/* Option items */
.custom-select-option {
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  color: #404040;
  transition: background 0.12s;
  border-bottom: 1px solid #f8f8f8;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: #f0f5fa;
}

.custom-select-option.selected {
  background: #e8f0f7;
  font-weight: 600;
  color: #035083;
}

.custom-select-option .option-logo {
  width: 34px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

.custom-select-option .option-text {
  flex: 1;
}

.custom-select-option .option-check {
  color: #035083;
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s;
}

.custom-select-option.selected .option-check {
  opacity: 1;
}

/* No results */
.custom-select-empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 13px;
  font-family: Poppins, sans-serif;
}

/* --- Buttons --- */
.form-btn-next {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #035083, #024a75);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3,80,131,0.3);
}

.form-btn-next:active {
  transform: translateY(0);
}

.form-btn-submit {
  flex: 1;
  padding: 14px 20px;
  background: linear-gradient(135deg, #FC8915, #e07600);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252,137,21,0.35);
}

.form-btn-submit:active {
  transform: translateY(0);
}

.form-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-btn-prev {
  padding: 12px 24px;
  background: transparent;
  color: #035083;
  border: 2px solid #035083;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.form-btn-prev:hover {
  background: #035083;
  color: #fff;
}

.form-buttons-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

/* --- File upload --- */
.file-upload-zone {
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  padding: 30px 15px;
  text-align: center;
  cursor: default;
  transition: all 0.25s;
  background: #fafafa;
}

.file-upload-zone:hover {
  border-color: #FC8915;
  background: #fff8f0;
}

.file-upload-zone.dragover {
  border-color: #FC8915;
  background: #fff3e0;
  transform: scale(1.01);
}

.file-upload-zone > svg {
  color: #ccc;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.file-upload-zone:hover > svg {
  color: #FC8915;
}

.file-upload-text-desktop {
  font-size: 14px;
  color: #999;
  font-family: Poppins, sans-serif;
  margin: 0 0 10px;
}

.file-upload-text-mobile {
  display: none;
  font-size: 14px;
  color: #999;
  font-family: Poppins, sans-serif;
  margin: 0 0 10px;
}

.file-upload-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FC8915;
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.file-upload-btn:hover {
  background: #e07600;
}

.file-upload-btn svg {
  flex-shrink: 0;
}

.file-upload-btn-camera {
  display: none;
  background: #035083;
}

.file-upload-btn-camera:hover {
  background: #023a5e;
}

.file-upload-hint {
  font-size: 12px;
  color: #bbb;
  font-family: Poppins, sans-serif;
  margin: 10px 0 0;
}

.file-upload-input {
  display: none !important;
}

/* File list with thumbnails */
.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #f0f5fa;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  animation: fileSlide 0.2s ease;
  text-align: left;
}

@keyframes fileSlide {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.file-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}

.file-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.file-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #035083;
  font-weight: 500;
  font-size: 13px;
}

.file-item-size {
  color: #999;
  white-space: nowrap;
  font-size: 11px;
}

.file-item-remove {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.file-item-remove:hover {
  background: #c0392b;
  transform: scale(1.1);
}

/* --- Price suffix --- */
.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 55px;
}

.input-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 13px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  pointer-events: none;
}

/* --- Scrollbar for dropdown --- */
.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 3px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

/* ============================================
   FORM CONTAINER OVERRIDE
   Fix overflow issues inside Tatsu wrapper
   ============================================ */
.forminator-ui,
.tatsu-shortcode-module,
.tatsu-column-pad {
  overflow: visible !important;
}

#formStep1,
#formStep2 {
  padding-bottom: 10px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  /* Form fields */
  .form-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-field-input,
  .form-field-select {
    font-size: 16px; /* prevents iOS zoom on focus */
    height: 50px;
    padding: 14px 16px;
  }

  .form-field-select {
    padding-right: 40px;
  }

  .form-field-label {
    font-size: 13px;
  }

  /* Custom dropdown */
  .custom-select-display {
    min-height: 50px;
    padding: 14px 42px 14px 16px;
    font-size: 15px;
  }

  .custom-select-dropdown {
    max-height: 250px;
  }

  .custom-select-option {
    padding: 12px 16px;
    font-size: 15px;
  }

  .custom-select-option .option-logo {
    width: 30px;
    height: 22px;
  }

  .custom-select-search input {
    font-size: 16px; /* prevents iOS zoom */
    padding: 10px 14px 10px 36px;
  }

  /* Buttons */
  .form-btn-next {
    padding: 16px;
    font-size: 16px;
  }

  .form-btn-submit {
    padding: 16px 20px;
    font-size: 15px;
  }

  .form-btn-prev {
    padding: 14px 20px;
    font-size: 13px;
  }

  .form-buttons-row {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .form-buttons-row .form-btn-prev {
    width: 100%;
    text-align: center;
  }

  .form-buttons-row .form-btn-submit {
    width: 100%;
  }

  /* Step dots */
  .form-step-dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  /* File upload */
  .file-upload-zone {
    padding: 25px 12px;
  }

  .file-upload-text-desktop {
    display: none;
  }

  .file-upload-text-mobile {
    display: block;
  }

  .file-upload-btn-camera {
    display: inline-flex;
  }

  .file-upload-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .file-item {
    padding: 8px 10px;
    gap: 8px;
  }

  .file-item-thumb {
    width: 48px;
    height: 48px;
  }

  .file-item-name {
    font-size: 12px;
  }

  .file-item-size {
    font-size: 10px;
  }

  /* Price suffix */
  .input-with-suffix input {
    padding-right: 55px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .form-field-input,
  .form-field-select {
    padding: 12px 14px;
  }

  .custom-select-display {
    padding: 12px 38px 12px 14px;
    font-size: 14px;
  }

  .form-btn-next,
  .form-btn-submit {
    font-size: 14px;
    padding: 14px;
  }
}

/* ============================================
   CONVERSION BOOSTERS
   ============================================ */

/* --- WhatsApp floating button --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

/* Pulse animation on WhatsApp */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Mobile sticky CTA bar --- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #fff;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
  padding: 10px 15px;
  gap: 10px;
}

.mobile-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: #035083;
  color: #fff !important;
  border-radius: 10px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}

.mobile-cta-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 12px 16px;
  background: #FC8915;
  color: #fff !important;
  border-radius: 10px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
  }

  /* Move WhatsApp button above the CTA bar */
  .whatsapp-float {
    bottom: 85px;
    right: 15px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* Add padding at bottom of page so CTA bar doesn't cover footer */
  body {
    padding-bottom: 75px;
  }
}

/* --- Demand counter --- */
.demand-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  margin-top: 15px;
  background: #f0f9f0;
  border: 1px solid #d4edda;
  border-radius: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.demand-counter strong {
  color: #2d8a4e;
}

.demand-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2d8a4e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: demandPulse 1.5s ease-in-out infinite;
}

@keyframes demandPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --- Price hint --- */
.price-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border: 1px solid #ffe0b2;
  border-left: 3px solid #FC8915;
  border-radius: 8px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  animation: hintSlide 0.3s ease;
}

.price-hint svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #FC8915;
}

.price-hint strong {
  color: #035083;
}

@keyframes hintSlide {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Exit-intent popup --- */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
}

.exit-popup-overlay.visible {
  opacity: 1;
}

.exit-popup {
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.3s;
}

.exit-popup-overlay.visible .exit-popup {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  transition: color 0.2s;
}

.exit-popup-close:hover {
  color: #333;
}

.exit-popup-icon {
  margin-bottom: 15px;
}

.exit-popup h3 {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #035083;
  margin-bottom: 10px;
}

.exit-popup p {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.exit-popup p strong {
  color: #FC8915;
}

.exit-popup-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FC8915, #e07600);
  color: #fff !important;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.exit-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252,137,21,0.4);
}

.exit-popup-dismiss {
  display: block;
  margin-top: 15px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s;
}

.exit-popup-dismiss:hover {
  color: #999;
}

@media (max-width: 480px) {
  .exit-popup {
    padding: 30px 20px;
  }

  .exit-popup h3 {
    font-size: 20px;
  }

  .exit-popup p {
    font-size: 14px;
  }

  .exit-popup-btn {
    padding: 13px 30px;
    font-size: 14px;
    width: 100%;
  }
}

/* Touch device improvements */
@media (hover: none) {
  .custom-select-option:hover {
    background: transparent;
  }

  .custom-select-option:active {
    background: #f0f5fa;
  }

  .form-btn-next:hover,
  .form-btn-submit:hover {
    transform: none;
    box-shadow: none;
  }

  .form-btn-next:active {
    transform: scale(0.98);
  }

  .form-btn-submit:active {
    transform: scale(0.98);
  }
}
