/**
 * 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: 7px;

    /** SPECIFIC **/
    --color-primary: #1A80C0;
    --color-secondary: #000;
    --color-gray: #eeeeee;
    --color-default: #f6f6f6;
    --color-border-deafult: #ccc;
    --shadow: 1px 1px 4px #a8a8a870;
}

body {
    color: #000;
    background: var(--color-gray);
    font-family: "Poppins", 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 linear;
}

a:hover, a:focus {
    color: var(--color-primary);
}

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

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


/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#content {
    padding-top: 143px;
}

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

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

.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 {
    -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');
}


/**
 * 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 .icon *,
.btn-primary:hover .icon *,
.btn-primary:focus .icon *,
.btn-primary:active .icon *,
.btn-primary.active .icon *,
.btn-primary.active:focus .icon *,
.btn-primary:hover:focus .icon *,
.btn-primary:hover:active .icon *,
.btn-primary:focus:active .icon * {
    fill: #fff;
}

.btn-primary.active {
    background-color: #fff;
    color: #000;
}

.btn-primary.active .icon * {
    fill: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #ddd;
    border-color: #ddd;
}

.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: #fff;
    border-color: var(--color-primary);
    color: var(--color-secondary);
    border-width: 2px;
}

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

.btn-secondary[disabled],
.btn-secondary[disabled]:hover,
.btn-secondary.disabled,
.btn-secondary.disabled:hover {
    opacity: 0.7;
    cursor: not-allowed;
    border-color: #ddd !important;
    color: #ddd !important;
}


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

.btn-white.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.btn-white[disabled],
.btn-white[disabled]:hover {
    opacity: 0.2;
    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.1);
    color: #000;
}

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

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

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

    .btn-primary:not([disabled]):hover .icon *,
    .btn-primary:not([disabled]).active:hover .icon * {
        fill: var(--color-primary);
    }

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

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

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

    .btn-danger:hover {
        background-color: #fff;
        color: #000;
    }
}

/**
 * BUTTONS
 */

.btn {
    border-radius: 0;
    transition: all .2s linear;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: none !important;
}

.btn-danger {
    border: 2px solid #d9534f !important;
}

.btn-primary, .btn-secondary {
    border-width: 2px !important;
}

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

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

.btn.btn-lg {
    font-size: 14px;
    font-weight: 400;
    min-height: 46px;
    padding: 10px var(--space-25);
    text-transform: uppercase;
}

.btn.btn-md {
    height: 40px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
}

.btn-square {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 5px;
}

.btn-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}


/**
 * 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: 30px;
}

/** 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;
}

.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;
    background: #fff;
    box-shadow: var(--shadow);
    left: 0;
    right: 0;
}


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

.header-top-left {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.header-link-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    gap: 13px;
}

.header-link-item-value {
    font-weight: 600;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.header-link-item-value svg *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.header-link-item-value svg *[fill]:not([fill="none"]) {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
    .header-link-item-value:hover {
        background-color: var(--color-primary);
        color: #fff;
    }


    .header-link-item-value:hover .fa {
        color: #fff;
    }
}


.header-top {
    opacity: 1;
    height: 50px;
    padding: 0 calc(var(--space-40) - 6px);
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.header-top a {
    color: #fff;
}

.header-top a:hover {
    text-decoration: underline;
}

header.sticky .header-top {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.header-middle-right .price-gross .caption {
    display: none;
}

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

.logo {

    flex-shrink: 0;
    transition: width 0.3s;
}

/*header.sticky .logo {*/
/*    width: 142px;*/
/*}*/

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
}

#main-menu > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-60);
}

#main-menu > ul > li > a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

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

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

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

#main-menu li + li::before {
    content: '';
    position: absolute;
    left: calc((-1 * var(--space-60) / 2));
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

#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 {
    float: left;
    position: relative;
    width: 450px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    border-radius: 25px;
    position: relative;
    background: #F2F2F2;
}

.mainsearch-search .alert-block {
    display: none;
}

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

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    padding-left: calc(var(--space-25) + 7px);
    box-shadow: none !important;
    border: none;
    border-radius: 25px;
    background-color: #F2F2F2;
    overflow: hidden;
    color: #0f1521;
    font-size: 14px;
    font-weight: 400;
}

.mainsearch input.form-control::placeholder {
    color: #0f1521;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 0;
    background-color: transparent;
    transition: all .2s linear;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    margin-right: -1px;
}

.mainsearch-submit .icon * {
    fill: #000;
    transition: all .2s linear;
}

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

    .mainsearch-submit:hover .icon * {
        fill: #fff;
        stroke: #fff;
    }
}

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

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


.header-categories {
    position: fixed;
    left: 0;
    right: 0;
    top: 191px;
    z-index: 5;
    transition: all .2s linear;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

header.sticky .header-categories {
    top: 133px;
}

.header-categories.active {
    opacity: 1;
    pointer-events: initial;
}

.header-categories-shadow {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 191px;
    z-index: 4;
    transition: all .2s linear;
    background-color: rgba(246, 246, 246, 0.9);
    opacity: 0;
    pointer-events: none;
}

.header-categories-shadow.active {
    opacity: 1;
    pointer-events: initial;
}

header .menuList {
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    height: 100%;
    max-height: calc(100vh - 320px);
    padding: var(--space-40) 0;
    margin: 0 calc(-1 * var(--space-40));
}

header .menuList > li {
    padding: 0 var(--space-40);
}

header .menuList > li > .menuList-group {
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

header .menuList > li:nth-last-of-type(-n + 4) > .menuList-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .menuList > li > .menuList-group > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    transition: all .2s linear;
    color: #000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

@media screen and (min-width: 1140px) {
    header .menuList > li > .menuList-group > a:hover {
        color: #fff;
        background-color: var(--color-primary);
    }
}

/*
* 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;
    color: #fff;
}

.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: 26px;
    height: 26px;
}


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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    border-radius: 0;
    color: #000;
}

.form .form-control::placeholder {
    color: #555 !important;
}

/* 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: 6px;
    box-shadow: none;
}

/* 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: var(--color-primary);
    border-radius: 0;
    background-color: transparent;
    border-color: #ccc;
    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 {
        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;
    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: 13px;
    padding-right: 44px;
    color: #000;
}

.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: 12px 0;
    margin-bottom: calc(var(--space-25) + 5px);
}

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

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

.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);
    font-weight: 700;
}

/**
 * ANIMATABLE ICON
 */

.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 {
    margin-bottom: var(--space-40);
}

.social-list > ul {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-size: 0;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    transition: all .2s linear;
}

.social-icon * {
    display: block;
    fill: #fff;
    transition: all .2s linear;
}

footer .social-list {
    margin-bottom: 0;
}

.scroll-top {
    display: flex;
    cursor: pointer;
}

.scroll-top svg rect {
    transition: fill 0.3s;
}

.footer-middle-socialBox img {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    .social:hover .social-icon {
        background-color: var(--color-primary) !important;
    }

    .social:hover .social-icon {
        background-color: transparent;
    }

    .scroll-top:hover svg rect {
        fill: var(--color-primary);
    }
}

.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 {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.3333%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.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: transparent;
    transition: opacity 0.3s;
}

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

@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: 46px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background-color: #fff !important;
}

.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: 6px;
    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%;
    display: none;
}

