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

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

    --container-padding: 40px;

    /** SPECIFIC **/
    --color-primary: #009036;
    --color-secondary: #ee7f01;
    --color-default: #333;

    --radius-default: 6px;
}

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

/**
 * BASIC
 */

b, strong {
    font-weight: 600;
}

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

em {
    padding-right: 2px;
}

a {
    color: #000;
}

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

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

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

/**
 * PAGE
 */

#page {
    overflow: hidden;
}

#content {
    padding-top: 150px;
}

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

.container--noClear {
    clear: none;
}

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

.container--md {
    max-width: 1350px;
}

/**
 * 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-mask.icon-mask.reversed {
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * BUTTONS
 */

.btn.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-default);
    transition: border-color 0.4s, color 0.4s, background-color 0.4s;
}

.btn.btn .icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    position: relative;
}

.btn.btn .icon:first-child:not(:only-child) {
    margin-left: -6px;
}

.btn.btn .icon:last-child:not(:only-child) {
    margin-right: -6px;
}

.btn.btn-lg {
    height: 46px;
    padding: 0 15px 0;
    font-size: 16px;
    min-width: 146px;
}

.btn.btn .caption {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding-bottom: 1px;
}

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

.btn.btn-md {
    height: 40px;
    padding: 0 10px 0;
    min-width: 128px;
    font-size: 15px;
}

.btn.btn-md.btn-square {
    width: 40px;
}

.btn.btn-sm.btn-custom {
    height: 36px;
    padding: 0 10px 0;
    font-size: 16px;
    min-width: 124px;
}

.btn.btn.btn-square {
    min-width: auto;
    padding: 0;
}

/**
 * THEMES
 */

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

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

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

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

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

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

.btn.btn-default,
.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default.active,
.btn.btn-default.active:focus,
.btn.btn-default:hover:focus,
.btn.btn-default:hover:active,
.btn.btn-default:focus:active {
    background-color: transparent;
    border-color: #858585;
    color: var(--color-default);
}

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

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

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

.btn.btn-transparent.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn.btn-white,
.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active,
.btn.btn-white.active,
.btn.btn-white.active:focus,
.btn.btn-white:hover:focus,
.btn.btn-white:hover:active,
.btn.btn-white:focus:active {
    background-color: #fff;
    border-color: #e5e5e5;
    color: #b2b2b2;
}

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

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

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

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

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

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

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

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

.panel {
    box-shadow: none;
}

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-default);
}

.text a {
    color: var(--color-secondary);
}

.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    line-height: 1.4;
}

.text h2 {
    font-size: 24px;
}
.text h3 {
    font-size: 20px;
}
.text h4 {
    font-size: 18px;
}
.text h5,
.text h6 {
    font-size: 16px;
}

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

/** 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;
    vertical-align: middle;
    width: 10px;
    left: -10px;
    top: -1px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-primary);
}

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

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

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

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

/**
 * HEADER
 */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s;
    z-index: 1010;
}

.subpage header {
    border-color: #e5e5e5;
}

.header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 3px 2px rgba(0, 0, 0, 0.14);
    padding: 10px var(--space-40) var(--space-40);
    border-top: 1px solid #e5e5e5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    overflow-y: auto;
    max-height: calc(100vh - 180px);
}

.header-submenu:hover,
.header-submenu.active {
    opacity: 1;
    pointer-events: initial;
}

.header-categories > ul {
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--space-50));
}

.header-categories > ul > li {
    width: 20%;
    padding: 0 var(--space-50);
    display: flex;
}

.header-categories > ul > li > a {
    display: flex;
    align-items: center;
    font-size: 17px;
    padding: 6px 15px;
    min-height: 48px;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.4s, color 0.4s;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    flex-basis: 100%;
    min-height: 142px;
    padding: 8px 0;
    transition: min-height 0.4s, padding 0.4s;
}

.subpage .header-inner {
    padding-bottom: 20px;
}

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

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 54px;
}

.header-top-right {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: stretch;
}

.header-bottom {
    border-top: 1px solid #e5e5e5;
    margin-top: 8px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    transition: margin 0.4s, padding 0.4s;
}

.header-main {
    flex-grow: 1;
}

.header-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin-right: 86px;
    transition: margin 0.4s;
}

.mainpage header .btn-categories-wrapper {
    display: none;
}

header .btn-categories-wrapper {
    padding-top: 10px;
    height: 56px;
    overflow: hidden;
    transition: height 0.4s, padding 0.4s;
}

.btn.btn-categories {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    justify-content: flex-start;
    min-height: 46px !important;
}

.btn.btn-categories-square.btn-categories-square {
    flex-shrink: 0;
    opacity: 0;
    width: 0;
    pointer-events: none;
    transition: border-color 0.4s, color 0.4s, background-color 0.4s, opacity 0.4s, width 0.4s, margin 0.4s;
}

.btn.btn-categories > .icon{
    margin-right: 16px;
}

.logo .logo-image {
    display: flex;
    align-items: center;
    height: 112px;
    transition: height 0.4s;
}

.mainpage .logo-image .logo-subpage {
    display: none;
}

.mainpage header.sticky .logo-image .logo-mainpage {
    display: none;
}

.mainpage header.sticky .logo-image .logo-subpage {
    display: block;
}

.subpage .logo .logo-image,
.subpage header.sticky .logo .logo-image,
.mainpage header.sticky .logo .logo-image .logo-subpage {
    height: 65px;
}

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

#main-menu {
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    padding-left: 80px;
}

#main-menu > ul {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#main-menu > ul > li {
    position: relative;
    font-size: 1rem;
}

#main-menu > ul > li > a {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    display: block;
    padding: 8px 10px;
    transition: color 0.4s;
    text-align: center;
}

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

#main-menu > ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    width: 150px;
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

#main-menu li > ul > li > a {
    display: block;
    padding: 8px 12px;
    text-align: center;
    transition: color 0.4s;
}

