

/* Start:/local/templates/ceresit/css/select-city.css?16825685733977*/


.geo-city {
    background: url('/images/geo-white.svg') no-repeat 0 center;
    padding-left: 20px;
    cursor: pointer;
    color: black;
}
.geo-city:hover {
    color: black;
}

.geo-city span {

}

.geo-city-mobile {

}

.geo-city-mobile img {
    width: 17px;
}

.select-city {
    position: relative;
    background-color: black;
}

@media screen and (min-width: 960px) {
    .select-city {
        display: none;
        position: absolute;
        top: 35px;
        left: 180px;
        z-index: 100;
    }
}

@media screen and (min-width: 960px) {
    .select-city::before {
        content: '';
        position: absolute;
        top: 0;
        left: 45%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #000;
    }
}


.select-city__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

.select-city__body {

}

.select-city__current {
    display: block;
    margin-bottom: 25px;
}
@media screen and (min-width: 960px) {
    .select-city__current {
        display: none;
    }
}


.select-city__current .geo-city {
    color: white;
}

.select-city__city {
    display: none;
}

.select-city__buttons {
    margin-top: 15px;
    display: none;
}


.select-city__button {
    width: 160px;
    border: 1px solid #c20016;
}

/* выбор города в мобилке */
.select-city--opened {
    display: block;
    color: white;
    padding: 16px 23px;
}

@media screen and (min-width: 960px) {
    .select-city--opened {
        color: black;
        background-color: white;
    }
}


.select-city--opened .geo-city {
    background: url('/images/geo-black.svg') no-repeat 0 center;
    color: black;
}

.select-city--opened .select-city__buttons {
    display: flex;
    justify-content: center;
}

.select-city--opened .select-city__city {
    display: block;
}

.select-city--opened .select-city__close {
    display: inline;
}

@media screen and (min-width: 960px) {
    .select-city--opened .select-city__close {
        display: none;
    }
}



/* список городов */
.city-list {
    display: none;
    position: relative;
    background-color: white;
    width: 100%;
    padding: 23px;
}

@media screen and (min-width: 960px) {
    .city-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 650px;
        height: 100%;
        z-index: 100;
    }
}

.city-list--opened {
    display: block;
    padding: 23px;
}

.city-list__close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.city-list__body {

}

.city-list__title {
    text-transform: uppercase;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    font-family: 'Futura PT';
}

@media screen and (min-width: 960px) {
    .city-list__title {
        font-size: 56px;
        line-height: 56px;
    }
}


.city-list__search {
    margin-top: 24px;
    background: url("/images/icon-search.svg") no-repeat 0 0;
    padding-left: 30px;
    border-bottom: 1px solid #BDBDBD;
}

.city-list__search input {
    border: none;
    width: 100%;
}

.city-list__search input:focus {
    outline: none;
}

.city-list__first {
    margin-top: 24px;
}

.city-list__first a {
    font-weight: 700;
    color: black;
    font-size: 16px !important;
    line-height: 24px;
    font-family: 'Futura PT' !important;
    cursor: pointer;
}

@media screen and (min-width: 960px) {
    .city-list__first a {
        font-size: 24px !important;
    }
}

.city-list__other {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px !important;
    line-height: 32px;
    font-family: 'Futura PT';
    font-weight: 400;
}

.city-list__city {
    width: 50%;
    color: black !important;
    cursor: pointer;
    font-size: 16px !important;
}

@media screen and (min-width: 960px) {
    .city-list__city {
        margin-top: 16px;
        font-size: 24px !important;
    }
}

/* End */


/* Start:/local/templates/ceresit/css/micromodal.css?16812127503295*/
.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    width: 100%;
    max-width: 670px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

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

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: black;
    box-sizing: border-box;
    font-family: 'Futura PT';
}

@media screen and (min-width: 960px) {
    .modal__title {
        font-size: 32px;
        line-height: 32px;
    }
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
    from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}
/* End */


/* Start:/local/templates/ceresit/css/modal-question.css?17265887721880*/

.question {

}

.question__section {
    margin-top: 32px;
}

.question__title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: "Futura PT";
}

.question__content {

}

.question__row {
    margin-bottom: 16px;
}

.question__row-mobile {
    margin-top: 16px;
}

@media screen and (min-width: 960px) {
    .question__row-mobile {
        margin-top: 0;
    }
}

.question-field {

}

.question-field input,
.question-field textarea,
.question-field select {
    padding: 8px 12px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #BDBDBD;
    font-family: 'Futura PT';
}

.question-label {
    margin-bottom: 5px;
    color: black;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Futura PT';
    font-weight: 400;
}

.question-label span {
    font-weight: 300;
}

