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

    /** SPECIFIC **/
    --color-primary: #000;
    --color-secondary: #fff;
    --color-default: #333;
    --color-border-deafult: #ccc;
}

body {
    color: #000;
    font-family: "Open Sans", sans-serif;
}

.main-border + #container-page header {
    left: 9px;
    right: 9px;
    top: 9px;
}

.main-border .top-border{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 9px;
    z-index: 9999;
    pointer-events: none;
}
.main-border .bottom-border{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 9px;
    z-index: 9999;
    pointer-events: none;
}
.main-border .left-border{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 9px;
    z-index: 9999;
    pointer-events: none;
}
.main-border .right-border{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 9px;
    z-index: 9999;
    pointer-events: none;
}

body.fixed{
    position: fixed;
}

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

#content {
    padding-top: 128px;
}

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

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

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

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

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

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

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

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

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


/**
 * THEMES
 */

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


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

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

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

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

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

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


.btn-default.active {
    background-color: var(--color-primary) !important;
    color: var(--color-secondary) !important;
}

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

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    box-shadow: none !important;
}

.btn-lg {
    height: 54px;
    min-width: 182px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0 25px;
    gap: 20px;
    text-transform: uppercase;
}

.btn-md {
    height: 46px;
    padding: 0 20px;
    min-width: 182px;
    font-size: 14px;
    letter-spacing: 0.7px;
    gap: 20px;
    text-transform: uppercase;
}

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

.btn-square .icon {
    padding: 0;
}

.btn-md i {
    font-size: 18px;
    font-weight: 700;
}

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

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

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

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


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

.panel {
    box-shadow: none;
}

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

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

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

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

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 30px;
}

.text h2 {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 300;
}

.text h3 {
    font-size: var(--font-24);
    font-weight: 300;
}

.text a {
    text-decoration: underline;
}

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

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

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

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

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

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

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

/**
 * HEADER
 */

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

.header-top {
    background-color: #000;
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    position: relative;
}

.header-top-right {
    display: flex;
    align-items: stretch;
    z-index: 1;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
}

.header-mid-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-60);
    padding-right: 30px;
}

.header-top-link {
    color: var(--color-secondary) !important;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 600;
}

.header-top-link:hover .caption {
    text-decoration: underline;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
    display: flex;
    align-items: center;
    gap: calc(2 * var(--space-40));
}

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

#main-menu li a {
    font-size: 17px;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    transition: text-shadow 0.3s;
    padding: 27px 0;
    display: block;
}

#main-menu li.active > a {
    text-shadow: 1px 0 #000;
}

@media screen and (min-width: 1140px) {
    #main-menu li a:hover {
        text-shadow: 1px 0 #000;
    }
}

#main-menu > ul > li > div {
    display: none;
    gap: var(--space-50);
    position: fixed;
    align-items: flex-start;
    top: 127px;
    left: 0;
    right: 0;
    padding-left: max(((100dvw - 1705px + var(--container-padding)) / 2), var(--space-40));
    padding-right: max(((100dvw - 1705px + var(--container-padding)) / 2), var(--space-40));
    padding-bottom: calc(2* var(--space-50));
    padding-top: var(--space-40);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
    z-index: 999;
    overflow: auto;
    max-height: calc(100vh - 128px);
}

#main-menu > ul > li > div > ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    width: 55%;
    gap: 0;
    margin: -10px;
}

#main-menu > ul > li > div > ul > li > a{
    text-transform: initial;
    font-family: Museo;
    font-size: 19px;
    text-shadow: 1px 0 #000;
}

#main-menu > ul > li > div > ul > li {
    width: 33.3333%;
    padding: 10px;
}

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

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

#main-menu > ul > li > div > ul > li > div > ul  li > a{
    padding: 0;
    font-size: 14px;
    line-height: 2.142;
    text-transform: initial;
}

#main-menu > ul > li > div > ul > li > div ul > li > div > ul{
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

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

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

