/* ---------- Design tokens ---------- */
:root {
  --cream: #faf8f5;
  --cream-deep: #f3efe8;
  --ink: #20201e;
  --muted: #716e68;
  --line: #e4dfd5;
  --clay: #a46e58;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --header-height: 76px;
}

/* ---------- Page transitions ---------- */
body.page-transitions main {
  animation: fallback-page-enter 390ms 40ms cubic-bezier(.2, .7, .2, 1) both;
}

body.page-transitions.is-leaving main {
  animation: fallback-page-leave 190ms ease-in both;
  pointer-events: none;
}

@keyframes fallback-page-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fallback-page-leave {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* Full-viewport veil guarantees a visible transition during real navigation. */
.page-transition-veil {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 310ms cubic-bezier(.4, 0, .2, 1);
}

.page-transition-veil.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page-transition-veil.without-transition {
  transition: none;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { background: var(--cream-deep); }

::selection {
  color: var(--cream);
  background: var(--ink);
}

.eyebrow,
.nav-link,
.language-switch button,
.btn-minimal,
.form-label,
.footer-copy {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
}

/* ---------- Navigation ---------- */
.site-header {
  min-height: var(--header-height);
  background: rgba(250, 248, 245, 0.9);
  border-bottom: 1px solid rgba(228, 223, 213, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.header-logo {
  display: block;
  width: clamp(3.325rem, 5.6vw, 4.375rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.navbar .nav-link {
  position: relative;
  padding: 0.45rem 0 !important;
  color: var(--ink);
}

.navbar .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background: var(--ink);
  content: "";
  transition: width 220ms ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 100%; }

.navbar .social-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar .social-nav-link::after { display: none; }

.instagram-icon {
  width: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer .social-nav-link {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--cream);
  line-height: 1;
}

.footer .social-nav-link .instagram-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 1.4rem;
}

.instagram-dot {
  fill: currentColor;
  stroke: none;
}

.smiley-nav-icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  background: transparent;
}

.footer-smiley-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
}

.footer-smiley-link .smiley-nav-icon {
  width: 1.35rem;
  height: 1.35rem;
  filter: invert(1);
  transition: opacity 180ms ease;
}

.footer-smiley-link:hover .smiley-nav-icon { opacity: 0.65; }

.navbar-toggler {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 1.35rem;
  height: 1px;
  margin: auto;
  background: var(--ink);
  content: "";
}

.menu-lines::before { transform: translateY(-6px); }
.menu-lines::after { transform: translateY(5px); }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.language-switch button {
  padding: 0.2rem;
  color: var(--muted);
  background: transparent;
  border: 0;
}

.language-switch button.active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ---------- Four navigation pillars ---------- */
.pillar-nav {
  margin-top: clamp(3rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  text-decoration: none;
  transition: padding 220ms ease, color 220ms ease;
}

.pillar-link:last-child { border-bottom: 0; }
.pillar-link:hover { padding-left: 0.65rem; color: var(--clay); }

.pillar-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
}

/* ---------- Front page: full-image background with centered links ---------- */
.frontpage-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  place-items: center;
  background: var(--ink);
}

body[data-page="home"] .frontpage-hero,
body[data-page="home"] .frontpage-hero-content {
  min-height: 100svh;
}

.frontpage-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.frontpage-hero:hover .frontpage-hero-image { transform: scale(1.025); }

.frontpage-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.5), rgba(17, 16, 14, 0.25)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.55), rgba(17, 16, 14, 0.12) 65%);
}

.frontpage-language-switch {
  position: absolute;
  z-index: 3;
  top: clamp(1.25rem, 3vw, 2.25rem);
  right: clamp(1.25rem, 3vw, 2.25rem);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.frontpage-language-switch button {
  color: rgba(255, 255, 255, 0.65);
}

.frontpage-language-switch button:hover,
.frontpage-language-switch button:focus-visible,
.frontpage-language-switch button.active {
  color: #fff;
}

.frontpage-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  justify-content: center;
  padding-top: clamp(2rem, 6vh, 5rem);
  padding-bottom: clamp(2rem, 6vh, 5rem);
}

