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

    /** SPECIFIC **/
    --color-primary: #CC973E;
    --color-secondary: #1D1D1B;
    --color-default: #f7f7f7;
    --color-border-deafult: #ccc;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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


.grayscale {
    filter: grayscale(1);
}

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

.icon-twitter,
.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');
}


/**
 * THEMES
 */

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

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


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

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

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

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

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

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

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

.btn-third[disabled],
.btn-third[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: transparent;
    border-color: #fff;
    color: #fff;
}


.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: #fff;
    color: var(--color-default);
}

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

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

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

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

    .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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all .2s linear;
}

.btn-lg {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 400;
}

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

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

.btn .icon svg path {
    fill: currentColor;
}

/**
 * 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: 14px;
    line-height: 30px;
    font-weight: 300;
}

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

.text ul > li,
.text ol > li {
    left: 25px;
    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: 14px;
}

.text ol > li::marker {
    word-spacing: 25px;
    font-weight: 700;
}

.text ol > li {
    left: 50px;
    padding-right: 60px;
}

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

#content {
    padding-top: 146px;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

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

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 17px 0;
    min-height: 80px;
}

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

.header-top-left > a.btn {
    min-width: 200px;
    justify-content: flex-start;
}

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

.header-top-middle #main-menu ul {
    display: flex;
    gap: calc(var(--space-50) + 6px);
}

.header-top-middle #main-menu ul li a {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    transition: color .2s;
}

.header-mid {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#cat-menu ul {
    display: flex;
    gap: var(--space-50);
    align-items: center;
    padding: 20px 0;
}

#cat-menu ul:has(li:nth-child(5)) {
    justify-content: space-between;
}

#cat-menu > ul > li > a {
    display: flex;
    gap: calc(var(--space-25) - 5px);
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    transition: color .2s;
    line-height: 23px;
}

#cat-menu > ul > li > a::after {
    content: url("../images/icons/arrow-next.svg");
    flex-shrink: 0;
    margin-bottom: 2px;
    transition: .2s all;
}

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

    #cat-menu > ul > li > a:hover::after {
        filter: brightness(0) saturate(100%) invert(59%) sepia(55%) saturate(502%) hue-rotate(359deg) brightness(95%) contrast(86%);
    }
}

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

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

.logo {
    flex-shrink: 0;
}

.header-top-inner .logo {
    max-width: 173px;
}

.logo a {
    display: block;
}

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

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

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

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

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

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

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

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

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    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-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.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 {

}

.footer-main {
    background-color: var(--color-secondary);
    color: #fff;
}

/* FOOTER BAR */
.footer-bar {
    padding: 23px 0;
    line-height: 26px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #f4f4f4;
    background-color: var(--color-secondary);
}

.copyright-undicom a, .copyright-undicom a:visited {
    margin-left: 0;
}

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

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

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

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

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

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

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

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

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

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

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

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

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 6px;
    box-shadow: none;
}

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

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

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

.form button.captcha-refresh:active {
    box-shadow: none;
}

.form button.captcha-refresh:focus:active {
    border-color: transparent;
    color: var(--color-secondary);
}

.form button.captcha-refresh:hover:focus {
    border-color: transparent;
    color: var(--color-secondary);
}

.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: transparent;
        color: #fff;
        background-color: var(--color-primary);
    }

    .form button.captcha-refresh:hover:focus {
        border-color: transparent;
        color: #fff;
        background-color: var(--color-primary);
    }

    .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-container--default .select2-search--inline .select2-search__field {
    cursor: pointer;
}

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

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

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #000;
}

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

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

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

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

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

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

.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;
    width: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '';
    display: flex;
    flex-shrink: 0;
    width: 11px;
    height: 12px;
    background-image: url(../images/icons/arrow-bottom.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.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: 18px 0 calc(var(--space-25) + 7px);
    line-height: 18px;
    font-size: 12px;
}

.news-breadcrumb-container .breadcrumb-container {
    margin-bottom: calc(var(--space-25) + 3px);
}

.contact-breadcrumb-container .breadcrumb-container {
    margin-bottom: 16px;
}

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

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

.breadcrumb > li > a {
    font-size: 12px;
    transition: .2s color;
}

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

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

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

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

/**
 * PAGINATION
 */
.pagination-wrapper {
    padding: 0 !important;
    margin: calc(var(--space-60) + 10px) auto;
    max-width: 820px;
}

.pagination-wrapper ul li.prev a,
.pagination-wrapper ul li.next a {
    border-radius: 8px;
    background-color: var(--color-default);
    color: var(--color-secondary);
    border: none;
    transition: .2s all;
    width: 46px;
    height: 46px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul li.prev a:active,
.pagination-wrapper ul li.next a:active {
    box-shadow: none;
    -webkit-box-shadow: none;
}

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

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

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

.pagination-wrapper ul li.active a {
    color: #000;
    font-weight: 700;
}

@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
 */
.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: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 8px;
    color: #fff;
    transition: .2s all;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

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

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0;
    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: var(--color-secondary);
    transition: all 0.3s;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    border-top: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

.langs-menu li + li {
    border-top: 1px solid rgba(255, 255, 255, .5);
}

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

.langs-menu a {
    color: inherit;
    text-decoration: none;
}

.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: 46px;
    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(255, 255, 255, .5);
    background-color: transparent;
    color: #fff;
    border-radius: 8px;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .langs-menu:focus .lang-button,
    .langs-menu:hover .lang-button,
    .langs-menu:focus-within .lang-button {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.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: var(--color-secondary);
        background-color: #fff;
    }

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

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

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    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;
}

.footer-bananer {
    padding-top: calc(var(--space-50) + 2px);
    padding-bottom: calc(var(--space-40) + 3px);
    background-size: cover;
    background-repeat: no-repeat;
}

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

.footer-bananer-text {
    font-size: calc(var(--font-36) + 1px);
    color: #fff;
    line-height: 1.419em;
}

.footer-bananer-inner > .btn {
    min-width: 236px;
    justify-content: flex-start;
    gap: 20px;
    padding: 5px 20px;
}

.footer-top {
    display: flex;
    padding: calc(var(--space-60) + 10px) 0;
    justify-content: space-between;
    align-items: center;
}

.footer-cols {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: calc(var(--space-60) + 10px);
    padding-bottom: calc(var(--space-60) + 4px);
}

.footer-top-element {
    display: flex;
    gap: 20px;
}

.footer-top-element .icon {
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 6px;
    width: 18px;
    height: 18px;
}

.footer-top-element .text {
    font-size: 17px;
    line-height: 1.765em;
}

.footer-top-element-link {
    transition: color .2s;
}

.footer-top-element-link,
.footer-top-element-link:focus,
.footer-top-element-link:hover {
    color: #fff;
}

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

.footer-top-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(3 * var(--space-50) + 10px);
}

.footer-top-right .social-list {
    flex-shrink: 0;
}

.footer-top .logo {
    padding-right: var(--space-40);
}

.footer-top-element + .footer-top-element {
    padding-left: calc(var(--space-25) + 5px);
}

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

.logotypes-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-50) + 5px);
    padding-top: calc(var(--space-50) + 4px);
    padding-bottom: calc(var(--space-60) + 10px);
    border-top: 1px solid rgba(0, 0, 0, .1);
}

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

.btn-arrow {
    width: 46px;
    height: 46px;
    background-color: var(--color-default);
    border-radius: 8px;
    border: none;
    color: var(--color-secondary);
    transition: .2s all;
}

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

.btn-arrow .icon svg path {
    fill: currentColor;
}

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

.logotypes-slider-container {
    margin: calc(-0.5 * (var(--space-25) + 5px));
}

.logotype-slide {
    padding: calc(0.5 * (var(--space-25) + 5px));
}

.logotype {
    transition: .2s all;
    border: 1px solid rgba(0, 0, 0, .1);
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: var(--space-25) !important;
}

a.logotype {
    cursor: pointer;
}

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

/*
TODO: Slick slider - style
 */
/* Srodkowanie */
.slick-track {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: stretch;
}

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

.section-textImage-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-TextImage-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.section-TextImage-image > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.section-TextImage-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    align-items: flex-start;
    box-shadow: 12px 13px 17px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: var(--space-50) var(--space-60) calc(var(--space-50) + 5px) var(--space-50);
    max-width: 1300px;
    background-color: #fff;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.section-TextImage-text-wrapper > .btn {
    min-width: 170px;
}

.section-TextImage-text {
    font-size: 15px;
    line-height: 2em;
    font-weight: 300;
}

.section-TextImage-text h2 {
    font-size: var(--font-30);
    line-height: 1.5em;
}

.section-TextImage-logo img {
    display: block;
    width: 400px;
    height: 100px;
}

