@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

input[type='checkbox'] {
    accent-color: var(--black);
}

a {
    text-decoration: none;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background,
    var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.btn--primary {
    --is-border: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.btn--secondary {
    --is-border: var(--black);
    background: var(--black);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--light-black);
}

.btn--rounded {
    background: var(--white);
    color: var(--is-border);
    border: 2px solid var(--is-border);
}

.btn--primary.btn--rounded:hover {
    background: var(--orange);
    color: var(--white);
}

.btn--secondary.btn--rounded:hover {
    background: var(--black);
    color: var(--white);
}

.btn--full-w {
    width: 100%;
}

.globe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
}

.globe-container .globe-country {
    font-weight: 600;
}

.main-image {
    margin-top: -2rem;
    background-repeat: no-repeat;
    height: auto;
    background-color: rgba(0, 0, 0, 0.03);
    position: relative;
}

.main-image__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-image__picture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
}

.main-image__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    transition: object-position 4s;
    user-select: none;
}

.main-image .image-container {
    height: 100%;
    min-height: 330px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.main-image__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
}

.main-image__title {
    margin: unset !important;
    color: var(--white);
}

.main-image__description {
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--white);
}

.main-image__description__button {
    margin-top: 0.75rem;
}

.information-bar {
    background: #000;
    color: #fff;
    display: flex;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0.7rem 0 !important;
    justify-content: center;
    gap: 8.5rem;
    min-height: 4rem;
}

.information-bar.information-bar-without-margin {
    margin: 0;
    min-height: unset;
}

.information-bar .information-item {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.main-image:hover .main-image__img {
    object-position: center bottom;
}

.d-none {
    display: none;
}

.switch-country-body {
    background: white;
    font-size: 0.875rem;
    padding: 2rem;
}

.switch-country-body .switch-country-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.switch-country-footer .modal__submit {
    background: var(--orange);
    text-transform: uppercase;
    border: none;
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    padding: 0.99rem 5rem;
    font-size: 0.813rem;
    font-weight: 700;
}

.main-page-container {
    margin-top: 3rem;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
}

.flex-column .flex-column-item {
    display: flex;
    gap: 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
}

.flex-column-item input[type='radio'] {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--orange);
    display: grid;
    place-content: center;
}

.flex-column-item input[type='radio']::before {
    content: '';
    width: 1em;
    height: 1em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--orange);
}

.flex-column-item input[type='radio']:checked::before {
    transform: scale(1);
}

.motorcycle-select-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
}

.motorcycle-select-container .motorcycle-icon {
    width: 36px;
    cursor: pointer;
    filter: invert(100%);
}

.motorcycle-select-container .select-motorcycle-button,
.motorcycle-select-container .motorcycle-representation {
    background: var(--orange);
    color: white;
    padding: 0.45rem 0.8rem;
    cursor: pointer;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    min-width: 270px;
    justify-content: center;
    text-transform: uppercase;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background;
}

.motorcycle-select-container .motorcycle-representation {
    padding: unset !important;
}

.motorcycle-select-container .select-motorcycle-button:hover {
    background: var(--orange-dark);
}

.motorcycle-name-wrapper {
    width: -webkit-fill-available;
    white-space: nowrap;
    text-align: initial;
    overflow: hidden;
    display: inline-block;
    height: 100%;
}

.motorcycle-representation {
    height: 100%;
}

