/*
Theme Name: Farfetch Inquiry
Theme URI: https://farfetch.7b.tn/
Author: Site Team
Description: Authorised FARFETCH catalogue reproduction adapted for product enquiries.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.1
License: Proprietary authorised implementation
Text Domain: farfetch-inquiry
*/

@font-face {
  font-family: 'Farfetch Basis';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/FarfetchBasis-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Farfetch Basis';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/FarfetchBasis-Bold.woff2') format('woff2');
}

:root {
  --ff-black: #222;
  --ff-white: #fff;
  --ff-soft: #f5f5f5;
  --ff-footer: #e7e7e7;
  --ff-line: #c8c8c8;
  --ff-muted: #767676;
  --ff-sale: #e00034;
  --ff-success: #16713a;
  --ff-error: #b42318;
  --ff-page: 1392px;
  --ff-edge: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ff-white);
  color: var(--ff-black);
  font-family: 'Farfetch Basis', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

body.has-open-drawer,
body.has-open-menu {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.site-header {
  background: var(--ff-white);
  position: relative;
  z-index: 50;
}

.header-primary {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 88px;
  padding: 0 var(--ff-edge);
}

.department-nav,
.category-nav,
.header-actions,
.header-secondary,
.header-search {
  align-items: center;
  display: flex;
}

.department-nav {
  gap: 28px;
}

.department-nav a,
.category-nav a {
  text-decoration: none;
}

.department-nav a {
  padding: 10px 0;
}

.department-nav .is-current {
  font-weight: 700;
}

.site-logo {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1;
  text-decoration: none;
}

.header-actions {
  gap: 8px;
  justify-content: flex-end;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.icon-button svg,
.header-search svg,
.mobile-menu-button svg,
.filter-toggle svg {
  fill: none;
  height: 23px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  width: 23px;
}

.region-button {
  background: #71a44a;
  border-radius: 50%;
  color: var(--ff-white);
  font-size: 8px;
  height: 20px;
  margin-right: 4px;
  width: 20px;
}

.header-secondary {
  height: 55px;
  justify-content: space-between;
  padding: 0 var(--ff-edge);
}

.category-nav {
  gap: 27px;
  white-space: nowrap;
}

.category-nav .sale-link {
  color: var(--ff-sale);
}

.header-search {
  border-bottom: 1px solid #858585;
  flex: 0 0 270px;
  gap: 8px;
  margin-left: 28px;
}

.header-search svg {
  height: 21px;
  width: 21px;
}

.header-search input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: 0;
  padding: 10px 2px;
  width: 100%;
}

.header-search input::placeholder {
  color: #777;
  opacity: 1;
}

.mobile-menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  gap: 7px;
  padding: 0;
}

.mobile-new-in {
  display: none;
  text-decoration: none;
}

.welcome-hero {
  margin: 0 auto;
  max-width: var(--ff-page);
  padding: 10px 0 80px;
}

.welcome-hero h1 {
  font-size: 23px;
  margin: 0;
  padding: 0 0 34px;
  text-align: center;
}

.welcome-departments {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.department-card {
  text-align: center;
}

.department-image {
  display: block;
  overflow: hidden;
}

.department-image img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

.department-image:hover img {
  transform: scale(1.015);
}

.department-card h2 {
  font-size: 22px;
  margin: 15px 0 17px;
}

.department-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.department-card nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 12px;
}

.breadcrumbs a {
  text-decoration: none;
}

.catalog-page {
  margin: 0 auto;
  max-width: calc(var(--ff-page) + (var(--ff-edge) * 2));
  padding: 18px var(--ff-edge) 100px;
}

.catalog-heading {
  min-height: 112px;
}

.catalog-heading h1 {
  font-size: 30px;
  font-weight: 400;
  margin: 24px 0 4px;
}

.catalog-heading p {
  color: var(--ff-muted);
  margin: 0;
}

.catalog-toolbar {
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 28px;
  min-height: 56px;
}

