@font-face {
  font-family: "Public Sans";
  src: url("../fonts/publicsans-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Zilla Slab";
  src: url("../fonts/zillaslab-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sostituto PS";
  src: local("Helvetica Neue"), local("Arial"), local("Liberation Sans");
  size-adjust: 101%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}

:root {
  --carta: #f6f3ed;
  --carta-alt: #ece5d8;
  --carta-scura: #17231d;
  --inchiostro: #152019;
  --inchiostro-tenue: #4b5a52;
  --pino: #0d6249;
  --pino-fondo: #08402f;
  --terra: #a8431f;
  --oro: #7d5713;
  --largo: 1180px;
  --respiro: 22px;
  --curva: 22px 6px 22px 6px;
  --curva-min: 14px 4px 14px 4px;
  --ombra-bassa: 0 10px 30px rgba(12, 32, 24, .09);
  --ombra-alta: 0 22px 50px rgba(12, 32, 24, .16);
  --scatto: .2s cubic-bezier(.32, .06, .23, 1);
  --altezza-testata: 74px;
  --pila-testo: "Public Sans", "Sostituto PS", system-ui, sans-serif;
  --pila-titoli: "Zilla Slab", Georgia, "Times New Roman", serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--altezza-testata) + 12px);
}

body {
  background: var(--carta);
  color: var(--inchiostro);
  font: 400 17px/1.62 var(--pila-testo);
  overflow-x: hidden;
}

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

a {
  color: var(--pino);
  text-underline-offset: .18em;
}

a:hover {
  color: var(--pino-fondo);
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--pila-titoli);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
}

h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.05rem);
}

h2 {
  font-size: clamp(1.85rem, 3.9vw, 2.75rem);
}

h3 {
  font-size: 1.22rem;
  line-height: 1.24;
}

.av-recinto {
  width: 100%;
  max-width: var(--largo);
  margin-inline: auto;
  padding-inline: var(--respiro);
}

.av-salta {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  border-radius: var(--curva-min);
  background: var(--pino-fondo);
  color: #fff;
}

.av-salta:focus {
  left: 12px;
  top: 12px;
  color: #fff;
}

.av-occhiello {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.av-occhiello::before {
  content: "";
  width: 26px;
  height: 3px;
  background: currentColor;
}

.av-guida {
  max-width: 34em;
  color: var(--inchiostro-tenue);
  font-size: 1.06rem;
}

.av-guida--chiara {
  color: #b7c4bb;
}

/* Geometria unica dei comandi: stesso taglio d'angolo su bottoni, pastiglie e risalita. */
.av-azione {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--curva);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform var(--scatto), background var(--scatto), box-shadow var(--scatto), color var(--scatto);
}

.av-azione--forte {
  background: var(--pino);
  box-shadow: 0 8px 0 var(--pino-fondo);
  color: #fff;
}

.av-azione--forte:hover,
.av-azione--forte:focus-visible {
  transform: translateY(4px);
  box-shadow: 0 4px 0 var(--pino-fondo);
  color: #fff;
}

.av-azione--forte:active {
  transform: translateY(8px);
  box-shadow: none;
}

.av-azione--tenue {
  padding: 12px 26px;
  box-shadow: inset 0 0 0 2px currentColor;
  color: var(--inchiostro);
  font-weight: 600;
}

.av-azione--tenue:hover,
.av-azione--tenue:focus-visible {
  background: var(--inchiostro);
  color: var(--carta);
}

.av-azione--chiara {
  color: #fff;
}

.av-azione--chiara:hover,
.av-azione--chiara:focus-visible {
  background: #fff;
  color: var(--inchiostro);
}

.av-testata {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 243, 237, .93);
  backdrop-filter: saturate(140%) blur(9px);
}

.av-testata__riga {
  display: flex;
  align-items: center;
  gap: 26px;
  height: var(--altezza-testata);
}

.av-marchio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--inchiostro);
  font-family: var(--pila-titoli);
  font-size: 1.32rem;
  letter-spacing: -.02em;
  text-decoration: none;
}

.av-marchio svg {
  width: 30px;
  height: 30px;
}

.av-marchio b {
  color: var(--pino);
  font-weight: 700;
}

.av-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  list-style: none;
}

.av-menu a {
  color: var(--inchiostro-tenue);
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--scatto);
}

