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

    /** SPECIFIC **/
    --color-primary: #FFD200;
    --color-secondary: #000;
    --color-default: #2F2F2F;
    --color-border-deafult: rgba(0, 0, 0, 0.1);
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

.text h2 {
    font-size: var(--font-24);
    line-height: 1.2;
    font-weight: 700;
}

.mainContact-content .text h2 {
    font-size: var(--font-40);
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000;
    transition: all .2s linear;
}

a:hover, a:focus {
    color: inherit;
}

/**
 * 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 {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

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

.container-small {
    max-width: 1160px;
}

.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-download {
    -webkit-mask-image: url('../images/icons/download.svg');
    mask-image: url('../images/icons/download.svg');
}

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

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

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

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

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

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

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

/**
 * THEMES
 */

.btn-lg {
    font-size: 14px;
    letter-spacing: 0.05em;
    min-height: 46px;
    padding: 5px var(--space-25);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: var(--space-25);
    justify-content: center;
}

.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: #000;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


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

.btn-primary[disabled],
.btn-primary[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;
    color: var(--color-secondary);
}

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

.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: transparent;
    border-color: #fff;
    color: #fff;
}

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

.btn-white[disabled],
.btn-white[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: var(--color-secondary);
    color: var(--color-secondary);
}

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

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

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

.btn-toggle,
.btn-toggle:hover,
.btn-toggle:focus,
.btn-toggle:active,
.btn-toggle.active:focus,
.btn-toggle:hover:focus,
.btn-toggle:hover:active,
.btn-toggle:focus:active {
    background-color: transparent;
    border-color: #000;
    color: #000;
}

.btn-toggle.active .icon {
    transform: rotate(180deg);
}

.btn-toggle .icon {
    display: block;
    width: 15px;
    height: 18px;
}

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

.btn-black[disabled],
.btn-black[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: #E6E6E6;
    border-color: #E6E6E6;
    color: #000;
}


.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: #E6E6E6;
    border-color: #E6E6E6;
}


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

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

@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-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-secondary);
    }

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

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

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

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

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

/**
 * BUTTONS
 */

.btn {
    display: inline-flex;
    align-items: center;
    border-radius: 0;
    justify-content: center;
    transition: all 0.3s;
}

.btn-circle {
    width: 50px;
    flex-shrink: 0;
    height: 50px;
    border-radius: 50%;
}

.btn-circle .icon {
    display: flex;
}

/**
 * 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: 14px;
    line-height: 2.1428em;
}

/** 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(odd) {
    background: #ededed;
}

.text table td {
    padding: 10px 20px;
}

/**
 * HEADER
 */

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

#content {
    padding-top: 167px;
}

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

.header-main-right {
    display: flex;
    align-items: center;
}

.logo {
    width: 122px;
}

.logo a {
    display: block;
}

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

#main-menu {
    margin-right: auto;
}

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

#main-menu > ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

#main-menu > ul > li > a {
    display: block;
    position: relative;
    padding: 12px calc(var(--space-25) + 10px);
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 10px;
}

#main-menu > ul > li.has-submenu > a:before {
    content: '';
    position: absolute;
    left: -18px;
    bottom: 0;
    z-index: 2;
    width: 18px;
    height: 18px;
    background-image: url("../images/menu-hover-left.png");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .2s linear;
    opacity: 0;
    pointer-events: none;
}

#main-menu > ul > li.has-submenu > a:after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: 0;
    z-index: 2;
    width: 18px;
    height: 18px;
    background-image: url("../images/menu-hover-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .2s linear;
    opacity: 0;
    pointer-events: none;
}

@media screen and (min-width: 1140px) {
    #main-menu > ul > li.has-submenu:hover > a:before,
    #main-menu > ul > li.has-submenu:hover > a:after {
        opacity: 1;
    }

    #main-menu > ul > li.has-submenu:hover > a {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        background-color: #000;
        color: #fff;
    }

    #main-menu > ul > li.has-submenu:hover .main-submenu-wrapper {
        opacity: 1;
    }

    #main-menu > ul > li.has-submenu:hover .main-submenu-wrapper .main-submenu {
        pointer-events: initial;
    }

    #main-menu > ul > li.has-submenu:hover:before {
        opacity: 1;
    }
}

#main-menu > ul > li.has-submenu:before {
    content: '';
    position: fixed;
    z-index: 4;
    left: 0;
    bottom: 0;
    right: 0;
    top: 167px;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all .2s linear;
}

.main-submenu-wrapper {
    position: fixed;
    top: 100px;
    z-index: 5;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all .2s linear;
}

header.sticky .main-submenu-wrapper {
    top: 95px;
}

.main-submenu-inner {
    position: relative;
    width: 100%;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-padding);
}

.main-submenu-wrapper:not([data-type="0"]) .main-submenu-inner:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.main-submenu {
    width: 100%;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: var(--space-40);
}

.main-submenu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(2 * var(--space-40));
    max-height: calc(100vh - 130px - (2 * var(--space-40)));
    overflow: auto;
}

.submenu-tiles::-webkit-scrollbar,
.main-submenu-columns::-webkit-scrollbar {
    width: 3px;
}

.submenu-tiles::-webkit-scrollbar-track,
.main-submenu-columns::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

.submenu-tiles::-webkit-scrollbar-thumb,
.main-submenu-columns::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

/* Styl dla przeglądarki Firefox */
@-moz-document url-prefix() {
    .submenu-tiles,
    .main-submenu-columns {
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) var(--color-secondary);
    }
}

.submenu-tiles {
    max-height: calc(100vh - 130px - (2 * var(--space-40)));
    overflow: auto;
}

#main-menu ul li.has-categories > ul {
    display: none;
}

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

#main-menu > ul > li > a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    transition: all .2s linear;
}

#main-menu > ul > li.active > a {
    background-color: #000;
    color: #fff;
}

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

.categories-wrapper {
    position: fixed;
    top: 94px;
    width: 100%;
    z-index: -1;
    max-height: calc(100% - 94px);
    left: 0;
    pointer-events: none;
    display: flex;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
    border-top: 10px solid var(--color-primary);
    background-color: #fff;
}

