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

    /** SPECIFIC **/
    --color-primary: #f23b1c;
    --color-default: #000;
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: var(--color-primary)
}

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

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#content {
    margin-left: 336px;
}

.subpage #content {
    padding-top: 120px;
}

.section-background {
    margin-top: -120px;
    padding-top: 120px;
}

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * THEMES
 */

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

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

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.2;
    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-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-secondary.active {
    background-color: transparent;
}

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

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

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

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

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

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

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

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

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.btn-md {
    padding: 0 var(--space-25);
    min-width: 196px;
    height: 46px;
}

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

.btn-circle .icon {
    width: 32px;
    height: 32px;
}

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

.text-white {
    color: #fff;
}

/** 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: 16px;
    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.sticky {
    background-color: #fff;
}


.main-aside {
    width: 336px;
    position: absolute;
    background-color: #000;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-right: 1px solid transparent;
    transition: border-color 0.3s;
}

.header-white .main-aside {
    border-color: rgba(255, 255, 255, 0.2);
}

.header-main {
    margin-left: 336px;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.logo-white {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

header.header-white.sticky,
header.header-only-white.sticky {
    background-color: #000;
}

.header-white,
.header-only-white {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-white .mainsearch input.form-control::placeholder,
.header-only-white .mainsearch input.form-control::placeholder {
    color: #fff;
}

.header-white .mainsearch input.form-control:-ms-input-placeholder,
.header-only-white .mainsearch input.form-control:-ms-input-placeholder {
    color: #fff;
}

.header-white .mainsearch input.form-control::-ms-input-placeholder,
.header-only-white .mainsearch input.form-control::-ms-input-placeholder {
    color: #fff;
}

.header-white .user-nav-item-inner,
.header-only-white .user-nav-item-inner {
    color: #fff;
}

.header-white .user-nav-item::before,
.header-only-white .user-nav-item::before {
    color: #fff;
}

.header-white .mainsearch-submit,
.header-only-white .mainsearch-submit {
    color: #fff;
}

.header-white .basket-box-btn,
.header-only-white .basket-box-btn {
    color: #fff;
}

.header-white .logo-white,
.header-only-white .logo-white {
    opacity: 1;
}

.header-white .logo-black,
.header-only-white .logo-black {
    opacity: 0;
}

.header-white .mainsearch input.form-control,
.header-only-white .mainsearch input.form-control {
    color: #fff;
}

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

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

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

.logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
    transition: opacity 0.3s;
}

.user-nav {
    display: flex;
    align-items: center;
    margin-right: calc(2 * var(--space-50) + 15px);
}

.user-nav-item-inner {
    transition: color 0.3s;
}

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

.user-nav-item {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}

.user-nav-item + .user-nav-item {
    padding-left: 15px;
}

.user-nav-item + .user-nav-item::before {
    content: '/';
    margin-right: 13px;
}

.aside-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
}

.aside-content.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
}

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

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

.aside-button .icon {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    margin-top: 1px;
}

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

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


#main-menu {
    padding: calc(2 * var(--space-50)) var(--space-40);
    padding-bottom: 0;
}

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

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

#main-menu li > ul {
    max-height: 0;
    overflow: hidden;
    top: 100%;
    left: 0;
    transition: max-height 0.8s;
}

#main-menu li.active > ul {
    max-height: initial;
}

#main-menu li a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 2.5714;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

#main-menu li > ul > li > a {
    padding-left: 20px;
}

#main-menu li:hover > ul {
    /*max-height: 200px;*/
}

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

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

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 240px;
    max-width: 100%;
}

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

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

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.mainsearch input.form-control::placeholder {
    color: #000;
    opacity: 1;
    letter-spacing: 0.6px;
    transition: color 0.3s;
}

.mainsearch input.form-control:-ms-input-placeholder {
    color: #000;
    letter-spacing: 0.6px;
    transition: color 0.3s;
}

.mainsearch input.form-control::-ms-input-placeholder {
    color: #000;
    letter-spacing: 0.6px;
    transition: color 0.3s;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: none;
    background-color: transparent;
    transition: color 0.3s;
}

