#product-in .wrp {
	justify-content: space-between;
	align-items: flex-start;
}
#product-in .tooltip-content:before {
    content: "";
    width: 12px;
    height: 6px;
    background: url(../img/icons/Corner.svg) no-repeat center center / 100%;
    position: absolute;
    box-shadow: 0px 4px 20.1px 0px rgba(62, 59, 52, 0.08);
}
.product-in-gallery {
	width: 44.72%;
	position: relative;
}
.product-in-gallery .product-labels {
	top: 24px;
	left: 24px;
}
.product-in-gallery-slider {
	height: 570px;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 12px;
}
.product-in-gallery-slider .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-in-gallery-slider .swiper-slide a {
    display: flex;
    height: 100%;
}
.product-in-gallery-slider .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
    margin: auto;
}
.product-in-gallery-bottom {
	align-items: center;
	justify-content: space-between;
}
.product-in-gallery-prev,
.product-in-gallery-next {
	width: 24px;
	height: 24px;
	cursor: pointer;
	user-select: none;
}
.product-in-gallery-prev svg rect,
.product-in-gallery-next svg rect {
	transition: .4s;
}
.product-in-gallery-prev.swiper-button-disabled svg rect,
.product-in-gallery-next.swiper-button-disabled svg rect {
	fill: var(--Neutral-200);
}
.product-in-gallery-prev:not(.swiper-button-disabled):hover svg rect,
.product-in-gallery-next:not(.swiper-button-disabled):hover svg rect {
	fill: var(--Primary-1000);
}
.product-in-gallery-thumbs {
	width: calc(100% - 48px - 16px);
}
.product-in-gallery-thumbs .swiper-slide {
	height: 100px;
	transition: .4s;
	border-radius: 4px;
	border: 2px solid transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.product-in-gallery-thumbs .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	padding: 8px;
	border-radius: 4px;
}
.product-in-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
	border: 2px solid var(--Primary-1000);
}

.product-in-info {
	width: 33.22%;
}
.product-in-info .h3 {
	margin-bottom: 20px;
}
.product-in-top {
	align-items: flex-start;
	position: relative;
}
.product-in-top .stock {
	width: max-content;
	padding: 10px 16px;
	border-radius: 4px;
	background: var(--Primary-100);
}
.product-in-top .stock.in-stock {
	padding: 10px 16px 10px 40px;
	background: var(--Primary-100) url("../img/product/product-stock-check.svg") no-repeat center left 10px;
}
.product-in-top .stock.no-stock {
	background: var(--Neutral-100);
}
.product-in-top .add-in-wishlist {
	font-weight: 500;
	padding: 5px 0 5px 36px;
	background: url("../img/icons/product-wishlist-icon.svg") no-repeat center left;
	margin-left: 20px;
	margin-top: 4px;
}
.product-in-top .add-in-wishlist:hover {
	color: var(--Primary-1000);
	background: url("../img/icons/product-wishlist-active-icon.svg") no-repeat center left;
}
.product-in-top .product-logo {
	margin-left: auto;
	max-height: 75px;
	position: absolute;
	top: 0;
	right: 0;
}
.product-logo-mobile {
	display: none;
}
.product-in-id {
	gap: 8px;
	align-items: center;
	margin: 24px 0 12px 0;
}
.product-in-id span {
	color: var(--Neutral-0);
	padding: 4px 6px;
	border-radius: 4px;
	background: var(--Neutral-1000);
}
.product-in-har li {
	align-items: center;
	margin-bottom: 12px;
}
.product-in-har li a {
	color: var(--Neutral-500);
    padding-left: 5px;
}
.product-in-har li a:hover {
	color: var(--Neutral-1000);
}
.product-in-select {
	gap: 8px;
	row-gap: 8px;
	margin-bottom: 12px;
}
.product-in-select .head {
	width: 100%;
	margin-bottom: 4px;
}
.product-in-select .item {
	position: relative;
	display: flex;
	justify-content: center;
}
.product-in-select .item-name span {
	display: block;
	padding: 7px 16px;
	font-weight: 500;
	border-radius: 4px;
	border: 1px solid var(--Neutral-200);
	cursor: pointer;
}
.product-in-select .item-name input {
	display: none;
}
.product-in-select .item-name input:checked + span {
	border: 1px solid var(--Primary-1000);
	background: var(--Primary-100);
}
.product-in-select .item-name:hover span {
	border: 1px solid #8F939F;
}
.product-in-select .item-tooltip {
	position: absolute;
	width: 151px;
	padding: 20px 0;
	border-radius: 5px;
	background: var(--Neutral-0);
	box-shadow: 0px 4px 20.1px 0px rgba(62, 59, 52, 0.08);
	text-align: center;
	display: none;
	z-index: 4;
}
.product-in-select .item-tooltip-img {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 111px;
	height: 111px;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto 16px auto;
}
.product-in-select .item-tooltip-img img {
	max-width: 100%;
	max-height: 100%;
}
.product-in-select .item-tooltip:before {
	content: "";
	width: 12px;
	height: 6px;
	background: url("../img/icons/Corner.svg") no-repeat center center / 100%;
	position: absolute;
	bottom: -6px;
	left: calc(50% - 6px);
	box-shadow: 0px 4px 20.1px 0px rgba(62, 59, 52, 0.08);
}
.product-in-select .item-tooltip.bottom:before {
	bottom: auto;
	top: -6px;
	left: calc(50% - 6px);
	transform: rotate(180deg);
}