.section-TextImage-logo {
    position: absolute;
    top: calc(2 * var(--space-50));
    right: calc(2 * var(--space-60));
    z-index: 1;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.footer-cols a {
    color: #fff;
    transition: color .2s;
}

.footer-cols > ul > li {
    width: 16.66%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-40) - 2px);
    padding-right: 10px;
}

.footer-cols > ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--space-40);
}

.footer-cols > ul > li > a {
    font-size: 17px;
    font-weight: 700;
}

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

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

.footer-cols li > ul li a {
    font-size: 14px;
    font-weight: 300;
    line-height: 32px;
}

/*
 * TODO: Aktualności
 */
.news-top-wrapper {
    margin-bottom: calc(var(--space-40) - 5px);
}

.news-text-top.text {
    font-size: 16px;
}

.news-heading {
    margin-bottom: calc(var(--space-60) + 7px);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 7px);
}

.page-title.news-page-title {
    font-size: calc(var(--font-48) - 3px);
    line-height: 1.41666em;
}

.news-categories-wrapper {
    padding: calc(var(--space-40) - 4px) var(--space-40);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    row-gap: 15px;
}

.news-categories li {
    position: relative;
    margin: 0 14px;
}

.btn.category-btn {
    border-radius: 8px;
    padding: 10px calc(var(--space-25) - 5px);
}

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

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

.news-categories:not(:has(li.active)) li:first-child .category-btn {
    background-color: var(--color-secondary);
    color: #fff;
}

.news-categories li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, .15);
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity .15s ease;
}

.news-categories li.row-end::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, .15);
    transform: translateY(-50%);
    pointer-events: none;
}

@media screen and (min-width: 1140px) {
    .news-categories li:hover::before {
        opacity: 0;
    }

    .news-categories li:hover + li:not(.row-start)::before {
        opacity: 0;
    }

    .news-categories li.row-end:hover::after {
        opacity: 0;
    }
}

.news-categories li.active::before {
    opacity: 0;
}

.news-categories li.row-end.active::after {
    opacity: 0;
}

.news-categories li.active + li:not(.row-start)::before {
    opacity: 0;
}

.news-categories:not(:has(li.active)) li:first-child::before {
    opacity: 0;
}

.news-categories:not(:has(li.active)) li:first-child.row-end::after {
    opacity: 0;
}

.news-categories:not(:has(li.active)) li:first-child + li:not(.row-start)::before {
    opacity: 0;
}

.news-list-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * (var(--space-25) + 5px)) calc(-1 * (1 * var(--space-50)));
}

.news-list:has(.alert) {
    margin: 0;
    margin-bottom: var(--space-60);
}

.news-list .alert {
    width: 100%;
}

.news-item {
    padding: calc(var(--space-25) + 5px) calc(1 * var(--space-50));
    width: 33.3333%;
}

.news-item-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 7px);
    height: 100%;
}

.news-item-image {
    border-radius: 10px;
    overflow: hidden;
}

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

.news-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-title {
    font-size: max(calc(var(--font-24) - 4px), 18px);
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 14px;
    min-height: calc(2 * 1.5em);
    display: flex;
    align-items: center;
    transition: color .2s;
}

.news-item-title-inner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.news-item-date {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.news-item-date .icon {
    flex-shrink: 0;
}

.news-item-date .icon img {
    display: block;
    max-width: 100%;
}

.news-item-text.text {
    text-align: justify;
}

.see-more {
    font-weight: bold;
    transition: color .2s;
}

@media screen and (min-width: 1140px) {
    .see-more:hover {
        color: vaR(--color-primary);
    }

    .news-item-inner:hover .news-item-title {
        color: var(--color-primary);
    }

    .news-item-inner:hover .news-item-image img {
        transform: scale(1.1);
    }
}

/*
 * TODO: Aktualności - koniec
 */


/*
 * TODO: Aktualności widok
 */
.news-view-top-wrapper {
    margin-bottom: calc(var(--space-60) + 6px);
}

.news-top {
    display: flex;
}

.news-top-left {
    width: 50.5%;
    padding-right: calc(2 * var(--space-40) + 5px);
}

.news-top-image {
    width: 49.5%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-top-image img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.news-title {
    font-size: var(--font-36);
    font-weight: 700;
    line-height: 1.2776em;
    margin-bottom: 14px;
}

.news-desc {
    margin-top: calc(var(--space-60));
}

.news-gallery {
    margin-top: calc(var(--space-40) + 4px);
}

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

.news-view-section-wrapper {
    margin: calc(var(--space-50) + 5px) 0;
}

.section-bg {
    padding: var(--space-60) 0;
    background-color: var(--color-default);
}

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

.news-view-section-heading {
    display: flex;
    gap: var(--space-25);
    justify-content: space-between;
}

.news-view-section-title {
    font-size: var(--font-30);
    font-weight: 700;
}

.news-view-salons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-60);
}

.salon-small-box {
    display: flex;
    gap: calc(var(--space-25) + 5px);
    border-bottom: 1px solid rgb(0, 0, 0, .2);
    padding: calc(var(--space-40) - 6px) 0;
}

.salon-small-img {
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
}

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

.news-view-salons-list .salon-small-box:first-child,
.news-view-salons-list .salon-small-box:nth-child(2) {
    border-top: 1px solid rgb(0, 0, 0, .2);
}

.salon-small-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.salon-small-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.salon-small-name {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 700;
    line-height: 1;
}

.salon-small-teaser {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.salon-small-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--space-25) - 5px);
    row-gap: 5px;
}

.salon-small-bottom-element {
    display: flex;
    gap: 12px;
    color: #000;
    align-items: center;
    font-size: 14px;
    transition: .2s all;
}

.salon-small-bottom-element .icon {
    flex-shrink: 0;
}

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

.return-btn-wrapper {
    margin: calc(var(--space-60)) 0;
}

.return-btn-wrapper .btn {
    min-width: 170px;
}

.news-recommended {
    background-color: var(--color-default);
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-60) + 10px);
}

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

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-50);
    flex-wrap: wrap;
}

.section-title {
    font-size: var(--font-30);
    font-weight: 700;
    line-height: 1em;
}

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

.recommended-slider-container {
    margin: calc(-1 * (var(--space-25) + 5px)) calc(-1 * (1 * var(--space-50)));
}

.recommended-slider {
    display: flex;
    flex-wrap: wrap;
}

.recommended-slide .news-item {
    width: 100%;
}

.recommended-slider .recommended-slide {
    width: 33.33%;
}

.recommended-slider:not(.slick-initialized) .recommended-slide:nth-of-type(n + 4) {
    display: none;
}

.news-recommended:has(.recommended-slider:not(.slick-initialized)) .recommended-slider-buttons {
    display: none;
}

/*
 * TODO: Aktualności widok - koniec
 */

/*
 * TODO: Kontakt
 */
.contact-top-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}

.contact-top {
    display: flex;
    align-items: stretch;
}

.contact-top-left {
    width: 36.6%;
    margin-right: calc(var(--space-50) + 6px);
    border-radius: 10px;
    background-color: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: var(--space-40);
    padding: calc(var(--space-25) + 10px) var(--space-50) calc(var(--space-25) + 10px) var(--space-60);
}

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

