

/* Start:/local/templates/exeed2023/css/UI.css?174843667312850*/
/* UI COMPONENTS */

/* BUTTONS */
.vi-btn-line {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border: none;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    padding: 15px 24px;
    width: 100% ;
    color: white!important;
    transition: .3s ease-out;

}
.vi-btn-line svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    fill: none;
    -o-object-fit: cover;
    object-fit: cover;
    stroke: white;
}
.vi-btn-line path {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 1;
    -webkit-transition: stroke-dashoffset .3s ease-in-out;
    transition: stroke-dashoffset .3s ease-in-out;
    stroke: white;
}
.vi-btn-line.black {
    color: var(--black) !important;
}
.vi-btn-line.black svg {
    stroke: var(--black);
}
.vi-btn-line.black path {
    stroke: var(--black);
}

/*slider bullets*/
.vi-slider-bullet {
    width: 24px!important;
    height: 24px!important;
    display: flex!important;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: .3s ease-out;
    border: none!important;
    border-radius: 50%;
    margin: 0 4px!important;
    background: transparent!important;
    position: relative;
    transform: rotate(-90deg);
}
.swiper-pagination-bullet {
    opacity: 0.5;
}
.vi-slider-bullet:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transition: .3s ease-out;
    opacity: 1;
    transition: .3s ease-out;
    background: white;
}
.vi-slider-bullet:after {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 100%;
    border: 1px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    transition: .3s ease-out;
}
.vi-slider-bullet svg {
    position: absolute;
    top: 0;
    left: 0;
}
.vi-slider-bullet svg circle {
    stroke-dasharray: 70 70;
    stroke-dashoffset: -70;
}

.vi-slider-bullet.swiper-pagination-bullet-active:after  {
    border-color:rgba(255,255,255,.2)
}
.vi-slider-bullet.swiper-pagination-bullet-active svg circle {
    animation: dash 5s linear;
}
@keyframes dash {
    from {
        stroke-dashoffset: -70;
    }
    to {
        stroke-dashoffset: 0;
    }
}
.vi-slider-bullet.swiper-pagination-bullet-active:before {
    opacity: 1;
}
/* slider bullets end */
/* BUTTONS END */

/* text */
/* text end */

/* form components */
/* form components end */

/* sliders */

/* sliders end */

/*labels*/
.vi-product-label {
	display: inline-flex;
	align-items: center;
	padding: 2px 4px;
	background: var(--black);
	color: white!important;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	/*text-transform: lowercase;*/
	margin-bottom: 2px;
}
.vi-product-label::first-letter {
	/*text-transform: uppercase;*/
}
a.vi-product-label {
	transition: .3s ease-out;
}
/*labels end*/

/*product item card*/
.vi-product-item-wrapper {
	width: 100%;
	max-width: 152px;
	background: white;
	position: relative;
	display: flex;
	flex-direction: column;
    padding-bottom: 80px;
}
.vi-product-item-wrapper .product-img-wrapper {
	width: 100%;
	height: 166px;
	background: #f4f5f8;
	padding: 9px 8px;
	position: relative;
    overflow: hidden;
}
.vi-product-item-wrapper .product-img-wrapper .labels {
	position: absolute;
	top: 9px;
	left: 8px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 3;
}
.vi-product-item-wrapper .product-img-wrapper a,
.vi-product-item-wrapper .product-img-wrapper .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.vi-product-item-wrapper .product-img-wrapper .product-img {
	position: absolute;
	width: 100%;
    height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    mix-blend-mode: darken;
}
.vi-product-item-wrapper .product-img-wrapper .swiper-wrapper {
    align-items: center;
}
.vi-product-item-wrapper .product-img-wrapper .swiper-pagination {
    position: absolute;
    width: 95%;
    height: 100%;
    top: 0;
    left: 2.5%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    transition: .3s ease-out;
    opacity: 0;
    visibility: hidden;
    /*background: red;*/
}
.vi-product-item-wrapper:hover .product-img-wrapper .swiper-pagination {
    opacity: 1;
    visibility: visible;
}
.vi-product-item-wrapper .product-img-wrapper .swiper-pagination .swiper-pagination-bullet {
    height: 100%;
    flex: 1;
    border-radius: 0;
    height: 100%;
    position: relative;
    background: none;
    display: block;
}