.question-input {

}

.question-files {
    padding: 16px;
    border: 1px dashed #BDBDBD;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.question-files a {
    color: #C20016 !important;
    font-family: 'Futura PT';
    font-size: inherit;
}

.question-files input {
    display: none;
}

.question-rules {
    font-size: 16px;
    line-height: 24px;
}

.question-rules a {
    font-size: inherit;
}

.question-success {

}

.question-success__text {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BDBDBD;
}

.question-success__follow {
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 24px;
    font-family: 'Futura PT';
    font-weight: 700;
}

/*.question-success__follow a {*/
/*    margin-left: 20px;*/
/*}*/

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

}


.btn-mobile-full {
    width: 100%;
}

@media screen and (min-width: 960px) {
    .btn-mobile-full {
        width: auto;
    }
}


/* End */


/* Start:/local/templates/ceresit/css/modal-survey.css?1693341234332*/
.survey-title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.survey-variant {
    margin-bottom: 8px;
    padding: 7px 20px;
    display: flex;
    max-width: 353px;
    border: 1px solid #BDBDBD;
}

.survey-check {
    margin-right: 20px;
}

.survey-name {
    margin-bottom: 0;
}

/* End */


/* Start:/local/components/ceresit/menu/templates/.default/style.css?17223500575083*/
.menu-level-2 {
    display: none;
    padding: 30px 20px;
    background: white;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

@media screen and (min-width: 960px) {
    .menu-level-2 {
        box-shadow: 0 3px 7px 4px #0000005e;
        height: auto;
    }
}

.menu-level-3 {
    display: none;
    padding: 30px 20px;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 470px;
    z-index: 20;
}

@media screen and (min-width: 960px) {
    .menu-level-3 {
        height: auto;
    }
}

.menu-ul-1 {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
}

@media screen and (min-width: 960px) {
    .menu-ul-1 {
        padding: 0;
        flex-direction: row;
        margin-right: 30px;
    }
}

/* @media screen and (max-width: 1199px) {
    .menu-ul-1 .searchfield__calcBtn {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .menu-ul-1 {
        margin-right: 80px;
    }
} */

.menu-ul-2 {

}

@media screen and (min-width: 960px) {
    .menu-ul-2 {
        position: relative;
    }
}

.menu-ul-3 {
    background: white;
}

@media screen and (min-width: 960px) {
    .menu-ul-3 {
        position: relative;
    }
}

.menu-li-1 {

}

@media screen and (min-width: 960px) {
    .menu-li-1 {
        position: relative;
    }
}

.menu-li-2 {
    padding: 6px 0;
}

@media screen and (min-width: 960px) {
    .menu-li-2 {
        position: relative;
    }
}

.menu-li-3 {
    padding: 10px 0;
}

@media screen and (min-width: 960px) {
    .menu-li-3 {
        position: relative;
    }
}

.menu-li--mobile {
    display: block !important;
}

@media screen and (min-width: 960px) {
    .menu-li--mobile {
        display: none !important;
    }
}

.menu-link-1 {
    position: relative;
    color: black;
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.menu-link-1:hover {
    color: #e20f0f;
}

.menu-link-1::after {
    position: absolute;
    top: 20px;
    right: 20px;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url("/images/menu-arrow.svg") no-repeat right center;
    transform: rotate(90deg);
}

@media screen and (min-width: 960px) {
    .menu-link-1::after {
        display: none;
    }
}

@media screen and (min-width: 960px) {
    .menu-link-1 {
        display: inline;
        color: white;
        font-size: 24px;
        line-height: 24px;
        padding: 15px 10px;
    }
}

.menu-link-2 {
    position: relative;
    color: black;
    display: block;
}

.menu-link-2:hover {
    color: #e20f0f;
}

.menu-link-2::after {
    position: absolute;
    top: 8px;
    right: 20px;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url("/images/menu-arrow.svg") no-repeat right center;
    transform: rotate(90deg);
}

@media screen and (min-width: 960px) {
    .menu-link-2 {
        display: inline;
        text-transform: none;
        font-size: 24px;
        line-height: 24px;
        font-weight: 400;
        padding: 8px 10px;
    }

    .menu-link-2::after {
        display: none;
    }
}

.menu-link-3 {
    color: black;
}

.menu-link-3:hover {
    color: #e20f0f;
}

@media screen and (min-width: 960px) {
    .menu-link-3 {
        text-transform: none;
        font-size: 24px;
        line-height: 24px;
        font-weight: 400;
        padding: 15px 10px;
    }
}

.menu-back {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
}

.menu-back::before {
    background: url("/images/menu-arrow.svg") no-repeat left center;
    content: "";
    position: absolute;
    top: 6px;
    left: -15px;
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(-90deg);
}

@media screen and (min-width: 960px) {
    .menu-back {
        display: none;
    }
}

@media screen and (min-width: 960px) {
    .menu-li-1:hover .menu-level-2 {
        position: absolute;
        top: 42px;
        display: flex;
        flex-direction: column;
        width: 450px;
        left: -100px;
        padding: 20px;
    }

    .menu-li-1 .menu-level-2::before {
        animation-name: fadeIn;
        animation-name: fadeIn;
        animation-duration: 0.425s;
        animation-duration: 0.425s;
        animation-fill-mode: both;
        animation-fill-mode: both;
        animation-iteration-count: unset;
        animation-iteration-count: unset;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #000;
        top: 0;
        content: "";
        left: 50%;
        position: absolute;
        opacity: 0;
        z-index: 17;
        transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.menu-li-1--opened .menu-level-2 {
    display: block;
}

.menu-li-2--opened .menu-level-3 {
    display: block;
}

/* End */


/* Start:/local/templates/ceresit/styles.css?174852771124115*/
body {
	margin-top: 75px;
}

@media screen and (min-width: 960px) {
	body {
		margin-top: 109px;
	}
}

.styled-checkbox {
	position: absolute;
	opacity: 0;
}
.styled-checkbox + label {
	position: relative;
	cursor: pointer;
	padding: 0;
}
.styled-checkbox + label:before {
	content: "";
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 20px;
	height: 20px;
	background: white;
	border: 1px solid #dfdfdf;
	border-radius: 2px;
}
.styled-checkbox:active + label:before {
	background: #C20016;
}
.styled-checkbox:focus + label:before {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
	background: #C20016;
}
.styled-checkbox:disabled + label {
	color: #b8b8b8;
	cursor: auto;
}
.styled-checkbox:disabled + label:before {
	box-shadow: none;
	background: #ddd;
}
.styled-checkbox:checked + label:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 9px;
	background: white;
	width: 2px;
	height: 2px;
	box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
	transform: rotate(45deg);
}


.circle-checkbox {
	position: absolute;
	opacity: 0;
}
.circle-checkbox + label {
	position: relative;
	cursor: pointer;
	padding: 0;
}
.circle-checkbox + label:before {
	content: "";
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 20px;
	height: 20px;
	background: white;
	border: 1px solid #dfdfdf;
	border-radius: 10px;
}
.circle-checkbox:active + label:before {
	background: #C20016;
}
.styled-checkbox:checked + label:before {
	background: #C20016;
}
.circle-checkbox:disabled + label {
	color: #b8b8b8;
	cursor: auto;
}
.circle-checkbox:disabled + label:before {
	box-shadow: none;
	background: #ddd;
}
.circle-checkbox:checked + label:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 6px;
	width: 10px;
	height: 10px;
	background-color: black;
	border-radius: 5px;
}



/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background: linear-gradient(87.88deg, #FAFF00 -3.24%, #FF0000 32.84%, #EB00FF 65.78%, #001AFF 98.22%);
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(22px);
	-ms-transform: translateX(22px);
	transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.product-image-badge-line--list .badge-item {
	padding: 0 8px;
	font-size: 13px;
	line-height: 30px;
}

.pageteaser__text {
	min-height: 116px;
}

.pageteaser__text--with-badges h2 {
	max-width: 70%;
}

.pageteaser__text--with-badges .pageteaser__title {
	padding-right: 0 !important;
}

@media (min-width: 1700px){
	.container {
		max-width: 1680px;
	}
}

.ontop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	display: none;
}
.ontop--visible {
	display: inline-block;
}

.ontop a {
	background: url("/images/ontop.png") no-repeat 0 0;
	width: 34px;
	height: 34px;
	display: inline-block;
	background-size: 82px;
}

.ontop a:hover {
	background-position: 0 -41px;
}


@media screen and (min-width: 960px) {
	.ontop a {
		width: 58px;
		height: 58px;
		background-position: 0 0;
		background-size: 140px;
	}

	.ontop a:hover {
		background-position: 0 -70px;
	}
}

.stage__base.mb0 {
	margin-bottom: 0;
}



.navigationbar__item {
	display: flex;
	align-items: center;
}

.navigationbar__itemLocation, .navigationbar__menuButton, .navigationbar__itemSearch{
	padding: 10px;
}

.navigationbar__iconBurger, .navigationbar__locationIcon, .navigationbar__icon .ic-burger-menu{
	height: 32px;
	width: 32px;
}

.bx-panel-wrap {
	position: absolute;
	top: -75px;
	left: 0;
	width: 100%;
}

@media screen and (min-width: 960px) {
	.bx-panel-wrap {
		top: -138px;
	}
}

.semi-product-slider {
	margin-bottom: 30px;
}

.semi-product-item,
.semi-product-item:hover {
	display: block;
	text-decoration: none;
	cursor: pointer;
}

.semi-product-item__heading {
	font-style: normal;
	font-weight: bold;
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 10px;
	padding: 5px;
	color: #212529;
}

.semi-product-item__text {
	font-size: 20px;
	line-height: 28px;
	padding: 0 5px;
	color: #212529;
}


.breadcrumb__item a {
	color: #000;
	font-size: 16px;
	line-height: 23px;
	letter-spacing: .2px;
	-webkit-box-align: center;
	display: flex;
}

@media (max-width: 760px) {
	.col-semi-product-heading h2 {
		font-weight: bold;
		font-size: 24px;
		line-height: 30px;
	}
}

body {
	margin-top: 138px;
}

.product__descriptionText ul>li,
.product__benefitsList ul>li {
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
}

.product-about__main-text,
.product-about__small-text {
	font-size: 16px;
}

.product-about__button-block {
	margin-top: 30px;
}

.nav {
	flex-wrap: nowrap;
}

/*.breadcrumb {*/
/*	margin-top: 160px;*/
/*}*/

.hasFocus {
	outline: unset
}

.main {
	min-height: 724px;
}

.product-about__button-block .btn {
	font-family: 'Futura PT';
}

.text__base p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	padding-top: 0;
	padding-bottom: 0;
}
.product__descriptionText ul :not(:first-child),
.product__benefitsList ul :not(:first-child) {
	margin-top: 0;
}

.product__descriptionText ul>li,
.product__benefitsList ul>li {
	margin-top: 0;
	margin-bottom: 0;
}

.product__descriptionText ul :not(:last-child),
.product__benefitsList ul :not(:last-child) {
	margin-bottom: 3px;
}

.semi-product-item__heading {
	transition: color .15s ease-in-out,
	background-color .15s ease-in-out;
}

.layoutpanel__title {
	font-size: 32px;
}

.layoutpanel__title--center {
	text-align: center;
}

.text h3 {
	padding-top: 0;
}

.tab-links {
	margin-top: 32px;
}

.product-card-tabs {
	padding-bottom: 24px;
	position: relative;
	overflow: auto;
}

.product-card-tabs .nav {
	flex-wrap: nowrap;
}

.product-card-tabs:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: 24px;
	width: 100%;
	background-color: #fff;
}