.contact-title {
    font-size: calc(var(--font-36));
    font-weight: 700;
    line-height: 1.5em;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-element {
    display: flex;
    gap: 17px;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

.contact-info-element .text {
    line-height: 21px;
}

.contact-info-element .icon {
    border-radius: 8px;
    width: 46px;
    height: 46px;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info-element-link {
    padding: 10px;
    padding-right: calc(var(--space-25));
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 8px;
    transition: border-color .2s;
    color: #fff;
}

.contact-info-element-link .icon-right {
    margin-left: auto;
}

.contact-info-element-link .icon-right svg {
    display: block;
    max-width: 100%;
}

.contact-info-element-link .icon-right svg path {
    transition: .2s all;
}

.contact-info-element-link:hover,
.contact-info-element-link:focus {
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .contact-info-element-link:hover {
        border-color: var(--color-primary);
        color: #fff;
    }

    .contact-info-element-link:hover .icon-right svg path {
        fill: var(--color-primary);
    }
}

.contact-info-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contact-info-logo {
    max-width: 173px;
}

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

.contact-socials {
    display: flex;
    gap: 17px;
    flex-direction: column;
    flex-shrink: 0;
}

.contact-socials-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
}

.contact-info-element-link-wrapper {
    margin-left: -10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-top-right {
    padding: calc(var(--space-25) + 10px) var(--space-60);
    padding-bottom: calc(var(--space-50) + 5px);
    background-color: var(--color-default);
    border-radius: 10px;
}

.contact-top-right .contact-title {
    text-align: center;
    margin-bottom: calc(var(--space-25) - 4px);
}

.contact-top-right .contact-form-container.contact-form-no-bs {
    padding: 0;
}

.form .form-element-name {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-end;
}

.form-control, .form .form-control {
    border-color: transparent;
    border-radius: 10px;
    color: #000;
}

.form-control, .form .form-control::placeholder {
    color: #000;
}

.form-group {
    margin-bottom: calc(var(--space-25) + 5px);
}

.form .form-required-mark {
    color: var(--color-primary);
}

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

.contact-top-right .row-flex-center {
    margin-top: calc(var(--space-60));
}

.newsletter-box {
    padding: calc(2 * var(--space-50)) 0;
    position: relative;
    z-index: 0;
    color: #fff;
}

.newsletter-box-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.newsletter-box-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-box-inner {
    display: flex;
    align-items: stretch;
}

.newsletter-box-left {
    width: 50.5%;
    padding-right: calc(3 * var(--space-50));
}

.newsletter-box-right {
    width: 49.5%;
}

.newsletter-box-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.newsletter-title {
    font-size: calc(var(--font-48) - 3px);
    font-weight: 700;
    line-height: 1.511em;
}

.newsletter-form-wrapper {
    position: relative;
}

.newsletter-form-wrapper .row {
    width: 100%;
}

.newsletter-form-wrapper .btn {
    min-width: 210px;
    position: absolute;
    top: 0;
    right: 0;
}

.form.newsletter-form .form-control {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-color: transparent !important;
    padding-right: 220px;
}

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

.form.newsletter-form .alert-block .error {
    color: #721c24 !important;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    display: inline-flex;
    border-radius: 10px;
    padding: 15px;
    line-height: 16px;
}

.modal-header {
    background-color: var(--color-default);
}

.modal-header button.close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #fff;
    color: var(--color-secondary);
    top: 0;
    margin-top: 13px;
    opacity: 1;
    transition: .2s all;
}

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

.modal-body .input-group-addon {
    color: #000;
    background-color: var(--color-default);
    border-color: rgba(0, 0, 0, .1);
    border-left: 1px solid rgba(0, 0, 0, .1) !important;
}

@media screen and (min-width: 1140px) {
    .modal-body .input-group-addon:hover {
        border-color: rgba(0, 0, 0, .1) !important;
    }
}

.modal-body .form-control,
.modal-body .form .form-control {
    border-color: rgba(0, 0, 0, .1);
}

.modal-body .captcha-container .row > * {
    width: 50% !important;
}

.newsletter-modal-form .form-group:has(.form-element-captcha-container) {
    margin-bottom: 0;
}

.modal-body .form .form-group-lg button.captcha-refresh {
    border-left-color: rgba(0, 0, 0, .1);
}

@media screen and (min-width: 1140px) {
    .modal-body .form .form-group-lg button.captcha-refresh:hover {
        border-color: var(--color-primary) !important;
    }
}

.form-control::placeholder,
.form .form-control::placeholder {
    color: #000;
}

.modal-footer .btn.btn-success {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 10px 20px;
}

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

.map-section {
    padding: calc(var(--space-60) + 10px) 0;
    background-color: var(--color-default);
}

.map-section-inner {
    display: flex;
    align-items: center;
}

.maps-salons-wrapper {
    width: 44%;
    position: relative;
}

.item-loader {
    position: absolute;
    inset: 0;
    display: none;
}

.item-loader-inner {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.item-loader-inner img {
    display: block;
    max-width: 100px;
}

.map-salons {
    width: 100%;
    padding-right: var(--space-50);
    overflow-y: auto;
    max-height: 550px;
    margin: var(--space-60) 0;
    overflow-x: clip;
}

.map-salons::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.map-salons::-webkit-scrollbar-track {
    background: #D9D9D9;
    border-radius: 3px;
}

.map-salons::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: var(--color-primary);
}

.map-salons .salon-small-box {
    padding: var(--space-25) 0;
}

.map-salons .salon-small-box:first-child {
    padding-top: 0;
}

.map-salons .salon-small-box:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.map-inner svg {
    display: block;
    width: 100%;
    height: 100%;
}

.map-wrapper {
    width: 45%;
    margin-left: calc(2 * var(--space-50));
}

.point-element {
    display: flex;
    gap: 10px;
    cursor: pointer;
    transition: .2s all;
}

.point-element:before {
    content: "•";
    font-size: 32px;
    line-height: 10px;
    width: 6px;
}

.point {
    transform: translate3d(-50%, -50%, 0);
    position: relative;
    z-index: 0;
}

.position-0 .point-element-city {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.position-1 .point-element-city {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.position-2 .point-element-city {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.position-3 .point-element-city {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.point-element-city {
    font-size: 16px;
    position: absolute;
    line-height: 1;
}

.point-element {
    position: relative;
    z-index: 1;
}

.section-showroom-form .select2-selection__clear {
    display: none;
}

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

.point-element-hover-wrapper {
    position: absolute;
    bottom: 0;
    padding-bottom: 40px;
    width: 360px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
    z-index: 3;
}

.point:hover {
    z-index: 1;
}

.point-element-hover-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 5px;
}

.point-element-hover .city-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 30px;
}

.point-element-hover {
    position: relative;
    /*display: grid;*/
    /*grid-template-columns: repeat(4, 1fr);*/
    /*gap: 8px;*/
    background-color: #fff;
    border-radius: 10px;
    padding: max(calc(var(--space-25) - 10px), 10px);
    box-shadow: -1px 5px 14px 0px rgba(0, 0, 0, .25);
    cursor: default;
}

.point-element-hover:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 15px;
    background-color: #fff;
    top: 98%;
    left: 50%;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: translateX(-50%) rotate(180deg);
}

.point-element:hover .point-element-hover-wrapper,
.point-element:focus .point-element-hover-wrapper {
    opacity: 1;
    pointer-events: initial;
}

/*
 * TODO: Kontakt - koniec
 */

/*
 * TODO: Tekstówka
 */
.page-heading {
    margin-bottom: calc(var(--space-25));
}

.page-heading-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.page-title {
    font-size: calc(var(--font-36));
    font-weight: 800;
}

.text h3 {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 700;
}

.text h2 {
    font-size: max(var(--font-30), 18px);
    font-weight: 700;
    line-height: 1.5em;
}

.text a {
    text-decoration: underline;
    transition: color .2s;
}

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

.text img {
    display: inline-block;
    max-width: 100%;
    margin: var(--space-25) 0;
}

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

.collection-wrapper {
    display: grid;
    gap: var(--space-25);
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: var(--space-60);
}

.collection-wrapper .collection-item {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: var(--space-25);
    transition: .2s all;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: var(--space-50);
    gap: var(--space-25);
}

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

    .collection-item-link:hover .collection-item-name {
        color: var(--color-primary);
    }
}

.collection-item-img {
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.collection-item-name {
    font-size: 16px;
    line-height: 1.2em;
    transition: .2s color;
}

/*
 * TODO: Tekstówka - koniec
 */

/*
 * TODO: Tekstówka aside
 */
.sidebar-sides {
    display: flex;
    margin-bottom: calc(var(--space-60) + 10px);
}

.sidebar-side-left .submenu > h3 {
    display: none;
}

.sidebar-side-left .submenu > ul {
    display: flex;
    flex-direction: column;
}

.sidebar-side-left .submenu > ul li a {
    font-weight: 300;
    -webkit-text-stroke: 0.5px transparent;
    -webkit-text-stroke-color: transparent;
    transition: .2s all;
    line-height: 1em;
    font-size: 16px;
}

@media screen and (min-width: 1140px) {
    .sidebar-side-left .submenu > ul li a:hover {
        color: var(--color-primary);
        -webkit-text-stroke-color: currentColor;
    }
}

.sidebar-side-left .submenu > ul li {
    padding: calc(var(--space-25) - 3px) calc(var(--space-25) - 5px);
}

.sidebar-side-left .submenu > ul li:not(:last-child) {
    border-bottom: 1px solid rgb(0, 0, 0, .1);
}

.sidebar-side-left .submenu > ul li:first-child {
    padding-top: 0;
}

.sidebar-side-left .submenu > ul li.active a {
    color: var(--color-primary);
    -webkit-text-stroke-color: currentColor;
}

.sidebar-side-left {
    min-width: 260px;
}

.sidebar-side-right {
    padding-left: var(--space-60);
    flex-grow: 1;
}

.sidebar-side-right .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.sidebar-side-right .breadcrumb-container {
    display: none;
}

.sidebar-side-right .page-title {
    line-height: 1;
}

@media screen and (min-width: 1140px) {
    .btn-aside-toggle,
    .aside-shadow {
        display: none;
    }
}

.section-contact-form {
    margin-bottom: calc(var(--space-60));
}

.sidebar-side-right .section-contact-form {
    margin: 0;
}

.contact-form-container.contact-form-no-bs {
    background-color: var(--color-default);
    padding: calc(var(--space-40) + 5px) var(--space-60) calc(var(--space-60) + 10px);
    border-radius: 10px;
}

.contact-form-container.contact-form-no-bs .contact-title {
    text-align: center;
    margin-bottom: var(--space-40);
}

.contact-form-container.contact-form-no-bs .row-flex-center {
    margin-top: var(--space-40);
}

.input-group-addon {
    border-color: transparent;
    background-color: #fff;
    cursor: pointer;
    border-left: 1px solid transparent !important;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {

}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #fff;
    background-color: var(--color-default);
    color: #000;
}

.contact-form-container.contact-form-no-bs .select2-container--default .select2-selection--single {
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .select2-container--default .select2-selection--single:hover {
        border-color: var(--color-primary);
    }
}

/*
 * TODO: Tekstówka aside - koniec
 */

/*
 * TODO: O nas
 */
.aboutUs-top-wrapper {
    margin-bottom: var(--space-50);
}

.aboutUs-title {
    margin-bottom: calc(var(--space-25) + 10px);
}

.aboutUs-top {
    display: flex;
    align-items: stretch;
    margin: -8px;
}

.aboutUs-top-text-wrapper {
    padding: 8px;
    width: 50%;
    display: flex;
}

.aboutUs-top-image {
    padding: 8px;
    width: 50%;
}

.aboutUs-top-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.aboutUs-top-text-inner {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: calc(var(--space-60) + 10px);
}

.aboutUs-top-text-inner .text {
    max-height: 420px;
    overflow-y: auto;
    margin-right: -15px;
    padding-right: 15px;
}

.history-title {
    margin-bottom: calc(var(--space-25) + 10px);
}

.history-nav {
    padding: var(--space-40) 0;
    background-color: var(--color-default);
}

.history-nav-inner {
    padding: calc(60px + 20px) calc(var(--space-60) + 10px);
    display: flex;
    gap: calc(40px + 2px);
    position: relative;
    overflow-x: auto;
}

.history-nav-inner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: calc(50% - 1px);
    left: 0;
    background-color: rgba(0, 0, 0, .1);
}

.history-nav-line {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: calc(50% - 1px);
    left: 0;
    background-color: rgba(0, 0, 0, .1);
}

.history-nav-item-year {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: .2s all;
}

.history-nav-item {
    position: relative;
}

.history-nav-item-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    bottom: -60px;
    width: 135px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s all;
}

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

    .history-nav-item:hover .history-nav-item-year {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
}

.history-nav-inner > .history-nav-item:nth-child(even) .history-nav-item-name {
    bottom: unset;
    top: -60px;
}

.history-items-wrapper {
    padding: calc(2 * var(--space-60)) 0;
}

.history-item-year {
    width: 148px;
    aspect-ratio: 1;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.history-item-name {
    font-size: calc(var(--font-30) + 2px);
    display: flex;
    flex-direction: column;
    line-height: 1.2em;
}

.history-item-name .line-1 {
    font-weight: 700;
}

.history-item-name .line-2 {
    font-weight: 200;
    font-style: italic;
}

.history-items {
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--space-25));
}

