@charset "UTF-8";
@media (min-width: 75em) {
  :root {
    --layout-wrapper--margin: 35px;
  }
}
@media (min-width: 60em) {
  .main > .wrapper {
    border-bottom-width: 32px;
    border-top-width: 32px;
  }
}
@media (min-width: 60em) {
  .top-bar {
    background: #fff linear-gradient(to right, #fff 50%, #2f333a 50%) repeat-y;
    background-size: 100% 1px;
    height: 49px;
    position: relative;
  }
  .top-bar > .wrapper {
    display: flex;
    height: 49px;
    justify-content: space-between;
  }
  .top-bar:focus-within, .top-bar:hover {
    z-index: 30;
  }
  .top-bar__menu-button {
    display: none;
  }
  .top-bar__logo {
    height: 36px;
    width: 300px;
    align-self: flex-end;
    background: url(/images/logo/sbs-header-desktop-2022.svg) no-repeat 0 50%;
    margin-right: 70px;
  }
  .top-bar__menu {
    background: #2f333a;
    display: flex;
    flex: 1 0 auto;
    color: #fff;
    justify-content: flex-end;
    height: 49px;
    margin: 0 0 0 22px;
    position: relative;
  }
  .top-bar__menu::before {
    position: absolute;
    top: 0;
    right: 100%;
    border-left: 22px solid transparent;
    border-top: 49px solid #2f333a;
    content: "";
  }
  .top-bar__menu-item {
    font-size: 14px;
    font-weight: 500;
    height: 49px;
    position: relative;
  }
  .top-bar__menu-item + .top-bar__menu-item {
    border-left: 1px solid #4e5259;
  }
  .top-bar__menu-item--has-account .top-bar__menu-link {
    line-height: 18px;
  }
  .top-bar__menu-link {
    color: #e6e6e6;
    display: block;
    height: 49px;
    line-height: 49px;
    outline: 0 none !important;
    padding: 0 20px;
    position: relative;
    transition: background-color 0.1s ease-out, color 0.1s ease-out;
    white-space: nowrap;
    outline: 0 none !important;
  }
  .top-bar__menu-link::before {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  .top-bar__menu-link:focus-visible::before {
    box-shadow: rgba(255, 255, 255, 0.5) 0 0 0 4px;
  }
  .top-bar__menu-link > .top-bar__menu-link-expand {
    height: 49px;
    width: 1.5em;
    transform: translateX(0.5em);
    vertical-align: top;
  }
  .top-bar__menu-link > .top-bar__menu-link-icon {
    height: 49px;
    width: 30px;
    margin-right: 8px;
    vertical-align: top;
  }
  .top-bar__menu-link:active, .top-bar__menu-link:hover {
    background-color: #4e5259;
    color: #fff;
  }
  .top-bar__menu-link-account-name {
    color: #1da1f2;
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
  }
  .top-bar__menu-link-account {
    display: inline-block;
  }
  .top-bar__submenu {
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1;
  }
  .top-bar__menu-link:active + .top-bar__submenu, .top-bar__menu-link:focus + .top-bar__submenu, .top-bar__menu-link:hover + .top-bar__submenu, .top-bar__menu-item:focus-within .top-bar__submenu, .top-bar__submenu:hover {
    display: block;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .top-bar__logo {
    margin-right: calc(20px + 50 * (100vw - 960px) / 240);
  }
}
@media (min-width: 60em) {
  .top-bar-submenu__link {
    padding: 12px 32px 12px 64px;
  }
  .top-bar-submenu__link > .top-bar__submenu-link-icon {
    position: absolute;
    top: 8px;
    left: 20px;
    height: 30px;
    width: 30px;
  }
}
@media (min-width: 60em) {
  .nav-bar {
    position: sticky;
    top: 0;
    left: 0;
    height: 68px;
    width: 100%;
    background: #fff;
  }
  .nav-bar > .wrapper {
    align-items: center;
    display: flex;
    height: 68px;
  }
  .nav-bar__menu {
    align-items: center;
    display: flex;
    height: 68px;
    margin: 0 0 0 -11px;
  }
  .nav-bar__menu-item {
    --menu-item--fill-color: rgba(0, 102, 204, 0);
    --menu-item--fill-color--active: #0066cc;
    --menu-item--fill-color--hover: rgba(0, 102, 204, 0.1);
    --menu-item--text-color: #1e2429;
    --menu-item--text-color--active: #fff;
    display: block;
    margin: 0;
    position: relative;
  }
  .nav-bar__menu-item--blue {
    --menu-item--text-color: #0066cc;
  }
  .nav-bar__menu-item--red {
    --menu-item--fill-color: rgba(239, 12, 56, 0);
    --menu-item--fill-color--active: #ef0c38;
    --menu-item--fill-color--hover: rgba(239, 12, 56, 0.1);
    --menu-item--text-color: #ef0c38;
  }
  .nav-bar__menu-item::before {
    position: absolute;
    top: 100%;
    left: 50%;
    height: 6px;
    width: 14px;
    border: 7px solid transparent;
    border-bottom: 0;
    border-top-color: var(--menu-item--fill-color--active);
    border-top-width: 6px;
    content: "";
    margin-left: -7px;
    opacity: 0;
    transform: scale(0.01);
    transform-origin: 50% 0;
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
  }
  .nav-bar__menu-item.is-active::before {
    opacity: 1;
    transform: scale(1);
  }
  .nav-bar__menu-link {
    background: var(--menu-item--fill-color);
    border-radius: 2.5px;
    color: var(--menu-item--text-color);
    display: block;
    height: 32px;
    line-height: 32px;
    padding: 0 14px;
    position: relative;
    transition: background-color 0.1s ease-out, border-color 0.1s ease-out, color 0.1s ease-out;
    text-decoration: none !important;
    outline: 0 none !important;
  }
  .nav-bar__menu-link::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  .nav-bar__menu-link:focus-visible::before {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .nav-bar__menu-link:hover {
    background: var(--menu-item--fill-color--hover);
  }
  .nav-bar__menu-link:active, .nav-bar__menu-item.is-active .nav-bar__menu-link {
    background: var(--menu-item--fill-color--active);
    color: var(--menu-item--text-color--active);
  }
  .nav-bar__menu-item--red .nav-bar__menu-link:focus-visible::before {
    box-shadow: rgba(239, 12, 56, 0.5) 0 0 0 4px;
  }
  .nav-bar__menu-item--group-end {
    margin-right: 15px;
  }
  .nav-bar__menu-item--group-end::after {
    position: absolute;
    top: 1px;
    right: -15px;
    height: 30px;
    width: 1px;
    border-left: 1px solid #e6e6e6;
    content: "";
    display: block;
    pointer-events: none;
  }
  .nav-bar__menu-item--group-end .nav-bar__menu-link::after {
    position: absolute;
    top: 0;
    right: -15px;
    height: 32px;
    width: 15px;
    content: "";
    display: block;
  }
  .nav-bar__menu-item--group-end + .nav-bar__menu-item {
    margin-left: 14px;
  }
  .nav-bar__menu-item--group-end + .nav-bar__menu-item .nav-bar__menu-link::after {
    position: absolute;
    top: 0;
    left: -14px;
    height: 32px;
    width: 14px;
    content: "";
    display: block;
  }
  .nav-bar__search {
    flex: 1 0 auto;
    height: 40px;
    margin-left: 24px;
  }
  .nav-bar__button {
    flex: 0 0 auto;
  }
  .nav-bar__button[data-action=account], .nav-bar__button[data-action=search] {
    display: none;
  }
  .nav-bar-spacer {
    display: none;
  }
}
@media (min-width: 75em) {
  .nav-bar__button[data-action=wishlist] {
    margin-left: 14px;
  }
  .nav-bar__button[data-action=wishlist]::after {
    position: absolute;
    top: 50%;
    right: -1px;
    border-left: 1px solid #e6e6e6;
    content: "";
    display: block;
    height: 30px;
    margin-top: -15px;
    width: 1px;
  }
  .nav-bar__button[data-action=cart] {
    margin-left: 1px;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .nav-bar__black-friday-clearance + .nav-bar__black-friday-friday {
    margin-right: 0 !important;
    padding-right: 10px;
  }
  .nav-bar__black-friday-clearance + .nav-bar__black-friday-friday::after {
    display: none;
  }
  .nav-bar__black-friday-clearance:has(+ .nav-bar__black-friday-friday) {
    margin-right: 0 !important;
  }
  .nav-bar__menu-item--group-end + .nav-bar__menu-item {
    margin-left: 0px !important;
  }
  .nav-bar__search {
    margin-left: 0 !important;
  }
  .nav-bar .nav-bar__menu-link {
    padding: 0 8px;
  }
}
@media (min-width: 60em) {
  :root {
    --nav-bar-button--color: #9fa2a5;
    --nav-bar-button--height: 68px;
    --nav-bar-button--width: 44px;
  }
}
@media (min-width: 75em) {
  :root {
    --nav-bar-button--width: 58px;
  }
}
@media (min-width: 60em) {
  .nav-bar::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.128), rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0)) repeat-x 0 0;
    background-size: 1px 10px;
    content: "";
    height: 10px;
    margin-bottom: -10px;
    pointer-events: none;
    width: 100%;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .footer-main > .wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 250px;
    grid-template-areas: "address services reviews" "address services social" "company services signup" "company privacy signup" "recycling . .";
  }
  .footer-main__address {
    align-self: start;
    grid-area: address;
  }
  .footer-main__services {
    align-self: start;
    grid-area: services;
  }
  .footer-main__company {
    align-self: end;
    grid-area: company;
  }
  .footer-main__privacy {
    align-self: end;
    grid-area: privacy;
  }
  .footer-main__recycling {
    align-self: start;
    grid-area: recycling;
  }
  .footer-main__reviews {
    align-self: start;
    grid-area: reviews;
  }
  .footer-main__signup {
    align-self: end;
    grid-area: signup;
  }
  .footer-main__social {
    align-self: start;
    grid-area: social;
  }
}
@media (min-width: 75em) {
  .footer-main > .wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 250px;
    grid-template-areas: "address services company privacy reviews" "address services company privacy signup" "address services recycling social signup";
  }
  .footer-main__address {
    align-self: start;
    grid-area: address;
  }
  .footer-main__services {
    align-self: start;
    grid-area: services;
  }
  .footer-main__company {
    align-self: start;
    grid-area: company;
  }
  .footer-main__privacy {
    align-self: start;
    grid-area: privacy;
  }
  .footer-main__recycling {
    align-self: end;
    grid-area: recycling;
    margin-bottom: -4px;
  }
  .footer-main__reviews {
    align-self: start;
    grid-area: reviews;
  }
  .footer-main__signup {
    align-self: end;
    grid-area: signup;
    margin-top: 20px;
  }
  .footer-main__social {
    align-self: end;
    grid-area: social;
  }
}
@media (min-width: 75em) {
  .footer-tail > .wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-tail__pay {
    flex: 0 0 auto;
  }
  .footer-tail__legal {
    flex: 0 1 auto;
    margin-left: 20px;
    width: 540px;
  }
}
@media (min-width: 60em) {
  .footer-stores-banner__icon .icon {
    margin-right: 32px;
  }
  .footer-stores-banner__title {
    font-size: 22px;
  }
  .footer-stores-banner__subtitle {
    font-size: 18px;
  }
  .footer-stores-banner__content {
    align-items: center;
    display: grid;
    grid-template-columns: 9% 78% 15%;
    min-height: 140px;
  }
  .footer-stores-banner__link {
    margin-right: 24px;
    text-align: right;
  }
}
@media (min-width: 75em) {
  .footer-stores-banner__title {
    font-size: 26px;
  }
  .footer-stores-banner__content {
    grid-template-columns: 10% 75% 15%;
    margin: 0 auto;
    max-width: 1200px;
  }
  .footer-stores-banner__link {
    margin-left: 8px;
  }
  .footer-stores-banner .horizontal-scroll-section {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .store-review-grid__item {
    width: calc(33.3333333333% - 0px - 0.01px);
  }
}
@media (min-width: 75em) {
  .store-review-grid__item {
    width: calc(33.3333333333% - 0px - 0.01px);
  }
}
@media (min-width: 60em) {
  .footer-stores-banner .scrollpane__next-btn, .footer-stores-banner .scrollpane__prev-btn {
    top: 30px;
  }
}
@media (min-width: 60em) {
  .mega-article {
    position: relative;
  }
  .mega-article__link {
    outline: 0 none !important;
  }
  .mega-article__link .mega-article__title::before {
    position: absolute;
    top: -2px;
    right: -3px;
    bottom: -2px;
    left: -3px;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  .mega-article__link:focus-visible .mega-article__title::before {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .mega-article__link {
    color: #1e2429;
    display: block;
  }
  .mega-article__title {
    color: #1e2429;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1666666667;
    padding: 3px 0;
    position: relative;
    transition: color 0.1s ease-out;
    vertical-align: top;
  }
}
@media (min-width: 60em) and (min-width: 75em) {
  .mega-article__title {
    font-size: 16px;
  }
}
@media (min-width: 60em) {
  .mega-article__link:active .mega-article__title, .mega-article__link:hover .mega-article__title {
    color: #39a9e0;
  }
  .mega-article__image {
    display: none;
  }
  .mega-article__info {
    display: block;
    font-size: 11px;
    line-height: 1.1666666667;
    white-space: nowrap;
  }
  .mega-article__date {
    color: #616669;
    cursor: default;
    display: inline-block;
    font-style: italic;
  }
  .mega-article:first-child::before {
    width: 100%;
    background: #d2d6d9;
    border-radius: 4px;
    box-sizing: content-box;
    content: "";
    display: block;
    padding-top: 66.6666666667%;
  }
  .mega-article:first-child .mega-article__info {
    margin-top: 7px;
  }
  .mega-article:first-child .mega-article__image {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    aspect-ratio: 3/2;
    display: block;
  }
  .mega-article-list .mega-article + .mega-article {
    margin-top: 8px;
  }
  .mega-article-list.is-placeholder + .link {
    display: none;
  }
}
@media (min-width: 60em) {
  .mega-brands {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  .mega-brands__item {
    background: #fff;
    border-radius: 2.5px;
    display: block;
    flex: 0 0 auto;
    margin: 0 4px 4px 0;
    max-width: 82px;
    width: 82px;
  }
  .mega-brands__link {
    color: #1e2429;
    display: block;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    text-align: center;
    transition: color 0.1s ease-out;
    outline: 0 none !important;
  }
  .mega-brands__link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
    background: rgba(0, 102, 204, 0);
    transition-property: background-color, box-shadow;
  }
  .mega-brands__link:focus-visible::after {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .mega-brands__link:active, .mega-brands__link:hover {
    color: #39a9e0;
  }
  .mega-brands__link:active::after, .mega-brands__link:hover::after {
    background: rgba(0, 102, 204, 0.1);
  }
  .mega-brands__link::before {
    content: "";
    display: block;
    padding-top: 90%;
  }
  .mega-brands__logo {
    position: absolute;
    top: 0;
    left: 5%;
    aspect-ratio: 1;
    object-fit: contain;
    width: 90%;
  }
  .mega-brands__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding: 0 2px 4px;
    width: 100%;
  }
  .mega-brands--motocross {
    max-width: 688px;
  }
}
@media (min-width: 60em) {
  .mega-links {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
  }
  .mega-links .link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin-bottom: 2px;
    width: 108px;
    margin-right: 12px;
  }
}
@media (min-width: 60em) {
  .mega-list {
    display: block;
    margin: 0;
    padding: 0;
  }
  .mega-list__item {
    display: block;
  }
  .mega-list__link {
    color: #1e2429;
    display: inline-block;
    max-width: 100%;
    position: relative;
    transition: color 0.1s ease-out;
    vertical-align: top;
    outline: 0 none !important;
  }
  .mega-list__link::before {
    position: absolute;
    top: -2px;
    right: -3px;
    bottom: -2px;
    left: -3px;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  .mega-list__link:focus-visible::before {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .mega-list__link:active, .mega-list__link:hover {
    color: #39a9e0;
  }
  .mega-list__item + .mega-list__item .mega-list__link {
    border-top: 0.2em solid transparent;
  }
  .mega-list + .mega-list {
    margin-top: 32px;
  }
  .mega-list + .mega-list::before {
    height: 18px;
    width: 22px;
    border-top: 2px solid #8f9294;
    content: "";
    display: block;
  }
  .mega-menu-title + .mega-list {
    margin-top: -4px;
  }
}
@media (min-width: 60em) {
  .mega-types {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  .mega-types__item {
    display: block;
    flex: 0 0 auto;
    margin: 0 1.8% 0 0;
    width: 18.2%;
  }
  .mega-types__item:nth-child(n+6) {
    margin-top: 1.8%;
  }
  .mega-types__link {
    color: #1e2429;
    display: block;
    font-size: 13px;
    line-height: 1.1666666667;
    padding-bottom: 3px;
    position: relative;
    text-align: center;
    transition: color 0.1s ease-out;
    outline: 0 none !important;
  }
  .mega-types__link::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  .mega-types__link:focus-visible::before {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .mega-types__link:active, .mega-types__link:hover {
    color: #39a9e0;
  }
  .mega-types__disc {
    width: 100%;
    background: #fff;
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    display: block;
    margin-bottom: 6px;
    padding-top: 100%;
    position: relative;
  }
  .mega-types__disc .icon {
    position: absolute;
    top: 12%;
    left: 12%;
    height: 76%;
    width: 76%;
    color: #0066cc;
  }
  .mega-types--clearance {
    width: 1250px;
    max-width: 100%;
  }
  .mega-types--clearance .mega-types__item {
    margin: 0;
    width: 12.7428571429%;
  }
  .mega-types--clearance .mega-types__item:not(:nth-child(7n+1)) {
    margin-left: 1.8%;
  }
  .mega-types--clearance .mega-types__link {
    font-size: 16px;
    font-weight: 700;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .mega-types__item {
    margin: 0 1.8% 0 0;
    width: 23.2%;
  }
  .mega-types__item:nth-child(n+5) {
    margin-top: 1.8%;
  }
  .mega-types__item:nth-child(n+9) {
    display: none;
  }
  .mega-types--clearance .mega-types__link {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 60em) {
  .mega-menu {
    overflow: hidden;
    perspective: 1000px;
  }
  .mega-menu .wrapper {
    border-bottom-width: 40px;
    border-top-width: 24px;
    position: relative;
    z-index: 10;
  }
  :root .mega-menu .button {
    text-transform: none;
  }
  .mega-menu__drawer {
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease;
  }
  .mega-menu:not(.is-active) .mega-menu__drawer {
    transform: translate3d(0, -100%, 0);
  }
  .mega-menu__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #e1e7ed;
    transform: scale3d(1, 1, 1);
    transform-origin: 0 0 0;
    transition: transform 0.4s ease;
    z-index: 5;
  }
  .mega-menu__body.will-remove {
    pointer-events: none;
  }
  .mega-menu__body + .mega-menu__body {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .mega-menu .transify {
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translate3d(0, 0, 0);
  }
  .mega-menu .transify.will-appear, .mega-menu .transify.will-remove {
    opacity: 0;
  }
  .mega-menu .transify.will-appear--ltr {
    transform: translate3d(-40px, 0, 0);
  }
  .mega-menu .transify.will-remove--ltr {
    transform: translate3d(40px, 0, 0);
  }
  .mega-menu .transify.will-appear--rtl {
    transform: translate3d(40px, 0, 0);
  }
  .mega-menu .transify.will-remove--rtl {
    transform: translate3d(-40px, 0, 0);
  }
  .mega-menu .transify.will-appear--ttb {
    transform: translate3d(0, -40px, 0);
  }
  .mega-menu .transify.will-remove--ttb {
    transform: translate3d(0, 40px, 0);
  }
  .nav-bar > .mega-menu {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .mega-menu-overlay {
    position: fixed;
    top: 117px;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(30, 36, 41, 0.7);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 19;
  }
  .mega-menu-overlay:not(.is-active) {
    opacity: 0;
    pointer-events: none;
  }
  .mega-menu--clearance {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 60em) {
  .mega-menu-title {
    color: #0066cc;
    cursor: default;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1666666667;
    margin: 0 0 12px 0;
    padding: 0;
    text-transform: uppercase;
  }
  .mega-menu-title__link {
    color: inherit;
    position: relative;
    text-decoration: none;
    outline: 0 none !important;
  }
  .mega-menu-title__link::before {
    position: absolute;
    top: -2px;
    right: -3px;
    bottom: -2px;
    left: -3px;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  .mega-menu-title__link:focus-visible::before {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .mega-menu-title__link:active, .mega-menu-title__link:hover {
    color: #39a9e0;
  }
}
@media (min-width: 60em) {
  .nav-search {
    height: 100%;
    width: 100%;
    align-items: end;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .nav-search .search-widget,
  .nav-search .nav-results,
  .nav-search .nav-search-history {
    flex: 0 0 auto;
  }
  .nav-search.is-expanded {
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
  }
  .nav-search.is-expanded .search-widget {
    --search-widget--background: #fff;
    --search-widget--button-width: 48px;
    --search-widget--height: 68px;
    --search-widget--font-size: 20px;
    --search-widget--input-margin: 7.3333333333px;
    max-width: 980px;
    width: 980px;
  }
}
@media (min-width: 86.25em) {
  .nav-search .search-widget {
    max-width: 420px;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .nav-search:not(.is-expanded) .search-widget {
    --search-widget--background: #fff;
  }
  .nav-search:not(.is-expanded) .search-widget__field {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--search-widget--height);
  }
  .nav-search:not(.is-expanded) .search-widget__input {
    opacity: 0;
    pointer-events: none;
    width: 1px;
  }
  .nav-search:not(.is-expanded) .search-widget__button {
    background: #fff !important;
    color: #9fa2a5;
    margin-left: auto;
  }
  .nav-search:not(.is-expanded) .search-widget__button:hover {
    color: #39a9e0;
  }
}
@media (min-width: 60em) {
  .nav-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media (min-width: 60em) {
  .nav-results {
    border-top: 4px solid #f3f3f3;
    display: flex;
    max-width: 100%;
    padding: 16px;
  }
  .nav-results > p {
    padding: 4px 4px 8px;
  }
  .nav-results .nav-results-column {
    flex: 1 1 auto;
    margin: 12px 16px 16px;
    width: 394px;
  }
  .nav-results .nav-results-column[data-type=c] {
    flex-shrink: 2;
  }
  .nav-results .nav-results-column[data-type=b] {
    flex-shrink: 3;
  }
  .nav-results .nav-results-column[data-type=a] {
    flex-shrink: 2;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .nav-results {
    width: 980px;
  }
  .nav-results .nav-results-column[data-type=b] {
    display: none;
  }
}
@media (min-width: 75em) {
  .nav-results {
    min-width: 980px;
  }
}
@media (min-width: 60em) {
  .nav-results-column {
    display: flex;
    flex-direction: column;
  }
  .nav-results-column__title {
    border-bottom: 4px solid #e6e6e6;
    flex: 0 0 auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3125;
    padding-bottom: 12px;
    white-space: nowrap;
  }
  .nav-results-column__hits {
    flex: 1 0 auto;
    margin-top: 16px;
  }
  .nav-results-column__link {
    align-self: flex-start;
    flex: 0 0 auto;
    font-weight: 700;
    margin-top: 32px;
    text-transform: uppercase;
  }
  .nav-results-column .nav-results-product {
    margin-top: 4px;
  }
}
@media (min-width: 60em) {
  .nav-results-product-hit {
    min-height: 88px;
    padding-left: 100px;
  }
  .nav-results-product-hit::before {
    position: absolute;
    top: -2px;
    right: -3px;
    bottom: -2px;
    left: -3px;
  }
  .nav-results-product-hit__image {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
  }
  .nav-results-product-hit__stars {
    margin-top: 8px;
  }
  .nav-results-product-hit__price {
    margin-top: 4px;
  }
  .nav-results-product-hit__price > .money {
    font-weight: 700;
  }
  .nav-results-product-hit__ex-vat {
    display: inline-block;
    color: #9fa2a5;
    font-size: 13px;
    margin-left: 0.7em;
  }
  .nav-results-product-hit + .nav-results-product-hit {
    margin-top: 16px;
  }
}
@media (min-width: 60em) {
  .nav-results-category-hit {
    min-height: 36px;
    padding: 8px 8px 8px 36px;
  }
  .nav-results-category-hit::before {
    position: absolute;
    top: 2px;
    right: -3px;
    bottom: 2px;
    left: -3px;
  }
  .nav-results-category-hit .icon {
    position: absolute;
    top: 6px;
    left: 0;
    height: 24px;
    width: 24px;
    color: #c1c1c1;
  }
  .nav-results-category-hit + .nav-results-category-hit {
    margin-top: 14px;
  }
  .nav-results-category-hit + .nav-results-category-hit::after {
    position: absolute;
    top: -7px;
    left: 0;
    border-top: 1px solid #e6e6e6;
    content: "";
    pointer-events: none;
    width: 100%;
  }
}
@media (min-width: 60em) {
  .nav-results-brand-hit {
    height: 60px;
  }
  .nav-results-brand-hit::before {
    position: absolute;
    top: 4px;
    right: -3px;
    bottom: 4px;
    left: -3px;
  }
  .nav-results-brand-hit__image {
    height: 60px;
    width: 60px;
    flex: 0 0 auto;
    margin-right: 24px;
  }
  .nav-results-brand-hit__title {
    display: block;
    flex: 1 1 auto;
    width: 1px;
  }
  .nav-results-brand-hit + .nav-results-brand-hit {
    margin-top: 16px;
  }
  .nav-results-brand-hit + .nav-results-brand-hit::after {
    position: absolute;
    top: -8px;
    left: 0;
    border-top: 1px solid #e6e6e6;
    content: "";
    pointer-events: none;
    width: 100%;
  }
}
@media (min-width: 60em) {
  .nav-results-article-hit::after {
    position: absolute;
    top: -2px;
    right: -3px;
    bottom: -2px;
    left: -3px;
  }
  .nav-results-article-hit__image {
    display: none;
  }
  .nav-results-article-hit__title {
    display: block;
  }
  .nav-results-article-hit__info {
    color: #616669;
    display: block;
    font-size: 14px;
    margin-top: 4px;
  }
  .nav-results-article-hit__date {
    display: inline-block;
    font-style: italic;
    vertical-align: top;
  }
  .nav-results-article-hit__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: content-box;
    color: #fff;
    display: block;
    padding-top: 66.6666666667%;
    pointer-events: none;
  }
  .nav-results-article-hit__icon .icon {
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
    height: 32%;
    width: 32%;
    display: block;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
    transform: translate(-50%, -50%);
  }
  .nav-results-article-hit:first-child::before {
    width: 100%;
    background: #d2d6d9;
    border-radius: 4px;
    box-sizing: content-box;
    content: "";
    display: block;
    margin-bottom: 12px;
    padding-top: 66.6666666667%;
  }
  .nav-results-article-hit:first-child .nav-results-article-hit__image {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    aspect-ratio: 3/2;
    display: block;
  }
  .nav-results-article-hit + .nav-results-article-hit {
    margin-top: 32px;
  }
  .nav-results-article-hit + .nav-results-article-hit::before {
    position: absolute;
    top: -16px;
    left: 0;
    border-top: 1px solid #e6e6e6;
    content: "";
    pointer-events: none;
    width: 100%;
  }
}
@media (min-width: 60em) {
  .nav-search-history__wrapper {
    max-width: 100%;
    width: 386px;
  }
  .nav-search-history__item {
    padding: 8px 0;
  }
  .nav-search-history__item + .nav-search-history__item {
    border-top: 1px solid #e6e6e6;
  }
}
@media (min-width: 60em) {
  #main-container .wrapper > .breadcrumbs {
    margin-bottom: 8px;
    margin-top: 8px;
  }
}
@media (min-width: 60em) {
  .masthead .masthead-content {
    display: none;
  }
}
@media (min-width: 60em) {
  .masthead-banner__container {
    height: 346px;
  }
  .masthead-banner__brand {
    position: absolute;
    top: 0;
    left: 36px;
  }
  .masthead-banner__title {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1666666667;
    margin: 0;
    white-space: pre-line;
  }
  .masthead-banner__title--tyres {
    position: absolute;
    top: 30px;
    left: 40px;
  }
  .masthead-banner[data-theme=light] .masthead-banner__title, .masthead-banner[data-theme=light] .masthead-banner__tyre-select h3 {
    color: #1e2429;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  }
  .masthead-banner[data-theme=dark] .masthead-banner__title, .masthead-banner[data-theme=dark] .masthead-banner__tyre-select h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 60em) {
  .masthead-banner__tyre-select {
    position: absolute;
    bottom: 30px;
    left: 40px;
  }
  .masthead-banner__tyre-select h3 {
    font-size: 24px;
  }
  .masthead-banner__tyre-select form {
    gap: 1.5rem;
  }
}
@media (min-width: 60em) {
  .masthead-content__synopsis {
    color: #1e2429;
    flex: 1 1 30%;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1666666667;
    margin: 0 64px 0 0;
  }
  .masthead-content__description {
    flex: 1 1 70%;
    margin: 0 64px 0 0;
    white-space: pre-line;
  }
}
@media (min-width: 60em) and (max-width: 74.99em) {
  .masthead-content__synopsis, .masthead-content__description {
    margin-right: 5.3333333333vw;
  }
}
@media (min-width: 75em) {
  .masthead-content__synopsis {
    font-size: 28px;
  }
}
@media (min-width: 60em) {
  .modal-dialog .modal-dialog__body {
    max-height: 75vh;
    max-width: 94vw;
  }
}