@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=optional");

/* =========================================================
   AV JUNKI - VIDEO PRODUCTION
   CLEAN REBUILD
   No legacy overrides. No duplicate layout blocks.
========================================================= */

/* =========================================================
   1. GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #000;
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

button,
a,
input {
  font: inherit;
}

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


/* =========================================================
   2. PAGE / MASTER ARTWORK
========================================================= */

.video-page {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.studio-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.studio-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
}


/* =========================================================
   3. DESKTOP PNG TEXT OVERLAY
   Full-canvas 3840x2160 PNG
========================================================= */

.video-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}
/* CLICKABLE VIEW PORTFOLIO BUTTON */
.video-portfolio-hotspot {
  position: absolute;
  z-index: 6;
  left: 11.9%;
  top: 54.2%;
  width: 10.8%;
  height: 4.2%;
  display: block;
  background: transparent;
  cursor: pointer;
}

/* =========================================================
   4. HEADER / NAVIGATION
========================================================= */

.video-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.5%;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.45),
    transparent
  );
}

.video-logo {
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 1.15vw, 28px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.video-logo::first-letter {
  color: #d71920;
}

.video-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 42px);
}

.video-nav a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(10px, 0.72vw, 17px);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.video-nav a:hover {
  opacity: 0.72;
}

.video-nav .video-book-button {
  padding: 0.8em 1.25em;
  background: #d71920;
  border: 1px solid #ef2b32;
  color: #fff;
  font-weight: 700;
}

.video-nav .video-book-button:hover {
  opacity: 1;
  background: #ef1f28;
}

.mobile-menu-button {
  display: none;
}


/* =========================================================
   5. SHARED VIDEO PLAYER CONTENT
========================================================= */

.main-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000;
}

