/* ===================== CONTACT PAGE STYLES ===================== */
/* FULL CLEAN STYLESHEET - NAVBAR, MOBILE MENU, HERO, EFFECTS
   - Updated: camera image scaling, beam, ghost parallax
============================================================ */
*/

/* ---------- GLOBAL RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(180deg, #02060a 0%, #051016 100%);
  color: #e7faff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- NAVBAR ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(6, 32, 36, 0.42), rgba(10, 162, 184, 0.06));
  border-bottom: 1px solid rgba(10, 162, 184, 0.08);
  backdrop-filter: blur(12px);
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 14px;
  background: linear-gradient(180deg, rgba(10, 162, 184, 0.12), transparent);
  filter: blur(10px);
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 180px;
  height: 120px;
  object-fit: contain;
}


/* desktop nav links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 18px;
  color: #e7faff;
  padding: 8px 6px;
  text-decoration: none;
  transition: color .18s, transform .12s;
}

.nav-link:hover {
  color: #bffcff;
  transform: translateY(-2px);
}



/* dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 46px;
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(5, 15, 18, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 162, 184, 0.05);
  display: none;
  flex-direction: column;
  z-index: 1500;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: #dffcff;
  text-decoration: none;
  border-radius: 8px;
  transition: background .14s ease, transform .12s ease, color .14s;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(34, 213, 234, 0.07), rgba(160, 245, 255, 0.03));
  transform: translateX(6px);
  color: #00f0ff;
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.06);
}

/* hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: #cfeff2;
  border-radius: 2px;
  margin: 3px 0;
}

@media(max-width:900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ---------- FULLSCREEN FROSTED MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 10, 0.72);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: none;
  opacity: 0;
  transform: translateY(-8%);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 5000;
  will-change: transform, opacity;
}

.mobile-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-close {
  position: absolute;
  right: 28px;
  top: 22px;
  font-size: 42px;
  background: none;
  border: none;
  color: #e7ffff;
  cursor: pointer;
}

.mobile-content {
  margin-top: 90px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 20px 32px 120px 32px;
  -webkit-overflow-scrolling: touch;
}

/* mobile links */
.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 22px;
  padding: 14px 12px;
  border-radius: 10px;
  color: #dffcff;
  text-decoration: none;
  transition: background .14s, transform .12s;
}

.mobile-link:active,
.mobile-link:focus {
  background: rgba(34, 213, 234, 0.08);
  transform: translateX(6px);
  color: #00eaff;
}

/* mobile accordion */
.accordion-toggle {
  font-size: 22px;
  padding: 14px 12px;
  background: none;
  border: none;
  color: #dffcff;
  text-align: left;
  cursor: pointer;
}

.accordion-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-left: 12px;
  margin-top: 10px;
}

.accordion-panel.show {
  display: flex;
}

.accordion-panel a {
  font-size: 19px;
  padding: 12px;
  border-radius: 10px;
  color: #e2ffff;
  text-decoration: none;
  transition: background .14s, transform .12s;
}

.accordion-panel a:active,
.accordion-panel a:focus {
  background: rgba(34, 213, 234, 0.08);
  transform: translateX(6px);
  color: #00eaff;
}

/* 1. GLOBAL VARIABLES */
:root {
  --site-header-height: 76px;

  /* Colors */
  --accent-cyan: #00eaff;
  --accent-teal: #00b4d8;
  --accent-soft: rgba(0, 225, 235, 0.12);
  --bg-dark-1: #02060a;
  --bg-dark-2: #03111a;
  --card-glass: rgba(2, 20, 28, 0.92);
  --muted: #9adff0;

  /* Theme Defaults */
  --bg-grad-start: var(--bg-dark-1);
  --bg-grad-end: var(--bg-dark-2);
  --accent-1: #00eaff;
  --accent-2: #00b4d8;
  --card-accent: rgba(0, 190, 220, 0.12);
  --glow: rgba(0, 190, 220, 0.22);
}

html[data-theme="sunset"] {
  --bg-grad-start: #2b102b;
  --bg-grad-end: #0f1b2b;
  --accent-1: #ff7a59;
  --accent-2: #ff4fa3;
  --card-accent: rgba(255, 122, 89, 0.08);
  --glow: rgba(255, 95, 120, 0.16);
}

