
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-500.eot");
    src: local("Roboto Medium"), local("Roboto-Medium"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-500.eot?#iefix") format("embedded-opentype"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-500.woff2") format("woff2"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-500.woff") format("woff"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-500.ttf") format("truetype"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-500.svg#Roboto") format("svg");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-regular.eot");
    src: local("Roboto"), local("Roboto-Regular"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-regular.eot?#iefix") format("embedded-opentype"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-regular.woff2") format("woff2"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-regular.woff") format("woff"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-regular.ttf") format("truetype"),
    url("/local/lib/brand/salini/fonts/roboto/roboto-v20-latin_cyrillic-regular.svg#Roboto") format("svg");
}
:root {
    --header-background-color: #ffffff;
    --header-text-color: #000000;
    --header-accent-color: #0096dd;
    --header-logotype-color: #2B398A;
    --header-credo-color: #E00019;

    --footer-accent-color: #0096dd;
    --footer-background-color: #1b1b1b;
    --footer-text-color: #ffffff;
    --footer-credo-color: #ffffff;
    --footer-logotype-color: #ffffff;
}
@supports (-ms-ime-align:auto) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        overflow: auto;
        height: 100%;
        position: relative;
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        overflow: auto;
        height: 100%;
    }
}
@media screen and (min-width: 0) {
    header.af-header {
        width: 100%;
        box-shadow: 0 0 15px rgba(0, 0, 0, .3);
        position: sticky;
        top: 0;
        z-index: 10;
        background-color: var(--header-background-color);
    }
    header.af-header .af-header-container {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    header.af-header .af-header-logo {
        display: block;
        width: 180px;
        height: 40px;
        order: 1;
    }
    header.af-header .af-logotype {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: left top;
        object-position: left top;
    }
    header.af-header .af-logotype-letter {
        fill: var(--header-logotype-color);
    }
    header.af-header .af-logotype-credo {
        fill: var(--header-credo-color);
    }
    header.af-header .af-header-links {
        display: flex;
        height: auto;
        margin: 0;
        padding: 0;
        order: 3;
        flex-wrap: wrap;
        align-items: center;
    }
    header.af-header .af-header-links li {
        display: block;
        height: auto;
        box-sizing: border-box;
    }
    header.af-header .af-header-link {
        line-height: 1;
        font-size: 12px;
        font-style: normal;
        text-decoration: none;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
        color: var(--header-text-color);
    }
}
@media screen and (max-width: 767px) {
    header.af-header .af-header-container {
        padding: 10px 20px;
    }
    header.af-header .af-header-links {
        width: 100%;
        flex-direction: column;
        overflow: hidden;
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
    }
    header.af-header :not(.active) .af-header-links {
        max-height: 0;
    }
    header.af-header .active .af-header-links {
        max-height: 500px;
    }
    header.af-header .af-header-links li {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
    header.af-header .af-header-link {
        font-weight: 400;
    }
    header.af-header .af-header-link:first-child {
        padding-top: 20px;
    }
    header.af-header .af-header-toggle {
        display:  inline-block;
        width: 30px;
        height: 30px;
        order: 2;
    }
    header.af-header .af-header-toggle span {
        margin: 0 auto;
        pointer-events: none;
        position: relative;
        top: 12px; transition-duration: 0s; transition-delay: 0.2s;
    }
    header.af-header .af-header-toggle span:before,
    header.af-header .af-header-toggle span:after {
        position: absolute;
        content: '';
    }
    header.af-header .af-header-toggle span,
    header.af-header .af-header-toggle span:before,
    header.af-header .af-header-toggle span:after {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--header-text-color);
    }
    header.af-header .af-header-toggle span:before {
        margin-top: -8px; transition-property: margin, transform; transition-duration: 0.2s; transition-delay: 0.2s, 0s;
    }
    header.af-header .af-header-toggle span:after {
        margin-top: 8px; transition-property: margin, transform; transition-duration: 0.2s; transition-delay: 0.2s, 0s;
    }
    header.af-header .active span {
        background-color: rgba(0,0,0,0.0); transition-delay: 0.2s;
    }
    header.af-header .active span:before,
    header.af-header .active span:after {
        margin-top: 0; transition-delay: 0s, 0.2s;
    }
    header.af-header .active span:before {
        transform: rotate(45deg);
    }
    header.af-header .active span:after {
        transform: rotate(-45deg);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    header.af-header .af-header-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (min-width: 768px) {
    header.af-header .af-header-container {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    header.af-header .af-header-links {
        width: auto;
        flex-direction: row;
    }
    header.af-header .af-header-links li {
        width: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    header.af-header .af-header-links li:not(:first-child):not(:last-child) {
        padding-right: 10px;
    }
    header.af-header .af-header-links li:first-child {
        padding-right: 10px;
    }
    header.af-header .af-header-links li:last-child {
        padding-left: 10px;
    }
    header.af-header .af-header-link {
        font-weight: 500;
    }
    header.af-header .af-header-toggle {
        display: none;
    }
}
@media screen and (min-width: 1024px) {
    header.af-header .af-header-container {
        min-width: 1000px;
        max-width: 1280px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    header.af-header .af-header-links li:not(:first-child):not(:last-child) {
        padding-left: 10px;
    }
    header.af-header .af-header-link {
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
    }
    header.af-header .af-header-link:hover {
        color: var(--header-accent-color);
    }
}

@supports (-ms-ime-align:auto) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        overflow: auto;
        height: 100%;
        position: relative;
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        overflow: auto;
        height: 100%;
    }
}
@media screen and (min-width: 0) {
    footer.af-footer {
        width: 100%;
        box-shadow: 0 0 15px rgba(0, 0, 0, .3);
        position: relative;
        z-index: 1;
        background-color: var(--footer-background-color);
    }
    footer.af-footer .af-footer-container {
        display: flex;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        box-sizing: border-box;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer.af-footer .af-footer-contacts {
        display: flex;
        width: 180px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    footer.af-footer .af-footer-logotype {
        display: block;
        width: 100%;
        height: auto;
    }
    footer.af-footer .af-logotype {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
    }
    footer.af-footer .af-logotype-letter {
        fill: var(--footer-logotype-color);
    }
    footer.af-footer .af-logotype-credo {
        fill: var(--footer-credo-color);
    }
    footer.af-footer .af-footer-phone {
        display: block;
        width: 100%;
        height: auto;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        font-style: normal;
        text-decoration: none;
        color: var(--footer-text-color);
    }
    footer.af-footer .af-footer-socials {
        display: flex;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
    }
    footer.af-footer .af-footer-socials li {
        display: block;
    }
    footer.af-footer .af-footer-socials li svg {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
    }
    footer.af-footer .af-footer-socials li path {
        fill: var(--footer-text-color);
    }
    footer.af-footer .af-footer-stores {
        display: flex;
        height: auto;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    footer.af-footer .af-stores-list {
        display: flex;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }
    footer.af-footer .af-stores-list::before,
    footer.af-footer .af-footer-list::after {
        content: "";
        display: block;
        height: 0;
        order: 1;
    }
    footer.af-footer .af-stores-list li {
        display: flex;
        min-height: 20px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 10px 0;
    }
    footer.af-footer .af-stores-list li .af-stores-link {
        max-width: calc(100% - 19px);
        line-height: 1.3;
        font-size: 12px;
        font-weight: 400;
        font-style: normal;
        text-decoration: none;
        text-overflow: ellipsis;
        font-family: 'Roboto', sans-serif;
        color: var(--footer-text-color);
        overflow: hidden;
    }
    footer.af-footer .af-stores-list li svg {
        display: block;
        min-width: 14px;
        width: 14px;
        height: 14px;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        align-self: flex-start;
        margin: 0 5px 0 0;
    }
    footer.af-footer .af-stores-list li path {
        fill: var(--footer-text-color);
    }
}
@media screen and (max-width: 767px) {
    footer.af-footer .af-footer-contacts {
        width: 180px;
        margin-bottom: 20px;
    }
    footer.af-footer .af-footer-logotype ,
    footer.af-footer .af-footer-phone {
        margin-bottom: 20px;
    }
    footer.af-footer .af-stores-toggle {
        display: block;
        width: auto;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
        color: var(--footer-text-color);
        margin: 0 auto 10px 0;
        transition: 150ms ease-in;
    }
    footer.af-footer .af-stores-toggle::after {
        content: "\276F";
        display: inline-block;
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
        font-style: normal;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
        color: var(--footer-text-color);
        margin-left: 2px;
        transition: 150ms ease-in;
        transform: rotate3d(0, 0, 1, 90deg);
    }
    footer.af-footer .af-stores-list::before,
    footer.af-footer .af-stores-list::after,
    footer.af-footer .af-stores-list li {
        width: 100%;
    }
    footer.af-footer .af-footer-stores:not(.active) {
        max-height: 20px;
        overflow: hidden;
    }
    footer.af-footer .af-footer-stores.active {
        max-height: 580px;
    }
    footer.af-footer .af-footer-stores.active .af-stores-toggle:after {
        transform: rotate3d(0, 0, 1, -90deg);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    footer.af-footer .af-footer-contacts {
        width: 160px;
    }
    footer.af-footer .af-footer-stores {
        max-width: calc(100% - 210px);
    }
}
@media screen and (min-width: 768px) {
    footer.af-footer .af-footer-logotype,
    footer.af-footer .af-footer-phone {
        margin-bottom: 10px;
    }
    footer.af-footer .af-stores-toggle {
        display: none;
    }
    footer.af-footer .af-stores-list::before,
    footer.af-footer .af-stores-list::after,
    footer.af-footer .af-stores-list li {
        min-width: 190px;
        width: calc(20% - 16px);
    }
    footer.af-footer .af-stores-list li {
        margin: 0 0 10px 0;
        padding: 0 20px 0 0;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 1023px) {
    footer.af-footer .af-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    footer.af-footer .af-footer-socials li {
        display: block;
        width: 30px;
        height: 30px;
    }
}
@media screen and (min-width: 1024px) {
    footer.af-footer .af-footer-container {
        min-width: 1000px;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }
    footer.af-footer .af-footer-contacts {
        width: 140px;
    }
    footer.af-footer .af-footer-stores {
        max-width: calc(100% - 190px);
        align-self: center;
    }
    footer.af-footer .af-logotype-letter {
        fill: var(--footer-logotype-color);
    }
    footer.af-footer .af-logotype-credo {
        fill: var(--footer-credo-color);
    }
    footer.af-footer .af-footer-phone {
        transition: 150ms ease-in;
    }
    footer.af-footer .af-footer-phone:hover {
        color: var(--footer-accent-color);
    }
    footer.af-footer .af-footer-socials li {
        display: block;
        width: 20px;
        height: 20px;
    }
    footer.af-footer .af-footer-socials li path {
        transition: 150ms ease-in;
    }
    footer.af-footer .af-footer-socials li:hover path {
        fill: var(--footer-accent-color);
    }
    footer.af-footer .af-stores-list li {
        white-space: nowrap;
        overflow: hidden;
    }
    footer.af-footer .af-stores-list li .af-stores-link,
    footer.af-footer .af-stores-list li path {
        transition: 150ms ease-in;
    }
    footer.af-footer .af-stores-list li:hover .af-stores-link {
        color: var(--footer-accent-color);
    }
    footer.af-footer .af-stores-list li:hover path {
        fill: var(--footer-accent-color);
    }
}

.banners-slider {
    position: relative;
}

.banners-slider__wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.banners-slider__items {
    display: flex;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.25s ease;
    will-change: transform;
}

.banners-slider__item {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.banners-slider__pictograms-wrapper {
    width: 92px;
    overflow: hidden;
    height: 18px;
    display: flex;
    white-space: nowrap;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
}

.banners-slider__pictograms {
    display: flex;
    align-items: center;
    gap: 6px;
}

.banners-slider__pictogram {
    cursor: pointer;
    flex-shrink: 0;
    height: 10px;
    width: 10px;
    background-color: rgba(15, 116, 209, 0.5);
    border-radius: 100%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.banners-slider__pictogram-active {
    height: 12px;
    width: 12px;
}

.banners-slider__pictogram-active,
.banners-slider__pictogram:hover {
    background-color: rgb(15, 116, 209);
}

.banners-slider__pictogram_small {
    width: 8px;
    height: 8px;
}

.transition-none {
    transition: none;
}

.product-banner-end-line {
    margin-bottom: 10px;
}

.not-visible {
    display: none !important;
}

.app .banners-slider__wrapper {
    margin-bottom: 10px;
}

.app .banners-slider__pictograms-wrapper {
    width: 92px;
    height: 24px;
}

.app .banners-slider__pictograms {
    gap: 12px;
}

.app .banners-slider__pictogram {
    height: 14px;
    width: 14px;
}

.app .banners-slider__pictogram_small {
    width: 12px;
    height: 12px;
}

.app .banners-slider__pictogram-active {
    height: 16px;
    width: 16px;
}

.banners-slider_inited .app .banners-slider__pictograms-wrapper,
.banners-slider_inited .banners-slider__pictograms-wrapper {
    opacity: 1;
    visibility: visible;
}

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0 auto;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:2px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}

.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

/* FONT SETTINGS */
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/local/lib/brand/salini/fonts/montserrat/montserrat-Bold.eot");
    src: local("Montserrat Bold"), local("Montserrat-Bold"), url("/local/lib/brand/salini/fonts/montserrat/montserrat-Bold.eot?#iefix") format("embedded-opentype"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Bold.woff2") format("woff2"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Bold.woff") format("woff"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Bold.ttf") format("truetype"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Bold.svg") format("svg");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/local/lib/brand/salini/fonts/montserrat/montserrat-Regular.eot");
    src: local("Montserrat Regular"), local("Montserrat-Regular"), url("/local/lib/brand/salini/fonts/montserrat/montserrat-Regular.eot?#iefix") format("embedded-opentype"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Regular.woff2") format("woff2"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Regular.woff") format("woff"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Regular.ttf") format("truetype"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-Regular.svg") format("svg");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/local/lib/brand/salini/fonts/montserrat/montserrat-semiBold.eot");
    src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("/local/lib/brand/salini/fonts/montserrat/montserrat-semiBold.eot?#iefix") format("embedded-opentype"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-semiBold.woff2") format("woff2"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-semiBold.woff") format("woff"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-semiBold.ttf") format("truetype"),
    url("/local/lib/brand/salini/fonts/montserrat/montserrat-semiBold.svg") format("svg");
}

/* COMMON */
:root {
    --accent-color: #e55c2f;
    --header-accent-color: #7E8C7F;
    --header-text-color: #ffffff;
    --header-logotype-color: #ffffff;
    --header-credo-color: #ffffff;
    --header-background-color: #1E1E1E;
    --footer-accent-color: #7E8C7F;
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
body {
    position: relative;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: #19383A;
    /*background-color: #E7E5E1 !important;*/
}
.af-main {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.af-section {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    position: relative;
    box-sizing: border-box;
}
.af-section-wrapper {
    width: 100%;
    max-width: 1500px;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: auto;
}

/* HEADER */
.section__header {
    width: 100%;
    position: relative;
    margin-bottom: 100px;
}
.section__header .header__video_wrapper {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/local/lib/brand/salini/image/poster.png');
}
.section__header .header__video_wrapper video {
    display: block;
    width: 100%;
    min-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
}
.section__header .header__logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
}
div div div .section__header .header__title {
    margin-top: 170px !important;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
}
.section__header .header__subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

/* PRODUCT */
.section__product {
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 40px;
}
.section__product .product__description {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.section__product .product__text,
.section__product .product__parameters {
    max-width: 600px;
    width: 100%;
}
.section__product .product__title {
    font-weight: 600;
    font-size: 100px;
    line-height: 100%;
    margin-bottom: 8px;
    text-align: left;
}
.section__product .product__subtitle {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    text-align: left;
    margin-bottom: 40px;
}
.section__product .product__slider_wrapper {
    width: calc(50% - 15px);
    height: fit-content;
    position: relative;
}
.section__product .product__slider {
    margin-bottom: 40px;
    position: relative;
}
.section__product .product__gift {
    min-width: 30px;
    width: 15%;
    max-width: 140px;
    min-height: 30px;
    height: 20%;
    max-height: 140px;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    box-sizing: border-box;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("/local/lib/brand/salini/image/special-gift.png");
    display: none;
}
.section__product .product__gift[data-title]::after {
    content: attr(data-title);
    display: flex;
    width: auto;
    max-width: 0;
    min-height: 46px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #573C25;
    white-space: nowrap;
    border-radius: 200px;
    box-sizing: border-box;
    align-items: center;
    align-content: center;
    background-color: #F8F1DC;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 23px);
    transition: 200ms ease;
}
.section__product .product__gift[data-title]:hover::after,
.section__product .product__gift[data-title]:focus::after,
.section__product .product__gift[data-title]:active::after {
    max-width: 360px;
    padding-left: 14px;
    padding-right: 14px;
}
.section__product img[src*="/sofia_first2.png"] ~ .product__ral:not([style="display: block;"]) ~ .product__gift,
.section__product img[src*="/sofia_second2.png"] ~ .product__ral:not([style="display: block;"]) ~ .product__gift,
.section__product img[src*="/sofia_third2.png"] ~ .product__ral:not([style="display: block;"]) ~ .product__gift {
    display: none;
}
.section__product.section__mona .product__gift,
.section__product.section__sofia .product__gift {
    left: 0;
}
.section__product.section__mona .product__gift[data-title]::after,
.section__product.section__sofia .product__gift[data-title]::after {
    left: 100%;
}
.section__product.section__ninfea .product__gift,
.section__product.section__luce .product__gift {
    right: 0;
}
.section__product.section__ninfea .product__gift[data-title]::after,
.section__product.section__luce .product__gift[data-title]::after {
    right: 100%;
}
.section__product .product__slider img {
    width: 100%;
    cursor: pointer;
}
.section__product .product__slider_wrapper .product__ral {
    display: none;
    position: absolute;
    width: 100px;
    height: 100px;
    left: 20%;
    z-index: 2;
}
.section__product.section__mona .product__slider_wrapper .product__ral {
    top: calc(47% - 50px);
}
.section__product.section__luce .product__slider_wrapper .product__ral {
    top: calc(45% - 50px);
}
.section__product.section__sofia .product__slider_wrapper .product__ral {
    top: calc(47% - 50px);
}
.section__product.section__ninfea .product__slider_wrapper .product__ral {
    top: calc(43% - 50px);
}
.section__product .product__pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.section__product .product__pagination a {
    width: 90px;
    position: relative;
    line-height: 0;
}
.section__product .product__pagination a.active::after,
.section__product .popular__color.active:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    bottom: -14px;
    left: 50%;
    transform: translate(-50%, 0);
    background: url('/local/lib/brand/salini/image/dot-active.svg') center no-repeat;
}
.section__product .product__pagination img {
    width: 100%;
    cursor: pointer;
}
.section__product .product__size,
.section__product .product__material,
.section__product .product__color {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.section__product .product__color {
    margin-bottom: 60px;
    align-items: flex-start;
}
.section__product .parameter__title {
    min-width: 80px;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
}
.section__product .parameter__title.parameter__title_regular {
    font-weight: 400;
}
.section__product .parameter__choice_btn {
    padding: 14px 30px;
    border: 2px solid #7E8C7F;
    border-radius: 80px;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    color: #7E8C7F;
    cursor: pointer;
}
.section__product .parameter__choice_btn.active {
    border: 2px solid #19383A;
    color: #19383A;
}
.section__product .parameter__popular {
    margin-bottom: 8px;
}
.section__product .parameter__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    margin-bottom: 20px;
}
.section__product .parameter__choice_color {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}
.section__product .popular__color {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
}
.section__product .individual__color {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 8px;
    margin-bottom: 8px;
}
.section__product .individual__color_img.active:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    bottom: 50%;
    left: -14px;
    transform: translate(0, 50%);
    background: url('/local/lib/brand/salini/image/dot-active.svg') center no-repeat;
}
.section__product .individual__color .individual__color_img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url('/local/lib/brand/salini/image/polural_max.png') center no-repeat;
    background-size: contain;
}
.section__product .individual__color:last-child .individual__color_img {
    background: url('/local/lib/brand/salini/image/ral_max.png') center no-repeat;
    background-size: contain;
}
.section__product .individual__color a {
    text-decoration: underline;
    color: #19383A;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
}
.section__product .individual__color .individual__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
}
.section__product .product__price {
    margin-bottom: 60px;
    display: none;
}
.section__product .product__price.active {
    display: block;
}
.section__product .product__price_wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.section__product .parameter__price {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    margin-right: 36px;
}
.section__product .af-availability__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.section__product .af-availability__count {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: #A02929;
}
.section__product .af-availability__count_text {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    color: #19383A;
}
.section__product .parameter__buy_btn {
    padding: 14px 30px;
    background: #19383A;
    border-radius: 80px;
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    cursor: pointer;
}
.section__product .popular__color.fadeColor,
.section__product .individual__color.fadeColor,
.section__product .parameter__individual.fadeColor {
    display: none;
}

/* MONA */
.section__mona {
    background: url('/local/lib/brand/salini/image/mona_background.png') bottom left no-repeat;
    background-size: contain;
}
.section__mona .color__first {
    background-color: #ffffff;
}
.section__mona .color__second {
    background-color: #EFE812;
}
.section__mona .color__third {
    background-color: #000000;
}
.section__mona .color__fourth {
    background-color: #EF4E38;
}

/* LUCE */
.section__luce {
    background: url('/local/lib/brand/salini/image/luce_background.png') bottom right no-repeat;
    background-size: contain;
}
.section__luce .color__first {
    background-color: #9CBBBD;
}
.section__luce .color__second {
    background-color: #FFFFFF;
}
.section__luce .color__third {
    background-color: #9CA9B9;
}
.section__luce .product__description {
    align-items: flex-start;
}

/* SOFIA */
.section__sofia {
    background: url('/local/lib/brand/salini/image/sofia_background.png') bottom left no-repeat;
    background-size: contain;
}
.section__sofia .color__first {
    background-color: #2A504B;
}
.section__sofia .color__second {
    background-color: #FFFFFF;
}

/* NINFEA */
.section__ninfea {
    background: url('/local/lib/brand/salini/image/ninfea_background.png') bottom right no-repeat;
    background-size: contain;
}
.section__ninfea .color__first {
    background-color: #A73535;
}
.section__ninfea .color__second {
    background-color: #FFFFFF;
}
.section__ninfea .product__description {
    align-items: flex-start;
}

/* MATERIAL */
.section__material {
    margin-bottom: 100px;
}
.section__material .af-section-wrapper {
    display: flex;
    justify-content: space-between;
    /*justify-content: center;*/
    align-items: flex-end;
    gap: 20px;
}
.section__material .material__description {
    display: flex;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    align-items: flex-start;
}
.section__material .material__title {
    font-weight: 800;
    font-size: 54px;
    line-height: 120%;
    margin-bottom: 20px;
}
.section__material .material__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 20px;
}
.section__material .material__subtitle {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: #A02929;
    margin-bottom: 40px;
}
.section__material .material__advantage {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 550px;
    gap: 40px;
}
.section__material .advantage__item {
    display: flex;
    width: calc(50% - 20px);
    justify-content: flex-start;
    align-items: center;
}
.section__material .advantage__number {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.section__material .advantage__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
}

/* OTHER */
.section__other {
    margin-bottom: 130px;
}
.section__other .af-section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.section__other .other__link {
    display: block;
    position: relative;
    width: calc(33% - 20px);
}
.section__other .other__link::after {
    position: absolute;
    width: 100%;
    max-width: 220px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 200px;
    font-weight: 600;
    font-size: 20px;
    color: #19383A;
    transition: all .3s;
}
.section__other .other__link:hover:after {
    background-color: #19383A;
    color: #ffffff;
    transition: all .3s;
}
.section__other .other__sink::after {
    content: 'РАКОВИНЫ';
}
.section__other .other__pallet::after {
    content: 'ПОДДОНЫ';
}
.section__other .other__accessories::after {
    content: 'АКСЕССУАРЫ';
}
.section__other .other__img img {
    width: 100%;
}

/* ABOUT */
.section__about {
    margin-bottom: 100px;
}
.section__about .af-section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.section__about .about__description {
    width: calc(50% - 10px);
}
.section__about .about__title {
    font-weight: 600;
    font-size: 100px;
    line-height: 100%;
    margin-bottom: 60px;
}
.section__about .about__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 20px;
}

/* ABOUT_MATERIAL */
.section__about-material {
    margin-bottom: 100px;
}
.section__about-material .af-section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.section__about-material .about-material__description {
    width: calc(50% - 8px);
}
.section__about-material .about-material__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 20px;
}
.section__about-material .about-material__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
}
.section__about-material .about-material__img {
    width: calc(50% - 8px);
    max-width: 495px;
}
.section__about-material .about-material__img img {
    width: 100%;
}

/* CERTIFICATE */
.section__certificate {
    width: 100%;
    max-width: 840px;
    margin: auto;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.section__certificate .certificate__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}

/* COLLECTION */
.section__collection {
    margin-bottom: 100px;
}
.section__collection .collection__title {
    max-width: 489px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    color: #19383A;
    margin-bottom: 40px;
}
.section__collection .collection__item {
    display: block;
    position: relative;
    padding-bottom: 30px;
    cursor: pointer;
}
.section__collection .collection__slider {
    width: calc(1280px + (50% - 640px));
    max-width: 100%;
    margin-left: auto;
    padding-left: 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
}
.section__collection .collection__item img {
    width: 400px;
    max-width: 100%;
    height: auto;
}
.section__collection .collection__item::after {
    content: attr(data-name);
    position: absolute;
    width: 100%;
    max-width: 220px;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 50%);
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 200px;
    font-weight: 600;
    font-size: 20px;
    color: #19383A;
    transition: all .3s;
}
.section__collection .collection__item:hover:after,
.section__collection .collection__item.active:after {
    background-color: #19383A;
    color: #ffffff;
    transition: all .3s;
}
.owl-nav {
    display: flex;
    width: 100%;
    height: 0;
    max-width: 1336px;
    padding: 0 60px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
}
.owl-next,
.owl-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background-color: #ffffff;
    border-radius: 100%;
    background-size: auto 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/local/lib/brand/salini/image/arrow.png');
}
.owl-next.disabled,
.owl-prev.disabled {
    display: none;
}
.owl-prev {
    margin-right: auto;
    transform: rotate(180deg);
}
.owl-next {
    margin-left: auto;
}
.section__product .product__text_mobile {
    display: none;
}
.section__collection .collection__product_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.section__collection .collection__product_wrapper:not(.showed) .af-product:nth-child(n+7) {
    display: none;
}
.section__collection .af-product {
    width: calc(33% - 24px);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}
.section__collection .af-product-image {
    width: 100%;
    height: 220px;
    text-align: center;
    margin-bottom: 8px;
}
.section__collection .af-product-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto 0;
}
.section__collection .af-product-title {
    font-weight: 600;
    font-size: 15px;
    color: #19383A;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    height: 60px;
}
.section__collection .af-availability__wrapper {
    margin-bottom: 20px;
    min-height: 44px;
}
.section__collection .af-availability__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    margin-bottom: 8px;
}
.section__collection .af-availability__count {
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    color: #A02929;
}
.section__collection .af-availability__count_text {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    color: #19383A;
}
.section__collection .af-availability__wrapper > .af-availability__count_text {
    display: none;
}
.section__collection .af-availability__wrapper > .af-availability__count ~ .af-availability__count_text {
    display: inline-block;
}
.section__collection .af-product-prices {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}
.section__collection .af-product-price {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    color: #A02929;
}
.section__collection .af-product-price__one {
    color: #19383A;
}
.section__collection .af-product-price__old {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    --webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #7E8C7F;
    margin-left: 8px;
}
.section__collection .af-product-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section__collection .af-product-link {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    --webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #19383A;
}
.af-product-add {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    letter-spacing: 0;
    color: transparent;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-image: url(/local/lib/brand/salini/image/cart-icon.svg);
    position: relative;
}
.af-product-add::before,
.af-product-add::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center center;
    transform-style: preserve-3d;
}
.af-product-add::before {
    transition: 100ms ease 50ms;
    transform: scale3d(1, 1, 1);
    background-image: url("/local/lib/brand/salini/image/cart-add.svg");
}
.af-product-add::after {
    transition: 100ms ease 0s;
    transform: scale3d(0, 0, 1);
    background-image: url("/local/lib/brand/salini/image/cart-added.svg");
}
.af-product-add.added::before {
    transition: 100ms ease 0s;
    transform: scale3d(0, 0, 1);
}
.af-product-add.added::after {
    transition: 100ms ease 50ms;
    transform: scale3d(1, 1, 1);
}
.section__collection .collection__more {
    position: relative;
    margin-top: 40px;
}
.section__collection .af-collection-more {
    margin: auto;
    padding: 14px 30px;
    background: #19383A;
    border-radius: 80px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #FFFFFF;
    display: block;
    max-width: 207px;
    box-sizing: border-box;
    cursor: pointer;
}
.section__collection .collection__product_wrapper:not([data-total]) + .collection__more,
.section__collection .collection__product_wrapper[data-total="1"] + .collection__more,
.section__collection .collection__product_wrapper[data-total="2"] + .collection__more,
.section__collection .collection__product_wrapper[data-total="3"] + .collection__more,
.section__collection .collection__product_wrapper[data-total="4"] + .collection__more,
.section__collection .collection__product_wrapper[data-total="5"] + .collection__more,
.section__collection .collection__product_wrapper[data-total="6"] + .collection__more {
    display: none;
}
.section__collection .collection__up {
    display: flex;
    width: 110px;
    align-items: center;
    gap: 10px;
    position: sticky;
    margin-left: calc(99% - 110px);
    top: 90%;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #19383A;
}