.vi-product-item-wrapper .product-img-wrapper .swiper-pagination .swiper-pagination-bullet:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: rgba(37, 41, 43, 0.20);
    transition: .3s ease-out;
    left: 0;
    bottom: 10px;
    position: absolute;
}
.vi-product-item-wrapper .product-img-wrapper .swiper-pagination .swiper-pagination-bullet-active:after {
    background: rgba(37, 41, 43, 1);
}

.vi-product-item-wrapper .product-img-wrapper .product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
    height: 117px;
    mix-blend-mode: multiply;
    object-position: center;
}
.vi-product-item-wrapper .product-item-detail-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex: 1;
    padding: 12px 0;
}
.vi-product-item-wrapper .product-price-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
    justify-content: space-between;
}

.vi-product-item-wrapper .price-container {
    display: flex; /* Используем flex для внутреннего контейнера с ценами */
}

.vi-product-item-wrapper .more-button-product-section {
    height: 16px;
    width: 16px;
    /*border: 1px solid black;*/
    order: 2;
    margin-right: 3px;
    /*display: block;*/
    /*display: none;*/
    display: block;
    transition: .3s ease-out;
    opacity: 0;
}

.vi-product-item-wrapper:hover .more-button-product-section {

    /*display: block;*/
    opacity: 1;
}

.vi-product-item-wrapper .product-price-old,
.vi-product-item-wrapper .product-price {
    /*flex-grow: 1; !* Цены занимают доступное пространство *!*/
    order: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
}
.vi-product-item-wrapper .product-price span {
    display: none;
}



.vi-product-item-wrapper .product-price-wrapper .product-price-old {
	margin: 0 12px 0 0;
	display: inline-flex;
	color: rgba(37, 41, 43, 0.50);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	text-decoration-line: line-through;
}
.vi-product-item-wrapper .product-price-wrapper .product-price {
	color: var(--black);
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 100%; /* 14px */
	display: inline-flex;
	margin: 0;
}
.vi-product-item-wrapper .product-price-wrapper .product-price span {
	color: var(--black);
	font-size: 16px;
	font-style: normal;
	font-weight: 800;
	line-height: 100%; /* 14px */
}
/* нет вналичии */
.vi-product-item-wrapper .product-price-wrapper.product-price-wrapper-notbay{
    justify-content: space-between;
    align-content: flex-start;
}
.vi-product-item-wrapper .product-price-wrapper.product-price-wrapper-notbay .product-price-notbay{
    color: var(--gray);
    width: 100%;
    text-align: center;
    margin-top: 0px;
    font-size: 16px;
}
/* конец нет вналичии */