.categories-shadow {
    position: absolute;
    top: 100%;
    content: "";
    height: 100vh;
    width: 100%;
    display: block;
    z-index: -1;
    background-color: rgba(56, 44, 96, 0.9);
}

.categories-wrapper .container > ul {
    max-height: 100%;
    overflow: auto;
}

.categories-wrapper .container > ul::-webkit-scrollbar {
    width: 5px;
}

.categories-wrapper .container > ul::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: var(--color-primary);
}

#main-menu .has-categories.toggled .categories-wrapper {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.categories-wrapper > .container > ul {
    margin: 0 -10px;
}

.categories-wrapper > .container > ul > li {
    width: 16.666%;
    padding: 0 10px;
}

.categories-wrapper > .container > ul > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

#main-menu .categories-wrapper a {
    text-transform: unset;
    color: #000;
    font-size: 14px;
}

#main-menu .categories-wrapper a > * {
    transition: color 300ms;
}

.categories-wrapper a:hover,
.categories-wrapper a:hover > * {
    color: var(--color-secondary) !important;
}

.categories-wrapper li.active > a,
.categories-wrapper li.active > a * {
    color: var(--color-secondary) !important;
}

.categories-wrapper > .container > ul > li > ul {
    display: flex;
    gap: 5px;
    flex-direction: column;
    position: static;
    margin-top: var(--space-25);
}

.categories-wrapper .icon-wrapper {
    width: 21px;
    display: flex;
    color: var(--color-pink);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 21px;
}

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

.categories-wrapper .container > ul > li > a > .box-title {
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--font-24);
    text-transform: uppercase;

}

/*#main-menu li > ul > li > ul {*/
/*    top: 0;*/
/*    left: 100%;*/
/*}*/
.btn-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-pink);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-color 300ms;
}

.btn-menu-close:hover {
    background-color: var(--color-secondary);
}