.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 {
    padding-top: calc(var(--space-60) + 5px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-cols {
    display: flex;
    gap: 16px;
    position: relative;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: calc(var(--space-25) + 5px);
}

.footer-col {
    width: 17%;
}

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

.footer-col-5 {
    width: 25%;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-col-content ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.1428;
    transition: text-shadow 0.3s;
}

.footer-col-content ul li a:hover {
    text-shadow: 1px 0 #000;
}

.footer-contact {
    font-size: 14px;
    line-height: 2.1428;
}

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

.footer-contact-title {
    font-weight: 700;
}

.footer-contact .social-list {
    margin-top: calc(var(--space-40) - 5px);
}

.newsletter-title {
    font-family: Museo;
    font-size: calc(var(--font-36) + 4px);
    margin-bottom: var(--space-40);
}

.newsletter-form .form-control {
    height: 54px !important;
    padding: 0 23px;
    border-radius: 0;
    color: #000;
}

.footer-text-bottom {
    font-size: var(--font-24);
    font-weight: 300;
    margin-top: 14px;
}

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

.newsletter-form-inner {
    display: flex;
}

.newsletter-form-inner .btn {
    min-width: 143px;
}

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

/* FOOTER BAR */
.footer-bar {
    padding: 30px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

.copyright-undicom a {
    font-weight: 700;
}

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

.footer-bar-links a:hover {
    text-decoration: underline;
}

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

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    border-radius: 0;
    background: #F5F5F5;
    border: 0;
}

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

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

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

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

/* 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: #e10121;
    border-radius: 0;
    background-color: transparent;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * MAP POINTS
 */

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

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

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

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

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

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 25px 0;
}

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

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

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

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

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

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

/**
 * PAGINATION
 */

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

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

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

.pagination-wrapper ul li a {
    font-size: 14px;
    transition: all 0.3s;
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
    text-shadow: 1px 0 #000;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        text-shadow: 1px 0 #000;
    }
}