.frontpage-nav-wrap {
  width: min(100%, 46rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  color: #fff;
  background: rgba(22, 21, 19, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.frontpage-instalogo {
  display: block;
  width: clamp(4.75rem, 8vw, 6.25rem);
  aspect-ratio: 1;
  margin: 0 auto 1.15rem;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.16);
}

.frontpage-brand-heading { margin: 0; }

.frontpage-address {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.frontpage-nav.pillar-nav {
  margin: 0;
  border-color: rgba(255, 255, 255, 0.38);
}

.frontpage-nav .pillar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.9rem, 2.2vh, 1.35rem) 0;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

.frontpage-nav .pillar-link:hover,
.frontpage-nav .pillar-link:focus-visible {
  padding-left: 0;
  color: #f2d9cb;
}

.frontpage-nav .pillar-title {
  display: block;
  width: 100%;
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  text-align: center;
}

.frontpage-opening-hours {
  margin: 0 0 1.2rem;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.frontpage-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 1.35rem;
}

.frontpage-social-link {
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.frontpage-social-link:hover,
.frontpage-social-link:focus-visible {
  color: #f2d9cb;
  opacity: 0.78;
  transform: translateY(-2px);
}

.frontpage-social-link .instagram-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.frontpage-social-link .smiley-nav-icon {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(1);
}

/* ---------- Front page: scroll cues and image cavalcade ---------- */
.frontpage-scroll-prompt {
  position: absolute;
  z-index: 3;
  bottom: clamp(1rem, 2.5vh, 1.75rem);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(0.64rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
  transform: translateX(-50%);
  animation: scroll-prompt-fade 2.2s ease-in-out infinite;
}

.scroll-prompt-arrow {
  font-size: 1rem;
  line-height: 1;
}

@keyframes scroll-prompt-fade {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 1; }
}

.frontpage-to-top {
  position: fixed;
  z-index: 1000;
  top: clamp(1rem, 2.5vw, 1.75rem);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: clamp(0.64rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -1rem);
  transition: opacity 280ms ease, transform 380ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 380ms;
}

.frontpage-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
  animation: to-top-fade 2.2s ease-in-out infinite;
}

.frontpage-to-top:hover,
.frontpage-to-top:focus-visible { color: #fff; }

.to-top-arrow { font-size: 1rem; line-height: 1; }

@keyframes to-top-fade {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.image-cavalcade {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 11vw, 10rem);
  padding: clamp(6rem, 12vw, 11rem) clamp(1.25rem, 6vw, 6rem);
  background: #171614;
}

.cavalcade-item {
  width: min(78vw, 38rem);
  margin: 0;
}

.cavalcade-item:nth-child(3n + 1) { margin-right: min(16vw, 11rem); }
.cavalcade-item:nth-child(3n + 2) { margin-left: min(18vw, 13rem); }
.cavalcade-item:nth-child(3n) { width: min(88vw, 54rem); }

.cavalcade-item img {
  display: block;
  width: 100%;
  height: auto;
  background: #24211e;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

/* ---------- Content pages ---------- */
.experience {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}

.page-main {
  min-height: calc(100svh - var(--header-height));
}

/* ---------- Embedded PDF menus ---------- */
.pdf-page {
  height: calc(100svh - var(--header-height));
  min-height: 38rem;
  overflow: hidden;
  background: var(--cream-deep);
}

.pdf-viewer-section {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.pdf-viewer-heading {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem clamp(1.25rem, 3vw, 3rem);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.pdf-viewer-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.pdf-open-link {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.pdf-open-link:hover { color: var(--clay); }

.pdf-frame-wrap {
  min-height: 0;
  flex: 1 1 auto;
  background: #d8d5cf;
}

.pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 0;
}

.mobile-pdf-fallback {
  display: none;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 8vw, 5rem) 1.5rem;
  background: var(--cream-deep);
  text-align: center;
}

.mobile-pdf-fallback p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 5vw, 1.7rem);
  line-height: 1.45;
}

html.uses-ios-pdf-preview .pdf-frame { display: none; }
html.uses-ios-pdf-preview .mobile-pdf-fallback { display: flex; }

/* ---------- PDF opening screens ---------- */
.opening-screen {
  position: fixed;
  z-index: 11000;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  visibility: visible;
  transition: opacity 650ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 650ms;
}

.wine-opening-screen {
  background-image:
    linear-gradient(rgba(18, 17, 15, 0.48), rgba(18, 17, 15, 0.48)),
    url("../_images/Rvinbar_29.06.26_0929.jpeg");
}

.food-opening-screen {
  background-image:
    linear-gradient(rgba(18, 17, 15, 0.48), rgba(18, 17, 15, 0.48)),
    url("../_images/Rvinbar_29.06.26_0556.jpeg");
}

.opening-screen.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-message {
  min-width: min(90vw, 23rem);
  margin: 0;
  padding: 1.1rem 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 850ms cubic-bezier(.22, 1, .36, 1), transform 850ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.opening-screen.is-message-visible .opening-message {
  opacity: 1;
  transform: translateY(0);
}

.opening-message.is-counting-pulse {
  animation: opening-counting-pulse 900ms cubic-bezier(.45, 0, .55, 1);
}

@keyframes opening-counting-pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.58;
    transform: translateY(0) scale(0.992);
  }
}

.opening-dots {
  display: block;
  min-height: 1em;
  margin-top: 0.35rem;
  line-height: 0.7;
  text-align: center;
}

.section-kicker { color: var(--clay); }

.section-title {
  margin: 0.75rem 0 1.5rem;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.section-intro {
  max-width: 38rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.panel-image {
  width: 100%;
  height: clamp(25rem, 52vw, 46rem);
  object-fit: cover;
}

/* ---------- Form ---------- */
.booking-shell {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 5vw, 4.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
}

.form-label { margin-bottom: 0.55rem; color: var(--muted); }

.form-control,
.form-select {
  min-height: 3.5rem;
  padding: 0.75rem 0;
  color: var(--ink);
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.form-control:focus,
.form-select:focus {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
  box-shadow: none;
}

.form-select { background-position: right 0.4rem center; }

.btn-minimal {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: color 220ms ease, background 220ms ease;
}

.btn-minimal:hover,
.btn-minimal:focus-visible {
  color: var(--ink);
  background: transparent;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.form-status.is-success { color: #49624c; }
.form-status.is-error { color: #9a473f; }

.booking-success-modal .modal-content {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 1.5rem 4rem rgba(20, 18, 15, 0.22);
}

.booking-success-modal .modal-body {
  padding: clamp(2rem, 6vw, 4rem);
}

.booking-success-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1;
}

.booking-success-message {
  max-width: 28rem;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
}

.btn-minimal:disabled {
  cursor: wait;
  opacity: 0.55;
}

/* Visually hidden honeypot: real guests never see or fill this field. */
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* ---------- Contact and footer ---------- */
.contact-block {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.contact-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-value {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.3;
}

.text-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease;
}

.text-link:hover { color: var(--clay); }

.footer {
  padding: 2rem 0;
  background: var(--ink);
  color: var(--cream);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 992px) {
  .navbar-nav { gap: 1.7rem; }
  .pillar-nav { margin-left: clamp(1rem, 8vw, 7rem); }
  .pillar-link { padding: 1.55rem 0; }
  .experience-header { position: sticky; top: calc(var(--header-height) + 2rem); }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1.5rem 0 1rem;
    border-top: 1px solid var(--line);
  }

  .navbar-nav { gap: 0.7rem; }
  .experience-header { margin-bottom: 3rem; }
}

@media (max-width: 575.98px) {
  :root { --header-height: 67px; }
  .container { padding-right: 1.25rem; padding-left: 1.25rem; }
  .navbar-brand { font-size: 1.35rem; }
  .section-title { font-size: 3.25rem; }
  .booking-shell { margin-right: -0.25rem; margin-left: -0.25rem; }
  .pdf-page { min-height: 34rem; }
  .pdf-viewer-heading { padding-top: 0.9rem; padding-bottom: 0.9rem; }
  .frontpage-hero,
  .frontpage-hero-content { min-height: calc(100svh - var(--header-height)); }
  .frontpage-nav-wrap { backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
  .frontpage-hero-shade { background: rgba(17, 16, 14, 0.5); }
  .frontpage-scroll-prompt { bottom: 0.65rem; }
  .frontpage-to-top { top: 0.75rem; }
  .image-cavalcade { gap: 4.5rem; padding-right: 1.1rem; padding-left: 1.1rem; }
  .cavalcade-item { width: 82vw; }
  .cavalcade-item:nth-child(3n + 1) { margin-right: 8vw; }
  .cavalcade-item:nth-child(3n + 2) { margin-left: 8vw; }
  .cavalcade-item:nth-child(3n) { width: 92vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }

  body.page-transitions main,
  body.page-transitions.is-leaving main {
    animation-duration: 0.01ms !important;
  }

  .page-transition-veil {
    transition-duration: 0.01ms !important;
  }

}
