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

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

    --container-padding: 40px;

    --row-gap: 4px;

    /** SPECIFIC **/
    --color-primary: #0E3F78;
    --color-secondary: #14ABA4;
    --color-default: #333;
    --color-border-deafult: #ccc;

    --gradient-primary: linear-gradient(90deg, #0E3975 0%, #037892 53.18%, #14ABA4 100%);
}

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000;
}

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


.grayscale {
    filter: grayscale(1);
}

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#content {
    padding-top: 165px;
}

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

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

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

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

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

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

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

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

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

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


/**
 * THEMES
 */

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

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


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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

/**
 * BUTTONS
 */

.btn {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}

.btn-square {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-lg {
    font-size: 14px;
    font-weight: 400;
    min-height: 46px;
    border-radius: 23px;
    padding: 10px calc(var(--space-25) + 8px);
    text-transform: uppercase;
    gap: 15px;
}

.btn-link {
    font-size: 14px;
    color: #000 !important;
    text-transform: uppercase;
}

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

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

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

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

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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.875;
}

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

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

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

.text h3 {
    font-weight: 600;
    font-size: 20px;
}

.text h4 {
    font-weight: 600;
    font-size: 18px;
}

.text h5 {
    font-weight: 600;
    font-size: 16px;
}

.text h6 {
    font-weight: 600;
    font-size: 16px;
}

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

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

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

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

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

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

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

/**
 * HEADER
 */

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

.stickable.sticky {
    box-shadow: 0px 0px 5px 0px #00000024;
}

.mainpage .header-top {
    transition: background-color .3s;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding 0.3s;
}

.logo {
    max-width: 252px;
    transition: max-width 0.3s;
}

header.sticky .logo {
    max-width: 190px;
}

.logo-sm {
    max-width: 57px;
    transition: max-width 0.3s;
}

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

header.sticky .logo-sm {
    max-width: 45px;
}


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

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

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
    display: flex;
    position: relative;
    gap: calc(var(--space-50) + 5px);
    padding-right: var(--space-40);
    margin-right: var(--space-40);
}

#main-menu ul::before {
    /*content: '';*/
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 11px;
    background-color: #fff;
    transform: translateY(-50%);
}

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

#main-menu li a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    color: var(--color-primary);
    transition: color 0.3s;
}

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

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

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

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

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

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

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

.header-mid {
    background: var(--gradient-primary);
}

#menu-bottom ul {
    display: flex;
    margin: 0 calc(-0.5 * var(--space-40));
}

#menu-bottom ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    transition: all 0.3s;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
    padding: 19px calc(var(--space-40) / 2);
}

header.sticky #menu-bottom ul li a {
    padding: 10px calc(var(--space-40) / 2);
}

#menu-bottom ul li a .icon:last-child {
    width: 5px;
}

#menu-bottom ul li a i {
    padding-left: calc(var(--space-25) + 4px);
}

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

    #menu-bottom ul li ul li a:hover {
        background-color: transparent;
        color: var(--color-primary);
    }

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

#menu-bottom ul li {
    position: relative;
    display: block;
}

#menu-bottom ul li ul {
    display: none;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: calc(var(--space-25) - 5px) calc(var(--space-50) - 5px);
    z-index: 9;
}

#menu-bottom ul li ul li a {
    padding: 0;
    transition: color 0.3s;
    line-height: 1.8;
}


.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;

    max-width: 100%;
}

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

.mainsearch-search .form-element-container {
    width: 0;
    transition: width 0.3s;
    position: absolute;
    right: 62px;
    top: 2px;
}

.search-group .section-title-sm {
    color: var(--color-primary);
}

.mainsearch-search .form-element-container .element-row {
    overflow: hidden;
}

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

.mainsearch input.form-control {
    display: block;
    height: 40px;
    padding: 5px 15px;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: var(--color-primary);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transition: all 0.3s;
    background-color: transparent;
    margin-right: 10px;
}