.product-in-sidebar {
	width: 19.16%;
}
.product-in-price {
	margin-bottom: 16px;
	align-items: flex-end;
}
.product-in-price .main-price {
	font-size: 24px;
	font-weight: 500;
	margin-right: 5px;
}
.product-in-price .main-price span {
	font-size: 18px;
}
.product-in-price .old-price {
	color: var(--Neutral-500);
	margin-right: 20px;
	padding-bottom: 2px;
	font-weight: 500;
	text-decoration: line-through;
}
.product-in-price .sale-value {
	border-radius: 4px;
	background: var(--Primary-700);
	padding: 4px 8px;
	color: var(--Neutral-0);
}
.product-in-value {
	margin-bottom: 16px;
	border-radius: 6px;
	background: var(--Primary-100);
	padding: 8px;
	justify-content: space-between;
	gap: 8px;
}
.product-in-value .value-select {
	width: calc(100%/3 - 16px/3);
}
.product-in-value .value-select input {
	display: none;
}
.product-in-value .value-select > span {
	display: block;
	width: 100%;
	padding: 8px;
	border-radius: 4px;
	color: var(--Neutral-600);
	cursor: pointer;
	text-align: center;
	font-weight: 500;
}
.product-in-value .value-select input:checked + span {
	background: #FFF;
	color: var(--Neutral-1000);
}
.product-in-value .counter {
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 6px;
	border-radius: 4px;
	background: #FFF;
}
.product-in-value .counter-minus,
.product-in-value .counter-plus {
	width: 32px;
	height: 32px;
	cursor: pointer;
	border-radius: 4px;
	background: var(--Primary-100);
	font-weight: 500;
	align-items: center;
	justify-content: center;
	user-select: none;
}
.product-in-value .counter-minus:not(.disabled):hover,
.product-in-value .counter-plus:not(.disabled):hover {
	background: var(--Primary-700);
}
.product-in-value .counter-minus:not(.disabled):hover path,
.product-in-value .counter-plus:not(.disabled):hover path {
	fill: var(--Neutral-0);
}
.product-in-value .counter-minus.disabled,
.product-in-value .counter-plus.disabled {
	background: transparent;
}
.product-in-value .counter-minus.disabled path,
.product-in-value .counter-plus.disabled path {
	fill: var(--Neutral-500);
}
.product-in-value .counter-value {
	border: none;
	background: transparent;
	width: calc(100% - 64px - 16px);
	text-align: center;
	padding: 6px;
}
.product-in-other {
	margin-bottom: 28px;
	justify-content: space-between;
}
.product-in-other .value-stock {
	gap: 6px;
}
.product-in-other .value-stock-label input {
	display: none;
}
.product-in-other .value-stock-label span {
	padding-left: 34px;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.product-in-other .value-stock-label span:before {
	content: "";
	width: 22px;
	height: 22px;
	background: url("../img/icons/checkbox.svg") no-repeat center center / cover;
	position: absolute;
	left: 0;
	filter: grayscale(1) invert(.3);
	transition: .4s;
	top: -2px;
}
.product-in-other .value-stock-label span:after {
	content: "";
	width: 22px;
	height: 22px;
	background: url("../img/icons/checkbox-active.svg") no-repeat center center / cover;
	position: absolute;
	left: 0;
	opacity: 0;
	top: -2px;
	transition: .4s;
}
.product-in-other .value-stock-label input:checked + span:after {
	opacity: 1;
}

.product-in-other .size {
	gap: 6px;
}
.product-in-other .size > p {
	font-weight: 500;
}
.product-in-other .size > p span {
	padding-left: 3px;
}
.product-in-other .tooltip {
	top: -2px;
}
.product-in-final-price {
	margin-bottom: 12px;
	color: var(--Neutral-600);
	font-weight: 500;
	gap: 8px;
	align-items: flex-end;
}
.product-in-final-price span {
	font-size: 20px;
	font-weight: 500;
}
.product-in-add-to-cart {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	width: 100%;
	border-radius: 4px;
	text-transform: uppercase;
	background: var(--Neutral-1000);
}
.product-in-add-to-cart.default-button:hover {
	background: var(--Neutral-700);
}
.product-in-one-click {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	margin: 10px 0 28px 0;
	font-weight: 700;
	border-radius: 4px;
}
.product-in-adva {
	justify-content: space-between;
	border-radius: 4px;
	background: var(--Neutral-0);
	box-shadow: 0px 4px 45.2px 0px rgba(62, 59, 52, 0.05);
	margin-bottom: 16px;
	padding: 16px;
}
.product-in-adva .item {
	width: max-content;
	text-align: center;
	text-transform: uppercase;
}
.product-in-adva .item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	margin: 0 auto 8px auto;
}
.product-in-adva .item ~ div[data-tippy-root] .text-2.light-text {
	margin: 10px 0;
}
.product-in-adress {
	border-radius: 4px;
	background: var(--Neutral-0);
	box-shadow: 0px 4px 45.2px 0px rgba(62, 59, 52, 0.05);
	padding: 16px;
}
.product-in-adress .text-1 {
	margin-bottom: 12px;
}
.product-in-adress .adress {
	padding-left: 20px;
	background: url("../img/icons/adress-icon.svg") no-repeat top left;
	font-weight: 300;
	margin-bottom: 8px;
}
.product-in-adress .adress + p:not(.adress) {
	font-weight: 300;
	margin-bottom: 12px;
	color: var(--Neutral-600);
}
.product-in-adress .adress + p:not(.adress) a,
.product-in-adress .adress a {
	font-weight: 300;
	color: var(--Neutral-600);
}
.product-in-adress .link {
	padding: 6px 28px 6px 0px;
	position: relative;
	background: url("../img/icons/link-arrow.svg") no-repeat right 4px center;
}
.product-in-adress .link:hover {
	color: var(--Primary-1000);
	background: url("../img/icons/link-arrow-active.svg") no-repeat right 0 center;
}
.product-in-adress.mobile {
	display: none;
}