.btn-menu-close span {
    width: 20px;
    height: 3px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.btn-menu-close span:nth-child(2n) {
    transform: rotate(-45deg);
}

.categories-wrapper {
    padding: var(--space-60) 0;
}

.categories-wrapper ul {
    display: flex;
    gap: var(--space-25) 0;
    flex-wrap: wrap;
}

/*#main-menu li:hover > ul {*/
/*    display: flex;*/
/*}*/

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

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

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

.mainsearch .form-element-container {
    flex-grow: 1;
    margin-right: -5px;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    box-shadow: none;
    color: #000;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.mainsearch input.form-control::placeholder {
    color: #000;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #000;
    width: 50px;
    height: 46px;
    border: none;
    border-radius: 5px;
    background-color: #f5f5f5;
    transition: all 0.2s linear;
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}

.mainsearch-submit:hover {
    color: var(--color-primary);
    background-color: #000;
}

.mainsearch-submit .icon {
    display: flex;
    max-width: 15px;
}

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

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

/*
* USER NAV
*/

.header-main .user-nav {
    display: flex;
    align-items: stretch;
    padding-right: var(--space-60);
}

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

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

.header-main .user-nav-item-inner .caption {
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 12px;
}

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

.header-main .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-main .user-nav-item .icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/**
 * FOOTER
 */

.footer-top-info {
    background-color: #F3CA0D;
    color: #000;
    padding-top: calc(var(--space-60) + 10px);
    padding-bottom: calc(2 * var(--space-40) + 8px);
}

.footer-top-info .section-title {
    font-weight: 700;
}

.footer-cols {
    display: flex;
    padding-bottom: calc(var(--space-50) + var(--space-25) - 4px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-col:last-of-type {
    padding-right: 0;
}

.footer-bottom-text {
    padding: calc(var(--space-25) + 3px) 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.1428em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-col {
    padding-right: 10px;
    width: 17%;
}

.footer-col:nth-child(4) {
    width: 31%;
}

.footer-col:last-of-type {
    width: 18%;
}

.footer-col-title {
    color: #000;
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: calc(var(--space-25) + 3px);
}

.footer-logo {
    margin-bottom: calc(var(--space-25) + 7px);
}

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

.footer-contact {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    line-height: 2.1428;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-contact-item {
    color: #000;
    transition: color 0.3s;
}

a.footer-contact-item:hover {
    color: var(--color-secondary);
}

.footer-contact-item.footer-address {
    width: 100%;
}

.footer-links li a {
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 2.1428;
    color: #000;
    transition: color 0.3s;
}

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

.footer-logotypes {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.footer-logotype {
    padding: 8px;

}

.footer-logotype-inner {
    width: 120px;
    height: 70px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-main {
    padding-top: calc(var(--space-60) + 10px);
}

.footer-top-info-links {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.footer-top-info-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    width: 25%;
    padding: 5px;
}

.footer-top-info-link:hover {
    color: var(--color-secondary);
}

.footer-top-info-link-inner {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 14px;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    transition: all 0.3s;
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: 14px;
}

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

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

.footer-bar-content > *:not(:last-child) {
    margin-right: 24px;
    padding-right: 24px;
    position: relative;
}

.footer-bar-links:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background: #000;
}

.footer-bar-links {
    font-size: 0;
    text-transform: uppercase;
}

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

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

.footer-bar-links a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.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;
    border-radius: 0;
}

/* 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: 0px;
    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 0px 0px 0;
    background-color: transparent;
    border-color: var(--color-default);
    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: #e10121;
        color: #e10121;
    }

    .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: 6px;
    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: 12px;
    font-size: 14px;
    padding-right: 36px;
    color: #555;
}

.form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 4px;
}

.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: 4px;
    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: #000;
}

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

.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: #000;
    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: #000;
    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)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -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);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * 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;
    margin-bottom: var(--space-60);
}

.gallery-list {
    margin: -5px;
    font-size: 0;
}

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

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

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

.gallery-picture-hover .icon {
    width: 30px;
    height: 30px;
    display: block;
    color: #fff;
}

.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(255, 210, 0, 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-slider:not(.slick-initialized) .main-slide + .main-slide {
    display: none;
}

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

.main-slide {
    position: relative;
}

.main-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

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

.main-slider-arrows .btn-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc((100dvw - 1640px) / 2);
    z-index: 1;
}

.main-slider-arrows .btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc((100dvw - 1640px) / 2);
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-40);
}

.section-header:has(.section-header-right) {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.section-header:has(.section-header-right):before {
    content: '';
}

.section-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-60);
}

.btn-link {
    color: #000;
}

.arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.btn-arrow {
    width: 50px;
    height: 50px;
    pointer-events: initial;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all .2s linear;
    cursor: pointer;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .btn-arrow:hover {
        color: #000 !important;
        background-color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }
}

.section-title {
    font-weight: 700;
    font-size: calc(var(--font-30) + 2px);
    text-align: center;
}


.mainCategories {
    margin: calc(var(--space-50) + 5px) 0 calc(var(--space-50) + var(--space-25) + 5px);
    padding: 0;
}

.mainCategories[style*="background"] {
    padding: calc(var(--space-50) + 5px) 0 calc(var(--space-50) + var(--space-25) + 5px);
    margin: 0;
}

.mainCategories[style*="background-color: #ffffff;"] {
    margin: calc(var(--space-50) + 5px) 0 calc(var(--space-50) + var(--space-25) + 5px);
    padding: 0;
}

section {
    background: no-repeat;
    background-size: cover;
}

.mainCategories-list {
    display: flex;
    flex-wrap: wrap;
    margin: -18px;
}

.mainCategories-item {
    display: block;
    width: 14.2857%;
    padding: 18px;
}

.mainCategories-item-inner {
    background: #F5F5F5;
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    aspect-ratio: 1;
    width: 100%;
    text-align: center;
    padding: var(--space-25);
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.4s;
}

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

.mainCategories-item-inner .icon {
    height: 90px;
}

.mainCategories-item-name {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ */
.page-header {
    padding: 0;
    border: none;
    margin: 0;
    margin-bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.page-title {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: calc(var(--font-36) - 4px);
}

.page-subtitle {
    color: var(--color-primary);
    text-align: center;
    font-weight: 700;
    font-size: var(--font-24);
}

.page-teaser {
    margin: var(--space-25) auto 0;
}

.faq-row {
    border: 1px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.1);
    transition: border-color 300ms;
}

.faq-row, .faq-row .text {
    font-size: 14px;
}

.faq-row:last-child {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.faq-top, .faq-bottom {
    padding: 15px calc(var(--space-40) + 5px);
}

.faq-arrow {
    transition: transform 300ms;
}

.faq-bottom {
    padding-top: 0;
    display: none;
}

.faq-title {
    transition: color 300ms;
}

.faq-top {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.faq-top:hover .faq-title {
    color: var(--color-secondary);
}

.faq-row:hover, .faq-row.open {
    border-color: var(--color-secondary) !important;
}

.faq-row.open .faq-title {
    color: var(--color-secondary);
}

.faq-row.open .faq-arrow {
    transform: scale(-1);
}

.faq-list {
    margin-bottom: var(--space-60);
}

/* about us */
.page-bananer img {
    max-width: 100%;
    display: block;
}

.page-bananer {
    display: block;
    margin-bottom: var(--space-50);
}

.aboutUs-top {
    margin-bottom: var(--space-50);
}

.aboutUs-row {
    gap: calc(var(--space-50) * 3);
    display: flex;
    align-items: center;
}

.aboutUs-img {
    width: 50%;
    flex-shrink: 0;
}

.aboutUs-list:not(.position-switched) .aboutUs-img {
    width: 34%;
}

.aboutUs-right {
    flex-grow: 1;
}

.aboutUs-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.aboutUs-list:not(.position-switched) .aboutUs-row + .aboutUs-row {
    padding-top: var(--space-60);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.aboutUs-list:not(.position-switched) {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.position-switched .aboutUs-row:nth-child(2n + 1) {
    flex-direction: row-reverse;
}

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

.aboutUs-title {
    font-size: var(--font-24);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.aboutUs-text {
    font-size: 14px;
}

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

.contact-form-container h2 {
    text-align: left;
    font-size: var(--font-24);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-40);
}

.contact-left ul li, .contact-left .text {
    font-size: 18px;
    line-height: 1.5;
}

.contact-left .wrapper {
    display: flex;
    margin-bottom: 10px;
    gap: 15px;
    align-items: center;
}

.contact-left .wrapper i {
    width: 20px;
}

.contact-left .wrapper a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 500px;
}

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

.contact-logo {
    margin-bottom: var(--space-40);
}

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

.files-list {
    display: flex;
    align-items: stretch;
    margin: -7px;
    justify-content: center;
    flex-wrap: wrap;
}

.container-medium .file-box {
    width: 25%;
}

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

.file-box-inner {
    display: flex;
    text-align: center;
    padding: var(--space-40);
    color: #000;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
    flex-direction: column;
    height: 100%;
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    transition: background-color 300ms, border-color 300ms;
}


.has-lines {
    position: relative;
}


.file-box-lines {
    pointer-events: none;
}


.file-box-inner:hover {
    border-color: var(--color-secondary);
    background-color: #fff;
}


.file-box-title {
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.file-box-image {
    margin-bottom: 15px;
}

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

.download-section {
    margin-bottom: var(--space-60);
}

.text-page-content {
    margin-bottom: var(--space-60);
}

.shop-product-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: calc(-1 * (var(--space-25) - 5px)) !important;
}

.shop-product-list .shop-product-box {
    width: 20%;
    padding: calc(var(--space-25) - 5px);
}

.product-container {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--space-25) - 5px);
    height: 100%;
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .product-container:hover {
        border-color: transparent;
    }
}

.product-container .product-title {
    font-size: 15px;
    margin-top: 15px;
    line-height: 1.25;
    min-height: calc(2em * 1.25);
    font-weight: 300;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
}

.product-image-wrapper::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 68%;
}

.product-image {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: multiply;
    display: block;
}

.product-label {
    position: absolute;
    top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 15px;
    left: 10px;
}

.shop-product-price .price-gross .price-inner,
.shop-product-price .price-net .price-inner {
    display: flex;
    flex-direction: column-reverse;
}


.agency-list {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1);
}

.agency-item {
    width: 25%;
    padding: var(--space-25);
}

.agency-item-inner {
    aspect-ratio: 1;
    width: 100%;
    transition: background-color 300ms, border-color 300ms;
    display: flex;
    height: 100%;
    flex-direction: column;
}

.agency-item-inner:hover {
    border-color: var(--color-secondary);
    background-color: #F5F5F5;
}

.agency-top img {
    display: block;
    width: 100%;
}

.agency-bottom {
    flex-grow: 1;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: var(--space-25) var(--space-40);
    text-align: center;
    align-items: center;
    justify-content: center;
}

.agency-bottom .btn-wrapper {
    height: 46px;
    display: flex;
    align-items: center;
}

.agency-item-inner:after, .agency-item-inner:before {
    background: #fff;
}

.agency-item-inner .box-lines:before, .agency-item-inner .box-lines:after {
    background: #fff;
}

.agency-title {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
}

.agency-wrapper {
    margin-bottom: var(--space-60);
}

.agency-bottom .btn {
    height: 0;
    border: none;
    padding: 0 var(--space-25);
    min-height: unset;
    overflow: hidden;
    pointer-events: none;

    transition: height 300ms;
}

.agency-item-inner:hover .agency-bottom .btn {
    height: 46px;
}

.text-big, .text .text-big {
    margin-bottom: var(--space-40);
    text-align: center;
    color: var(--color-primary);
    font-size: calc(var(--font-30) + 2px);
}

.text .text-big {
    font-weight: 400;
    text-align: left;
}

.text-big a {
    font-weight: 700;
}

.contact-row {
    display: flex;
    background-color: #F5F5F5;
    justify-content: space-between;
    gap: var(--space-25);
    padding: var(--space-25) var(--space-50);
    align-items: center;
    font-size: 20px;

}

.contact-row .name {
    text-transform: uppercase;
    font-weight: 600;
}

.contact-row + .contact-row {
    margin-top: calc(var(--space-25) + 5px);
}

.contact-row-content {
    display: flex;
    width: 66.666%;
}

.contact-row-content .mail-wrapper {
    color: var(--color-pink);
}

.contact-row-content .phone-wrapper {
    color: var(--color-secondary);
}

.contact-row-content .icon-wrapper {
    border: 1px solid currentColor;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-color 300ms;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-row-content .icon-wrapper .icon {
    width: 19px;
    height: 19px;
    display: block;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: color 300ms;
}

.contact-row-content a + a {
    margin-left: auto;
}

.contact-row-content .phone {
    width: 44%;
}

.contact-row-content .mail {
    padding-right: var(--space-25);
}

.contact-row-content a {
    display: flex;
    gap: var(--space-25);
    align-items: center;
}

.contact-row-content a:hover .icon-wrapper {
    background-color: currentColor;
}

.contact-row-content a:hover .icon-wrapper .icon {
    color: #fff;
}

.agency-contact {
    margin-bottom: var(--space-60);
}

.box-lines {
    inset: 0;
}

.tl {
    position: absolute;
    top: 0;
    left: 0;
}

.tr {
    position: absolute;
    top: 0;
    right: 0;
}

.bl {
    position: absolute;
    bottom: 0;
    left: 0;
}

.br {
    position: absolute;
    bottom: 0;
    right: 0;
}

.box-lines > *:before {
    width: 1px;
    height: 0;
    background-color: var(--color-primary);
    content: "";
    display: block;
    transition: all 300ms;
}

.br:before {
    margin-left: auto;
}

.tr:after, .tl:after {
    position: absolute;
    top: 0;
}

.tr:after {
    right: 0;
}

.has-lines:hover .box-lines > *:after {
    width: 40px;
}

.has-lines:hover .box-lines > *:before {
    height: 40px;
}

.box-lines > *:after {
    height: 1px;
    transition: all 300ms;
    width: 0;
    background-color: var(--color-primary);
    content: "";
    display: block;
}

.agency-item-inner:hover .box-lines > *:before, .agency-item-inner:hover .box-lines > *:after {
    background-color: var(--color-secondary);
}

.agency-item .box-lines > *:after, .agency-item .box-lines > *:before {
    background-color: #e6e6e6;
}

.agency-item .box-lines > *:after {
    width: 40px;
}

.agency-item .box-lines > *:before {
    height: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns:30% 40% 30%;
}

.agency-form-section {
    background: url("../images/form-bg.webp") center center /cover;
    margin-bottom: var(--space-60);
    padding: calc(var(--space-50) * 2) 0;
}

.agency-form-title {
    padding-right: calc(var(--space-60) * 2);
    font-size: calc(var(--font-30) + 2px);
    font-weight: 600;

    color: var(--color-primary);
}

.agency-form-section form .form-element-name {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.agency-form-section form .form-control {
    border-radius: 0;
    border: none;
}

.agency-form-section form .row-flex-center .btn {
    margin-top: var(--space-40);
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #fff;
}

.breadcrumb-absolute {
    position: absolute;
    z-index: 2;
    left: var(--space-50);
    right: var(--space-50);
    top: 0;
}

.btns-row {
    margin-top: var(--space-60);
    display: flex;
    justify-content: space-between;
}

.info-column .text span[style^="background-color"] {
    display: block;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;

}


/*ASIDE*/
.menuList-toggle {
    cursor: pointer;
}

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

.asidedPage.page-stripes {
    background-size: cover;
}

.aside {
    position: relative;
    width: 300px;
    color: var(--color-primary);
    pointer-events: auto;
    margin-bottom: var(--space-60);
    margin-top: calc(48px + var(--space-60));
}

.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: 268px;
    left: 0;
    font-size: 26px;
    background-color: var(--color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.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;
}

.back-to-parent-btn {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.back-to-parent-btn .icon-wrapper {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-third);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
}

.back-to-parent-btn .icon-wrapper .icon {
    width: 11px;
    height: 8px;
    display: block;
}

@media screen and (min-width: 1140px) {
    .back-to-parent-btn:hover {
        color: var(--color-third);
    }
}

.aside-title {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-25);
    font-size: 16px;
}

.asidedPage-content {
    flex-grow: 1;
    width: 100%;
    margin-bottom: var(--space-60);
}

@media screen and (min-width: 1140px){
    .aside + .asidedPage-content{
        padding-left: var(--space-60);
        width: calc(100% - 300px);
    }
}

.menuList {
    overflow-y: auto;
    max-height: 100%;
}

.menuList-group {
    position: relative;
    transition: color 0.4s, background-color 0.4s;
}

.menuList ul {
    font-size: 0;
    display: block;
}

.menuList ul > li > .menuList-group > a {
    position: relative;
}

.menuList ul > li {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.menuList > ul > li:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menuList ul > li > .menuList-group > a {
    font-size: 14px;
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    text-transform: uppercase;
    color: #000;
}

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

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

.menuList > ul > li > .menuList-group > a {
    padding: 15px var(--space-25);
    position: relative;
    transition: color 0.3s, background-color 0.3s;
}

.menuList > ul li {
    color: var(--color-primary);
    position: relative;
}

.menuList > ul li a {
    color: inherit;
    letter-spacing: 0;
}

.menuList > ul > li > ul > li {
    border-radius: 0;
    border-top: 0;
}

.menuList ul > li.active > ul {
    padding: 20px;
}

.menuList > ul > li > ul > li > .menuList-group > a {
    padding: 0 var(--space-25);
    text-transform: unset;
    display: flex;
    transition: color 300ms;
    align-items: center;
    font-size: 13px;
    line-height: 1.25;
}

.menuList > ul > li > ul > li + li {
    margin-top: 10px;
}

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

.menuList > ul > li > ul > li > .menuList-group > a:before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: 0px;
    color: #000;
    margin-left: -25px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 10px;
}

.menuList > ul > li > ul > li > ul > li {
    border: none;
}

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

.menuList > ul > li > ul > li > ul > li > .menuList-group > a {
    padding-left: 10px;
    text-transform: initial;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.85;
    transition: color 0.3s;
}

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

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

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

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

.menuList ul > li > ul {
    display: none;
    /*background-color: rgba(20, 18, 21, 0.05);*/
}

.menuList-toggle {
    background-color: transparent;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 50px;
    height: 100%;
    padding: 0;
    text-align: center;
    border: none;
    font-size: 0.625rem;
    color: #141215;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s;
}

.menuList-toggle .icon {
    transition: transform 0.4s;
    width: 10px;
    height: 11px;
    flex-shrink: 0;
}

.menuList ul > li.slided > .menuList-group > .menuList-toggle > .icon {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.shop-product-price .price-gross,
.shop-product-price .price-net {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-product-price .price-net .caption,
.shop-product-price .price-gross .caption {
    font-size: 18px;
    line-height: 2;
    font-weight: 400;
    color: #000;
}

.product-column-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    line-height: 3.2857;
    color: var(--color-default);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.product-column-info {
    margin-bottom: var(--space-40);
}

.product-column-content .column-header {
    border-bottom: 1px solid #000;
    padding-bottom: var(--space-50);
}

.price-kind {
    font-size: 14px;
    letter-spacing: 0.7px;
}

.price-kind label {
    margin-left: 8px;
}

.configurator-header {
    font-size: var(--font-24);
    font-weight: 700;
    color: #000;
    margin-bottom: var(--space-25);
}

.configurator-field-container .form-element-container {
    display: flex;
    align-items: center;
}

.shop-configurator-label {
    display: block;
    width: 38%;
    padding-right: 10px;
}

.shop-configurator-label .form-element-name {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.shop-configurator-options-panel {
    width: 62%;
}

.configurator-field-container > .row + .row {
    margin-top: 20px;
}

.quantity-table tfoot {
    display: none;
}

.configurator-field-container .select2-container--default .select2-selection--multiple,
.configurator-field-container .select2-container .select2-selection--single {
    border-radius: 5px;
    border-color: rgba(0, 0, 0, 0.1);
}

.configurator-field-container .select2-selection__clear {
    display: none;
}

.configurator-field-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    font-size: 14px;
    padding-left: 12px;
}

.input-group-addon {
    border-radius: 0;
}

.add-to-basket-wrapper {
    display: flex;
    justify-content: center;
}

.shop-configurator-options-panel .checkboxradio-container {
    padding-right: 0;
}

.shop-configurator-options-panel .checkboxradio-container .row {
    margin: -3px -10px;
}

.shop-configurator-options-panel .checkboxradio-container .shop-conf-chkEle {
    padding: 3px 10px;
}

.shop-configurator-options-panel .checkboxradio-container label {
    display: flex;
}

.shop-conf-chkEle-hasRadio input {
    height: 15px !important;
    width: 15px;
    margin-top: 2px;
    margin-right: 5px;
}

.add-to-basket.not-work {
    opacity: 0.2;
}

.popover-title,
.popover-content {
    padding: 0;
}

.popover-title {
    background-color: transparent;
    border-bottom: 0;
}

.popover {
    padding: 8px 14px;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pagination-wrapper ul li.prev a .icon {
    transform: rotate(90deg);
}

.pagination-wrapper ul li.next a .icon {
    transform: rotate(-90deg);
}

.configurator-selects .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: transparent !important;
}

.price-individual {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-top: var(--space-50);
    padding-top: var(--space-25);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price-individual label {
    margin-left: 8px;
}

.configurator-field-container .form-element-container {
    position: relative;
}

.configurator-field-container .form-element-container .alert-block {
    position: absolute;
    bottom: -12px;
    right: 15px;
}

.configurator-field-container .form-element-container .alert-block .error {
    color: red !important;
    text-transform: initial;
}

.configurator-field-container .shop-configurator-options-panel.has-error {
    padding-bottom: 10px;
}

.configurator-field-container .shop-configurator-options-panel.has-error .select2-selection--single {
    border: 1px solid red;
}

.shop-quantity-box-inner {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.has-error .form-control {
    border-color: red;
}

.form .alert-block .error {
    color: red !important;
}

.has-error .form-control-feedback {
    color: red;
}

.payment-box {
    margin: 0 auto;
    max-width: 580px;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: var(--space-25);
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-box svg {
    display: block;
    margin: 0 auto;
    max-width: 150px;
}

.payment-box .btn {
    margin-top: 15px;
}

.payment-box .text {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.payment-box-left > * {
    display: block;
    max-width: 100%;
}

.payment-box-counter {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-box-right .btn {
    margin-top: 10px;
}

.payment-caption {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.copy-delivery-data {
    padding: 5px 12px;
    min-height: 31px;
    font-size: 13px;
    letter-spacing: 0;
}

ul.product-specification {
    list-style: none;
}


.text ul.product-specification > li::before {
    content: none;
}

.product-specification li {
    display: flex;
    font-size: 15px;
    font-weight: 300;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-specification li .name,
.product-specification li .value {
    width: 50%;
}

.product-specification li .name {
    padding-right: 10px;
}

.product-specification li .value {
    font-weight: 700;
}

.product-specification li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.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;
}

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

#page {
    flex-grow: 1;
}

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

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

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-60);
    padding: 8px 0;
    height: 40px;
}

.header-mid-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-60);
    padding: 15px 0;
    transition: all .2s linear;
}

header.sticky .header-mid-inner {
    padding: 10px 0;
}

.header-mid-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    max-width: 650px;
    gap: var(--space-25);
}

.user-nav-item-inner {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .user-nav-item-inner:hover {
        color: #000;
        text-decoration: underline;
    }
}

.only-rwdPanel {
    display: none !important;
}

.rwdPanel .only-rwdPanel {
    display: flex !important;
}

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

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

.header-top-link,
.header-top-contact-link {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .header-top-link:hover,
    .header-top-contact-link:hover {
        color: #000;
        text-decoration: underline;
    }
}

.header-top-contact-link + .header-top-contact-link {
    position: relative;
}

.header-top-contact-link + .header-top-contact-link:before {
    content: '';
    position: absolute;
    left: calc(-0.5 * var(--space-40));
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background-color: #000;
}

.mainImages {
    margin: calc(var(--space-50)) 0;
    padding: 0;
}

.mainImages[style*="background"] {
    padding: calc(var(--space-50)) 0;
    margin: 0;
}

.mainImages[style*="background-color: #ffffff;"] {
    margin: calc(var(--space-50)) 0;
    padding: 0;
}

.mainImages-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-50);
}

.mainImages-item-icon {
    color: inherit;
}

.mainImages-item {
    display: flex;
    align-items: flex-start;
    gap: calc(2 * var(--space-50));
}

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

.mainImages-item-image {
    width: calc(50% - calc(2 * var(--space-50)));
    flex-shrink: 0;
}

.mainImages-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.mainImages-item-title {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 700;
}

.mainImages-item-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-60) calc(2 * var(--space-60));
    margin-top: calc(var(--space-60) - var(--space-25));
}

.mainImages-item-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: calc(var(--font-24) - 4px);
    font-weight: 700;
    text-align: center;
    transition: all .2s linear;
}

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

.mainImages-item-icon .icon {
    height: 45px;
}

.mainContact {
    background-color: #F5F5F5;
}

.mainContact-inner {
    display: flex;
    padding-top: calc(var(--space-60) + 10px);
    padding-bottom: calc(2 * var(--space-40));
}

.mainContact-content {
    width: 50%;
    padding-right: calc(2 * var(--space-60));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-60);
}

.mainContact-inner .contact-form-container {
    position: relative;
    width: 50%;
    padding-left: calc(2 * var(--space-60));
}

.mainContact-inner .contact-form-container:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: calc(100% - 30px);
    background-color: rgba(0, 0, 0, 0.1);
}