.av-menu a:hover {
  color: var(--pino);
}

.av-leva {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: var(--curva-min);
  background: var(--carta-alt);
}

.av-leva svg {
  width: 22px;
  height: 22px;
}

.av-apertura {
  position: relative;
  padding: clamp(72px, 12vw, 132px) 0 clamp(56px, 8vw, 96px);
  background: var(--carta-scura);
  color: #f1efe8;
  isolation: isolate;
  overflow: hidden;
}

.av-apertura__sfondo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-apertura::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(125% 105% at 16% 6%, rgba(8, 64, 47, .72) 0%, rgba(20, 31, 25, .88) 55%, rgba(10, 17, 13, .95) 100%);
}

.av-apertura .av-occhiello {
  color: #f0c17a;
}

.av-apertura__titolo {
  max-width: 15em;
  color: #fff;
}

.av-apertura__titolo em {
  display: block;
  color: #7fd0ac;
  font-style: normal;
}

.av-apertura__guida {
  max-width: 33em;
  margin-top: 22px;
  color: #cfd8d2;
  font-size: 1.13rem;
}

.av-apertura__comandi {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.av-cifre {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 18px;
  margin-top: clamp(46px, 7vw, 74px);
  padding-top: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

.av-cifra b {
  display: block;
  color: #fff;
  font-family: var(--pila-titoli);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
}

.av-cifra span {
  display: block;
  margin-top: 8px;
  color: #b3c0b8;
  font-size: .92rem;
}

.av-pastiglie {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  list-style: none;
}

.av-pastiglia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 17px;
  border-radius: var(--curva-min);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  color: #e5ebe7;
  font-size: .93rem;
  font-weight: 600;
}

.av-fascia {
  padding: clamp(66px, 8.5vw, 108px) 0;
}

.av-fascia--stretta {
  padding: clamp(52px, 6.5vw, 82px) 0;
}

.av-fascia--alt {
  background: var(--carta-alt);
}

.av-fascia--scura {
  background: var(--carta-scura);
  color: #e8ece9;
}

.av-intestazione {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

@media (min-width: 940px) {
  .av-intestazione--doppia {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: end;
    gap: 40px;
  }
}

.av-albo {
  display: grid;
  gap: 20px;
}

.av-scheda {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px 8px 26px 8px;
  background: #fff;
  box-shadow: var(--ombra-bassa);
  transition: transform var(--scatto), box-shadow var(--scatto);
}

.av-scheda:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombra-alta);
}

.av-scheda__scatto {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.av-scheda__corpo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 26px;
}

.av-scheda__nome {
  font-size: 1.24rem;
}

.av-scheda__ruolo {
  color: var(--pino);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.av-scheda__nota {
  color: var(--inchiostro-tenue);
  font-size: .99rem;
}

.av-scheda__piede {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--inchiostro-tenue);
  font-size: .88rem;
}

.av-scheda__voto {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terra);
  font-weight: 700;
}

.av-scheda__voto svg {
  width: 16px;
  height: 16px;
}

.av-scheda__scala {
  margin-left: 5px;
  color: var(--inchiostro-tenue);
  font-weight: 400;
}