.filter-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  gap: 8px;
  justify-self: start;
  padding: 0;
}

.filter-toggle svg {
  height: 18px;
  width: 18px;
}

.catalog-count {
  color: var(--ff-muted);
  font-size: 13px;
}

.sort-control {
  justify-self: end;
}

.sort-control select {
  background: transparent;
  border: 0;
  padding: 10px 0 10px 14px;
}

.catalog-layout {
  position: relative;
}

.filter-panel {
  background: var(--ff-white);
  box-shadow: 8px 0 22px rgb(0 0 0 / 8%);
  height: calc(100vh - 143px);
  left: calc(var(--ff-edge) * -1);
  overflow-y: auto;
  padding: 24px;
  position: fixed;
  top: 143px;
  transform: translateX(-105%);
  transition: transform 240ms ease;
  width: min(360px, 90vw);
  z-index: 60;
}

.filter-panel.is-open {
  transform: translateX(var(--ff-edge));
}

.filter-panel-heading {
  align-items: center;
  display: flex;
  font-size: 19px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.filter-panel-heading button {
  background: transparent;
  border: 0;
  font-size: 30px;
}

.filter-panel details {
  border-top: 1px solid #ddd;
  padding: 18px 0;
}

.filter-panel summary {
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 14px;
}

.filter-panel label {
  align-items: center;
  display: flex;
  gap: 9px;
  margin: 10px 0;
}

.product-grid {
  display: grid;
  gap: 44px 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
}

.product-card-media {
  aspect-ratio: 3 / 4;
  background: var(--ff-soft);
  overflow: hidden;
  position: relative;
}

.product-card-media > a {
  display: block;
  height: 100%;
}

.product-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: opacity 180ms ease;
  width: 100%;
}

.product-image-secondary {
  opacity: 0;
}

.product-card-media:hover .product-image-secondary {
  opacity: 1;
}

.save-button,
.product-save {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  justify-content: center;
}

.save-button {
  height: 42px;
  position: absolute;
  right: 7px;
  top: 7px;
  width: 42px;
}

.save-button svg,
.product-save svg {
  fill: var(--ff-white);
  height: 24px;
  stroke: var(--ff-black);
  stroke-width: 1.2;
  width: 24px;
}

.save-button.is-saved svg,
.product-save.is-saved svg {
  fill: var(--ff-black);
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.35;
  padding-top: 11px;
  text-decoration: none;
}

.product-card-copy strong {
  font-size: 14px;
}