.mainsearch-submit .icon {
    width: 30px;
    height: 30px;
}

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

/*
* USER NAV
*/

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

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

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
}

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

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

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

/**
 * FOOTER
 */
footer {
    margin-left: 336px;
}

.footer-main {
    background-image: url("../images/footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-main-inner {
    height: 100vh;
    max-height: 1080px;
    padding-top: calc(4 * var(--space-50) + 18px);
    display: flex;
    flex-direction: column;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    color: #fff;
    flex-grow: 1;
    margin-bottom: calc(2 * var(--space-50));
}

.footer-col-1 {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-col-4 {
    padding-right: var(--space-60);
    padding-left: var(--space-25);
}

.footer-middle {
    padding-left: var(--space-25);
}

.footer-big-text {
    font-size: 72px;
    font-weight: 100;
    text-transform: uppercase;
    line-height: 1;
}

.footer-bottom-text {
    color: #fff;
    padding: calc(var(--space-25) + 3px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    line-height: 2;
    font-weight: 400;
}

.footer-logotypes {
    display: flex;
}

.footer-logotype {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.footer-logotype + .footer-logotype {
    margin-left: 17px;
}

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

.footer-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--space-25);
}

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

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

.footer-middle .footer-col + .footer-col {
    margin-top: var(--space-60);
}

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

.footer-contact-item {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    line-height: 2.1428;
    transition: color 0.3s;
}

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

.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: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.footer-middle-bottom {
    font-size: 12px;
    line-height: 2;
}

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

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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    font-family: 'Montserrat', sans-serif;
}

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

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

.form button.captcha-refresh {
    border-color: rgba(0, 0, 0, .1);
    color: var(--color-primary);
    border-radius: 0;
    background-color: transparent;
    border-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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


.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    background-color: transparent;
    height: initial;
    border: none;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 12px;
    padding-right: 45px;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    text-overflow: initial;
}

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

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
}

.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: 2px;
    background-color: var(--color-primary);
}

.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: 0px;
    color: var(--color-primary);
    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: grey;
    color: #fff;
}

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

.filter-form .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 26px;
    width: 100%;
}

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

.section-background .breadcrumb > li {
    color: #fff;
}

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

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

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

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

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

/**
 * PAGINATION
 */

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

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

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