.av-etichette {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.av-etichetta {
  padding: 5px 12px;
  border-radius: 10px 3px 10px 3px;
  background: var(--carta-alt);
  color: var(--inchiostro-tenue);
  font-size: .79rem;
  font-weight: 600;
}

.av-avvolgi {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.av-tabella {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: .97rem;
  text-align: left;
}

.av-tabella caption {
  margin-bottom: 18px;
  color: var(--inchiostro-tenue);
  font-size: .95rem;
  text-align: left;
}

.av-tabella thead th {
  padding: 12px 16px;
  border-bottom: 2px solid rgba(13, 98, 73, .35);
  color: var(--pino-fondo);
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.av-tabella tbody th {
  font-family: var(--pila-titoli);
  font-size: 1.04rem;
  font-weight: 700;
}

.av-tabella tbody th,
.av-tabella tbody td {
  padding: 15px 16px;
  vertical-align: top;
}

.av-tabella tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, .62);
}

.av-tabella tbody td:last-child {
  color: var(--terra);
  font-weight: 700;
  white-space: nowrap;
}

.av-postilla {
  max-width: 46em;
  margin-top: 22px;
  color: var(--inchiostro-tenue);
  font-size: .97rem;
}

.av-criteri {
  display: grid;
  gap: 26px 34px;
  margin-top: clamp(40px, 5vw, 58px);
  list-style: none;
}

@media (min-width: 760px) {
  .av-criteri {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .av-criteri {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.av-criterio b {
  display: block;
  margin-bottom: 7px;
  font-family: var(--pila-titoli);
  font-size: 1.1rem;
}

.av-criterio i {
  display: block;
  margin-bottom: 13px;
  color: var(--oro);
  font-family: var(--pila-titoli);
  font-size: 1.5rem;
  font-style: normal;
}

.av-criterio p {
  color: var(--inchiostro-tenue);
  font-size: .96rem;
}

.av-voci {
  display: grid;
  gap: 20px;
}

@media (min-width: 820px) {
  .av-voci {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
  }

  .av-voce:nth-child(1) {
    grid-column: span 4;
  }

  .av-voce:nth-child(2) {
    grid-column: span 2;
  }

  .av-voce:nth-child(3) {
    grid-column: span 3;
  }

  .av-voce:nth-child(4) {
    grid-column: span 3;
  }

  .av-voce:nth-child(5) {
    grid-column: span 6;
  }
}

.av-voce {
  padding: 26px 28px;
  border-radius: 24px 6px 24px 6px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.av-voce p {
  color: #e6ebe8;
  font-size: 1.02rem;
}

.av-voce--larga p {
  font-family: var(--pila-titoli);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  line-height: 1.34;
}

.av-voce footer {
  margin-top: 16px;
  color: #9fb0a6;
  font-size: .88rem;
}

.av-voce footer b {
  color: #fff;
  font-weight: 600;
}

.av-mosaico {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(40px, 5vw, 60px);
}

@media (min-width: 860px) {
  .av-mosaico {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .av-riquadro:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .av-riquadro:nth-child(6) {
    grid-column: span 4;
  }

  .av-riquadro:nth-child(6) img {
    height: 250px;
  }
}

.av-riquadro {
  position: relative;
  overflow: hidden;
  border-radius: 18px 5px 18px 5px;
}

.av-riquadro img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .1, .2, 1);
}

.av-riquadro:hover img {
  transform: scale(1.05);
}

.av-riquadro figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 13px;
  border-radius: 12px 3px 12px 3px;
  background: rgba(11, 20, 15, .74);
  color: #f0f3f1;
  font-size: .84rem;
  font-weight: 600;
}

.av-recapito {
  display: grid;
  gap: 34px;
}

@media (min-width: 900px) {
  .av-recapito {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: center;
    gap: 60px;
  }
}

.av-biglietto {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px 8px 30px 8px;
  background: #fff;
  box-shadow: var(--ombra-bassa);
}

.av-biglietto dl {
  display: grid;
  gap: 18px;
}

.av-biglietto dt {
  color: var(--inchiostro-tenue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.av-biglietto dd {
  font-size: 1.06rem;
}

.av-biglietto a {
  font-weight: 600;
}

.av-postale {
  margin-top: 26px;
  color: var(--inchiostro-tenue);
  font-size: .92rem;
}

.av-piede {
  padding: clamp(56px, 7vw, 82px) 0 34px;
  background: var(--carta-scura);
  color: #c8d2cc;
}

.av-piede__griglia {
  display: grid;
  gap: 38px;
}

@media (min-width: 780px) {
  .av-piede__griglia {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: 48px;
  }
}

.av-piede h2,
.av-piede h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.av-piede .av-marchio {
  color: #fff;
  margin-bottom: 16px;
}

.av-piede .av-marchio b {
  color: #7fd0ac;
}

.av-piede ul {
  display: grid;
  gap: 11px;
  list-style: none;
}

.av-piede a {
  color: #c8d2cc;
  text-decoration: none;
}

.av-piede a:hover {
  color: #fff;
  text-decoration: underline;
}

.av-piede__nota {
  max-width: 36em;
  font-size: .95rem;
}

.av-piede__coda a {
  color: #dae2dd;
  text-decoration: underline;
}

.av-piede__coda {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 26px;
  margin-top: 46px;
  padding-top: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  color: #93a29a;
  font-size: .88rem;
}

.av-avviso {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 90;
  display: none;
  gap: 18px;
  max-width: 620px;
  margin-inline: auto;
  padding: 22px 24px;
  border-radius: 24px 6px 24px 6px;
  background: #fff;
  box-shadow: var(--ombra-alta);
}

.av-avviso[data-aperto="si"] {
  display: block;
}

.av-avviso p {
  color: var(--inchiostro-tenue);
  font-size: .95rem;
}

.av-avviso__comandi {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.av-avviso .av-azione {
  min-height: 46px;
  padding: 11px 22px;
  font-size: .95rem;
}

.av-risali {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--curva-min);
  background: var(--pino);
  box-shadow: 0 6px 0 var(--pino-fondo);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--scatto), transform var(--scatto);
}

.av-risali[data-visibile="si"] {
  opacity: 1;
  pointer-events: auto;
}

.av-risali:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--pino-fondo);
}

.av-risali svg {
  width: 20px;
  height: 20px;
}

.av-legale {
  padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 8vw, 90px);
}

.av-legale__testo {
  max-width: 46em;
}

.av-legale__testo h1 {
  font-size: clamp(2rem, 4.6vw, 2.9rem);
}

.av-legale__testo h2 {
  margin: 42px 0 14px;
  font-size: 1.42rem;
}

.av-legale__testo h3 {
  margin: 26px 0 10px;
  font-size: 1.09rem;
}

.av-legale__testo p,
.av-legale__testo li {
  margin-bottom: 13px;
  color: #2c3a33;
  font-size: 1.02rem;
}

.av-legale__testo ul,
.av-legale__testo ol {
  margin: 0 0 18px 22px;
}

.av-legale__data {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: var(--curva-min);
  background: var(--carta-alt);
  color: var(--inchiostro-tenue);
  font-size: .9rem;
  font-weight: 600;
}

.av-registro {
  width: 100%;
  min-width: 600px;
  margin: 4px 0 6px;
  border-collapse: collapse;
  font-size: .95rem;
  text-align: left;
}

.av-registro th,
.av-registro td {
  padding: 12px 14px;
  vertical-align: top;
}

.av-registro caption {
  margin-bottom: 14px;
  color: var(--inchiostro-tenue);
  font-size: .93rem;
  text-align: left;
}

.av-legale__testo .av-avvolgi {
  margin: 22px 0 26px;
}

.av-registro thead th {
  border-bottom: 2px solid rgba(13, 98, 73, .3);
  color: var(--pino-fondo);
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.av-registro tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, .7);
}