.vi-product-item-wrapper .product-name {
	color: var(--blackall);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%;
	text-decoration: none;
	transition: .3s ease-out;
	padding: 0  0 12px 0;
	display: flex;
}
.vi-product-item-wrapper a.product-name:hover {
	opacity: .7;
}
.vi-product-item-wrapper .product-description-hidden {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
    padding: 0 0 12px 0;
}
.vi-product-item-wrapper .product-description-hidden .sizes {
    color: rgba(14, 18, 20, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    display: block;
    margin-bottom: 8px;
}
.vi-product-item-wrapper .product-description-hidden .sizes:last-child{
    margin-bottom: 0px;
    margin-top: 10px;
}
.vi-product-item-wrapper .product-description-hidden .colors {
    display: flex;
    overflow: auto;
}
.vi-product-item-wrapper .product-description-hidden .colors::-webkit-scrollbar {
    display: none;
}
.vi-product-item-wrapper .product-description-hidden .color {
    border: 1px solid rgba(14, 18, 20, 0.30);
    width: 24px;
    height: 24px;
    margin-right: 4px;
    display: block;
    flex-shrink: 0;
}
.vi-product-item-wrapper .product-description-hidden a.color {
    transition: .3s ease-out;
}
.vi-product-item-wrapper .product-description-hidden a.color:hover {
    opacity: .7;
}
.vi-product-item-wrapper:hover .product-description-hidden {
    opacity: 1;
    visibility: visible;
}

/*product item card end*/


/*slider nav with title*/
.slider-nav-with-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.slider-nav-with-title .title {
    width: calc(100% - 128px);
    color: var(--blackall);
}
.slider-nav-with-title .slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 104px;
}
.slider-nav-with-title .swiper-button-prev,
.slider-nav-with-title .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-out;
    width: 40px;
    height: 40px;
    background: #fafafa;
    cursor: pointer;
    position: static;
}
.slider-nav-with-title .swiper-button-prev:after,
.slider-nav-with-title .swiper-button-next:after {
    display: none;
}
.slider-nav-with-title .swiper-button-prev {
    transform: rotate(-180deg);
}
.slider-nav-with-title .swiper-button-prev svg,
.slider-nav-with-title .swiper-button-next svg {
    width: 24px;
    height: 24px;
}
/*slider nav with title end*/



/*form elements*/
.vi-consultation-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.vi-consultation-block .title {
    margin: 0 0 20px 0;
    font-size: 24px;

    line-height: 110%;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}
.vi-consultation-block * {
    color: var(--blackall);
    width: initial;
}
/*
#vi-consultation-form {
    width: 90%;
    max-width: 580px;
}
#vi-consultation-form form {
    width: 480px;
}*/
#vi-consultation-form .vi-btn-line {
    /*width: initial;*/
}
.vi-input, .vi-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #25292B!important;
    background: #FFF;
    color: var(--blackall);
    font-size: 0.778rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: block;
    outline: none;
}
.vi-textarea{
    height: 7.667rem;
}
input::placeholder, textarea::placeholder, select::placeholder {
    color: #A3A5A6;
}

/*form elements end*/

/* UI COMPONENTS END */




/* LAYOUT */
.vi-flex {
    display: flex;
    flex-wrap: wrap;
}
.jc-c {
    justify-content: center;
}
.jc-fs {
    justify-content: flex-start;
}
.jc-fe {
    justify-content: flex-end;
}
.ai-c {
    align-items: center;
}
.ai-fs {
    align-items: flex-start;
}
.ai-fe {
    align-items: flex-end;
}
.fd-c {
    flex-direction: column;
}
/* LAYOUT END */

@media (min-width: 768px) {
    .vi-consultation-block .title {
        font-size: 40px;
    }
	.vi-product-item-wrapper {
		max-width: 368px;
	}

}

@media (min-width: 993px) {
	/*labels*/
	.vi-product-label {
		padding: 6px 8px;
		font-size: 14px;
		margin-bottom: 4px;
	}
	/*labels end*/

	/*product item card*/

    .vi-product-item-wrapper .product-item-detail-wrapper,
    .vi-product-item-wrapper .product-description-hidden{
        padding: 16px 0px 0px 0px;
    }
	.vi-product-item-wrapper .product-img-wrapper {
		height: 400px;
	}
	.vi-product-item-wrapper .product-img-wrapper .product-img {
		position: absolute;
		width: 100%;

	}
    .vi-product-item-wrapper .product-img-wrapper .product-img img {
        height: 100%;
        object-fit: contain;
    }
    .vi-product-item-wrapper .product-price-wrapper .product-price-old,
	.vi-product-item-wrapper .product-price-wrapper .product-price {
		font-size: 16px;
	}
	.vi-product-item-wrapper .product-price-wrapper .product-price-old {
		margin-right: 16px;
	}
	/*product item card end*/
}