/**
 * ANIMATABLE ICON
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * 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: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    transition: color 0.3s, border-color 0.3s;
}

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

.social-icon svg {
    fill: currentColor;
    width: 40px;
    height: 40px;
}

.social-icon svg path{
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

/**
 * 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-wrapper {
    padding-top: 120px;
    height: 100vh;
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery {
    flex-grow: 1;
}

.gallery-list {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.gallery-list-item {
    width: 33.3333%;
}

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background-color: #f23b1c;
    transition: opacity 0.3s;
}

.gallery-picture-hover .btn:hover {
    border-color: #fff !important;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    max-width: 196px;
    text-transform: initial;
}

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

.main-slider {
    position: relative;
}

.main-slide {
    height: 100vh;
    max-height: 1080px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex !important;
    align-items: flex-end;
}

.main-slide > .container {
    height: 78%;
}

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

.main-slide-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    padding-bottom: calc(2 * var(--space-50));
}

.main-slide-title {
    font-size: 72px;
    font-weight: 200;
    width: 54%;
}

.main-slide-content .price-box {
    margin-top: var(--space-40);
}

.main-slide-content .price {
    font-size: var(--font-36);
    font-weight: 600;
}

.main-slide-content .price.price-old {
    font-weight: 400;
    font-size: 16px;
}

.social-list {
    position: absolute;
    padding: var(--space-50);
    bottom: var(--space-40);
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-link-slider {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    transition: color 0.3s;
    z-index: 100;
    margin-top: calc(2 * var(--space-40));
}

.btn-link-slider .caption {
    margin-right: calc(var(--space-25) + 5px);
}

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

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

.main-slider-arrows {
    position: absolute;
    bottom: calc(var(--space-50) + var(--space-40));
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.slider-arrows-inner {
    display: flex;
    justify-content: flex-end;
}

.slider-arrows-inner .btn + .btn {
    margin-left: 9px;
}

.slider-arrows-inner .btn {
    pointer-events: all;
}

.mainAbout-inner {
    height: 100vh;
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 42%;
    margin-right: 0;
    margin-left: auto;
}

.mainAbout-title {
    font-size: 72px;
    font-weight: 100;
    margin-bottom: calc(var(--space-40) - 5px);
    margin-top: calc(3 * var(--space-60));
    color: #fff;
    line-height: 0.8;
}

.mainAbout-text {
    margin-bottom: var(--space-40);
}

.mainAbout {
    background-repeat: no-repeat;
    -ms-background-position-x: 336px;
    background-position-x: 336px;
    background-attachment: fixed;
}

.title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.basket-heading .title {
    font-size: 26px;
}

.title-white {
    color: #fff;
}

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

.heading-items {
    display: flex;
    align-items: center;
}

.heading-items > .btn-md {
    margin-right: var(--space-60);
}

.heading-items .slider-next {
    margin-left: 9px;
}

.products-slider {
    flex-grow: 1;
}

.product-slider-wrapper .section-heading {
    margin-top: 20px
}

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

.products-slider .product-container {
    margin-top: 0;
}


.mainCategories {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-position-x: 120px;
    height: 100vh;
    position: relative;
    max-height: 1080px;
    display: flex;
    background-size: cover;
}

.mainCategories-list {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    padding-top: 120px;
    background-color: rgba(255, 255, 255, 0.65);
}

.mainCategories-list-text {
    position: absolute;
    z-index: 1;
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14.8437vw;
    font-weight: 200;
    opacity: 0.4;
}

.mainCategories-list .title.title-white {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.mainCategories-list .category-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.category {
    width: 25%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-right: none;
    background-color: transparent;
    transition: background-color 0.3s;
}

.category-inner {
    flex-grow: 1;
    padding: calc(var(--space-40) + 4px) 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: calc(2 * var(--space-60));
}

.category-image {
    margin-bottom: calc(2 * var(--space-40) - 5px);
    position: relative;
}

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

.category-image img {
    position: absolute;
    inset: 0;
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.category-title {
    margin-bottom: var(--space-25);
}

.category-content .btn {
    margin-top: var(--space-60);
}

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

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

.contact-page {
    background-image: url("../images/contact.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    max-height: 1080px;
    display: flex;
}

.contact-page > .container {
    display: flex;
    flex-direction: column;
}

.contact-top {
    flex-grow: 1;
    display: flex;
    padding-bottom: calc(2 * var(--space-60));
}

.contact-top-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scroll-bottom {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 400px;
    cursor: pointer;
    transition: color 0.3s;
}

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

.scroll-bottom .icon {
    width: 42px;
    height: 42px;
    margin: -9px -12px;
    margin-right: 14px;
}

.contact-top-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-big-text {
    font-size: 72px;
    font-weight: 100;
    text-transform: uppercase;
}

.contact-items {
    margin-bottom: calc(var(--space-40) + 5px);
}

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


.contact-item:not(.contact-address) a {
    color: #fff;
    font-size: var(--font-24);
    font-weight: 300;
    transition: color 0.3s;
}

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

.contact-item .icon {
    width: 44px;
    height: 44px;
    margin: -10px;
    margin-right: 19px;
    color: var(--color-primary);
}

.contact-items ul + ul {
    margin-top: calc(var(--space-25) - 3px);
}

.scroll-section {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: #fff rgba(255, 255, 255, 0.1);
    scrollbar-width: thin;
    padding-right: 20px;
}

.scroll-section::-webkit-scrollbar {
    width: 1px;
}

.scroll-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);

}

.scroll-section::-webkit-scrollbar-thumb {
    background: #fff;
    transition: background 0.3s;
}

.scroll-section::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background: var(--color-primary);
}

.scroll-dark::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.scroll-dark::-webkit-scrollbar-thumb {
    background: #000;
}

.contact-address .caption {
    max-height: 280px;
}

.contact-arrive {
    max-width: 478px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    height: 46px;
    padding: 0 var(--space-25);
    margin-top: calc(var(--space-50) - 5px);
    transition: background-color 0.3s, border-color 0.3s;
}

.contact-arrive .icon-map {
    width: 36px;
    height: 36px;
    margin: -6px -5px;
    margin-right: 18px;
    color: var(--color-primary);
    transition: color 0.3s;
}

.contact-arrive-left {
    display: flex;
    align-items: center;
}

.contact-arrive-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: calc(-1 * (var(--space-25) + 1px));
    transition: background-color 0.3s, color 0.3s;
}

.contact-arrive-icon .icon {
    width: 40px;
    height: 40px;
}

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

    .contact-arrive:hover .icon-map {
        color: #fff;
    }

    .contact-arrive:hover .contact-arrive-icon {
        background-color: #fff;
        color: var(--color-primary);
    }
}

.section-contact-form {
    background-image: url("../images/form_bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-position-x: 336px;
    height: 100vh;
    max-height: 1080px;
}

.contact-form-no-bs {
    margin-top: calc(3 * var(--space-50) + 10px);
    margin-bottom: calc(2 * var(--space-50));
}

#contact-form {
    width: 62%;
    margin-right: 0;
    margin-left: auto;
}

#contact-form .row {
    margin-left: -5px;
    margin-right: -5px;
}

#contact-form .row > div {
    padding-left: 5px;
    padding-right: 5px;
}

.form .form-element-name {
    font-size: 16px;
    font-weight: 400;
    color: #2c2b2c;
}

.form-control {
    border-radius: 0;
}

#contact-form .form-control {
    border: none;
}

.form button.captcha-refresh {
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--space-25);
}

#contact-form button[type="submit"].btn {
    font-size: 14px;
    text-transform: initial;
    margin-top: calc(var(--space-40) - 5px);
}

.heading-flex {
    display: flex;
    align-items: center;
}

.heading-flex .title {
    margin-right: calc(2 * var(--space-40) + 4px);
}

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

.shop-sort .form-element-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 18px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

.filter-form-content {
    padding-left: var(--space-40);
    padding-right: var(--space-60);
}

.form-range {
    height: initial !important;
    padding: 0 !important;
    color: #fff;
    background: transparent;
    border: none;
}

.valueFrom, .valueTo {
    display: flex;
}

.valueTo {
    padding-left: 0;
}

.valueFrom input,
.valueTo input {
    padding: 0 4px;
    width: 32px;
    border: none;
    background-color: #000 !important;
    color: #fff !important;
    font-size: 12px;
}

.range-inner {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.form-range-container {
    flex-grow: 1;
    padding: 0 15px;
    position: relative;
}

.form-range-container .ui-slider-range {
    background: transparent;
    border: none;
    position: relative;
}

.form-range-container::before {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(50% - 1px);
    height: 1px;
    background-color: #fff;
}

.form-range-container .ui-widget.ui-widget-content {
    border: none !important;
    background: transparent;
}

.form-range-container .ui-slider .ui-slider-handle {
    width: 1em;
    height: 1em;
    top: -0.2em;
    margin-left: -0.45em;
}

.shop-filter-form .form-element-name {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

.shop-filter-form .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.shop-filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    font-size: 12px;
    padding-left: 0;
    padding-right: 20px;
}

.shop-filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: -8px;
    color: #fff;
}

.shop-filter-form .form-group {
    margin-bottom: calc(var(--space-25) - 3px);
}

.shop-filter-form .form-group-lg {
    margin-bottom: 8px;
}

.btn-link {
    color: #fff;
    padding: 0;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 1px;
    text-transform: initial;
    width: 100%;
}

.btn-link .icon {
    width: 20px;
    height: 20px;
    margin-left: 26px;
}

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

.filter-form-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-form-buttons .btn + .btn {
    margin-top: calc(var(--space-40) + 3px);
}

.btn-filter {
    text-transform: none;
    font-size: 14px;
}

.page-top {
    background-image: url("../images/about_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    max-height: 1080px;
    display: flex;
    align-items: center;
}

.page-top-inner {
    display: flex;
    align-items: center;
}

.page-image {
    margin-right: calc(2 * var(--space-50));
    width: 45%;
    flex-shrink: 0;
}

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

.page-top-right {
    max-height: 60vh;
    padding-right: var(--space-50);
}

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

.product-nav-slider .product-slide-inside {
    position: relative;
    border: 1px solid rgba(56, 58, 56, 0.1);
    transition: border-color 0.3s;
    padding: 10px;
}

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

.product-photo .product-slider {
    padding: calc(var(--space-40) - 3px) 0;
}

.product-photo .product-labels {
    margin-bottom: 20px;
}

.product-label-container {
    display: flex;
    justify-content: center;
}


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

.product-nav-slider .product-slide-inside::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}

.product-nav-slider .product-slide-image {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.product-nav-slider {
    margin: -14px;
}

.product-nav-slider .product-slide {
    padding: 14px;
}

.product-slider-container {
    position: relative;
}

.product-photo .slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.product-wrapper {
    display: flex;
}

.product-photo {
    width: 48%;
}

.product-right {
    width: 52%;
    padding-left: calc(var(--space-60) - 4px);
}

.product-header {
    display: flex;
    padding-bottom: calc(var(--space-50) - 3px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-manufacturer {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 130px;
    width: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 calc(var(--space-25) - 8px);
    margin-right: calc(var(--space-25) + 5px);
}

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

.product-header .product-title {
    font-size: var(--font-30);
    font-weight: 300;
    text-align: left;
}

.product-code {
    font-size: 12px;
    font-weight: 400;
}

.add-to-basket {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--space-40) - 4px);
    padding-left: var(--space-60);
    padding-right: var(--space-50);
    padding-bottom: calc(var(--space-40) - 5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: calc(var(--space-40) - 3px);
}

.add-to-basket-left {
    width: 50%;
    padding-right: calc(var(--space-25) + 8px);
}

.add-to-basket-right {
    width: 50%;
    padding-left: calc(var(--space-25) + 8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.add-to-basket .select2-container--default .select2-selection--multiple,
.add-to-basket .select2-container .select2-selection--single {
    height: 46px;
    border: 1px solid #000000;
    border-radius: 23px;
}

.add-to-basket .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 22px;
    font-weight: 700;
    font-size: 13px;
}

.add-to-basket .form-element-name {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}

.shop-product-variants-container {
    margin-bottom: calc(var(--space-25) - 6px);
}

.input-counter {
    width: 100%;
}

.shop-quantity-box input.input-qty {
    border-radius: 30px !important;
    border-color: #000;
    font-weight: 700;
    color: #000;
}

.shop-quantity-box .qty-down, .shop-quantity-box .qty-up {
    border-radius: 50%;
    height: 44px;
    width: 44px;
    line-height: 43px;
    top: 13px;
}

.shop-quantity-box .qty-down {
    left: 1px;
}

.shop-quantity-box .qty-up {
    left: initial;
    right: 1px;
}

.add-to-basket-right .price {
    font-size: var(--font-30);
    font-weight: 700;
    margin-bottom: 6px;
}

.add-to-basket-right .price.price-old {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.price-caption {
    font-size: 14px;
    font-weight: 400;
}

.add-to-basket-right .shop-product-price {
    /*margin-bottom: var(--space-40);*/
}