html[data-theme="mint"] {
  --bg-grad-start: #07251b;
  --bg-grad-end: #051f1a;
  --accent-1: #6ef2c1;
  --accent-2: #00c7a7;
  --card-accent: rgba(110, 242, 193, 0.06);
  --glow: rgba(90, 230, 190, 0.14);
}

/* 2. MAIN SECTION WRAPPER */
.contact-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  /* Mobile browser friendly height */
  padding: calc(var(--site-header-height) + 60px) 20px 120px;
  background: radial-gradient(circle at top, var(--glow) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-grad-start) 0%, var(--bg-grad-end) 100%);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 0 1px, rgba(0, 255, 255, 0.03) 1px),
    linear-gradient(90deg, transparent 0 1px, rgba(0, 255, 255, 0.03) 1px);
  background-size: 100% 60px, 60px 100%;
  opacity: 0.22;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 60%);
  filter: blur(40px);
  top: -120px;
  right: -80px;
  opacity: 0.7;
  animation: glow-drift 10s linear infinite;
  pointer-events: none;
}

@keyframes glow-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: .7;
  }

  50% {
    transform: translate(-18px, 12px) scale(1.05);
    opacity: .55;
  }
}

/* 3. LAYOUT GRID */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: start;
}

/* 4. LEFT COLUMN: FORM CARD */
.contact-form-card {
  background: linear-gradient(145deg, var(--card-glass), rgba(0, 18, 28, 0.88));
  border-radius: 22px;
  padding: 34px 32px 30px;
  border: 1px solid var(--card-accent);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.8), 0 0 40px var(--card-accent);
  backdrop-filter: blur(18px) saturate(120%);
  transform: translateY(6px);
  opacity: 0;
  animation: card-pop .7s cubic-bezier(.22, .9, .23, 1) .06s forwards;
}

@keyframes card-pop {
  from {
    transform: translateY(18px) scale(.995);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.contact-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #eafefe;
  display: inline-block;
  animation: float-sub .9s ease-in-out .12s both;
  max-width: 100%;
}

.typer {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  text-overflow: ellipsis;
  max-width: 100%;
}

.typer::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 8px;
  background: linear-gradient(180deg, rgba(234, 254, 254, 0.95), rgba(0, 180, 220, 0.9));
  animation: caret-blink 1s steps(2, start) infinite;
  vertical-align: middle;
}

@keyframes caret-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.typer.typer-done::after {
  animation: none;
  opacity: 0.9;
}

.contact-subtext {
  font-size: 15px;
  color: #bfeff7;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Form Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  animation: form-fade .62s cubic-bezier(.2, .9, .25, 1) forwards;
}

.contact-form.stagger-enter .form-group {
  visibility: visible;
}

@keyframes form-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #e9feff;
}

.form-group label span {
  color: var(--accent-1);
  margin-left: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select,
.contact-form input[type="file"] {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 14, 20, 0.86);
  color: #eafefe;
  font-size: 14px;
  outline: none;
  transition: all 0.18s ease;
  /* Add padding right to allow space for validation icon */
  padding-right: 35px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 0 26px rgba(0, 0, 0, 0.06);
  background: rgba(1, 24, 34, 0.98);
  transform: translateY(-1px);
}

/* --- Validation Icons --- */
.validation-icon {
  position: absolute;
  right: 12px;
  top: 38px;
  /* Adjust based on label height */
  color: #00eaff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.form-group.valid .validation-icon {
  opacity: 1;
  transform: scale(1);
}

/* File Input */
.file-input-wrapper {
  position: relative;
}

.file-input-wrapper::after {
  content: "Choose a file";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(160, 230, 240, 0.85);
  pointer-events: none;
}

.file-input-wrapper[data-filename]::after {
  content: attr(data-filename);
  max-width: 58%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Submit Button */
.contact-submit-btn {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  align-self: flex-start;
  padding: 11px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
  color: #002426;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.5);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 46px var(--card-accent);
}

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

.contact-submit-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transform: scale(0);
  pointer-events: none;
  animation: ripple-anim .65s ease-out forwards;
}

