/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 4px;

    /** SPECIFIC **/
    --color-primary: #009FE3;
    --color-secondary: #E30613;
    --color-default: #333;
    --color-border-deafult: #ccc;
}

body {
    color: #000;
    font-family: "Lato", sans-serif;
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000;
    transition: all .2s ease-in-out;
}

a:hover, a:focus {
    color: #000;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#container-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex-grow: 1;
}

#container-page > footer {
    margin-top: auto;
    width: 100%;
}

.container {
    clear: both;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-sm {
    max-width: 1440px;
}

.container-xsm {
    max-width: 1100px;
}

.container-xs {
    max-width: 900px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-facebook {
    -webkit-mask-image: url('../images/icons/social/facebook.svg');
    mask-image: url('../images/icons/social/facebook.svg');
}

.icon-instagram {
    -webkit-mask-image: url('../images/icons/social/instagram.svg');
    mask-image: url('../images/icons/social/instagram.svg');
}

.icon-linkedin {
    -webkit-mask-image: url('../images/icons/social/linkedin.svg');
    mask-image: url('../images/icons/social/linkedin.svg');
}

.icon-twitter,
.icon-x {
    -webkit-mask-image: url('../images/icons/social/twitter.svg');
    mask-image: url('../images/icons/social/twitter.svg');
}

.icon-youtube {
    -webkit-mask-image: url('../images/icons/social/youtube.svg');
    mask-image: url('../images/icons/social/youtube.svg');
}

.icon-pinterest {
    -webkit-mask-image: url('../images/icons/social/pinterest.svg');
    mask-image: url('../images/icons/social/pinterest.svg');
}

.icon-user {
    -webkit-mask-image: url('../images/icons/user.svg');
    mask-image: url('../images/icons/user.svg');
}

.icon-register {
    -webkit-mask-image: url('../images/icons/register.svg');
    mask-image: url('../images/icons/register.svg');
}

.icon-logout {
    -webkit-mask-image: url('../images/icons/logout.svg');
    mask-image: url('../images/icons/logout.svg');
}

.icon-info {
    -webkit-mask-image: url('../images/icons/info.svg');
    mask-image: url('../images/icons/info.svg');
}


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-primary.active {
    background-color: #fff !important;
    color: var(--color-primary) !important;
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-transparent.active,
.btn-transparent.active:focus,
.btn-transparent:hover:focus,
.btn-transparent:hover:active,
.btn-transparent:focus:active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.2);
    color: #000;
}

.btn-transparent.active {
    background-color: #000 !important;
    border-color: #000;
    color: #fff !important;
}

.btn-transparent[disabled],
.btn-transparent[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.active:focus,
.btn-secondary:hover:focus,
.btn-secondary:hover:active,
.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary.active {
    background-color: #fff !important;
    color: var(--color-secondary) !important;
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.active:focus,
.btn-default:hover:focus,
.btn-default:hover:active,
.btn-default:focus:active {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    color: #000;
}


.btn-default.active {
    background-color: #fff !important;
    color: var(--color-default) !important;
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-basket {
    border-color: #000;
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-primary);
    }

    .btn-transparent:not([disabled]):hover,
    .btn-transparent:not([disabled]).active:hover {
        background-color: #000;
        border-color: #000;
        color: #fff;
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-secondary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
        color: #fff;
    }
}

/**
 * BUTTONS
 */

.btn {
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in-out;
}

.btn-xl {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    min-height: 56px;
    padding-left: calc(var(--space-25) - 5px);
    padding-right: calc(var(--space-25) + 5px);
}

.btn-lg {
    min-height: 46px;
    padding: 0 var(--space-25);
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 8px;
}

.btn-square {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.icon-wrapper,
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 1.875em;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-primary);
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}

#content {
    padding-top: 145px;
}

.header-bottom {
    background-color: var(--color-primary);
}

.header-top-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-categories {
    display: flex !important;
    gap: 20px;
}