.btn-addToBasket {
    padding-right: 0;
    justify-content: space-between;
    width: 100%;
}

.btn-addToBasket .icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -1px;
    transition: border-coloe 0.3s;
}

.btn-addToBasket .icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    transition: color 0.3s;
}

@media screen and (min-width: 1140px) {
    .btn-addToBasket:hover .icon-wrapper {
        border-color: #fff;
    }

    .btn-addToBasket:hover .icon {
        color: #fff;
    }
}

.product-availability {
    font-size: 14px;
    width: 100%;
    padding-top: 12px;
}

.product-description {
    background-image: url("../images/description.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: 336px;
    color: #fff;
    display: flex;
    align-items: center;
    height: 100vh;
    max-height: 1080px;
    background-size: cover;
}

.product-description-inner {
    margin-top: calc(2 * var(--space-50));
    display: flex;
    max-height: 70vh;
}

.product-description-left {
    width: 50%;
    padding-right: calc(var(--space-25) + var(--space-50) - 2px);
}

.product-description-right {
    width: 50%;
    padding-left: calc(var(--space-25) + var(--space-50) - 2px);
    padding-right: var(--space-60);
}

.section-title-white {
    font-size: var(--font-30);
    font-weight: 300;
    color: #fff;
    margin-bottom: calc(var(--space-25) + 8px);
}

.table-params {
    margin-bottom: calc(2 * var(--space-40));
}

.table-params td {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.1428;
}

.table-params td:first-of-type {
    padding-right: calc(var(--space-40) + var(--space-50));
}

.params-list {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.params-list li {
    padding: 5px;
}

.params-item {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 46px;
    line-height: 45px;
    border-radius: 30px;
    padding: 0 var(--space-25);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: transparent;
    transition: background-color 0.3s;
}


@media screen and (min-width: 1140px) {
    .params-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.shop-product-slider {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.shop-product-view {
    /*min-height: calc(100vh - 120px);*/
    padding-bottom: var(--space-50);
}

.product-right .text {
    max-height: 174px;
}

.add-to-basket .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 46px;
    height: 46px;
    right: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-basket .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    content: '';
    font-family: inherit !important;
    -webkit-mask-image: url('../images/icons/big_arrow_down.svg');
    mask-image: url('../images/icons/big_arrow_down.svg');
    -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: #000;
    width: 30px;
    height: 30px;
    display: block;
}

.add-to-basket .has-success .form-control-feedback {
    display: none;
}

.basket-table .product-image::before {
    display: none;
}

#product-filter-form {
    margin-bottom: var(--space-60);
    margin-top: var(--space-25);
}

.mainpage #content > .container .entry-alert {
    margin-top: 140px !important;
}

#content > .container .entry-alert {
    margin-top: 20px;
}