.av-vuoto {
  padding: clamp(80px, 14vw, 150px) 0;
  text-align: center;
}

.av-vuoto p {
  max-width: 32em;
  margin: 18px auto 30px;
  color: var(--inchiostro-tenue);
}

@media (min-width: 900px) {
  .av-albo {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
  }

  .av-scheda:nth-child(1) {
    grid-column: span 6;
  }

  .av-scheda:nth-child(2),
  .av-scheda:nth-child(3) {
    grid-column: span 3;
  }

  .av-scheda:nth-child(4),
  .av-scheda:nth-child(5),
  .av-scheda:nth-child(6) {
    grid-column: span 4;
  }

  .av-scheda:nth-child(7) {
    grid-column: span 5;
  }

  .av-scheda:nth-child(8) {
    grid-column: span 7;
  }

  .av-scheda:nth-child(1) .av-scheda__scatto,
  .av-scheda:nth-child(8) .av-scheda__scatto {
    height: 268px;
  }
}

@media (min-width: 620px) and (max-width: 899px) {
  .av-albo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Sotto i 900px il menu passa al pannello: con il marchio a sinistra le cinque voci non stanno in riga. */
@media (max-width: 899px) {
  .av-leva {
    display: flex;
  }

  .av-menu {
    position: fixed;
    inset: var(--altezza-testata) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--respiro) 26px;
    background: var(--carta);
    box-shadow: 0 18px 30px rgba(12, 32, 24, .16);
  }

  .av-menu[data-aperto="si"] {
    display: flex;
  }

  .av-menu li {
    padding: 4px 0;
  }

  .av-menu a {
    display: block;
    padding: 12px 4px;
    font-size: 1.06rem;
  }

  .av-cifre {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .av-apertura__comandi .av-azione {
    width: 100%;
  }

  .av-voce {
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