#main-menu li > ul > li + li {
    border-top: 1px solid #e5e5e5;
}

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

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

.main-menu-button {
    width: 40px;
    margin: 0 0 0 var(--container-padding);
    border: none;
    background: transparent;
}

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

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;
    max-width: 576px;
    width: 100%;
    flex-shrink: 1;
}

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

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

.mainsearch input.form-control {
    display: block;
    height: 42px;
    padding: 5px 50px 5px 20px;
    box-shadow: none;
    border-radius: var(--radius-default);
    border: 2px solid #aaa;
    font-size: 15px;
    color: #4c4c4c;
    font-family: 'Barlow Condensed', sans-serif;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.mainsearch-submit::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background-color: #e5e5e5;
    -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);
    pointer-events: none;
}

.mainsearch-submit .icon {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
}

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

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    #main-menu li > ul > li > a:hover {
        color: var(--color-secondary);
    }
}

/*
* USER NAV
*/

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

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

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #4c4c4c;
    font-size: 15px;
}

.header-top-right > * + *,
.header-top .user-nav-item + .user-nav-item {
    padding-left: 30px;
    margin-left: 30px;
}

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

.header-top .user-nav-item .icon {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    margin-left: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top .user-nav-item .icon.icon-fa {
    margin-right: 8px;
    margin-left: 0;
}

.basket-box {
    display: flex;
    align-items: center;
}

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

    .header-top .user-nav-item-inner[href]:hover > .caption {
        text-decoration: underline;
    }

    .header-categories > ul > li > a:hover {
        background-color: var(--color-primary);
        color: #fff;
    }
}

header.sticky {
    border-color: #e5e5e5;
}

header.sticky .header-bottom {
    padding-top: 8px;
}

header.sticky .logo .logo-image {
    height: 80px;
}

header.sticky .header-left {
    margin-right: var(--space-50);
}

header.sticky .header-inner {
    min-height: 112px;
}

.subpage header.sticky .header-inner {
    padding-bottom: 8px;
}

header.sticky .btn-categories-wrapper {
    height: 0;
    padding-top: 0;
}

header.sticky .btn.btn-categories-square.btn-categories-square {
    opacity: 1;
    pointer-events: initial;
    width: 40px;
    margin-right: 10px;
}

/**
 * FOOTER
 */
footer {
    background-image: url('../images/footer_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    padding-top: var(--space-50);
}

.footer-cols {
    display: flex;
    flex-basis: 100%;
    margin: -15px;
}

.footer-col {
    padding: 15px;
}

.footer-col-1 {
    width: 17.2%;
}

.footer-col-2 {
    width: 18.7%;
}

.footer-col-3 {
    width: 21.1%;
}

.footer-col-4 {
    width: 18%;
}

.footer-col-5 {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-image {
    max-width: 310px;
}

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

.footer-main {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: 300;
    padding-bottom: 15px;
}

.footer-col-title {
    font-size: var(--font-24);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--space-50);
}

.footer-col-content > * + * {
    margin-top: 8px;
}

.footer-main ul.footer-link li + li {
    margin-top: 12px;
}

.footer-main ul.footer-link li a {
    color: #fff;
    font-size: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    line-height: 24px;
}

.footer-main ul.footer-link li a:hover {
    text-decoration: underline;
}

.footer-main .text {
    font-size: inherit;
    font-weight: inherit;
    line-height: 36px;
    margin-top: -6px;
    color: inherit;
}

.footer-logotype {
    width: 100%;
    max-width: 220px;
}

.footer-logotype + .footer-logotype {
    margin-top: 10px;
}

.footer-logotype-inner {
    position: relative;
    background-color: #fff;
    border-radius: var(--radius-default);
    overflow: hidden;
}

.footer-logotype-inner::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 31.8181%;
}

.footer-logotype-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

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

footer .social-icon {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: #fff;
}

footer .social-list-title {
    color: inherit;
}

.footer-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-extra .text {
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
    color: #fff;
    text-align: justify;
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    font-size: 15px;
    color: #e9e9e9;
    background-color: #626262;
    font-weight: 300;
}

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

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

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

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

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

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

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

.copyright-undicom a img {
    max-width: 1em;
    vertical-align: middle;
    margin-right: 5px;
}

@media screen and (min-width: 1140px) {
    .footer-main ul li a:hover {
        text-decoration: underline;
    }

    footer .social:hover .social-icon {
        background-color: #fff;
        border-color: #fff;
        color: #000;
    }
}

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

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

.form .form-element-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

/* 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;
    line-height: 24px;
    color: var(--color-default);
}

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

.form .before-consent-row,
.form .after-consent-row,
.form .consent-row {
    margin-bottom: 5px;
}

.form .consent-row,
.form .consent-row .text,
.form .consent-row .text label {
    font-size: 13px;
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: var(--radius-default);
    box-shadow: none;
    border-color: #e5e5e5;
}

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

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

.select2-container .select2-selection--single {
    padding: 0;
}

.form .form-group-lg button.captcha-refresh {
    border-color: #e5e5e5;
    background-color: #fff;
}
.form button.captcha-refresh:after {
    content: '';
    width: 18px;
    height: 20px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../images/captcha_arrows.png) no-repeat center center /cover;
    transition: filter 0.4s;
}
.form button.captcha-refresh .fa {
    display: none;
}

.form .checkboxradio-container [class^="icheckbox"],
.form .checkboxradio-container [class^="iradio"] {
    margin-top: 3px;
}

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

/*---- 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: #e5e5e5;
    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: 14px;
    font-size: 14px;
    padding-right: 44px;
    color: var(--color-default);
}

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

.form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after,
.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: 12px;
    color: #000;
    text-align: center;
    font-size: 0;
    border: none;
}

.form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after,
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
    margin: 0;
    width: auto;
}

.form-element-multiselectCheckbox .select2-container--default.select2-container--open .select2-selection--multiple:after,
.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 14px;
}

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

.select2-dropdown {
    border-color: #e5e5e5;
}

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

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

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

.breadcrumb > li {
    position: relative;
    display: inline;
    color: var(--color-default);
}

.breadcrumb > li > a {
    font-size: 13px;
    font-weight: 300;
}

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

@media screen and (min-width: 1140px) {
    .breadcrumb > li > a:hover {
        text-decoration: underline;
    }
}

/**
 * PAGINATION
 */