.rwdMenu .offer-menu-list-arrow{
    display: none;
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.categories-list-wrapper {
    display: none;
}

.header-categories.active .categories-list-wrapper {
    display: block;
    min-height: 40vh;
    position: fixed;
    top: 145px;
    left: var(--container-padding);
    /*right: 0;*/
    /*overflow-y: auto;*/
    /*max-height: calc(100vh - 150px);*/
    z-index: 99;
    /*width: fit-content;*/
    /*scrollbar-width: thin;*/
    /*scrollbar-color: var(--color-default) var(--color-primary);*/
}

@media screen and (min-width: 1720px) {
    .header-categories.active .categories-list-wrapper {
        left: calc((100vw - 1643px) / 2);

    }
}

.header-categories.active .offer-menu-list {
    display: block;
}

.header-categories .offer-menu-list li {
    background-color: var(--color-primary);
}

.scroll-lock {
    position: fixed;
    width: 100%;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    background-color: #d0d0d0;
}

header.sticky .header-categories.active .offer-menu-list {
    left: 75px;
}

.header-categories .offer-menu-list li:hover > a, .header-categories .offer-menu-list li.active > a {
    background-color: var(--color-secondary);
}

.header-categories .offer-menu-list {
    pointer-events: none;
}

.offer-menu-list li {
    position: relative;
}

.offer-menu-list-arrow {
    width: 7px;
    position: absolute;
    right: calc(var(--space-25) / 2);
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    filter: invert(1);
}

.offer-menu-list-arrow .icon {
    width: 21px;
    height: 10px;
    color: #000;
    transition: color, 500ms;
    position: absolute;
    right: var(--space-25);
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.header-categories .offer-menu-list li:hover > .offer-menu-list-arrow .icon, .header-categories .offer-menu-list li.active > .offer-menu-list-arrow .icon {
    color: #000;
}

.header-categories .offer-menu-list li {
    pointer-events: auto;
}

.header-categories .offer-menu-list li a {
    min-height: 46px;
    padding: 10px var(--space-25);
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /*justify-content: flex-end;*/
}

.header-categories .offer-menu-list > li {
    width: 329px;
    position: relative;
}

.header-categories .offer-menu-list li ul > li {
    min-width: 100%;
}

.header-categories li ul {
    display: none;
    top: 0;
    position: absolute;
    left: 100%;
    min-width: 100%;
    background-color: var(--color-primary);
}

.header-categories li:hover > ul {
    display: block;
}

.header-categories.active .categories-shadow {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 98;
    bottom: 0;
    display: block;
    width: 100vw;
    height: 100%;
}


.header-bottom-contact {
    display: flex;
    align-items: center;
}

.header-bottom-contact-item + .header-bottom-contact-item {
    margin-left: calc(var(--space-50) + 5px);
}

.header-bottom-contact-item {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
}

@media screen and (min-width: 1140px) {
    .header-bottom-contact-item:hover {
        color: var(--color-secondary);
    }
}

.header-bottom-contact-item .caption {
    margin-left: 11px;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
    display: flex;
    align-items: center;
    gap: calc(var(--space-50) + var(--space-25) - 5px);
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

#main-menu li a {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s;
}

@media screen and (min-width: 1140px) {
    #main-menu li a:hover {
        color: var(--color-secondary);
    }
}

#main-menu li.active a {
    color: var(--color-secondary);
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

.main-menu-button {
    float: right;
    width: 40px;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: red;
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;
    width: 652px;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}


.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 30px;
    padding-right: 55px;
    border-right: none;
    box-shadow: none;
    border: none;
    border-radius: 8px;
    color: #929292;
    font-size: 14px;
}

.mainsearch input.form-control::placeholder {
    color: #929292;
    font-size: 14px;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    position: absolute;
    right: -1px;
    top: -1px;
    bottom: -1px;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: #fff;
    border-radius: 8px;
    padding: 14px;
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
}

.header-top .user-nav-item {
    display: flex;
    align-items: stretch;
    position: relative;
}

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    transition: all 0.4s;
}

.header-top .user-nav-item-inner:hover {
    color: #fff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.header-top .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
}