.basket-correct {
    padding: 15px;
}

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

.btn .fa-plus {
    margin-right: 10px;
}

.btn .fa-search {
    margin-left: 10px;
}

.title--sm {
    font-size: 16px;
}

.form-control-date {
    border-right: none;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.datetime .input-group-addon {
    border-radius: 30px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

@media screen and (min-width: 1140px) {
    .add-to-basket .select2-container--default .select2-selection--multiple:hover .select2-selection__arrow,
    .add-to-basket .select2-container .select2-selection--single:hover .select2-selection__arrow {
        background-color: var(--color-primary);
    }

    .add-to-basket .select2-container--default .select2-selection--multiple:hover .select2-selection__arrow::before,
    .add-to-basket .select2-container .select2-selection--single:hover .select2-selection__arrow::before {
        background-color: #fff;
    }
}

.shop-variant-options-panel .element-row {
    position: relative;
    z-index: 1;
}

.shop-variant-options-panel .select2-container--open .select2-dropdown--below {
    position: relative;
    top: -20px;
    z-index: 0;
}

.shop-variant-options-panel .select2-container--default .select2-results > .select2-results__options {
    padding-top: 20px;
}

.shop-filter-form .select2-container.select2-container--default.select2-container--open {
    /*position: relative !important;*/
    /*top: 0 !important;*/
    /*left: initial !important;*/
    /*right: initial !important;*/
}

.shop-filter-form .form-element {
    position: relative;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    position: relative;
}

.select2-container--default .select2-results__option[aria-selected=true]::before {
    content: 'x';
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #dc3545;
    font-size: 14px;
    font-weight: 700;

}

.btn.btn-pay {
    margin-top: var(--space-50);
    margin-bottom: var(--space-40);
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transition: color 0.3s, background-color 0.3s;
}

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

    .btn.btn-pay:hover img {
        filter: invert(51%) sepia(88%) saturate(6167%) hue-rotate(347deg) brightness(98%) contrast(96%);
    }
}

.shop-category {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.fixed-right.basket-summary-right .summary-box {
    display: flex;
    flex-direction: column;
}

.inPost-MachineSelect .fa-search {
    margin-left: 0;
}

.select2-search.select2-search--inline {
    position: relative;
}

.select2-search.select2-search--inline:before {
    position: absolute;
    color: #fff;
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
    right: -17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.4s;
}

.select2-container--below.select2-container--focus.select2-container--open .select2-search.select2-search--inline:before {
    -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);
}

.section-without-content {
    align-items: flex-start;
    padding-top: 145px;
}

.shop-sort .heading-right .select2 {
    width: 180px !important;
}

.shop-variant-options-panel {
    z-index: 1;
}

.label-height {
    height: 38px;
}

.form-group-lg .form-control {
    border-radius: 0;
}

.product-slider-wrapper {
    /*min-height: 100vh;*/
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    /*padding-top: 120px;*/
}

.modal-title {
    font-weight: 400;
    text-transform: uppercase;
}

.top-box-product .top-box-right .product-name {
    font-weight: 300;
    text-transform: uppercase;
}

.basket-table thead tr > * {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.basket-table .product-name.product-name a {
    font-size: 14px;
}

.basket-table .price:not(.price-old), .basket-table tbody .lp {
    font-weight: 400;
    font-size: 18px;
}

.invoice-address-fieldset .form-element-label-wrapper .form-element-name,
.order-history-view .panel-heading h3, .order-history-view .form-element-name, .basket-view .basket-summary-right h3, .form *[class*="form-element-collection"] > .form-element-name, .form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name, .panel-default > .panel-heading h2, .order-history-view .form-element-name, .basket-view .summary-box .form-element-name, .basket-view .summary-box h3, .filter-grid h2, .order-history-container .table.table-crud thead th {
    font-weight: 400;
    font-size: 18px;
}

.basket-view .form .summary-box .checkboxradio-container label {
    font-size: 14px;
}

.correct-link .btn {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

@media screen and (min-width: 1140px) {
    .correct-link:hover,
    .correct-link:focus {
        color: #000;
    }
}

.top-box-heading {
    font-weight: 400;
    text-transform: uppercase;
}

.inPost-MachineSelect {
    border-radius: 0;
}

.subpage .products-slider-custom .products-slider {
    /*flex-grow: initial;*/
}

.shop-product-price .price-box {
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.product-nav-slider.slick-slider.block .slick-list .slick-track {
    -webkit-transform: translate3d(0, 0, 0) !important;
    -moz-transform: translate3d(0, 0, 0) !important;
    -ms-transform: translate3d(0, 0, 0) !important;
    -o-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.form-element-collection\\AddressInvoiceCollection-container,
.invoice-address-fieldset {
    /*display: none;*/
}


.shop-product-history-price-before-discount {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-default);
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.shop-product-variant-table-row .shop-product-history-price-before-discount {
    margin-bottom: 0;
    max-width: 120px;
    display: inline-block;
    line-height: 11px;
}

.heading-flex .shop-sort {
    margin-left: auto;
}

.price.price-new{
    display: flex;
}

.price.price-new > .icon{
    align-self: center;
    margin-left: 5px;
    position: relative;
    z-index: 2;
}

.product-description-inner .table-params td,
.product-description-inner .text{
    font-size: 16px;
}

.product-description-inner .section-title-white {
    font-size: calc(var(--font-30) + 2px);
}

.rwdPanel .rwdMenu .user-nav-item-logout .icon {
    height: 35px;
    width: 35px;
    margin-right: 9px;
    margin-left: -5px;
}

.header-info {
    transition: .4s all;
    height: 0;
    transform: translateY(-62px);
    overflow: hidden;
    width: 100%;
}

.header-info.is-visible {
    height: 42px;
    transform: translateY(0);
}

.header-info.hide-popUp {
    transform: translateY(-62px);
    height: 0;
}

.header-info-inner {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    color: #fff;
    padding: 6px 0;
    min-height: 42px;
    position: relative;
    padding-right: calc(24px + 15px);
    justify-content: center;
}

.header-info-inner .icon {
    max-width: 26px;
    max-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-info-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    transition: .2s all linear;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 7px;
}

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

.header-info-inner .caption {
    font-size: 14px;
}

header:has(.header-info.is-visible) + #content {
    padding-top: calc(116px + 42px);
}

.header-info-text {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    color: #fff;
}

.header-info-text .icon {
    filter: grayscale(1) invert(1);
}

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

header{
    flex-wrap: wrap;
}