@font-face {
  font-family: 'Palatino';
  src: url('fonts/palr45w.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ============================================
   UDSIGTEN HADERSLEV — 2026
   Hvid baggrund · Palatino · Terracotta
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #ffffff;
  --bg-light:  #f8f6f3;
  --text:      #1a1410;
  --muted:     #6b6560;
  --accent:    #8B5E3C;
  --color-boliger: #859B77;
  --color-hotel:   #B88360;
  --color-spa:     #8CD6F6;
  --line:      rgba(26, 20, 16, 0.10);
  --content-width: 1300px;
  --gutter:    clamp(24px, 4vw, 60px);
  --section-pad: clamp(16px, 2.5vw, 30px);
}

/* ========== BASE ========== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
  font-family: 'Palatino', serif;
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 8vw, 6rem); }

h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin-bottom: 28px;
}

/* Sektionsfarver fra tværsnittet */
.section-block {
  border-left: 8px solid var(--accent);
  padding-left: 24px;
}

#boliger .section-block { border-left-color: var(--color-boliger); }
#hotel .section-block,
#restaurant .section-block { border-left-color: var(--color-hotel); }
#spa .section-block,
#svommehal .section-block { border-left-color: var(--color-spa); }

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--text);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

/* ========== NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  padding: 22px 0;
  transition: padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 14px 0;
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(26, 20, 16, 0.04);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0%;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--text);
  color: #fff !important;
  padding: 11px 24px !important;
  border-radius: 2px;
  transition: background 0.25s ease;
}

.nav-cta:hover { background: var(--accent); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--text);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  max-width: var(--content-width);
  margin: 148px auto 0; /* clears fixed header (22px top-padding + 100px logo + 22px bottom-padding = 144px) */
  padding: 0 var(--gutter);
}

.hero-media {
  position: relative;
}

.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.hero-content {
  color: var(--text);
  text-align: left;
}

.hero-content h1 {
  position: absolute;
  left: calc(var(--gutter) + clamp(20px, 3vw, 48px));
  top: 14%;
  font-size: clamp(1.3rem, 4vw, 3rem); /* 50% of global h1 clamp(2.6rem, 8vw, 6rem) */
  color: var(--text);
  border-left: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hero-sub {
  position: absolute;
  left: calc(var(--gutter) + clamp(20px, 3vw, 48px));
  top: 22.6%; /* uændret visuel position: målt til .hero-content top 12% + h1-flow-højde + 18px margin, ved 1600px referencebredde */
  color: var(--text);
  font-size: clamp(1.3rem, 2.08vw, 1.82rem); /* 30% større end tidligere clamp(1rem, 1.6vw, 1.4rem) */
  font-weight: 400;
}

.hero-lead {
  margin-top: 16px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ========== HERO SIGNUP ========== */
.hero-signup {
  position: absolute;
  bottom: calc(var(--gutter) + clamp(16px, 2vw, 24px));
  right: calc(var(--gutter) + clamp(16px, 2vw, 24px));
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(26, 20, 16, 0.10);
  width: min(320px, calc(100% - 2 * (var(--gutter) + clamp(16px, 2vw, 24px))));
  animation: hero-signup-pulse 2s ease-in-out infinite;
}

.hero-signup-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 20, 16, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}

.hero-signup-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0 14px;
  outline: none;
  min-width: 0;
}

.hero-signup-input::placeholder {
  font-weight: 700;
  color: rgba(26, 20, 16, 0.45);
}

.hero-signup-send {
  width: 0;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transform: scale(0.85);
  transition: width 0.25s ease, opacity 0.2s ease, transform 0.2s ease, margin-left 0.25s ease;
}

.hero-signup-send.is-visible {
  width: 40px;
  opacity: 1;
  transform: scale(1);
  margin-left: 6px;
}

.hero-signup-send svg {
  flex-shrink: 0;
}

.hero-signup-disclaimer {
  margin: 8px 0 0;
  padding-right: calc(var(--gutter) + clamp(16px, 2vw, 24px));
  text-align: right;
  font-size: 11px;
  color: rgba(26, 20, 16, 0.45);
}

