/*Total style*/
*,
*:after,
*:before {
	box-sizing: border-box;
}
* {
	outline: none !important;
}
*[disabled] {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}
.hidden {
	display: none;
}
a,button {
	display: inline-block;
	cursor: pointer;
}
.tag {
	display: inline-block;
	background: #F1F1F8;
	border-radius: 12px;
	transition: 0.5s;
	cursor: pointer;
	text-decoration: none;
	font-size: 11px;
	line-height: 11px;
}
.tag:hover {
	background: #5656CA;
	color: #fff;
	transition: 0.5s;
}
.tag:focus,
.tag:active {
	background: #102A83;
	color: #fff;
	transition: 0.5s;
}
.tag-choose {
	display: inline-flex;
	align-items: center;
	background: #8C8CEA;
	font-weight: 500;
	color: #fff;
	padding: 4px 8px;
	margin-right: 8px;
	margin-bottom: 4px;
}
.tag-choose .material-symbols-outlined {
	font-size: 14px;
}
.remove-tag {
	margin-left: 8px;
}
.tags-block__choose {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.radio-input {
	display: block;
}
.radio-input:not(:last-child) {
	margin-bottom: 15px;
}
.radio-input input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.radio-input__text {
	position: relative;
	padding: 0 0 0 35px;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
}
.radio-input__text:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 19px;
	height: 19px;
	border: 1px solid #000000;
	border-radius: 50%;
	background: #FFF;
	box-sizing: border-box;
}
.radio-input__text:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #7A7AB7;
	opacity: 0;
	transition: .2s;
}
.radio-input input:checked + .radio-input__text:after {
	opacity: 1;
}

.text-center {
	text-align: center;
}

/*tabs*/
.tabs__content {
  display: none;
}
.tabs__content.active {
  display: block;
}
.tabs__items {
	display: flex;
	margin-bottom: 20px;
}
.tabs__item {
	width: 33.333333%;
	font-size: 18px;
	line-height: 22px;
	color: #B3ADAD;
	text-align: center;
	position: relative;
	letter-spacing: 0.05em;
	cursor: pointer;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.tabs__item.active {
	color: #000000;
}
.tabs__item.active:after {
	display: block;
	margin: 0 auto;
	content: '';
	width: 155px;
	height: 7px;
	background: #7A7AB7;
	border-radius: 10px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

/*popover style*/
.popover {
	max-width: 140px;
	text-align: center;
	background: rgba(41, 45, 66, 0.7);
	backdrop-filter: blur(6px);
	border-radius: 16px;
	font-family: 'Roboto', sans-serif;
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
}
.popover-content {
	font-size: 11px;
	line-height: 15px;
	color: #fff;
	padding: 10px;
}
.popover-content a {
	color: #8C8CEA;
	text-decoration: none;
}
.popover.top > .arrow {
	border-color: transparent;
}
.popover.top > .arrow:after {
	border-top-color: rgba(41, 45, 66, 0.7);
	backdrop-filter: blur(6px);
}

/*scroll-top*/
.scroll-top {
	display: none;
	position: fixed;
	right: 65px;
	bottom: 120px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: #8C8CEA;
	filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.13));
	z-index: 99;
}
.scroll-top.visible {
	display: flex;
	align-items: center;
	justify-content: center;
}
.scroll-top__icon {
	display: flex;
    align-items: center;
    justify-content: center;
	transform: rotate(90deg);
    width: 20px;
    height: 20px;
}
/*----------*/
body,
html {
	height: 100%
}
/*Footer прижат к низу*/
body {
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
/*-------------*/
body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #4F4F4F;
}
.wrap {
	margin: 0 auto;
    width: 1190px;
	padding: 0 15px;
}
img {
	max-width: 100%;
	width: 100%;
	vertical-align: top;
}
/*BUTTONS*/
button,
.btn {
	padding: 10px 25px;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	font-weight: 500;
	transition: 0.5s;
	text-align: center;
}
.btn-blue {
	background: #8C8CEA;
	border-radius: 10px;
	color:  #fff;
	text-decoration: none;
	transition: 0.5s;
	border: none;
	cursor: pointer;

}
.btn-blue:hover {
	background: #5656CA;
	color:  #fff;
	transition: 0.5s;
}
.btn-blue:active {
	background: #102A83;
	color:  #fff;
	transition: 0.5s;
}
.btn-blue:disabled,
.btn-blue[disabled] {
	background: #D9D9D9;
	color: #B2B2B2;
	cursor: default;
}
.btn-red {
	background: #FF4040;
	color: #fff;
	border-radius: 12px;
	padding: 10px 15px;
	border: 0;
	cursor: pointer;
	transition: 0.5s;
}
.btn-red:hover {
	background: #D42121;
}
.btn-red:active {
	background: #A71F1F;
}
.btn-grey {
	background: #F6F5F5;
	color: #373737;
	border-radius: 12px;
	padding: 10px 15px;
	border: 0;
	cursor: pointer;
	transition: 0.5s;
}
.btn-grey:hover {
	background: #F5F4FF;
	color: #373737;
	transition: 0.5s;
}
.btn-grey:active {
	background: #D8D8FF;
	color: #373737;
	transition: 0.5s;
}
.btn-grey:disabled,
.btn-grey[disabled],
.btn-white:disabled,
.btn-white[disabled]{
	background: #F6F5F5;
	color: #B2B2B2;
	cursor: default;
}
.btn-white {
	background: #FFFFFF;
	border-radius: 8px;
	border: 0;
	color: #4F4F4F;
}
.btn-white:hover {
	background: #E4E4FF;
	transition: 0.5s;
}
.btn-white:active {
	background: #C0C0FF;
	transition: 0.5s;
}
.btn-text {
	color: #8C8CEA;
}
.btn-text:hover {
	color: #5656CA;
	transition: 0.5s;
}
.btn-text:active {
	color: #102A83;
	transition: 0.5s;
}
.btn-text-grey {
	text-decoration: none;
	color: #A6A6A6;
	transition: 0.5s;
}
.btn-text-grey:hover {
	color: #8C8CEA;
	transition: 0.5s;
}
.btn-text-grey:active {
	color: #5656CA;
	transition: 0.5s;
}
.no-available {
	height: 40px;
	background: #EFEFFA;
	font-size: 12px;
	color: #A7A7BA;
	width: 100%;
	border: 0;
	box-shadow: none;
	padding: 5px;
}