.mainsearch-submit.active {
    color: var(--color-primary);
}

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

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

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

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

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
    margin-right: 10px;
}

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

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
}

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

@media screen and (min-width: 1140px) {
    .header-top .user-nav-item-inner:hover {
        color: #fff;
        background-color: #000;
    }
}

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


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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    border-radius: 5px;
    border-color: rgba(0, 0, 0, 0.15);
}

.input-group-addon {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.form .form-element-name {
    margin-bottom: 11px;
}

.form-section-inner .form-group {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 15px;
    padding-right: 44px;
    color: #000;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.shop-sort .form-element-text {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * MAP POINTS
 */

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

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

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

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

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

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin-top: var(--space-25);
    margin-bottom: 17px;
}

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

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

.breadcrumb > li > a {
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 400;
}

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

/**
 * PAGINATION
 */

.pagination-wrapper {
    max-width: initial;
    width: 100%;
}

.pagination-wrapper ul {
    max-width: 500px;
    margin: 0 auto;
}

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    padding: 8px;
    line-height: 34px;
    letter-spacing: 0.45px;
    font-size: 15px;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    display: flex;
    align-items: center;
    border: 0;
    font-size: 22px;
    padding: 0;
    box-shadow: none;
}

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

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

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

/**
 * ANIMATABLE ICON
 */

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

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

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


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

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


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

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

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    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;
    padding: calc(var(--space-60) + 5px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logotypes .logotypes-title {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    width: 20%;
}

.logotypes .logotypes-slider-container {
    width: 80%;
}

.logotypes .logotype-slider .slick-track {
    margin-left: 0;
    margin-right: 0;
}

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


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

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

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


/**
 * GALLERY
 */

.gallery {
    clear: both;
    margin: calc(2 * var(--space-50)) 0;
}

.gallery-list {
    font-size: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

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

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

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

.gallery-picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s linear;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(90deg, rgba(14, 57, 117, 0.8) 0%, rgba(3, 120, 146, 0.8) 53.18%, rgba(20, 171, 164, 0.8) 100%);
    transition: opacity 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section-title-sm {
    font-size: var(--font-30);
    font-weight: 800;
    text-transform: uppercase;
}

.section-title.title-white {
    color: #fff;
}

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

.section-discountGroup {
    margin: calc(2 * var(--space-40)) 0;
}

.shop-category-top .breadcrumb > li {
    color: #fff;
}

.slick-track {
    margin-left: 0;
    margin-right: 0;
}

/*ASIDE*/

.menuList-toggle {
    cursor: pointer;
}

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

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

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

.aside-image {
    display: none;
    position: absolute;
    bottom: -42px;
    right: 0;
    left: -80px;
}

.aside::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: min(calc((1640px - 100dvw) / 2), calc(-1 * var(--container-padding)));
    background: url('../images/asideBg.webp') no-repeat center / cover;
}

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

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

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

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

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

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

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

.aside-title {
    font-size: var(--font-30);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-50);
    position: relative;
    z-index: 1;
}

.asidedPage-content {
    flex-grow: 1;
    padding-left: calc(2 * var(--space-40));
    width: calc(100% - 414px);
    margin-bottom: var(--space-60);
}

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

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

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

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

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

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

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

.menuList ul > li > .menuList-group > a {
    font-size: 15px;
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    text-transform: uppercase;
    padding-right: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--color-primary);
}

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

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

.menuList > ul > li > .menuList-group > a {
    padding-left: 18px;
    position: relative;
    transition: color 0.3s, background-color 0.3s;
    display: flex;
    align-items: center;
}

.menuList > ul > li > .menuList-group > a .icon {
    display: flex;
    width: 30px;
    height: 30px;
    margin-right: calc(var(--space-25) - 2px);
}

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

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

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

.menuList > ul > li > ul > li > .menuList-group > a {
    padding: 0;
    transition: all 0.3s;
    line-height: 2.4;
    letter-spacing: 0;
    text-transform: initial;
}

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

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

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

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