.form-control.form-range {
    padding: 0;
}

.form-range .col {
    width: 45%;
}

.header-middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--space-60) + var(--space-25));
    padding: 8px 0;
    transition: padding 0.3s;
}

header.sticky .header-middle-inner {
    padding: 4px 0;
}

.header-middle {
    background-color: #fff;
}

.header-bottom {
    display: flex;
    align-items: center;
    background-color: #000;
}

.mainsearch {
    flex-grow: 1;
    max-width: 650px;
    border: 2px solid var(--color-primary);
    border-radius: 25px;
}

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

.main-top-wrapper {
    margin: var(--space-50) 0;
}

.main-top-inner {
    display: flex;
    gap: 14px;
}

.main-top-left {
    width: 348px;
}

.main-top-right {
    width: calc(100% - 362px);
}

.main-slide-content {
    display: flex;
    align-items: stretch;
}

.main-slide-product {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-40) var(--space-60) var(--space-40) calc(var(--space-60) + var(--space-25));
}

.main-slide-product > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 3;
}

.main-slide-product-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.main-slide-product-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    right: 0;
}

.main-slide-text {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-25) var(--space-25) var(--space-25) 0;
}

.main-slide-title {
    font-size: 60px;
    font-weight: 700;
}

.main-slide-content {
    position: absolute;
    inset: 0;
}

.main-slider-item {
    position: relative;
}

.main-slider-video {
    position: relative;
}

.main-slider-video::before {
    content: '';
    display: block;
    padding-top: 35%;
}

.main-slider-video .embed-responsive,
.main-slider-item video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0 !important;
}

.main-slider-video .embed-responsive iframe {
    width: 100%;
    height: 100%;
}

.header-middle-inner .user-nav {
    display: flex;
    align-items: center;
}

.header-middle-inner .user-nav > .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
    position: relative;
}

.header-middle-inner .user-nav > .user-nav-item + .user-nav-item:before {
    content: '';
    width: 1px;
    height: 11px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
}

.header-middle-inner .user-nav > .user-nav-item .caption {
    display: none;
}

.header-middle-inner .user-nav > .user-nav-item > .user-nav-item-inner {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .header-middle-inner .user-nav > .user-nav-item > .user-nav-item-inner:hover {
        background-color: var(--color-primary);
    }

    .header-middle-inner .user-nav > .user-nav-item > .user-nav-item-inner:hover svg * {
        fill: #fff;
    }
}

.header-middle-inner .user-nav > .user-nav-item > .user-nav-item-inner.active {
    border: 2px solid var(--color-primary);
    width: 42px;
    height: 42px;
}

.header-middle .store-btns a {
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    color: #000;
    width: 44px;
    height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-middle-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-box-basket-container:before {
    content: none;
}

.basket-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}


.top-box-basket-container {
    margin-left: 0;
    padding-left: 0;
}

.main-slide-text .btn {
    margin-top: calc(var(--space-25) + 5px);
}

.main-slide-teaser {
    font-size: 19px;
    font-weight: 400;
    margin-top: 12px;
}

.main-boxes {
    margin: var(--space-50) 0;
}

.main-boxes-inner {
    margin: -10px;
}

.main-box-item {
    padding: 10px;
}

.main-box-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: var(--space-50) var(--space-60);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.main-box-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 15px;
}

.main-box-text {
    font-size: 20px;
    line-height: 1em;
    font-weight: 400;
}

.main-box-content .btn {
    margin-top: auto;
}

.main-box-image > img {
    display: block;
    max-width: 100%;
}

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

.main-box-image-gradient img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logotype-slider {
    margin: 0 -7px;
}

.logotype-slider .logotype-slider-col {
    padding: 0 7px;
}


.logotype-slider,
.logotype-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.logotype-slider .logotype img {
    filter: grayscale(1);
    transition: all .2s linear;
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    .logotype-slider .logotype:hover img {
        filter: grayscale(0);
    }
}

.section-title {
    color: #000;
    font-size: calc(var(--font-36) - 2px);
    font-weight: 700;
}

.section-title-md {
    font-size: var(--font-30);
}

.section-title-xs {
    font-size: 16px;
    margin-bottom: var(--space-25);
}

.section-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-25);
    position: relative;
    margin-bottom: calc(var(--space-25) - 5px);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-primary);
}

.heading-description {
    width: 100%;
}

.section-title + .products-slider-arrows {
    min-width: 140px;
    justify-content: flex-end;
}

.section-heading.center {
    justify-content: center;
}

.arrow {
    padding: 0;
    display: block;
    width: 12px;
    background-color: transparent;
    border: none;
    outline: none;
}

.arrow * {
    fill: #cfd0d3;
    transition: all .2s linear;
}

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

.arrows {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logotypes {
    margin: var(--space-50) 0;
}

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

.header-middle-center {
    display: flex;
    gap: calc(var(--space-25) + 5px);
}

.btn.btn-lg.btn-header-offer {
    font-size: 14px;
    font-weight: 700;
    gap: 15px;
    height: 60px;
    border-radius: 0;
    margin-right: calc(2 * var(--space-50) - 3px);
    padding: 19px calc(var(--space-40) - 6px);
    padding-right: calc(2 * var(--space-50));
}

.btn.btn-lg.btn-header-offer svg *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.btn.btn-lg.btn-header-offer svg *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon {
    display: block;
    width: fit-content;
    height: fit-content;
}

/*.icon * {*/
/*    transition: all .2s linear;*/
/*}*/

.btn-header-offer .icon {
    flex-shrink: 0;
}

.main-slider-inner:not(.slick-initialized) .main-slider-item:nth-of-type(n + 2) {
    display: none;
}

.logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 11) {
    display: none;
}