.header-top .user-nav-item + .user-nav-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-top .user-nav-item .icon {
    width: 17px;
    height: 17px;
}

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
    text-transform: uppercase;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}

.footer-bar-links a {
    color: inherit;
}

.footer-bar-links .active a {
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        color: var(--color-primary);
    }
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 5px;
    box-shadow: none;
    background-color: #fff;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: #e10121;
    border-radius: 0 5px 5px 0;
    background-color: transparent;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        border-color: var(--color-secondary);
        color: #fff;
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 5px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 20px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * PAGINATION
 */

.pagination-wrapper ul li a {
    color: #333;
    transition: color 0.4s;
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}

/**
 * ANIMATABLE ICON
 */

.loader-spin {
    margin: 0 10px;
    font-size: 3px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

.btn .loader-spin {
    margin: 0 14px;
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
        2em -2em 0 0em, 3em 0 0 -1em,
        2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
        3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em,
        2em -2em 0 0, 3em 0 0 0.2em,
        2em 2em 0 0, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
        -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
        -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
        -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}


.loader2 {
    width: 48px;
    height: 48px;
    border: 5px solid #e5e5e5;
    border-bottom-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotationLoader2 1s linear infinite;
}

@keyframes rotationLoader2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    font-size: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 13px;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 159, 227, 0.7);
    transition: opacity 0.3s;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1140px) {
    .page-list-aside .ui-widget.ui-widget-content {
        -webkit-transform: scaleY(33.3333%);
        -moz-transform: scaleY(33.3333%);
        -ms-transform: scaleY(33.3333%);
        -o-transform: scaleY(33.3333%);
        transform: scaleY(33.3333%);
    }

    .page-list-aside .ui-widget.ui-widget-content:hover,
    .page-list-aside .ui-widget.ui-widget-content:focus,
    .page-list-aside .ui-widget.ui-widget-content:focus-within {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .ui-slider .ui-slider-handle {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .ui-widget.ui-widget-content:hover .ui-slider-handle,
    .ui-widget.ui-widget-content:focus .ui-slider-handle,
    .ui-widget.ui-widget-content:focus-within .ui-slider-handle {
        opacity: 1;
    }
}

.ui-slider .ui-slider-range {
    border-radius: 0;
    background-color: var(--color-primary);
}

.ui-slider .ui-slider-handle {
    border-radius: 0;
    border: none;
    height: 13px;
    width: 13px;
    background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    left: -7px;
}

.form-range .row + .row {
    margin-top: 15px;
}

.valueFrom .input-label,
.valueFrom .price-suffix,
.valueTo .input-label,
.valueTo .price-suffix {
    display: none;
}

.valueFrom .from,
.valueTo .to {
    height: 36px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Tenor Sans', sans-serif;
    color: var(--color-primary);
}

.valueTo:before {
    content: '-';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 33px;
    line-height: 36px;
}

.form-range {
    background-color: transparent;
    border: none;
}

.ui-widget.ui-widget-content {
    border-radius: 0;
}

.form-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-range .range-row {
    width: 100%;
}

.form-range .col {
    width: 45%;
    margin-top: 10px;
}

.main-slide {
    min-height: 500px;
    /*aspect-ratio: 1920 / 730;*/
}

.main-slide-image {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.main-slide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.main-slide-image:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.45);
}

.main-slide-inner {
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: calc(var(--space-40) * 2);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(2 * var(--space-50));
}

.main-slide-right {
    position: relative;
    width: 416px;
    flex-shrink: 0;
    margin-right: calc(2 * var(--space-50));
}

.main-slide-right .shop-product-box {
    width: 100%;
}

.main-slide-left {
    flex-grow: 1;
    max-width: 885px;
}

.main-slide-left > .text {
    max-width: 705px;
}

.main-slide-title {
    font-size: clamp(25px, 2.8645vw, 55px);
    color: #fff;
    margin-bottom: calc(var(--space-40) - 4px);
}

.main-slide-title .line1 {
    font-size: clamp(45px, 7.2916vw, 140px);
    font-weight: 900;
    display: block;
}

.main-slide-title .line2 {
    display: block;
    line-height: 1.2em;
}

.main-slide-inner .text {
    color: #fff;
    margin-bottom: calc(var(--space-50) - 3px);
}

.section-title {
    font-size: 50px;
    font-weight: 900;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
    flex-wrap: wrap;
    margin-bottom: calc(var(--space-50) + 5px);
}

.section-header-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-50);
}