.history-item {
    scroll-margin-top: 200px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-50);
    align-items: center;
    min-height: 300px;
}

.history-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 320px;
    padding-right: 15px;
}

.history-items .history-item:nth-child(odd) .history-item-empty {
    order: 1;
}

.history-items .history-item:nth-child(odd) .history-item-middle {
    order: 2;
}

.history-items .history-item:nth-child(odd) .history-item-content {
    order: 3;
}


.history-items .history-item:nth-child(even) .history-item-empty {
    order: 3;
}

.history-items .history-item:nth-child(even) .history-item-middle {
    order: 2;
}

.history-items .history-item:nth-child(even) .history-item-content {
    order: 1;
}

.history-items {
    position: relative;
}

.history-items:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .1);
    z-index: -1;
}

.history-item-middle {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
}

.history-items .history-item:first-child .history-item-middle > *:first-child,
.history-items .history-item:last-child .history-item-middle > *:last-child {
    background-color: #fff;
}

.history-nav-scroll {
    overflow-x: auto;
    position: relative;
}

.history-nav-inner {
    width: max-content;
}

.history-items.is-collapsed .history-item:nth-child(n+4) {
    display: none;
}

.history-item.hidden {
    display: none;
}

.history-toggle-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: calc(2 * var(--space-50));
}

.history-toggle-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-toggle-btn-close {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.history-toggle-btn-close span {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.history-toggle-btn-close-active {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary);
    transition: .2s all;
}

.history-toggle-btn-close-active svg {
    transform: rotate(-90deg);
}

.history-toggle-btn-close-active svg path {
    fill: currentColor;
}

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

.history-toggle-btn:not(.active) .history-toggle-btn-close-active,
.history-toggle-btn.active .history-toggle-btn-close {
    display: none;
}

.history-items.is-collapsed .history-item:nth-child(3) .history-item-middle *:last-child {
    background-color: #fff;
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.history-toggle-btn-close.animate span {
    animation: dotBounce 0.6s ease forwards;
}

.history-toggle-btn-close.animate span:nth-child(1) {
    animation-delay: 0s;
}

.history-toggle-btn-close.animate span:nth-child(2) {
    animation-delay: 0.1s;
}

.history-toggle-btn-close.animate span:nth-child(3) {
    animation-delay: 0.2s;
}

.aboutUs-tiles {
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.aboutUs-tiles-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aboutUs-tile {
    display: flex;
    align-items: stretch;
    margin: -8px;
}

.aboutUs-tiles-inner > .aboutUs-tile:nth-child(odd) {
    flex-direction: row-reverse;
}

.aboutUs-tile-img {
    padding: 8px;
    width: 50%;
}

.aboutUs-tile-content {
    padding: 8px;
    width: 50%;
    display: flex;
}

.aboutUs-tile-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.aboutUs-tile-content-inner {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: calc(var(--space-60) + 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.aboutUs-tile-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
}

/*
 * TODO: O nas - koniec
 */

/*
 * TODO: Eventy
 */
.page-heading-events {
    margin-bottom: var(--space-50);
}

.event-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-60);
    margin-bottom: var(--space-60);
}

.event-item {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    padding: var(--space-40);
    padding-top: calc(var(--space-40) - 5px);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 5px);
    transition: all 0.4s;
}

.event-item-top {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    justify-content: space-between;
}

.event-item-date {
    font-size: 14px;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 30px;
}

.event-item-content {
    display: flex;
    gap: var(--space-25);
}

.event-item-name {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 700;
    transition: all 0.4s;
}

.event-item-img {
    flex-shrink: 0;
}

.event-item-img img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
}

.event-item-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
}

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

.event-item-bottom {
    margin-top: auto;
    display: flex;
    gap: calc(var(--space-25) - 10px);
    align-items: center;
    justify-content: space-between;
}

.event-item-bottom-element {
    display: flex;
    gap: max(calc(var(--space-25) - 12px), 10px);
    align-items: center;
    max-width: 200px;
}

.event-item-bottom-element .icon {
    width: 46px;
    height: 46px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.event-item-bottom-element .content {
    font-size: 14px;
    font-weight: 300;
}

/*
 * TODO: Eventy - koniec
 */

/*
 * TODO: Lista produktów
 */
.product-list-heading {
    margin-bottom: calc(var(--space-40) - 4px);
}

.nav-tabs {
    border: none;
}

.nav-tabs > li > a {
    margin-right: 0;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    font-weight: 600;
    background-color: #F7F7F7;
    color: rgb(0, 0, 0, .4);
    display: flex;
    gap: 18px;
    min-height: 60px;
    align-items: center;
    padding: 0 calc(var(--space-50)) 0 calc(var(--space-25) + 5px);
    border-bottom-color: rgba(0, 0, 0, .1);
}

.nav-tabs > li > a .icon {
    position: relative;
    min-height: 60px;
}

.nav-tabs > li > a .icon:after {
    position: absolute;
    width: 100%;
    background-color: var(--color-primary);
    content: "";
    height: 1px;
    top: 100%;
}

.nav-tabs > li:not(.active) > a .icon:after {
    opacity: 0;
}

.nav-tabs > li > a .icon svg path {
    stroke: currentColor;
}

.nav-tabs > li.active .icon svg path {
    stroke: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .nav-tabs > li.active > a:hover {
        color: #000;
        border-color: rgb(0, 0, 0, .1);
        border-bottom-color: transparent;
    }
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus {
    color: #000;
    border-color: rgb(0, 0, 0, .1);
    border-bottom-color: transparent;
}

.tab-content {
    border: 1px solid rgb(0, 0, 0, .1);
    border-radius: 0 10px 10px 10px;
    padding: calc(var(--space-25) + 5px);
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .06);
}

.form .filter-form-box .form-element-name {
    margin-bottom: 10px;
}

.filter-form-box .filter-form-toggle {
    display: none;
}

.tab-pane .filter-form-wrapper .shop-filter-form {
    padding: 0;
    display: unset;
}

.tab-pane .filter-form-wrapper .shop-filter-form {
    display: grid;
    grid-template-columns: 1fr 225px;
    gap: calc(2 * var(--space-40));
    align-items: stretch;
}

.filter-form-buttons {
    position: relative;
    display: flex;
    gap: var(--space-25);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    align-items: center;
}

.filter-form-buttons:before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, .1);
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(-1 * (var(--space-40)));
}