.logotype-slider-col {
    width: 10%;
}

.shop-category-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -7px;
}

.category-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.comp-table{
    background: #fff;
}
.category-item {
    width: 16.6666%;
    padding: 7px;
}

.category-item-inner {
    display: flex;
    height: 154px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--shadow);
    transition: all .2s linear;
    color: #000;
    padding: 10px;
}

@media screen and (min-width: 1140px) {
    .category-item-inner:hover {
        background-color: var(--color-primary);
        color: #fff;
    }
}

.category-image {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.category-name {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: block;
}

.category-item.category-item-more {
    position: relative;
    background-color: transparent !important;
    color: #fff;
    overflow: hidden;
}

.category-item.category-item-more .category-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    width: unset;
}

.category-item.category-item-more .category-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .category-item.category-item-more:hover .category-image img {
        transform: scale(1.1);
    }
}

.main-categories-title {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
}

.main-categories .menuList > li:not(.see-all-categories) {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-categories .menuList > li > .menuList-group {
    width: 100%;
    height: 49px;
}

.menuList-group {
    position: relative;
}

.main-categories .menuList > li > .menuList-group > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 10px 33px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .2s linear;
}

.shop-category .main-categories .menuList > li > .menuList-group > a {
    padding: 10px 20px;
}

.main-categories .menuList > li.slided > .menuList-group > a,
.main-categories .menuList > li.active > .menuList-group > a {
    background-color: var(--color-primary);
    color: #fff;
}

.main-categories .menuList > li.slided > .menuList-group > .menuList-toggle,
.main-categories .menuList > li.active > .menuList-group > .menuList-toggle {
    color: #fff;
}

.menuList > li > ul li.slided > .menuList-group > a,
.menuList > li > ul li.active > .menuList-group > a {
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .main-categories .menuList > li > .menuList-group:hover > a {
        background-color: var(--color-primary);
        color: #fff;
    }

    .main-categories .menuList > li > .menuList-group:hover > .menuList-toggle {
        color: #fff;
    }

    .menuList > li > ul li .menuList-group:hover > a {
        color: var(--color-primary);
    }
}

.menuList li.active > ul {
    display: block;
}

.menuList li ul {
    display: none;
    padding: 15px 0;
}

.menuList > li > ul > li > ul {
    padding: 8px 0;
}

.menuList a {
    font-size: 13px;
}

.menuList > li > ul li {
    padding-left: 40px;
    position: relative;
}


.menuList > li > ul li::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 13px;
    left: 26px;
    transform: translate(0, -50%);
}

.menuList > li > ul li .menuList-group {
    padding-right: 30px;
}

.menuList li ul li a {
    padding: 4px 0;
    display: block;
}

.see-all-categories > a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    height: 100%;
    min-height: 49px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    transition: all .2s linear;
    border-radius: 5px;
    text-transform: uppercase;
}

.see-all-categories > a:hover {
    color: #fff;
    background-color: var(--color-primary);
}

.product-container:before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-primary);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: all 0.4s;
}

.product-bottom-info{
    background: #fff;
    box-shadow: var(--shadow);
}

.product-container {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #000 !important;
    position: relative;
    box-shadow: var(--shadow);

    /*padding: calc(var(--space-25) - 4px);*/
}

.list-view-option, .filter-toggle, .heading-top .form-element-wrapper {
    box-shadow: var(--shadow) !important;

}

.shop-product-box .product-container:hover:before {
    opacity: 1;
}

.shop-product-box {
    width: 25%;
}

.section-related-inner {
    margin: -22px;
}

.main-top-right .shop-product-box {
    width: 20%;
}

/*ASIDE*/
.menuList-toggle {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuList-toggle i {
    transition: transform 0.3s;
}

.menuList li.slided > .menuList-group > .menuList-toggle i {
    transform: scaleY(-1);
}

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

.asidedPage .shop-product-list {
    margin-bottom: calc(var(--space-60) - 7px);
}
.main-categories, .aside > .shop-filter-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow);
}

.aside {
    position: relative;
    width: 315px;
    color: var(--color-primary);
    pointer-events: auto;
}

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

.aside-shadow {
    z-index: 800;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s;
    opacity: 1;
    pointer-events: auto;
    display: none;
}

.aside-shadow.active {
    opacity: 1;
    pointer-events: auto;
}

.asidedPage .page-heading-title {
    font-size: var(--font-36);
}

.aside-button {
    position: fixed;
    top: 215px;
    left: 0;
    font-size: 26px;
    background-color: var(--color-primary);
    color: #fff;
    width: 52px;
    height: 52px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.aside-button .icon {
    color: #fff;
    width: 27px;
    height: 22px;
}

.aside-bg {
    background-color: #fafafa;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.aside-close {
    z-index: 10;
    position: absolute;
    right: 15px;
    top: 10px;
    color: var(--color-primary);
    font-size: 24px;
    cursor: pointer;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    transition: color 0.4s;
    display: none;
}

@media screen and (min-width: 1140px) {
    .aside-close:hover {
        color: var(--color-primary) !important;
    }
}

.aside-title {
    padding-left: 20px;
    margin-top: var(--space-40);
}

.asidedPage-content {
    flex-grow: 1;
    padding-left: 14px;
    width: calc(100% - 315px);
}

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

.sort-section .form-element-container {
    display: flex;
    align-items: center;
}

.sort-section .form-element-text {
    font-size: 13px;
    font-weight: 500;
    margin-right: 9px;
}

.sort-section .select2-container--default .select2-selection--multiple,
.sort-section .select2-container .select2-selection--single {
    min-width: 150px;
    border-radius: 0;
}

.main-slider-inner .slick-dots {
    position: absolute;
    right: calc(-1 * var(--container-padding));
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--space-40) / 1.5);
}

.main-slider-inner .slick-dots > li > button {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1em;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    border: none;
    outline: none;
    background-color: #fff;
}