.menuList > ul > li > ul > li.active > .menuList-group > a {
    font-weight: 700;
}

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

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

.menuList ul > li > ul {
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    padding: calc(var(--space-25) - 5px) calc(var(--space-50) + var(--space-25));
}

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

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

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

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


.shop-category-top .heading-description {
    width: 70%;
}


.categories-list {
    display: flex;
    flex-wrap: wrap;
}


.section-header .slick-arrow:hover .icon {
    color: var(--color-primary);
}

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

}

.shop-category-list-wrapper {
    padding: var(--space-60) 0;
    background-color: var(--color-primary);
}

.shop-category-list {
    display: flex;
    flex-wrap: wrap;
}

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


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

.btn-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all .2s linear;
    pointer-events: initial;
}

.btn-arrow.swiper-button-lock {
    display: none;
}

.btn-arrow .icon {
    width: 7px;
}

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

.section-product-slider {
    background-color: #F8F8F8;
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: calc(2 * var(--space-40) + 8px);
}

.section-product-slider .section-header {
    margin-bottom: var(--space-40);
}

.section-product-slider .product-image img {
    max-width: 146px;
}

.section-product-slider .shop-product-box .price-net .price:not(.price-old) {
    font-size: 20px;
}

.section-product-slider .product-bottom {
    padding: calc(var(--space-25) - 5px);
}

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

.btn-discount {
    font-family: 'Fustatic', sans-serif;
    font-size: 15px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    transition: text-shadow 0.3s;
    color: #000 !important;
}

.btn-discount:hover {
    text-shadow: 0 1px #000;
}

.btn-discount.active {
    text-shadow: 0 1px #000;
    color: #000 !important;
}

.product-slider .slick-track {
    display: flex;
}

.product-slider .shop-product-box {
    height: initial;
}


.files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: calc(var(--space-25) - 2px) calc(var(--space-25) + 5px);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    width: 100%;
}

.file-left .caption {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.file-left {
    display: flex;
    align-items: center;
    padding-right: 10px;
    flex-grow: 1;
    transition: border-color 0.3s;
}

.file-icon {
    display: flex;
    margin-right: 10px;
    flex-shrink: 0;
}

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

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


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

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

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

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

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

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

.product-top-info {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

.product-top-info-wrapper {
    margin-bottom: calc(var(--space-40) - 5px);
}

.main-slider-title {
    background: linear-gradient(90deg, #242060 0%, #CD0A74 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(var(--font-36) + 4px);
    font-weight: 700;
    text-transform: uppercase;
    max-width: 700px;
}

.main-slider-slide {
    position: relative;
    height: initial;
}

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

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

.main-slider-inner-wrapper {
    display: flex;
    padding: var(--space-40) 0 calc(2 * var(--space-50)) 0;
}

.main-slider-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    min-height: 670px;
}

.main-slider-logo {
    display: block;
    margin-bottom: 10px;
}

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

.main-slider-left > .text {
    max-width: 580px;
    color: #fff;
    position: relative;
    top: 84px;
}

.main-slider-left > .btn {
    margin-top: var(--space-40);
    position: relative;
    top: 84px;
}

.main-slider-right {
    width: 60%;
    margin-left: -10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider-right img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

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

.main-slider-pagination {
    position: absolute;
    width: fit-content !important;
    top: 50% !important;
    left: unset !important;
    bottom: unset !important;
    right: var(--space-60) !important;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-40);
}

.main-slider-pagination .main-slider-pagination-bullet {
    position: relative;
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

.main-slider-pagination .main-slider-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    opacity: 0;
    transition: all .2s linear;
}

.main-slider-pagination .main-slider-pagination-bullet.main-slider-pagination-bullet-active:before {
    opacity: 1;
}

@media screen and (min-width: 1140px) {
    .main-slider-pagination .main-slider-pagination-bullet:hover:before {
        opacity: 1;
    }
}

.btn-gradient {
    color: var(--color-primary);
    position: relative;
    box-shadow: unset !important;
    background: var(--gradient-primary);
}

.btn-gradient > * {
    position: relative;
    z-index: 2;
}

.btn-gradient:before {
    content: "";
    position: absolute;
    inset: 1px;
    background-color: #fff;
    opacity: 1;
    transition: all .2s linear;
}

.btn-lg.btn-gradient:before {
    border-radius: 22px;
}

.btn-gradient.active:before {
    opacity: 0;
}

.btn-gradient.active {
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .btn-gradient:focus,
    .btn-gradient:active,
    .btn-gradient:hover {
        color: #fff;
    }

    .btn-gradient:focus:before,
    .btn-gradient:active:before,
    .btn-gradient:hover:before {
        opacity: 0;
    }
}

.product-bottom .price:not(.price-old) {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
}

.product-bottom .price.price-old {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-primary);
    text-decoration: line-through;
}

.shop-product-view {
    background: url('../images/product-view-bg.webp') no-repeat center top;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 3px);
}