.motorcycle-representation .motorcycle-name {
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.875rem 0.75rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.motorcycle-representation .motorcycle-name span {
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
    margin: auto;
}

.motorcycle-representation span.motorcycle-name__name {
    margin-right: 1.75rem;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.motorcycle-representation .motorcycle-name .motorcycle-name__view-all {
    display: none;
}

.motorcycle-select-container .motorcycle-representation {
    background: var(--orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 195px;
    border-radius: var(--border-radius);
    color: white;
    padding: 0.6rem 0.8rem;
}

.motorcycle-select-container .remove-motorcycle {
    height: 1.5rem;
    width: 1.5rem;
    cursor: pointer;
    filter: invert(100%);
}

.moto-modal-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.moto-modal-section .modal-section-query-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.moto-modal-section .modal-section-query-form .form_input {
    border: 1px solid var(--black);
    box-shadow: 0 0 0 1px black;
}

.moto-modal-section .modal-section-query-form .form_input:focus {
    border: 1px solid var(--black);
    box-shadow: 0 0 0 1px black;
}

.moto-modal-section .modal-section-query-form .form_input:focus ~ .moto__query--result {
    box-shadow: 0 0 0 1px black;
    border-top: 1px solid black;
}

.moto-modal-section .switch-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.moto-modal-section .switch-form .motorcycle-tab {
    color: #000;
    cursor: pointer;
    border-bottom: 3px solid #e0e0e0;
    background: transparent;
    padding: 0.7rem 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.moto-modal-section .switch-form .motorcycle-tab.active {
    border-bottom: 3px solid var(--orange);
    font-weight: 600;
}

.motorcycle-tab .tab-icon {
    width: 20px;
}

.moto-modal-section .modal-section-advanced-form {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.nice-select__link {
    color: initial;
    user-select: none;
    pointer-events: none;
}

.moto-modal-section .modal-section-advanced-form .nice-select,
.moto-modal-section .modal-section-advanced-form .nice-select:hover,
.moto-modal-section .modal-section-advanced-form .nice-select .nice-select-dropdown,
.moto-modal-section .modal-section-advanced-form .nice-select .nice-select-search {
    border: 1px solid var(--black);
}

.moto-modal-section .modal-section-advanced-form .nice-select.open {
    box-shadow: 0 0 0 1px black;
}

.moto-modal-section .modal-section-advanced-form .nice-select .list li {
    color: var(--black);
}

.modal-section-advanced-form .select-flex-wrapper {
    display: flex;
    gap: 1rem;
}

.modal-section-advanced-form .select-flex-wrapper .nice-select.select-is-disabled {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.moto-modal-section .moto-modal-section__bottom-section {
    margin-top: 2rem;
}

.moto-modal-section__bottom-section--two-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.moto-modal-section__subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    display: flex;
    justify-content: flex-start;
}

.moto-modal-section__subtitle > a {
    font-size: inherit;
    font-weight: inherit;
    color: currentColor;
    transition: 0.2s ease-in-out all;
}

.moto-modal-section__subtitle > a:hover {
    color: var(--orange);
}

.moto-modal-section .motorcycle-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.875rem;
}

.motorcycle-list-container .history-item-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.motorcycle-list-container .history-item-btn {
    width: 1.2rem;
    height: 1.2rem;
    background: url('../svg/plus-circle.svg') no-repeat center / cover;
    transform: translateY(-2px);
    flex-shrink: 0;
}

.motorcycle-list-container .history-item,
.moto-modal-section__garage-section .motorcycle-list-item {
    text-decoration: none;
    font-size: 1rem;
    color: var(--black);
    transition: 0.6s;
    text-align: left;
    align-self: flex-start;
}

.motorcycle-list-container .history-item:hover,
.moto-modal-section__garage-section .motorcycle-list-item:hover {
    color: var(--orange);
}

.select-flex-wrapper .nice-select {
    flex: 33.3%;
}

.text-red {
    color: var(--red) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.small__circle__loader__container .small__circle__loader {
    border-left: 0.5em solid var(--spinner-color);
    border-right: 0.5em solid var(--spinner-background-color);
    border-bottom: 0.5em solid var(--spinner-background-color);
    border-top: 0.5em solid var(--spinner-background-color);
}

a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
    display: none;
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
    display: none;
}

.color-green {
    background: green;
}

.color-red {
    background: red;
}

.main-category-container .h2__style,
.section-for-last-visited-carousel--text-center .h2__style {
    text-align: center;
}

.category-gap-section--title-center .h2__style {
    text-align: left;
}

.h1__style,
.h1__style [data-title-replace] {
    font-size: 2.4rem;
    font-weight: 1000;
    line-height: 1.9rem;
    margin: 1.5rem 0 1rem 0;
}

.h1__style [data-title-replace] {
    margin: 0;
}

.h1__style--before-pseudotext::before {
    content: attr(data-content-after);
    display: block;
    color: var(--orange);
    line-height: 110%;
    margin-bottom: 0.8rem;
}

.h1__style--before-pseudotext::first-letter {
    text-transform: capitalize;
}

.h2__style {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

.opacity5 {
    opacity: 0.5;
}

.is__inverted {
    filter: invert(100%);
}

.hidden {
    display: none !important;
}

.not__visible {
    display: none;
}

.auto__width {
    width: auto;
}

.is-not-visible {
    opacity: 0;
}

.is-visible {
    opacity: 1;
    transition: opacity 0.5s linear;
}

picture {
    width: 100%;
}

body,
html,
* {
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 300;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-transform: none;
}

html,
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

small {
    font-size: 0.8rem;
}

input {
    font-size: 16px;
}

input,
select,
textarea,
button {
    outline: none;
}

#salesmanagoIframe {
    height: 235px;
    margin: 0;
    padding: 0;
    border: none;
    background-color: #333333;
}

footer {
    margin-top: auto;
}

button {
    border: none;
    cursor: pointer;
    background: transparent;
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
}

table {
    border-spacing: 0;
}

b {
    font-weight: bold;
}

main {
    margin-top: 2rem;
    margin-bottom: var(--main-margin-bottom);
}

input::placeholder,
textarea::placeholder {
    color: #bfbfbf;
}

label[for] {
    cursor: pointer;
}

.flex__1 {
    flex: 1;
}

.justify__content--center {
    justify-content: center !important;
}

.text-dark {
    color: var(--text-dark);
}

.text-green {
    color: var(--text-green);
}

.text-muted {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.text-white {
    color: var(--white);
}

.bg-white {
    background: white;
}

.bg-grey {
    background: var(--background);
}

.bg-green {
    background: var(--green);
}

.w-100 {
    width: 100%;
}

.text-right {
    text-align: right;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-0 {
    margin-top: 0 !important;
}

.breadcrumb {
    margin-top: -1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem 0.75rem;
}

.breadcrumb .breadcrumb__item {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 1.125rem;
}

.breadcrumb .breadcrumb__link {
    display: flex;
    align-items: center;
}

.breadcrumb .breadcrumb__link span,
.breadcrumb .breadcrumb__child-wrapper .child__item {
    text-decoration: none;
    color: var(--font-light-grey);
    font-size: 0.875rem;
    display: flex;
}

.breadcrumb .breadcrumb__child-wrapper .child__item {
    white-space: nowrap;
    padding: 0.125rem 0;
}

.breadcrumb .breadcrumb__item:hover .breadcrumb__link span,
.breadcrumb .breadcrumb__child-wrapper .child__item:hover {
    color: var(--orange);
}

.breadcrumb .breadcrumb__item:not(:last-of-type)::after {
    content: '>';
    color: var(--font-light-grey);
    font-weight: 400;
    line-height: 100%;
    margin-left: 0.75rem;
    height: 10px;
    width: 10px;
    pointer-events: none;
    position: absolute;
    right: -18px;
    top: -1px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb .breadcrumb__child {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.5rem;
    z-index: 1;
}

.breadcrumb .breadcrumb__item--has-children .breadcrumb__link:hover + .breadcrumb__child {
    display: block;
}

.breadcrumb .breadcrumb__item--has-children .breadcrumb__child:hover {
    display: block;
}

.breadcrumb .breadcrumb__child-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--white);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
}

.is__orange {
    background: var(--orange) !important;
}

.modal {
    --duration: 0.25s;
    --delay: var(--duration);
    position: fixed;
    z-index: -99;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: var(--duration) linear opacity, 0s var(--delay) visibility, 0s var(--delay) z-index;
}

.modal--visible {
    opacity: 1;
    visibility: visible;
    z-index: 1050;
    transition: var(--duration) linear opacity;
}

.modal .modal__container {
    max-width: 700px;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    margin: 4rem auto;
}

.modal .modal__container form {
    background: #fff;
}

.select-motorcycle-root-modal {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
}

.select-motorcycle-root-modal:has(.modal-section-advanced-form .nice-select.open) {
    min-height: 510px;
}

.select-motorcycle-root-modal .modal__body {
    overflow-x: hidden;
}

.modal .modal__container .modal__header,
.modal .modal__container .modal__body,
.modal .modal__container .modal__footer {
    padding: 1rem 2rem;
    background: white;
}

.modal .modal__container div[data-error-message] {
    background: white;
    justify-content: center;
    display: flex;
}

.modal .modal__container .modal__footer {
    text-align: center;
}

.modal .modal__container .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .modal__container .info__modal__header {
    padding: 1.2rem 2rem;
    background: #f3f4f3;
}

.modal .modal__container .info__modal__header h3 {
    font-weight: 600;
    font-size: 1.4rem;
}

.modal .modal__container .info__modal__header--remind-add-opinion h3 span {
    font-size: 1.5em;
    font-weight: inherit;
    line-height: inherit;
}

.modal .modal__container .info__modal__body {
    background: white;
    font-size: 0.875rem;
    padding: 2rem;
}

.modal .modal__container .info__modal__body.small-padding-modal-body {
    padding: 0 2rem !important;
}

.modal .modal__container .modal__header .modal__closer,
.modal__closer {
    border: none;
    background: transparent;
    cursor: pointer;
}

.modal .modal__container .info__modal__body.small-padding-modal-body .form_row-input-label:first-child {
    margin-top: 0;
}

.modal .modal__container .info__modal__footer {
    text-align: center;
    background: white;
    display: flex;
    justify-content: center;
    width: 100%;
}

.modal .modal__container .modal__footer .modal__submit {
    background: #383838;
    text-transform: uppercase;
    border: none;
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    padding: 1.25rem 1.5rem;
    font-size: 0.813rem;
    font-weight: 700;
}

.alert {
    position: relative;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 1rem;
}

.alert-danger {
    color: #d0021b;
}

.alert-success {
    color: var(--text-green);
}

.alert__dark {
    background: #000;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 1rem;
}

.alert__dark--left {
    text-align: left;
}

.alert__dark a {
    color: white;
    font-size: 0.875rem;
    text-decoration: underline;
}

.new-step_btn,
.save-promotional-code {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: var(--orange);
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: var(--button-orange-size);
    font-weight: var(--button-orange-weight);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background;
}

.new-step_btn:hover,
.save-promotional-code:hover {
    background: var(--orange-dark);
}

.menu__item--items .item__login {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    gap: 0.5rem;
}

.item__login span {
    position: relative;
    top: 2px;
    font-size: 0.9rem;
}

.menu__item--back .menu__arrow {
    font-size: 1.5rem;
    font-weight: 1000;
}

.desktop_clear--input--fulltext {
    position: absolute;
    width: 24px;
    right: 43px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 310;
}

.desktop__hidden {
    display: none !important;
}

.button {
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    padding: 1rem 1.3rem;
    text-transform: uppercase;
    text-decoration: none;
}

.button_small {
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    padding: 0.5rem 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
}

.button_rounded {
    border-radius: 3px;
}

.button_filled_orange {
    background: var(--orange);
    color: var(--white) !important;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background;
}

.button_filled_orange:hover {
    background: var(--orange-dark);
}

.advanced-motorcycle-button {
    width: 50%;
    margin: 0 auto;
}

.button_filled_black {
    background-color: var(--black);
    color: var(--white) !important;
}

.button_frame_orange {
    border: 1px solid var(--orange);
    color: var(--orange);
}

.button_frame_black {
    border: 1px solid var(--black);
    color: var(--black);
}

.grey-image--background::after {
    background-color: rgba(0, 0, 0, 0.03);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.product__modal--body .product__modal--header {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.875rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    line-height: 100%;
}

.product__modal--body .product__modal--header-ico {
    height: 1.5rem;
    width: 1.5rem;
    align-self: center;
    object-fit: contain;
    object-position: center;
}

.product__modal--body .product__details--left .product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0 2rem 0;
}

.product__modal--body .product__details--left .product-header .modal__closer {
    display: flex;
}

.product__modal--body .modal__closer--xs {
    display: none;
}

.product__modal--body .product__details--left {
    display: flex;
    flex-direction: column;
}

.product__details--left .product__details--content {
    display: flex;
    justify-content: start;
    gap: 2rem;
    align-items: flex-start;
}

.product__details--content .details__img {
    width: 15rem;
    max-height: 15rem;
    object-fit: contain;
    object-position: center;
}

.product__details--content .price__details {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-self: center;
}

.price__details .product__name {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.price__details .product__info {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    line-height: 1.25rem;
}

.price__details .product__info--bold {
    margin-top: 1rem;
    font-weight: 700;
}

.product__modal--body .delivery__info {
    border: 1px solid #d0021b;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
}

.price__details .delivery__info p {
    font-size: 0.75rem;
}

.product__details--left .product__details--footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 2rem;
    flex-direction: column;
}

.product__details--footer .dark__text,
.product__details--footer .choose-container {
    display: flex;
    justify-content: space-between;
}

.product__details--footer .choose-container {
    gap: 1rem;
}

.product__details--footer .footer__delivery {
    color: var(--green);
    font-weight: 600;
    font-size: 0.875rem;
}

.product__details--footer .button__cart {
    color: white;
    background: var(--orange);
    padding: 0.99rem 1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    width: 50%;
    font-size: var(--button-orange-size);
    height: 49px;
}

.product__details--footer .dark__text {
    font-size: 0.875rem;
}

.product__details--footer .button__continue {
    color: #000;
    background: transparent;
    padding: 0.99rem 1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #000;
    width: 50%;
    font-size: var(--button-orange-size);
    height: 49px;
}

.modal-need-it {
    margin: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-need-it__tab-button {
    background: transparent;
    color: #000;
    border: 1px solid var(--orange);
    transition: 0.3s ease-in-out all;
    padding: 0.8rem;
    font-size: 0.875rem;
    line-height: 100%;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #000;
    border-radius: var(--border-radius);
}

.modal-need-it .swiper--modal-need-it-tabs {
    width: 100%;
}

.modal-need-it .swiper--modal-need-it-tabs .swiper-slide {
    width: auto;
    display: flex;
    padding-bottom: 2px;
}

.modal-need-it .swiper--modal-need-it-tabs .swiper-scrollbar {
    position: static;
    margin-top: 0.5rem;
}

.modal-need-it__tab-button--active {
    background: var(--orange);
    color: white;
    border: 1px solid var(--orange);
}

.modal-need-it .swiper--modal-need-it {
    width: 100%;
    display: none;
}

.modal-need-it .swiper--modal-need-it--active {
    display: block;
}

.choice_extended_label.button__continue {
    font-size: var(--button-orange-size);
    text-transform: uppercase;
    font-weight: 500;
    background: #000;
    color: white;
    border-radius: var(--border-radius);
}

.product__modal--body .section-separator {
    border-top: 1px solid #f0f0f0;
    height: 1px;
    border-bottom: none;
    margin: 0 -4rem 0 -2rem;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #555;
}

::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.add-to-basket {
    background: var(--white);
    color: var(--orange);
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid var(--orange);
    border-radius: var(--border-radius);
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background,
    var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.add-to-basket:hover {
    background: var(--orange);
    color: var(--white);
}

.add-to-basket.is-added-to-basket {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.product__bottom--container .grid__container--price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__bottom--container .grid__container--price div {
    display: flex;
    gap: 0.4rem;
}

textarea {
    resize: none;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.w-50 {
    width: 50%;
}

.choice_extended_input:checked + label {
    border-color: var(--orange);
}

.choice_extended_label {
    display: flex;
    padding: 1.1rem 1rem;
    border: solid 1px #f0f0f0;
    justify-content: space-between;
    position: relative;
    top: 0;
    width: 100%;
    cursor: pointer;
    font-size: 0.8rem;
    gap: 1rem;
    border-radius: var(--border-radius);
}

.choice_extended_label .image-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.choice_extended_label_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choice_extended_label img {
    min-height: 20px;
    max-height: 30px;
    width: auto;
}

.choice_extended_label_header {
    line-height: 2rem;
    font-size: 1.1em;
    font-weight: 400;
}

.choice_extended_label_help {
    font-size: 0.8rem;
    line-height: 1rem;
}

.choice_extended_label_row {
    position: relative;
}

.choice_extended_label_row .textWithoutRegister {
    margin-top: 1rem;
}

.choice_extended_input.--is-active + label {
    font-weight: bold;
}

.choice_extended_input:hover,
.choice_extended_input.--is-active {
    background: transparent;
}

.choice_extended_input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: absolute;
    background: transparent;
    top: 0;
    width: 1px;
    height: 1px;
}

.input_error,
.input_error:focus,
.input_error:active {
    border: 1px solid #ce2e22 !important;
}

span.err {
    position: absolute;
    top: -16px;
    color: #ce2e22;
    font-size: 13px;
    line-height: 100%;
    display: block;
    text-align: center;
    width: 100%;
    z-index: 1;
    transition: 0.6s;
}

.input__validation__label {
    position: relative;
    display: inline-block;
    width: 100%;
}

.text-center {
    text-align: center !important;
    justify-content: center !important;
}

.no__events {
    pointer-events: none;
}

.user-select-none {
    user-select: none;
}

.product__basket__button {
    background: var(--white);
    border: none;
    height: 36px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    font-weight: 300;
    padding: 0 0.95rem;
}

.product__basket__button--dec {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.product__basket__button--inc {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.product__basket__input {
    border: none;
    font-size: 1rem;
    width: 64px;
    height: 36px;
    text-align: center;
    display: inline-block;
}

.product__basket__input:active,
.product__basket__input:focus,
.product__basket__input:focus-visible {
    border: none;
}

.input__validation__label:hover span.err,
.input__validation__label:focus span.err,
.input__validation__label:active span.err {
    display: none;
    transition: 0.6s;
}

.is__bold {
    font-weight: 700;
}

.cookies {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid #dedede;
    z-index: 150;
    width: 100%;
    padding: 2rem 0.5rem;
}

.cookies .content {
    line-height: 24px;
    display: flex;
    overflow-y: scroll;
    max-height: 50vw;
}

.cookies .content .column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cookies .close__cookies {
    margin-top: 2rem;
}

.last-30-days-price {
    font-size: 0.75rem;
    margin-top: -0.3rem;
}

.products__list .last-30-days-price {
    margin-top: unset;
    margin-bottom: 0.25rem;
}

.last-30-days-price--price {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.product__img {
    position: relative;
}

@media only screen and (max-width: 990px) {
    .motorcycle-parts-wrapper {
        display: none;
    }

    #salesmanagoIframe {
        height: 365px;
    }
}

@media only screen and (max-width: 757px) {
    .product__modal--body .product__modal--header {
        font-size: 1.3rem;
    }

    .product__modal--body .product__modal--header-ico {
        width: 1.375rem;
        height: 1.375rem;
    }

    .product__modal--body .product__details--left .product-header {
        font-size: 1.3rem;
        margin: 0 0 1rem 0;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 1rem;
    }

    .product__modal--body .product__details--left {
        position: relative;
    }

    .product__modal--body .modal__closer--xs {
        display: inline;
        position: absolute;
        right: 10px;
        top: 3px;
        background: white;
    }

    .breadcrumb__item:hover .breadcrumb__child {
        display: flex;
    }

    .product__details--left .product__details--content {
        align-items: start;
        gap: 1rem;
    }

    .product__details--content .details__img {
        width: 9rem;
        max-height: 10rem;
    }
}

@media only screen and (max-width: 575px) {
    .cookies .content {
        flex-wrap: wrap;
    }

    .desktop__hidden {
        display: block !important;
    }

    .mobile__hidden {
        display: none !important;
    }

    .megamenu .product__price,
    .product__grid .product__price {
        font-size: 1.2rem !important;
    }

    .h2__style {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 900;
        line-height: 2rem;
    }

    .product__details--footer .footer__delivery {
        margin-bottom: 0.5em;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .price__details {
        height: 100%;
        justify-content: center;
    }

    .product__name {
        margin-bottom: unset;
    }
}

@media screen and (max-width: 500px) {
    .product__details--footer .dark__text,
    .product__details--footer .choose-container {
        flex-direction: column-reverse;
    }

    .product__details--footer .button__cart,
    .product__details--footer .button__continue {
        width: 100%;
    }

    .product__details--content .details__img {
        width: 7rem;
        max-height: 10rem;
    }

    .product__info,
    .product__info--bold {
        display: none;
    }

    .product__name {
        margin-bottom: unset;
    }

    .product__details--left .product__details--content {
        align-items: start;
        gap: 0.5rem;
    }
}

.small__circle__loader__container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.small__circle__loader,
.small__circle__loader:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}

.small__circle__loader {
    font-size: 8px;
    position: relative;
    text-indent: -9999em;
    border-top: 0.5em solid #fff;
    border-right: 0.5em solid #fff;
    border-bottom: 0.5em solid #fff;
    border-left: 0.5em solid rgba(240, 240, 240, 0.6);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.ref-lang-wrapper::after {
    content: url('/assets/svg/chevron-down.svg');
    position: relative;
    right: -8px;
    cursor: pointer;
}

.ref-lang-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-menu .category-wrapper .children-container {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    z-index: 3;
    background: #fafafa;
    display: none;
    flex-direction: column;
    gap: 1.125rem;
    padding: 2rem 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: 0.6s;
}

/*  */
.megamenu {
    display: grid;
    grid-template-columns: auto repeat(3, minmax(0, 1fr));
    padding: 0 0.8rem;
}

.megamenu__subsection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    justify-self: center;
}

.megamenu__subsection:first-of-type {
    padding-left: unset;
}

.megamenu__subsection:last-of-type {
    padding-right: unset;
}

.megamenu__subtitle {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 110%;
}

.megamenu__main-items-list {
    display: grid;
    gap: 0.75rem 0;
    height: min-content;
}

.megamenu__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.megamenu__list-link {
    font-size: 1rem;
    color: var(--black);
    line-height: 110%;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.megamenu__list-link:hover {
    color: var(--orange);
}

.megamenu__product {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-width: 240px;
}

.megamenu__product-img-link {
    display: flex;
}

.megamenu__product-image {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: contain;
    object-position: center;
}

.megamenu__product-name {
    line-height: 1.55rem;
    text-align: left;
    font-size: 1rem;
    text-decoration: none;
    color: var(--black);
    margin-top: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.manufacturers-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.manufacturers-menu__subsection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manufacturers-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manufacturers-menu__list li {
    display: flex;
}

.driving-styles-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1.25rem;
}

.motorcycles-megamenu {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1.25rem;
}

.megamenu-box-link {
    border: 2px solid var(--black);
    padding: 1.4rem 0.5rem;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    color: var(--black);
    font-size: 1rem;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background,
    var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.megamenu-box-link:hover {
    background: var(--black);
    color: var(--white);
}

@media only screen and (min-width: 1024px) {
    .driving-styles-menu {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1200px) {
    .megamenu__main-items-list {
        grid-template-columns: repeat(2, auto);
    }

    .megamenu__main-items-list .megamenu__list:not(:last-of-type) {
        padding-right: 2rem;
    }
}

@media only screen and (min-width: 1520px) {
    .manufacturers-menu {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .driving-styles-menu {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .motorcycles-megamenu {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

/*  */
.category-wrapper:hover .children-container {
    display: flex;
    transition: 0.8s;
}

.category-wrapper:hover > a.main-menu__item {
    color: var(--orange);
}

.ref-lang-item {
    gap: 0.3rem;
    background: white;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    justify-content: start;
    align-items: center;
}

.ref-lang-wrapper .ref-lang-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.ref-lang-flag {
    width: 25px;
    border: 1px solid #eee;
    aspect-ratio: 16/11;
}

.ref-lang-item span,
.ref-lang-button span {
    color: #000;
}

.ref-lang-content .ref-lang-item {
    color: #000;
    display: flex;
}

.ref-lang-wrapper .ref-lang-button {
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    margin: 0; /* Important for vertical align on mobile phones */
}

.ref-lang-content .title {
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.ref-lang-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    gap: 5.3rem;
    top: 18px;
    min-width: 200px;
    justify-content: space-between;
    line-height: 1.4rem;
    max-height: 90vh;
    overflow-x: hidden;
}

.ref-lang-content .left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem 4rem 1.5rem 2rem;
    height: 100%;
}

.position__relative {
    position: relative;
}

.is__block__form {
    pointer-events: none;
    opacity: 0.9;
}

.moto__query--result {
    position: absolute;
    width: 100%;
    background: white;
    z-index: 90;
    padding: 0.3rem;
    scrollbar-color: grey lightgrey;
    scrollbar-width: thin;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    border-left: 1px solid var(--black);
}

.swiper-slide {
    height: auto !important;
}

.search-input-container .search__result__container--desktop {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    margin: auto;
}

.suggest-container {
    background: var(--white);
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 2fr 7fr;
    gap: 3rem;
    max-height: calc(100vh - 10rem);
    overflow-x: hidden;
}

.suggest-container .suggest-column-left {
    display: flex;
    flex-direction: column;
}

.suggest-container .suggest-column-right {
    display: flex;
    flex-direction: column;
}

.suggest-container .products-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.suggest-container .product {
    justify-content: start;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.3rem 0;
    flex-direction: column;
}

.suggest-container .product .product-image {
    width: 100%;
    display: flex;
    object-fit: contain;
    aspect-ratio: 16/11;
    object-position: center;
    background: white;
}

.suggest-container .product .product-name {
    color: var(--light-black);
    line-height: 130%;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.suggest-container .show-more-products {
    color: var(--orange);
    justify-content: center;
    display: flex;
    width: 100%;
    margin: 1.5rem 0 0;
    text-decoration: underline;
    text-underline-position: under;
}

.suggest-container .title {
    font-size: 1.3125rem;
    line-height: 110%;
    font-weight: 500;
    color: var(--black);
    margin: 2rem 0 1rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.suggest-container .suggest-column-left .column-item:first-of-type .title,
.suggest-container .suggest-column-right .title:first-of-type {
    margin-top: 0;
}

.suggest-container .column-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0;
}

.suggest-container .item {
    text-decoration: none;
    color: var(--light-black);
    cursor: pointer;
    font-size: 1rem;
    transition: 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.suggest-container__price-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.4rem;
    margin-bottom: 0.5rem;
}

.product__img-link {
    margin-bottom: 1rem;
}

.suggest-container__price {
    font-size: 1.4rem;
    line-height: 100%;
    font-weight: 600;
}

.suggest-container__price.promotion s {
    font-size: 0.9rem;
    line-height: 100%;
    text-decoration: none;
}

.easy__result__container--js {
    min-width: 360px;
}

.product__result__item {
    justify-content: start;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    padding: 0.3rem 0;
}

.product__result__item:not(:last-child) {
    border-bottom: solid 1px #e0e0e0;
}

.product__result__item .product__result__img {
    background: white;
    object-position: center;
    object-fit: contain;
    aspect-ratio: 16/9;
    height: 45px;
}

.product__result__item picture {
    width: auto;
}

.product__result__item .product__text__item {
    color: black;
    font-size: 0.85rem;
}

.product__result__item--show__more {
    justify-content: center;
    padding: 0.5rem;
    color: black;
    font-size: 0.75rem;
}

.modal .modal__container .confirm__modal__body {
    background: white;
    font-size: 0.875rem;
    padding: 2rem 2.5rem;
}

.modal .modal__container .confirm__modal__footer {
    text-align: center;
    background: white;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.modal .modal__container .modal__footer.confirm__modal__footer .accept--js {
    background: var(--orange);
}

.no__border--bottom {
    border-radius: 5px 5px 0 0 !important;
}

.no__border--hover {
    border: none;
}

.header-icons .lang__switcher,
.menu__item--items .lang__switcher {
    background: transparent;
    color: var(--black);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
}

.header-icons .lang__switcher::after {
    border: none;
}

.menu__item--items .lang__switcher::after {
    border-bottom: 2px solid black;
    border-right: 2px solid black;
}

.header-icons .lang__switcher .nice-select-dropdown {
    color: black;
}

.lang__switcher .current {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.lang__switcher .current img {
    width: 24px;
}

.mobile__menu--background {
    position: fixed;
    width: 100%;
    height: 100%;
    min-height: var(--vh, 100vh);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 150;
    display: none;
}

.mobile__menu--background .mobile__menu--header-wrapper {
    display: flex;
}

.mobile__menu--background--visible {
    display: block;
    backdrop-filter: blur(10px);
}

.d-flex {
    display: flex !important;
}

.space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

header.scroll-up {
    transform: translateY(0);
}

header.scroll-down {
    transform: translateY(-100%);
}

.empty__star--ico {
    width: 13px;
}

.styles__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 3.5rem 0 3rem 0;
}

@media only screen and (min-width: 576px) {
    .styles__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 768px) {
    .styles__container {
        gap: 1rem;
    }

    .main-page-container {
        margin-top: 5rem;
    }
}

@media only screen and (min-width: 1024px) {
    .styles__container {
        grid-template-columns: repeat(4, 1fr);
    }

    .moto-modal-section__bottom-section--two-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .main-image .image-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media only screen and (min-width: 1520px) {
    .search-input-container .search__result__container--desktop {
        max-width: 1300px;
    }

    .styles__container {
        grid-template-columns: repeat(6, 1fr);
        margin: 3.5rem 0 3rem 0;
    }

    .motorcycle-select-container .select-motorcycle-button,
    .motorcycle-select-container .motorcycle-representation {
        min-width: 340px;
    }
}

.motorcycles {
    margin: 2rem 0;
}

.styles__container .banner__item,
.banner__container .banner__item {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-decoration: none;
    position: relative;
}

.styles__container .banner__item:nth-child(3) img,
.banner__container .banner__item:nth-child(3) img {
    object-position: left center;
}

.styles__container .banner__item:nth-child(4) img,
.banner__container .banner__item:nth-child(4) img {
    object-position: 25% center;
}

.styles__container .banner__item:nth-child(10) img,
.banner__container .banner__item:nth-child(10) img {
    object-position: 27% center;
}

.styles__container .banner__item:nth-child(11) img,
.banner__container .banner__item:nth-child(11) img {
    object-position: 38% center;
}

.styles__container .banner__item:nth-child(12) img,
.banner__container .banner__item:nth-child(12) img {
    object-position: 63% center;
}

.banner__item .banner__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-position: center center;
    object-fit: cover;
}

.banner__item .banner__title {
    font-size: 1.125rem;
    line-height: 100%;
    font-weight: bold;
    position: absolute;
    color: white;
    text-shadow: 2px 2px #000;
    bottom: 10px;
    left: 10px;
    padding-right: 10px;
}

@media only screen and (min-width: 768px) {
    .banner__item .banner__title {
        font-size: 1.25rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner__item .banner__title {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 1520px) {
    .banner__item .banner__title {
        font-size: 1.25rem;
    }
}

.banner__item .banner__subtitle {
    font-size: 0.938rem;
    margin: 0 0 0.8rem 0;
    font-weight: 300;
    height: 34px;
    max-height: 34px;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.mobile-wrapper .header__item-logo-menu {
    align-items: center;
}

span[data-show-password-controller] {
    position: absolute;
    right: 10px;
    color: #bebebe;
    font-size: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.modal__body .button-refresh-modal {
    padding: 0.8rem;
    text-align: center;
}

.modal__body .btn-modal-back {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
}

.settings-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

@media only screen and (max-width: 991px) {
    .settings-wrapper {
        justify-content: flex-start;
        margin-left: 2rem;
        gap: 4rem;
    }
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-1 {
    margin: 0 1rem;
}

.mx-2 {
    margin: 0 2rem;
}

.mx-3 {
    margin: 0 3rem;
}

.mx-4 {
    margin: 0 4rem;
}

.mx-5 {
    margin: 0 5rem;
}

.my-1 {
    margin: 1rem 0;
}

.my-2 {
    margin: 2rem 0;
}

.my-3 {
    margin: 3rem 0;
}

.my-4 {
    margin: 4rem 0;
}

.my-5 {
    margin: 5rem 0;
}

.red-alert-info {
    margin: 1rem 0 2rem;
    line-height: 1.5rem;
    text-align: center;
    border: 4px solid var(--red);
    padding: 3rem 2rem;
    display: flex;
    border-radius: var(--border-radius);
}

.green-alert-info {
    margin: 1rem 0 2rem;
    line-height: 1.5rem;
    text-align: center;
    border: 4px solid var(--green);
    padding: 3rem 2rem;
    display: flex;
    border-radius: var(--border-radius);
}

.flex-gap--container {
    display: flex;
    flex-direction: column;
    gap: 5rem 0;
    margin-top: 1rem;
}

.product__grid .product__img {
    overflow: hidden;
    aspect-ratio: 16/11;
    background: var(--white);
    position: relative;
}

.product__grid .product__img img,
.product .product__img img {
    width: 100%;
    display: flex;
    object-fit: contain;
    aspect-ratio: 16/11;
    object-position: center;
    background: white;
}

.product__grid .product__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.product__grid .product__img .product__image--additional {
    display: none;
}

.product__grid-wrapper:hover .product__grid .product__img .product__image--additional {
    display: block;
    z-index: 1;
}

.product__grid .product__img picture {
    width: 100%;
}

.product__grid .product__id {
    color: #9b9b9b;
    font-size: 0.7rem;
    margin: 0 0 0.3rem 0;
    display: flex;
}

.megamenu .product__price,
.product__grid .product__price {
    font-size: 1.4rem;
    font-weight: 600;
}

.megamenu .product__price s,
.product__grid .product__price s {
    font-size: 0.9rem;
}

.product__grid .product__description {
    line-height: 1.55rem;
    text-align: left;
    font-size: 1rem;
    text-decoration: none;
    color: var(--black);
    margin-top: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2; /* number of lines to show */
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.product__grid .product__grid__bottom {
    display: flex;
    gap: 1.3rem;
    margin-top: 1rem;
}

.product__grid .product__grid__bottom--not-available {
    align-items: end;
}

.product__grid .product__bottom--container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product__grid .percent {
    font-size: 0.875rem;
    padding: 0.4rem 0.55rem;
    display: inline-block;
    position: absolute;
    right: 1px;
    border: none;
    color: white;
    font-weight: 600;
    background: var(--orange);
}

.product__grid-wrapper {
    --transition-timing: 0.15s;
    --hover-transition: var(--transition-timing) linear all;
    transition: z-index 0s var(--transition-timing);
    position: relative;
    z-index: 0;
    height: 100%;
}

.product__grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: 100%;
}

.product__grid::before {
    content: '';
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: -1.5rem;
    left: -2rem;
    width: calc(100% + 4rem);
    height: calc(100% + 3rem);
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--black);
    transition: var(--hover-transition);
}

.product__buttons {
    position: absolute;
    top: 0;
    right: 0;
    z-index: var(--z-index-product-gallery-buttons);
    display: flex;
    flex-direction: column;
}

.product__params-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.product__params-container::before {
    content: '';
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: -2rem;
    width: calc(100% + 4rem);
    height: calc(100% + 1.5rem);
    background: var(--white);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border-bottom: 1px solid var(--black);
    border-left: 1px solid var(--black);
    border-right: 1px solid var(--black);
    transition: var(--hover-transition);
}

.product__params-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -31px;
    width: calc(100% + 2rem);
    height: 0.75rem;
    background: var(--white);
}

.product__params-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: var(--hover-transition);
}

.product__params-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 1rem 0 0.5rem;
}

.product__params-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product__params-group-title {
    font-size: 0.875rem;
    line-height: 100%;
    font-weight: 500;
}

.product__params-group-title::first-letter {
    text-transform: uppercase;
}

.product__params-group-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    list-style: unset;
}

.product__params-group-item {
    display: flex;
}

.product__params-group-tile {
    border-radius: var(--border-radius);
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: unset;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    line-height: 100%;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s ease-in-out all;
}

.product__params-group-tile:hover {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.product__params-list {
    display: flex;
    flex-direction: column;
    list-style: unset;
}

.product__params-item {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    border-top: 1px solid #ebebeb;
    padding: 0.375rem 0.75rem;
    line-height: 115%;
    font-size: 0.875rem;
}

.product__params-item:nth-of-type(odd) {
    background: #f6f6f6;
}

.product__params-item span {
    font-weight: 400;
    line-height: inherit;
    font-size: inherit;
}

@media only screen and (min-width: 1024px) {
    .products__grid--hover-ready .product__grid-wrapper:hover {
        z-index: 1;
        transition: z-index 0s;
    }

    .products__grid--hover-ready .product__grid-wrapper:hover .product__grid::before,
    .products__grid--hover-ready .product__grid-wrapper:hover .product__params-container::before {
        visibility: visible;
        opacity: 1;
    }

    .products__grid--hover-ready .product__grid-wrapper:hover .product__params-wrapper {
        max-height: var(--list-height, 350px);
    }
}

.vies-failed-information {
    border: 2px solid red;
    margin: 2rem 15rem;
    background: transparent;
    color: black;
    padding: 2rem;
}

@media only screen and (max-width: 1023px) {
    .product__params-container {
        display: none;
    }

    .vies-failed-information {
        margin: 0;
    }
}

.product__labels-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0.25rem;
    z-index: 2;
}

.product__grid .new,
.product .new {
    background: #333;
    color: white;
    font-weight: 600;
    padding: 0.4rem 0.5rem;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.product_tip {
    display: block;
    font-size: 0.8rem;
    width: 10rem;
    background-color: var(--orange);
    border-radius: 3px;
    color: #fff;
    padding: 0.2rem 0.5rem;
}

.border-orange {
    border: 1px solid var(--orange);
    border-radius: 3px;
}

.list__cart__button:hover {
    background-color: #eee;
}

.product_unavailable {
    font-size: 0.8rem;
    color: #d0021b;
}

.card {
    background: var(--white);
    padding: 3.5rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.card .card-header * {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
}

.geolocation-modal-body {
    background: white;
    padding: 5rem 2rem;
}

.geolocation-modal-body .option-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    z-index: 50;
    background: white;
    padding: 1rem;
    overflow: hidden;
    overflow-y: hidden;
    max-height: 200px;
    height: 200px;
    overflow-y: scroll;
    border: 1px solid black;
    border-radius: 3px;
    border-top: none;
    width: 280px;
}

.geolocation-modal-body .option-container .option-item,
.geolocation-modal-body .selected-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.geolocation-modal-body .geolocation-select {
    position: relative;
}

.geolocation-modal-body .geolocation-select .selected-item {
    height: 100%;
}

.geolocation-modal-body .selected-item {
    padding: 1rem;
    border: 1px solid black;
    border-radius: 3px;
    cursor: pointer;
    width: 280px;
}

.geolocation-modal-body .body-text {
    margin-bottom: 2rem;
}

.geolocation-modal-body .body-text p {
    line-height: 1.5rem;
}

.geolocation-modal-body .language-switcher {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.geolocation-modal-body .geolocation-submit {
    gap: 0.375rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.geolocation-modal-body .geolocation-ico-right {
    height: 27px;
    color: white;
    filter: invert(100);
    position: relative;
    top: -1px;
}

.geolocation-modal-body .selected-item .geolocation-ico-down {
    width: 15px;
    margin-left: auto;
}

.geolocation-modal-body .geolocation-ico-flag {
    width: 25px;
    border: 1px solid #eee;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center;
}

.mobile-motorcycle-information {
    text-align: center;
}

.client-manage-menu {
    background: #fff;
    border: solid 1px #e0e0e0;
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 2.25rem;
    z-index: 100;
    min-width: 270px;
    right: -0.75rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    cursor: initial;
}

.header__item-logo-menu.-account:has(.client-manage-menu:not(.hidden))::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    cursor: initial;
}

.client-manage-menu .menu-user-title {
    padding: 0.5rem 1.25rem 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-manage-menu .menu-user-title::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0.625rem;
    width: calc(100% - 1.25rem);
    height: 1px;
    background: #e0e0e0;
}

.menu-user-title-text {
    display: block;
    font-size: 0.875rem;
    line-height: 110%;
    color: var(--black);
}

.menu-user-title-text--role {
    margin-top: 0.25rem;
}

.client-manage-menu .menu-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 100%;
    background: var(--orange);
    color: var(--white);
    overflow: hidden;
    user-select: none;
}

.client-manage-menu .menu-text {
    color: var(--black);
    text-decoration: none;
    transition: 0.2s ease-in-out all;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    line-height: 110%;
    padding: 0.5rem 1.25rem;
}

.client-manage-menu .menu-text--logout {
    margin-top: 17px;
}

.client-manage-menu .menu-text--logout::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0.625rem;
    width: calc(100% - 1.25rem);
    height: 1px;
    background: #e0e0e0;
}

.client-manage-menu .menu-text:hover {
    background: var(--bg-light-grey);
}

.client-manage-menu .menu-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    object-position: center;
}

.client-manage-menu .menu-login-wrapper {
    padding: 0.5rem 1.25rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.client-manage-menu .menu-login-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0rem;
    left: 0.625rem;
    width: calc(100% - 1.25rem);
    height: 1px;
    background: #e0e0e0;
}

.client-manage-menu .menu-login-button {
    background: var(--black);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 0.99rem 1.5rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background;
}

.client-manage-menu .menu-login-button:hover {
    background: var(--light-black);
}

.new-client {
    display: flex;
}

.new-client .orange-bold-text {
    background: var(--orange);
    font-weight: 600;
    padding: 0.99rem 1.5rem;
    text-align: center;
    color: white;
    width: 100%;
    text-transform: uppercase;
    border-radius: var(--border-radius);
}

@media only screen and (max-width: 575px) {
    .geolocation-modal-body .language-switcher {
        flex-direction: column;
    }

    .geolocation-modal-body .geolocation-select,
    .geolocation-modal-body .option-container,
    .geolocation-modal-body .geolocation-submit,
    .geolocation-modal-body .selected-item {
        width: 100%;
    }

    .geolocation-modal-body .option-container {
        height: 380px;
        max-height: 380px;
    }

    .card {
        padding-left: unset;
        padding-right: unset;
    }
}

@media only screen and (min-width: 621px) {
    .motorcycle-select-container .remove-motorcycle {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0.75rem;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .motorcycle-representation:hover .motorcycle-name__view-all {
        display: flex;
    }

    .motorcycle-representation:hover .motorcycle-name__name {
        display: none;
    }
}

@media only screen and (max-width: 620px) {
    .motorcycle-select-container .motorcycle-representation:hover {
        background: initial;
    }

    .motorcycle-representation .motorcycle-name {
        padding: unset;
    }

    .motorcycle-representation span.motorcycle-name__name {
        margin-right: unset;
        overflow: initial;
        white-space: initial;
    }

    .main-image .image-container {
        flex-direction: column;
        justify-content: center;
        gap: 1.2rem;
    }

    .modal-section-advanced-form .select-flex-wrapper {
        flex-direction: column;
    }

    .motorcycle-select-container {
        background: #fff;
        padding: 1rem 0;
        display: block !important;
    }

    .mobile-wrapper2 .motorcycle-select-container {
        display: none !important;
    }

    .motorcycle-select-container.selected {
        background: var(--orange);
    }

    .motorcycle-select-container .motorcycle-representation,
    .motorcycle-select-container .select-motorcycle-button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 1rem 0 1rem 0;
        text-transform: uppercase;
    }

    .motorcycle-select-container .representation-header {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .motorcycle-select-container .motorcycle-representation {
        background: transparent;
        color: #000;
        padding: 0;
        align-items: center;
        margin: 0;
        gap: 1rem;
    }

    .motorcycle-select-container .motorcycle-mobile-representation {
        color: #000;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .motorcycle-representation .motorcycle-name {
        font-weight: 600;
        white-space: break-spaces;
        text-align: left;
        color: white;
    }

    .motorcycle-select-container .select-motorcycle-button--mobile {
        margin: 0 auto;
        width: 60%;
    }

    .motorcycle-select-container .motorcycle-representation.select-motorcycle-button {
        width: 100%;
    }

    .suggest-container {
        flex-direction: column-reverse;
        max-width: 100%;
        top: 143px;
        padding: 0 0 1rem 0;
        left: 0;
        width: 100%;
    }

    .suggest-container .product {
        padding: 0.5rem 0;
        align-items: start;
    }

    .suggest-container .products-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0;
        margin-top: 1rem;
    }

    .suggest-container .column-item {
        padding: 0 1rem;
    }

    .advanced-motorcycle-button {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .product__grid .product__description {
        font-size: 0.9rem;
    }

    .modal .modal__container {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 100%;
        min-height: 100%;
        background: white;
    }

    .h1__style,
    .h1__style [data-title-replace] {
        font-size: 2rem;
        line-height: 2.275rem !important;
    }
}

div[data-last-visited-carousel-container] {
    margin: 0 auto;
    padding: 3rem 0;
}

.carousel-detail-link {
    color: var(--orange);
    display: flex;
    margin-bottom: 2rem;
}

.is-readonly {
    background-color: #e0e0e0 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.is-label-readonly {
    background: none !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.alert-vies-information {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: #66bf84;
    color: white;
    align-items: center;
}

.alert-vies-information * {
    color: white;
    font-weight: 500;
}

.alert-vies-information.-failure {
    background-color: #c7584a;
}

.alert-vies-information.-info {
    background-color: #8c8c8c;
}

.alert-vies-information .vies-button {
    border: 1px solid white;
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.vies-form-text {
    position: relative;
    top: 20px;
    font-size: 0.8rem;
    color: gray;
    margin: 0;
}

.overflow-hidden {
    overflow: hidden !important;
}

/*  */
.product-added-modal {
    background: var(--white);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.product-added-modal__top-bar {
    padding: 1rem;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-added-modal__top-bar-title {
    font-size: 1.3125rem;
    font-weight: 600;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-added-modal__top-bar-title-icon {
    object-fit: contain;
    object-position: center;
    width: 2rem;
    height: 2rem;
}

.product-added-modal__top-bar .modal__closer {
    display: flex;
}

.product-added-modal__top-bar .modal__closer img {
    width: 1.75rem;
    height: 1.75rem;
}

.product-added-modal__content-container {
    padding: 1rem 0;
    overflow-x: hidden;
}

.product-added-modal__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 2rem;
    padding: 0 1rem;
}

.product-added-modal__product-img-wrapper {
    display: flex;
    aspect-ratio: 1/1;
    position: relative;
}

.product-added-modal__product-img-wrapper .has-free-product,
.product-added-modal__product-img-wrapper .has-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 0.4rem 0.55rem;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-added-modal__product-img-wrapper .has-free-product img,
.product-added-modal__product-img-wrapper .has-video img {
    width: 1.125rem;
    height: 1.125rem;
    aspect-ratio: 1/1;
}

.product-added-modal__product-img-wrapper::before {
    content: '';
    background: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.product-added-modal__product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
}

.product-added-modal__content-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-added-modal__product-name {
    font-size: 1.125rem;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-added-modal__product-name span {
    display: block;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.product-added-modal__item-name {
    font-size: 1rem;
    line-height: 120%;
    font-weight: 400;
    color: #222;
    display: flex;
}

.product-added-modal__item-name--price {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

.product-added-modal__item-name--delivery,
.product-added-modal__item-name--free {
    font-weight: 700;
}

.product-added-modal__item-name--delivery {
    margin-top: 1rem;
}

.product-added-modal__item-name--add-info span {
    font-size: 0.875rem;
    line-height: 120%;
    display: flex;
    padding: 0.5rem;
    border: 1px solid #d0021b;
    border-radius: var(--border-radius);
}

.product-added-modal__buttons-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.product-added-modal__buttons-list > li {
    height: 100%;
}

.product-added-modal__buttons-list .btn {
    height: 100%;
}

.product-added-modal__buttons-list .modal__submit {
    width: 100%;
}

.product-added-modal .product-added-modal__swiper-tab-wrapper {
    margin-top: 2rem;
    padding: 0 1rem;
}

.product-added-modal .swiper--modal-need-it-tabs .swiper-slide {
    width: auto;
    display: flex;
}

.product-added-modal__cat-button {
    font-size: 1rem;
    font-weight: 600;
    line-height: 100%;
    padding: 0.75rem 1.5rem;
    border-bottom: 3px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.product-added-modal__cat-button span {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 100%;
}

.product-added-modal__cat-button--active {
    border-bottom: 3px solid var(--orange);
}

.product-added-modal__swipers-wrapper {
    margin-top: 1rem;
    padding: 0 1rem;
}

.product-added-modal .swiper--modal-need-it {
    --swiper-pagination-color: var(--orange);
    display: none;
}

.product-added-modal .swiper--modal-need-it--active {
    display: block;
}

.product-added-modal .swiper--modal-need-it .swiper-button-prev,
.product-added-modal .swiper--modal-need-it .swiper-button-next {
    transition: 0.3s ease-in-out all;
}

.product-added-modal .swiper--modal-need-it .swiper-button-disabled {
    opacity: 0;
}

.product-added-modal .swiper--modal-need-it .swiper-pagination {
    display: none;
    position: static;
    margin-top: 1rem;
}

/*  */
.product-added-modal .product__grid {
    display: grid;
    grid-auto-rows: auto;
    height: 100%;
    gap: 1.5rem;
}

.product-added-modal .product__grid .product__img {
    display: flex;
}

.product-added-modal .product__grid .percent-promotion {
    font-size: 0.875rem;
    padding: 0.4rem 0.55rem;
    display: flex;
    color: white;
    font-weight: 600;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.product-added-modal .product__grid .basket-button-wrapper {
    align-self: end;
}

@media only screen and (max-width: 1023px) {
    .product-added-modal__content-wrapper {
        grid-template-columns: 1fr 4fr;
    }
}

@media only screen and (max-width: 767px) {
    .product-added-modal__content-wrapper {
        grid-template-columns: 1fr 3fr;
    }

    .product-added-modal__product-name {
        font-size: 1rem;
        line-height: 130%;
    }

    .product-added-modal__item-name {
        font-size: 0.875rem;
        line-height: 120%;
    }

    .btn {
        font-size: 0.875rem;
    }

    .red-alert-info {
        flex-direction: column;
    }
}

@media only screen and (max-width: 575px) {
    .product-added-modal__top-bar-title {
        font-size: 1.125rem;
        line-height: 100%;
        gap: 0.5rem;
    }

    .product-added-modal__top-bar-title-icon,
    .product-added-modal__top-bar .modal__closer img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .product-added-modal__content-wrapper {
        gap: 1rem;
    }

    .product-added-modal__content-info {
        justify-content: center;
    }

    .product-added-modal__cat-button {
        font-size: 0.875rem;
        line-height: 100%;
        padding: 0.5rem 1rem;
    }

    .product-added-modal__swiper-tab-wrapper {
        margin-top: 1.5rem;
    }

    .product-added-modal__product-name {
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 130%;
        margin-bottom: unset;
    }

    .product-added-modal__item-name {
        display: none;
    }

    .product-added-modal__item-name--add-info {
        display: flex;
        font-size: 0.75rem;
        line-height: 120%;
    }

    .product-added-modal .swiper--modal-need-it .swiper-pagination {
        display: block;
    }
}

@media only screen and (max-width: 500px) {
    .product-added-modal__content-info {
        gap: 0.5rem;
    }

    .product-added-modal__buttons-list {
        position: fixed;
        margin: unset;
        bottom: 0;
        left: 0;
        width: 100%;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        padding: 1rem;
        border-top: 1px solid #eeeeee;
        z-index: 10;
        background: var(--white);
    }

    .product-added-modal__content-container {
        padding-bottom: 11rem;
    }
}

@media only screen and (max-width: 500px) and (max-height: 799px) {
    .product-added-modal__content-container {
        padding-bottom: 7rem;
    }

    .product-added-modal__btn-continue-item {
        display: none;
    }
}

.swiper-button-next,
.swiper-button-prev {
    aspect-ratio: 1/1;
    background: #000;
    height: 2.5rem !important;
    width: 2.5rem !important;
    opacity: 0 !important;
    border: 1px solid #000;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem !important;
    color: var(--darkgrey) !important;
}

.swiper:hover .swiper-button-next.swiper-button-disabled,
.swiper:hover .swiper-button-prev.swiper-button-disabled {
    opacity: 0 !important;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 0.8 !important;
}

.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
    opacity: 1 !important;
    color: #fff !important;
    border-color: #fff;
}

.modal .modal__container .info__modal__header--remind-add-opinion {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.remind-add-opinion {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.remind-add-opinion__list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.remind-add-opinion__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.remind-add-opinion__item {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 5fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--black);
    border-radius: var(--border-radius);
}

.remind-add-opinion__text {
    line-height: 130%;
}

.remind-add-opinion__bold-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 100%;
}

.remind-add-opinion__img-link {
    display: flex;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    position: relative;
}

.remind-add-opinion__img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.remind-add-opinion__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.remind-add-opinion__product-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.remind-add-opinion__item-btn {
    gap: 1rem;
    padding: 0.75rem 1.5rem;
}

.remind-add-opinion__item-btn-icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--orange);
    border-radius: 999rem;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) border;
}

.remind-add-opinion__item-btn-icon-wrapper img {
    width: 1rem;
    height: 1rem;
    transition: 0 var(--btn-hover-ease) var(--btn-hover-duration) filter;
}

.remind-add-opinion__item-btn:hover .remind-add-opinion__item-btn-icon-wrapper {
    border-color: var(--white);
}

.remind-add-opinion__item-btn:hover .remind-add-opinion__item-btn-icon-wrapper img {
    filter: brightness(0) saturate(100%) invert(100%);
}

@media only screen and (min-width: 501px) {
    .remind-add-opinion {
        overflow-x: hidden;
        max-height: 80vh;
    }

    .select-motorcycle-root-modal {
        max-height: calc(100vh - 8rem);
    }
}

@media only screen and (max-width: 500px) {
    .modal .modal__container .info__modal__header,
    .modal .modal__container .info__modal__body.modal__body--parcel {
        padding: 1rem;
    }

    .modal .modal__container .info__modal__body.remind-add-opinion {
        padding: 2rem 1rem;
    }

    .modal__remind-add-opinion-wrapper {
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 399px) {
    .remind-add-opinion__item {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .remind-add-opinion__item-content {
        align-items: unset;
        gap: 2rem;
        padding: unset;
    }

    .remind-add-opinion__img-link {
        aspect-ratio: 16/9;
    }
}

@media only screen and (min-width: 1024px) {
    .product-added-modal__top-bar {
        padding: 2rem;
    }

    .product-added-modal__content-container {
        padding: 2rem 0;
    }

    .product-added-modal__content-wrapper,
    .product-added-modal__buttons-list,
    .product-added-modal__swiper-tab-wrapper,
    .product-added-modal__swipers-wrapper {
        padding: 0 2rem;
    }
}

/* Primary button hover */
.btn--p-hover {
    position: relative;
    z-index: 0;
    background: transparent !important;
    overflow: unset;
}

.btn--p-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    bottom: 0;
    right: 0;
    margin: auto;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    background: var(--orange);
    border-radius: var(--border-radius);
    z-index: -2;
    opacity: 0;
    transform: scale3d(0, 0, 0);
}

.btn--p-hover:hover::before {
    animation: anim-primary-btn-before 0.4s 0.1s forwards;
}

.btn--p-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange);
    border-radius: var(--border-radius);
    z-index: -1;
    transition: background 0.2s 0.1s ease-in-out;
}

.btn--p-hover:hover::after {
    background: var(--orange-dark);
    animation: anim-primary-btn-after 0.3s forwards;
}

@keyframes anim-primary-btn-before {
    0% {
        opacity: 0.3;
        transform: scale3d(0.6, 0.4, 1);
    }
    75% {
        transform: scale3d(1.05, 1, 1);
    }
    100% {
        opacity: 0;
    }
}

@keyframes anim-primary-btn-after {
    40% {
        transform: scale(0.96);
    }
    65% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* */
body::before {
    --duration: 0.25s;
    --delay: var(--duration);
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    z-index: -99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--duration) linear opacity, 0s var(--delay) visibility, 0s var(--delay) z-index;
}

body.blur-bg::before {
    opacity: 1;
    visibility: visible;
    z-index: 99;
    transition: var(--duration) linear opacity;
}

.product__price s,
.promotion s,
s.gross__price,
.last-30-days-price s {
    text-decoration: none;
}

.product-basket_item-price s.gross__price {
    text-decoration: line-through;
}

.sale__price,
.price,
.product__price,
.promotion__price,
.product__price .product__price--promotion,
.product__price .product__small,
.product-added-modal__item-name--price,
.last-30-days-price--price,
.order-item__price,
.order-group tbody td[data-price],
.invoice--order-value,
.gross__price,
.need-products_item-price,
.basket-summary-element.-right.-price,
.block-listing-value.-price,
.product__price.promotion__price s {
    font-family: 'Fira Sans', 'Archivo', sans-serif, serif;
}

.nice-select .nice-select-search-box {
    pointer-events: all !important;
}

.favorite-btn {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 0.625rem;
    border-radius: var(--border-radius);
    background: transparent;
    transition: 0.2s ease-in-out background;
}

.favorite-btn::before {
    content: '';
    background: url('../svg/favorite.svg') no-repeat center / contain;
    width: 1.25rem;
    height: 1.25rem;
}

.favorite-btn--saved::before {
    background: url('../svg/favorite-dark.svg') no-repeat center / contain;
}

.favorite-btn:hover {
    background: rgba(224, 224, 224, 0.5);
}

.product .gallery__main .favorite-btn::before,
.product .product-gallery .favorite-btn::before {
    width: 1.5rem;
    height: 1.5rem;
}

@media only screen and (max-width: 1023px) {
    .product .gallery__main .favorite-btn,
    .product .product-gallery .favorite-btn {
        top: unset;
        bottom: 0;
    }

    .closed-info {
        margin-top: 0;
    }
}

.form--edit-form {
    overflow-x: hidden;
    height: 100%;
}
