

/* Start:/local/components/vodoley/sale.basket.basket/templates/basket-side/style.css?17762473379140*/
.basket {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    transform: translateX(120%);
    transition: 0.2s;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-end;
  }
  @media screen and (max-width: 769px) {
    .basket {
      padding-left: 40px;
    }
  }
  .basket.active {
    transform: translateX(0);
  }
  .basket__wrapper {
    box-sizing: border-box;
    max-width: 558px;
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
  }
  .basket__close {
    position: absolute;
    top: 25px;
    left: -33px;
    width: 33px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 6px;
    cursor: pointer;
  }
  .basket__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .basket__top {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 25px;
    box-sizing: border-box;
    border-bottom: 1px solid #EEF0F3;
  }
  @media screen and (max-width: 769px) {
    .basket__top {
      padding: 15px;
    }
  }
  .basket__icon {
    display: flex;
    width: 23px;
  }
  .basket__icon svg, .basket__icon img {
    width: 100%;
  }
  .basket__title {
    color: #111;
    font-size: 22px;
    line-height: 115%;
  }
  .basket__goods {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    overflow: auto;
    padding: 16px 20px;
    box-sizing: border-box;
  }
  @media screen and (max-width: 769px) {
    .basket__goods {
      padding: 15px;
    }
  }
  .basket__bottom {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 44px;
    margin-top: auto;
    margin-bottom: 0;
  }
  @media screen and (max-width: 769px) {
    .basket__bottom {
      padding: 15px;
      row-gap: 15px;
    }
  }
  .basket-good {
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
    padding: 13px;
    box-sizing: border-box;
  }
  .basket-good__wrapper {
    display: flex;
    column-gap: 12px;
  }
  @media screen and (max-width: 576px) {
    .basket-good__wrapper {
      flex-direction: column;
      row-gap: 10px;
    }
  }
  .basket-good__image {
    min-width: 176px;
    width: 176px;
    display: flex;
    position: relative;
    flex-direction: column;
    row-gap: 18px;
  }
  @media screen and (max-width: 576px) {
    .basket-good__image {
      min-width: 150px;
      width: 100%;
      margin: 0 auto;
    }
  }
  .basket-good__image img {
    width: 100%;
    height: 176px;
    object-fit: contain;
  }
  @media screen and (max-width: 576px) {
    .basket-good__image img {
      height: 150px;
      z-index: 1;
    }
  }
  .basket-good__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }
  .basket-good__actions {
    display: flex;
    align-items: center;
    column-gap: 12px;
  }
  .basket-good__title {
    color: #111;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .basket-good__desc {
    color: #64707B;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
  }
  .basket-good__price {
    margin-bottom: 12px;
  }
  .basket-good__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    margin-top: auto;
    margin-bottom: 0;
  }
  .basket-good__count {
    display: flex;
    max-width: 190px;
    width: 100%;
    height: 38px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid var(--eef-0-f-3, #EEF0F3);
    justify-content: space-between;
  }
  .basket-good__number {
    color: #111;
    text-align: center;
    font-size: 16px;
    line-height: 112%;
    display: flex;
    align-items: center;
  }
  
  .basket-good__number input {
      border: none;
      width: 32px;
      text-align: right;
      padding-right: 5px;
      line-height: 112%;
  }
  
  .basket-good__button {
    color: #B30F97;
    font-size: 16px;
    line-height: 112%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    box-sizing: border-box;
    cursor: pointer;
  }
  .basket-price {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
  }
  @media screen and (max-width: 576px) {
    .basket-price {
      flex-direction: row;
      align-items: baseline;
      column-gap: 20px;
    }
  }
  .basket-price__new {
    color: #111;
    font-size: 24px;
    font-weight: 500;
    line-height: 115%;
  }
  .basket-price__old {
    color: #64707B;
    font-size: 14px;
    line-height: 115%;
    text-decoration: line-through;
  }
  .basket-price__left {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    align-items: flex-start;
  }
  .basket-price__right {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    align-items: flex-end;
  }
  .basket-price__percent {
    border-radius: 4px;
    background: var(--dd-1-d-47, #DD1D47);
    padding: 4px 13px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 115%;
  }
  .basket-price__discount {
    color: #DD1D47;
    font-size: 14px;
    line-height: 115%;
  }
  .basket-price__desc {
    color: #777;
    font-size: 14px;
    line-height: 130%;
  }
  .basket-code {
    border-radius: 8px;
    border: 1px solid var(--eef-0-f-3, #EEF0F3);
    background: var(--f-4-f-6-f-7, #F4F6F7);
    padding: 12px 15px;
    box-sizing: border-box;
    display: flex;
    column-gap: 10px;
  }
  @media screen and (max-width: 769px) {
    .basket-code {
      padding: 10px;
      flex-direction: column;
      row-gap: 10px;
    }
  }
  .basket-code__field {
    display: flex;
    position: relative;
    width: 100%;
  }
  .basket-code__input {
    align-items: end;
    width: 100%;
    height: 48px;
    padding-top: 21px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
    border-radius: 4px;
    border: 1px solid #E2E2E2;
    box-sizing: border-box;
    color: #111111;
    font-size: 14px;
    line-height: 16px;
  }
  .basket-code__input::placeholder {
    color: transparent;
  }
  .basket-code__input:placeholder-shown + .basket-code__text {
    top: calc(50% - 8px);
    font-size: 14px;
    line-height: normal;
  }
  .basket-code__input:focus {
    outline: none;
    border: 1px solid #B30F97;
  }
  .basket-code__input:focus + .basket-code__text {
    font-size: 10px;
    line-height: normal;
    top: 8px;
  }
  .basket-code__input:hover {
    outline: none;
    border: 1px solid #B30F97;
  }
  .basket-code__input:hover + .basket-code__text {
    top: 8px;
    font-size: 10px;
    line-height: normal;
  }
  .basket-code__text {
    color: #C4C4C4;
    position: absolute;
    left: 20px;
    top: 8px;
    transition: 0.2s;
    font-size: 10px;
  }
  .basket-code__button {
    border-radius: 4px;
    background: var(--1-abaf-9, #175085);
    min-width: 150px;
    height: 48px;
    border: 1px solid #175085;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 115%;
    transition: 0.2s;
    cursor: pointer;
  }
  .basket-code__button:hover {
    background: transparent;
    color: #175085;
  }
  .basket-total {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
  .basket-total__row {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: space-between;
  }
  .basket-total__title {
    color: #111;
    font-size: 16px;
    line-height: 115%;
  }
  .basket-total__value {
    font-size: 22px;
    font-weight: 500;
    line-height: 115%;
  }
  .basket-total__value--sum {
    font-size: 22px;
    color: #111;
  }
  .basket-total__value--discount {
    color: #DD1D47;
    font-size: 19px;
    text-decoration: line-through;
  }
  .basket__submit {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    padding: 5px 10px;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    background-color: #B30F97;
    border: 1px solid #B30F97;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
  }
  .basket__submit:hover {
    background-color: #CB11AB !important;
    color: #FFFFFF !important;
    border: none !important;
  }
  @media screen and (max-width: 769px) {
    .basket__submit {
      font-size: 14px;
    }
  }

  .close_total-basket {
    width:100%;
  }

  @media screen and (max-width: 769px) {
    .close_total-basket {
      display:none;
    }
  }
  .basket__good {
    position:relative;
  }

  .basket-item-actions-remove {
    position:absolute;
    right:5px;
    top:5px;
    cursor:pointer;
  }
/* End */


/* Start:/local/components/vodoley/catalog.element/templates/detail/style.css?177624733512066*/
@charset "utf-8";

.complectCarousel__content {
    display: block;
}

.tns-nav {
    display: none;
}

.tab__footer {
    padding: 20px;
    border-top: 1px solid #efefef;
}

.tab__footer .buy_button {
    display: inline-block;
    margin-right: 20px;
}

.tab__footer .set__summary_info {
    display: inline-block;
}

.tab__footer .set__summary_info .set__summary_info__prices {
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
}

.tab__footer .set__summary_info .set__summary_info__prices .old_price {
    font-size: 19px;
    font-weight: normal;
    text-decoration: line-through;
    margin-left: 10px;
    color: #dd1d47;
}




.product-detail-popup .items {
    display: flex;
    font-size: 16px;
    flex-wrap: wrap;
    flex-direction: column;
}


.product-detail-popup .product__inner {
    border: none;
}

.product-detail-popup .section-title {
    font-size: 2em;
    padding: 0 0 10px;
}

.checkbox__input:checked ~ .checkbox__text {
    display: none;
}

.checkbox__text__added {
    display: none;
}

.checkbox__input:checked ~ .checkbox__text__added {
    display: inline-block;
}

.complectCarousel__content .product__priceSale {
    position: static;
    display: block;
}

.complectCarousel__content .product__priceSale .product__priceCurrency {
    font-size: 14px;
}

.radio__input:checked ~ .radio__text {
    display: none;
}

.radio__text__added {
    display: none;
}

.radio__input:checked ~ .radio__text__added {
    display: inline-block;
}

.detail_page_buy_button.processing {
    color: transparent;
}

.detail_page_buy_button.processing:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    background-color: transparent;
}

.product-detail-popup .product {
    width: 100%;
    max-width: 100%;
}

.product-detail-popup .product__inner {
    width: 100%;
    padding: 16px;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
    border-radius: 8px;
    flex-direction: row;
    max-width: 518px;
}

.product-detail-popup .product:not(:last-of-type) {
    margin-bottom: 16px;
}

.product-detail-popup .product__img__block {
    width: 200px;
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    flex-flow: column;
    align-self: stretch;
    padding: 0;
}

.product__info__block .product__info {

}

.product__info__block .product__title {
    font-size: 16px;
    margin-bottom: 8px;
    padding: 0;
}

.product-detail-popup .product__info {
    display: flex;
    padding: 0;
    flex: initial;
}

.product-detail-popup .btn {
    width: auto;
}

.product-detail-popup .product__price_actions {
}

.product-detail-popup .items .product__price {
    width: 100%;
    padding: 0;
}

.product-detail-popup .product__favoriteBtn {
    position: sticky;
    padding: 0;
    border: none;
}

.product-detail-popup .product__compareBtn {
    position: sticky;
    padding: 0;
    border: none;
}

.product_kit_btn.active:not(.remove) {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    padding: 9px 13px 9px 48px;
    position: relative;
    background-color: #fff2ca;
    white-space: nowrap;
}

.product_kit_btn.active:not(.remove):before {
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #1ab1f1;
}

.product_kit_btn.active:not(.remove):after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 15px;
    width: 8px;
    height: 13px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(
            45deg
    );
}


.product-detail-popup {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}

.product-detail-popup.active {
    width: 566px;
}

@media screen and (max-width: 566px){
	.product-detail-popup.active {
		width: 100%;
	}
}

.product-detail-popup a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.product-detail-popup .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.product-detail-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 0;
    z-index: 990;
    cursor: pointer;
    display: none;
}

.product-detail-overlay.active {
    display: block;
}

.app-overlay {
    margin-right: 566px;
    height: 100%;
}

.b-sliding-popup__header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 40px;
    height: 63px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgb(0 0 0 / 4%);
    z-index: 3;
}

.b-sliding-popup__close-btn {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: none;
    color: #9a9fa8;
    font-size: 15px;
    padding: 0;
    display: flex;
    background: none;
}

.b-sliding-popup__title {
    font-size: 16px;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b-sliding-popup__body {
    width: 100%;
    height: auto;
    background-color: #fbfbfb;
}

.b-sliding-popup__header + .b-sliding-popup__body {
    position: fixed;
    margin-top: 0;
    height: calc(100% - 63px);
    background-color: #fff;
}

.b-custom-scrollbar__view {
    position: absolute;
    inset: 0px;
    overflow: scroll;
    margin-right: -17px;
    margin-bottom: -17px;
    z-index: 1;
    flex-grow: 1;
}

.b-custom-scrollbar__view .items {
    padding: 24px;
}

.product__info__block {
    display: flex;
    flex-flow: column;
    align-self: stretch;
}

@media screen and (max-height: 450px) {
    .product-detail-popup {
        padding-top: 15px;
    }
}

.scheme-btn-text {
    position: relative;
    padding: 3px 0 3px 36px;
}

.scheme-btn-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: block;
    background: no-repeat 50%;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='2' fill='%236F7682'/%3E%3Cpath d='M19.97 17.039l-.908-3.389a.828.828 0 00-1.599.429l.392 1.465-5.029-2.905V6.827L13.898 7.9a.828.828 0 101.17-1.171l-2.457-2.46a.834.834 0 00-1.204-.021l-2.479 2.48a.828.828 0 101.17 1.172l1.073-1.073v5.812l-5.03 2.905.393-1.465a.829.829 0 10-1.599-.43l-.9 3.36a.834.834 0 00.585 1.055l3.385.908a.828.828 0 00.429-1.6l-1.465-.393L12 14.073l5.029 2.906-1.465.393a.828.828 0 00.429 1.6l3.357-.9a.825.825 0 00.62-1.033z' fill='%23fff'/%3E%3C/svg%3E");
}

.detail-right-block {
    width: 100%;
    padding: 18px;
    vertical-align: top;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: #f1fafe;
    margin-top: 15px;
}

.detail-right-block .scheme-btn-text:not(:first-child) {
    display: none;
}

.detail-left-block h2{
    font-size: 22px;
    font-weight: 500;
}

.detail-brand-text {
    color: #64707b;
}

.products-slider .product--carousel {
    margin-right: auto;
    max-width: 100%;
}

.products-slider {
    margin-bottom: 50px;
}

.price-text {
    padding: 18px;
    font-size: 12px;
}

.price-text__item {
    display: block;
    margin-bottom: 5px;
}
.brand-detail {
	padding-top: 15px;
	padding-bottom: 50px;
}

.brand-detail__categories {
	margin-top: 60px;
}

.brand-detail__collections {
	margin-top: 60px;
}
.other-brand-goods{
	padding: 30px 0px 60px;
}
span.other_brand_product {
        padding: 9px 25px;
        font-size: 14px;
        line-height: 20px!important;
        border-radius: 4px;
        min-height: 35px;
        width: 240px!important;
}
.section_other_brand_button{
	text-align: center;
	margin: 10px 0px 0px;
}

.section_other_collection_button{
	text-align: center;
	margin: 25px 0px;
}

.other_brand_head{
	text-align: left;
}
.blue_block{
	background-color: rgb(26, 177, 241, 0.1);
	margin-bottom: 50px;
}


/* Стили кнопок */

.collection {
	padding-top: 10px;
	padding-bottom: 50px;
}

.collection__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.collection__title {
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	font-size: 26px;
	line-height: 140%;
	color: #111111;
}

.collection__images {
	margin-top: 60px;
}

.collection__desc {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 160%;
	color: #000000;
	margin-top: 40px;
}

.collection__products {
	margin-top: 37px;
}

.collection__collections {
	margin-top: 80px;
}

.collection-brand {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	min-width: 290px;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	text-decoration: none;
}

.collection-brand__img {
	max-width: 92px;
	max-height: 40px;
}

.collection-brand__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.collection-brand__title {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 115%;
	color: #000000;
}

@media screen and (max-width: 769px) {
	.collection-brand {
		min-width: unset;
	}

	.collection-brand__img {
		max-width: 70px;
		max-height: 30px;
	}

	.collection-brand__title {
		font-size: 16px;
	}
}

@media screen and (max-width: 576px) {
	.collection__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.collection__brand {
		margin-top: 20px;
	}

	.collection__images {
		margin-top: 40px;
	}

	.collection__products {
		margin-top: 40px;
	}

	.collection__collections {
		margin-top: 50px;
	}
}

.collection-products__title {
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	font-size: 26px;
	line-height: 140%;
	color: #111111;
}

.collection-products__triggers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}

.collection-products__trigger {
	border: 1px solid #64707B;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 115%;
	color: #64707B;
	padding: 7.5px 15px;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	margin-bottom: 15px;
}

.collection-products__trigger:not(:last-child) {
	margin-right: 15px;
}

@media screen and (max-width: 576px) {
	.blue_block .product{
		display: none;
	}
	.blue_block .product:nth-child(1){
		display: block;
	}
	.blue_block .product:nth-child(2){
		display: block;
	}
	.blue_block .product:nth-child(3){
		display: block;
	}
	.blue_block .product:nth-child(4){
		display: block;
	}
}

.props_item_name{
	color: #64707b;
}
.props_item{
	font-size: 14px;
	margin: 5px 0px 5px 0px;
}
.similar-goods .section__title{
	text-align: left;
}

.similar-goods .product__img{
	max-width: 94%;
}

.required-properties a{
	font-size: 13px;
}

.similar-goods .products-slider{
	padding-left: 1px;
}
.blue_block .products-slider{
	padding-left: 1px;
}


/* End */
/* /local/components/vodoley/sale.basket.basket/templates/basket-side/style.css?17762473379140 */
/* /local/components/vodoley/catalog.element/templates/detail/style.css?177624733512066 */