.mainContact-person {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-40);
}

.mainContact-person-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--space-25) + 5px);
    margin-top: var(--space-40);
}

.mainContact-person-name {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 700;
}

.mainContact-person-link {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 3px);
    font-weight: 300;
    font-size: var(--font-24);
}

@media screen and (min-width: 1140px) {
    .mainContact-person-link:hover {
        text-decoration: underline;
    }
}

.mainContact-person-link .icon {
    width: 42px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.mainContact-person-image img {
    display: block;
    max-width: 100%;
}

.mainContact .form-control {
    border: none;
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.mainContact .form-control::placeholder {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.mainContact .form-element-name {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    color: #000;
}

.dropzone-uploader.well {
    background-color: #fff;
    border: 1px dashed #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    height: 81px;
    border-radius: 0;
}

.mainContact .form button.captcha-refresh {
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.1);
}


.product-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + (2 * var(--space-25)));
    margin: calc(-1 * var(--space-25));
}

.discount-group-section + .discount-group-section {
    margin-top: var(--space-60);
}

.product-list-slider {
    width: calc(100% + (2 * var(--space-25)));
    margin: calc(-1 * var(--space-25));
}

.product-image-list-wrapper {
    display: flex;
}

.shop-product-slider-image {
    width: 40%;
    padding-right: calc(2 * var(--space-25));
}

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