/*---------------*/

/*SCROLL*/
.horizon-scroll {
	overflow: hidden;
	overflow-x: scroll;
}
.horizon-scroll::-webkit-scrollbar {
	height: 4px;
	border-radius: 3px;
}
.horizon-scroll::-webkit-scrollbar-thumb {
  background-color: #EEEEEE;
}

.vertical-scroll {
	overflow: hidden;
	overflow-y: scroll !important;
}
.vertical-scroll::-webkit-scrollbar {
	width: 4px;
	border-radius: 3px;
}
.vertical-scroll::-webkit-scrollbar-thumb {
  background-color: #EEEEEE;
}


/*SLISER ARROW*/
.slider-nav {
	display: flex;
	align-items: center;
}
.swiper-button-next,
.swiper-button-prev {
	position: initial !important;
	width: 32px !important;
	flex: 0 0 32px;
	height: 32px !important;
	background: #F5F5FB;
	border-radius: 16px;
	margin: 0 !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 11px !important;
	font-weight: 900;
	color: #AEAEAE;
}
.swiper-pagination {
	position: initial !important;
	/* width: auto !important; */
	margin: 0 15px;
	line-height: 5px;
}
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 0 !important;
    transform: none !important;
}
.swiper-pagination-bullet {
	width: 4px !important;
	height: 4px !important;
	background: #A4A4A4 !important;
	border-radius: 2px;
	margin: 0 2px !important;
	opacity: 1 !important;
}
.swiper-pagination-bullet-active {
	background: #4F4F4F !important;
}


/*HEADER*/
#top {
	background: #FFFFFF;
	padding: 10px 0;
}
.top__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#top_nav,
.footer__nav-items  {
	margin: 0 -15px;
}
#top_nav a,
.footer__nav-item  {
	text-decoration: none;
	letter-spacing: 0.1px;
	color: #888888;
	font-weight: 500;
	padding: 0 15px;
	transition: 0.5s;
}
#top_nav a.current,
.footer__nav-item.current  {
	color: #8C8CEA;
}
#top_nav a:hover {
	color: #606083;
	transition: 0.5s;
}
#top_nav a:focus,
#top_nav a:active {
	color: #102A83;
	transition: 0.5s;
}
#top .login,
.header__lk-link {
	display: flex;
	align-items: center;
	letter-spacing: 0.1px;
	color: #888888;
	text-decoration: none;
	font-weight: 500;
}
#top .login:before,
.header__lk-link:before {
	content: '';
	display: block;
	width: 16.5px;
	height: 19.5px;
	background: url(../img/user.svg) no-repeat;
	margin-right: 18px;
}

.top__right {
	display: flex;
	align-items: center;
}
.basket-block {
	display: flex;
	align-items: center;
	margin-right: 35px;
	text-decoration: none;
}
.basket-block__icon {
	position: relative;
	margin-right: 15px;
	height: 24px;
}
.basket-block__point {
	position: absolute;
	top: 2px;
    right: -2px;
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #FF4040;
	border-radius: 50%;
}
.shopping-cart {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../img/shopping-cart.svg) no-repeat;
}
.basket-block__title {
	display: block;
	letter-spacing: 0.1px;
	line-height: 16px;
	font-weight: 500;
	font-size: 13px;
	color: #888888;
	text-decoration: none;
}
.basket__summa {
	font-weight: 400;
}
.basket-block__text {
	font-size: 10px;
	line-height: 12px;
	letter-spacing: 0.1px;
	color: #888888;
}