.filters-apply {
    width: 100%;
}

.filters-apply .btn {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    gap: 23px;
}

.filters-reset a.btn-link {
    gap: 12px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    border: none;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .filters-reset a.btn-link:hover {
        color: var(--color-primary);
        text-decoration: none;
    }
}

.filter-form-box .filter-form-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: calc(var(--space-25) - 5px);
}

.filter-form-box .form-group {
    margin-bottom: 0;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple {
    border: 1px solid transparent;
    color: var(--color-secondary);
    background-color: var(--color-default);
}

@media screen and (min-width: 1140px) {
    .form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:hover {
        border-color: var(--color-primary);
    }
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #000;
}

.filter-form-box .input {
    color: #000 !important;
}

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

@media screen and (min-width: 1140px) {
    .shop-filter-form-wrapper .form-element-select-container .select2-container .select2-selection--single:hover {
        border-color: var(--color-primary);
    }
}

.shop-filter-form-wrapper .filter-form-content {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 3px);
    position: relative;
    z-index: 1;
}

.shop-filter-form-wrapper .filter-form-content .form-element-name {
    margin-bottom: unset;
    font-size: 14px;
    line-height: 21px;
}

.filter-view-elements {
    display: flex;
    gap: 10px;
}

.filter-view-element {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgb(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F2F2F;
    cursor: pointer;
}

.filter-view-element input {
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.filter-view-element .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-view-element .icon svg rect {
    fill: currentColor;
    transition: .2s all;
}

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

.filter-view-element:has(input[checked="checked"]) {
    color: var(--color-primary);
}

.shop-filter-form-wrapper .shop-filter-form {
    padding: var(--space-40) 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-25);
}

.shop-filter-form-wrapper .form-element-select-container {
    display: flex;
    gap: calc(var(--space-25) - 3px);
    align-items: center;
    width: 344px;
    position: relative;
    z-index: 1;
}

.shop-filter-form-wrapper .form-element-select-container .form-element-name {
    margin-bottom: unset;
    font-size: 14px;
    line-height: 21px;
}

.shop-filter-form-wrapper .form-element-select-container .select2-container .select2-selection--single {
    width: 240px;
    background-color: #f7f7f7;
    color: #000;
}

.shop-filter-form-wrapper .shop-filter-form {
    padding: var(--space-40) 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-25);
}

.shop-filter-form-wrapper .form-element-select-container {
    display: flex;
    gap: calc(var(--space-25) - 3px);
    align-items: center;
    width: 344px;
    position: relative;
    z-index: 1;
}

.shop-filter-form-wrapper .form-element-select-container .form-element-name {
    margin-bottom: unset;
    font-size: 14px;
    line-height: 21px;
}

.shop-filter-form-wrapper .form-element-select-container .select2-container .select2-selection--single {
    width: 240px;
    background-color: #f7f7f7;
    color: #000;
}

.shop-filter-form-wrapper .pagination-wrapper {
    position: absolute;
    width: 100%;
    inset: 0;
    margin: 0;
    max-width: unset;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: var(--space-40) 0 !important;
    gap: var(--space-25);
    z-index: 0;
}

.shop-filter-form-wrapper .pagination-wrapper:before,
.shop-filter-form-wrapper .pagination-wrapper:after {
    content: '';
}

.shop-filter-form-wrapper .pagination-wrapper:before {
    order: 1;
}

.shop-filter-form-wrapper .pagination-wrapper:after {
    width: 344px;
    order: 2;
}

.shop-filter-form-wrapper .pagination-wrapper ul {
    order: 3;
    display: flex;
    justify-content: flex-end;
}

.shop-filter-form-wrapper .pagination-wrapper ul li.prev,
.shop-filter-form-wrapper .pagination-wrapper ul li.next {
    float: unset;
}

.shop-filter-form-wrapper .pagination-wrapper ul li.prev {
    margin-right: var(--space-40);
}

.shop-filter-form-wrapper .pagination-wrapper ul li.next {
    margin-left: var(--space-40);
}

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

.shop-product-desc {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

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

.shop-product-desc-title {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 700;
}

.shop-product-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(var(--space-60));
}

.shop-product-list > .pagination-wrapper {
    width: 100%;
}

.shop-product-list-tiles {
    margin: -12px;
}

.shop-product-list-tiles:has(.alert) {
    margin: 0;
    margin: var(--space-60) 0;
}

.shop-product-box {
    padding: 12px;
    display: flex;
    width: 33.33%;
    height: auto;
}

.product-container {
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0, .15);
    transition: .2s all;
    padding: 14px;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 5px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.shop-product-box .product-image {
    height: 330px;
}

.shop-product-box .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
    padding: 0 calc(var(--space-25) - 10px);
}

.product-card-availability-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-card-availability-badge {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-width: 72px;
    min-height: 30px;
    background-color: #D94D2E;
    border-radius: 5px;
    padding: 3px 18px;
    line-height: 1;
}

.product-content-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.product-card-name {
    font-size: max(calc(var(--font-24) - 2px), 20px);
    font-weight: 700;
    line-height: 1.5em;
    transition: all 0.4s;
}

.product-card-subtitle {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}

.product-content-bottom-left .product-card-subtitle {
    line-height: 25px;
}

.product-card-price.product-card-price-tiles {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-price.product-card-price-tiles .product-card-current-price {
    font-size: 20px;
    line-height: 25px;
}

.product-card-current-price .price-net .price {
    color: var(--color-secondary);
    font-size: 18px;
}

.product-card-price .price-box .price-gross {
    display: flex;
    flex-direction: column-reverse;
}

.product-card-price .price-box .caption {
    font-size: 14px;
}

.product-card-price .price-box .price-gross .caption {

}

.product-card-current-price .price-gross .price {
    color: #D94D2E;
    font-size: calc(var(--font-30) + 2px);
    font-weight: bold;
    line-height: 1;
}

.product-card-current-price .price-old {
    font-size: 14px;
    font-weight: 300;
}

.product-labels {
    position: absolute;
    width: 300px;
    aspect-ratio: 1;
    top: 0;
    right: 0;
    transform: rotate(45deg);
    pointer-events: none;
}

.product-labels .product-label {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.shop-product-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: var(--space-50);
    max-width: 1360px;
    margin: 0 auto;
}

.product-container-horizontal {
    display: grid;
    gap: var(--space-60);
    grid-template-columns: 4.2fr 2fr 2.85fr 200px;
    grid-template-areas: "media info specs cta";
    align-items: stretch;
}

.product-container-horizontal {
    padding: 15px;
    padding-right: var(--space-60);
    border: 1px solid rgb(0, 0, 0, .15);
    border-radius: 10px;
    transition: .2s all;
}

.product-card-media {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: -14px;
    padding: 14px;
    height: 280px;
    align-self: center;
}

.product-card-media {
    grid-area: media;
}

.product-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-card-column {
    min-width: 0;
}

.product-card-info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.product-card-info {
    grid-area: info;
}

.product-card-specs {
    grid-area: specs;
}

.product-card-column {
    padding: var(--space-25) 0;
}

.spec-list {
    display: flex;
    flex-direction: column;
}

.spec-item {
    display: grid;
    grid-template-columns: 16px 110px 1fr;
    align-items: center;
    gap: 15px;
    padding: 14px 10px;
}

.spec-item-label {
    font-size: 14px;
    font-weight: 300;
}

.spec-item-value {
    font-size: 14px;
    font-weight: 700;
}

.spec-list .spec-item:not(:last-child) {
    border-bottom: 1px solid rgb(0, 0, 0, .1);
}

.spec-list .spec-item:first-child {
    padding-top: 0;
}

.spec-list .spec-item:last-child {
    padding-bottom: 0;
}

.product-card-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-25);
}