.shop-product-slider-image + .product-list {
    width: calc(60% + (2 * var(--space-25)));
}

.shop-product-slider-image + .product-list .shop-product-box {
    width: 33.3333% !important;
}

.main-discount-groups {
    margin: var(--space-60) 0 calc(var(--space-50) + var(--space-25));
    padding: 0;
}

.main-discount-groups[style*="background"] {
    padding: var(--space-60) 0 calc(var(--space-50) + var(--space-25));
    margin: 0;
}

.main-discount-groups[style*="background-color: #ffffff;"] {
    margin: var(--space-60) 0 calc(var(--space-50) + var(--space-25));
    padding: 0;
}

.arrows:has(.swiper-button-lock) {
    display: none;
}

#bot-menu > ul > li > a {
    display: block;
    padding: 15px var(--space-50);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

header.sticky #bot-menu > ul > li > a {
    padding: 9px var(--space-50);
}

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

#bot-menu > ul {
    display: flex;
}

#bot-menu > ul > li {
    position: relative;
}

#bot-menu > ul > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    transform: translateY(-50%);
    background-color: #333333;
}


#bot-menu > ul > li:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 1px;
    height: 10px;
    transform: translateY(-50%);
    background-color: #333333;
}

.main-submenu-column-item-top {
    display: flex;
    align-items: center;
    gap: var(--space-40);
}