.product-card-tabs .nav-link {
	position: relative;
	white-space: nowrap;
}

.product-card-tabs .nav-link.active:before {
	z-index: 1;
}

.product-card-tabs .nav-link:after {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 0;
	height: 24px;
	width: 100%;
	background-color: #fff;
}

.cerulean.product-card-tabs .nav-link, .product-about__score-text{
	font-family: 'Futura PT';
}

.product-image{
	height: 100%;
}
.product-image__slider, .product-image__slider-slide{
	height: 100%;
	display: flex;
	align-items: center;
}


.product-image__slider .detail-image-zoom{
	margin-top: auto;
	margin-bottom: auto;
}

body.fontsReady .product__descriptionText div{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
}

.footer__linkSection .linklist__title{
	font-weight: 700;
}

.footer__linkSection .linklist__item {
	margin-right: 18px;
}

.footer__linkSection svg {
	width: 24px;
	height: 24px;
}

.footer__linkSection .link__icon {
	width: 24px;
	height: 24px;
}

@media (min-width: 960px) {
	.footer__linkSection svg {
		width: 48px;
		height: 48px;
	}

	.footer__linkSection .link__icon {
		width: 48px;
		height: 48px;
	}

	.footer__linkSection--1 {
		width: 25%;
	}

	.footer__linkSection--2 {
		width: 25%;
	}

	.footer__linkSection--3 {
		width: 20%;
	}

	.footer__linkSection--4 {
		width: 30%;
	}
}