/* TAGS */
.af-product-tags {
    display: block;
    width: calc(100% - 20px);
    height: auto;
    position: absolute;
    top: 20px;
    left: 20px;
}
.af-product-tags .af-commoncontent-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
}
.af-product-tag,
.af-product-tags .af-commoncontent {
    display: flex;
    width: 100%;
    max-width: 28px;
    overflow: hidden;
    height: auto;
    flex-flow: row nowrap;
    transition: 300ms ease;
    margin: 0 0 5px 0;
}
.af-product-tag > a,
.af-product-tags .af-commoncontent > a {
    display: flex;
    flex-flow: row nowrap;
    margin: 0;
    white-space: nowrap;
}
.af-product-tag:hover,
.af-product-tags .af-commoncontent:hover {
    max-width: 300px;
}

/* MEDIA */
@media(max-width: 1024px) {
    .section__header .header__video_wrapper video {
        min-height: 400px;
    }

    .section__header .header__logo {
        width: 140px;
        height: 140px;
    }

    div div div .section__header .header__title {
        margin-top: 110px !important;
    }

    /* PRODUCT */
    .section__product {
        flex-direction: column;
    }

    .section__product .product__text {
        display: none;
    }

    .section__product .product__text_mobile {
        display: block;
        order: 1;
    }

    .section__product .product__slider_wrapper {
        width: 100%;
        order: 2;
    }

    .section__product .product__description {
        width: 100%;
        order: 3;
        align-items: flex-start;
    }

    .section__ninfea,
    .section__sofia,
    .section__luce,
    .section__mona {
        background: none;
    }

    .section__product .product__price {
        margin-bottom: 0;
    }

    /* MATERIAL */
    .section__material .af-section-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }

    .section__material .material__img {
        width: 100%;
        text-align: right;
    }
    .section__product.section__mona .product__gift,
    .section__product.section__sofia .product__gift,
    .section__product.section__ninfea .product__gift,
    .section__product.section__luce .product__gift {
        left: 0;
        right: initial;
    }
    .section__product.section__mona .product__gift[data-title]::after,
    .section__product.section__sofia .product__gift[data-title]::after,
    .section__product.section__ninfea .product__gift[data-title]::after,
    .section__product.section__luce .product__gift[data-title]::after {
        left: 100%;
        right: initial;
    }

    /* ABOUT */
    .section__about .about__img {
        width: calc(50% - 10px);
    }

    .section__about .about__img img {
        width: 100%;
    }

    .section__about .about__title {
        font-size: 70px;
        margin-bottom: 20px;
        line-height: 100%;
    }

    .section__about .about__text {
        font-size: 15px;
    }

    /* ABOUT-NATERIAL */
    .section__about-material .about-material__title,
    .section__about-material .about-material__text {
        font-size: 15px;
    }

    /* SERTIFICATE */
    .section__certificate {
        justify-content: center;
    }

    .section__certificate .certificate__description {
        width: 100%;
        max-width: 300px;
    }

    .section__certificate .certificate__text {
        font-size: 15px;
    }

    /* COLLECTION */
    .section__collection .collection__slider {
        padding-right: 40px;
    }

    .section__collection .collection__product_wrapper {
        justify-content: center;
        gap: 16px;
    }

    .section__collection .af-product {
        width: calc(50% - 8px);
        max-width: 330px;
    }

    .section__collection .collection__product_wrapper:not(.showed) .af-product:nth-child(n+5) {
        display: none;
    }
    .section__collection .collection__product_wrapper[data-total="5"] + .collection__more,
    .section__collection .collection__product_wrapper[data-total="6"] + .collection__more {
        display: block;
    }

    .section__collection .collection__up {
        display: none;
    }

    /* TAGS */
    .af-product-tags {
        display: none;
    }
}