.heading-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-50);
}

.main-slide {
    width: 100%;
}

/*ASIDE*/

.asidedPage {
    display: flex;
    width: 100%;
    position: relative;
}

.aside {
    position: relative;
    width: 414px;
    flex-shrink: 0;
    pointer-events: auto;
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
    color: #fff;
}

.asided-content {
    position: absolute;
    top: 0;
    left: 0;
}

.aside-bg {
    background-color: #008FCC;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    width: max(calc(100% + var(--container-padding)), calc(100% + (50vw - (860px - var(--container-padding)))));
}

.aside-title {
    font-weight: 900;
    font-size: 30px;
    color: #fff;
    margin-bottom: var(--space-25);
}

.aside-menu > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menuList-group > a {
    flex-grow: 1;
    color: #fff;
    display: flex;
    align-items: center;
}

.aside-menu > ul > li > .menuList-group > a {
    padding: 10px 15px 10px 30px;
    min-height: 50px;
    font-size: 15px;
    font-weight: 700;
}

.aside-menu > ul > li.slided > .menuList-group {
    background-color: var(--color-secondary);
}

.aside-menu > ul > li.slided {
    border-color: transparent;
}

.aside-menu > ul > li.active > .menuList-group {
    background-color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .aside-menu > ul > li > .menuList-group:hover {
        background-color: var(--color-secondary);
    }
}

.aside-menu > ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .2s ease-in-out;
}

.aside-menu > ul > li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.aside-menu > ul > li > .menuList-group > a:last-child {
    padding: 10px 30px;
}

.filter-form-title {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin: var(--space-60) 0;
}

.aside-menu > ul > li > .menuList-group > .icon-wrapper {
    width: 50px;
    flex-shrink: 0;
}

.aside-menu > ul > li > ul {
    background: linear-gradient(142deg, rgba(255, 255, 255, 0.40) -17.65%, rgba(255, 255, 255, 0.06) 66.39%);
    box-shadow: 0px 4px 19.3px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.aside-menu > ul > li > ul > li > .menuList-group a {
    padding: 10px 15px 10px 50px;
    min-height: 50px;
    font-size: 14px;
    font-weight: 700;
}

.aside-menu > ul > li > ul > li > .menuList-group .icon-wrapper {
    width: 50px;
    flex-shrink: 0;
}

.aside-menu li > .menuList-group > .icon-wrapper img {
    transition: all .2s ease-in-out;
}

.aside-menu li.slided > .menuList-group > .icon-wrapper img {
    transform: scaleY(-1);
}

.aside-menu > ul > li > ul > li > .menuList-group a:last-child {
    padding: 10px 50px;
}

.aside-menu > ul > li > ul > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.aside-menu li:not(.active) ul {
    display: none;
}

.aside-menu a {
    text-transform: uppercase;
    color: #fff;
}

.aside-menu .menuList-group {
    display: flex;
    justify-content: space-between;
    transition: all .2s ease-in-out;
}

.aside-menu ul li {
    width: 100%;
    position: relative;
}

.asidedPage-content {
    flex-grow: 1;
    padding-left: calc(3 * var(--space-50) - 10px);
}

.page-title.text-left {
    text-align: left;
}

.arrows {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 3px);
    pointer-events: none;
}

.btn-arrow {
    pointer-events: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    background-color: transparent;
    border: none;
    color: #000;
    transition: all .2s ease-in-out;
    padding: 0;
}

@media screen and (min-width: 1140px) {
    .btn-arrow:hover {
        color: var(--color-primary);
    }
}

.main-slide-right .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-1 * var(--space-60));
    right: calc(-1 * var(--space-60));
    justify-content: space-between;
}

.main-slide-right .btn-arrow {
    width: 16px;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .main-slide-right .btn-arrow:hover {
        color: var(--color-primary);
    }
}