/* End */


/* Start:/local/templates/exeed2023/components/bitrix/sale.basket.basket/vilka_basket/style.css?17037694146956*/

.vi-basket-page * {
	color: var(--black);
}
.vi-basket-title {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 28px;
}
.vi-basket-title h1 {
	margin-bottom: 12px;
}
.vi-basket-title .sub {
	color: rgba(14, 18, 20, 0.70);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
}
.vi-basket-page .page-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 56px;
}
.vi-basket-page .page-grid > * {
	min-width: 100%;
}
.basket-items-list-wrapper,
.basket-items-list-header,
.basket-items-list {
	width: 100%;
}
.basket-items-list-header{
	display: grid;
	grid-template-columns: 4fr 1fr 2fr 2fr auto;
	/*display: none;*/
}


.basket-items-list {
	width: 100%;
	border-top: 1px solid var(--black);
	padding: 28px 0;
	border-bottom: 1px solid var(--black);
	margin-bottom: 36px;
}
.basket-items-list:hover {
	border-top: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}
.basket-items-list-item-descriptions {
	display: grid;
	grid-template-columns: 62px 1fr;
	grid-gap: 17px;
	width: 100%;
	padding-right: 50px;
	margin-bottom: 20px;
	align-items: center;
}
.basket-items-list-item-descriptions img {
	width: 100%;
}
.basket-item-info-name-link span {
	color: #0E1214;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal; /* 25.6px */
	text-transform: lowercase;
	display: inline-block;
}
.basket-item-info-name-link span:first-letter {
	text-transform: uppercase!important;
}

.basket-coupon-alert-section {
	margin-bottom: 0.667rem  /* 12/18 */
}
.basket-coupon-alert-section * {
	font-size: 0.889rem  /* 16/18 */;
	line-height: normal;
}
.basket-coupon-alert-section .close-link {
	text-decoration: underline;
	cursor: pointer;
}

.basket-item-block-properties {
	padding-top: 0.667rem  /* 12/18 */;
}
.basket-item-property-custom * {
	font-size: 0.778rem  /* 14/18 */;
	color: rgba(14, 18, 20, 0.50);
}
.basket-item-property-custom {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 12px;
}
.basket-item-price-difference,
.basket-item-price-difference *{
	font-size: 0.778rem  /* 14/18 */;
	color: rgba(14, 18, 20, 0.50);
}
.basket-item-price-old,
.basket-item-price-old-text{
	display: none;
}

.basket-coupon-block-total-price-old {
	text-decoration: line-through;
	font-size: 0.778rem  /* 14/18 */;
	margin-bottom: 0.333rem  /* 6/18 */;
	color: rgba(14, 18, 20, 0.70);
}
.basket-coupon-block-total-price-difference,
.basket-coupon-block-total-price-difference * {
	font-size: 0.778rem  /* 14/18 */;
	color: rgba(14, 18, 20, 0.70);
}

.basket-items-list-item-container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.basket-items-list-item-container:last-child {
	margin-bottom: 0;
}
.basket-item-actions-remove {
	position: absolute;
	width: 24px;
	height: 24px;
	cursor: pointer;
	top: 0;
	right: 0;
}
.basket-item-block-amount {
	display: grid;
	grid-template-columns: 32px 58px 32px;
	grid-gap: 8px;
}
.basket-item-amount-btn-minus,
.basket-item-amount-btn-plus {
	display: block;
	cursor: pointer;
	transition: .3s ease-out;
}
.basket-item-amount-btn-minus:hover,
.basket-item-amount-btn-plus:hover {
	opacity: .7;
}
.basket-item-amount-filed {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #25292B;
	background: #FFF;
	height: 32px;
	width: 100%;
	text-align: center;
}
.basket-item-amount-filed:hover {
	border: 1px solid #25292B;
}
.basket-item-price-current,
.basket-items-list-header {
	display: none;
}
.basket-item-price-current-text {
	color: #25292B;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 800;
	line-height: 160%; /* 25.6px */
}