@media(max-width: 769px) {
    .section__header .header__video_wrapper video {
        min-height: 400px;
    }

    .section__header .header__logo {
        width: 140px;
        height: 140px;
    }

    div div div .section__header .header__title {
        margin-top: 110px !important;
    }

    /* PRODUCT */
    .section__product .product__size,
    .section__product .product__material,
    .section__product .product__color,
    .section__product .product__price_text {
        flex-wrap: wrap;
    }

    /* MATERIAL */
    .section__material .material__img img {
        width: 100%;
    }
    .section__product .product__gift[data-title]::after {
        font-size: 12px;
    }

    /* OTHER */
    .section__other .af-section-wrapper {
        flex-wrap: wrap;
        gap: 16px;
    }

    .section__other .other__link {
        width: calc(33% - 10px);
    }

    .section__other .other__link::after {
        max-width: 190px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }

    /* ABOUT */
    .section__about .af-section-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section__about .about__description {
        width: 100%;
    }

    .section__about .about__img {
        width: auto;
    }

    /* ABOUT-MATERIAL */
    .section__about-material .af-section-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .section__about-material .about-material__description {
        width: 100%;
    }

    .section__about-material .about-material__img {
        width: 100%;
    }

    /* SERTIFICATE */
    .section__certificate {
        flex-wrap: wrap;
        gap: 40px;
        padding: 0 40px;
    }

    .section__certificate .certificate__img {
        width: 110px;
    }

    div div .section__certificate .certificate__img img {
        width: 100%;
        max-width: none;
    }

    .section__certificate .certificate__description {
        max-width: 100%;
    }

    /* COLLECTION */
    .section__collection .af-product {
        width: 100%;
    }

    .section__collection .collection__product_wrapper:not(.showed) .af-product:nth-child(n+3) {
        display: none;
    }
    .section__collection .collection__product_wrapper[data-total="3"] + .collection__more,
    .section__collection .collection__product_wrapper[data-total="4"] + .collection__more {
        display: block;
    }
}