.main-slide-right .btn-arrow svg {
    width: 100%;
}

.swiper-slide.shop-product-box {
    height: unset;
}

.main-slide-right .product-container {
    border: none;
}

.btn-arrow.swiper-button-disabled {
    opacity: 0.5;
}

.section-discountGroup {
    margin: var(--space-60) 0;
}

.heading-buttons > .btn-discount {
    color: #000;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
}

.heading-buttons > .btn-discount:before {
    content: attr(data-name);
    display: block;
    font-weight: 900;
    height: 0;
    overflow: hidden;
}

.heading-buttons > .btn-discount.active {
    font-weight: 900;
}

@media screen and (min-width: 1140px) {
    .heading-buttons > .btn-discount:hover {
        font-weight: 900;
    }
}

.product-slider-discount:not(.active) {
    display: none;
}

.page-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-25);
    margin-bottom: var(--space-50);
}

.page-title {
    font-size: calc(var(--font-48) + 2px);
    text-align: center;
    color: #000;
    font-weight: 900;
}

.text h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.text + .gallery {
    margin-top: calc(var(--space-60) + var(--space-25));
}

.about-text {
    margin-top: calc(var(--space-40) * 2 + 10px);
    margin-bottom: calc(var(--space-40) * 2 + 10px);
}

.product-page-photo {
    position: relative;
    width: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-page-top-right {
    width: 50%;
    padding-left: calc(var(--space-60) + 10px);
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.product-page-top {
    margin-bottom: var(--space-60);
}

.product-page-top-inner {
    display: flex;
}

.product-slider-top-wrapper {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.product-slider-top-wrapper .product-slide {
    padding: 15px;
}

.product-slide-inner,
.product-slider-top-wrapper .product-slide,
.product-slider-top-wrapper .product-slide .product-slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.product-nav-slider-wrapper {
    width: calc(100% + 10px);
    margin: 0 -5px;
}

.product-nav-slider .product-slide {
    padding: 0 5px;
    width: 25%;
}

.product-slide-inner {
    aspect-ratio: 1;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 15px;
    transition: all .2s linear;
    cursor: pointer;
}

.swiper-slide-thumb-active .product-slide-inner {
    border-color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .product-slide-inner:hover {
        border-color: var(--color-primary);
    }
}

.product-page-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.5333em;
}

.product-tabs-heading {
    background-color: #F3F3F3;
}

.product-tabs-heading-inner {
    padding: 19px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-40) calc(var(--space-60) + 10px);
}

.product-tabs-heading-inner:before,
.product-tabs-heading-inner:after {
    content: none;
}

.product-tab-btn {
    position: relative;
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    transition: all .2s ease-in-out;
}

.product-tab-btn + .product-tab-btn:before{
    content: "";
    position: absolute;
    top: 50%;
    left: calc((var(--space-60) + 10px) / -2);
    width: 1px;
    height: 15px;
    background-color: var(--color-secondary);
    transform: translateY(-50%);
}

.product-tab-btn.active {
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .product-tab-btn:hover {
        color: var(--color-primary);
    }
}

.product-tab-item:not(.active) {
    display: none;
}

.product-tab-item {
    padding: var(--space-50) 0;
}

.param-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-50);
    padding: 15px 30px;
    line-height: 1.875em;
    color: #000;
}

.param-row:nth-of-type(odd) {
    background-color: #F3F3F3;
}

.param-row-name {
    font-weight: 700;
}

.product-basket-box {
    padding: var(--space-25) var(--space-40);
    display: flex;
    align-items: center;
    gap: calc(2 * var(--space-40));
    border: 2px solid #000;
    border-radius: 15px;
}

.product-basket-box-left {
    flex-grow: 1;
}

.product-basket-box-right {
    width: calc(50% - var(--space-40));
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-basket-box-right .input-counter {
    padding: 0;
    width: 100%;
}

.product-basket-box-right > .btn {
    width: 100%;
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 900;
}

.product-basket-box-right > .btn .icon {
    width: 15px;
    flex-shrink: 0;
}

.product-basket-box-right .shop-quantity-box .qty-down,
.product-basket-box-right .shop-quantity-box .qty-up {
    top: 0;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-60) - 13px) -13px;
}

