:root {
	--red-color: #c80814;
	--main-bs-normal: #D38CAC;
}

.desktop {
	display: none;
}

.is-sticky .desktop {
	display: block;
}

.top-menu {
	background: #C90398;
	height: 36px;
	color: #fff;
}

.top-menu .items {
	padding: 0 12px;
}

.top-menu .items .item {
	color: #fff;
}

.top-menu .items .item:not(:last-child) {
	margin-right: 16px;
}

.top-background {
	background-color: #fff;
	position: relative;
}

.left-gift {
	background: url(/image/gift.png);
	background-position-x: right;
	height: 113px;
	position: absolute;
	left: 0;
	background-repeat: no-repeat;
	width: 20%;
	z-index: 0;
	transform: scale(-1, 1);
}

.right-gift {
	background: url(/image/gift.png);
	background-position-x: right;
	height: 113px;
	position: absolute;
	right: 0;
	background-repeat: no-repeat;
	width: 20%;
	z-index: 0;
}

.header {
	padding: 12px 0;
	margin: 0 auto;
}

.header .logo {
	width: 140px;
	position: relative;
}

.header .text-block {
	line-height: 24px;
}

.header .text-block.address {
	line-height: 20px;
}

.header .open-map {
	color: #2b2b2b;

	text-decoration: underline;
}

.header .phone {
	font-size: 17px;
	flex-direction: column;
}

.header .phone .svg {
	width: 20px;
	height: 20px;
	vertical-align: bottom;
}

.header .phone span {
	font-size: 13px;
	color: #d43cae;
	font-weight: bold;
}

.header .phone .phonemark {
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
}

.header .callback {
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #FC9DC0;
	color: #4d3e3e;
	margin-left: 16px;
}

.header .callback svg {
	fill: #FC9DC0;
}

.header .user {
	text-align: center;
	line-height: 28px;
}

.header .user .registration {
	text-decoration: underline;
	color: #2b2b2b;
}