.header {
	background: #F1F1F8;
	padding: 10px 0;
}
.header__inner,
.header__left,
.header-scroll__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.call-back-header,
.pay-order-btn {
	display: inline-block;
	padding: 5px 10px;
    font-size: 12px;
	line-height: 14px;
	border-radius: 8px;
}
.call-back-header {
	margin-right: 15px;
}
.call-free__text,
.pay-order__text {
	letter-spacing: 0.1px;
	font-weight: 300;
	font-size: 10px;
	line-height: 10px;
	margin-bottom: 3px;
}
.call-free__phone,
.pay-order__title {
	display: block;
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	text-decoration: none;
	color: #4F4F4F;
}
.call-free {
	margin-right: 15px;
}
.messengers-items {
	display: flex;
	align-items: center;
}
.messengers-item {
	display: block;
}
.messengers-item svg {
	width: 24px;
	height: 24px;
}
.messengers-item.viber svg {
	fill: #7F4DA0;
	transition: 0.5s;
}
.messengers-item.whatsapp svg {
	fill: #25D366;
}
.messengers-item:not(:last-child) {
	margin-right: 8px;
}
.messengers-item:hover svg {
	fill: #5656CA;
	transition: 0.5s;
}
.messengers-item:active svg,
.messengers-item:focus svg {
	fill: #102A83;
}
.site-logo {
	width: 60px;
}
.pay-order {
	display: flex;
	align-items: center;
}
.pay-order__content {
	text-align: right;
	margin-right: 15px;
}
.logo-text {
	letter-spacing: 0.1px;
	color: #102A83;
	font-size: 14px;
	margin-left: 35px;
	font-family: 'Mont';
	font-weight: 600;
}
.basket-block__link {
	text-decoration: none;
	color: #888888;
}

/*Search block*/
.search-block__inner {
	position: relative;
}
.search-block__dropdown {
	display: none;
	height: 300px;
	padding: 17px 0 12px;
	overflow: hidden;
	position: absolute;
    z-index: 3;
    background: #fff;
    width: 100%;
	border: 1px solid #8C8CEA;
	border-top: 0;
	border-radius: 0 0 8px 8px;
	top: 27px;
}
.search-block__dropdown-input {
	height: 100%;
	margin-right: 5px;
}
.search-products__items {
	/* display: flex; */
	/* align-items: center; */
	/* flex-wrap: wrap; */
	margin: 0 -7px;
}
.search-products__items.horizon-scroll {
	/* flex-wrap: nowrap; */
	white-space: nowrap;
	margin: 0 -14px 0 -4px;
	/* padding-bottom: 12px; */
}
.search-products__items.horizon-scroll .search-product {
	padding: 0 4px;
}
.search-product {
	/* max-width: 33.333333%; */
	/* flex: 0  0 33.333333%; */
	display: inline-block;
	padding: 0 7px;
	margin-bottom: 12px;
}
.search-product:hover .search-product__inner {
	background: #D8D8FF;
	transition: 0.5s;
}
.search-product__inner {
	display: flex;
	align-items: center;
	background: #F1F1F8;
	border-radius: 12px;
	padding: 12px;
	text-decoration: none;
	transition: 0.5s;
}
.search-product__img {
	width: 32px;
	height: 32px;
	background: #FFFFFF;
	border-radius: 4px;
	text-align: center;
	margin-right: 8px;
}
.search-product__img img {
	width: 22px;
}
.search-product__content {
	flex: 1;
}
.search-product__title {
	font-size: 12px;
	line-height: 16px;
	color: #929292;
}
.search-product__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-product__count {
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	color: #A9A9A9;
}
.search-product__price {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	color: #4F4F4F;
	margin-left: 17px;
}
.search-block__input {
	position: relative;
	z-index: 4;
}
.search-block__input:after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 6px;
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/Search.svg) no-repeat;
}
.search-block__input-inner {
	width: 100%;
	font-size: 12px;
	background: #FFFFFF;
	border: 1px solid #8C8CEA;
	border-radius: 8px;
	padding: 3px 30px 3px 8px;
	line-height: 24px;
}
.search-block__input-inner:placeholder {
	color: #A4A4A4;
}
.search-block__inner.show .search-block__dropdown {
	display: block;
}
.search-products  {
	padding: 0 12px;
}
.search-products + .search-products {
	margin-top: 12px;
}
.search-products__title {
	font-size: 11px;
	line-height: 16px;
	margin-bottom: 12px;
}
.search-products:nth-child(1) {
	padding-bottom: 3px;
	box-shadow: 0px 0.5px 0px rgba(79, 79, 79, 0.13);
}
.search-product__title mark {
	background: #FFE600;
}
.search-product__tag {
	font-size: 11px;
	line-height: 11px;
	color: #4F4F4F;
	padding: 4px;
	background: #FFE500;
	border-radius: 12px;
}
.search-product__tag + .search-product__tag {
	margin-left: 4px;
}
.search-tag {
	display: inline-flex;
	align-items: center;
	background: #F5F4FF;
	border-radius: 12px;
	padding: 4px 10px;
	text-decoration: none;
	transition: 0.5s;
	margin-bottom: 4px;
}
.search-tag:hover {
	background: #5656CA;
	color: #fff;
	transition: 0.5s;
}
.search-tag:focus,
.search-tag:active {
	background: #102A83;
	color: #fff;
}
.search-tag__text {
	font-size: 11px;
	line-height: 11px;
	color: #818181;
	margin-right: 5px;
}
.search-tag:hover .search-tag__text,
.search-tag:hover .search-tag__icon {
	color: #fff;
}
.search-tag__icon {
	width: 16px;
    height: 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
	color: #818181;
}