.pagination-wrapper {
    padding: var(--space-50) 0 0;
    max-width: 640px;
}

.pagination-wrapper ul li a {
    color: var(--color-default);
    transition: color 0.4s;
}

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

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

.pagination-wrapper ul li.next a.btn .icon,
.pagination-wrapper ul li.prev a.btn .icon {
    padding: 0;
    margin: 0 !important;
    width: 40px;
    height: 40px;
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    padding: 8px 10px;
}

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

/**
 * ANIMATABLE ICON
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * LOGOTYPES SLIDER
 */
.logotypes-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: 100%;
}

.logotypes-title {
    width: 160px;
    flex-shrink: 0;
    color: var(--color-default);
    font-size: var(--font-30);
    font-weight: 600;
    padding-right: var(--space-25);
}

.logotypes-slider-container {
    width: calc(100% - 160px);
}

.logotype-slider {
    display: flex;
    margin-right: -15px;
}

.logotype-slider .slick-list,
.logotype-slider .slick-track {
    display: flex;
    width: 100%;
}

.logotype {
    width: 11.1111%;
    position: relative;
}

.logotype::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 45%;
}

.logotype-inner {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/**
 * SOCIALS
 */

.social-list-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-default);
}

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

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

.social {
    display: block;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-default);
    position: relative;
    color: var(--color-primary);
    transition: color 0.4s, background-color 0.4s, border-color 0.4s;
    background-color: #fff;
}

.social-icon .icon {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
}

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

/**
 * 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: right;
    max-width: 45%;
    margin-bottom: 10px;
    margin-left: 50px;
}

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

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

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

.article-text.text h2 {
    color: var(--color-default);
    font-size: calc(var(--font-40) - 2px);
}

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

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

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

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

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

.gallery-picture-hover-icon {
    width: 32px;
    height: 32px;
    position: relative;
}

.gallery-picture-hover-icon::before {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
}

.gallery-picture-hover-icon::after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
}

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

.aside {
    width: 242px;
    flex-shrink: 0;
}

.aside-close {
    display: none;
}

.menuList-group {
    position: relative;
}

.menuList {
    border-bottom: 1px solid #e5e5e5;
}

.menuList a:not(.btn) {
    font-size: 17px;
    line-height: 24px;
    color: var(--color-default);
    display: block;
    padding: 11px 40px 11px 15px;
    transition: color 0.4s;
}

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

.menuList li ul li,
.menuList li + li {
    border-top: 1px solid #e5e5e5;
}

.menuList li ul {
    display: none;
}

.menuList > ul > li > ul li > .menuList-group > a {
    padding: 6px 40px 6px 26px;
    background-color: #f2f9f5;
    font-size: 15px;
}

.menuList > ul > li > ul li li > .menuList-group > a {
    padding-left: 40px;
}

.menuList li.categories-link:last-child {
    margin-bottom: -1px;
}

.menuList li.categories-link a {
    font-size: 14px;
    padding-right: 0;
    background-color: #fff;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menuList li.categories-link a .icon-wrapper {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.menuList li.categories-link a .icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.menuList-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: transparent;
    color: var(--color-default);
    transition: background-color 0.4s, color 0.4s;
}

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

.aside-top .menuList {
    background-color: #f9f9f9;
}

.aside-top .menuList li ul li,
.aside-top .menuList li + li {
    border-color: rgba(0, 0, 0, 0.1);
}

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

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

    .menuList-toggle:hover {
        background-color: rgba(0, 0, 0, 0.1);
        color: var(--color-primary);
    }

    .menuList li.categories-link a:hover {
        color: var(--color-secondary);
    }
}

.mainTop {
    display: flex;
    position: relative;
    padding-top: 10px;
}

@media screen and (min-width: 1140px) {
    .mainTop-aside {
        margin-right: 80px;
        position: relative;
        width: 242px;
        flex-shrink: 0;
        padding-bottom: 0;
    }

    .mainTop-aside .aside {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
    }

    .mainTop-aside .aside-content {
        height: 100%;
    }

    .mainTop-aside .menuList {
        height: 100%;
    }

    .mainTop-aside ul {
        overflow-y: auto;
        padding-bottom: 0;
        scrollbar-color: var(--color-secondary) #f3f3f3;
        scrollbar-width: thin;
        padding-right: 6px;
        height: 100%;
    }

    .mainTop-aside ::-webkit-scrollbar-track {
        background-color: #f3f3f3;
    }

    .mainTop-aside ::-webkit-scrollbar {
        width: 8px;
    }

    .mainTop-aside ::-webkit-scrollbar-thumb {
        background-color: var(--color-primary);
        border-radius: 0;
    }

    .mainTop-aside ::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-default);
    }
}

.section-mainSlider {
    width: calc(100% - 242px - 80px);
    position: relative;
}

.mainSlider {
    display: flex;
    flex-basis: 100%;
}

.mainSlider .slick-list,
.mainSlider .slick-track {
    display: flex;
    width: 100%;
}

.mainSlider-slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

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

.mainSlider-content {
    position: absolute;
    bottom: calc(2 * var(--space-50));
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 506px;
    color: #fff;
    padding: 16px 40px 30px;
}

.mainSlider-content.buttonOnly {
    background-color: transparent;
}

.mainSlider-content.buttonOnly:not(.top) {
    top: auto !important;
    bottom: calc(3 * var(--space-40));
}

@media screen and (min-width: 1140px) {
    .mainSlider-content.buttonOnly:not(.top) {
        bottom: calc(2 * var(--space-50));
    }
}

.mainSlider-content.buttonOnly .btn.btn {
    background-color: rgba(0, 0, 0, 0.7);
}

.mainSlider-content.top {
    bottom: auto;
    top: var(--space-50);
}

.mainSlider-title {
    font-size: var(--font-45);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.mainSlider-text.text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    text-align: justify;
    color: inherit;
}

.mainSlider-button {
    margin-top: 24px;
}

.mainSlider-content.buttonOnly {
    width: auto;
    /*padding: 15px;*/
}