.container-city{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.container-city .select-city{
	position: absolute;
	top: calc(100% + 10px);
	z-index: -1;
	left:unset;
}

@media(max-width:960px){
	.select-city--opened .select-city__close{
		margin-top: -10px;
	}
}

.container-city .select-city.select-city--opened{
	z-index: 100;
}

@media(min-width:1200px){
	.pageteaser__tile-products .pageteaser__title, .pageteaser__tile-title_image_description .pageteaser__title, .pageteaser__tile-title_image_description_additional_information .pageteaser__title{
		padding-right: 33px;
	}
	.layoutpanel__title:only-child{
		margin-bottom: 16px;
		padding-top: 0;
	}
	.layoutpanel__title{
		font-weight: 700;
		font-size: 32px;
		line-height: 1;
		margin-bottom: 16px;
		text-transform: unset;
	}
	.main-carousel-section{
		margin-top: -30px;
	}
}

@media (min-width: 1024px){
	.pageteaser__tile-title_image_description .pageteaser__description{
		max-height: 90px;
	}
	.teaserlist.sidebarCollision .pageteaser__tile-title_image_description .pageteaser__title{
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		max-height: 69px;
	}
}

@media(max-width: 1024px){
	.layoutpanel__base .columncontrol__base--control-transparent.columncontrol__base--default-width .columncontrol__wrapper {
		width: calc(100% - 40px);
	}
}

.cstmLink a.button__secondary{
	color: #000;
}
.cstmLink a.button__secondary:hover{
	background-color: #000;
	color: #fff;
}

@media(min-width:1600px){
	.main-carousel-section + .layoutpanel .layoutpanel__title,
	.interest-section .layoutpanel__title,
	.half-image-section .layoutpanel__title{
		font-size: 56px;
	}
	.teaserlist__item .pageteaser__title {
		font-size: 32px;
		line-height: 1.1;
	}
	.teaserlist__item .pageteaser__description {
		font-size: 24px;
		line-height: 1.2;
	}
	.interest-section .pageteaser__tile-title_image_description .pageteaser__title{
		font-size: 32px;
		text-transform: unset;
	}
	.interest-section .pageteaser__tile-title_image_description .pageteaser__description{
		font-size: 24px;
	}
}

.tab-pane .layoutpanel__container .text__base[data-ga-attributes]:not([data-adobe-analytics]){
	display: none;
}

.product-image .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
	margin-left: 8px;
	margin-right: 8px;
}
.product-image .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	opacity: 1;
}