.main-slider-inner .slick-dots > li.slick-active > button {
    background-color: var(--color-secondary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .main-slider-inner .slick-dots > li > button:hover {
        background-color: var(--color-secondary);
        color: #fff;
    }
}

.slick-dots li button::before {
    content: "0";
}

.slick-dots li:nth-child(n + 10) button::before {
    content: none;
}

.shop-product-bot .product-labels {
    position: absolute;
    left: 10px;
    top: 10px;
    transform-origin: left top;
    transform: rotate(-90deg) translateY(100%);
}

.shop-product-bot .product-label {
    width: fit-content;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.heading-left.sort-section .form-element-wrapper {
    width: 160px;
}

.pagination-wrapper {
    max-width: 100%;
    margin: calc(2 * var(--space-50)) 0;
    width: 100%;
    padding: 0;
}

.shop-product-list .pagination-wrapper {
    margin: calc(2 * var(--space-50)) 0 calc(2 * var(--space-50) - (var(--space-60) - 7px)) 0;
}

.pagination-wrapper ul {
    margin: 0 auto;
    max-width: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--space-60) / 2);
}

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

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

.pagination-wrapper ul li {
    padding: 0;
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    color: #000;
    font-size: 14px;
    line-height: 1em;
    font-weight: 400;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}

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

/*.pagination-wrapper ul li:not(.prev):not(.next) a:before{*/
/*    content: '0';*/
/*}*/

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

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    width: fit-content;
    height: fit-content;
    line-height: 1em;
    color: rgba(0, 0, 0, 0.3);
}

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

.pagination-wrapper ul li.next a .icon *,
.pagination-wrapper ul li.prev a .icon * {
    fill: #cfd0d3;
}


.password-eye {
    border-color: #ccc !important;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.form-element.has-error .password-eye {
    border-color: #a94442 !important;
}

.main-news {
    margin: var(--space-40) 0;
}

.news-item {
    display: flex;
    align-items: stretch;
}

.main-news .news-item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.news-item-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-40);
    padding: var(--space-25) calc(var(--space-60) + 10px) var(--space-25) 0;
}

.main-news .news-item:nth-of-type(even) .news-item-content {
    padding: var(--space-25) 0 var(--space-25) calc(var(--space-60) + 10px);
}

.news-item-content .btn {
    align-self: flex-end;
}

.news-item-title {
    color: #0f1521;
    font-size: 24px;
    font-weight: 700;
}

.news-item-text {
    color: #0f1521;
    font-size: 16px;
    line-height: 1.875em;
    font-weight: 400;
}

.news-item-image {
    position: relative;
    width: calc(50% + var(--container-padding) + (50vw - 860px));
    margin-right: calc(-1 * (var(--container-padding) + (50vw - 860px)));
}

.main-news .news-item:nth-of-type(even) .news-item-image {
    margin-right: 0;
    margin-left: calc(-1 * (var(--container-padding) + (50vw - 860px)));
}

.news-item-labels {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 7px;
}

.news-item-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 9px var(--space-25);
    border-radius: 5px;
    color: #fff;
}


.news-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-slider-big {
    margin-top: var(--space-50);
}

.product-actions .btn-default .icon {
    width: 4px;
}

.product-actions .btn-default .icon * {
    fill: #000;
    transition: all .2s linear;
}

.product-actions .btn-default {
    background-color: #f6f6f6;
    border-color: #f6f6f6;
}

.product-actions .btn-default:hover .icon * {
    fill: #fff;
}

.products-slider-big {
    padding: var(--space-60) 0;
    background-color: #f6f6f6;
}

/*.filters-reset .btn-link {*/
/*    flex-direction: column;*/
/*    gap: 0;*/
/*    align-items: center;*/
/*}*/

.btn-link {
    font-size: 14px;
    font-weight: 400;
    transition: all .2s linear;
    text-transform: uppercase;
    color: var(--color-secondary);
    text-decoration: none !important;
}

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


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

.heading-left {
    display: flex;
    align-items: center;
    gap: var(--space-25);
}

.main-slider {
    margin-bottom: var(--space-60);
}

.page-title {
    font-size: calc(var(--font-36) - 2px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-50);
    line-height: 0.6;
}

.about-page-top {
    position: relative;
    padding-bottom: calc(2 * var(--space-50));
}

.about-top-bg {
    position: absolute;
    bottom: 0;
    left: -145px;
    z-index: -1;
}

.about-bottom {
    position: relative;
    padding-top: calc(2 * var(--space-50));
    margin-bottom: var(--space-60);
}

.about-bottom-bg {
    position: absolute;
    top: 0;
    right: -200px;
    z-index: -1;
}

.about-bottom-bg img,
.about-top-bg img {
    display: block;
    max-width: 100%;
}

.shop-category .shop-product-list {
    margin-bottom: calc(var(--space-60) - 7px);
}

.text h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--color-secondary);
}

.flex-row {
    display: flex;
}

.flex-row.align-start {
    align-items: flex-start;
}

.flex-row .flex-row-btns {
    width: 50%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: calc(var(--space-25) - 5px);
}

.btn-square.btn-square-lg {
    width: 46px;
    height: 46px;
}

#filter-form {
    display: flex;
    align-items: stretch;
}

.news-row-right {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.buttons-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.basket-table .price-wrapper {
    align-items: center;
}
.basket-table{
    background: #fff;
}
.basket-table .price-wrapper .price.price-old {
    font-size: 13px;
}

.file:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 13px 20px;
    padding-right: 13px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.73333;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.file + .file {
    margin-top: 10px;
}

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

    .file:hover .btn {
        background-color: var(--color-primary);
        color: #fff;
    }
}

.file-right .btn {
    width: 38px;
    height: 38px;
}

.file-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.files-list {
    margin-bottom: var(--space-50);
}

.product-desc-wrapper:not(:last-child),
.product-params-wrapper:not(:last-child) {
    margin-bottom: var(--space-50);
}

.product-param-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    line-height: 2.1428;
    padding: 10px 20px;
}


.product-param-item:nth-child(even) {
    background-color: #f7f7f7;
}

.product-param-item-name {
    width: 50%;
    padding-right: 10px;
}

.product-param-item-value {
    width: 50%;
    font-weight: 600;
}

#product-form .form-element-name {
    color: var(--color-secondary);
    font-size: 15px;
}

.shop-product-slider .recommended-arrows {
    position: absolute;
    right: 0;
}

.recommended-arrows .arrow {
    width: initial;
}