.main-play-button {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  width: clamp(48px, 4.8vw, 100px);
  height: clamp(48px, 4.8vw, 100px);
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.12em;
  font-size: clamp(20px, 2vw, 42px);
  cursor: pointer;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.main-play-button:hover {
  background: rgba(215, 25, 32, 0.88);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-controls {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 13%;
  display: flex;
  align-items: center;
  gap: 1%;
  padding: 0 2%;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.10)
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.main-video-screen:hover .video-controls,
.main-video-screen.controls-visible .video-controls {
  opacity: 1;
}

.video-control-button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: clamp(11px, 0.85vw, 20px);
  padding: 4px;
}

.video-progress-wrap {
  flex: 1;
  min-width: 0;
}

.video-progress {
  display: block;
  width: 100%;
  accent-color: #d71920;
  cursor: pointer;
}

.video-time {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: clamp(8px, 0.62vw, 15px);
  font-weight: 500;
}


/* =========================================================
   6. DESKTOP LAYOUT
   Everything below is isolated from mobile.
========================================================= */

@media (min-width: 701px) {

  /* -------------------------------------------------------
     MAIN CURVED SCREEN
     Measured from the 3840x2160 desktop master.
  ------------------------------------------------------- */

  .main-video-screen {
    position: absolute;
    z-index: 3;
    left: 24.22%;
    top: 18.32%;
    width: 52%;
    height: 36.72%;
    overflow: hidden;
    background: #000;

    clip-path: polygon(
      0% 0.5%,
      8.3% 1.9%,
      16.6% 3.1%,
      25% 4.3%,
      33.3% 5%,
      41.6% 5.5%,
      50% 5.7%,
      58.3% 5.5%,
      66.6% 5%,
      75% 4.3%,
      83.3% 3.1%,
      91.6% 1.7%,
      100% 0.2%,

      100% 100%,
      91.6% 99.1%,
      83.3% 98.3%,
      75% 97.6%,
      66.6% 97.2%,
      58.3% 96.9%,
      50% 96.9%,
      41.6% 96.9%,
      33.3% 97.4%,
      25% 97.9%,
      16.6% 98.3%,
      8.3% 99.1%,
      0% 100%
    );
  }

  /* -------------------------------------------------------
     SIX PHYSICAL MONITOR OPENINGS
     Numbers + titles are baked into the master image.
     Only the thumbnail image is dynamic.
  ------------------------------------------------------- */

  .video-thumbnail-bank {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
  }

  .video-thumbnail {
    position: absolute;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #000;
    box-shadow: none;
    cursor: pointer;
    pointer-events: auto;
  }

  .video-thumbnail img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* HTML still contains <span>01</span>, but the number is baked in. */
  .video-thumbnail span {
    display: none;
  }

  /* No visible CSS highlight that would cover the physical monitor artwork. */
  .video-thumbnail.active,
  .video-thumbnail:hover,
  .video-thumbnail:focus-visible {
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .video-thumbnail:nth-child(1) {
    left: 26.66%;
    top: 56.42%;
    width: 7.37%;
    height: 7.81%;
    clip-path: polygon(
      0% 5.6%,
      99.3% 0%,
      99.3% 90%,
      0.7% 98.9%
    );
  }

  .video-thumbnail:nth-child(2) {
    left: 34.77%;
    top: 56.08%;
    width: 7.28%;
    height: 7.47%;
    clip-path: polygon(
      0% 4.7%,
      98.7% 0%,
      98.7% 94.2%,
      0% 98.8%
    );
  }

  .video-thumbnail:nth-child(3) {
    left: 42.72%;
    top: 55.90%;
    width: 7.13%;
    height: 7.20%;
    clip-path: polygon(
      0% 2.4%,
      98.6% 1.2%,
      98.6% 96.4%,
      0% 98.8%
    );
  }

  .video-thumbnail:nth-child(4) {
    left: 50.49%;
    top: 55.90%;
    width: 6.98%;
    height: 7.12%;
    clip-path: polygon(
      0.7% 0%,
      98.6% 1.2%,
      99.3% 98.8%,
      0% 97.6%
    );
  }

  .video-thumbnail:nth-child(5) {
    left: 58.15%;
    top: 55.99%;
    width: 7.23%;
    height: 7.47%;
    clip-path: polygon(
      0% 1.2%,
      98.6% 3.5%,
      99.3% 97.7%,
      0% 94.2%
    );
  }

  .video-thumbnail:nth-child(6) {
    left: 66.11%;
    top: 56.34%;
    width: 7.37%;
    height: 7.81%;
    clip-path: polygon(
      0% 0%,
      99.3% 5.6%,
      99.3% 97.8%,
      0% 91.1%
    );
  }

  /* -------------------------------------------------------
     DESKTOP SWITCHER
     Visible 01-06 are baked into the image.
     These are invisible clickable trigger areas only.
  ------------------------------------------------------- */

  .switcher-hotspots {
    position: absolute;
    z-index: 10;
    left: 34.2%;
    top: 73.9%;
    width: 31.7%;
    height: 9.5%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3%;
    pointer-events: none;
  }

  .switcher-button {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
  }

  .switcher-button:hover,
  .switcher-button:focus,
  .switcher-button:focus-visible,
  .switcher-button.active {
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
  }

  /* -------------------------------------------------------
     RIGHT-SIDE SERVICES
     Position approved from the desktop mockup.
  ------------------------------------------------------- */

  .video-services {
    position: absolute;
    z-index: 7;
    right: 5.5%;
    top: 27%;
    width: 16%;
    color: #111;
  }

  .video-services h2 {
    margin: 0 0 1em;
    color: #d71920;
    font-size: clamp(10px, 0.8vw, 19px);
    font-weight: 800;
  }

  .video-services ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .video-services li {
    position: relative;
    margin: 0 0 0.9em;
    padding-left: 1.6em;
    color: #151515;
    font-size: clamp(8px, 0.67vw, 16px);
    font-weight: 600;
    line-height: 1.2;
  }

  .video-services li::before {
    content: "□";
    position: absolute;
    left: 0;
    top: -0.08em;
    color: #111;
    font-weight: 700;
  }

  .video-services .drone-service {
    color: #d71920;
    font-weight: 800;
  }

  .video-services .drone-service::before {
    color: #d71920;
  }

  /* Desktop must never show mobile copy. */
  .mobile-video-content {
    display: none;
  }
}


/* =========================================================
   7. TABLET NAV ADJUSTMENT
   Desktop composition remains unchanged.
========================================================= */

@media (min-width: 701px) and (max-width: 1100px) {
  .video-nav {
    gap: 16px;
  }
}


/* =========================================================
   8. MOBILE LAYOUT
   MOBILE REBUILD V3 - MEASURED FROM FINAL 1080x1920 ARTWORK
   Desktop section above is preserved exactly.
========================================================= */

@media (max-width: 700px) {
.video-portfolio-hotspot {
  display: none !important;
}
  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background: #050505;
  }

  .video-page {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: calc(100vw * 16 / 9);
    overflow: visible;
    background: #050505;
  }

  .studio-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .studio-background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    user-select: none;
    pointer-events: none;
  }

  .video-text-overlay,
  .video-services {
    display: none !important;
  }

  /* MOBILE HEADER */
  .video-header {
    position: absolute;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.5%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.45),
      transparent
    );
  }

  .video-logo {
    font-size: clamp(12px, 4vw, 20px);
  }

  .video-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    width: min(260px, 75vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .video-nav.open {
    display: flex;
  }

  .video-nav a {
    display: block;
    padding: 13px 12px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .video-nav a:last-child {
    border-bottom: 0;
  }

  .video-nav .video-book-button {
    margin-top: 8px;
    text-align: center;
  }

  .mobile-menu-button {
    width: 34px;
    height: 30px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  /* =====================================================
     MAIN VIDEO SCREEN
     Final artwork measured at approximately:
     left 152px / top 414px / right 929px / bottom 816px
  ===================================================== */

  .main-video-screen {
    position: absolute !important;
    z-index: 3 !important;
    left: 14.54% !important;
    top: 21.46% !important;
    width: 71.11% !important;
    height: 20.21% !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000 !important;

    clip-path: polygon(
      0% 0%,
      10% 1.0%,
      20% 2.4%,
      30% 4.6%,
      40% 7.0%,
      50% 8.5%,
      60% 7.0%,
      70% 4.6%,
      80% 2.4%,
      90% 1.0%,
      100% 0%,

      100% 98.0%,
      90% 98.6%,
      80% 99.0%,
      70% 99.4%,
      60% 99.7%,
      50% 100%,
      40% 99.7%,
      30% 99.4%,
      20% 99.0%,
      10% 98.6%,
      0% 98.0%
    ) !important;
  }

  .main-video {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: #000 !important;
  }

  /* CLEAN PLAY BUTTON */
  .main-play-button {
    position: absolute !important;
    z-index: 8 !important;
    left: 50% !important;
    top: 50% !important;
    width: 58px !important;
    height: 58px !important;
    transform: translate(-50%, -50%) !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    border-radius: 50% !important;
    outline: 0 !important;
    background: rgba(0,0,0,.58) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-shadow: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .main-play-button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-42%, -50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
  }

  .video-controls {
    height: 18%;
    padding: 0 2%;
    gap: 1%;
  }

  .video-time {
    display: none;
  }

  .video-control-button {
    font-size: 13px;
  }

  /* =====================================================
     SIX THUMBNAIL OPENINGS
     Only the black screen areas receive images.
     Baked 01-06/title strips remain visible below.
  ===================================================== */

  .video-thumbnail-bank {
    position: absolute !important;
    inset: 0 !important;
    z-index: 4 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    pointer-events: none !important;
  }

  .video-thumbnail {
    position: absolute !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #000 !important;
    box-shadow: none !important;
    cursor: pointer;
    pointer-events: auto !important;
  }

  .video-thumbnail img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .video-thumbnail span {
    display: none !important;
  }

  .video-thumbnail.active,
  .video-thumbnail:hover,
  .video-thumbnail:focus,
  .video-thumbnail:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  .video-thumbnail:nth-child(1) {
    left: 7.90% !important;
    top: 43.60% !important;
    width: 13.45% !important;
    height: 6.10% !important;
    clip-path: polygon(0% 2%, 100% 0%, 100% 98%, 0% 100%) !important;
  }

  .video-thumbnail:nth-child(2) {
    left: 22.45% !important;
    top: 43.45% !important;
    width: 13.10% !important;
    height: 6.25% !important;
    clip-path: polygon(0% 1%, 100% 0%, 100% 99%, 0% 100%) !important;
  }

  .video-thumbnail:nth-child(3) {
    left: 36.75% !important;
    top: 43.40% !important;
    width: 12.90% !important;
    height: 6.30% !important;
  }

  .video-thumbnail:nth-child(4) {
    left: 51.00% !important;
    top: 43.40% !important;
    width: 12.75% !important;
    height: 6.30% !important;
  }

  .video-thumbnail:nth-child(5) {
    left: 65.25% !important;
    top: 43.45% !important;
    width: 12.55% !important;
    height: 6.25% !important;
    clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 0% 99%) !important;
  }

  .video-thumbnail:nth-child(6) {
    left: 79.35% !important;
    top: 43.60% !important;
    width: 12.30% !important;
    height: 6.10% !important;
    clip-path: polygon(0% 0%, 100% 2%, 100% 100%, 0% 98%) !important;
  }

  /* =====================================================
     SWITCHER HOTSPOTS
     Red 01-06 buttons are baked into artwork.
     These areas are fully invisible.
  ===================================================== */

  .switcher-hotspots {
    position: absolute !important;
    inset: 0 !important;
    z-index: 20 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    pointer-events: auto !important;
    touch-action: manipulation;
  }

  .switcher-button {
    position: absolute !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: rgba(0, 0, 0, 0.001) !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    opacity: 1 !important;
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
  }

  .switcher-button::before,
  .switcher-button::after {
    display: none !important;
    content: none !important;
  }

  .switcher-button:hover,
  .switcher-button:focus,
  .switcher-button:focus-visible,
  .switcher-button.active {
    border: 0 !important;
    outline: 0 !important;
    background: rgba(0, 0, 0, 0.001) !important;
    box-shadow: none !important;
    opacity: 1 !important;
  }

  .switcher-button:nth-child(1) {
    left: 10.20% !important;
    top: 55.45% !important;
    width: 8.90% !important;
    height: 4.35% !important;
  }

  .switcher-button:nth-child(2) {
    left: 22.75% !important;
    top: 55.55% !important;
    width: 8.80% !important;
    height: 4.25% !important;
  }

  .switcher-button:nth-child(3) {
    left: 34.80% !important;
    top: 55.55% !important;
    width: 8.70% !important;
    height: 4.25% !important;
  }

  .switcher-button:nth-child(4) {
    left: 46.85% !important;
    top: 55.55% !important;
    width: 8.70% !important;
    height: 4.25% !important;
  }

  .switcher-button:nth-child(5) {
    left: 59.05% !important;
    top: 55.55% !important;
    width: 8.55% !important;
    height: 4.25% !important;
  }

  .switcher-button:nth-child(6) {
    left: 71.30% !important;
    top: 55.65% !important;
    width: 8.55% !important;
    height: 4.20% !important;
  }

  /* =====================================================
     MOBILE TEXT / SERVICES
     Starts below the production console.
  ===================================================== */

  .mobile-video-content {
    position: absolute !important;
    z-index: 12 !important;
    left: 7% !important;
    top: 80.50% !important;
    width: 86% !important;
    display: block !important;
    color: #fff;
    text-align: center;
  }

  .mobile-video-eyebrow {
    margin: 0 0 0.8em;
    color: #d71920;
    font-size: clamp(9px, 2.8vw, 12px);
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .mobile-video-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 8.8vw, 48px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .mobile-video-tagline {
    margin: 1em 0 0;
    color: #fff;
    font-size: clamp(9px, 3vw, 13px);
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .mobile-video-description {
    width: 92%;
    margin: 1.25em auto 0;
    color: #c8c8c8;
    font-size: clamp(10px, 3.1vw, 14px);
    line-height: 1.6;
  }

  .mobile-services-button {
    margin-top: 1.6em;
    padding: 1em 1.8em;
    border: 1px solid #ef252d;
    background: #d71920;
    color: #fff;
    font-size: clamp(10px, 3.1vw, 14px);
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
  }

  .mobile-services-list {
    display: none;
    width: 100%;
    margin-top: 1.35em;
    padding: 1.45em;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .mobile-services-list.open {
    display: block;
  }

  .mobile-services-list h2 {
    margin: 0 0 1em;
    color: #d71920;
    font-size: clamp(12px, 4vw, 18px);
    font-weight: 800;
  }

  .mobile-services-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-services-list li {
    margin-bottom: 0.75em;
    color: #eee;
    font-size: clamp(10px, 3vw, 14px);
    line-height: 1.4;
  }

  .mobile-services-list .drone-service {
    color: #ef252d;
    font-weight: 800;
  }

  .mobile-book-button {
    display: block;
    width: 100%;
    margin-top: 1.5em;
    padding: 1em;
    background: #d71920;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: clamp(10px, 3.2vw, 14px);
    font-weight: 800;
  }
}


/* =========================================================
   9. ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