body.fontsReady .product__descriptionText, body.fontsReady .product__featureText,
body.fontsReady,
body.fontsReady a,
body.fontsReady *,
body.fontsReady .product__descriptionText, body.fontsReady .product__featureText,
body.fontsReady .metanavigation__base .link__anchor,
body.fontsReady .footer__linkSection .link__anchor,
body.fontsReady .footer__linkSection .linklist__title,
body.fontsReady .footer__legal .link__anchor,
body.fontsReady .text p,
body.fontsReady .button,
body.fontsReady .text p + p,
body.fontsReady .text p + ol,
body.fontsReady .text p + ul,
body.fontsReady .text ol + p,
body.fontsReady .text ol + ol,
body.fontsReady .text ol + ul,
body.fontsReady .text ul + p,
body.fontsReady .text ul + ol,
body.fontsReady .text ul + ul,
body.fontsReady .pageteaser__tile-title_image_description .pageteaser__description,
body.fontsReady .pageteaser__tile-title_image_description_additional_information .pageteaser__description,
body.fontsReady .pageteaser__tile-title .pageteaser__title,
body.fontsReady .pageteaser__tile-icon_title_description .pageteaser__title,
body.fontsReady .pageteaser__tile-products .pageteaser__title,
body.fontsReady .pageteaser__tile-title_image_description .pageteaser__title,
body.fontsReady .text b,
body.fontsReady .text strong,
.columncontrol__base .text__base h6,
body.fontsReady .text h3 + p,
body.fontsReady .text h3 + ol,
body.fontsReady .text h3 + ul,
body.fontsReady .text h4 + p,
body.fontsReady .text h4 + ol,
body.fontsReady .text h4 + ul,
body.fontsReady .text h5 + p,
body.fontsReady .text h5 + ol,
body.fontsReady .text h5 + ul,
body.fontsReady .text td,
body.fontsReady .text ul, body.fontsReady .text ol,
body.fontsReady .pageteaser__tile-title_image_description_additional_information .pageteaser__title{
	font-family: 'Futura PT';
}

.backtotop__base{
	display: none!important;
}

.text__base li,
.text__base li a,
.text p,
.text p + p,
.text p + ol,
.text p + ul,
.text ol + p,
.text ol + ol,
.text ol + ul,
.text ul + p,
.text ul + ol,
.text ul + ul,
.text b, .text strong{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	padding-top: 0;
	padding-bottom: 0;
}