.product-card-cta {
    grid-area: cta;
}

.product-card-cta {
    width: 200px;
    white-space: nowrap;
}

.product-card-price-box {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-container-horizontal .product-card-price .price-box .price-gross {
    flex-direction: column;
    gap: 0;
}

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

.product-card-info-top {
    display: flex;
    flex-direction: column;
}

.product-card-availability {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.btn-product-card {
    justify-content: space-between;
    font-weight: 700;
    padding: 5px 25px;
}

.product-card-price-label {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

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

/*
 * TODO: Lista produktów - koniec
 */

/*
 * TODO: Lista produktów - koniec
 */


/*
 * TODO: Produkt podgląd
 */
.shop-product-view-top {
    margin-top: calc(-1 * (var(--space-25) - 11px));
    margin-bottom: calc(var(--space-60));
}

.shop-product-view-top-inner {
    display: flex;
}

.shop-product-view-top-left {
    width: 59.5%;
}

.shop-product-view-top-right {
    flex-grow: 1;
    padding-left: calc(var(--space-25) + var(--space-50));
}

.shop-product-view-top-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-50);
}

.shop-product-view-top-controls {
    display: flex;
    gap: 15px;
}

.shop-product-view-top-controls a.btn {
    min-width: 230px;
    justify-content: space-between;
    font-weight: 600;
    padding: 10px 22px;
}

.product-photo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.product-slide-image img {
    display: block;
    width: unset;
    height: unset;
    object-fit: cover;
}

.product-slide-inside {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .2s all;
}

.product-slide-nav {
    padding: 5px;
    height: auto;
}

.product-photo-top {
    position: relative;
}

.product-view-slider-arrows {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
}

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

.product-nav-slider .product-slide-inside {
    transition: .2s all;
    border: 1px solid rgba(0, 0, 0, .1);
    height: 100%;
    display: flex;
}

@media screen and (min-width: 1140px) {
    .product-slide-inside:hover {
        border-color: #D94D2E;
    }
}

.product-colors-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: var(--space-50);
    row-gap: 10px;
}

.product-color-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    position: relative;
}

.product-color-wrapper {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    overflow: hidden;
    transition: .3s all;
    flex-shrink: 0;
}

.product-color {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.product-color-name {
    font-size: 14px;
    font-weight: 300;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .product-color-item:hover .product-color-wrapper {
        border-color: var(--color-primary);
        padding: 6px;
    }

    .product-color-item:hover {
        color: var(--color-primary);
    }
}

/*
 * TODO: Produkt podgląd - koniec
 */

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

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

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

    .event-item.has-link:hover .event-item-name {
        color: var(--color-primary);
    }

    .event-item.has-link:hover {
        border-color: var(--color-primary);
    }
}

.shop-product-box.slick-slide .product-image {
    padding: 0;
    height: 250px;
}

.news-view-product-list .product-content-bottom {
    margin-top: auto;
    flex-direction: column;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.news-view-product-list .product-content {
    padding: 0 calc(var(--space-25) - 10px);
}

.shop-product-box .product-image a {
    display: block;
}

.product-container .product-actions {
    display: none;
}

.product-title {
    font-size: max(calc(var(--font-24) - 2px), 16px);
    font-weight: 700;
}

.salon-list {
    display: flex;
    flex-direction: column;
}

.salon-box {
    padding: var(--space-60) 0;
    border-bottom: 1px solid rgb(0, 0, 0, .2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-40);
    align-items: stretch;
}

.salon-list .salon-box:first-child {
    padding-top: 0;
}

.salon-list .salon-box:last-child {
    border-bottom: none;
}

.salon-img {
    padding-right: calc(var(--space-50) + 4px);
}

.salon-img img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
}

.salon-column.col-1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.salon-name {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 700;
    line-height: 1.5em;
}

.salon-column-element-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.salon-column-element {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
    transition: .2s all;
    font-size: 14px;
    word-break: break-all;
}

.salon-column-element .icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.salon-column-element:has(br) {
    align-items: flex-start;
}

.salon-column-element-link {
    transition: .2s color;
}

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

.salon-column-element a {
    transition: .2s all;
}

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

.salon-column-departments {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.salon-department-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.salon-column-departments:has(.salon-department-item:nth-of-type(3)) .salon-department-item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-40);
    row-gap: 12px;
}

.salon-column-departments:has(.salon-department-item:nth-of-type(3)) {
    grid-column: span 2;
}

.salon-department-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.salon-department-item-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.salon-column-element-name {
    font-size: 14px;
    font-weight: 700;
    min-height: 21px;
}

.salon-department-item:has(.salon-column-element:nth-of-type(4)) {
    grid-column: span 2;
}

.salon-department-item:has(.salon-column-element:nth-of-type(4)) .salon-column-element-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-40);
}

.salon-column-element-items {
    display: flex;
    flex-direction: column;
}

.salon-column-element-link:has(.salon-column-element-items:has(a:nth-child(3))) {
    align-items: flex-start;
}

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

.salon-item-contact-item:has(br) {
    align-items: flex-start;
}

.salon-item-contact-item a {
    transition: .2s all;
}

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

.shop-product-view-bottom + .news-view-section-wrapper {
    margin-top: 0;
    padding-top: 0;
}

.page-heading-salons {
    flex-direction: row;
    gap: var(--space-25);
    align-items: center;
    justify-content: space-between;
}

.showroom-filter-form > .form.filters-form {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
}

.showroom-filter-form-row {
    display: flex;
    gap: 10px;
}

.showroom-filter-form-row > .form-group {
    margin-bottom: 0;
}

.showroom-filter-form-row .select2-container .select2-selection--single {
    color: #000;
    background-color: #F7F7F7;
    width: 230px;
    font-weight: 400;
}

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

.showroom-filter-form-submit {
    display: none;
}

.shop-product-view-bottom {
    background-color: #F7F7F7;
    padding: var(--space-60) 0;
}

.shop-product-view-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--space-60));
}

.shop-product-view-desc {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    width: 50%;
}

.shop-product-view-desc-wrapper:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: calc(-1 * var(--space-60));
    left: 0;
    background-color: rgb(0, 0, 0, .1);
}

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

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

.product-view-data-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.shop-product-view-data-wrapper {
    display: grid;
    width: 100%;
}

.product-spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.product-spec-item {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
}

.product-spec-item .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(134deg) brightness(102%) contrast(103%);
    width: 24px;
}

.product-spec-item .icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    border-radius: 8px;
    background-color: #000;
}

.product-spec-item .icon svg path {
    stroke: #fff;
}

.product-spec-content {
    display: flex;
    flex-direction: column;
}

.product-spec-item-label {
    font-size: 14px;
    font-weight: 300;
}

.product-spec-item-value {
    font-size: 14px;
    font-weight: 700;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.equipment-item .content {
    font-size: 14px;
    font-weight: 300;
}

.equipment-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 5px;
    background-color: #D94D2E;
}

.product-view-name {
    font-size: var(--font-36);
    font-weight: 700;
}

.section-steps-image {
    position: relative;
    z-index: 0;
    padding: calc(2 * var(--space-50)) 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
}

.section-steps-image:before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-steps-title {
    font-size: calc(var(--font-48) - 3px);
    color: #fff;
    font-weight: bold;
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-50);
    align-items: flex-start;
}

.steps-item {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    transition: .2s all;
}

.steps-item-top {
    display: flex;
    gap: calc(var(--space-25) + 5px);
    align-items: stretch;
    cursor: pointer;
    padding: 10px 10px 10px 10px;
}

.steps-item-top .icon:not(.icon-arrow) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    aspect-ratio: 1;
    background-color: #f7f7f7;
    border-radius: 10px;
    color: #000;
    transition: .2s all;
    padding: 20px;
}

.steps-item-top > .icon {
    flex-shrink: 0;
}

.steps-item-top .icon svg {
    display: block;
    max-width: 100%;
}

.steps-item-name {
    font-size: max(calc(var(--font-24) - 2px), 16px);
    line-height: 1.5em;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.steps-item-top .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.steps-item-short-desc .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
}

.steps-item-top-right {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: calc(2 * var(--space-40));
    margin-left: auto;
    padding: 25px 0;
    position: relative;
    min-height: 115px;
    padding-right: calc(var(--space-40) - 5px);
}

.steps-item-top .icon *[fill]:not([fill="none"]):not([fill="#F7F7F7"]) {
    fill: currentColor;
}

.steps-item-number {
    position: relative;
    font-size: var(--font-24);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-item-number:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, .15);
    top: 0;
    right: calc(-1 * var(--space-40));
    transform: translateX(-50%);
}