.shop-product-slider .section-title {
    text-align: center;
}

.shop-product-slider {
    margin-bottom: var(--space-60);
}

.product-box-offer-right .shop-quantity-box {
    width: 100%;
}

.modal-footer .text-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.modal-footer > .hide-after-success {
    width: 100%;
}

.main-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content {
    padding-top: 191px;
}

.main-about-left img {
    display: block;
    max-width: 100%;
}

.user-nav-logout-icon * {
    fill: #777777;
}

.user-nav-logout-icon svg {
    transform: scale(0.85);
}

.section-related-inner {
    display: flex;
    align-items: stretch;
    transition: opacity .2s linear;
    opacity: 1;
    pointer-events: initial;
    overflow: hidden;
}

.section-related-inner.slider-hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;

}

.products-slider-big .shop-product-box {
    width: 16.6666%;
}

.products-slider-big .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 7) {
    display: none;
}

.products-slider-normal .shop-product-box {
    width: 20%;
}

.products-slider-normal .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 6) {
    display: none;
}

.slick-list {
    width: 100%;
}

.section-related-inner .slick-track {
    display: flex;
    align-items: stretch;
}

.section-related-inner .slick-track .slick-slide {
    height: unset;
}

.section-heading-center {
    text-align: center;
    justify-content: center;
    margin-bottom: var(--space-50);
}

.top-box.top-box-submenu > .btn {
    border-radius: 0;
}

.top-box.top-box-submenu > .btn .icon {
    width: 26px;
    height: 26px;
}

.top-box.top-box-submenu .user-nav-item-logout .caption {
    display: block;
}

.products-slider-big .section-related-inner {
    margin: -20px;
}

.products-slider-big .section-related-inner .shop-product-box {
    padding: 20px;
}


.glyphicon {
    display: none !important;
}

.modal-header button.close {
    font-size: 30px;
    margin-top: -15px;
}

.shop-manufacturer-box {
    width: 20%;
    padding: 7px;
}

.category-list {
    margin: -7px;
}

.shop-manufacturer-box-inner {
    width: 100%;
    height: 100%;
    display: flex;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all .2s linear;
    padding: 10px;
    min-height: 54px;
}

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

.manufacturer-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.manufacturer-title {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #000;
}

.mainpage .news-item-labels {
    display: none;
}

.news-row-right .form-control {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-row-right #filter-form .form-element-container {
    width: 400px;
    margin-right: -20px;
}

#filter-form > .btn {
    position: relative;
    z-index: 2;
}

#filter-form > .btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-store-ask-form {
    margin: auto;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-form .form-element-name {
    color: var(--color-secondary);
}

.store-form .section-title {
    text-align: center;
    font-size: var(--font-24);
}

.offer-box-info .shop-store-btn {
    margin-top: 10px;
}

.store-btns .caption {
    display: none;
}

.store-table {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-box-offer-right .btn + .btn {
    margin-top: 10px;
}

.product-box-offer-right .btn {
    width: 100%;
}

.heading {
    position: relative;
}

/*.heading .form,*/
/*.section-heading .form{*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*}*/
.btn-header-offer:not(.active) .icon {
    transform: rotate(180deg);
}


.rwdTabs-header {
    padding: 15px;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdTab-toggle.active {
    color: var(--color-primary);
}

.rwdTab-toggle {
    background: transparent;
    border: none;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.7px;
    padding: 0;
    width: 50%;
    text-align: left;
    position: relative;
}

.store-btns a:hover,
.store-btns a:focus {
    background-color: var(--color-primary) !important;
}

.store-btns a:hover svg * {
    stroke: #fff;
    fill: #fff;
}

.store-btns a {
    background-color: var(--color-primary);
    color: #fff;
}

#product-form .section-title .fa {
    display: none;
}

/*#product-form .section-title {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

.update-form-container .form-element-container.form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper,
.update-form-container .form-element-container.form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    padding: 12px 15px;
    margin: 0;
    color: #fff;
    background: var(--color-primary);
    font-weight: 700;
}

.update-form-container .form-element-container.form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper .form-element-name,
.update-form-container .form-element-container.form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper .form-element-name {
    margin-bottom: 0;
}


.mainsearch .error {
    margin-left: 15px;
}

.grid-actions .btn-toolbar > .btn-group .btn {
    display: inline-flex;
}

.grid-actions .btn-toolbar > .btn-group .btn-default {
    border-color: #e5e5e5;
    color: #000;
    background-color: #fff;
}

.grid-actions .btn-toolbar > .btn-group .btn-default:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.col-lg-3.flex-row {
    margin-bottom: 10px;
    align-items: flex-end;
}

.col-lg-3.flex-row .btn {
    height: 46px;
}

.basket-mode-btn-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--space-25);
    gap: 14px;
}

.shop-update-basket .price-box .unitOfMeasure {
    display: none;
}

.shop-update-basket .price-box .caption {
    margin-bottom: 5px;
}

.shop-update-basket .price-net + .price-gross {
    margin-top: 10px;
}


.btn-add-offer-description {
    margin-top: 10px;
}

.basket-btns-right-wrapper {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.basket-btns-right-wrapper .btn {
    margin-top: 0 !important;
}

.form-content .row > .tab-content {
    width: 100%;
}

.input-price.form-control {
    text-align: center;
    padding: 6px 8px;
}

.basket-update-btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-25);
}

.basket-view .btn-wrapper {
    display: flex;
    justify-content: space-between;
}

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

.section-title .fa {
    display: none;
}

/*.basket-table .product-column-price .price-box > * {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/

.product-column-price {
    width: 112px;
}

.basket-table .product-column-price .price-box > * > label.caption {
    margin-bottom: 0;
    flex-shrink: 0;
}

.basket-table .product-column-price .price-box > * > .price {
    flex-grow: 1;
}

.basket-table .input-margin {
    width: 55px;
}

.heading > .form {
    margin-bottom: var(--space-40);
}

.filter-form-buttons {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    padding: 0 calc(var(--space-40) - 5px);
}

.filters-apply .btn {
    width: 100%;
}

.has-feedback .form-control {
    padding-right: 16px;
}

.filter-aside {
    position: fixed;
    left: -392px;
    /*transition: left 0.3s;*/
    /*top: 28%;*/
    top: 191px;
    width: 382px;
    background-color: #fff;
    z-index: 9999;
    bottom: 0;
    transition: all 0.4s;
}