/**
 * 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: gray;
    transition: all .4s ease;
}

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

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

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

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

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

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

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

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

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

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

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.logotype-slider{
    margin: -15px;
}

.logotype{
    display: block;
    padding: 15px;
    flex-shrink: 0;
}

.logotypes .logotypes-title {
    font-size: calc(var(--font-36) + 4px);
    font-family: Museo;
    margin-bottom: var(--space-60);
}

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

.page-realizations .logotypes-title{
    display: none;
}

/**
 * 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;
    padding: 6px;
    border: 1px solid #000;
    transition: all 0.3s;
}

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


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

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

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

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

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

.langs-menu-icon {
    display: none !important;
    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;
    justify-content: center;
    height: 40px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

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

.lang-button {
    cursor: pointer;
    position: relative;
    color: #fff;
    background-color: transparent;
    border: 0;
    padding: 0;
    height: 50px;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: calc(var(--space-25) + 5px);
    font-size: 14px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

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

.gallery-picture > img {
    display: block;
    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;
}

.main-slide {
    position: relative;
}

.main-slide-content {
    position: absolute;
    bottom: calc(2 * var(--space-50) + var(--space-40));
    left: max(((100dvw - 1600px + var(--container-padding)) / 2), var(--container-padding));
}

.main-slide-teaser {
    padding: 14px 30px;
    background: rgba(0, 0, 0, 0.60);
    font-size: calc(var(--font-36) + var(--font-24) + 4px);
    color: var(--color-secondary);
    margin-bottom: calc(var(--space-40) - 6px);
    font-family: 'Museo';
}

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

.main-slider {
    position: relative;
    margin-bottom: calc(2 * var(--space-50) - 10px);
}

.main-slider-arrows {
    position: absolute;
    display: flex;
    gap: 10px;
    z-index: 1;
    bottom: calc(2 * var(--space-50) + var(--space-40));
    right: max(((100dvw - 1600px + var(--container-padding)) / 2), var(--container-padding));
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-50);
    position: relative;
}

.header-arrows{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-title {
    font-size: calc(var(--font-36) + 4px);
    font-family: 'Museo';
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-24);
    font-weight: 300;
    margin-bottom: var(--space-60);
}

.contact-top {
    display: flex;
    padding-bottom: calc(2 * var(--space-50));
    margin-bottom: calc(var(--space-60) + 5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-top-col {
    width: 25%;
    padding: 0 var(--space-50);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.contact-top-col:last-of-type {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-top-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: calc(var(--space-25) + 8px);
    flex-grow: 1;
}

.contact-top-col ul li {
    font-size: 14px;
}

.contact-top-col ul li a:hover {
    text-decoration: underline;
}

.contact-top-col-links {
    margin-bottom: calc(var(--space-40) - 8px);
}

.contact-top-link .icon{
    flex-shrink: 0;
}

.form.contact-form {
    max-width: 811px;
    margin: 0 auto;
}

.contact-form-container .section-title {
    text-align: center;
    margin-bottom: calc(var(--space-25) + 4px);
}

.contact-form-container {
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.toggle-body {
    display: none;
}

.toggle-heading {
    font-size: 14px;
    font-weight: 700;
    padding: 19px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: calc(var(--space-40) + 5px);
    padding-right: calc(var(--space-25) + 5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toggle-heading i {
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s;
}

.toggle-heading.active i {
    transform: scaleY(-1);
}

.toggle-body {
    padding-left: calc(var(--space-40) + 5px);
    padding-right: calc(var(--space-25) + 5px);
    padding-bottom: calc(var(--space-40) - 2px);
}

.toggle-list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: calc(2 * var(--space-50));
}

.section-mainNews {
    margin-bottom: calc(2 * var(--space-50) + 15px);
}

.news-slider {
    display: flex;
}

.news {
    width: 22.2222%;
    padding: 15px;
}


.news-image {
    margin-bottom: calc(var(--space-40) + 5px);
    position: relative;
}

.news-image img {
    display: block;
    max-width: 100%;
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
    margin-top: 10px;
}

.categories-box-image img {
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.categories-box{
    position: relative;
}

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

    .news-inner .glow-wrap,
    .categories-box .glow-wrap{
        overflow: hidden;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        margin-top: -10px;
    }

    .news-inner .glow,
    .categories-box .glow{
        display: block;
        position:absolute;
        width: 40%;
        height: 200%;
        background: rgba(255,255,255,.2);
        top: 0;
        filter: blur(5px);
        transform: rotate(45deg) translate(-450%, 0);
        transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .news-inner:hover .glow,
    .categories-box:hover .glow{
        transform: rotate(45deg) translate(450%, 0);
        transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .news-inner:hover img,
    .news-inner:hover .glow-wrap{
        margin-top: 0;
    }
}


.news-title {
    text-align: center;
    font-size: 17px;
    line-height: 1.4117;
    font-family: Museo;
}

.news-slider-wrapper {
    position: relative;
    margin-bottom: calc(2 * var(--space-40));
}

.news-slider .swiper-wrapper {
    margin: -15px;
}

.slider-arrows .btn-square.prev {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    left: -22px;
    z-index: 2;
}

.slider-arrows .btn-square.swiper-button-disabled {
    display: none !important;
}

.slider-arrows .btn-square.next {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    right: -22px;
    z-index: 2;
}

.slider-arrows .btn.swiper-button-lock {
    display: none !important;
}

.page-header {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding-bottom: 0;
    margin: 0;
    margin-bottom: calc(2 * var(--space-50));
    border: 0;
}

.page-title {
    font-size: 64px;
    font-family: Museo;
    line-height: 1;
}

.page-subtitle {
    font-size: calc(var(--font-36) + 4px);
    line-height: 1;
    font-family: Museo;
    margin-left: calc(3 * var(--space-50));
}

.page-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 323px;
    padding: calc(var(--space-50) + var(--space-40)) 0;
}

.page-header-teaser {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.4583;
    width: 77%;
    padding-left: calc(var(--space-50) + var(--space-40));
}

.page-header-content{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header-inner:has(.page-header-teaser) .page-header-content{
    display: block;
}

.news-list-group {
    margin-bottom: var(--space-50);
}

.news-list-group-inner {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--space-40));
}

.news-list-group .news {
    padding: var(--space-40);
}

.news-list .news {
    width: 33.3333%;
}

.news-list .news .news-title {
    text-align: left;
}

.news-list-group:nth-child(odd) .news:nth-child(2) {
    margin-top: var(--space-50);
}

.news-list-group:nth-child(odd) .news:nth-child(3) {
    margin-top: calc(2 * var(--space-50));
}

.news-list-group:nth-child(even) {
    background-color: #000;
    padding-top: calc(2 * var(--space-50));
    padding-bottom: var(--space-50);
    margin-bottom: calc(2 * var(--space-50));
}

.news-list-group:nth-child(even) .news-inner {
    color: var(--color-secondary);
}

.news-view .page-header {
    margin-bottom: 0;
}

.news-view-top img {
    display: block;
    max-width: 100%;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    margin-top: 14px;
    letter-spacing: 1.4px;
}

.news-description {
    margin-bottom: calc(2 * var(--space-50) + 10px);
}

.news-back-to-list {
    margin-bottom: calc(2 * var(--space-50) + 10px);
}

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

.shop-product-list .alert {
    margin: 18px;
    width: 100%;
}

.shop-product-box {
    padding: calc(var(--space-25) + 5px) 18px;
}

.asidedPage-content .shop-product-box {
    width: 33.3333%;
}

.product-image {
    aspect-ratio: 1/1.3;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
    margin-bottom: calc(var(--space-40) - 6px);
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

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

.product-container {
    position: relative;
}

.product-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-label {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-title {
    text-align: center;
    font-size: 17px;
    font-family: Museo;
    margin-bottom: 12px;
}

.product-price .price {
    font-size: 14px;
    text-align: center;
}

.product-price .price.price-old {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price .icon{
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 9;
}

.product-price .shop-product-history-price-before-discount{
    color: #fff;
    margin-bottom: 0;
}

.product-price .price-gross,
.product-price .price-net {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.shop-product-top {
    margin-top: calc(var(--space-40) + 5px);
    display: flex;
    margin-bottom: calc(var(--space-60) + 9px);
}

.product-photo {
    width: 49.5%;
}

.shop-product-top-content {
    width: 50.5%;
    padding-left: calc(var(--space-60) - 2px);
}

.shop-product-top-content .section-title-md {
    margin-bottom: calc(var(--space-40) - 5px);
}

.shop-product-top-content .breadcrumb-container {
    margin-top: 0;
}

.description-tab .text {
    columns: 3;
    column-gap: calc(var(--space-50) + var(--space-40));
}

.product-btn-return {
    display: flex;
    justify-content: center;
    margin-bottom: calc(2 * var(--space-50));
}

.product-btn-return .btn {
    min-width: 272px;
}

.shop-product-top-info {
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: calc(var(--space-25) + 5px);
}

.offer-top-box-date{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.offer-top-box-date .form-control {
    padding-right: 12px;
    margin-top: 8px;
    font-weight: 400;
    box-shadow: none !important;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: #808080;
    height: 54px;
}

.offer-top-box-date .form-control-feedback {
    display: none;
}

.shop-product-offer-top-left .form-element-name{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-top-box-date .element-row {
    font-size: 14px;
    font-weight: 700;
}

.offer-top-box-date .input-group-addon{
    display: none;
}

.shop-product-top-info-item {
    display: flex;
    gap: calc(var(--space-50) + 5px);
    font-size: 14px;
    line-height: 2.1428;
}

.shop-product-top-info-item .name {
    font-weight: 700;
    width: 14%;
    text-transform: uppercase;
}


.shop-product-top-info-item .value a {
    transition: all 0.3s;
}

.shop-product-top-info-item .value a::after {
    content: ',';
}

.shop-product-top-info-item .value a:hover {
    text-shadow: 1px 0 #000;
}

.shop-product-top-info-item .value a:last-of-type::after {
    display: none;
}

.shop-product-price {
    margin-top: 20px;
}

.shop-product-price .price {
    font-size: calc(var(--font-36) + 4px);
    font-family: Museo;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.shop-product-price .price:not(.price-old) .price-from{
    font-size: calc(var(--font-36) + 4px);
}

.shop-product-price .price-gross,
.shop-product-price .price-net {
    gap: calc(var(--space-50) + 5px);
    display: flex;
    align-items: baseline;
}

.shop-product-price .caption {
    width: 50%;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}


.shop-product-offer-top {
    display: flex;
    align-items: flex-end;
    gap: calc(var(--space-50) + 5px);
}

.shop-product-offer-top-left {
    width: 50%;
}

.shop-product-offer-top-left .shop-quantity-box {
    width: 100%;
    padding: 0;
}

.shop-product-offer-top-left .shop-quantity-box .qty-down,
.shop-product-offer-top-left .shop-quantity-box .qty-up {
    top: 0;
}

.shop-product-offer-top-right {
    width: 50%;
}

.btn-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-product-offer-top-right .btn {
    font-size: 14px;
    justify-content: space-between;
    width: 100%;
}

.product-slider.one-image .product-slide{
    width: 100%;
}

.bootstrap-datetimepicker-widget.dropdown-menu{
    top: 100% !important;
}

.shop-product-offer-top-right .btn .icon {
    flex-shrink: 0;
}

.shop-product-offer-top-right .btn:hover {
    text-decoration: underline;
}

.shop-product-offer-top-right .btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.shop-product-offer-top-right .btn-default:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.shop-product-offer-top-right .btn + .btn {
    margin-top: 10px;
}

.product-photo .product-slider {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
}

.product-photo .product-slide {
    width: 50%;
    padding: 6px;
}

.product-photo .product-slide-inside {
    background-color: #F5F5F5;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide-image {
    display: block;
}

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

.product-tab-item {
    display: none;
}

.product-tab-item.active {
    display: block;
}

.product-tabs-heading-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-60);
}

.product-page-tabs {
    padding-bottom: var(--space-50);
    margin-bottom: calc(var(--space-60) + 8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-list-slider-wrapper {
    position: relative;
}

.shop-product-slider {
    margin-bottom: calc(var(--space-60) + 5px);
    padding-top: var(--space-60);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

.aside {
    position: relative;
    width: 308px;
    color: var(--color-primary);
    pointer-events: auto;
    margin-bottom: var(--space-60);
}

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

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

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

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

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

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

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

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

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

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

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

.section-title-sm {
    font-size: var(--font-24);
    margin-bottom: calc(var(--space-25) - 3px);
    font-family: Museo;
}

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

.asidedPage-content .section-header {
    margin-bottom: calc(var(--space-25) + 8px);
}

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

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

.menuList ul {
    display: block;
}

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

.menuList ul > li {
    display: block;
    position: relative;
    transition: all 0.3s;
}

.menuList > ul > li:last-of-type{
    margin-top: 30px;
}

.menuList > ul > li > .menuList-group > a {
    font-size: var(--font-24);
    text-shadow: 1px 0 #000;
    font-family: Museo;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 400;
    transition: all 0.3s;
}

.menuList > ul > li > ul > li > .menuList-group > a {
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 400;
    transition: all 0.3s;
}

.menuList > ul > li > ul > li > ul > li > .menuList-group > a {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    font-weight: 400;
    text-transform: initial;
    transition: all 0.3s;
    line-height: 1;
}

.menuList > ul > li > ul > li > ul > li >ul > li > .menuList-group > a {
    padding-left: 20px;
    text-transform: initial;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.875;
    transition: all 0.3s;
}


.menuList > ul > li:hover > .menuList-group > a,
.menuList > ul > li.slided > .menuList-group > a {
    text-shadow: 1px 0 #000;
}

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

.menuList > ul > li > .menuList-group > a {
    position: relative;
    transition: color 0.3s, background-color 0.3s;
}

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

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


.menuList > ul > li > ul > li > ul > li > .menuList-group > a:hover {
    text-shadow: 1px 0 #000;
}

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

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

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

    .menuList > ul > li > ul > li  .menuList-group > a:hover {
        text-shadow: 1px 0 #000;
    }
}

.menuList > ul > li > ul > li > ul > li > ul {
    padding: 15px 0;
}

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

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

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

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

.asidedPage-content .page-header {
    margin-top: 0;
}

.heading-description {
    text-align: center;
    font-size: 16px;
    font-family: Museo;
    line-height: 1.875;
    margin-bottom: var(--space-60);
}

.section-title-md {
    font-size: calc(var(--font-30) + 2px);
    font-family: Museo;
}

.modal-newsletter .modal-content {
    display: flex;
}

.modal-content-left {
    width: 59%;
    padding: var(--space-50) var(--space-60);
}

.modal-newsletter .form-element-captcha .captcha-container .col-sm-6 + .col-sm-6 {
    margin-top: 10px;
}

.modal-newsletter .form-element-captcha .captcha-container {
    margin-bottom: 20px;
}

.newsletter-teaser {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 2.1428;
    margin-bottom: calc(var(--space-25) + 5px);
}

.form.newsletter-modal-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

.modal-content-right {
    width: 41%;
}

.modal-newsletter .modal-dialog {
    width: 966px;
}

.modal-newsletter .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

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

.modal-newsletter .modal-title {
    text-align: center;
    margin-bottom: 15px;
}

.modal-newsletter .captcha-container .col-sm-6 {
    width: 100%;
}

.modal-newsletter .modal-footer {
    padding: 0;
    border-top: 0;
}

.modal-newsletter .modal-body {
    padding: 0;
}

.modal-newsletter .hide-after-success {
    padding: 0 calc(var(--space-60) + 8px);
}

.modal .close {
    text-shadow: none;
    font-size: 38px;
    transition: color 0.3s;
    opacity: 1;
    font-weight: 300;
    top: 0;
}

.modal-newsletter .close {
    color: #fff;
}

.modal-newsletter .close:hover {
    color: var(--color-primary);
}

.modal-header button.close {
    margin-top: 0;
    top: 10px;
}

.modal-header{
    padding-right: 40px;
    padding-left: 35px;
    padding-bottom: 0;
}

.modal:not(.modal-newsletter) .modal-body {
    padding:  25px 35px;

}

.modal:not(.modal-newsletter) .modal-footer{
    padding: 15px 35px;
}

.files-list {
    margin-bottom: calc(2 * var(--space-50));
}

.file-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.file-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.file-image{
    width: 50%;
    display: flex;
    justify-content: center;
}

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

.file:nth-child(even) .file-inner{
    flex-direction: row-reverse;
}

.file-title-line1{
    font-size: 96px;
    font-family: Museo;
}

.file-title-line2 {
    font-size: 40px;
    font-family: Museo;
}

.file-text{
    max-width: 40%;
    margin: 0 auto;
    margin-bottom: calc(var(--space-40) - 3px);
    margin-top: calc(var(--space-25) - 3px);
}

.file .btn {
    min-width: 225px;
    justify-content: space-between;
}

.file + .file {
    margin-top: calc(2 * var(--space-50));
    padding-top: calc(2 * var(--space-50));
    border-top: 1px solid rgba(0,0,0,0.1);
}

.page-bottom-text {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: calc(2 * var(--space-40) + 5px) 0;
}

.page-bottom-text .text{
    columns: 2;
    column-gap: calc(2 * var(--space-60));
    font-size: 20px;
    font-weight: 300;
    text-align: justify;
}

.realizations-list{
    margin-bottom: calc(2 * var(--space-50) - 8px);
}

.realization-item + .realization-item{
    margin-top: calc(var(--space-60) + 5px);
}

.realization-images{
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.realization-images-column {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}

.realization-image {
    width: 50%;
    padding: 8px;
    display: block;
    position: relative;
}

.realization-image-inner{
    position: relative;
    display: block;
}

.realization-image-hover{
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

@media screen and (min-width: 1140px){
    .realization-image-inner:hover .realization-image-hover{
        opacity: 1;
    }
}

.realization-image-hover-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 136px;
    height: 136px;
}

.realization-image-hover-icon:before{
    content: '';
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--color-secondary);
}

.realization-image-hover-icon:after{
    content: '';
    position: absolute;
    top: 0;
    left: 70px;
    bottom: 0;
    width: 1px;
    background-color: var(--color-secondary);
}

.realization-image:first-child {
    width: 100%;
}

.realization-images-column:nth-child(even) .realization-image:first-child{
    width: 50%;
}
.realization-images-column:nth-child(even) .realization-image:last-child{
    width: 100%;
}

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

.realization-title{
    font-size: 16px;
    font-weight: 700;
    margin-top: calc(var(--space-25) + 3px);
}

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

.main-categories-list{
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
}

.main-categories-column {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    border-top: 1px solid rgba(255,255,255,0.9);
}

.product-slider-discount:not(.active) {
    display: none;
}

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

.main-categories-item {
    width: 50%;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
}

.main-categories-item {
    border-left: 1px solid rgba(0,0,0,0.1);
}

.main-category-item-title{
    position: absolute;
    bottom: var(--space-60);
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 19px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.6px;
    min-width: 215px;
    text-align: center;
}

.main-categories-item:first-child {
    width: 100%;
}

.main-category-item-image {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-category-item-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    padding: 20px;
    transition: transform 0.4s;
}

@media screen and (min-width: 1140px){
    .main-category-item-image:hover img{
        transform: scale(1.06);
    }
}

.main-categories-column:nth-child(even) .main-categories-item:first-child{
    width: 50%;
}
.main-categories-column:nth-child(even) .main-categories-item:last-child{
    width: 100%;
}

.product-slider{
    margin: calc(-1 * (var(--space-25) + 5px)) -18px;
}

.product-slider-wrapper{
    padding-bottom: calc(var(--space-60) + 5px);
    margin-bottom: calc(var(--space-50) + var(--space-40));
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.section-discountGroup .section-title{
    margin-bottom: 15px;
}

.heading-buttons {
    display: flex;
    gap: 12px;
}

.btn-discount{
    transition: text-shadow 0.3s;
}

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

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

.section-mainVideo{
    position: relative;
    aspect-ratio:  2.595 / 1;
}

.mainVideo-apla{
    position: absolute;
    inset: 0;
    cursor: pointer;
}

@media screen and (min-width: 1140px){
    .mainVideo-apla:hover .icon-wrapper{
        background-color: #fff;
        color: #000;
    }

    .mainVideo-apla:hover .icon-wrapper svg * {
        fill: #fff !important;
    }
}

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

.mainVideo-apla .icon-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    color: #fff;
    transition: background-color 0.3s;
}


.section-mainVideo iframe{
   width: 100%;
    height: 100%;
}

.page-about .page-header{
    margin-bottom: 0;
}

.page-about .section-mainVideo {
    position: relative;
    aspect-ratio: 2.89 / 1;
}

.sections-slider {
    margin-top: calc(2 * var(--space-50));
    margin-bottom: 0;
}

.sections-slider .main-slide-content {
    right: max(((100dvw - 1600px + var(--container-padding)) / 2), var(--container-padding));
    bottom: initial;
    top: 50%;
    transform: translateY(-50%);
}

.sections-slider .main-slide-teaser {
    padding: 0;
    background-color: transparent;
}

.page-about .logotypes {
    margin-bottom: 0;
    padding-top: var(--space-50);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: calc(2 * var(--space-40));
}

.section-texts {
    display: flex;
    gap: calc(2 * var(--space-50));
    margin-top: calc(2 * var(--space-40));
}

.section-texts.image-left{
    flex-direction: row-reverse;
}

.section-texts .text{
    flex: 1;
}

.section-texts-image {
    flex: 1;
}

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

.page-about .text {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.4583;
    text-align: justify;
}

.page-about .text h2,
.page-about .text h3 {
    font-size: calc(var(--font-36) + 4px);
    font-family: Museo;
}

.sections-header {
    display: flex;
    margin-top: calc(2 * var(--space-50));
}

.sections-header .section-title {
    width: 30%;
}

.sections-header .text{
    width: 70%;
}

.sections-form {
    margin-top: var(--space-50);
}

.tiles-list{
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--space-50));
    margin-top: var(--space-50);
}

.tile-item{
    width: 50%;
    padding: var(--space-50);
}

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

.tile-image {
    margin-bottom: var(--space-50);
}

.tile-teaser {
    font-size: var(--font-24);
    font-weight: 300;
    margin-bottom: var(--space-40);
}


.categories-box-list {
    width: 45%;
    display: flex;
    gap: var(--space-50);
}

.categories-box {
    display: block;
    position: relative;
}

.categories-box-image{
    display: block;
}

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

.categories-box-name {
    position: absolute;
    bottom: var(--space-50);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 15px 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.footer-scroll {
    position: absolute;
    top: calc(-1 * (var(--space-60) + 5px));
    right: 0;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-secondary);
    transition: all 0.3s;
    cursor: pointer;
}

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

.price-right{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop-product-price .price-right {
    width: 50%;
}

.top-box-top .price-right{
    display: block;
}

.basket-table .price-right{
    display: block;
}

.shop-product-price .price.price-old{
    font-size: 16px;
}

.shop-product-offer-inner .shop-product-history-price-before-discount{
    width: 50%;
    margin-right: 0;
    margin-left: auto;
    padding-left: calc((var(--space-50) + 6px) / 2);
}

.filter-form .shop-conf-color-option .icheckbox_minimal-custom {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    background: url(../lib/icheck/css/skins/minimal/ic-tick.png) no-repeat;
    border: none;
    cursor: pointer;
    width: 37px;
    height: 37px;
    margin-left: 0 !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.filter-form .shop-conf-color-option label {
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 37px;
    width: 37px;
    position: relative;
    padding: 7px;
    transition: border-color 0.3s;
}
.filter-form .shop-conf-color-option .icheckbox_minimal-custom.checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 22px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-image: url(../images/checkColor.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.form .checkboxradio-container label.dark .icheckbox_minimal-custom.checked::before {
    background-image: url(../images/checkColor2.svg);
}

.shop-conf-chkEle{
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.filter-form .form-group {
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0;

    --row-gap: 3px;
}

.filter-form-buttons{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-form-buttons .btn-md{
    min-width: 140px;
}

.btn-link {
    color: #000 !important;
}

.filter-form-title{
    font-size: var(--font-24);
    font-family: 'Museo';
    margin-bottom: 24px;
    margin-top: var(--space-50);
}

span.form-element-option-text{
    font-size: 14px;
    font-weight: 500;
    margin-left:  10px;
}

.filter-form .checkboxradio-container .col-xs-12 + .col-xs-12{
    margin-top: 10px;
}

.filter-form .form-element-name{
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-reviews {
    margin: 0 calc(-1 * var(--space-40));
    padding-bottom: calc(var(--space-60) + 10px);
    display: flex;
}


.product-review{
    width: 33.3333%;
    padding: 0 var(--space-40);
    position: relative;
    height: initial;
}

.product-review + .product-review::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0,0,0,0.1);
}

.product-review-inner{
    border: 1px solid rgba(0,0,0,0.1);
    padding: calc(var(--space-25) + 5px);
    height: 100%;
    transition: border-color 0.3s;
    cursor: pointer;
}

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

.product-review-top{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.product-review-author{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-review-date{
    font-size: 14px;
}

.product-review-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    background-color: #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.product-review-content{
    font-size: 14px;
    line-height: 1.7142;
    color: #2C3240;
}

.product-review-content-full {
    display: none;
}

.read-more {
    font-size: 14px;
    color: #2C3240;
    font-weight: 700;
    text-transform: lowercase;
}

.fancybox-slide .product-review-inner {
    max-width: 600px;
    height: initial;
}

.fancybox-slide .product-review-content-full{
    display: block;
}

.fancybox-slide .product-review-content:not(.product-review-content-full) {
    display: none;
}