.steps-item-top-right .icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-item-top-right .icon-arrow svg {
    display: block;
    max-width: 100%;
    transition: .5s all;
}

.section-steps-item-bottom {
    padding: 0 20px 20px;
    display: none;
}

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

    .steps-item:hover .steps-item-top .icon {
        background-color: var(--color-primary);
    }
}

.steps-item:has(.steps-item-top.active) {
    border-color: var(--color-primary);
}

.steps-item:has(.steps-item-top.active) .icon {
    background-color: var(--color-primary);
}

.steps-list-wrapper {
    /*padding: calc(2 * var(--space-40)) 0;*/
}

.section-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-60);
    margin-bottom: var(--space-60);
}

.main-section-title {
    font-size: calc(var(--font-48) - 3px);
    font-weight: 700;
}

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

.section-bannerLink-inner {
    position: relative;
    z-index: 0;
    padding: var(--space-50) calc(2 * var(--space-50));
}

.bannerLink-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 10px;
    overflow: hidden;
}

.bannerLink-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerLink-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    align-items: flex-start;
}

.bannerLink-content-text {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 300;
    color: #fff;
}

.bannerLink-content {
    width: 57%;
}

.section-bannerLink-inner {
    display: flex;
    justify-content: flex-end;
}

.bannerLink-content a.btn-primary {
    min-width: 170px;
}

.main-section-heading {
    margin-bottom: var(--space-60);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-25);
}

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

.tiles-list:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tiles-slider-container {
    margin: -12px;
}

.tiles-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: var(--space-25);
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 0;
}

.tiles-slide {
    padding: 12px;
}

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

.tiles-item-name {
    font-size: calc(var(--font-30));
    color: #fff;
    font-weight: 700;
    line-height: 1.5em;
    transition: .2s all;
}

.tiles-item-desc .text {
    font-size: max(calc(var(--font-24) - 6px), 14px);
    line-height: 1.5em;
    color: #fff;
}

.tiles-item:before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
}

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

.main-news-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: -12px;
}

.main-news-list .main-news-item-wrapper {
    padding: 12px;
    width: 25%;
}

.main-news-list .news-TextImage-image-wrapper {
    padding: 12px;
    display: flex;
    flex-grow: 1;
    aspect-ratio: 3 / 2;
}

.main-news-item-image {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.main-news-list .news-TextImage-image {
    position: relative;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    padding: calc(var(--space-40) - 5px) var(--space-40);
    width: 100%;
}

.main-news-list .news-TextImage-image:before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
}

.news-TextImages-content {
    font-size: calc(var(--font-36) + 4px);
    color: #fff;
    line-height: 1.5em;
}

.news-TextImages-content strong {
    font-size: var(--font-48);
}

.news-TextImage-image .btn.btn-primary {
    margin-top: 15px;
    font-weight: 600;
    padding: 5px calc(var(--space-40) - 5px) 5px var(--space-25);
}

.main-news-item-inner {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.main-news-item-inner:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, .5);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: .5s opacity;
}

.main-news-item-inner:after {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
    inset: 0;
}

.main-news-item-content {
    position: absolute;
    inset: 0;
    padding: calc(var(--space-25) - 5px) var(--space-25);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
}

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

.main-news-item {
    border-radius: 10px;
    overflow: hidden;
}

.main-news-item-title {
    font-size: max(calc(var(--font-24) - 6px), 14px);
    color: #fff;
    font-weight: 700;
}

.main-news-item-content .btn.btn-lg *:first-letter {
    text-transform: uppercase;
}

.main-news-item-content .btn.btn-lg {
    margin-top: calc(var(--space-25));
    min-width: 155px;
}

.main-news-item-text {
    color: #fff;
    padding-top: 0;
    font-size: 15px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: 1s opacity, 1.3s max-height;
}

@media screen and (min-width: 1140px) {
    .main-news-item-inner:hover .main-news-item-text {
        max-height: 380px;
        opacity: 1;
    }

    .main-news-item-inner:hover:before {
        opacity: 1;
    }
}

.btn-fixed {
    position: fixed;
    top: calc(140px + 230px);
    right: 0;
    z-index: 1000;
}

.btn-fixed.btn {
    transform: rotateZ(-90deg) translateY(180%);
}

.section-showroom-banner {
    padding: calc(var(--space-40) + 5px) 0 var(--space-50);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    background-position: 20% 0;
    position: relative;
    z-index: 1;
}

.section-showroom-banner:before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.section-showroom-banner .main-section-title {
    color: #fff;
    margin-bottom: calc(var(--space-25) + 5px);
}

.section-showroom-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.product-color-hover-wrapper {
    display: block;
    position: absolute;
    z-index: 10;
    bottom: 100%;
    left: -50%;
    transform: translateX(-25%);
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
    width: 400px;
}

.product-color-hover-wrapper .shop-product-box .product-image {
    height: unset;
}

.shop-product-view-desc-wrapper {
    display: flex;
    gap: var(--space-40);
    max-height: 300px;
    overflow: hidden;
}

.shop-product-view-desc-wrapper.expanded {
    max-height: unset;
}

.product-color-hover .shop-product-box {
    width: 100%;
}

.product-color-hover .shop-product-box .product-content-bottom {
    margin-top: auto;
    flex-direction: column;
    display: flex;
    align-items: stretch;
    gap: 0;
}

@media screen and (min-width: 1140px) {
    .product-color-item:hover .product-color-hover-wrapper {
        opacity: 1;
        pointer-events: initial;
    }
}

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

.main-slider-filters-wrapper {

}

.main-slider-controls-inner {
    position: relative;
}

.main-slider-item-text-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: calc(2 * var(--space-50)) 0 calc(36px + 220px);
}

.main-slider-item-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    max-width: 675px;
    margin-left: auto;
}

.main-slider-item-text a.btn {
    padding: 5px calc(var(--space-25) + 5px) 5px var(--space-25);
    font-size: max(calc(var(--font-24) - 5px), 16px);
    align-self: flex-start;
}

.main-slider-item-text a.btn .icon svg {
    width: 20px;
    height: 20px;
}

.main-slider-item-text .text {
    padding: var(--space-25) var(--space-40);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-size: var(--font-48);
    font-weight: 200;
    line-height: 1.5em;
}

.main-slider-item-text .text strong {
    font-size: calc(2 * var(--font-24) - 4px);
    line-height: 1.2em;
}

.main-slider-item-text .text:before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(0, 0, 0, .26);
    filter: blur(1px);
    z-index: -1;
}

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

.main-slider-slide:before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 100%);
    z-index: 0;
}

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

.form-group-lg select[multiple].form-control {
    height: 46px;
    overflow: hidden;
}

.section-showroom .map-section {
    background: #fff;
    padding: unset;
}

.point-element-name {
    display: none;
}

.point-element-img {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, .15);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 4px;
}

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