header.sticky + #content .shop-category .filter-aside {
    top: 131px;
}

.filter-aside.active .toggle-close {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.filter-aside.active {
    left: 0;
}
.heading-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 14px;
    gap: 5px;
}

.shop-sort .form-element-text {
    display: none;
}

.filter-aside .btn-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 10px;
    padding: 0;
    color: #fff;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .filter-aside .btn-close:hover {
        background-color: #fff;
        color: #000;
    }
}

.filter-aside .btn-close .icon svg {
    width: 13px;
    height: 13px;
    position: relative;
    top: 1px;
}

.filter-form-title {
    background-color: #000;
    font-size: var(--font-24);
    font-weight: 300;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 12px 0;
    width: 100%;
}

.filter-form-content {
    padding: calc(var(--space-25) - 3px) 0;
    overflow-y: auto;
    max-height: 92%;
}

.filter-form-content .form-group {
    padding: calc(var(--space-25) + 5px) calc(var(--space-40) - 5px);
    padding-top: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-form-content > div:nth-last-child(3) {
    padding-bottom: 0;
    border-bottom: 0;
}

.ui-menu .ui-menu-item {
    cursor: inherit;
}

.mainsearch .dropdown-menu {
    display: block !important;
}

.search-product-price-space.search-product-form-space,
.search-product-price-space {
    width: calc(100% - 120px);
    float: left;
}


.search-product-price-space,
.search-product-form-space {
    /*width: calc(100% - 90px);*/
}

.search-product-price-space > .price-box,
.search-product-form-space > form {
    display: inline-block;
    vertical-align: middle;
}

.search-product-price {
    display: inline-block;
    float: right;
    width: 120px;
    padding: 8px 0;
    text-align: right;
    padding-right: 50px;
    padding-left: 10px;
    font-weight: 700;
}

.search-product-form {
    display: inline-block;
    float: right;
    order: 2;
    width: 50px;
    text-align: right;
    justify-content: center;
}

.search-product-form + .search-product-price {
    width: 70px;
    padding-right: 0;
}

.ui-menu-item-wrapper .clear {
    padding: 0;
}

.all-search-results > span {
    display: flex;
    justify-content: center;
}

.mainsearch .dropdown-menu .shop-add-to-basket .btn {
    aspect-ratio: 1;
}

.search-product-form .btn.btn-primary svg *,
.search-product-form .btn.btn-primary svg {
    fill: currentColor !important;
}

.main-about-slider-cards .slick-list,
.main-about-slider-cards .slick-track {
    display: flex;
}

.main-about-slider-card svg {
    width: 132px;
    height: 132px;
}

.main-categories .menuList {
    max-height: 658px;
    overflow: auto;
    padding-right: 16px;
}

.main-categories .menuList::-webkit-scrollbar {
    width: 3px;
}


.main-categories .menuList::-webkit-scrollbar-track {
    background: #fff;
}

.main-categories .menuList::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}

@-moz-document url-prefix() {
    .main-categories .menuList {
        scrollbar-width: thin;
    }
}

.heading-right {
    display: flex;
    align-items: center;
    gap: var(--space-40);
}

.heading-right .btn-arrow {
    color: rgba(0, 0, 0, 0.3);
    max-width: 23px;
    cursor: pointer;
    transition: color 0.3s;
}

.heading-right .btn-arrow:hover {
    color: var(--color-primary);

}

.heading-right .btn-arrow path {
    transition: opacity 0.3s;
}

.heading-right .btn-arrow:hover path {
    opacity: 1;
}

.basket-table .price-gross .caption,
.basket-table .price-net .caption {
    font-size: 13px;
    font-weight: 300;
}

.btn-arrow svg *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.btn-arrow svg *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.products-slider-wrapper {
    display: flex;
}

.products-slider-wrapper .products-slider-big-inner.has-image {
    width: 67.5%;
}