@keyframes ripple-anim {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

/* 5. RIGHT COLUMN: DIRECT CONTACT CARD */
.contact-direct-card {
  background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent-1) 14%, rgba(0, 0, 0, 0.84)), rgba(0, 10, 18, 0.96));
  border-radius: 22px;
  padding: 28px 26px;
  border: 1px solid var(--card-accent);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px) saturate(110%);
  transform: translateY(6px);
  opacity: 0;
  animation: card-pop .72s cubic-bezier(.22, .9, .23, 1) .08s forwards;
  overflow: hidden;
}

.contact-direct-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #eafefe;
}

.contact-direct-text {
  font-size: 14px;
  color: #c9f7ff;
  margin-bottom: 22px;
  line-height: 1.6;
}

.direct-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-8px);
  animation: direct-fade .58s cubic-bezier(.2, .9, .25, 1) forwards;
}

@keyframes direct-fade {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.direct-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-1) 22%, rgba(0, 0, 0, 0)), rgba(0, 80, 100, 0.9));
  box-shadow: 0 6px 18px var(--card-accent);
  flex-shrink: 0;
  animation: float-sub 4s ease-in-out infinite;
}

@keyframes float-sub {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.direct-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9adff0;
}

.direct-value,
.direct-value a {
  font-size: 15px;
  color: #eaffff;
  text-decoration: none;
  word-break: break-all;
}

.direct-item:hover .direct-value {
  color: var(--accent-1);
}

.contact-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #bcefff;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 36, 46, 0.88);
  border: 1px solid rgba(0, 150, 190, 0.08);
  animation: note-pulse 3.6s ease-in-out infinite;
}

@keyframes note-pulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-4px);
    opacity: .94;
  }
}

/* 6. 3D STACKED REEL WIDGET */
.contact-vertical-reel {
  margin-top: 30px;
  width: 100%;
  animation: fade-in-up 0.8s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reel-window {
  position: relative;
  height: 240px;
  width: 100%;
  perspective: 800px;
  cursor: pointer;
}

.reel-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.reel-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  background: #000;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card.active {
  z-index: 10;
  transform: translateY(0) scale(1);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.2);
}

.reel-card.next {
  z-index: 5;
  transform: translateY(14px) scale(0.92);
  opacity: 0.6;
  filter: brightness(0.6);
  pointer-events: none;
}

.reel-card.back {
  z-index: 1;
  transform: translateY(28px) scale(0.85);
  opacity: 0;
  filter: brightness(0.4);
  pointer-events: none;
}

.reel-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 10, 16, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 20;
}

.reel-overlay span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b3b;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3b3b;
  animation: rec-pulse 1.5s infinite;
}

@keyframes rec-pulse {

  0%,
  100% {
    transform: scale(0.95);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* 7. SUCCESS MODAL STYLES */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: linear-gradient(145deg, rgba(3, 20, 30, 0.95), rgba(0, 10, 15, 0.98));
  border: 1px solid rgba(0, 234, 255, 0.2);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: translateY(30px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.success-modal.active .success-modal-content {
  transform: translateY(0) scale(1);
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0, 234, 255, 0.4);
  animation: pop-icon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-icon-wrapper i {
  font-size: 40px;
  color: #02060a;
}

@keyframes pop-icon {
  0% {
    transform: scale(0) rotate(-45deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.success-modal-content h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}

.success-modal-content p {
  color: #bfeff7;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.success-close-btn {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 12px 30px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}

/* 8. MOBILE RESPONSIVENESS */
/* Tablet */
@media (max-width: 960px) {
  .contact-container {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 30px;
  }

  .contact-direct-card {
    order: -1;
  }

  .contact-heading {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contact-section {
    padding: calc(var(--site-header-height) + 30px) 16px 80px;
  }

  .contact-form-card,
  .contact-direct-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .contact-heading {
    font-size: 24px;
    white-space: normal;
  }

  .typer {
    white-space: normal;
    display: inline;
  }

  .typer::after {
    display: none;
  }

  .contact-subtext {
    font-size: 14px;
  }

  /* iOS Input Zoom Fix */
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
  }

  .contact-submit-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .reel-window {
    height: 200px;
  }
}

@media (max-width: 380px) {
  .contact-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-heading {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* === NAVBAR FIXES FOR CONTACT PAGE === */

/* 1. Safety: any beam / visual overlay should not block clicks */
.light-beam,
.light-trail {
  pointer-events: none !important;
}

/* 2. Stable hover dropdown (prevents flicker when moving into menu) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  top: 100%;
  /* sit directly under the parent link */
  margin-top: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}