/*Header scroll*/
.header-scroll {
	position: fixed;
	transform: translateY(-100%);
	transition: 0.2s;
    width: 100%;
    top: 0;
    z-index: 9999;
	padding: 8px 0;
	background: #F1F1F8;
}
.header-scroll.show {
	transform: translateY(0);
	transition: 0.2s
}
.header-scroll .header__center {
	max-width: 480px;
	flex: 0 0 480px;
}
.header-scroll .search-block {
	width: 100%;
}
.header-scroll .product-empty {
	max-width: 450px;
	margin: 15px auto;
}


/*Footer*/
.footer {
	margin-top: 40px;
}
.footer__top {
	background: #fff;
	padding: 5px 0;
	box-shadow: inset 0px 1px 0px #F1F1F8;
}
.footer__bottom {
	background: #F1F1F8;
	padding: 25px 0;
}
.footer__nav {
	display: flex;
	align-items: center;
}
.footer__left {
	max-width: 160px;
	flex: 0 0 160px;
	margin-right: 70px;
}
.footer__right {
	flex: 1;
}
.footer__logo {
	max-width: 60px;
	line-height: 1;
}
.footer__bottom-inner {
	display: flex;
}
.footer__cols {
	display: flex;
	margin: 0 -15px;
}
.footer__col {
	max-width: 20%;
	flex: 0 0 20%;
	padding: 0 15px;
}
.footer__left .call-back-header {
	width: 100%;
	margin-bottom: 8px;
}
.footer__contacts {
	margin-top: 10px;
}
.footer__text {
	font-weight: 300;
	font-size: 10px;
	line-height: 10px;
}
.footer__phone {
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	margin-bottom: 5px;
}
.footer__email {
	color: #8C8CEA;
	font-size: 11px;
	line-height: 11px;
	text-decoration: none;
}

/*accordion*/
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordion-header__arrow {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/arrow-back.svg) no-repeat;
    background-position: center center;
	transform: rotate(-90deg);
	transition: 0.5s;
}
.accordion-header__arrow.active {
    transform: rotate(90deg);
}
/*
.accordion-header:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/arrow-back.svg) no-repeat;
    background-position: center center;
    transform: rotate(-90deg);
	transition: 0.5s;
}
.accordion-header.active:after {
    transform: rotate(90deg);
	transition: 0.5s;
}*/
.accordion-body {
    display: none;
    overflow: hidden;
}

/*-----------------*/
/*Page content*/
.page-content {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
}
.page-content__right {
	max-width: 820px;
	flex: 0 0 820px;
	margin-left: 55px;
}
.page-content__left {
	max-width: 280px;
	flex: 0 0 280px;
}