.product-label {
  color: var(--ff-muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.product-name {
  min-height: 35px;
}

.product-price {
  font-weight: 700;
  margin-top: 8px;
}

.product-page {
  padding-bottom: 100px;
}

.product-overview {
  display: grid;
  gap: 120px;
  grid-template-columns: minmax(500px, 612px) minmax(0, 1fr);
  margin: 46px var(--ff-edge) 22px;
}

.product-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 120px minmax(0, 480px);
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-thumbnails button {
  aspect-ratio: 3 / 4;
  background: var(--ff-soft);
  border: 0;
  padding: 0;
}

.product-thumbnails button.is-active {
  border-right: 2px solid var(--ff-black);
}

.product-thumbnails img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-main-image {
  aspect-ratio: 3 / 4;
  background: var(--ff-soft);
  overflow: hidden;
}

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

.product-summary {
  max-width: 660px;
  min-width: 0;
  padding-top: 0;
  position: relative;
}

.product-summary h1 {
  font-size: 30px;
  font-weight: 400;
  margin: 2px 0 40px;
}

.product-season {
  color: var(--ff-muted);
  margin: 0;
}

.product-description {
  margin: 0 0 10px;
}

.product-price-line {
  margin: 0;
}

.product-price-line span {
  color: var(--ff-muted);
  margin-left: 5px;
}

.product-save {
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

.product-purchase {
  margin-top: 65px;
}

.product-purchase > label {
  display: none;
}

.product-purchase select {
  appearance: auto;
  background: var(--ff-white);
  border: 1px solid #888;
  border-radius: 0;
  height: 45px;
  margin-bottom: 12px;
  padding: 0 16px;
  width: 100%;
}

.primary-button {
  align-items: center;
  background: var(--ff-black);
  border: 1px solid var(--ff-black);
  color: var(--ff-white);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 45px;
  padding: 0 24px;
  text-decoration: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #000;
}

.product-enquiry-button {
  width: 100%;
}

.size-status {
  color: var(--ff-error);
  font-size: 12px;
  margin: 5px 0 0;
  min-height: 16px;
}

.delivery-copy {
  font-size: 13px;
  margin-top: 17px;
}

.delivery-copy strong {
  display: block;
}

.product-breadcrumbs {
  margin: 0 var(--ff-edge);
  min-height: 76px;
}

.product-details {
  border-bottom: 1px solid #ddd;
  margin: 0 var(--ff-edge);
  padding: 22px 0 36px;
}

.product-details summary {
  cursor: pointer;
  font-size: 15px;
  list-style-position: outside;
}

.details-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 1fr 1fr;
  max-width: 1160px;
  padding: 26px 12px 0;
}

.details-grid h2 {
  font-size: 15px;
  margin: 0 0 12px;
}

.details-grid p,
.details-grid ul {
  font-size: 14px;
  max-width: 620px;
}

.details-grid ul {
  padding-left: 18px;
}

.details-grid .product-id {
  margin-top: 28px;
}

.recommendations {
  margin: 80px auto 0;
  max-width: calc(var(--ff-page) + (var(--ff-edge) * 2));
  padding: 0 var(--ff-edge);
}

.recommendations > h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 26px;
}

.recommendation-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(4, 1fr);
}

.newsletter {
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--ff-page);
  padding: 64px 0 70px;
}

.newsletter h2 {
  font-size: 30px;
  margin: 0 0 14px;
}

.newsletter-copy p {
  margin: 0;
}

.newsletter-form {
  max-width: 520px;
}

.newsletter-label,
.newsletter-form label {
  display: block;
  font-size: 13px;
  margin: 0 0 9px;
}

.newsletter-form input {
  background: var(--ff-white);
  border: 1px solid #888;
  border-radius: 0;
  height: 45px;
  padding: 0 16px;
  width: 100%;
}

.newsletter-form button {
  background: var(--ff-black);
  border: 0;
  color: var(--ff-white);
  font-weight: 700;
  margin-top: 16px;
  min-height: 44px;
  padding: 0 20px;
}

.newsletter-consent {
  font-size: 13px;
  margin: 14px 0 0;
}

.newsletter-status {
  color: var(--ff-success);
  margin: 8px 0 0;
  min-height: 20px;
}

.site-footer {
  background: var(--ff-footer);
  padding: 28px var(--ff-edge) 24px;
}

.footer-links {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--ff-page);
}

.footer-links h3 {
  font-size: 15px;
  margin: 0 0 16px;
}

.footer-links a {
  display: block;
  margin: 0 0 13px;
  text-decoration: none;
}