.mainSlider-content.buttonOnly .mainSlider-button {
    margin-top: 0;
}

.mainSlider-arrows {
    top: 50%;
    position: absolute;
    left: var(--space-25);
    right: var(--space-25);
    display: flex;
    justify-content: space-between;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: opacity 0.4s;
    z-index: 1;
}

.mainSlider-arrows > * + * {
    margin-left: 10px;
}

.mainSlider-arrows .btn.btn {
    width: 46px;
    height: 46px;
}

.mainSlider-arrows .btn.btn.slick-hidden {
    display: none;
}

.mainSlider-arrows .btn.btn .icon {
    width: 100%;
    height: 100%;
}

.section-mainSlider .btn.btn-primary {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .mainSlider-arrows {
        opacity: 0;
    }

    .section-mainSlider:hover .mainSlider-arrows {
        opacity: 1;
    }

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

.infoBox-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 10px;
}

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

.infoBoxes {
    padding-left: var(--space-60);
    padding-right: var(--space-60);
    /*margin-top: 30px;*/
    margin-top: var(--space-60);
    margin-bottom: var(--space-60);
}

.infoBoxes-list {
    display: flex;
    flex-basis: 100%;
    margin: 0 calc(-1 * var(--space-25));
}

.infoBox {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 var(--space-25)
}

.infoBox:not(:first-child)::before {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #b2b4b5;
    position: absolute;
    left: 0;
    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);
    pointer-events: none;
}

.infoBox-inner {
    display: flex;
    align-items: center;
    color: var(--color-default);
}

.infoBox-title {
    font-size: 20px;
    font-weight: 600;
}

.infoBox-caption {
    font-size: 20px;
}

.categoryExhibition {
    background-color: #f9f9f9;
}

.categoryExhibition-inner {
    display: flex;
    flex-basis: 100%;
    min-height: 484px;
}

.categoryExhibition-left {
    width: 24%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.categoryExhibition-left-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.categoryExhibition-middle {
    width: 45%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.categoryExhibition-right {
    width: 31%;
    padding-left: 15px;
    display: flex;
}

.categoryExhibition-title {
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    padding: 12px 22px 16px;
    width: 100%;
}

.categoryExhibition-left .menuList {
    overflow-y: auto;
    height: 100%;
    flex-grow: 1;
    border-bottom: 0;
    scrollbar-color: var(--color-secondary) #f3f3f3;
    scrollbar-width: thin;
}

@media screen and (min-width: 768px) {
    .categoryExhibition-left .menuList {
        display: block !important;
    }
}

.categoryExhibition-left ::-webkit-scrollbar-track {
    background-color: #f3f3f3;
}

.categoryExhibition-left ::-webkit-scrollbar {
    width: 8px;
}

.categoryExhibition-left ::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 0;
}

.categoryExhibition-left ::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary);
}

.categoryBoxes {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
}

.categoryBoxes .slick-track,
.categoryBoxes .slick-list {
    display: flex;
    width: 100%;
}

.categoryBox {
    width: 25%;
    padding: 6px;
    display: flex !important;
    min-height: 150px;
}

.categoryExhibition .categoryBox {
    width: 50%;
}

.categoryBox-inner {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: var(--radius-default);
    position: relative;
    transition: border-color 0.4s;
    min-height: 200px;
}

.mainpage .categoryBox-inner {
    min-height: auto;
}

.categoryBox-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.categoryBox-icon {
    width: 50%;
    flex-shrink: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.categoryBox-content {
    padding: 10px 15px 10px 0;
    flex-grow: 1;
}

.categoryBox-content:first-child {
    padding: 10px 15px;
    text-align: center;
}

.categoryBox-caption {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-default);
}

.categoryBox-button {
    height: 0;
    padding-top: 0;
    transition: height 0.4s, padding-top 0.4s;
    overflow: hidden;
}

.categoryBox-button .btn.btn {
    height: 30px;
    min-width: 104px;
    font-style: 13px;
}

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

    .categoryBox-inner:hover .categoryBox-button {
        height: 52px;
        padding-top: 20px;
    }
}

.section-horizontalBoxes {
    margin-top: var(--space-25);
    margin-bottom: var(--space-25);
}

.horizontalBoxes-list {
    display: flex;
    flex-basis: 100%;
    margin: -16px;
}

.horizontalBoxes-list .slick-list,
.horizontalBoxes-list .slick-track {
    width: 100%;
}

.horizontalBox {
    width: 50%;
    padding: 16px;
    flex-shrink: 0;
}

.horizontalBox-inner {
    border: 1px solid #e5e5e5;
    position: relative;
}

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

.horizontalBox-title {
    position: absolute;
    left: 0;
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    padding: 4px 30px 8px;
}

.horizontalBox-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.section-discountGroup {
    background-color: #f9f9f9;
}

.section-discountGroup + .section-discountGroup {
    border-top: 1px solid #e5e5e5;
}

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

.section-heading-title {
    font-size: 38px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-default);
}

.section-heading-right {
    padding-left: var(--space-50);
    display: flex;
    align-items: center;
}

.section-heading-right > * + * {
    margin-left: var(--space-25);
}