.heading-page .section-title {
    text-align: center;
    margin-bottom: var(--space-25);
}

.heading-left.sort-section {
    display: flex;
    justify-content: flex-end;
}

.mainCategory-box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
    border-radius: 5px;
}

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

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

.mainCategory-name {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
}

.mainCategory-wrapper {
    display: block;
}

.contact-section .section-title {
    text-align: center;
}

.contact-section {
    padding-bottom: var(--space-60);
    background: url('../images/contact-top-bg.webp') no-repeat bottom right;
}

.contact-top {
    display: flex;
    position: relative;
}

.contact-top-line1 {
    position: absolute;
    top: 2px;
    right: 9%;
    font-size: calc(var(--font-36) - 1px);
    line-height: 1.3428;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    max-width: 380px;
}

.contact-top-line2 {
    position: absolute;
    bottom: 10%;
    right: 2%;
    font-size: calc(var(--font-36) - 1px);
    line-height: 1.3428;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    max-width: 230px;
}

.icon-underline {
    margin-top: -4px;
    margin-right: 10px;
    display: flex;
    justify-content: flex-end;
}

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

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

.contact-top-right {
    width: 70%;
}

.contact-us-left-text {
    font-size: 16px;
    letter-spacing: 0.48px;
    line-height: 2;
    margin-bottom: calc(var(--space-40) - 2px);
}

.contact-item a {
    transition: color 0.3s;
    color: var(--color-primary);
    font-size: calc(var(--font-24) - 2px);
    font-weight: 800;
    letter-spacing: 0.66px;
}

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

.contact-item-caption {
    font-size: 16px;
    letter-spacing: 0.48px;
    font-weight: 400;
    line-height: 2;
    color: var(--color-primary);
}

.contact-item + .contact-item {
    margin-top: var(--space-40);
}

.contact-top-logo {
    margin-top: calc(2 * var(--space-40) + 9px);
}

.contact-top-logo img {
    display: block;
    max-width: 100%;
    margin-right: calc(var(--space-60) + 10px);
    margin-left: auto;
}

.contact-top-line-caption {
    text-transform: initial;
    font-family: "Edu AU VIC WA NT Hand";
    font-size: calc(var(--font-36) - 1px);
    font-weight: 500;
    color: var(--color-primary);
    text-align: right;
}

.form-section {
    background: url('../images/contact-form-bg.webp') no-repeat center / cover;
    padding-top: calc(var(--space-50) + 5px);
    padding-bottom: calc(var(--space-60) + 6px);
    position: relative;
}

.form-section-image {
    position: absolute;
    top: -42%;
    left: 0;
}

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

.form-section-title {
    text-align: center;
    font-size: calc(var(--font-36) + 4px);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    margin-bottom: calc(var(--space-50) + 5px);
    font-weight: 700;
}

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

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