.footer-links .follow-title {
  margin-top: 26px;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-links a {
  font-size: 20px;
}

.footer-legal {
  border-top: 1px solid var(--ff-white);
  margin: 22px auto 0;
  max-width: var(--ff-page);
  padding-top: 24px;
}

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

.footer-legal p {
  font-size: 12px;
  margin: 24px 0 0;
}

.footer-legal .enquiry-only-note {
  margin-top: 7px;
}

.inquiry-overlay {
  background: rgb(0 0 0 / 42%);
  inset: 0;
  position: fixed;
  z-index: 90;
}

.inquiry-drawer {
  background: var(--ff-white);
  box-shadow: -8px 0 25px rgb(0 0 0 / 16%);
  height: 100vh;
  max-width: 100%;
  overflow-y: auto;
  padding: 28px 32px 40px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 260ms ease;
  width: 480px;
  z-index: 100;
}

.inquiry-drawer.is-open {
  transform: translateX(0);
}

.inquiry-drawer-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.inquiry-drawer-header p {
  font-size: 12px;
  margin: 0 0 7px;
}

.inquiry-drawer-header h2 {
  font-size: 27px;
  margin: 0;
}

.inquiry-drawer-header button {
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
}

.inquiry-intro {
  color: var(--ff-muted);
  margin: 17px 0 25px;
}

.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.inquiry-field label {
  font-size: 13px;
  font-weight: 700;
}

.inquiry-field input,
.inquiry-field textarea {
  background: var(--ff-white);
  border: 1px solid #999;
  border-radius: 0;
  min-height: 45px;
  padding: 10px 12px;
  width: 100%;
}

.inquiry-field input[readonly] {
  background: var(--ff-soft);
}

.inquiry-field textarea {
  min-height: 105px;
  resize: vertical;
}

.honeypot {
  left: -9999px;
  position: absolute;
}

.privacy-check {
  align-items: flex-start;
  display: flex;
  font-size: 13px;
  gap: 10px;
}

.privacy-check input {
  margin-top: 3px;
}

.form-safety-note {
  color: var(--ff-muted);
  font-size: 12px;
}

.inquiry-form > .primary-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
}

.form-status[data-state='success'] {
  color: var(--ff-success);
}

.form-status[data-state='error'] {
  color: var(--ff-error);
}

.not-found-page {
  min-height: 480px;
  padding: 100px var(--ff-edge);
  text-align: center;
}

.not-found-page h1 {
  font-size: 34px;
}