/* Купить в один клик */

.one-click-info {
	margin-bottom: 24px;
	justify-content: space-between;
}
.one-click-info img {
	width: 111px;
	height: 90px;
}
.one-click-info .info {
	width: calc(100% - 111px - 12px);
}
.one-click-info .info .cat {
	color: var(--Primary-1000);
	font-weight: 500;
	margin-bottom: 4px;
}
.one-click-info .info .name {
	font-weight: 500;
	margin-bottom: 16px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.one-click-info .price span:nth-child(2) {
	padding: 0 8px;
}
.one-click-info .price-value {
	font-weight: 500;
}

/* тултипы */

#box-tooltip ~ div[data-tippy-root] .tippy-box {
	max-width: 416px !important;
}
#stock-tooltip ~ div[data-tippy-root] .tippy-box {
	max-width: 484px !important;
}
#adva-tooltip-1 ~ div[data-tippy-root] .tippy-box {
	max-width: 360px !important;
}

@media (max-width: 1680px) {
	.product-in-gallery {
		width: calc(100% - 407px - 345px - 24px - 24px);
	}
	.product-in-info {
		width: 407px;
	}
	.product-in-sidebar {
		width: 345px;
	}
	.product-in-top .product-logo {
		display: none;
	}
	.product-logo-mobile {
		display: block;
		margin-top: 40px;
		max-height: 75px;
	}
}
@media (max-width: 1439px) {
	.product-in-gallery {
		width: 100%;
		display: flex;
		justify-content: space-between;
		margin-bottom: 28px;
	}
	.product-in-gallery-bottom {
		width: 80px;
		height: 425px;
		display: block;
	}
	.product-in-gallery-slider {
		width: calc(100% - 80px - 12px);
		height: 425px;
	}
	.product-in-gallery-bottom .product-in-gallery-prev {
		transform: rotate(90deg);
		margin: 0 auto 8px auto;
	}
	.product-in-gallery-bottom .product-in-gallery-next {
		transform: rotate(090deg);
		margin: 8px auto 0 auto;
	}
	.product-in-gallery-thumbs .swiper-slide img {
		padding: 6px;
	}
	.product-in-gallery-thumbs {
		height: calc(425px - 64px);
		width: 100%;
	}
	.product-in-info {
		width: calc(100% - 356px - 24px);
	}
	.product-in-sidebar {
		width: 356px;
	}
	.product-in-other {
		margin-bottom: 20px;
	}
	.product-in-one-click {
		margin: 10px 0 20px 0;
	}
	.product-in-adress:not(.mobile) {
		display: none;
	}
	.product-in-adress.mobile {
		width: 100%;
		display: block;
		margin-top: 24px;
	}
	.product-logo-mobile {
		display: none;
	}
	.product-in-top .product-logo {
		display: block;
	}
}
@media (max-width: 1023px) {
	.product-in-gallery {
		display: block;
	}
	.product-in-gallery-slider {
		width: 100%;
		height: 405px;
	}
	.product-in-gallery-bottom {
		width: 100%;
		display: flex;
		height: auto;
	}
	.product-in-gallery-bottom .product-in-gallery-prev,
	.product-in-gallery-bottom .product-in-gallery-next {
		margin: 0;
		transform: none;
	}
	.product-in-gallery-thumbs {
		width: calc(100% - 64px);
		height: auto;
	}
	.product-in-gallery-thumbs .swiper-slide {
		height: 80px;
		max-height: 80px;
	}
	.product-in-info {
		width: 100%;
	}
	.product-in-info .h3 {
		margin-bottom: 24px;
	}
	.product-in-top .product-logo {
		display: block;
	}
	.product-logo-mobile {
		display: none;
	}
	.product-in-sidebar {
		width: 100%;
		margin-top: 12px;
	}
	.product-in-other {
		justify-content: flex-start;
		gap: 16px;
	}
	.product-in-adva {
		justify-content: center;
		gap: 100px;
	}
	.product-in-value .tooltip .tooltip-content:before {
		right: 127px;
	}
	.product-in-other .value-stock .tooltip-content {
        right: -371px;
        width: 356px;
	}
	.product-in-other .value-stock .tooltip-content:before {
		right: auto;
		left: -9px;
		transform: rotate(90deg);
		top: 55px;
	}
}
@media (max-width: 767px) {
	
}
@media (max-width: 600px) {
	.one-click-info {
		margin-bottom: 5.55vw;
	}
	.one-click-info img {
		width: 33.05vw;
		height: 34.44vw;
	}
	.one-click-info .info {
		width: calc(100% - 33.05vw - 3.33vw);
	}
	.one-click-info .info .cat {
		margin-bottom: 0.8vw;
	}
	.one-click-info .info .name {
		-webkit-line-clamp: 4;
		margin-bottom: 4.44vw;
	}
	.one-click-info .price span:nth-child(2) {
		padding: 0 2.22vw;
	}
	.product-in-gallery-slider {
		height: 56.94vw;
		border-radius: 1vw;
		margin-bottom: 3.33vw;
	}
	.product-in-gallery {
		margin-bottom: 5.55vw;
	}
	.product-in-gallery-prev, .product-in-gallery-next {
		width: 6.66vw;
		height: 6.66vw;
	}
	.product-in-gallery-prev svg, .product-in-gallery-next svg {
		width: 100%;
		height: auto;
	}
	.product-in-gallery-thumbs {
		width: calc(100% - 17.77vw);
	}
	.product-in-gallery-thumbs .swiper-slide img {
		padding: 2vw;
		border-radius: 1vw;
	}
	.product-in-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
		border: 0.6vw solid var(--Primary-1000);
	}
	.product-in-gallery-thumbs .swiper-slide {
		height: 17.77vw;
		border-radius: 1vw;
	}
	.product-in-gallery-slider .swiper-slide img {
		width: 100%;
	}
	.product-in-info .h3 {
		margin-bottom: 4.44vw;
	}
	.product-in-top .stock {
		border-radius: 1vw;
		padding: 2.77vw 4.44vw;
	}
	.product-in-top .stock.in-stock {
		padding: 2.77vw 4.44vw 2.77vw 11.11vw;
		background: var(--Primary-100) url(../img/product/product-stock-check.svg) no-repeat center left 3vw;
	}
	.product-in-top .add-in-wishlist {
		margin-left: 5.55vw;
	}
	.product-in-top .add-in-wishlist {
		margin-left: 5.55vw;
		padding: 1.2vw 0 1.2vw 10vw;
		background-size: 7.77vw;
		font-size: 4.44vw;
		margin-top: 1.6vw;
	}
	.product-in-top .product-logo {
		display: none;
	}
	.product-in-id {
		gap: 2.22vw;
		margin: 5.55vw 0 12px 0;
	}
	.product-in-id span {
		padding: 1.11vw 1.66vw;
		border-radius: 1vw;
	}
	.product-in-har li {
		margin-bottom: 2.22vw;
	}
    
	.product-in-har li a {
        padding-left: 2vw;
    }
    
	.product-in-select {
		margin-bottom: 2.22vw;
		gap: 1.88vw;
	}
	.product-in-select .head {
		margin-bottom: 0.66vw;
	}
	.product-in-select .item-name span {
		border: 0.27vw solid var(--Primary-1000);
		padding: 2.22vw 4.44vw;
		font-size: 3.88vw;
		border-radius: 1vw;
	}
	.product-in-select .item-tooltip {
		width: 33vw;
		padding: 5vw 0;
		border-radius: 1.2vw;
	}
	.product-in-select .item-tooltip-img {
		width: 25vw;
		height: 25vw;
		border-radius: 1vw;
		margin: 0 auto 4.44vw auto;
	}
	.product-in-select .item-tooltip:before {
		width: 4vw;
		height: 1.66vw;
		bottom: -1.66vw;
		left: calc(50% - 1.66vw);
	}
	.product-in-select .item-tooltip.bottom:before {
		top: -1.66vw;
		left: calc(50% - 1.66vw);
	}
	.product-logo-mobile {
		display: block;
		margin-top: 10vw;
		max-height: 20vw;
	}
	.product-in-sidebar {
		margin-top: 5vw;
	}
	.product-in-price {
		margin-bottom: 4.44vw;
	}
	.product-in-price .main-price {
		font-size: 6.66vw;
		margin-right: 1.5vw;
	}
	.product-in-price .main-price span {
		font-size: 5vw;
	}
	.product-in-price .old-price {
		margin-right: 4vw;
		padding-bottom: 0.4vw;
	}
	.product-in-price .sale-value {
		border-radius: 1vw;
		padding: 1vw 2vw;
	}
	.product-in-value {
		margin-bottom: 4.44vw;
		padding: 2.22vw;
		gap: 2.22vw;
	}
	.product-in-value .value-select {
		width: calc(100% / 3 - 4.44vw / 3);
	}
	.product-in-value .value-select > span {
		padding: 2.22vw;
		border-radius: 1vw;
		font-size: 4.44vw;
	}
	.product-in-value .counter {
		padding: 1.66vw;
		border-radius: 1vw;
	}
	.product-in-value .counter-minus, .product-in-value .counter-plus {
		width: 8.88vw;
		height: 8.88vw;
		border-radius: 1vw;
	}
	.product-in-value .counter-minus svg, .product-in-value .counter-plus svg {
		height: auto;
		width: 3vw;
	}
	.product-in-value .counter-value {
		width: calc(100% - 20vw);
		padding: 1.33vw;
	}
	.product-in-other {
		margin-bottom: 5.55vw;
		display: block;
	}
	.product-in-other .value-stock {
		gap: 2vw;
	}
	.product-in-other .value-stock:not(:last-child) {
		margin-bottom: 2.22vw;
	}
	.product-in-other .value-stock-label span {
		padding-left: 9.44vw;
	}
	.product-in-other .value-stock-label span:before,
	.product-in-other .value-stock-label span:after {
		width: 6.11vw;
		height: 6.11vw;
		top: -0.6vw;
	}
	.product-in-final-price {
		gap: 2vw;
		margin-bottom: 3.33vw;
	}
	.product-in-final-price span {
		font-size: 5.55vw;
	}
	.product-in-one-click {
		margin: 2.77vw 0 5.55vw 0;
		border-radius: 1vw;
	}
	.product-in-adva {
		gap: 7.4vw;
		margin-bottom: 4.44vw;
		padding: 4.44vw;
	}
	.product-in-adva .item {
		font-size: 3.88vw;
	}
	.product-in-adva .item-icon {
		height: 9.44vw;
		margin: 0 auto 2.22vw auto;
	}
	.product-in-adva .item-icon img {
		height: 95%;
	}
	.product-in-adress {
		border-radius: 1vw;
		padding: 4.44vw;
	}
	.product-in-adress .text-1 {
		margin-bottom: 3.33vw;
	}
	.product-in-adress .adress {
		padding-left: 6vw;
		margin-bottom: 2.22vw;
		background-size: 4.44vw;
		background-position: top 0.5vw left;
		font-size: 3.88vw;
	}
	.product-in-adress .adress + p:not(.adress) {
		margin-bottom: 3.33vw;
		font-size: 3.88vw;
	}
	.product-in-adress .link {
		font-size: 3.88vw;
		padding: 1.2vw 8vw 1.2vw 0vw;
		background-size: 5vw;
		background: url("../img/icons/link-arrow.svg") no-repeat right 1.2vw center;
	}
	.product-in-adress .link:hover {
		background: url("../img/icons/link-arrow-active.svg") no-repeat right 1.2vw center;
	}
	.product-in-select .item-name input:checked + span {
		border: 0.26vw solid var(--Primary-1000);
	}
	.product-in-select .item-name:hover span {
		border: 0.26vw solid #8F939F;
	}
	.product-in-add-to-cart,
	.product-in-one-click {
		height: 12.77vw;
		border-radius: 1.33vw;
	}
	.product-in-adress.mobile {
		margin-top: 4.44vw;
	}
	.product-in-gallery .product-labels {
		top: 3vw;
		left: 3vw;
	}
	.product-in-other .tooltip {
		top: 0;
	}

	#box-tooltip ~ div[data-tippy-root] .tippy-box {
		max-width: initial !important;
	}
	#stock-tooltip ~ div[data-tippy-root] .tippy-box {
		max-width: initial !important;
	}
	#adva-tooltip-1 ~ div[data-tippy-root] .tippy-box {
		max-width: initial !important;
	}

	.product-in-adva .item ~ div[data-tippy-root] .text-2.light-text {
		margin: 2.5vw 0;
	}

	div[id="tippy-2"] ul + .light-text:last-child {
		margin-top: 3vw;
	}
	div[id="tippy-2"] ul + .light-text:last-child a {
		font-size: 3.88vw;
	}

	.product-in-adress .adress + p:not(.adress) a, .product-in-adress .adress a {
		font-size: 3.88vw;
	}

	.one-click-info .info .price span:nth-child(1),
	.one-click-info .info .price span:nth-child(2) {
		font-size: 3.88vw;
	}
}