@media(max-width: 500px) {

    .section__header .header__video_wrapper video {
        min-height: 300px;
    }

    /* PRODUCT */
    .section__product,
    .af-section-wrapper,
    .section__certificate {
        padding: 0 16px;
    }

    .section__product .product__title {
        font-size: 70px;
    }

    .section__product .product__price_wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section__product .parameter__title {
        min-width: 100%;
    }

    .section__product .parameter__popular {
        margin-bottom: 20px;
        margin-left: 14px;
    }

    .section__product .parameter__individual {
        margin-left: 14px;
    }

    .section__product .product-price {
        width: 100%;
    }

    /* MATERIAL */
    .section__material .material__advantage {
        gap: 20px;
    }

    .section__material .advantage__item {
        width: 100%;
    }

    /* OTHER */
    .section__other .af-section-wrapper {
        justify-content: center;
        gap: 70px;
    }

    .section__other .other__link::after {
        max-width: 220px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }

    .section__other .other__link {
        width: 100%;
        max-width: 320px;
    }
    /* COLLECTION */
    .section__collection .collection__slider {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section__collection .collection__item::after {
        max-width: 130px;
        height: 40px;
        font-size: 13px;
        line-height: 40px;
    }
}

body {
    position: relative;
    margin: 0;
}

body .wrapper-salini-brand {
    font-family: "Montserrat", sans-serif;
    color: #19383A;
    /*background-color: #E7E5E1 !important;*/
    display: block;
    width: 100vw;
    position: relative;
    left: calc((100vw - 1500px) / -2);
    overflow: hidden;
    margin-top: -70px;
    /*margin-bottom: -50px;*/
    z-index: 2;
}

body .wrapper1:not(.with_left_block) .detail_content_wrapper.side_image_N .content-text {
    max-width: 1500px !important;
}

.page-top.maxwidth-theme {
    height: 50px;
    z-index: 1;
}
html body .wraps>.wrapper_inner {
    padding-top: 0;
    padding-bottom: 0;
}

div div div .wrapper-salini-brand img {
    margin-left: 0;
    max-width: none;
}

div div div .ordered-block.partners_mode.detail_content_wrapper .detailimage.image-wide {
    display: none;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    height: 0;
    width: 0;
}

div div .top-block-wrapper .page-top.maxwidth-theme .topic {
    display: none;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    height: 0;
    width: 0;
}

@media (max-width: 1560px) {
    body div div div .wrapper-salini-brand {
        left: -30px;
    }
    .af-section-wrapper {
        padding: 0 30px;
    }
}
@media (max-width: 991px) {
    body div div div .wrapper-salini-brand {
        left: -30px;
    }

    .af-section-wrapper {
        padding: 0 30px;
    }
}
@media (max-width: 767px) {
    body div div div .wrapper-salini-brand {
        left: -16px;
    }

    .af-section-wrapper {
        padding: 0 16px;
    }
}