.product-list .alert {
    margin: 13px;
    width: 100%;
}

.asidedPage-content .page-heading {
    align-items: flex-start;
}

.asidedPage-content .page-title {
    text-align: left;
}

.page-title.page-title-sm {
    font-size: 30px;
}

.asidedPage-content .shop-product-box {
    width: 33.3333%;
}

.product-actions > .btn > .icon {
    width: 7px;
}

.filter-form-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-form-buttons .btn-link {
    color: #fff;
}

.aside-filters-form {
    padding-right: var(--container-padding);
}

.filter-form-content .form-element-option-text {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.filter-form-content .checkboxradio-container .row > .col-xs-12 + .col-xs-12 {
    margin-top: 17px;
}

.filter-form-content > .form-group:not(.filter-form-buttons) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
}

.filter-form-content > .form-group .form-element-label-wrapper {
    width: 100%;
    padding: 10px 30px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid transparent;
    transition: all .2s ease-in-out;
}

.filter-form-content > .form-group .form-element-label-wrapper:after {
    content: '';
    width: 13px;
    height: 7px;
    background-image: url('../images/icons/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .2s ease-in-out;
}

.filter-form-content > .form-group .form-element-container.active .form-element-label-wrapper:after {
    transform: scaleY(-1);
}

.filter-form-content > .form-group .form-element-container.active .form-element-label-wrapper {
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-form-content > .form-group .form-element-label-wrapper .form-element-name {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.filter-form-content > .form-group .form-element {
    padding: 25px 30px;
    display: none;
}

.filter-form-content {
    --row-gap: 0;
}

.aside-menu > ul > li > ul > li > ul {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 40px 40px 75px;
}

.aside-menu > ul > li > ul > li > ul > li > .menuList-group > a {
    font-size: 14px;
    line-height: 2.5714em;
    font-weight: 400;
}

.aside-menu > ul > li > ul > li > ul > li.active > .menuList-group > a {
    font-weight: 900;
}

@media screen and (min-width: 1140px) {
    .aside-menu > ul > li > ul > li > ul > li > .menuList-group > a:hover {
        font-weight: 900;
    }
}

.product-basket-box-left .shop-product-price .price-net {
    display: flex;
    align-items: flex-end;
    font-size: 14px;
    line-height: 1.2142em;
    font-weight: 400;
    color: #979797;
    gap: 3px;
}

.product-basket-box-left .shop-product-price .price-net .price {
    font-size: 14px;
    font-weight: 400;
    color: #979797;
}

.product-basket-box-left .shop-product-price .price-net > .caption {
    order: 1;
}

.product-basket-box-left .shop-product-price .price-net .price.price-old {
    display: none;
}

.product-basket-box-left .shop-product-price .price-gross > .caption {
    display: none;
}

.product-basket-box-left .shop-product-price .price-gross {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.product-basket-box-left .shop-product-price .price-gross .price:not(.price-old) {
    font-size: 36px;
    line-height: 1.1944em;
    font-weight: 900;
}

.product-basket-box-left .shop-product-price .price-gross .price-old {
    color: #979797;
    font-size: 14px;
    line-height: 1.1944em;
    font-weight: 400;
    margin-bottom: 5px;
}

.availability-row {
    display: flex;
    align-items: center;
    gap: 9px;
}

.availability-row-value {
    font-size: 13px;
    font-weight: 700;
}

.shop-product-variants-container {
    margin-bottom: var(--space-40);
}

.shop-product-variant-row {
    --row-gap: 0;
    display: flex;
    flex-direction: column;
}

.shop-product-variant-row > * {
    width: 100%;
    gap: 10px;
}

.shop-product-variant-row .form-element-name {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-slider-top-arrows {
    position: absolute;
    z-index: 2;
    bottom: var(--space-50);
    right: var(--space-50);
}

.product-slider-top-arrows{
    gap: 0;
    margin: -10px;
}

.product-slider-top-arrows .btn-arrow{
    width: 32px;
    padding: 10px;
}

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

.recommended-products-section {
    padding: var(--space-60) 0;
    background-color: #F3F3F3;
}

.main-categories-section {
    padding: calc(4 * var(--space-40) - 15px) 0;
    position: relative;
}

.main-categories-section .section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.main-categories-section .section-bg img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.main-categories-section .section-bg img:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
}

.main-categories-inner {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    gap: var(--space-40);
}

.main-categories-title {
    color: #fff;
    font-size: clamp(35px, 5.6875vw, 90px);
    font-weight: 900;
    writing-mode: vertical-rl;
    text-align: left;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.main-categories-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.main-categories-item {
    aspect-ratio: 1;
    padding: var(--space-25);
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.main-category-item-title {
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 1140px) {
    .main-categories-item:hover {
        background-color: rgba(221, 16, 27, 0.65);
    }
}

.contact-form-deco {
    position: absolute;
    z-index: 2;
}

.contact-form-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.contact-form-deco.contact-form-deco--left {
    left: 13.0208vw;
    bottom: var(--space-40);
    width: 7.9166vw;
}

.contact-form-deco.contact-form-deco--right {
    right: 7.2916vw;
    top: var(--space-25);
    width: 7.9166vw;
}

.menuList-group .icon-wrapper {
    cursor: pointer;
}

.aside-toggle-btn {
    display: none;
}

.product-list + .pagination-wrapper {
    margin-top: calc(var(--space-60) - 13px);
}

.pagination-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: var(--space-60) 0;
}

.pagination-wrapper ul {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-40);
}

.pagination-wrapper ul li a {
    line-height: 1;
}

.pagination-wrapper ul li,
.pagination-wrapper ul li a:not(.btn-arrow) {
    padding: 0;
}

.pagination-wrapper ul li.prev {
    margin-right: auto;
}

.pagination-wrapper ul li.next {
    margin-left: auto;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    display: flex;
    width: 46px;
    height: 46px;
}

.pagination-wrapper ul li.next a .icon,
.pagination-wrapper ul li.prev a .icon {
    width: 16px;
    padding: 0;
}

.shop-product-variant .form-element-container {
    max-width: 300px;
}

.header-top{
    position: relative;
    z-index: 1000;
}

.rwd-menu-titles-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwd-menu-title{
    padding: 15px var(--container-padding);
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.rwd-menu-title + .rwd-menu-title{
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.rwd-menu-title.active{
    color: var(--color-secondary);
}

.asidedPage-content .product-bottom .product-price{
    width: 100%;
}

.shop-product-offer-box .glyphicon{
    display: none;
}

.shop-product-offer-box .has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered{
    padding-right: 44px;
}

.shop-product-offer-box .form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow{
    right: 16px;
}

.product-top-form-content .form-teaser{
    font-size: 18px;
    font-weight: 600;
}

.copyright-undicom a img{
    filter: invert(1);
}

.files {
    margin-bottom: calc(2 * var(--space-50));
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
    transition: border-color 0.3s;
    width: calc(33.3333% - 10px);
}

.file .caption {
    color: var(--color-default);

    font-size: 16px;
}

.file-left {
    display: flex;
    align-items: center;
    padding: 12px var(--space-25);
    padding-right: 10px;
    flex-grow: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s;
}

.file-right {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-default);
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 600;
    padding: 0 17px;
}

.file .file-right svg path {
    transition: fill 0.3s;
}


@media screen and (min-width: 1140px) {
    .file:hover {
        border-color: var(--color-primary);
    }

    .file:hover .file-right {
        color: var(--color-primary);
    }

    .file:hover .file-right svg path {
        fill: var(--color-primary);
    }

    .file:hover .file-left {
        border-color: var(--color-primary);
    }
}

.file-left .icon {
    display: flex;
    max-width: 44px;
    margin: -10px -13px;
    margin-right: 5px;
}

.file-right .icon {
    display: flex;
    max-width: 34px;
    margin: -10px;
}