.main-submenu-column-item-top > .icon-wrapper {
    width: 196px;
    height: 196px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.main-submenu-column-item-top > .icon-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-submenu-column-item-top-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-submenu-column-item-name {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 700;
}

.main-submenu-column-item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-40) + 5px);
}

#main-menu .main-submenu-column-item-columns > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px calc(var(--space-60) + 15px);
}

#main-menu .main-submenu-column-item-columns.columns-3 > ul {
    grid-template-columns: 1fr 1fr 1fr;
}

#main-menu .main-submenu-column-item-columns > ul > li > a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

#main-menu .main-submenu-column-item-columns > ul > li > a .icon {
    width: 21px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--color-primary);
}

#main-menu .main-submenu-column-item-columns > ul > li > ul > li {
    display: block;
}

#main-menu .main-submenu-column-item-columns > ul > li > ul > li > a {
    display: block;
    font-size: 14px;
    line-height: 2.1428em;
}


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

#main-menu .main-submenu-column-item-columns > ul > li {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.submenu-tiles {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: calc(var(--space-40) + 5px);
}

.submenu-tiles.tiles-big {
    grid-template-columns: repeat(5, 1fr);
}

.submenu-tile-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--space-25) - 3px);
}

.submenu-tile-item-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    transition: all .2s linear;
}