.contact-form .form-element-name {
    color: #fff;
    font-weight: 700;
}

.contact-form .form-control {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: #fff;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-element-option-text {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.contact-form button.captcha-refresh {
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--color-secondary);
}

.contact-form button.captcha-refresh:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.contact-form .captcha-image-wrapper {
    background-color: #fff;
}

.contact-form .row-flex-center {
    margin-top: var(--space-50);
}

.google-map {
    position: relative;
}

.google-map::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 31.6%;
}

.google-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-title {
    width: 100%;
    text-align: center;
}

.special-label {
    display: flex;
    align-items: baseline;
    gap: 11px;
}

.special-label-caption {
    font-family: "Edu AU VIC WA NT Hand";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

.special-label-caption .icon-underline {
    max-width: 70px;
    margin-right: 0;
    margin-left: 19px;
    margin-top: -8px;
}

.mainCategories-right-info-list-wrapper .special-label {
    color: #fff;
    margin-bottom: 20px;
}

.mainCategories-right-info-list-wrapper .special-label svg path {
    fill: #fff;
}

.distribution-map-wrapper > svg {
    display: block;
    max-width: 100%;
}

.distribution-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-50);
}

.distribution-left {
    width: 540px;
    flex-shrink: 0;
    margin-top: 40px;
}

.voivodeship {
    transition: all .2s linear;
    cursor: pointer;
    fill: rgba(0, 0, 0, 0.67);
}

.voivodeship.active {
    fill: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1140px) {
    .voivodeship:hover {
        fill: transparent;
    }
}

.distribution-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.distribution-map-wrapper {
    position: relative;
    filter: drop-shadow(0px 15px 8px rgba(0, 0, 0, 0.36));
}

.distribution-points {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.distribution-point {
    position: absolute;
    z-index: 2;
    pointer-events: initial;
    cursor: pointer;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
}

.distribution-point .icon * {
    fill: #fff;
}

.distribution-point.hovered .icon * {
    fill: #000;
}

.distribution-map-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-mask-image: url('../images/icons/map.svg');
    mask-image: url('../images/icons/map.svg');
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distribution-map-bg svg,
.distribution-map-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-wrapper {
    display: none;
}

.subregion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--space-25) - 9px) calc(var(--space-25) - 5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all .2s linear;
}

.subregion-wrapper:first-of-type .subregion-heading {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.subregion-name {
    font-size: 17px;
    font-weight: 700;
}

.subregion-content-inner {
    padding: calc(var(--space-25) - 9px) calc(var(--space-25) - 5px);
    transition: all .2s;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.subregion-wrapper.active .subregion-content-inner {

}

.subregion-wrapper .icon {
    transition: all .2s;
}

.subregion-wrapper.active .icon {
    transform: rotate(180deg);
}

.subregion-wrapper.active .subregion-heading {
    background-color: #000;
    color: #fff;
}

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

.mainCategories-right-item.active + .mainCategories-right-image {
    display: none;
}

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

.main-slider .logo-top {
    display: block;
    max-width: 220px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: var(--space-25);
    margin-top: var(--space-25);
}

.main-slider .logo-top img {
    display: block;
    max-width: 100%;
}

.main-slider-line2 {
    text-transform: initial;
    font-family: "Edu AU VIC WA NT Hand";
    font-size: calc(var(--font-36) - 1px);
    font-weight: 500;
    color: var(--color-primary);
    text-align: right;
}

.main-slider-line2-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -15px;
}

.shop-add-to-basket .btn-lg.btn-gradient:before {
    inset: 0px;
}

.product-container .shop-add-to-basket .btn-lg.btn-gradient {
    border: 1px solid var(--color-primary);
}

.product-container .shop-add-to-basket .btn-lg.btn-gradient:hover {
    border-color: #fff;
}

.btn-basket {
    border: 1px solid #fff;
}

.btn-basket:hover {
    border-color: var(--color-primary);
}

.footer-links li a .icon {
    display: none;
}