@media (max-width: 1120px) {
  .category-nav {
    gap: 18px;
    overflow: hidden;
  }

  .header-search {
    flex-basis: 230px;
  }

  .welcome-hero,
  .newsletter {
    margin-inline: var(--ff-edge);
  }

  .product-grid {
    gap: 34px 24px;
  }

  .product-overview {
    gap: 50px;
    grid-template-columns: minmax(400px, 52%) minmax(0, 1fr);
  }

  .product-gallery {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --ff-edge: 16px;
  }

  .header-primary {
    height: 56px;
  }

  .site-logo {
    font-size: 25px;
    letter-spacing: -1px;
  }

  .department-nav {
    display: none;
  }

  .header-primary {
    grid-template-columns: 1fr auto 1fr;
  }

  .header-primary::before {
    content: 'Womenswear';
    font-size: 12px;
    font-weight: 700;
  }

  .header-actions [data-search-toggle] {
    display: none;
  }

  .header-actions .region-button {
    display: inline-flex;
    height: 20px;
    width: 20px;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    height: 36px;
    width: 36px;
  }

  .header-secondary {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    gap: 18px;
    height: 48px;
  }

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

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

  .mobile-menu-button span {
    color: var(--ff-sale);
  }

  .mobile-new-in {
    display: inline;
    white-space: nowrap;
  }

  .category-nav {
    background: var(--ff-white);
    display: none;
    flex-direction: column;
    inset: 104px 0 auto;
    padding: 24px;
    position: fixed;
  }

  .category-nav.is-open {
    align-items: flex-start;
    display: flex;
    height: calc(100vh - 104px);
  }

  .header-search {
    flex: 1;
    margin-left: 0;
  }

  .welcome-hero {
    padding-top: 22px;
  }

  .welcome-hero h1 {
    font-size: 20px;
  }

  .welcome-departments {
    gap: 36px 16px;
  }

  .department-card h2 {
    font-size: 20px;
  }

  .department-card nav {
    gap: 8px 12px;
  }

  .catalog-heading h1 {
    font-size: 26px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-count {
    display: none;
  }

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

  .product-overview {
    gap: 30px;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    margin-top: 24px;
  }

  .product-gallery {
    display: block;
  }

  .product-thumbnails {
    display: none;
  }

  .product-summary h1 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .product-purchase {
    margin-top: 36px;
  }

  .details-grid {
    gap: 40px;
  }

  .newsletter {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    gap: 40px 28px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 13px;
  }

  .site-logo {
    font-size: 21px;
  }

  .header-primary {
    padding-inline: 8px;
  }

  .header-actions .icon-button {
    height: 32px;
    width: 32px;
  }

  .header-secondary {
    padding-inline: 8px;
  }

  .header-primary::before {
    font-size: 10px;
  }

  .welcome-hero {
    margin: 0;
    padding: 18px 12px 50px;
  }

  .welcome-hero h1 {
    font-size: 18px;
    padding-bottom: 22px;
  }

  .welcome-departments {
    grid-template-columns: 1fr;
  }

  .department-card h2 {
    margin-bottom: 12px;
  }

  .catalog-page {
    padding-top: 12px;
  }

  .catalog-heading {
    min-height: 96px;
  }

  .catalog-heading h1 {
    font-size: 23px;
    margin-top: 18px;
  }

  .catalog-toolbar {
    margin-bottom: 20px;
  }

  .sort-control select {
    font-size: 12px;
    max-width: 174px;
  }

  .filter-panel {
    height: calc(100vh - 104px);
    top: 104px;
  }

  .product-grid {
    gap: 32px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-copy {
    font-size: 12px;
    padding-top: 8px;
  }

  .product-card-copy strong {
    font-size: 13px;
  }

  .product-name {
    min-height: 32px;
  }

  .save-button {
    right: 2px;
    top: 2px;
  }

  .product-page {
    padding-bottom: 60px;
  }

  .product-overview {
    align-items: start;
    gap: 14px;
    grid-template-columns: minmax(0, 2.4fr) minmax(88px, 1fr);
    margin: 18px 10px 20px;
  }

  .product-summary {
    padding-top: 0;
  }

  .product-season,
  .product-description,
  .product-price-line,
  .delivery-copy {
    font-size: 11px;
  }

  .product-summary h1 {
    font-size: 16px;
    margin: 1px 28px 18px 0;
  }

  .product-save {
    height: 26px;
    width: 26px;
  }

  .product-save svg {
    height: 20px;
    width: 20px;
  }

  .product-price-line span {
    display: block;
    margin-left: 0;
  }

  .product-purchase {
    margin-top: 17px;
  }

  .product-purchase select {
    font-size: 11px;
    height: 36px;
    margin-bottom: 7px;
    padding: 0 5px;
  }

  .product-enquiry-button {
    font-size: 11px;
    line-height: 1.05;
    min-height: 44px;
    padding: 4px 6px;
    text-align: center;
  }

  .size-status {
    font-size: 10px;
  }

  .product-breadcrumbs {
    font-size: 11px;
    min-height: 56px;
  }

  .product-details {
    padding: 16px 0 28px;
  }

  .product-details summary {
    font-size: 13px;
  }

  .details-grid {
    display: block;
    padding: 20px 0 0;
  }

  .details-grid > div + div {
    margin-top: 24px;
  }

  .details-grid h2,
  .details-grid p,
  .details-grid ul {
    font-size: 12px;
  }

  .recommendations {
    margin-top: 52px;
  }

  .recommendations > h2 {
    font-size: 20px;
  }

  .recommendation-grid {
    gap: 28px 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter {
    display: block;
    margin: 0;
    padding: 58px var(--ff-edge);
  }

  .newsletter h2 {
    font-size: 25px;
  }

  .newsletter-form {
    margin-top: 36px;
  }

  .footer-links {
    display: block;
  }

  .footer-links > div + div {
    margin-top: 32px;
  }

  .footer-links a {
    margin-bottom: 10px;
  }

  .footer-legal nav {
    gap: 12px 20px;
  }

  .inquiry-drawer {
    padding: 22px 18px 36px;
    width: 100%;
  }
}

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