.productBoxes-arrows {
    display: flex;
    align-items: center;
    pointer-events: none;
}

.productBoxes-arrows > * + * {
    margin-left: 10px;
}

.productBoxes-arrows .btn {
    pointer-events: initial;
}

.productBoxes-arrows .btn.slick-hidden {
    display: none;
}

.productBoxes {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin: -8px;
}

.productBoxes.productBoxes-slider {
    overflow: hidden;
    flex-wrap: nowrap;
}

.productBoxes.productBoxes-slider .slick-track,
.productBoxes.productBoxes-slider .slick-list {
    display: flex;
    width: 100% !important;
}

.productBox {
    width: 20%;
    display: flex !important;
    flex-shrink: 0;
    padding: 8px;
}

.productBoxes-lg .productBox {
    width: 25%;
}

.productBox-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    border: 1px solid #e5e5e5;
    position: relative;
    transition: border-color 0.4s;
    background-color: #fff;
    border-radius: var(--radius-default);
}

.productBox-image {
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.productBox-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 73%;
}

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

.productBox-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productBox-content-top > * + * {
    margin-top: 14px;
}

.productBox-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-default);
    text-align: center;
}

.productBox-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.productBox-content-top {
    flex-grow: 1;
    padding: 0 25px 20px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.productBox-price {
    display: flex;
    width: 100%;
    padding-right: var(--space-25);
}

.productBox-price:only-child {
    padding-right: 0;
    justify-content: center;
}

.productBox-price:only-child .price-gross {
    align-items: center;
}

.productBox-price .price-gross {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    color: var(--color-default);
}

.productBox-price .price:not(.price-old) {
    font-size: var(--font-24);
    font-weight: 600;
}

.productBox-price .price.price-old {
    font-size: 14px;
    font-weight: 300;
    text-decoration: line-through;
}

.productBox-content-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    padding: 25px 20px;
    min-height: 120px;
}

.productBox .shop-add-to-basket {
    z-index: 5;
}

.productBox-content-bottom .btn {
    font-weight: 600;
    flex-shrink: 0;
}

.productBox-line {
    font-size: 15px;
    color: var(--color-default);
    text-align: left;
    font-weight: 300;
    text-transform: initial;
}

.productBox-line > * {
    vertical-align: middle;
}

.productBox:not(.horizontal) .productBox-line {
    text-align: center;
}

.productBox-line-icon {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    margin-left: -4px;
}

.productBox-line + .productBox-line {
    margin-top: 5px;
}

.productBox-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.product-labels {
    display: flex;
    z-index: 5;
}

.productBox .product-labels {
    position: absolute;
    top: 0;
    left: 20px;
}

.product-label {
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: relative;
}

.product-label + .product-label {
    margin-left: 10px;
}

.product-label-inner {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    height: 30px;
    padding: 0 10px 2px;
    display: flex;
    align-items: center;
}

/* horizontal */

.productBox.productBox.horizontal {
    width: 100%;
}

.productBox.horizontal .productBox-inner {
    flex-direction: row;
}

.productBox.horizontal .productBox-image {
    max-width: 360px;
    border-right: 1px solid #e5e5e5;
}

.productBox.horizontal .productBox-image::before {
    padding-top: 60%;
}

.productBox.horizontal .productBox-content {
    width: calc(100% - 360px);
    flex-direction: row;
}

.productBox.horizontal .productBox-content-bottom {
    border-top: none;
    padding: 0;
}

.productBox.horizontal .productBox-content-left {
    width: calc(100% - 330px);
    display: flex;
    flex-direction: column;
}

.productBox.horizontal .productBox-content-left-inner {
    padding: 30px;
    flex-grow: 1;
}

.productBox.horizontal .productBox-title {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
}

.productBox.horizontal .productBox-content-right {
    width: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e5e5e5;
    padding: 30px;
}

.productBox.horizontal .productBox-content-right-inner {
    width: 100%;
}

.productBox.horizontal .productBox-content-left-bar {
    width: 100%;
    border-top: 1px solid #e5e5e5;
}

.productBox-info-content {
    padding: 10px 30px;
    border: 1px solid var(--color-primary);
    position: absolute;
    z-index: 10;
    top: calc(100% - 4px);
    left: -1px;
    right: -1px;
    background-color: #fff;
    border-radius: 0 0 var(--radius-default) var(--radius-default);
    min-height: 100px;
    display: flex;
    align-items: center;
}

.productBox-info-content .text {
    text-align: justify;
    font-size: 14px;
    line-height: 24px;
}

.productBox.horizontal .productBox-info-list {
    display: flex;
}