@keyframes hero-signup-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.6);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  }
}

/* ========== VISION PITCH BOX ========== */
/* Outer: mirrors .hero exactly — same max-width, margin, gutter */
.vision-pitch {
  max-width: var(--content-width);
  margin: 35px auto;
  padding: 0 var(--gutter);
}

/* Inner box: width:100% of section content = same visual width as .hero-bg */
.vision-pitch-box {
  background: #7A3300;
  border-radius: 14px;
  padding: 35px var(--gutter);
}

.vision-pitch-inner {
  text-align: center;
}

.vision-pitch-logo-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.vision-pitch-logo {
  height: 48px;
  width: auto;
}

.vision-pitch h2 {
  color: #fff;
  margin-bottom: 28px;
}

.vision-pitch p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.vision-pitch p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .vision-pitch { margin-top: 20px; margin-bottom: 20px; }
  .vision-pitch-box { padding: 24px var(--gutter); }
  .vision-pitch-logo { height: 36px; }
}

/* ========== FARVEDE SEKTIONSBOKSE (skillerum mellem hovedafsnit) ========== */
/* Fuldbredde (= content-width, som hero) farvet band før hvert hovedafsnit.
   Hård, lige kant (solid farve, ingen gradient, ingen buet clip-path).
   Bruger kategorifarve-variablerne, så farve = altid samme kilde som streger. */
.section-divider {
  max-width: var(--content-width);
  margin: var(--section-pad) auto;
  padding: 0 var(--gutter);
}

.section-divider-inner {
  width: 100%;
  padding: clamp(32px, 4.5vw, 56px) var(--gutter);
  border-radius: 14px; /* matcher vision-boksen, jf. DECISIONS punkt 12 */
  text-align: center;
}

.section-divider h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.section-divider p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.divider-boliger .section-divider-inner { background: var(--color-boliger); }
.divider-hotel   .section-divider-inner { background: var(--color-hotel); }
.divider-spa     .section-divider-inner { background: var(--color-spa); }

/* ========== SECTION BASE ========== */
.section { padding: var(--section-pad) 0; }

.section-lead {
  max-width: 680px;
  margin-bottom: 8px;
}

/* ========== VISION ========== */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}

.vision-text p {
  margin-top: 18px;
  max-width: 480px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  margin-top: 32px;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 500;
}

.vision-image {
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== TVÆRSNIT ALIGNED LAYOUT ========== */
/* Text rows use the same proportions as the colored zones in the image:
   top gap 7%, Boliger 37%, Hotel 20%, Spa 10%, bottom gap 26% */
.tvaersnit-desktop-img {
  display: block;
  margin-top: 32px;
}

.tvaersnit-desktop-img img {
  width: 100%;
  height: auto;
  display: block;
}

.tvaersnit-layout {
  display: none;
}

.tvaersnit-image-col img {
  width: 100%;
  height: auto;
  display: block;
}

.tvaersnit-text {
  display: none;
}

.tvaersnit-block {
  display: flex;
  align-items: center;
}

.category-line {
  border-left: 8px solid;
  padding-left: 24px;
}

.tvaersnit-boliger .category-line { border-left-color: var(--color-boliger); }
.tvaersnit-hotel .category-line { border-left-color: var(--color-hotel); }
.tvaersnit-spa .category-line { border-left-color: var(--color-spa); }

.fullwidth-image {
  margin: var(--section-pad) auto 0;
  width: calc(100% - 2 * var(--gutter));
  max-width: calc(var(--content-width) - 2 * var(--gutter));
  height: clamp(360px, 56vw, 640px);
  overflow: hidden;
  border-radius: 8px;
}

.fullwidth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== SPLIT SEKTIONER (funktioner) ========== */
.split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(24px, 4vw, 60px);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.split-reverse { grid-template-columns: 2fr 3fr; }

.split-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 600px;
  height: 100%;
}

.split-image img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px) clamp(40px, 6vw, 100px) clamp(40px, 6vw, 100px) 0;
}

.split-text p {
  margin-top: 18px;
  max-width: 480px;
}

.split-reverse .split-image { order: 2; }
.split-reverse .split-text { order: 1; }