.submenu-tile-item:hover .submenu-tile-item-name {
    color: var(--color-primary);
}

.submenu-tile-item .icon-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.submenu-tile-item .icon-wrapper .submenu-tile-hover {
    position: absolute;
    inset: 0;
    transition: all .2s linear;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-25);
    opacity: 0;
    pointer-events: none;
}

.submenu-tile-item .icon-wrapper .submenu-tile-hover img {
    display: block;
    max-width: 72px;
    object-fit: contain;
}

@media screen and (min-width: 1140px) {
    .submenu-tile-item:hover .icon-wrapper .submenu-tile-hover {
        opacity: 1;
    }
}

.submenu-tile-item .icon-wrapper img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


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

.pagination-wrapper > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 630px;
    width: 100%;
}

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

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

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

.faq-section {
    padding: var(--space-60) 0;
    background-color: #f5f5f5;
}

.faq-section .section-title {
    text-align: left;
    font-size: var(--font-24);
}

.faq-section .section-heading {
    margin-bottom: calc(var(--space-25) + 5px);
}

.faq-section-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 10px 20px;
    color: #000;
    cursor: pointer;
    transition: all .2s linear;
}

.faq-item {
    display: block;
    background-color: #fff;
}

.faq-item-title {
    font-size: 15px;
    font-weight: 600;
}

.faq-item-teaser {
    display: none;
    padding: calc(var(--space-25) + 7px) 20px;
}

.faq-item-heading .icon {
    width: 12px;
    flex-shrink: 0;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .faq-item-heading:hover {
        color: #000;
        background-color: var(--color-primary);
    }
}

.faq-item.active .faq-item-heading {
    color: #000;
    background-color: var(--color-primary);
}

.faq-item.active .faq-item-heading .icon {
    transform: scaleY(-1);
}

.product-list .alert {
    width: 100%;
    margin: var(--space-25);
}

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

.product-view-columns {
    display: flex;
    width: calc(100% + (2 * clamp(var(--space-25), 2.6vw, var(--space-50))));
    margin: 0 calc(-1 * clamp(var(--space-25), 2.6vw, var(--space-50)));
}

.product-view-col {
    width: 33.3333%;
    padding: var(--space-60) clamp(var(--space-25), 2.6vw, var(--space-50));
}

.product-nav-slider .product-slide {
    width: 20%;
    padding: 0 4px;
}

.product-nav-slider {
    width: calc(100% + 8px);
    margin: 12px -4px 0 -4px;
}

.product-view-columns-bottom {
    background-color: #f7f7f7;
}

.product-view-title {
    font-size: var(--font-24);
    font-weight: 700;
}

.product-view-col-top-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: var(--space-40);
    padding-bottom: var(--space-25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-view-col-top-info-row-item {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    transition: all .2s linear;
}

.product-view-col-top-info-row-item .icon {
    width: 17px;
    flex-shrink: 0;
}

.product-view-col-top-info-row-item .icon svg {
    width: 100%;
}

@media screen and (min-width: 1140px) {
    a.product-view-col-top-info-row-item:hover {
        color: var(--color-primary);
    }
}

.product-view-col-instructions-title {
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: var(--space-25);
}

.product-view-col-instructions-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 21px;
}

.btn-product-view.btn {
    padding: 10px;
    border-radius: 5px;
    letter-spacing: -0.03em;
    gap: 12px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-product-view.btn .caption {
    flex-grow: 1;
}

.btn-product-view.btn .icon {
    width: 46px;
    height: 46px;
    margin: -11px -11px -11px 0;
    flex-shrink: 0;
    padding: 13px;
    background-color: var(--color-primary);
    color: #000;
    border-radius: 5px;
    border: 1px solid var(--color-primary);
    transition: all .2s linear;
}

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

    .btn-product-view.btn:hover .icon {
        border-color: #000;
    }
}

.product-view-col-instructions:not(:last-child) {
    padding-bottom: var(--space-50);
    margin-bottom: var(--space-40);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-view-col-person {
    display: flex;
    gap: calc(var(--space-25) + 8px);
}

.product-view-col-person-image {
    display: block;
    width: 155px;
    flex-shrink: 0;
}

.product-view-col-person-image img {
    display: block;
    max-width: 100%;
}

.product-view-col-person-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.product-view-col-person-name {
    font-size: calc(var(--font-24) - 4px);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-view-col-person-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
}

.product-view-col-person-link .icon {
    width: 46px;
    height: 46px;
    background-color: var(--color-primary);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    color: #000;
    transition: all .2s linear;
}

.product-view-col-person-link + .product-view-col-person-link {
    margin-top: 10px;
}

@media screen and (min-width: 1140px) {
    .product-view-col-person-link:hover .icon {
        background-color: var(--color-primary);
    }

    .product-view-col-person-link:hover {
        text-decoration: underline;
    }

    .product-column-content .btn.add-to-basket:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
        color: var(--color-primary);
    }
}

.product-column-content .btn.add-to-basket {
    padding: 20px calc(var(--space-25) + 12px);
    border-radius: 5px;
    letter-spacing: 0.05em;
    gap: 15px;
    color: #000;
    text-transform: uppercase;
}