.filter-form-box .form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after {
    right: 20px;
    margin-left: 0;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    border-color: unset;
    border-width: unset;
    border-style: unset;
    width: 11px;
    height: 12px;
    background-image: url('../images/icons/arrow-bottom.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.shop-product-filters .tab-content {
    padding: calc(var(--space-25) + 5px);
    background-color: #F4F4F4;
    border: 2px solid #D94D2E;
    box-shadow: unset;
    border-radius: 8px;
    margin-top: -14px;
    position: relative;
}

.shop-product-filters .nav-tabs > li {
    margin-bottom: 0;
}

.shop-product-filters .nav-tabs > li > a {
    min-width: 148px;
    align-items: unset;
    text-align: center;
    justify-content: center;
    padding: 0 10px;
    padding-top: 13px;
    border: none !important;
    background-color: #F4F4F4;
    color: #000;
    font-size: 14px;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .shop-product-filters .nav-tabs > li > a:hover {
        background-color: #D94D2E;
        color: #fff;
    }
}

.shop-product-filters .nav-tabs > li.active > a {
    background-color: #D94D2E;
    color: #fff;
}

.product-salon-wrapper {
    margin-top: calc(var(--space-25) + 5px);
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 300;
}

.product-salon-name {
    font-weight: 700;
}

.shop-product-filters {
    margin-top: calc(var(--space-25) - 5px);
}

.shop-product-price {
    display: flex;
    gap: var(--space-25);
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 14px;
}

.shop-product-price .caption {
    font-size: max(calc(var(--font-24) - 6px), 16px);
    font-weight: 300;
}

.shop-add-to-basket .shop-product-price-net {
    color: var(--color-secondary);
    font-size: 18px;
}

.shop-add-to-basket .shop-product-price-gross {
    font-size: var(--font-36);
    line-height: 1;
    color: #D94D2E;
    font-weight: 700;
}

.product-controls-wrapper {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.product-controls-wrapper a.btn {
    width: 100%;
    max-width: 230px;
    justify-content: space-between;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-controls-wrapper {
    margin-top: var(--space-25);
}

.product-view-subtitle {
    font-size: max(calc(var(--font-24) - 4px), 16px);
    font-weight: 300;
}

.product-view-info-wrapper {
    margin-top: calc(var(--space-25) - 3px);
}

.product-view-info {
    display: flex;
    justify-content: space-between;
    gap: var(--space-25);
    align-items: center;
}

.product-view-item-number {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    margin-left: auto;
}

.gallery-picture-hover .product-icon {
    width: 28px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D94D2E;
    padding: 10px;
    border-radius: 8px;
}

.product-photo .product-nav-slider .product-slide {
    flex-shrink: 0;
    width: 20%;
}

.product-photo .product-slider .product-slide {
    flex-shrink: 0;
    width: 100%;
}

.product-photo .product-slider .product-slide .product-slide-image {
    aspect-ratio: 812 / 522;
}

.product-nav-slider .product-slide-inside {
    aspect-ratio: 155 / 100;
}

.product-photo .product-nav-slider,
.product-photo .product-slider {
    display: flex;
    width: 100%;
}

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

.shop-product-price .price-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

header nav li.has-children > ul.hovered {
    opacity: 1;
    pointer-events: initial;
}

header nav li.has-children > ul li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

header nav li.has-children > ul li {
    width: 100%;
}

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

header nav li.has-children > ul li a {
    color: #fff;
    padding: 10px 15px;
    display: flex;
    transition: all 0.4s;
}

header nav li.has-children > ul {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    background-color: var(--color-secondary);
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    padding: 0px 0 !important;
    left: -10px;
    width: 300px;
    top: calc(85% + var(--space-25));
    transition: .3s all;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    z-index: 1;
}

#cat-menu li.has-children:last-child > ul {
    left: unset;
    right: -10px;
}

#main-menu li.has-children > ul {
    top: 52px;
}

header nav li.has-children {
    position: relative;
}

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

.main-slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
}

.main-slider-dots-wrapper {
    position: absolute;
    right: 0;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-slider-dots ul {
    display: flex;
    gap: calc(var(--space-25) - 5px);
}

.main-slider-dots ul button {
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 50%;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .main-slider-dots ul button:hover {
        background-color: transparent;
    }
}

.main-slider-dots ul li.slick-active button {
    background-color: transparent;
}

.form .checkboxradio-container {
    padding-right: 0;
}

.steps-item-top.active .icon-arrow svg {
    transform: rotate(180deg);
}

.product-colors-list .product-color-item:nth-child(5n + 1) .product-color-hover-wrapper {
    left: -20px;
    transform: unset;
}

.shop-desc-btn-equipment {
    display: none;
}

.shop-desc-btn-wrapper {
    margin-top: var(--space-60);
    display: flex;
    justify-content: center;
}

.shop-desc-btn:not(.active) span.active,
.shop-desc-btn.active span:not(.active) {
    display: none;
}


.shop-product-view-desc-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.product-slide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-color-item-link {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.section-heading-right {
    display: flex;
    gap: calc(var(--space-25) - 5px);
    align-items: center;
}

.productList-nav {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.productList-nav {

}

.productList-nav-item {
    transition: .2s all;
    font-size: 15px;
    -webkit-text-stroke: 0.5px transparent;
    -webkit-text-stroke-color: transparent;
}

.productList-nav-item.active {
    -webkit-text-stroke-color: #000;
}

@media screen and (min-width: 1140px) {
    .productList-nav-item:hover {
        -webkit-text-stroke-color: #000;
    }
}

.productList-content {
    width: calc(100% + 24px);
    margin: -12px;
}

.productList-content > .tab-pane:not(.active) {
    display: none;
}

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

.productList-slider .shop-product-box {
    width: 25%;
    flex-shrink: 0;
}

.productList-slider .shop-product-box .product-content-bottom {
    grid-template-columns: 1fr;
    gap: calc(var(--space-25) - 5px);
}

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

.productList-Btn:not(.active) {
    display: none;
}



.productList-Btns {
    display: flex;
    gap: 0;
    transition: .2s all;
    padding-left: 0;
    min-height: 46px;
}

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

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

.productList-slider .slick-list {
    display: flex;
    width: 100%;
}

.productList-slider .slick-track {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.section-reviews {
    background-color: #F7F7F7;
    padding-top: calc(var(--space-40) + 5px);
    padding-bottom: calc(var(--space-60));
}

/*
    Opinie - reviews - strona główna
 */
.reviews-item-wrapper {
    padding: calc((var(--space-25) + 5px) / 2);
}

.reviews-item {
    background-color: #fff;
    border-radius: 15px;
    padding: var(--space-25) var(--space-40) var(--space-40);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-40) - 5px);
}

.reviews-text.text {
    font-size: 15px;
}

.reviews-bottom {
    display: flex;
    gap: calc(var(--space-25) + 5px);
}

.reviews-author {
    font-size: 15px;
    font-weight: 600;
    line-height: 2em;
}

.reviews-bottom time {
    font-size: 16px;
}

.item-rating-star-container {
    display: flex;
    gap: 9px;
}

.item-rating-star .icon.star svg path {
    fill: #FFC81E;
    opacity: 1;
}

.reviews-slider-wrapper {
    margin: calc(-0.5 * (var(--space-25) + 5px));
}

.reviews-slider {
    display: flex;
}

.reviews-slider-col {
    width: 33.33%;
}

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

.section-reviews:has(.reviews-slider:not(.slick-initialized)) .reviews-slider-buttons {
    display: none;
}

/*
    Logotypes
 */
.logotype-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
}

.logotype-slider:not(.slick-initialized) .logotype-slide {
    width: 12.5%;
}

.productList-slider:not(.slick-initialized) .shop-product-box:nth-of-type(n + 5) {
    display: none;
}

.filter-form-box .form-group-lg select.form-control {
    height: 46px;
    border-radius: 8px;
    background-color: #F7F7F7;
    color: #000;
    font-size: 14px;
}

.filter-form-box .form-group-lg select.form-control option:nth-of-type(n + 2) {
    display: none;
}

.shop-filter-form-wrapper .form-element-select {
    width: 100%;
}

.shop-filter-form-wrapper .form-element-select .form-control-select {
    border-radius: 8px;
    color: #000;
    font-size: 14px;
    background-color: #F7F7F7;
}

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

.select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
}


.productList-slider .shop-product-box .product-content {
    justify-content: unset;
}

.productList-slider .shop-product-box .product-content-bottom {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.product-list-slide-container {
    margin: -12px;
}

.product-list-slide .shop-product-box {
    width: 100%;
    height: 100%;
}

.product-list-slider .product-content-bottom {
    flex-direction: column;
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-grow: 1;
    justify-content: space-between;
}

.product-list-slider:not(.slick-initialized) .product-list-slide:nth-of-type(n + 5) {
    display: none;
}

.product-list-slide {
    width: 25%;
    height: auto;
}

.product-list-slider {
    display: flex;
}

.shop-product-slider-wrapper:has(.product-list-slider:not(.slick-initialized)) .shop-slider-buttons {
    display: none;
}

.tiles-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
}

.tiles-slider:not(.slick-initialized) .tiles-slide-wrapper:nth-of-type(n + 4) {
    display: none;
}

.tiles-slide-wrapper {
    width: 33.33%;
}

.city-search-select .form-element-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 23px;
    margin-bottom: 9px;
}

.city-search-select {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.city-search-select > .form-element-select {
    min-width: 280px;
}

.point-element.name-left {
    flex-direction: row-reverse;
    transform: translateX(-100%);
}

.productList-slider .shop-product-box {
    width: 25%;
}
.product-photo .slick-list,
.product-photo .slick-track{
    width: 100%;
}

.product-card-current-price .price-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}

.product-card-price .price-box .price-net {
    display: flex;
    align-items: baseline;
    font-size: 14px;
    gap: 5px;
    flex-direction: row-reverse;
}

.shop-product-price .price-box {
    display: flex;
    flex-direction: column-reverse;
}


.section-heading-right-productList {
    gap: var(--space-50);
}

.productList-Btns-wrapper {
    display: flex;
    margin-top: var(--space-60);
    align-items: center;
    justify-content: center;
}

.productList-nav:has(.productList-nav-item:first-child:last-child) {
   display: none;
}

.form-element-container div[data-name="showroom"] .select2-selection__clear{
    display: none;
}
.product-view-avaliability{
    display: flex;
    gap: 10px;
}

.productList-slider .product-content-bottom-left .product-card-subtitle {
    line-height: 20px;
}

.steps-slider-buttons-wrapper {
    display: none;
}