.productBox.horizontal .productBox-info-item {
    padding: 12px 10px;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productBox.horizontal .productBox-info-item i {
    margin-left: 10px;
}

.productBox.horizontal .productBox-info-item[aria-describedby] i {
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

.productBox.horizontal .productBox-info-item.active {
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 20;
}

.productBox-info-item:not(.active) .productBox-info-content-wrapper {
    visibility: hidden;
}

.productBox.horizontal .productBox-info-item.active i {
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

.productBox.horizontal .productBox-content-bottom {
    margin-top: var(--space-25);
    min-height: auto;
}

.productBox-info-content-wrapper .productBoxes {
    padding-left: 38px;
    padding-right: 38px;
    margin: 0;
}

.productBox-info-content-wrapper .productBoxes-arrows {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    -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);
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.productBox-info-content-wrapper .productBoxes-arrows .btn.btn {
    background-color: transparent;
    border-color: #858585;
    color: var(--color-default);
}

.productBox-info-content-wrapper .productBox.productBox .productBox-image {
    max-width: 100%;
    border-right: none;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-inner {
    flex-direction: column;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-content {
    width: 100%;
    flex-direction: column;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-title {
    font-size: 17px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.productBox-info-content-wrapper  .productBox.productBox .productBox-content-bottom {
    padding: 25px 20px;
    margin-top: 0;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-content-bottom .btn {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-content-bottom .shop-add-to-basket {
    display: none !important;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-content-bottom .price-gross {
    align-items: center;
}

.productBox-info-content-wrapper .productBox.productBox .productBox-content-bottom .productBox-price {
    width: 100%;
    padding-right: 0;
    justify-content: center;
}

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

    .productBox-inner:hover .btn {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .productBox.horizontal .productBox-info-item:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .productBox-info-content-wrapper .productBoxes-arrows .btn.btn:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }

    .productBox-info-content-wrapper .productBox.productBox .productBox-content-bottom .btn:hover {
        background-color: #fff;
        border-color: var(--color-primary);
        color: var(--color-secondary);
    }
}

.productBox-loader {
    pointer-events: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
}

.productBox-loader.animated {
    opacity: 1;
}

.productBox-loader-icon {
    pointer-events: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 10px solid #f3f3f3;
    border-top: 10px solid var(--color-primary);
    -webkit-animation: spinning linear 1.5s infinite;
    -o-animation: spinning linear 1.5s infinite;
    animation: spinning linear 1.5s infinite;
}

@-webkit-keyframes spinning {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinning {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.aboutUs {
    position: relative;
    background-image: url('../images/aboutUs_bg.jpg');
    background-position: top right;
    background-repeat: no-repeat;
}

.aboutUs-inner {
    display: flex;
    align-items: center;
    flex-basis: 100%;
}

.aboutUs-content {
    color: var(--color-default);
    width: 48%;
    padding-right: var(--space-50);
    position: relative;
    z-index: 1;
}

.aboutUs-content > * + * {
    margin-top: var(--space-40);
}

.aboutUs-title {
    font-weight: 600;
}

.aboutUs-text.text {
    font-size: 18px;
    font-weight: 300;
    max-width: 640px;
}

.aboutUs-image {
    width: 52%;
}

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

.aboutUs-floatingCaption {
    font-size: 11.9791vw;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.05);
    font-weight: 800;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.aboutUs-button .btn.btn {
    background-color: #fff;
}

@media screen and (min-width: 1921px) {
    .aboutUs-floatingCaption {
        font-size: 230px;
    }
}

.page-heading {
    color: var(--color-default);
}

.page-heading-title {
    font-size: var(--font-36);
    line-height: 1.2;
    font-weight: 600;
}

.page-heading-text {
    margin-top: 15px;
    overflow: hidden;
}

.page-heading-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: var(--space-25);
}

.page-heading-bottom > * + * {
    margin-left: 30px;
}

.page-contact {
    background: url(../images/page_symbol.jpg), url(../images/contact_bg.png);
    background-position: right -110px top -110px, left -20px bottom -100px;
    background-repeat: no-repeat;
}

.contact-top {
    display: flex;
    flex-basis: 100%;
    margin: calc(-1 * var(--space-25));
}

.contact-top-left {
    width: 40%;
    padding: var(--space-25);
    position: relative;
}

.contact-top-right {
    width: 60%;
    padding: var(--space-25);
}

.contact-form button[type="submit"] {
    font-weight: 600;
}

.contact-group + .contact-group {
    margin-top: var(--space-25);
}

.contact-top-floatingCaption {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 0;
    height: 0;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    pointer-events: none;
    white-space: nowrap;
}

.contact-top-floatingCaption-inner {
    line-height: 1;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.05);
    font-weight: 900;
    font-size: 100px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-symbol {
    background: url(../images/page_symbol.jpg);
    background-position: right -110px top -110px;
    background-repeat: no-repeat;
}

.asidedPage {
    display: flex;
    flex-basis: 100%
}

.asidedPage .btn.btn-categories {
    border-radius: 0;
    background-color: #009036;
    font-size: 20px;
    pointer-events: none;
}

.asidedPage .btn.btn-categories .icon {
    display: none;
}

.asidedPage-content {
    width: calc(100% - 242px);
    padding-left: 90px;
}

.shop-sort .form-element-wrapper {
    min-width: 142px;
}

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

.shop-sort .form-element-text {
    font-size: 14px;
    color: var(--color-default);
    padding-right: 12px;
}

.shop-sort .select2-container--default .select2-selection--multiple,
.shop-sort .select2-container .select2-selection--single {
    height: 40px;
}

.shop-sort .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.shop-sort .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.filter-form-content {
    display: flex;
    align-items: center;
}

.filter-form-content > * + * {
    margin-left: 10px;
}

.shop-product-view .breadcrumb-container {
    margin-bottom: 20px;
}

.shop-product-view .product-labels {
    position: absolute;
    top: 0;
    left: 30px;
}

.shop-product-view .product-label-inner {
    font-size: 20px;
    height: 34px;
    padding: 0 12px 2px;
}

.shop-product-view-top {
    display: flex;
    flex-basis: 100%;
}

.shop-product-view-photo {
    width: 50%;
    position: relative;
}

.shop-product-view-content {
    width: 50%;
    padding-left: var(--space-50);
}

.product-slider-wrapper {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    position: relative;
}

.product-slider-arrows {
    position: absolute;
    bottom: 30px;
    right: 30px;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.product-slider-arrows .btn {
    pointer-events: initial;
}

.product-slider-arrows > .btn + .btn {
    margin-left: 10px;
}

.product-slider-arrows .btn.slick-hidden {
    display: none;
}

.product-slider {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.product-slider .slick-track,
.product-slider .slick-list {
    width: 100%;
    display: flex;
}

.product-slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.product-slide::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 76%;
}

.product-slide-inside {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: border-color 0.4s;
}

.product-slide-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-nav-slider {
    display: flex;
    overflow: hidden;
    margin: 0 -5px;
    padding-top: 10px;
}

.product-nav-slider .slick-track,
.product-nav-slider .slick-list {
    width: 100%;
    display: flex;
}

.product-nav-slider .product-slide {
    width: 25%;
}

.product-nav-slider .product-slide-inside {
    transition: all 0.4s;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    left: 5px;
    right: 5px;
}

.product-nav-slider .product-slide.slick-current .product-slide-inside {
    border-color: var(--color-primary);
}

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

.shop-product-view {
    color: var(--color-default);
}

.shop-product-view-title {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 600;
}

.shop-product-view-title.hideDesktop {
    display: none;
}

.shop-product-view-line {
    font-size: 16px;
    line-height: 1.5;
}

.shop-product-view-line + .shop-product-view-line {
    margin-top: 6px;
}

.shop-product-view-line a {
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .shop-product-view-line a:hover {
        text-decoration: underline;
    }
}

.shop-product-offer-box > form {
    max-width: 500px;
}

.shop-product-offer-buy {
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-default);
    padding: var(--space-25) var(--space-50);
    background-color: #fff;
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.shop-product-offer-buy-left {
    width: 50%;
    padding-right: var(--space-25);
}

/*.shop-product-offer-buy.notAvailable .shop-product-offer-buy-left {*/
/*    padding-right: 0;*/
/*    text-align: center;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

/*.shop-product-offer-buy.notAvailable .price-gross,*/
/*.shop-product-offer-buy.notAvailable .price-net {*/
/*    justify-content: center;*/
/*}*/

/*.shop-product-offer-buy.notAvailable .productBox-line {*/
/*    text-align: center;*/
/*}*/

.shop-product-offer-buy-right {
    width: 50%;
    padding-left: var(--space-25);
    border-left: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-product-offer-buy .price-gross,
.shop-product-offer-buy .price-net {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.shop-product-offer-buy .price-box {
    font-weight: 300;
}

.shop-product-offer-buy .price-net {
    margin-bottom: 10px;
}

.shop-product-offer-buy .price.price-old {
    width: 100%;
    font-size: 12px;
    text-decoration: line-through;
}

.shop-product-offer-buy .price.shop-product-price-net {
    font-size: 20px;
    line-height: 1;
    margin-right: 5px;
}

.shop-product-offer-buy .price.shop-product-price-gross {
    font-size: var(--font-40);
    font-weight: 600;
    line-height: 1;
    margin-right: 5px;
}

.shop-product-offer-buy .price-box .caption {
    font-size: 15px;
}

.shop-product-offer-buy .productBox-lines {
    margin-top: 15px;
}

.shop-product-offer-buy .productBox-line {
    font-size: 14px;
}

.shop-product-offer-buy button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    height: 42px;
    padding: 0 15px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.shop-product-offer-buy button[type="submit"] .icon {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

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

.shop-product-tabs-inner {
    display: flex;
    flex-basis: 100%;
}

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

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

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

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

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

.shop-product-card .productBoxes-arrows {
    position: absolute;
    top: 50%;
    left: -100px;
    right: -100px;
    -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);
    justify-content: space-between;
}

@-webkit-keyframes spinning {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinning {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.product-tabs-card-loader {
    position: absolute;
    top: 0;
    left: -100px;
    right: -100px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
}

.product-tabs-card-loader.animated {
    opacity: 1;
    pointer-events: initial;
}

.product-tabs-loader-icon {
    pointer-events: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 10px solid #f3f3f3;
    border-top: 10px solid var(--color-primary);
    -webkit-animation: spinning linear 1.5s infinite;
    -o-animation: spinning linear 1.5s infinite;
    animation: spinning linear 1.5s infinite;
}

.files-list {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin: -10px;
}

.file {
    display: flex;
    width: 33.3333%;
    padding: 10px;
}

.file-inner {
    border: 1px solid #e5e5e5;
    padding: 10px 20px 10px 10px;
    display: flex;
    align-items: center;
    position: relative;
    transition: border-color 0.4s;
    width: 100%;
    color: var(--color-default);
}

.file-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.file-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

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

.file-text {
    font-size: 15px;
    line-height: 2.1333;
    flex-grow: 1;
}

.file-download {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    position: relative;
    margin-left: var(--space-25);
    color: var(--color-default);
    transition: color 0.4s;
}

.file-download .icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

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

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

.manufacturer-list {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin: -18px;
}

.manufacturer {
    width: 20%;
    padding: 18px;
}

.manufacturer-inner {
    border: 1px solid #e5e5e5;
    padding: var(--space-25);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.4s;
    background-color: #fff;
}

.manufacturer-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

.manufacturer-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 65%;
}

.manufacturer-image-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.manufacturer-image .caption {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.manufacturer-button {
    padding-top: var(--space-40);
    display: flex;
    justify-content: center;
}

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

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

.todo {
    font-size: 30px;
    color: #ff00ff;
    font-weight: 600;
}

.alert {
    width: 100%;
}

.alert button.close {
    position: absolute;
    top: calc(50% - 2px);
    -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);
}


.filterTab-grid-title {
    padding-bottom: 15px;
    margin-bottom: var(--space-25);
    font-weight: 600;
    font-size: 20px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.filterTab-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -7px;
}
.filterTab-grid-item {
    padding: 7px;
}
.filterTab {
    font-weight: 500;
    font-size: 19px;
    text-transform: uppercase;
    color: #bdbdbd;
}
.filterTab.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: #bdbdbd;
}
.filterTab.active,
.filterTab:not(.disabled):hover {
    color: var(--color-primary);
}

/**
 * FILTERS
 */

.filterBox .form-group-lg .select2-container .select2-selection .select2-selection__rendered {
    padding-left: 18px;
    padding-right: 52px;
}
.filterBox-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.filterBox-content {
    /*display: flex;*/
    /*align-items: flex-end;*/
    /*flex-wrap: wrap;*/
    width: 100%;
}
.filterBox-content > * {
    padding: 12px;
    /*width: 25%;*/
    /*flex: 1 0 0;*/
}
/*.filterBox-items > .filterBox-btns {*/
/*flex-grow: 0;*/
/*width: auto;*/
/*}*/

.filterBox-items .form-element-multiselect-container,
.filterBox-items .form-element-select {
    max-width: 300px;
}

.filterBox-items select {
    visibility: hidden;
}

.filterBox .select2-container--default .select2-selection,
.filterBox.filterBox .form-control {
    border-color: transparent;
}
.filterBox .select2-container--default.select2-container--open .select2-selection {
    border-color: var(--color-primary);
}
.filterBox .valueFrom,
.filterBox .valueTo,
.filterBox .form-range {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filterBox .form-range {
    padding: 0;
    height: auto;
    color: inherit;
    border: none;
    background: transparent;
}
.filterBox .price-element .price-label,
.filterBox .price-element .price-suffix {
    display: none;
}
.filterBox .form-range .row {
    margin: 0;
    width: 50%;
}
.filterBox .form-range .col-xs-12 {
    padding: 0;
}
.filterBox .form-range .row:nth-last-child(2) {
    padding-right: 4px;
}
.filterBox .form-range .row:last-child {
    padding-left: 4px;
}
.filterBox .form-range input {
    height: 46px;
    width: calc(100% - 25px);
    margin: 0 5px;
    border-radius: var(--radius-default);
    border-color: transparent;
}
.filterBox .form-range .input-label {
    width: 25px;
    flex-shrink: 0;
}
.filterBox .form-range input:focus {
    border-color: var(--color-primary);
}

.filterBox .form-range .row:first-of-type {
    display: none;
}

.filterBox-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 12px;
}
.filterBox-btns > * + * {
    margin-left: 10px;
}

.filterBox .btn[type="submit"] {
    font-weight: 600;
    text-transform: uppercase;
}

.form-element-priceRange .element-row {
    display: flex;
    align-items: center;
}
.priceRange-range {
    display: flex;
    align-items: baseline;
}
.form-element-priceRange .element-row > * + *,
.priceRange-range > * + * {
    margin-left: 10px;
}
.priceRange-range .form-control {
    width: 84px;
}

.specsTable {
    columns: 2 auto;
    column-gap: calc(2 * var(--space-50));
    column-rule: 1px solid #e5e5e5;
    width: 100%;
}

.specs-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 10px 8px;
    page-break-inside: avoid;
    break-inside: avoid-column;
}

.specs-item:nth-child(even) {
    background-color: #f6f6f6;
}

.specs-item-cell {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
}

.specs-item-cell:first-child {
    padding-right: var(--space-40);
}

.specs-item-cell:nth-child(2) {
    font-weight: 600;
    padding: 0 12px 0 0;
}

.basket-table .product-name a {
    font-weight: 400;
}

.basket-table .price:not(.price-old), .basket-table tbody .lp,
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    font-weight: 600;
}

.basket-table .image .icon {
    height: 60px;
    width: 60px;
}

.basket-table .image a .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    -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);
}

.shop-product-offer-buy .productBuy-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 0;
    min-width: 150px;
}
.shop-product-offer-buy.notAvailable .productBuy-side {
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.page-heading-bottom + .productBoxes {
    margin-top: 20px;
}

.modal-header button.close {
    margin-top: 0;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #000;
    transition: color 0.2s, background-color 0.2s;
}

.modal-header button.close svg,
.modal-header button.close img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.modal-header button.close svg {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
    .modal-header button.close:hover {
        background-color: #fff;
        color: #000;
    }
}

.filterBox {
    padding: 10px 0;
}

.filterBox-content-search > * + * {
    margin-top: 10px;
}

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

.filterBox .btn-link {
    padding-left: 0;
}

.form.filterBox .checkboxradio-container label {
    font-size: 13px;
}

.filterBox .checkboxradio-container > .row > * + * {
    margin-top: 5px;
}

.btn-filtr-see-more:not(.active) .less,
.btn-filtr-see-more.active .more {
    display: none;
}

.mainSlider-content.buttonOnly,
.mainSlider-content.buttonOnly:not(.top) {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.mainSlider-link {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.filterBox input[type=checkbox].form-control {
    position: absolute;
    top: 0;
    left: 15px;
    height: 16px;
    width: 16px;
    border-radius: 0;
    border-color: rgba(0, 0, 0, 0.1);
}

.article-collection-box {
    display: flex;
    align-items: center;
    padding-bottom: var(--space-40);
}

.article-collection-box:nth-child(2n+1) .article-collection-image {
    order: 1;
}

.article-collection-image {
    max-width: 640px;
    flex: 1;
    text-align: center;
}

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

.article-collection-text {
    flex: 1;
    padding: 0 0 0 var(--space-25);
}

.article-collection-box:nth-child(2n+1) .article-collection-text {
    padding: 0 var(--space-25) 0 0;
}

@media screen and (max-width: 640px) {
    .article-collection-box {
        display: block;
    }

    .article-collection-image {
        padding-bottom: var(--space-25);
    }

    .article-collection-text {
        flex: 1;
        padding: 0;
    }

    .article-collection-box:nth-child(2n+1) .article-collection-text {
        padding: 0;
    }
}

.mainpage .aside-toggle {
    top: 10px;
}

.shop-quantity-box.order-list {
    margin-bottom: 10px;
}
.shop-add-to-basket .btn.order-list {
    min-width: 154px;
}
.shop-quantity-box.order-list .qty-down,
.shop-quantity-box.order-list .qty-up {
    width: 36px;
    height: 36px;
    line-height: 34px;
}
.shop-quantity-box.order-list input.input-qty {
    height: 36px;
    /*line-height: 34px;*/
}

.top-box-product-image .icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -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);
    height: 60px;
    width: 60px;
}

.shop-add-to-basket > .btn {
    width: 100%;
}


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

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