.product-column-content .btn.add-to-basket .icon {
    width: 21px;
}

.product-view-col-person-title {
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: var(--space-40);
}

.product-bottom-container .btn.btn-link {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    font-size: 15px;
}

@media screen and (min-width: 1140px) {
    .product-bottom-container .btn.btn-link:hover {
        color: #000;
        text-decoration: underline;
    }
}

.my-70 {
    margin-top: calc(var(--space-60) + 10px);
    margin-bottom: calc(var(--space-60) + 10px);
}

.btn.btn-back {
    border-radius: 5px;
    min-width: 260px;
}

.shop-product-slider {
    margin: var(--space-50) 0;
}

.text.instructions-text-top {
    width: fit-content;
    padding: 8px 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    margin-bottom: calc(var(--space-25) + 5px);
}

.product-view-instructions-section .product-view-title {
    margin-bottom: calc(var(--space-25) + 5px);
}

.product-view-instructions-collection-item {
    display: flex;
    justify-content: space-between;
    gap: var(--space-25);
    max-width: 560px;
}

.product-view-instructions-collection-item + .product-view-instructions-collection-item {
    margin-top: var(--space-25);
}

.product-view-instructions-collection-item-title {
    max-width: 180px;
    font-size: 12px;
}

.product-view-instructions-collection-item-text {
    font-size: 14px;
    font-weight: 700;
    max-width: 245px;
}

.product-view-instructions-files {
    margin-top: var(--space-25);
    padding-top: calc(var(--space-25) - 5px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 643px;
}

.product-view-instructions-files .btn {
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.product-view-instructions-section {
    margin: var(--space-50) 0;
}

a.main-submenu-column-item-top .main-submenu-column-item-name {
    transition: all .2s linear;
}

a.main-submenu-column-item-top:hover .main-submenu-column-item-name {
    color: var(--color-primary);
}

header.sticky .tob-box {
    top: calc(100% + 10px);
}

.product-top-params {
    margin: var(--space-40) 0;
}

.product-top-param-item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.product-top-param-item:nth-of-type(odd) {
    background-color: #f7f7f7;
}

.product-top-param-item-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.product-top-param-item-value {
    font-size: 14px;
    color: #000;
}

.row-flex-center .btn-product-view {
    min-width: 260px;
}

.configurator-field-container > .row:has(*:last-child:first-child[style="display: none;"]) {
    display: none;
}

.product-view-col.info-column .shop-product-offer-box {
    padding-bottom: var(--space-40);
    border-bottom: 1px solid #000;
    margin-bottom: var(--space-40);
}

.product-params {
    padding: var(--space-50) 0 var(--space-60) 0;
    background-color: #F5F5F5;
}

.product-param-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-25);
    padding: 15px 20px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .product-param-item:nth-child(4n+1),
    .product-param-item:nth-child(4n+2) {
        background-color: #ededed;
    }
}

.product-param-item-label {
    font-weight: 700;
}

.main-news-section {
    margin: calc(var(--space-60)) 0;
    padding: 0;
}

.main-news-section[style*="background"] {
    padding: calc(var(--space-60)) 0;
    margin: 0;
}

.main-news-section[style*="background-color: #ffffff;"] {
    margin: calc(var(--space-60)) 0;
    padding: 0;
}

.codeArea-section iframe {
    display: block;
}

.product-params-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 calc(2 * var(--space-40));
}

.product-view-col + .product-view-col {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 145px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 640;
    min-height: 300px;
    object-fit: cover;
}

.contact-page-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-60);
}

.contact-page-right {
    width: 60%;
    flex-shrink: 0;
}

.contact-page-left {
    flex-grow: 1;
    background-color: #f5f5f5;
    padding: var(--space-25);
    border-radius: 10px;
}

.contact-page-left-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.contact-page-left-inner ul li + li {
    margin-top: 10px;
}

.contact-page-left-inner .mainContact-person-link .icon {
    width: 30px;
}

.contact-page-left-inner .mainContact-person-link {
    font-size: 18px;
}

.contact-page-left-inner .text {
    font-size: 18px;
    font-weight: 300;
}

.only-cloneMenu {
    display: none;
}

.only-cloneMenu .icon {
    display: none !important;
}

.mainImages:nth-of-type(odd) .mainImages-item {
    flex-direction: row-reverse;
}

.media-inner {
    display: flex;
    gap: var(--space-25);
    align-items: center;
    color: inherit;
}

.media {
    margin: 0;
    width: 50%;
    padding: 25px;
}

.news-slider {
    margin: -25px;
}

.media-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 58%;
}

.media-body .text{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.media-heading {
    font-size: 16px;
    font-weight: 700;
}

.media-left img {
    transition: all 0.3s;
    display: block;
    max-width: 100%;
}

.media-left {
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .media-inner:hover .media-left img {
        transform: scale(1.1);
    }

    .media-inner:hover .media-heading {
        text-decoration: underline;
    }
    
    .media-inner:hover{
        cursor: pointer;
    }
}

.news-list-none-slider{
    display: flex;
    row-gap: var(--space-25);
    flex-wrap: wrap;
}

.news-page-section{
    margin-bottom: var(--space-60);
}

.news-view-left{
    float: left;
    margin-right: var(--space-40);
}

.news-view-section .clearfix::after{
    clear: unset ;
}

.news-view-section .clearfix::before{
    clear: unset ;
    display: none;
}

.news-view-title{
    font-size: var(--font-24);
    font-weight: 700;
    margin-bottom: 10px;
}

.news-view-section .item-rating-container {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.news-view-top{
    margin-bottom: var(--space-60);
}


.news-view-btn-return{
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-60);
}

.faq-item-teaser-inner{
    color: #000;
}

.asidedPage-content:first-child .page-header:first-child:last-child{
    margin-bottom: 0;
}

.text-section {
    margin: calc(var(--space-60)) 0;
    padding: 0;
}

.text-section[style*="background"] {
    padding: calc(var(--space-60)) 0;
    margin: 0;
}

.text-section[style*="background-color: #ffffff;"] {
    margin: calc(var(--space-60)) 0;
    padding: 0;
}