@media(min-width:1024px){
	.slide__link{
		max-width: max-content;
		margin-top: auto;
		margin-bottom: auto;
	}
	.slide-block{
		display: flex;
		flex-direction: column;
	}
	.header__leftColumn{
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.header__logo{
		position: relative;
		bottom: unset;
		height: auto;
		top: unset;
		left: unset;
		right: unset;
	}
}

.layoutpanel__container > .text:last-child .text-vase,
.layoutpanel__container > .text:last-child .text-vase{
	padding-right: 30px;
	padding-left: 30px;
}
.text_base_down{
	padding-bottom: 30px;
}
.text b, .text strong{
	font-weight: 600;
}
.text a{
	text-decoration: none;
	color: #e20f0f
}
.text a:visited{
	color: #e20f0f
}
.columncontrol__base--column-white.columncontrol__base--default-width .columncontrol__column--lt1 .text:first-child div[class*='__base']{
	margin-top: 30px;
	margin-bottom: 0;
}

.columncontrol__base .text__base h6{
	padding-top: 0;
	padding-bottom: 0;
}

.layoutpanel__base .columncontrol__base--control-transparent.columncontrol__base--default-width .columncontrol__wrapper{
	width: 100%;
}

.tab-pane .text a{
	text-decoration: none;
	font-size: inherit;
}

#pills-block-7 .text__base{
	padding-top: 0;
}

#pills-block-7 .text__base p{
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.half-image-section__text-link .img-block img{
	width: 100%;
	max-width: 230px;
}