.total-price-grid {
	display: flex;
	justify-content: space-between;
	color: #0E1214;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 18px */
	margin-bottom: 12px;
}
.total-price-grid > div {
	display: grid;
	text-align: right;
}
.basket-coupon-block-total-price-current {
	color: #0E1214;
	font-size: 1.111rem  /* 20/18 */;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	order: -1;
	margin-bottom: 0.333rem  /* 6/18 */;
}
.total-price-grid.nds {
	color: rgba(14, 18, 20, 0.70);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 22.4px */
	display: none;
}
.nds-price {
	color: rgba(14, 18, 20, 0.70);
	text-align: right;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 160%; /* 22.4px */
}
.coupon-title {
	width: 100%;
	margin-bottom: 10px;
	color: #0E1214;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 14px */
	padding-top: 0.667rem  /* 12/18 */;
}
.coupon-input {
	border: 1px solid #25292B;
	background: #FFF;
	padding: 10px 15px;
	display: block;
	/*max-width: 190px;*/
	width: 100%;
}
.coupon-input:hover,
.coupon-input:focus{
	border: 1px solid #25292B;
}
.coupon-input::placeholder {
	color: #A3A5A6;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
}
.basket_disclamer {
	display: none;
	font-size: 0.889rem  /* 16/18 */;
	padding-top: 1.333rem  /* 24/18 */;
}
.coupon-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.coupon-form .vi-btn-line {
	/*max-width: 45%;*/
	display: none;
}
.coupon-input {
	margin: 0 0 10px 0;
}
.vi-btn-line {
	margin-bottom: 10px;
	width: initial;
}
.coupon-info-link {
	display: none;
	width: 100%;
	color: #0E1214;
	font-size: 0.889rem  /* 16/18 */;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 22.4px */
	text-decoration-line: underline;
	transition: .3s ease-out;
	margin-bottom: 36px;
}
.basket-item-block-amount.disabled {
	opacity: 0!important;
	pointer-events: none;
}
@media (min-width: 993px) {
	.vi-basket-page .page-grid {
		grid-template-columns: 3fr 1.2fr;
	}
	.vi-basket-title {
		flex-direction: row;
		margin-bottom: 36px;
	}

	.vi-basket-title h1 {
		margin: 0 24px 0 0;
	}
	.basket-item-price-current{
		display: block;
	}
	.basket-items-list-header {
		padding-bottom: 16px;
	}
	.basket-items-list-header,
	.basket-items-list-item-container {
		display: grid;
		grid-template-columns: 4fr 1fr 2fr 2fr 0.3fr;
		grid-gap: 12px;
	}
	.basket-items-list-header * {
		color: rgba(14, 18, 20, 0.50);
		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 100%; /* 14px */
	}
	.basket-items-list-item-descriptions {
		margin: 0;
		padding: 0;
	}
	.basket-items-list {
		padding: 36px 0;
	}
	.basket-item-actions-remove {
		position: static;
	}
	.coupon-info-link {
		margin-bottom: 24px;
	}
	.basket-items-list-item-container {
		margin-bottom: 42px;
	}
}





.symbol_ruble { font-family: 'rubleBitrix', Arial, sans-serif }

.coupons_desc {
	display: none;
	padding-top: 30px;
	margin-bottom: 15px;
	width: 100%;
}
.coupons_desc div {
	padding-top: 30px;
	margin-bottom: 15px;
	width: 100%;
	color: var(--black);
	font-size: 0.9rem;
}
/* End */
/* /local/templates/exeed2023/css/UI.css?174843667312850 */
/* /local/templates/exeed2023/components/bitrix/sale.basket.basket/vilka_basket/style.css?17037694146956 */