.products-slider-image {
    width: 32.5%;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.products-slider-wrapper .section-related-inner {
    margin: 0;
    margin-left: 1px;
}

.products-slider-wrapper .shop-product-box {
    padding: 0;
}

.products-slider-wrapper .products-slider-big-inner.has-image .shop-product-box .product-container {
    border-right: 0;
}

.products-slider-normal:nth-child(even) .products-slider-wrapper {
    flex-direction: row-reverse;
}

.products-slider-normal:nth-child(even) .products-slider-big-inner {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.products-slider-normal:nth-child(even) .products-slider-wrapper .products-slider-image {
    border: 0;
}

.products-slider-normal:nth-child(even) .products-slider-big-inner.has-image .shop-product-box .product-container {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 0;
}

.products-slider-image img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-slider-normal {
    margin-bottom: var(--space-60);
}

.shop-category .main-categories .menuList {
    max-height: initial;
    padding-right: 0;
}

.shop-list-view {
    display: flex;
    align-items: center;
}

/*.discount-group .shop-list-view {*/
/*    display: none;*/
/*}*/

.list-view-caption {
    margin-right: calc(var(--space-25) + 7px);
    font-size: 14px;
    letter-spacing: 0.68px;
}

.list-view-option {
    width: 46px;
    height: 46px;
    cursor: pointer;
    position: relative;
}

.list-view-option .icon {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: border-color 0.3s;
    width: initial;
    height: initial;
}

.list-view-option .icon svg rect {
    fill: rgba(217, 217, 217, 1);
    transition: fill 0.3s;
}

.list-view-option + .list-view-option {
    margin-left: 10px;
}

.list-view-option .iradio_minimal-custom.checked + .icon {
    border-color: var(--color-primary);
}

.list-view-option .iradio_minimal-custom.checked + .icon svg rect {
    fill: var(--color-primary);
}

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

    .list-view-option:hover .icon svg rect {
        fill: var(--color-primary);
    }

    .copy-delivery-data:hover {
        background-color: #292929 !important;
        border-color: #292929 !important;
    }
}

.shop-sort-form {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.product-horizontal {
    width: 100% !important;
}

.product-horizontal .product-container {
    flex-direction: row;
    padding: 0;
    height: initial;
}

.product-horizontal .product-image {
    width: 21%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.product-horizontal .product-content-left {
    width: 45%;
    padding: 18px;
    padding-top: 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content-buttons {
    display: flex;
    gap: 10px;
}

.product-content-buttons .btn {
    width: 50%;
    justify-content: space-between;
}

.product-horizontal .product-content-right {
    width: 34%;
    padding: calc(var(--space-25) - 5px) var(--space-25);
}

.product-horizontal .product-price {
    padding: 0;
    padding-bottom: calc(var(--space-25) - 5px);
    margin-bottom: 0;
    border-bottom: 0;
}

.product-horizontal .product-actions .btn:not(.btn-circle) {
    color: #fff;
    border-radius: 23px;
    min-width: 180px;
}

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

.product-horizontal .product-box-info-item {
    min-height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 50%;
}

.product-horizontal .product-box-info-item.active {
    color: var(--color-primary);
}

.product-box-info-item .icon {
    color: var(--color-primary);
}

.product-box-info-item .icon svg *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.product-box-info-item .icon svg *[fill]:not([fill="none"]) {
    fill: currentColor;
}


.product-box-info-item a {
    display: flex;
    align-items: center;
}

.product-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-horizontal .product-box-info {
    margin-bottom: 19px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
}

.product-horizontal .product-actions {
    display: block;
}

.product-horizontal .product-actions .shop-add-to-basket {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-horizontal .product-box-info-item .icon svg {
    width: 20px;
    height: 20px;
}

.product-horizontal .product-content-top {
    padding: 0;
    padding-bottom: var(--space-25);
}

.product-horizontal .product-box-info-item .icon {
    width: 20px;
    height: 20px;
}

.product-box-info-item.info-availability .icon {
    width: 12px;
    height: 12px;
    background-color: #058515;
    border-radius: 50%;
}

.product-horizontal .product-box-info-item.info-availability .product-box-info-item-value {
    color: #058515;
}

.product-horizontal .product-box-info-item.info-availability.not-available .product-box-info-item-value {
    color: orange;
}

.product-horizontal .price-box .price:not(.price-old) {
    font-size: 19px;
    font-weight: 700;
}

.product-info-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s;
}

@media screen and (min-width: 1140px) {
    .shop-product-box:not(.product-horizontal) .product-container:hover .product-info-wrapper {
        max-height: 150px;
    }

    .shop-product-box:not(.product-horizontal) .product-container:hover .product-image {
        margin-top: -150px;
    }
}

.product-info {
    padding: 20px calc(var(--space-25) - 4px);
    margin-bottom: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-info-item {
    line-height: 1.7857;
    font-size: 14px;
}

.product-info-item a {
    position: relative;
    z-index: 2;
    text-decoration: underline;
}

.product-bottom-info {
    border: 1px solid var(--color-primary);
    padding: 14px;
}

.product-bottom-info .section-title-xs {
    margin-bottom: 5px;
}

.product-bottom-info .product-params-wrapper {
    margin-bottom: 0;
}

.product-bottom-info .product-series .price:not(.price-old) {
    font-size: 18px !important;
}

.product-bottom-info .product-series .product-actions .shop-add-to-basket {
    margin-left: 10px;
}

.products-series .shop-product-box {
    width: 100%;
    padding: 10px;
}

.shop-product-offer-box-bottom {
    margin-top: 14px;
    display: flex;
    gap: var(--space-25);
}

.shop-product-offer-box-bottom .btn {
    flex: 1;
}

.products-series .shop-product-list {
    display: block;
    margin: -10px;
}

.product-series .product-container {
    flex-direction: row;
}

.product-series .product-image {
    margin-bottom: 0;
    border-bottom: 0;
    padding: 10px;
    width: 11%;
    margin-top: 0 !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.product-series .product-content-top {
    padding: 0;
}

.product-series .product-content-left {
    width: 64%;
    padding: var(--space-25) calc(var(--space-40) - 6px);
    padding-bottom: 18px;
    border-right: 0;
}

.product-series .product-box-info-item {
    min-height: initial;
    border-bottom: 0;
    width: initial;
}

.info-availability .caption {
    font-size: 13px;
    color: #058515;
    font-weight: 600;
}

.info-availability.not-available .caption {
    color: orange;
}

.info-availability.not-available .icon {
    background-color: orange !important;
}

.product-series .product-actions .btn {
    color: var(--color-primary);
}

.product-series .product-actions .btn:hover {
    color: #fff !important;
}

.product-series .product-content-right {
    width: 25%;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--space-40);
}

.product-series .product-price {
    border-bottom: 0;
    padding: 0;
}

.product-series .price-gross > .caption {
    display: none;
}

.product-series .product-actions .shop-add-to-basket {
    margin-left: var(--space-40);
}

.product-series .price:not(.price-old) {
    font-size: calc(var(--font-24) - 4px) !important;
}

.product-series .product-box-info {
    display: flex;
    align-items: center;
}

.product-box-info a {
    position: relative;
    z-index: 2;
}

.product-series .product-box-info-item + .product-box-info-item {
    padding-left: calc(var(--space-60) + 10px);
}

.product-series .product-title {
    margin-bottom: 18px;
    transition: color 0.3s;
}

.category-list.mb-60 {
    margin-bottom: var(--space-50);
}


.product-bottom-info .product-series {
    width: 100% !important;
    padding: 6px;
}

.password-eye {
    border-radius: 0;
}

.product-series .product-container:hover .product-title {
    color: var(--color-primary);
}

.store-form {
    padding-top: 40px;
    display: none;
}

.search-group .filter-toggle,
.search-group .toggle-close,
.search-group .btn-close {
    display: none;
}

.search-group .filter-aside {
    position: static;
    width: initial;
}

.search-group .aside {
    width: 330px;
}

.search-group .asidedPage-content {
    width: calc(100% - 330px);
}

.search-group .form-range {
    margin-bottom: 0;
}

.search-group .filter-form-content {
    padding-top: 15px;
}

.search-group .filter-form-buttons {
    margin-top: 12px;
}

.shop-product-offer-box-content-item.not-for-sale .shop-quantity-box.input-counter {
    opacity: 0.5;
    cursor: not-allowed;
}

.shop-product-offer-box-content-item.not-for-sale .input-qty,
.shop-product-offer-box-content-item.not-for-sale .qty-up,
.shop-product-offer-box-content-item.not-for-sale .qty-down {

    pointer-events: none;
}

.product-old-price {
    font-size: 0;
}

.product-old-price .caption-price,
.product-old-price .currency-code {
    font-size: calc(var(--font-24) - 4px) !important;
    font-weight: 700;
}

.product-old-price .caption {
    font-size: 14px;
    font-weight: 400;
    padding-left: 4px;
}


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

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

.flag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.flag-wrapper > * {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

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

.rwdPanel .social-icon * {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.products-slider-big-inner {
    width: 100%;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: -7px;
}

.mainpage-title {
    font-size: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.basket-mode-btn-container .btn.disabled {
    color: #fff !important;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    opacity: 1 !important;
}

.mode-offer .shop-quantity-box .qty-down {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.mode-offer .shop-quantity-box .qty-up {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.product-actions .variant-add-to-basket {
    margin-left: 8px;
}

@media (min-width: 900px) {
    .variant-modal-add .modal-dialog {
        width: 880px;
        margin: 30px auto;
    }
}

.modal-body .shop-product-offer-box-content-item > form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-body .shop-product-offer-box-content-item .btn.btn-circle {
    margin-left: 8px;
}

.top-box-basket-container .no-price {
    display: none;
}

.shop-store-btn:not(.btn-comparison):not(.product-box-info-item) {
    border: 0;
    padding: 0 !important;
    min-height: initial !important;
    gap: 8px;
    font-size: 11px !important;
}

.shop-product-offer-box .shop-store-btn:not(.btn-comparison) .icon {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 22px;
    height: 22px;
    transition: border-color 0.3s;
}

.shop-product-offer-box .shop-add-to-basket {
    padding-bottom: 10px;
}

@media screen and (min-width: 1140px) {
    .shop-store-btn:not(.btn-comparison):hover {
        background-color: transparent !important;
        color: var(--color-primary) !important;
    }

    .shop-product-offer-box .shop-store-btn:not(.btn-comparison):hover .icon {
        border-color: var(--color-primary);
    }

    .header-link-item-value-store:hover .icon {
        border-color: #fff;
    }
}

.header-link-item-value-store {
    font-weight: 200;
    font-size: 26px;
}

.header-link-item-value-store .icon {
    width: 19px;
    height: 19px;
    display: flex;
    line-height: 0;
    position: relative;
    top: 1px;
    left: 1px;
}

.shop-product-tabs {
    background-color: #fff;
}

.product-view-content-bottom {
    margin-bottom: 14px;
}
.mt-50, .my-50{
    margin-top: 14px;
}
.mb-50, .my-50{
    margin-bottom: 14px;
}
.shop-product-tabs-inner {
    display: flex;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
    flex-basis: 100%;
}

.shop-product-tab-wrapper {
    width: 20%;
    display: flex;
    align-items: stretch;
}

.shop-product-tab-wrapper:hover .shop-product-tab {
    background-color: var(--color-primary);
    color: #fff;
}

.shop-product-tab {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 10px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    transition: background-color 0.4s, color 0.4s;
}

.shop-product-tab-wrapper.active .shop-product-tab {
    background-color: var(--color-primary);
    color: #fff;
}

.shop-product-cards {
    position: relative;
}

.shop-product-card > *:last-child .files-list {
    margin-bottom: 0;
}

.shop-product-card > *:last-child {
    margin-bottom: 0;
}

.shop-product-card {
    background: #fff;
    padding: var(--container-padding);
    box-shadow: var(--shadow);
    position: relative;
}

.shop-product-slider.products-series .product-horizontal .product-image {
    width: 16%;
}

.shop-product-slider-inner {
    background: #fff;
    padding: var(--container-padding);
    box-shadow: var(--shadow);
}

.shop-product-slider.products-series .product-horizontal .product-content-left {
    width: 52%;
}

.product-horizontal .product-content-right {
    width: 32%;
}

.basket-view.store-view {
    margin-bottom: var(--space-50);
}

.basket-mode-btns-wrapper-inner.with-update-btn {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.basket-mode-btn-container .btn.btn-lg {
    gap: 7px;
}

.price-box.margin-box {
    font-size: 13px;
}

.tax-rate {
    font-size: 13px;
}

.basket-table .input-margin {
    padding: 6px 4px;
    text-align: center;
}

.basket-table-quantity {
    font-size: 13px;
}

.btn-square {
    width: 46px;
    height: 46px;
    border-radius: 0;
}

.basket-view.store-view .basket-table td.product-info-box {
    width: initial;
}

.basket-remove-item {
    margin-bottom: 10px;
}

.shop-product-card .section-heading {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.product-guest-info-box {
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid var(--color-primary);
    box-shadow:  1px 2px 9px #a8a8a8a6;
}

.product-guest-info-box a {
    text-decoration: underline;
}
.shop-product-offer-box-inner {
    box-shadow: 0px -1px 14px #a8a8a8a1;
}
.shop-product-offer-box-content-item.col4{
    border-right: unset;
}
.shop-product-offer-box-inner.offer-without-price .shop-product-offer-box-top-item,
.shop-product-offer-box-inner.offer-without-price .shop-product-offer-box-content-item:nth-child(1) {
    width: 100%;
}


.form-element.form-element-collection\\B2bCollection .panel.panel-default {
    border: 0;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.form-element.form-element-collection\\B2bCollection .panel-body {
    padding: 0;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-view-action-row {
    margin-bottom: calc(var(--space-25) - 5px);
}

.store-view-action-row .select2 {
    margin-right: 10px;
}

.store-view-action-row > * {
    display: inline-block;
}

.store-view-action-row .delete-list-btn {
    float: right;
}

.store-view-action-row > .select2 {
    width: 200px;
}

.select2-container--default .select2-selection--single {
    border-radius: 0;
}

.create-list-btn + .create-list-btn {
    margin-left: 10px;
}

.store-product-wrapper .table > tfoot > tr > td,
.store-product-wrapper .table > tfoot > tr > th {
    border-top: none;
}

.btn + .btn-store-ask {
    margin-left: 9px;
}

.shop-product-offer-box-content-item .icon.green * {
    fill: #058515;
}

.shop-product-offer-box-content-item .caption.green {
    color: #058515;
}
.product-slider-nav-wrapper{
    margin-top: 10px;
}
.product-photo .product-slider{
    justify-content: center;
}
.product-photo .product-slide-image{
    box-shadow: var(--shadow) !important;
}
.product-photo .product-slider .slick-list{
    padding: 10px;
    margin: -10px;
}