.nofibreforce .text__base h3,
.nofibreforce .text__base h2,
.nofibreforce .text__base h4,
.nofibreforce .text__base h5,
.nofibreforce .text__base h6,
.nofibreforce .text__base p,
.nofibreforce .text__base ol,
.nofibreforce .text__base ul{
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.no-large-margin .stage__base.stage__simple{
	margin-bottom: 0;
	padding-bottom: 0;
}

@media screen and (min-width: 960px){
	.menu-ul-1 {
		margin-bottom: 6px;
	}

	.menu-li-1{
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.menu-li-1:hover .menu-level-2{
		left: unset;
		top: 100%;
	}
}
p{
	margin-bottom: 10px;
}
p a{
	font-size: inherit
}

.product__descriptionText h5{
	font-size: 16px;
	line-height: 1.5;
}

.semi-product-item__heading {
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 1024px){
	.metanavigation__base .link__anchor {
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
	.metanavigation__base {
		max-width: 1140px;
	}
	.product-card-contain #pills-block-1 .col-xl-4 {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-webkit-flex-grow: 1;
		-moz-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
}

@media (min-width: 1700px) {
	.metanavigation__base {
		max-width: 1680px;
	}
}

@media (min-width: 1700px) and (max-width: 1850px) {

	.metanavigation__base {
		max-width: 1540px;
	}
}

@media(max-width: 1199.98px) {
	.semi-product-item__heading {
		font-size: 24px;
	}

	/*.breadcrumb {*/
	/*	margin-top: 130px;*/
	/*}*/
}

.js-modal-question-text{
	min-height: 90px;
}

.product-card-tabs .nav-link.xsmall {
	padding: 30px 10px;
	font-size: 22px;
}
@media (min-width: 1200px) and (max-width: 1699px){
	.product-card-tabs .nav-link.xsmall {
		padding: 20px 10px;
		font-size: 18px;
	}
	.product-card-tabs .nav-link.small {
		padding: 30px 10px;
		font-size: 20px;
	}
	.product-card-tabs .nav-link.medium {
		padding: 30px 10px;
		font-size: 22px;
	}
}

@media(max-width: 991px) {
	.micromodal-slide .modal__container{
		margin-top: 30px;
		margin-bottom: 30px;
		max-height: calc(100vh - 60px);
	}
	.product-image {
		height: auto;
	}
	/*.breadcrumb {*/
	/*	margin-top: 84px;*/
	/*}*/

	.product-about__score img:first-child {
		max-width: 16px;
	}

	.product-about__score img:last-child {
		max-width: 78px;
	}

	.product-about__score-text {
		margin-right: 6px;
		margin-left: 10px;
	}

	.product-card-contain .tab-pane {
		padding-top: 0;
	}

	.tab-heading {
		font-weight: 700;
		font-size: 24px;
		margin-bottom: 4px;
	}

	.tab-text a,
	.tab-text li,
	.tab-text p,
	.text p {
		font-weight: 400;
		font-size: 16px;
		line-height: 1.5;
		font-family: 'Futura PT';
	}

	.tab-links {
		margin-top: 20px;
	}

	.detail-stage {
		margin-top: 20px;
	}

	.detail-stage:first-child {
		margin-top: 10px;
	}

	.detail-stage__title {
		font-weight: 700;
		font-size: 16px;
		line-height: 16px;
	}

	.detail-stage__content {
		margin-top: 4px;
		font-family: 'Futura PT';
		margin-bottom: 8px;
	}

	.semi-product-wrapper {
		align-items: stretch;
		padding-bottom: 10px;
	}

	/* .semi-product-wrapper:after{
	content: '';
	display: block;
	width: 30px;
	flex: 0 0 30px;
} */
	.semi-product-item:last-child {
		margin-right: 40px;
	}

	.semi-product-item {
		height: unset;
		background: #FFFFFF;
		box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06), 0px 1px 3px rgba(16, 24, 40, 0.1);
	}

	body {
		margin-top: 95px;
	}

	.geo-city-mobile {
		padding: 10px;
	}

	.geo-city-mobile img {
		width: 26px;
		opacity: 0.7;
	}

	.product-card-tabs .nav-pills .nav-link {
		border-radius: 0;
	}

	.semi-product-slider {
		margin-bottom: 0;
	}

	.semi-product-item__heading {
		font-weight: 700;
		font-size: 18px;
		line-height: 1.25;
		margin-bottom: 8px;
	}

	.semi-product-item__text {
		font-size: 14px;
		line-height: 1.25;
		padding-left: 12px;
		padding-right: 12px;
		padding-bottom: 20px;
	}

	.footer__linksWrap {
		padding-top: 25px;
	}

	body.fontsReady .footer__linkSection .linklist__title {
		font-family: 'Futura PT';
	}

	.footer__linkSection .linklist__collapsable {
		border-bottom: 0;
	}

	.footer__linkSection .linklist__title {
		font-family: 'Futura PT';
		font-weight: 700;
		font-size: 16px;
		margin-top: 14px;
		margin-bottom: 14px;
		line-height: 20px;
		text-transform: unset;
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 16L17.1962 10H6.80385L12 16Z' fill='white'/%3E%3C/svg%3E%0A");
		background-repeat: no-repeat;
		background-position: right center;
		border-bottom: 0;
	}

	.footer__linkSection .linklist__title[aria-expanded="true"] {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8L6.80385 14L17.1962 14L12 8Z' fill='white'/%3E%3C/svg%3E%0A");
	}

	.footer__linkSection .linklist__title .heli__svg-icons {
		display: none;
	}

	body.fontsReady .footer__linkSection .link__anchor {
		font-family: 'Futura PT';
		font-weight: 400;
		font-size: 14px;
	}

	/*.footer__socialWrap {*/
	/*	display: none;*/
	/*}*/

	.footer__base .footer__legalWrap {
		margin-top: 15px;
		padding-top: 20px;
	}

	body.fontsReady .footer__legal .link__anchor {
		font-family: 'Futura PT';
	}

	.footer__legal .link__anchor,
	.footer__disclaimerYear {
		font-family: 'Futura PT';
		font-weight: 400;
		font-size: 13px;
		line-height: 16px;
		color: #FFFFFF;
	}

	.layoutpanel .layoutpanel__title {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 1024px){
	.layoutpanel__wrapper--lightgrey .layoutpanel__container.container{
		max-width: 944px;
	}
}
@media (min-width: 1200px){
	.product-about h1{
		font-size: 50px;
	}

	.teaserlist__tile-products .pageteaser__tile-products .pageteaser__title{
		font-size: 20px;
	}

	.layoutpanel__wrapper--lightgrey .layoutpanel__container.container{
		max-width: 1180px;
		padding-right: 45px;
		padding-left: 45px;
	}
}
@media (min-width: 1400px){
	.layoutpanel__wrapper--lightgrey .layoutpanel__container.container{
		max-width: 1380px;
	}
}

@media (min-width: 1023px) and (max-width: 1699px){
	.pageteaser__tile-title .pageteaser__base {
		height: 193px;
	}
	.teaserlist__item .pageteaser__title {
		font-size: 28px;
		line-height: 1.1;
	}
	.interest-section .pageteaser__tile-title_image_description .pageteaser__title {
		font-size: 28px;
		max-height: 70px;
	}
}

@media(max-width:1024px){
	.itb_plite_colors_wrapper{
		display: flex;
		flex-direction: column;
	}
	.itb_plite_colors_left{
		width: 100%;
	}
	.itb_plite_colors_wrapper__right{
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.itb_plite_colors_right_top{
		width: 100%!important;
	}
	.itb_plite_colors_right{
		width: 100%!important;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

.layoutpanel__base .columncontrol__base--control-transparent .columncontrol__column > .text .text__base{
	padding: 20px;
}

.slide__image{
	position: relative;
}

.slide-block{
	height: auto;
	padding: 20px;
}
.swiper-pagination-bullet{
	opacity: 1;
}
.main-carousel-section .swiper-pagination{
	bottom: 20px;
}
@media (min-width: 1700px) and (max-width: 1850px){
	.main-carousel-section .swiper-pagination{
		bottom: 20px;
	}
}
@media (max-width: 1699px){
	.main-carousel-section .swiper-pagination {
		bottom: 20px;
	}
}
@media (min-width: 1300px) and (max-width: 1500px){
	.main-carousel-section .swiper-pagination {
		bottom: 20px;
	}}
@media (max-width: 1280px){
	.main-carousel-section .swiper-pagination {
		bottom: 20px;
	}}
@media (max-width: 1023px){
	.main-carousel-section .swiper-pagination {
		bottom: 8px;
	}}

.main-carousel__slide {
	min-height: auto;
}

.slide__heading:only-child{
	margin-bottom: 0;
}
.slide__heading>:not(.slide__pre-title):first-child {
	margin-top: 20px;
	margin-bottom: 20px;
}
.slide__link{
	margin-top: 20px;
}

@media(max-width: 1199px){
	.slide__button.button--hasIcon{
		padding-left: 18px;
		padding-right: 18px;
	}
}

.show-news {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem;
	text-align: center;
}

.show-news:not(.left) {
	flex-direction: column;
}

@media (min-width: 960px) {
	.show-news {
		gap: 2rem;
		flex-direction: row;
		align-items: center;
	}

	.show-news:not(.left) {
		flex-direction: row;
	}
}

.show-news__text {
	text-align: center;
	font-size: 24px;
}

/*.show-news:not(.left) .show-news__text {*/
/*	width: 100%;*/
/*}*/

@media (min-width: 960px) {
	.show-news__text {
		text-align: right;
		width: auto;
		font-size: 32px;
	}
}


.show-news.left {
	justify-content: flex-start;
	text-align: left;
}

.show-news.left .show-news__text {
	text-align: left;
	font-size: 18px;
}

.show-news.left .show-news__links svg{
	width: 24px;
	height: 24px;
}

@media (min-width: 960px) {
	.show-news.left .show-news__links svg{
		width: 48px;
		height: 48px;
	}
}
/* End */


/* Start:/local/templates/ceresit/template_styles.css?17609706782015*/

.tech-item {
    display: inline-flex;
    align-items: center;
    width: 100%;
    border: 1px solid #BDBDBD;
    border-radius: 5px;
    padding: 21px;
    margin-bottom: 20px;
    color: #2A2A2A !important;
    font-size: 16px;
    line-height: 24px;
}
@media screen and (min-width: 768px) {
    .tech-item {
        width: 30%;
        margin-right: 20px;
    }
}
@media screen and (min-width: 960px) {
    .tech-item {
        padding: 0 38px;
        height: 90px;
    }
}

.tech-item--auto {
    width: auto;
}

.tech-item__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("/ru/img/tech-icon.svg") no-repeat center center;
}

.tech-item:hover {
    background-color: #000000;
    color: #ffffff !important;
}

.tech-item:hover .tech-item__icon {
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_902_691)'%3E%3Cpath d='M19 9H15V3H9V9H5L12 16L19 9ZM5 18V20H19V18H5Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_902_691'%3E%3Crect width='24' height='24' fill='black'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") 0 0 no-repeat
}


.tech-name {
    padding-left: 21px;
}

.menu_calc_apapt{
    padding: 10px;
}
.menu_calc_apapt a {
    color: #979797;
    transition: color .3s;
}
.catalog-description{
    margin-top: 40px;
}
.catalog-description h2,
.catalog-description h3{
    margin-top: 10px !important;
}

@media screen and (max-width: 390px) {
    .menu_calc_apapt {
        padding: 5px;
    }
    .geo-city-mobile {
        padding: 5px;
    }
    .navigationbar__itemLocation, .navigationbar__menuButton, .navigationbar__itemSearch {
        padding: 5px;
    }
}
@media screen and (max-width: 340px) {
    .menu_calc_apapt {
        padding: 2px;
    }
    .geo-city-mobile {
        padding: 2px;
    }
    .navigationbar__itemLocation, .navigationbar__menuButton, .navigationbar__itemSearch {
        padding: 2px;
    }
}




/* End */
/* /local/templates/ceresit/css/select-city.css?16825685733977 */
/* /local/templates/ceresit/css/micromodal.css?16812127503295 */
/* /local/templates/ceresit/css/modal-question.css?17265887721880 */
/* /local/templates/ceresit/css/modal-survey.css?1693341234332 */
/* /local/components/ceresit/menu/templates/.default/style.css?17223500575083 */
/* /local/templates/ceresit/styles.css?174852771124115 */
/* /local/templates/ceresit/template_styles.css?17609706782015 */