/*Left column*/
/*Каталог меню*/
.site-menu {
	margin-bottom: 30px;
}
.site-menu__logo {
	max-width: 165px;
	margin-bottom: 30px;
}
.site-menu__link {
	display: block;
    padding: 10px 15px 10px 30px;
    letter-spacing: -0.3px;
	color: #A6A6A6;
    font-weight: 500;
    text-decoration: none;
	transition: 0.5s;
	 border-left: 3px solid transparent;
}
.site-menu__link:hover {
	color: #8C8CEA;
	transition: 0.5s;
}
.site-menu__link.accordion-header {
    display: flex;
}
.site-menu__item-catalog {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.site-menu__item-catalog .site-menu__item {
	margin-bottom: 0 !important;
}
.site-menu__item-catalog .accordion-header__arrow {
    margin: 0 15px;
}
/*
.site-menu__link {
    display: block;
    letter-spacing: -0.3px;
    color: #A6A6A6;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
}*/
.site-menu__item.active .site-menu__link  {
	border-left: 3px solid #D8D8FF;
    color: #4F4F4F;
}
.download-catalog__btn {
	font-weight: 500;
	font-size: 12px;
	line-height: 12px;
	padding: 5px 8px;
}
.site-menu__item.active > .site-menu__link {
	border-left: 3px solid #D8D8FF;
	color: #4F4F4F;
}
.site-menu__item:not(:last-child) {
	margin-bottom: 12px;
}
.site-menu__submenu .site-menu__link {
	font-weight: 300;
	color: #545454;
	padding: 5px 30px;
	margin: 5px 0;
	border: 0 !important;
}
.site-menu__submenu .site-menu__link.active {
	color: #8C8CEA;
}
.social-block {
	margin-bottom: 25px;
	background: #F1F1F8;
	border: 1px solid #F1F1F8;
	border-radius: 16px;
	padding: 10px 16px;
}
.social__items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.social-link {
	display: inline-block;
    line-height: 1;
	max-width: 50px;
	flex: 0 0 50px;
	/* padding: 0 15px; */
	margin: 10px 15px;
}

.about-app__title {
	display: block;
	letter-spacing: 0.02em;
	color: #000000;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 15px;
}
.about-app__link {
	display: block;
}
.about-app__link:not(:last-child) {
	margin-bottom: 10px;
}

.add-vk {
	background: #F1F1F8;
	border: 1px solid #F1F1F8;
	border-radius: 16px;
	padding: 15px;
	margin-bottom: 15px;
}
.home-page-block:not(:last-child) {
	margin-bottom: 35px;
}
.page-header {
	margin-bottom: 45px;
}
.page-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.page-title {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: #000000;
	margin: 0;
}
.page-header__right {
	display: flex;
}
.sort-bottle {
	display: flex;
	align-items: center;
	background: #F1F1F8;
	border-radius: 12px;
	color: #4F4F4F;
	cursor: pointer;
	padding: 5px 8px;
}
.sort-bottle + .sort-bottle {
	margin-left: 8px;
}
.sort-bottle svg {
	fill: #4F4F4F;
	margin-left: 8px;
}
.sort-bottle.active {
	background: #8C8CEA;
	color: #fff;
}
.sort-bottle.active svg {
	fill: #fff;
}

/*New product*/
.new-products {
	margin-bottom:
}
.new-products__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.products-blocks__header {
	margin-bottom: 20px;
}
.products-blocks__title {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.02em;
	color: #4F4F4F;
	margin: 0;
}
.products-blocks__header-right {
	display: flex;
	align-items: center;
}
.more-products {
	margin-right: 25px;
}
.more-products__link {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #8C8CEA;
	text-decoration: none;
}
.products-blocks__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.new-products__slider .swiper-slide {
	height: auto;
}
.new-products__slider .product-cart__labels {
	max-width: 90px;
	display: block;
}
.new-products__slider .product-cart__label:not(:last-child) {
	margin-bottom: 4px;
}

/*PRODUCT CART*/
.products-carts {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.products-carts .product-cart {
	padding: 0 10px;
	margin: 10px 0;
	height: auto;
}
.product-cart {
	height: 100%;
}
.product-cart__inner {
	position: relative;
	background: #F5F5FB;
	border-radius: 16px;
	padding: 15px;
	height: 100%;
}
/*three-cols*/
.three-cols .product-cart {
	max-width: 33.333333%;
	flex: 0 0 33.333333%;
}
.three-cols .product-cart__top {
	display: flex;
	align-items: center;
}
.three-cols .product-cart__image {
	padding: 0 10px;
}
.three-cols .product-cart__labels {
	max-width: 95px;
}
.three-cols .product-cart__label {
	margin: 0 0 4px;
}
.three-cols .product-cart__tegs {
	margin: 15px 0 0 0;
}

/*-----four cols---------*/
.four-cols .product-cart {
	max-width: 25%;
	flex: 0 0 25%;
}

/*-------one line--------*/
.one-line .product-cart {
	max-width: 100%;
	flex: 0 0 100%;
}
.one-line .product-cart__inner {
	display: flex;
}
.one-line .product-cart__left {
	display: flex;
	flex: 1;
	margin-right: 15px;
}
.one-line .product-cart__image {
	max-width: 75px;
    flex: 0 0 75px;
	padding: 0 10px;
}
.one-line .product-cart__labels {
	position: inherit;
	width: auto;
}
.one-line .volume-bottle {
	line-height: 16px;
	font-size: 11px;
	margin-bottom: 10px;
}
.one-line .product-cart__right {
	max-width: 170px;
	flex: 0 0 170px;
}
.one-line .product-cart__left-content {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.one-line .product-cart__left-bottom {
	display: flex;
}
.one-line .product-cart__tegs {
	margin: 0 0 0 25px;
}

.product-cart.long .product-cart__inner {
	display: flex;
	align-items: center;
}
.product-cart.short .product-cart__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.product-cart.short .product-cart__description {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.product-cart.short .product-cart__description-top {
	flex: 1;
}
.product-cart__description {
	flex: 1;
	overflow: hidden;
}
.product-cart__labels {
	position: absolute;
	left: 7px;
	top: 7px;
	width: calc(100% - 15px);
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
}
.product-cart__label {
	display: inline-block;
	font-weight: 500;
	font-size: 11px;
	line-height: 11px;
	border-radius: 12px;
	padding: 6px 10px;
	color: #fff;
	margin-bottom: 4px;
}
.product-cart__label.sale {
	background: #1877F2;
	padding: 5px 10px;
}
.product-cart__label.new {
	background: #15CF74;
}
.product-cart__label.discount {
	background: #F10065;
	padding: 5px 10px;
}
.btn-tooltip__discount {
	background: #9E334D;
	margin-right: -5px;
}
.product-cart__label:not(:last-child) {
	margin-right: 4px;
}
.product-cart__image {
	max-width: 95px;
	flex: 0 0 95px;
	padding: 0 15px;
	filter: drop-shadow(0px 3px 8px rgba(140, 140, 234, 0.18));
	border-radius: 8px;
	margin-right: 8px;
}
.product-cart__image img {
	border-radius: 8px;
}
.product-cart__name {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #696969;
	text-decoration: none;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-cart__name_s1 {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #696969;
	text-decoration: none;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-cart__name_uz {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #696969;
	text-decoration: none;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-cart__name__list {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #696969;
	text-decoration: none;
	overflow: hidden;
    text-overflow: ellipsis;
}
.product-cart__name__list_s1 {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #696969;
	text-decoration: none;
	overflow: hidden;
    text-overflow: ellipsis;
}
.product-cart__name__list_uz {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	color: #696969;
	text-decoration: none;
    text-overflow: ellipsis;
}
.product-cart__info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.product-cart__info-left {
	font-size: 10px;
	line-height: 16px;
}
.product-cart__price {
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
}
.product-cart__add {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	height: 40px;
	width: 100%;
	text-align: center;
}

.quantity-block {
	display: none;
}
.quantity-action {
	display: flex;
	align-items: center;
}
.quantity-action__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	flex: 0 0 40px;
	height: 40px;
	border-radius: 20px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: 0.5s;
	border: 0;
    padding: 0;
}
.quantity-action__btn.plus {
	background: #8C8CEA;
}
.quantity-action__btn.plus:hover {
	background: #5656CA;
	transition: 0.5s;
}
.quantity-action__btn.plus:active {
	background: #102A83;
	transition: 0.5s;
}
.quantity-action__btn.minus {
	background: #FFFFFF;
	color: #4F4F4F;
}
.quantity-action__btn.minus:hover {
	background: #E6E6FF;
	transition: 0.5s;
}
.quantity-action__btn.minus:active {
	background: #D8D8FF;
	transition: 0.5s;
}
.quantity-action__value {
	width: 100%;
	border: 0;
	text-align: center;
	font-size: 12px;
	background: transparent;
	line-height: 20px;
}
.product-cart__color-tegs {
	display: flex;
	align-items:center;
	margin-bottom: 8px;
}
.color-teg {
	display: none;
	width:25px;
	height: 25px;
	border: 1px solid #4F4F4F;
	border-radius: 12px;
	margin-right: 4px;
}
.color-teg:nth-child(-n+4) {
    display: inline-block;
}
.product-cart__material {
	margin-bottom: 15px;
}
.product-cart__material-title {
	font-size: 10px;
	line-height: 16px;
	margin-bottom: 4px;
}
.product-cart__material-type {
	display: inline-block;
	min-width: 74px;
	font-size: 11px;
	color: #373737;
	line-height: 11px;
	padding: 8px 15px;
	border-radius: 12px;
	text-decoration: none;
	text-align: center;
}
.product-cart__material-type.active {
	background: #8C8CEA;
	color: #fff;
	font-weight: 500;
}
.product-cart__material-type:not(:last-child) {
	margin-right: 4px;
}

/*Search block on right column*/
.general-search__block {
	margin-bottom: 25px;
}
.general-search__input {
	position: relative;
}
.general-search__input:after {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url(../img/search-big.svg) no-repeat;
}
.general-search__input-inner {
	width: 100%;
	padding: 12px 40px 12px 12px;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	font-size: 16px;
	line-height: 24px;
}
.general-search__input-inner:placeholder {
	color: #A4A4A4;
}
.general-search__input-inner::-webkit-search-cancel-button {
	cursor: pointer;
	width: 24px;
	height: 24px;
	background: url(../img/input-type-search.svg) no-repeat;
	-webkit-appearance: none;
}
.search-block__input-inner::-webkit-search-cancel-button {
	cursor: pointer;
	width: 20px;
	height: 20px;
	background: url(../img/input-type-search.svg) no-repeat;
	background-size: 20px;
	-webkit-appearance: none;
}
.general-search__block .search-block__dropdown  {
	top: 49px;
	border: 0;
	border-radius: 0px 0px 12px 12px;
	filter: drop-shadow(0px 1px 23px rgba(79, 79, 79, 0.13));
}
.general-search__block .search-block__inner.show {
	border-radius: 12px 12px 0 0;
	filter: drop-shadow(0px 1px 23px rgba(79, 79, 79, 0.13));
	z-index: 12;
}
.general-search__block .product-empty {
	max-width: 480px;
	margin: 15px auto;
}
.product-empty__title {
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #373737;
	margin-bottom: 15px;
}
.product-empty__input-text {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 8px;
	color: #8C8CEA;
}
.product-empty__text {
	font-size: 12px;
	line-height: 16px;
	color: #373737;
}
.product-empty__icon {
	max-width: 88px;
	flex: 88px;
	margin-left: 50px;
}
.product-empty__inner {
	display: flex;
	align-items: center;
	background: #F5F5FB;
	border-radius: 16px;
	padding: 25px;
}

/*tags-block*/
.tags-block {
	margin-bottom: 	30px;
}
.tags-block__title {
	font-size: 11px;
	line-height: 16px;
	margin-bottom: 12px;
}
.tags-block__inner {
	position: relative;
}
.tags-block__inner:after {
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	width: 35px;
	height: 100%;
	background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.tags-block__items  {
	display: flex;
	padding-bottom: 10px;
}
.tags-block__item {
	display: inline-block;
	padding: 6px 10px;
	margin-right: 8px;
	background: #F5F4FF;
	border-radius: 12px;
	font-size: 11px;
	line-height: 12px;
	text-decoration: none;
	transition: 0.5s;
	color: #4F4F4F;
}
.tags-block__item:hover {
	transition: 0.5s;
	background: #5656CA;
	color: #fff;
}
.tags-block__item:active,
.tags-block__item:focus {
	transition: 0.5s;
	background: #102A83;
	color: #fff;
}

.products-blocks .swiper-slide {
	height: auto;
}
.product-cart__img {
	display: block;
	text-decoration: none;
	color: #696969;
}
.product-cart.short .product-cart__img-inner {
	display: block;
	padding: 0;
	max-width: 90px;
	filter: drop-shadow(0px 3px 8px rgba(140, 140, 234, 0.18));
	border-radius: 8px;
	margin: 0 auto 15px;
}
.product-cart.short .product-cart__img-inner img {
	border-radius: 8px;
}
.product-cart.short .product-cart__info {
	margin-bottom: 10px;
}
.product-cart.short .product-cart__add {
	width: 100%;
}
.product-cart__tegs {
	margin-bottom: 15px;
}
.product-cart__teg {
	display: none;
	background: #FFFFFF;
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	color: #4F4F4F;
	padding: 6px 10px;
	text-decoration: none;
	margin: 0 4px 4px 0;
	transition: 0.5s;
}
.product-cart__teg:nth-child(-n+3) {
	display: inline-block;
}
.product-cart__teg:hover {
	transition: 0.5s;
	background: #5656CA;
	color: #fff;
}
.product-cart__teg:active,
.product-cart__teg:focus {
	transition: 0.5s;
	background: #102A83;
	color: #fff;
}
.product-cart__teg.selected {
	background: #8C8CEA;
	color: #fff;
}
.tag-count {
	cursor: pointer;
	display: inline-block;
}

/*category-blocks*/
.category-blocks__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: -15px -9px;
}
.category-block {
	max-width: 33.333333%;
	flex: 0 0 33.333333%;
	padding: 15px 9px;
}
.category-block__title {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 15px;
}
.category-block__content {
	display: flex;
	align-items: center;
	background: #F5F5FB;
	border-radius: 16px;
	padding: 15px;
}
.category-block__img {
	max-width: 70px;
	border-radius: 8px;
	margin-right: 15px;
}
.category-block__img img {
	border-radius: 8px;
}
.category-block__count {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 8px;
	letter-spacing: 0.02em;
	color: #696969;
}
.category-block__link  {
	width: 100%;
	font-weight: 500;
}


/*Отображение карточек*/
.page-panel {
	margin-bottom: 25px;
}
.page-panel__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.page-panel__tags {
	display: flex;
	flex-wrap: wrap;
}
.page-panel__tag {
	background: #F1F1F8;
	border-radius: 12px;
	color: #373737;
	padding: 5px 8px;
	font-size: 14px;
	text-decoration: none;
}
.page-panel__tag:not(:last-child) {
	margin-right: 8px;
}
.page-panel__tag.active {
	background: #8C8CEA;
	color: #fff;
}
.page-panel__right {
	display: flex;
	align-items: center;
}
.page-panel__visions {
	display: flex;
}
.page-panel__vision {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 50px;
	height: 30px;
	background-color: #F1F1F8;
	border-radius: 12px;
	background-position: center center;
	cursor: pointer;
}
.page-panel__vision svg path {
	fill: #4F4F4F;
}
.page-panel__vision.active svg  path {
	fill: #fff;
}
.page-panel__vision:not(:last-child) {
	margin-right: 8px;
}
.page-panel__vision.active {
	background-color: #8C8CEA;
}
.page-panel__vision.four svg {
	width:16px;
	height: 14px;
}
.page-panel__vision.three {
	background-image: url(../img/three-cols.svg);
	background-repeat: no-repeat;
}
.page-panel__vision.line {
	background-image: url(../img/lists.svg);
	background-repeat: no-repeat;
}

.count-product {
	display: flex;
	align-items: center;
	margin-left: 25px;
}
.count-product__title {
	font-size: 15px;
	line-height: 15px;
	margin-right: 10px;
}
.count-product__select {
	position: relative;
}
.count-product__select-btn {
	display: flex;
	align-items: center;
	border: 0;
	padding: 6px 15px;
	background: #F1F1F8;
	border-radius: 12px;
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #373737;
}
.count-product__select-btn span {
	display: inline-block;
	width: 30px;
}
.count-product__select-btn::after {
    display: inline-block;
    margin-left: 10px;
    content: "";
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
	transition: 0.5s;
}
.count-product__select.active .count-product__select-btn::after {
	transform: rotate(-180deg);
	transition: 0.5s;
}
.count-product__select.active .count-product__select-menu {
	display: block;
}
.count-product__select-menu {
	display: none;
	position: absolute;
	top: 40px;
	width: 100%;
	z-index: 99;
}
.count-product__select-items {
	background: #F1F1F8;
	border-radius: 12px;
	filter: drop-shadow(0px 0px 11px rgba(0, 0, 0, 0.23));
	padding: 4px 8px;
}
.count-product__select-item {
	padding: 5px 0;
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #929292;
	cursor: pointer;
	text-align: center;
}
.count-product__select-item.active {
	color: #373737;
	font-weight: 400;
}
.count-product__select-item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

/*breadcrumbs*/
.breadcrumbs {
	margin-bottom: 45px;
}
.breadcrumbs__items {
	display: flex;
	align-items: center;
}
.breadcrumbs__item {
	position: relative;
	display: inline-block;
	text-decoration-line: underline;
	font-size: 12px;
	line-height: 16px;
	color: #4F4F4F;
}
.breadcrumbs__item:not(:last-child) {
	padding-right: 17px;
	margin-right: 10px;
}
.breadcrumbs__item:not(:last-child):after {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	/* height: 16px; */
	content: "\203A";
	color: #4F4F4F;
	font-size: 16px;
}
.breadcrumbs__item.active {
	color: #8C8CEA;
	font-weight: 500;
	text-decoration: none;
}

/*btn-tooltip*/
.btn-tooltip {
	display: inline-flex;
	width: 16px;
	height: 16px;
	border-radius: 30px;
	color: #fff;
	border: 0;
	padding: 0;
	align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
	margin-left: 4px;
}
.btn-tooltip__sale {
	background: #3655A4;
	margin-right: -5px;
}


/*------------*/
.page-header__info {
	display: none;
	padding-top: 20px;
}
.info-block__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	background: #F1F1F8;
	border-radius: 12px;
	transition: 0.5s;
	cursor: pointer;
}
.info-block__btn.active {
	background: #8C8CEA;
	transition: 0.5s;
}
.info-block__btn-arrow {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #4F4F4F;
	transition: 0.5s;
}
.info-block__btn.active .info-block__btn-arrow {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 0;
	border-bottom: 5px solid #fff;
	transition: 0.5s;
}
.page-header__info-content {
	display: flex;
	align-items: center;
	background: #F5F4FF;
	border-radius: 16px;
	padding: 15px;
}
.page-header__info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	flex: 0 0 40px;
	height: 40px;
	background: #FFFFFF;
	border-radius: 16px;
	font-size: 28px;
	color: #8C8CEA;
	margin-right: 15px;
}
.page-header__info-text {
	line-height: 18px;
	letter-spacing: 0.5px;
}

/*404*/
.error-block__inner {
	position: relative;
	max-width: 480px;
	background: #F5F5FB;
	border-radius: 16px;
	padding: 50px 40px 40px;
}
.error-block__content {
	position: relative;
	z-index: 2;
}
.error-block__fon {
	position: absolute;
	top: 0px;
	right: 0px;
}
.error-block__title {
	font-weight: 500;
	font-size: 22px;
	line-height: 24px;
	font-weight: 500;
	color: #000;
	margin-bottom: 25px;
}
.error-block__text {
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.02em;
	color: #000000;
	margin-bottom: 35px;
}
.error-block__link {
	width: 265px;
    text-align: center;
}


/*VK block*/

/*LOADER*/
/* .new-products__slider,
.products-slider {
	display: none;
} */
/*
.loader {
	position: fixed;
	height: 100vh;
	width: 100%;
	background: #fff;
	z-index: 99999;
}
.loader__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.loader__img {
	max-width: 300px
}
.loader__img img {
	width: 100%;
}
*/