.header .user p {
	max-width: 150px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.header .user a {
	background: rgba(255, 255, 255, 0.5);
	padding: 0 10px;
}

.header .user a.account {
	background: #ffffff;
	color: #4d3e3e;
	border: 1px solid #FC9DC0;
	padding: 6px 10px;
	margin-left: 8px;
}

.header .user a.account svg {
	fill: #FC9DC0;
}

.header .item {
	text-shadow: 1px 1px #fff;
}

.is-sticky .right {
	display: flex;
}

.header .item .search {
	position: relative;
}

.header .item .search button {
	height: 40px;
	width: 40px;
	background: var(--main-bs-normal);
	border: none;
}

.header .item .search .search-icon {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.header .item .search input {
	padding: 0 8px;
	width: 360px;
	height: 40px;
	border: 2px solid var(--main-bs-normal);
	border-right: none;
}

.header .cart {
	cursor: pointer;
	position: relative;
	text-decoration: underline;
	color: #2b2b2b;
}

.header .cart .icon {
	position: relative;
}

.cart.desktop {
	position: relative;
	align-self: flex-end;
	margin-left: 20px;
}

.cart.desktop .svg {
	width: 25px;
	height: 25px;
}

.header .cart .icon[data-count]:before,
.main-menu .cart .icon[data-count]:before {
	content: attr(data-count);
	position: absolute;
	background: var(--main-bs-normal);
	color: #fff;
	height: 20px;
	width: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 11px;
	top: -6px;
	right: -8px;
	border-radius: 50%;
}

.header .cart .icon .svg {
	width: 32px;
	height: 32px;
}

.main-menu {
	background: #F5D7D7;
	height: 48px;
	position: relative;
}

.main-menu .search {}

.main-menu .search input {
	border: 1px solid #FC9DC0;
	height: 32px;
	padding: 8px 16px;
	border-right: none;
	width: 280px;
	background: rgb(255 255 255 / 90%);
}

.main-menu .search input:focus {
	background: rgb(255 255 255 / 100%);
}

.main-menu .search button {
	height: 32px;
	width: 32px;
	border: 1px solid #FC9DC0;
	background: #FC9DC0;
	outline: none;
}

.main-menu .search button svg {
	fill: #fff;
}

.main-menu .list {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
}

.main-menu .list .item:not(:last-child) {
	margin-right: 60px;
}

.main-menu .list .item .arrow {
	width: 12px;
	height: 12px;
	transition: transform linear 0.2s;
}

.main-menu .list .item.open .arrow {
	transform: rotate(-180deg);
}

.main-menu .list .item .icon-1 {
	display: block;
}

.main-menu .list .item.open .icon-1 {
	display: none;
}

.main-menu .list .item .icon-2 {
	display: none;
}

.main-menu .list .item.open .icon-2 {
	display: block;
}

.main-menu .list .item .information {
	position: absolute;
	top: 100%;
	left: -16px;
	background: #fff;
	padding: 16px;
	z-index: 9999;
	width: calc(100% + 32px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
	display: none;
}

.main-menu .list .item.open .information {
	display: block;
}

.main-menu .list .item .information a {
	display: block;
	color: #2b2b2b;
}

.main-menu .list .item .information a:not(:last-child) {
	margin-bottom: 8px;
}

.main-menu .list .item .catalog {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	padding: 16px 68px;
	z-index: 999;
	width: 100%;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
	display: none;
}

.main-menu .list .item.open .catalog {
	display: block;
}

.main-menu .list .item .catalog a {
	color: #2b2b2b;
}

.main-menu .list .item .catalog .content {}

.main-menu .list .item .catalog .content .column {
	max-width: calc(100% / 6 - 12px);
}

.main-menu .list .item .catalog .content .column .parent-name {
	font-size: 16px;
	margin-bottom: 12px;
	font-weight: 600;
	display: block;
}

.main-menu .list .item .catalog .content .column .children {}

.main-menu .list .item .catalog .content .column .children .children-name {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
}

.main-categories {
	background: #f1f1f1;
	height: 48px;
	white-space: nowrap;
}

.main-categories .personal {
	color: #fff;
	padding: 6px 8px;
	background: #F233C3;
}

.main-categories .personal .svg {
	fill: #fff;
}

.main-categories .item {
	color: #2b2b2b;
	font-size: 14px;
	position: relative;
	margin: 0 8px;
}

.main-categories .item .arrow {
	width: 12px;
	height: 12px;
	transition: transform linear 0.2s;
}

.main-categories .item:hover .arrow {
	transform: rotate(-180deg);
}

.main-categories .item .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 100%;
	display: none;
	background: #fff;
	border: 1px solid #ddd;
	z-index: 2;
	border-top: none;
	padding: 0;
}

.main-categories .item:hover .dropdown {
	display: block;
}

.main-categories .item .dropdown .subitem {
	height: 36px;
	padding: 0 8px;
	line-height: 36px;
	display: block;
	white-space: nowrap;
	color: #2b2b2b;
}

.main-categories .item .dropdown .subitem:not(:last-child) {
	border-bottom: 1px dotted #ddd;
}

.footer {
	border-top: 8px solid var(--main-bs-normal);
	padding: 20px 0;
}

.footer .footer-link {
	margin-bottom: 8px;
}

.footer a {
	color: #2b2b2b;
}

.footer .title-box {
	border-bottom: 2px solid var(--main-bs-normal);
	text-transform: uppercase;
	padding-bottom: 4px;
	color: #000;
	margin-bottom: 16px;
}

.footer .contact-item {}

.footer .contact-item .icon {
	height: 36px;
	width: 36px;
	background: #ddd;
}

.footer .contact-item .name {
	font-size: 13px;
	line-height: 13px;
	margin-bottom: 6px;
	color: #aaa;
}

.footer .contact-item .value {
	font-size: 14px;
	line-height: 17px;
}

.regions {
	width: 400px;
}

.regions .title {
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
}

.regions .close {
	background: #f1f1f1;
	height: 36px;
	width: 36px;
	cursor: pointer;
}

.regions .close .icon {
	width: 24px;
	height: 24px;
}

.regions .list {}

.regions .list .item {
	width: 33%;
}

.left-categories {
	/*padding: 8px;*/
	/*border: 3px solid #f3f3f3;*/
	/*padding-left: 24px;*/
}

.left-categories .title {
	font-weight: 600;
	font-size: 16px;
	position: relative;
}

.left-categories .children {
	/*padding-left: 16px;*/
	margin-bottom: 8px;
}

.left-categories .item {
	height: 36px;
	line-height: 36px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.left-categories>.item:nth-child(2),
.left-categories>.item:nth-child(3),
.left-categories>.item:nth-child(4),
.left-categories>.item:nth-child(5) {
	background: rgb(245 215 215 / 40%);
	/*padding-left: 24px;*/
	height: 46px;
}

.left-categories>.item:nth-child(2) a,
.left-categories>.item:nth-child(3) a,
.left-categories>.item:nth-child(4) a,
.left-categories>.item:nth-child(5) a {
	font-weight: 600;
	font-size: 110%;
	display: flex;
	align-items: center;
	height: inherit;
}

.left-categories .title {
	font-weight: 600;
	font-size: 16px;
	position: relative;
}

/*.left-categories .item:not(:last-child) {
			border-bottom: 1px dotted #ddd;
		}*/

.left-categories .item a {
	white-space: nowrap;
	width: 100%;
}

.left-categories .item.active a {
	color: #2b2b2b;
}

.products-filters {
	padding: 8px;
	border: 3px solid #f3f3f3;
	padding-left: 24px;
}

.products-filters .title {
	font-weight: 600;
	font-size: 16px;
	position: relative;
}

.products-filters .title:before {
	content: '';
	position: absolute;
	top: 50%;
	left: -16px;
	height: 6px;
	width: 6px;
	background: #c90398c4;
	transform: translateY(-50%);
}

.products-filters .button-filter {
	width: 100%;
	height: 36px;
	background: #ececec;
	border: none;
	color: #3a3a3a;
	text-shadow: 1px 1px rgba(255, 255, 255, 0.8);
}

.products-filters .list {}

.products-filters .list .item {}

.products-filters .list .item:not(:last-child) {
	margin-bottom: 8px;
}

.breadcrumb {
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.breadcrumb .item {
	font-size: 13px;
}

.breadcrumb .item:last-child {
	color: #2b2b2b;
}

.breadcrumb .item:not(:last-child):after {
	content: '»';
	margin: 0 8px;
	color: #aaa;
}

.breadcrumb li {
	list-style: none;
}

.breadcrumb li:not(:last-child):after {
	content: '»';
	display: inline-block;
	width: 10px;
}

.breadcrumb li:last-child a span {
	color: #444;
}

.breadcrumb li a span {
	color: var(--main-bs-normal);
}

.list-products {}

.list-products {
	justify-content: space-between;
}

/*.list-products .product {
		border: 3px solid #f3f3f3;
		width: calc(100% / 3 - 12px);
		padding: 8px;
		position: relative;
		margin-bottom: 12px;
	}*/

.list-products .product {
	/*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
	width: calc(100% / 3 - 12px);
	padding: 20px;
	position: relative;
	margin-bottom: 12px;
}

.list-products .product .discount_new {
    display: block;
    position: absolute;
    top: -14px;
    right: 10px;
    width: 50px;
    height: 76px;
    background-image: url('../image/discount.svg');
    background-size: 50px;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    z-index: 100;
}

.list-products .product .discount_new span {
    color: #ffffff;
    font-weight: 800;
    font-size: 21px;
    line-height: 41px;
    text-align: center;
    display: block;
    margin-top: 5px;
    margin-left: -21px;
    background-color: #ef6767ab;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

/*.list-products .product {
			margin-right: 12px;
		}*/

.list-products .product {
	margin-right: unset;
	border-radius: 12px;
	width: calc(100% / 4 - 32px);
}

.list-products .product.hidden {
	display: none;
}

.list-products .product.width-4 {
	width: calc(100% / 4 - 8px);
}

.list-products .product.width-4:not(:nth-child(4n)) {
	margin-right: 12px;
}

.list-products .product.width-4:nth-child(4n) {
	margin-right: 0px;
}

.list-products .product:hover {
	background: #fdfdfd;
	border-color: #e8e8e8;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/*.list-products .product .main-image {
			width: 100%;
			height: 360px;
			position: relative;
		}*/

.list-products .product .main-image {
	width: 100%;
	/*height: 320px;*/
	position: relative;
}

.list-products .product .main-image img {
	max-height: 100%;
	max-width: 100%;
	border-radius: 12px;
}

.list-products .product .main-image img {
	//border-radius: var(--bs-border-radius-lg);
}



.list-products .product .product-name {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 135%;
    padding: 0 12px;
    margin-top: 20px;
}

/*.list-products .product .product-name a {
				color: #2b2b2b;
			}*/

.list-products .product .product-name a {
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 600;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

.list-products .product .product-name a:hover {
	text-decoration: underline;
}

/*.w-tooltip {
  position: relative;
  cursor: pointer;
}

.w-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -1.25em;
  left: 50%;
  transform: translateX(-50%);
  color: #00b74a;
  font-style: italic;
  opacity: 0;
  transition: 0.2s;
}
.w-tooltip:hover::after {
  opacity: 1;
}*/

.dropdown-menu .dropdown-item {
    font-weight: 500;
    text-transform: capitalize;
    font-size: .9rem;
    line-height: 1.5rem;
}

.list-products .product .labels_list {
    position: absolute;
    top: 36px;
    left: 36px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.list-products .product .labels img {
	display: block;
	max-width: 180px;
}

.list-products .product .labels img:not(:last-child) {
	margin-bottom: 8px;
}

.list-products .product .labels.left-labels {
	left: -50px;
	top: -45px;
}

/*.list-products .product .images {
			position: absolute;
			top: -3px;
			left: -60px;
			bottom: -3px;
			background: #fdfdfd;
			border: 3px solid #e8e8e8;
			border-right: none;
			width: 75px;
			display: none;
			padding: 8px 0;
			z-index: 1;
		}*/
.list-products .product .images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    border: 0;
    border-right: none;
    width: auto;
    display: none;
    border-radius: var(--bs-border-radius-lg);
    z-index: 1;
    height: auto;
}

.list-products .product:hover .images {
	display: flex;
}

.list-products .product .images .image {
	width: 75px;
	height: auto;
}

.list-products .product .images .image {
	cursor: pointer;
	transition: .2s;
	/*position: relative;*/
}

.list-products .product .images .image:hover {
	opacity: .7;
}

.list-products .product .images .image:not(:last-child) {
	/*margin-bottom: 8px;*/
}

.list-products .product .images .image.widthFlue {
    display: block;
    width: 100%;
}

.list-products .product .images .image img {
	max-height: 100%;
	max-width: 100%;
	opacity: 0;
}

.list-products .product .images .image:before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    left: 40%;
    transform: translateX(-50%);
    bottom: 10px;
    position: absolute;
    transition: .2s;
}

.list-products .product .images .image:nth-child(2):before {
    left: 46%;
}

.list-products .product .images .image:nth-child(3):before {
    left: 52%;
}

.list-products .product .images .image:nth-child(4):before {
    left: 58%;
}

.list-products .product .images .image:hover:before {
    background: var(--bs-main-active);
}

.list-products .product .buy {
    position: absolute;
    bottom: -70px;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 100%;
    left: 0;
    right: 0px;
    height: 80px;
    border: 0;
    z-index: 99;
    display: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0px 22px 22px 1px rgba(21, 21, 21, 0.06);
}

.list-products .product:hover .buy {
	display: block;
	background: var(--main-bs-hover);
}

.list-products .product .buy a {
	padding: 8px 12px 8px 0;
	background: var(--main-bs-normal);
	color: #fff;
	border-radius: 5px;
}

.list-products .product .buy a svg {
	fill: #fff;
}

.list-products .product .buy a .icon {
	padding: 0 12px;
	border-right: 1px solid #fff;
	margin-right: 12px;
}

.list-products .product .sizes {
    margin: 10px 0 18px;
    text-align: center;
    color: #84848E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

/*.list-products .product .colors {
    font-size: 13px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    font-weight: bold;
    color: #c80814;
    text-transform: uppercase;
}*/

.list-products .product .colors {
    position: absolute;
    background-color: #fff;
    text-transform: lowercase;
    font-weight: 600;
    font-size: 11px;
    max-width: fit-content;
    padding: 4px 8px;
    border-radius: 30px;
    bottom: 15px;
    right: 15px;
    color: #413B3B;
    z-index: 4;
}



.list-products .product .prices .item .price {
	color: #413B3B;
	font-weight: 600;
	font-size: 20px;
	white-space: nowrap;
	line-height: 130%;
}

.list-products .product .prices .item s.price {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}

.list-products .product .prices>div {
    width: 100%;
}

.list-products .product .prices .old_price,
.list-products .product .prices .old_price .price {
	color: #737373;
	font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}

.list-products .product .prices>div:nth-child(3) {
    font-weight: 600;
}

.list-products .product .prices>div:nth-child(2) {
	font-weight: 500;
}

.list-products .product .prices>div:first-child {
    color: #737373;
}

.list-products .product .prices .item:not(:last-child) {
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
}

.list-products .product .prices>div p {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.list-products .product .prices>div p > * {
    display: block;
    min-width: 1px;
    width: 100%;
    white-space: normal;
}

.list-products .product .prices>div p span:first-child {
    min-width: fit-content;
}

.list-products .product .prices>div p span:last-child,
.list-products .product .prices>div p s:last-child {
    text-align: right;
}

.table {
	width: 100%;
	border-collapse: collapse;
	max-width: 900px;
	margin-bottom: 30px;
}

.table thead th {
	background: #ffbc41;
	vertical-align: middle;
}

.table caption {
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px 0;
}

.table tbody tr:nth-child(even) {
	background: #f1f1f1;
}

.table tbody tr {
	transition: .2s;
}

.table tbody tr:hover {
	background: #eaeaea;
}

.table th,
.table td {
	border: 1px solid #f1f1f1;
	padding: 10px 0;
	text-align: center;
}

.campare-table {
	table-layout: fixed;
	max-width: none;
}

.campare-table tbody tr:nth-child(even) {
	background: transparent;
}

.campare-table tbody tr td {
	vertical-align: middle;
	width: 100%;
}

.campare-table tbody tr td:first-child {
	min-width: 200px;
	font-size: 12px;
	text-align: left;
	padding: 10px 20px;
	font-weight: bold;
}

#tab-review {
	border: 1px solid #f3f3f3;
	padding: 20px;
}

.heading {
	font-size: 16px;
	margin-bottom: 10px;
}

.name-reviewer td {
	text-align: left;
	padding: 10px 20px;
	border: 0;
}

.name-reviewer td:last-child {
	text-align: right;
}

.body-review td {
	text-align: left;
	padding: 10px 20px;
}

.table tbody .name-reviewer:hover {
	background: none;
}

.review_form {
	border: 0px solid #f3f3f3;
	padding: 0;
	background: #f3f3f3;
	max-width: 400px;
	height: 0px;
	overflow: hidden;
	transition: all 0.2s ease-out;
}

.review_form.open {
	border: 1px solid #f3f3f3;
	padding: 20px;
	height: fit-content;
}

.rev_btn {
	background: #FD89AC;
	height: 40px;
	border: none;
	padding: 0 12px;
	text-transform: uppercase;
	color: #ffffff;
	border-radius: 4px;
	cursor: pointer;
	outline: none;
	font-size: 12px;
	width: fit-content;
	display: flex;
	align-items: center;
	transition: .2s;
}

.rev_btn.active {
	margin-bottom: 20px;
}

.rev_btn:hover {
	background: #d7b0b0;
}

.review_form textarea.form-control {
	height: auto;
	width: 100%;
}

.review_form svg {
	width: 20px;
}

.radio-review {
	display: unset;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 19px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 20px;
}

.radio-review input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border: 1px solid #b0b0b0;
	font-size: 12px;
	align-items: center;
	display: flex;
	justify-content: center;
	color: #818181;
	border-radius: 5px;
}

.radio-review:hover input~.checkmark {
	background-color: #ccc;
}

.radio-review input:checked~.checkmark {
	background-color: #D089AB;
	border-color: #D089AB;
	font-size: 0px;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.radio-review input:checked~.checkmark:after {
	display: block;
}

.radio-review .checkmark:after {
	left: 6px;
	top: 3px;
	width: 7px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.wish-table {
	max-width: none;
}

.wish-btns .flex-box {
	align-items: center;
	justify-content: center;
}

.wish-btns button,
.wish-btns a {
	background: #fff;
	border: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.wishlist-head,
.compare-head {
	width: 30px;
	height: 30px;
	position: relative;
}

.wishlist-icon {
	position: relative;
}

.wishlist-icon span {
	position: absolute;
	background: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	top: -7px;
	right: -7px;
	box-shadow: 0px 3px 12px;
}

a.btn-continue {
	padding: 4px 8px;
	background: var(--main-bs-normal);
	border: none;
	color: #fff;
	float: right;
}

.undername {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    gap: 40px;
}

.undername button {
	/*width: 30px;*/
	/*height: 30px;*/
	/*border: 1px solid transparent;*/
	background: transparent;
	display: flex !important;
	align-items: center;
	cursor: pointer;
	/*margin-left: 10px;*/
	position: relative;
	bottom: 0;
	color: #000;
	transition: .2s;
	display: block;
	padding: 0;
	gap: 8px;
}

.undername button:hover {
	/*border: 1px solid #fff;
	box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2);
	bottom: 1px;*/
}

.undername button svg {
	width: 25px;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
    background-image: url(../image/share.svg) !important;
    height: 22px !important;
    width: 22px !important;
    background-size: unset !important;
}

.ya-share2__container_size_s .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
    background: transparent !important;
    padding: 0 !important;
}

.campare-table thead tr {
	background: rgba(255, 188, 65, 0.7);
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
}

.buttons-compare {
	display: flex;
	justify-content: center;
	align-items: center;
}

.buttons-compare>* {
	width: 50%;
	margin: 0 10px;
}

.buttons-compare a {
	padding: 5px;
}

.buttons-compare .btn-product {
	background: #ffbc41;
	color: #000;
}

.buttons-compare .btn-remove {
	background: var(--main-bs-normal);
	color: #fff;
}

.ny-icon {
	position: absolute;
	top: -40px;
	left: -40px;
	transform: scale(-1, 1);
}

#owl-elena .owl-wrapper-outer {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.page-home .owl-carousel .main-bnr {
	margin-bottom: 0;
}

#owl-elena .owl-pagination {
	top: 0;
}

#owl-elena img {
	width: 100%;
}

/*
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/* display none until init */
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
	float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}

.owl-controls .owl-buttons div {
	position: absolute;
}

.owl-controls .owl-buttons .owl-prev {
	left: 10px;
	top: 50%;
}

.owl-controls .owl-buttons .owl-next {
	right: 10px;
	top: 50%;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
	cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

/* OpenCart Code */
.owl-carousel {
	margin: 0 0 20px;
	background: #fff;
	direction: ltr !important;
	z-index: 1;
}

.owl-wrapper-outer {
	border: 4px solid #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	-o-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.owl-carousel .owl-buttons div {
	opacity: 0;
	color: rgba(0, 0, 0, 0.8);
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
	transition: all .3s ease;
}

.owl-carousel:hover .owl-buttons div {
	opacity: 0.7;
}

.owl-carousel .owl-buttons .owl-prev {
	left: 10px;
}

.owl-carousel .owl-buttons .owl-next {
	right: 10px;
}

.owl-carousel .owl-buttons div i {
	font-size: 40px;
	margin: -20px 0 0;
}

.owl-pagination {
	text-align: center;
	top: 20px;
	position: relative;
}

.owl-controls .owl-page {
	display: inline-block;
	margin: 0px 6px;
}

.owl-controls .owl-page span {
	display: block;
	width: 11px;
	height: 11px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 20px;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.owl-controls .owl-page.active span {
	background: rgba(0, 0, 0, 0.9);
}

.regions-popup {
	width: 600px;
}

.regions-popup .box-title {
	font-size: 27px;
}

.regions-popup .letter {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--main-bs-normal);
}

.regions-popup .list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0px 16px;
	margin-bottom: 8px;
}

.regions-popup .region {
	display: block;
	padding: 0 0 12px 0;
	color: #303030;
}

.regions-popup .region:hover,
.regions-popup .region.active {
	color: var(--main-bs-normal);
}

.popover {
	z-index: 5;
}













@media screen and (max-width: 1500px) {

	.header .user .registration {
		display: none;
	}

}

@media screen and (max-width: 1390px) {

	.header .user .account {
		margin-left: 0px;
	}

	.main-menu .search input {
		width: initial;
	}

	.footer-addiction {
		display: none;
	}

}

@media screen and (max-width: 1290px) {

	.header .text-block {
		font-size: 13px;
	}

}

@media screen and (max-width: 1270px) {

	.header .open-map {
		display: none;
	}

	.main-menu .list .item:not(:last-child) {
		margin-right: 48px;
	}

}

@media screen and (max-width: 1200px) {

	.main-menu .list .item:not(:last-child) {
		margin-right: 36px;
	}

}

@media screen and (max-width: 1160px) {

	.header .callback {
		display: none;
	}

	.footer-ok {
		display: none;
	}

}

@media screen and (max-width: 1100px) {

	.main-menu .list .item {
		font-size: 12px;
	}

}

.article-page ul {
	list-style: circle;
	padding-left: 20px;
	margin: 10px 0;
}

.article-page ol {
	list-style: numeric;
	padding-left: 20px;
	margin: 10px 0;
}

.article-page ul li,
.article-page ol li {
	margin-bottom: 5px;
}

.article-page h1 {
	font-weight: bold;
	margin: 20px 0;
	line-height: 1;
}

.article-page h2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.article-page p {
	margin-bottom: 15px;
}

.blog_wrapper {
	display: flex;
	gap: 1%;
	text-align: center;
	flex-wrap: wrap;
}

.blog_wrapper>div img {
	width: 100%;
}

.blog_wrapper>div {
	padding: 0 10px;
}

.blog_wrapper .product-layout {
	max-width: 300px;
}

.blog_wrapper .product-layout a {
	font-size: .6em;
	text-decoration: none;
	line-height: 1.4;
	display: block;
	color: #413B3B;
}

.blog_wrapper .product-layout .caption {
	margin-top: 10px;
}

.blog_wrapper .product-layout .image {
	position: relative;
	top: 0;
	transition: .2s;
}

.blog_wrapper .product-layout:hover .image {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	top: -2px;
}

.blog_wrapper .product-layout a {
	transition: .2s;
}

.blog_wrapper .product-layout:hover a {
	color: var(--bs-main-normal);
}


.article-page h3 {
	font-size: 1.5rem;
	margin: 40px 0 20px;
}

.product_module {
	margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
	.product_module>div {
		max-width: 600px;
		width: 100%;
	}
}

.product_module>div {
	max-width: 300px;
}

.product_module .image img {
	width: 100%;
	border-radius: 20px;
	padding: 5px;
}

.product_module .image {
	text-align: center;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgb(204 204 204 / 40%);
}

.product_module .caption h4 {
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 135%;
	text-align: center;
}

.product_module .caption h4 a {
	color: #413B3B;
	text-decoration: none;
	display: block;
	margin: 10px 0;
	transition: .2s;
}

.product_module .product-layout:hover .caption h4 a {
	color: var(--bs-main-active);
}


.product_module .caption .prices p {
	margin: 0;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 160%;
	text-align: center;
	color: #737373;
}


.popover-body:before {
    content: 'Применить';
    font-size: 12px;
}

.autofeatured_block .prices {
    padding: 10px 70px 0;
}