/* ========== PLANTEGNINGER ========== */
/* Samme bredde-formel som .fullwidth-image, så en plantegning der står som
   selvstændigt element (ikke i en .container) matcher bredden af fuldbrede
   billeder i samme sektion. */
.plantegning-block {
  margin: var(--section-pad) auto 0;
  max-width: calc(var(--content-width) - 2 * var(--gutter));
  width: 100%;
}

/* Kun når plantegning-block står selvstændigt direkte i en .section (fx Hotel) —
   ikke når den ligger i en .container (fx Boliger), som allerede har sin egen
   gutter-padding og ellers ville få dobbelt indrykning. */
.section > .plantegning-block {
  width: calc(100% - 2 * var(--gutter));
}

.plantegning {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: #f8f8f8;
  padding: 24px;
  border-radius: 4px;
}

.plantegning-caption {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ========== BOLIGER GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 44px;
}

.gallery-item {
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== STATUS ========== */
.status { background: var(--bg-light); }

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 12px;
}

.status-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.status-list li::before {
  content: "—";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== KONTAKT ========== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}

.kontakt-info p { margin-top: 18px; }

.kontakt-info a {
  color: var(--accent);
  font-weight: 600;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s ease;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder { color: var(--muted); }

.kontakt-form .btn { align-self: flex-start; }

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ========== LEJLIGHED OVERSIGT (boliger.html) ========== */
.lejlighed-status-msg {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-light);
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.lejlighed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lejlighed-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(20px, 3vw, 28px);
  transition: border-color 0.2s ease;
}

.lejlighed-card:hover { border-color: var(--accent); }

.lejlighed-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.lejlighed-nr {
  display: block;
  font-family: 'Palatino', serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lejlighed-etage {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

.lejlighed-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.lejlighed-status.status-ledig { color: #3a7d3f; }
.lejlighed-status.status-ledig .status-dot { background: #3a7d3f; }
.lejlighed-status.status-reserveret { color: #a3781a; }
.lejlighed-status.status-reserveret .status-dot { background: #a3781a; }
.lejlighed-status.status-solgt { color: #b03a32; }
.lejlighed-status.status-solgt .status-dot { background: #b03a32; }

.lejlighed-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.lejlighed-details div {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.lejlighed-details strong {
  display: block;
  margin-top: 4px;
  font-family: 'Palatino', serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}

/* ========== PLANTEGNING / IMAGE MAP (boliger.html) ========== */
.imagemap-card p {
  margin-top: 16px;
  max-width: 660px;
}

.imagemap-container {
  margin-top: 28px;
  min-height: 480px;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
}

.imagemap-container span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .vision-grid,
  .split,
  .status-grid,
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .vision-image {
    min-height: 360px;
    order: -1;
  }

  .split-image,
  .split-reverse .split-image {
    order: -1;
    min-height: 360px;
  }

  .split-reverse .split-text { order: 2; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }

  .hero {
    margin: 98px auto 0; /* clears fixed mobile header (22px top-padding + 50px logo + 22px bottom-padding = 94px) + 4px buffer */
  }

  .hero-content {
    position: absolute;
    top: 20%;
    transform: none;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.55);
    left: calc(var(--gutter) + 24px);
    right: calc(var(--gutter) + 24px);
    text-align: center;
  }

  .hero-content h1 {
    position: static;
    top: auto;
    left: auto;
    font-size: clamp(2rem, 4.6vw, 3.6rem); /* matcher VISION-overskriftens (.vision-pitch h2, nedarvet fra base h2) størrelse */
  }

  .hero-sub {
    display: none;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(26, 20, 16, 0.06);
    gap: 18px;
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }

  .feature-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 280px; }
  .lejlighed-grid { grid-template-columns: 1fr; }
  .lejlighed-details { grid-template-columns: repeat(3, 1fr); }

  .tvaersnit-desktop-img { display: none; }

  .tvaersnit-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 60px);
  }

  .tvaersnit-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-signup {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2 * var(--gutter) - 10px);
  }

  .hero-signup-input {
    font-size: 0.72rem;
  }

  .hero-signup-disclaimer {
    padding-right: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
