:root {
	--color-text: #1E1E1E;
	--color-dark-grey: #8B8B8B;
	--color-red: #E42348;
	--color-green: #0D9633;
	--color-orange: #E27A00;
	--color-red-press: #FF8B92;
	--color-overlay: rgba(83, 73, 75, 0.2);
	--color-light-grey: #E5E5E5;
	--color-border-grey: #D9D9D9;
	--color-white: #FFFFFF;

	font-weight: 400;
	color: var(--color-text);
}

* {
	box-sizing: border-box!important;
	margin: 0;
	padding: 0;
	outline: none;
	font-family: "Roboto", "Arial", sans-serif!important;
}

html,
body {
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 30px;
	margin-top: 20px;
}

h2 {
	font-weight: 700;
	font-size: 28px;
	line-height: 33px;
}

h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
}

.limiter {
	max-width: 1150px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

.red {
	color: var(--color-red);
}

/* Header */
header {
	position: sticky;
	top: -34px;
	box-shadow: 0px 6px 10px rgba(31, 22, 24, 0.1);
	background: var(--color-white);
	z-index: 10;
}

header ul,
footer ul {
	list-style: none;
}

.header-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

.geolocation {
	display: flex;
	align-items: center;
}

.geolocation img {
	margin-right: 10px;
}

.header-menu .geolocation,
.header-menu .header-main_button_order,
.header-menu .footer_phones {
	display: none;
}

.phone-numbers,
.phone-number {
	display: flex;
	align-items: center;
}

.phone-number:not(:last-child) {
	margin-right: 34px;
}

.phone-number p {
	margin: 0 0 0 6px;
	font-size: 12px;
	line-height: 14px;
}

.header-main {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
}

.header-main>*:not(:last-child) {
	margin-right: 30px;
}

.header-main_first {
	display: flex;
}

.header-main_burger {
	display: none;
}

.header-main_logo {
	display: block;
	height: 45px;
	width: 233px;
	background: url('/local/templates/aspro_mshop/images/redisign/logo.png') no-repeat left center/contain transparent;
}

.header-main_search,
.search_middle_block {
	flex: 1;
	position: relative;
}

.header-main_search_result {
	background: var(--color-white);
	border: 1px solid var(--color-text);
	border-radius: 10px;
	width: 540px;
	padding: 0px 14px 12px;
	right: 0;
	top: 53px;
	display: block;
}

.header-main_title__soldout {
	font-size: 14px;
	line-height: 16px;
	color: var(--color-red);
	padding: 12px 0 10px;
}

.header-main_title__analogs {
	font-weight: 700;
}

.header-search_result_item {
	padding: 10px 0;
	display: flex;
	border-bottom: 1px solid var(--color-border-grey);
}

.header-search_result_item img {
	display: block;
	width: 80px;
	height: 60px;
	margin-right: 10px;
	object-fit: contain;
}

.header-search_result_desc {
	color: var(--color-red);
}

.header-search_result_availability {
	font-size: 14px;
	line-height: 16px;
	margin-top: 4px;
	display: flex;
	align-items: center;
}

.header-search_result_availability.availability__instock {
	color: var(--color-green);
}

.header-search_result_availability.availability__soldout {
	color: var(--color-orange);
}

.header-search_result_availability::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	background: no-repeat center transparent;
}

.availability__instock::before {
	background-image: url('images/icons/check.svg');
}

.availability__soldout::before {
	background-image: url('images/icons/soldout.svg');
}

.header-search_result_more {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 15.5px 10px;
	color: var(--color-red);
	margin-top: 10px;
}

.header-search_result_more::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url('images/icons/more.svg') no-repeat center/contain transparent;
	margin-left: 20px;
}

.header-main_search_input {
	position: relative;
}

.header-main_search_input input[type="text"] {
	width: 100%;
	font-size: 16px;
	line-height: 19px;
	padding: 12px 14px;
	border: 1px solid var(--color-text);
	border-radius: 20px;
	transition: all .3s ease;
}

.header-main_search_input input[type="text"]:focus {
	border-color: var(--color-red);
}

input[type="submit"] {
	cursor: pointer;
}

.header-main_search_input input[type="submit"] {
	display: block;
	width: 20px;
	height: 20px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/search.svg') no-repeat center/contain transparent;
	border: 0;
	position: absolute;
	top: calc(50% - 10px);
	right: 14px;
	transition: all .3s ease;
}

.header-main_search_input input[type="text"]:focus+input[type="submit"] {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/search_focus.svg');
}

.header-main_search_examplas {
	margin-top: 10px;
	display: flex;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-dark-grey);
}

.header-main_search_examplas a {
	display: block;
	margin-left: 10px;
	border-bottom: 1px dashed;
}

.header-main_buttons {
	display: flex;
}

.header-main_buttons>*:not(:last-child) {
	margin-right: 10px;
}

.header-main_buttons a {
	display: block;
	text-align: center;
	padding: 0 10px;
	font-size: 14px;
	line-height: 16px;
	transition: all .3s ease;
}

.header-main_buttons a:hover {
	color: var(--color-red);
}

.header-main_buttons_icon {
	position: relative;
	width: 24px;
	height: 24px;
	margin: 0 auto 4px;
}

.header-main_buttons a:hover .header-main_buttons_icon path {
	fill: var(--color-red);
	transition: all .3s ease;
}

.header-main_buttons_icon .icon_amount {
	position: absolute;
	width: 16px;
	height: 16px;
	left: 16px;
	top: 0px;
	background: var(--color-red);
	border-radius: 50%;
	color: var(--color-white);
	font-size: 10px;
	line-height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-main_buttons .header-main_button_account {
	padding: 0;
}

.header-main_buttons .header-main_button_order {
	padding: 0 6.5px;
}

.header-menu {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
	height: 50px;
	visibility: visible;
	opacity: 1;
	transition: all .3s ease;
}

.sticky .header-menu {
	visibility: hidden;
	opacity: 0;
	height: 0px;
}

.header-menu>li {
	position: relative;
}

.header-menu>li>a {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

li.header-menu_catalog>span {
	text-align: left;
	justify-content: start;
	color: #C50026;
	cursor: pointer;
}

.link_back {
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	font-weight: 700;
	display: none;
	margin-bottom: 15px;
	text-align: center;
}

.link_back::before {
	content: "";
	display: block;
	min-width: 16px;
	min-height: 16px;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/arrow.svg') no-repeat center/contain transparent;
	transform: rotate(180deg);
}

.link_back::after {
	content: "";
	display: block;
	min-width: 16px;
	min-height: 16px;
	width: 16px;
	height: 16px;
}

.header-menu_catalog>span {
	display: flex;
	align-items: center;
}

.header-menu_catalog>span::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/redisign/icons/catalog.svg') no-repeat center/contain;
	margin-right: 10px;
}

.header-menu_catalog.active .header-menu_catalog__wrapper>span::before {
	background-image: url('../images/redisign/icons/catalog_close.svg');
}
.header-menu_catalog .header-menu_catalog__wrapper {
	position: absolute;
	top: 0;
	height: calc(100vh - 170px);
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease;
}

.header-menu_catalog .header-menu_catalog__wrapper > ul {
	position: absolute;
	top: 37px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px rgba(31, 22, 24, 0.2);
	padding: 20px 0;
	transition: all .3s ease;
}

.header-menu_catalog.active .header-menu_catalog__wrapper {
	visibility: visible;
    opacity: 1;
}

.header-menu_catalog .header-menu_catalog__wrapper>ul>li {
	padding: 6px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 250px;
}

.header-menu_catalog .header-menu_catalog__wrapper>ul>li:hover {
	background-color: #F2F2F2;
}

.header-menu_catalog .header-menu_catalog__wrapper>ul>li::after {
	content: "";
	display: block;
	min-width: 16px;
	min-height: 16px;
	width: 16px;
	height: 16px;
	background: url('../images/redisign/icons/arrow.svg') no-repeat center/contain transparent;
	margin-left: 10px;
}

.menu_catalog-second {
	display: flex;
	position: absolute;
	visibility: hidden;
	left: 100%;
	top: 0;
	bottom: 0;
	background: var(--color-white);
	padding: 10px 20px;
	z-index: -1;
	width: 880px;
	box-shadow: 0px 10px 20px rgba(31, 22, 24, 0.2);
}

.header-menu_catalog .header-menu_catalog__wrapper:hover>ul>li:hover .menu_catalog-second {
	visibility: visible;
}

.menu_catalog-second ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(13, 1fr);
	grid-auto-flow: column;
	width: 490px;
	height: 100%;
	max-height: 550px;
	font-size: 14px;
	line-height: 16px;
	padding: 10px 0;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.menu_catalog-second ul::-webkit-scrollbar {
	display: none;
}

.menu_catalog-second ul>li {
	width: 220px;
	padding: 6px 0;
	margin-right: 10px;
	margin-bottom: 10px;
}

.menu_catalog-second .link_back {
	padding: 0;
}

.more_categories a {
	text-decoration: underline;
}

.menu_catalog-hits {
	width: 370px;
	border-left: 1px solid var(--color-border-grey);
	padding: 10px 20px;
}

.menu_catalog-hits h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 14px;
}

.catalog-hits_item {
	display: flex;
	align-items: stretch;
	margin-bottom: 20px;
}

.catalog-hits_item img {
	display: block;
	width: 70px;
	height: 100px;
	object-fit: contain;
	margin-right: 10px;
}

.catalog-hits_item_text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 14px;
	line-height: 16px;
}

.catalog-hits_item_desc {
	font-size: 12px;
	line-height: 14px;
	color: var(--color-dark-grey);
	margin-top: 4px;
}

.catalog-hits_price {
	font-weight: 700;
}

.header-menu_parent>a::after {
	content: "";
	display: block;
	min-width: 16px;
	min-height: 16px;
	width: 16px;
	height: 16px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/arrow.svg') no-repeat center/contain transparent;
	margin-left: 10px;
	transform: rotate(90deg);
	transition: all .3s ease;
}

.header-menu_parent:hover>a::after {
	transform: rotate(-90deg);
}

.header-menu_parent>ul {
	position: absolute;
	visibility: hidden;
	background-color: var(--color-white);
	box-shadow: 0px 6px 10px rgba(31, 22, 24, 0.1);
	left: 0;
	right: 0;
}

.header-menu_parent:hover,
.header-menu_parent>ul a:hover {
	background-color: #F2F2F2;
}

.header-menu_parent:hover>ul {
	visibility: visible;
}

.header-menu_parent>ul a {
	display: block;
	padding: 15.5px;
	text-align: center;
}


/* Header */

/* Footer */
footer {
	box-shadow: 0px -7px 10px rgba(31, 22, 24, 0.1);
	padding: 30px 0;
}

footer .subscrube {
	margin: 0px auto 30px;
	width: fit-content;
	display: flex;
	align-items: center;
}

footer .subscrube_title {
	display: flex;
	align-items: center;
	margin-right: 30px;
}

footer .subscrube_title img {
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

footer .subscrube_title p {
	padding: 0 20px 0 15px;
}

footer .subscrube input {
	border: 1px solid var(--color-text);
	border-radius: 20px;
	padding: 12px 14px;
	width: 100%;
	max-width: 300px;
	background-color: #fff;
	text-transform: capitalize;
	line-height: inherit;
}

footer .subscrube input:focus {
	border-color: var(--color-red);
}

footer .subscrube input[type="submit"] {
	border: 0;
	background: var(--color-red);
	color: var(--color-white);
	margin-left: 15px;
	width: 170px;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}

footer .subscrube input[type="submit"]:active {
	background: var(--color-red-press);
}

.footer_columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.footer_phones {
	display: flex;
	margin-top: 15px;
}

.footer_phones-icon {
	margin-right: 15px;
}

.footer_phone a {
	font-weight: 500;
	font-size: 16px;
	color: #000;
}

.footer_phone p {
	font-size: 12px;
	line-height: 14px;
	margin-top: 6px;
}

.footer_phone:not(:last-child) {
	margin-bottom: 15px;
}

.footer_soc-list {
	display: flex;
	margin-top: 30px;
}

.footer_soc-list>*:not(:last-child) {
	margin-right: 15px;
}

.footer_soc-item {
	display: block;
	width: 30px;
	height: 30px;
	background: no-repeat center/contain transparent;
}

.footer_soc-item__vk {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/vk.svg');
}

.footer_soc-item__wa {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/wa.svg');
}

.footer_soc-item__ok {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/ok.svg');
}

.footer_soc-item__tg {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/tg.svg');
}

.footer_soc-item__yt {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/yt.svg');
}

.footer_callback {
	display: block;
	padding: 15.5px;
	font-weight: 500;
	background: var(--color-red);
	color: var(--color-white);
	border-radius: 30px;
	margin-top: 30px;
	text-align: center;
}

.footer_callback:active {
	background: var(--color-red-press);
}

.footer_parent {
	display: block;
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 15px;
}

.footer_column ul {
	display: grid;
	gap: 15px;
}

.footer_column .app {
	display: block;
	width: 150px;
	height: 50px;
	margin-bottom: 15px;
}

.footer_column .app img {
	display: block;
	width: 100%;
	object-fit: contain;
}

.footer_column .outlink {
	display: block;
	margin-top: 35px;
	text-decoration: underline;
	color: #000;
}

.footer_copy {
	margin-top: 45px;
	color: var(--color-dark-grey);
	text-align: center;
}

.overlay.active {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--color-overlay);
	z-index: 100;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 20px);
	max-width: 580px;
	background: var(--color-white);
	z-index: 101;
	border-radius: 20px;
	padding: 20px;
	max-height: 100vh;
	overflow: auto;
	display: none;
	scrollbar-color: var(--color-red) #D9D9D9;
	scrollbar-width: thin;
}

.modal::-webkit-scrollbar {
	width: 10px;
}

.modal::-webkit-scrollbar-track {
	background: #D9D9D9;
}

.modal::-webkit-scrollbar-thumb {
	background: var(--color-red);
}

.modal.active {
	display: block;
}

.modal .close {
	display: block;
	width: 24px;
	height: 24px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/close.svg') no-repeat center/contain transparent;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}

.modal_title {
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 54px;
}

.modal_description {
	text-align: center;
	margin-bottom: 30px;
}

.selected_city {
	margin-bottom: 10px;
}

.selected_city span {
	font-weight: 600;
}

.city_search {
	margin-bottom: 30px;
}

.city_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(10, 1fr);
	grid-auto-flow: column;
	gap: 10px 20px;
	color: var(--color-red);
}

.city_list a {
	text-decoration: underline;
}

.banners {
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
}

/* /Footer*/
/* Banners */

.tns-outer {
	position: relative;
}

.banners_controls>button {
	position: absolute;
	top: 50%;
	left: 0px;
	cursor: pointer;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/arrow.svg') no-repeat center/20px #EAEAEA;
	border: 0;
	transform: translateY(-50%) rotate(180deg);
	z-index: 1;
}

.banners_controls>button[data-controls="next"] {
	left: auto;
	right: 0px;
	transform: translateY(-50%) rotate(0deg);
}

.banners_slider {
	overflow: hidden;
}

.banners_nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.banners_nav>button {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	border-color: #D9D9D9;
	border: 0;
	transition: all .3s ease;
	cursor: pointer;
}

.banners_nav>button:not(:last-child) {
	margin-right: 10px;
}

.banners_nav .tns-nav-active {
	width: 40px;
	background-color: var(--color-red-press);
}

.banner {
	width: 100%;
	height: 360px;
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	padding: 20px 40px;
	position: relative;
}

.banner_text {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	z-index: 1;
	width: 100%;
}

.banner_title {
	font-weight: 600;
	font-size: 28px;
	line-height: 33px;
	letter-spacing: 0.01em;
}

.banner_advantages {
	display: grid;
	gap: 10px;
	max-width: 550px;
}

.banner_advantages li {
	display: flex;
	align-items: start;
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
}

.banner_advantages li::before {
	content: "";
	display: block;
	min-width: 6px;
	min-height: 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin: 7px;
	margin-right: 13px;
	background: var(--color-text);
}

.banner_footer {
	flex: 1;
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.banner_disclaimer {
	max-width: 510px;
	font-weight: 300;
	font-size: 22px;
	line-height: 26px;
	text-transform: uppercase;
	color: #FFFFFF;
}

.banner_img {
	flex: 1;
	display: flex;
	justify-content: center;
	position: absolute;
	right: 97px;
}

.banner_period {
	font-weight: 300;
	font-size: 14px;
	line-height: 16px;
	color: #12003E;
	margin-left: 15px;
	flex: 1;
}

.banner_discount {
	position: absolute;
	font-weight: 600;
	font-size: 32px;
	line-height: 38px;
	text-align: center;
	color: #FFFFFF;
	padding: 10px 20px;
	background: linear-gradient(98.68deg, #599CFF -16.08%, #0059DE 109.26%);
	border-radius: 30px;
	left: -100%;
	top: 50%;
	width: fit-content;
	box-shadow: 3px 4px 4px rgba(50, 50, 50, 0.1);
}

.banner_kvatran {
	background-color: #E3DAF8;
}

.banner_kvatran .banner_title {
	color: #230074;
	margin-bottom: 10px;
}

.banner_kvatran .banner_description {
	color: #7252BD;
	margin-bottom: 34px;
	font-size: 16px;
}

.banner_kvatran .banner_advantages li::before {
	background: #7252BD;
}

.banner_kvatran .banner_img img {
	display: block;
	width: 125px;
	height: 280px;
	margin-top: 9px;
}

.banner_trekrezan {
	background-color: #C0E7FF;
}

.banner_trekrezan .banner_title {
	color: #002339;
	margin-bottom: 40px;
}

.banner_trekrezan .banner_description {
	color: #0D669D;
	margin-bottom: 15px;
}

.banner_trekrezan .banner_advantages li::before {
	background: #4089B8;
}

.banner_trekrezan .banner_img img {
	display: block;
	width: 345px;
	height: 170px;
}

.banner_trekrezan .banner_discount {
	right: 0;
	left: auto;
	background: linear-gradient(98.82deg, #AFDB00 -16.03%, #FF9900 -16.02%, #FFBA0A 96.64%);
}

.banner_trekrezan .banner_disclaimer {
	color: #91C4E4;
}

.banner_trekrezan .banner_img {
	top: 50%;
	bottom: auto;
	transform: translateY(-60%);
}

.banner_ketorolak {
	background-color: #B6F3D6;
}

.banner_ketorolak .banner_title {
	color: #004926;
	margin-bottom: 20px;
}

.banner_ketorolak .banner_description {
	color: #0B884D;
	margin-bottom: 15px;
}

.banner_ketorolak .banner_advantages li::before {
	background: #4089B8;
}

.banner_ketorolak .banner_discount {
	right: 0;
	left: auto;
	background: linear-gradient(98.82deg, #F33853 -16.03%, #FF7E86 96.64%);
}

.banner_ketorolak .banner_disclaimer {
	color: #66BB93;
}

.banner_ketorolak .banner_img {
	top: 50%;
	bottom: auto;
	transform: translateY(-60%);
}

.banner_ketorolak .banner_img img {
	display: block;
	width: 345px;
	height: 225px;
}

.banner.banner_logo {
	background: #D61D41;
	padding: 40px;
	align-items: center;
	justify-content: space-between;
	justify-items: center;
	display: grid;
	grid-template-columns: repeat(2, minmax(250px, 434px));
	gap: 40px;
	color: var(--color-white);
	text-align: center;
}

.banner_logo img {
	display: block;
	width: 100%;
}

.banner_logo-title {
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 30px;
}

.banner_logo-phone {
	font-weight: 300;
	font-size: 20px;
	line-height: 23px;
}

.banner_logo-phone:not(:last-child) {
	margin-bottom: 15px;
}

/* /Banners */

.main_h1 {
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Steps */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	gap: 15px;
}

.steps::before {
	z-index: -1;
	content: "";
	display: block;
	width: 70%;
	height: 1px;
	background-color: var(--color-dark-grey);
	position: absolute;
	top: 22px;
	left: 13%;
}

.step {
	max-width: 235px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step_number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: #F1F1F1;
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	color: #1E1E1E;
	margin-bottom: 15px;
}

.step_icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	margin-right: 15px;
}

.step_icon img {
	display: block;
	width: 100%;
	object-fit: contain;
}

.step_content {
	display: flex;
	align-items: center;
}

/* /Steps	*/
/* Grid banners */
.grid-banners {
	padding-top: 30px;
	padding-bottom: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.grid-banners_item {
	padding: 10px;
	border-radius: 10px;
	background: #FFEAF0;
	display: flex;
	flex-direction: column;
}

.grid-banners_title {
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 10px;
}

.grid-banners_description {
	margin-bottom: 10px;
}

.grid-banners_advantages {
	font-size: 14px;
	line-height: 16px;
	display: grid;
	gap: 5px;
	margin-bottom: 10px;
}

.grid-banners_advantages li {
	display: grid;
	grid-template-columns: 10px 1fr;
	gap: 7px;
	align-items: center;
}

.grid-banners_advantages li::before {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	border-radius: 6px;
	background: #C50026;
}

.grid-banners_img {
	position: relative;
	margin-bottom: 8px;
}

.grid-banners_img img {
	display: block;
	height: 140px;
	object-fit: contain;
	margin-left: auto;
	margin-right: 10px;
}

.grid-banners_discount {
	position: absolute;
	bottom: 20px;
	right: 0;
	background: linear-gradient(98.68deg, #6400B3 -16.08%, #C377FF 109.26%);
	box-shadow: 3px 4px 4px rgba(50, 50, 50, 0.1);
	border-radius: 30px;
	padding: 10px;
	font-weight: 600;
	text-align: center;
	color: #FFFFFF;
}

.grid-banners_footer {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.grid-banners_period {
	font-weight: 300;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	color: #002339;
	margin-bottom: 8px;
}

.grid-banners_disclaimer {
	font-weight: 300;
	font-size: 11px;
	line-height: 13px;
	text-align: center;
	text-transform: uppercase;
	color: #C50026;
}

.grid-banners_item:nth-child(2) {
	background: #F9FACE;
}

.grid-banners_item:nth-child(2) .grid-banners_discount {
	background: linear-gradient(98.68deg, #FD965C -16.08%, #F14D19 109.26%);
	bottom: 0;
}

.grid-banners_item:nth-child(3) {
	background: #E1FCE8;
}

.grid-banners_item:nth-child(3) .grid-banners_discount {
	background: linear-gradient(98.68deg, #FFC700 -16.08%, #E88B00 109.26%);
	bottom: -15px;
}

.grid-banners_item:nth-child(3) .grid-banners_img img {
	margin-right: auto;
	margin-left: 27px;
	margin-top: 25px;
}

.grid-banners_item:nth-child(3) .grid-banners_disclaimer {
	color: #74C475;
}


.grid-banners_item:nth-child(4) {
	grid-column: 1 / 4;
	padding: 20px;
	background: #DEF2FF;
}

.grid-banners_item:nth-child(4) .grid-banners_advantages {
	font-size: 24px;
	line-height: 28px;
}

.grid-banners_item:nth-child(4) .grid-banners_advantages li {
	grid-template-columns: 15px 1fr;
	gap: 10px;
	z-index: 1;
	max-width: 55%;
}

.grid-banners_item:nth-child(4) .grid-banners_advantages li::before {
	display: block;
	width: 15px;
	height: 15px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/full-heart.svg') no-repeat center/contain transparent;
}

.grid-banners_item:nth-child(4) .grid-banners_img {
	height: 110px;
}

.grid-banners_item:nth-child(4) .grid-banners_img img {
	height: 206px;
	position: absolute;
	bottom: 0;
  left: 60%;
	max-width: 40%;
}

.grid-banners_item:nth-child(4) .grid-banners_discount {
	right: 35%;
	background: linear-gradient(98.68deg, #4B48E7 -16.08%, #A6B9FF 109.26%);
}

.grid-banners_item:nth-child(4) .grid-banners_footer {
	display: grid;
	grid-template-columns: 1fr .7fr;
	gap: 10px;
}

.grid-banners_item:nth-child(4) .grid-banners_disclaimer {
	grid-row: 1;
	text-align: left;
	color: #63B1E3;
	font-size: 14px;
	line-height: 16px;
}

.grid-banners_item:nth-child(4) .grid-banners_period {
	font-size: 11px;
	line-height: 13px;	
	color: #002339;
	max-width: 270px;
}
/* /Grid banners */

/* Product */

.products {
	padding-top: 50px;
	padding-bottom: 50px;
}

.tags {
	display: flex;
	align-items: center;
	width: 100%;
	overflow: auto;
	margin-top: 30px;
	scrollbar-width: 0;
	cursor: grab;
}

.tags::-webkit-scrollbar {
	display: none;
}

.tag {
	padding: 10px 30px;
	background: #F4F4F4;
	border: 3px solid var(--color-light-grey);
	border-radius: 20px;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tag:not(:last-child) {
	margin-right: 30px;
}

.tag.active {
	border-color: var(--color-red);
	color: var(--color-red);
	background-color: var(--color-white);
}

.product_slider {
	margin-top: 30px;
	display: none;
}

.product_slider.active {
	display: block;
}

.product {
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	overflow: hidden;
	/* width: 255px; */
}

.product_cover {
	position: relative;
	height: 160px;
	
}

.product_cover img {
	display: block;
	object-fit: contain;
	width: 255px;
	margin: 0 auto;
}

.product_markers-left {
	position: absolute;
	top: 10px;
	left: 10px;
}

.product_rating {
	padding: 8px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F8F8F8;
	border-radius: 10px;
}

.product_rating span {
	font-weight: 700;
}

.product_rating a {
	margin-left: 10px;
	text-decoration: underline;
}

.product_discount {
	padding: 8px 10px;
	background-color: #E23758;
	color: var(--color-white);
	border-radius: 10px;
	font-weight: 700;
	display: inline-block;
	margin-top: 6px;
}

.product_markers-right {
	position: absolute;
	top: 10px;
	right: 10px;
}

.product_favorite {
	cursor: pointer;
	display: block;
	width: 24px;
	height: 24px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/heart-red.svg') no-repeat center/contain transparent;
}

.product_favorite__check {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/full-heart.svg');
}

.product_info {
	padding: 15px 10px 10px;
}

.product_labels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	margin-bottom: 10px;
}

.product_labels > * {
	padding: 8px;
	border-radius: 10px;
	background-color: #FFF;
}

.product_prescription {	
	border: 1px solid var(--color-green);	
}

.product_prescription__check {
	border-color: var(--color-red-press);
}

.product_bonuses {
	background: var(--color-red-press);
	color: var(--color-white);	
}

.product_name {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	font-size: 16px;
	line-height: 19px;
	overflow: hidden;
	color: var(--color-text);
}

.product_name:hover {
	text-decoration: unset;
	color: var(--color-red);
}

.product_available {
	font-size: 14px;
	line-height: 16px;
	color: var(--color-green);
	display: flex;
	align-items: center;
	margin-top: 15px;
	margin-bottom: 10px;
}

.product_available__soldout {
	color: var(--color-orange);
}

.product_available::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/check.svg') no-repeat center/contain transparent;
	margin-right: 6px;
}

.product_available__soldout::before {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/soldout.svg');
}

.product_analogs {
	text-decoration-line: underline;
}

.product_prices {
	margin-top: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 20px;
}

.product_main-price {
	margin-right: 5px;
}

.product_old-price {
	text-decoration: line-through;
}

.product_new-price {
	color: #FF466A;
}

.product_footer {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product_counter {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-dark-grey);
	border-radius: 4px;
	margin-right: 20px;	
	overflow: hidden;
	min-width: 110px;
}

.product_counter-minus,
.product_counter-plus {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #F8F8F8;
}

.product_counter-count {
	border-right: 1px solid var(--color-dark-grey);
	border-left: 1px solid var(--color-dark-grey);
	width: 35px;
	height: 35px;
}

.product_counter input {
	border: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.product_add,
.product_report {
	background: var(--color-red);
	border-radius: 20px;
	text-align: center;
	color: #FFFFFF;
	padding: 8px;
	width: 100%;
	white-space: nowrap;
	cursor: pointer;
}

.product_slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 45px;
}

.product_slider-control__prev,
.product_slider-control__next {
	display: block;
	width: 40px;
	height: 40px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/arrow.svg') no-repeat center/24px transparent;
	cursor: pointer;
}

.product_slider-control__prev {
	transform: rotate(180deg);
	margin-right: 30px;
}

.product_slider-control__next {
	margin-left: 30px;
}

.product_slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_slider-nav button {
	display: block;
	width: 10px;
	height: 10px;	
	background: #D9D9D9;
	border-radius: 20px;
	border: 0;
	transition: all .3s ease;
	cursor: pointer;
}

.product_slider-nav button:not(:last-child) {
	margin-right: 10px;
}

.product_slider-nav .tns-nav-active {
	width: 40px;
	background-color: var(--color-red-press);
}


/* /Product */
/* About */
.about {
	margin-top: 50px;
	margin-bottom: 50px;
	background-color: #F4F4F4;
	padding: 45px 0;
}

.about_content {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.about_image img {
	display: block;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about_text {
 display: grid;
 grid-template-columns: 1f;
 gap: 15px;
}

.about_more {
	color: var(--color-red);
	display: flex;
	align-items: center;
	justify-content: end;
}

.about_more::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/more.svg') no-repeat center/contain transparent;
	margin-left: 15px;
}
/* /About */
/* Advantages */
.advantages {
	padding-top: 50px;
	padding-bottom: 50px;
}

.advantages_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}

.advantages_item {
	display: flex;
	align-items: center;
	max-width: 350px;
}

.advantages_item .advantages_icon {
	margin-right: 10px;
}
/* /Advantages */
/* News */
.news {
	padding-top: 50px;
	padding-bottom: 50px;
}

.news_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.news_item {
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.news_image {
	height: 250px;
}

.news_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news_content {
	padding: 15px 10px 20px;
}

.news_date {
	padding: 10px;
	font-size: 14px;
	line-height: 16px;
	background: var(--color-light-grey);
	border-radius: 20px;
	display: inline-block;
}

.news_name {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	height: 70px;
	overflow: hidden;
	margin-top: 15px;
}

.all_news {
	margin: 45px auto 0;
	display: block;
	width: 170px;
	font-weight: 500;	
	text-align: center;
	color: var(--color-red);
	padding: 10px 0px;
	border: 2px solid;
	border-radius: 20px;
}
/* /News */
/* Smi */
.smi {
	padding-top: 50px;
	padding-bottom: 50px;
}

.smi_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.smi_item {
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	overflow: hidden;
}

.smi_image {
	height: 250px;
}

.smi_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.smi_content {
	padding: 30px 20px 20px;
}

.smi_name {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 15px;
	height: 46px;
	overflow: hidden;
}

.smi_descr {
	height: 57px;
	overflow: hidden;
	margin-bottom: 30px;
}

.smi_footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.smi_logo {
	height: 16px;
}

.smi_logo img {
	display: block;
	height: 100%;
	object-fit: contain;
}

/* Smi */
/* Review */
.review_slider {
	margin-top: 30px;
}

.review_item {
	border: 1px solid var(--color-light-grey);
	padding: 20px;
}
.review_slider .review_item {
	font-size: 16px;
}

.review_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.review_date {
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 15px;
}

.review_reviewer {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
}

.review_rating {
	display: block;
	width: 120px;
	height: 20px;
	background: url('/local/templates/aspro_mshop/images/redisign/rating_grey.png') no-repeat left/120px transparent;
	position: relative;
}

.review_rating-count {
	display: block;
	height: 20px;
	background: url('/local/templates/aspro_mshop/images/redisign/rating.png') no-repeat left/120px transparent;
	position: absolute;
	top: 0;
	left: 0;
}

.review_text {
	display: flex;
	margin-bottom: 30px;
	color: var(--color-text);
}

.review_text::before {
	content: "";
	display: block;
	min-width: 60px;
	min-height: 60px;
	width: 60px;
	height: 60px;
	background: url('/local/templates/aspro_mshop/images/redisign/icons/quote.svg') no-repeat center/contain transparent;
	margin-right: 11px;
}

.review_more {
	display: block;
	width: fit-content;
	margin-left: auto;
	padding: 12px 19px;
	border-radius: 20px;
	background: var(--color-red);
	color: #FFF;
}
.review_item .review_more:hover {
	color: #fff;
	text-decoration: none;
}

.review_slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.review_slider-control__prev,
.review_slider-control__next {
	display: block;
	width: 40px;
	height: 40px;
	background: url('images/icons/arrow.svg') no-repeat center/24px transparent;
	cursor: pointer;
}

.review_slider-control__prev {
	transform: rotate(180deg);
	margin-right: 30px;
}

.review_slider-control__next {
	margin-left: 30px;
}

.review_slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.review_slider-nav button {
	display: block;
	width: 10px;
	height: 10px;	
	background: #D9D9D9;
	border-radius: 20px;
	border: 0;
	transition: all .3s ease;
	cursor: pointer;
}

.review_slider-nav button:not(:last-child) {
	margin-right: 10px;
}

.review_slider-nav .tns-nav-active {
	width: 40px;
	background-color: var(--color-red-press);
}
/* /Review */
/* Blog */
.blog_item .news_name {
	padding: 0 10px;
	height: 48px;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
	
}
/* /Blog */
/* Brands */
.brands {
	padding-top: 50px;
	padding-bottom: 100px;
}

.brands_list {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.brands_item {
	padding: 10px 28px;
	border: 1px solid var(--color-light-grey);
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brands_item img {
	display: block;
	width: 140px;
	object-fit: contain;
}

.brands_slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.brands_slider-control__prev,
.brands_slider-control__next {
	display: block;
	width: 40px;
	height: 40px;
	background: url('images/icons/arrow.svg') no-repeat center/24px transparent;
	cursor: pointer;
}

.brands_slider-control__prev {
	transform: rotate(180deg);
	margin-right: 30px;
}

.brands_slider-control__next {
	margin-left: 30px;
}

.brands_slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.brands_slider-nav button {
	display: block;
	width: 10px;
	height: 10px;	
	background: #D9D9D9;
	border-radius: 20px;
	border: 0;
	transition: all .3s ease;
	cursor: pointer;
}

.brands_slider-nav button:not(:last-child) {
	margin-right: 10px;
}

.brands_slider-nav .tns-nav-active {
	width: 40px;
	background-color: var(--color-red-press);
}
/* /Brands */

/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	align-items: center;
	padding: 30px 0;
	font-size: 12px;
	line-height: 14px;
	list-style: none;
	flex-wrap: wrap;
}

.breadcrumbs li:not(:last-child) {
	margin-right: 6px;
	display: flex;
	align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	display: block;
	margin-left: 6px;
}

.breadcrumbs span {
	color: var(--color-red);
}
/* /Breadcrumbs */
/* Blog page */
.blog_page {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}
/* /Blog page */

/* Pagination */
.pagination {
	width: fit-content;
	margin: 0 auto 100px;
	display: flex;
	align-items: center;
}

.pagination_numbers {
	display: flex;
	align-items: center;
	margin-right: 13px;
}

.pagination_numbers > * {
	border: 1px solid var(--color-dark-grey);
	border-radius: 4px;
	color: var(--color-dark-grey);
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
}

.pagination_numbers > *:not(:last-child) {
	margin-right: 13px;
}

.pagination_numbers > .active {
	color: var(--color-text);
	border-color: var(--color-red);
}

.pagination > a {
	display: block;
	width: 16px;
	height: 16px;
}

.pagination > a:not(:last-child) {
	margin-right: 13px;
}

.pagination_disable {
	filter: contrast(0.1);
	pointer-events: none;
}

.pagination_prev,
.pagination_start {
	transform: rotate(180deg);
}

.pagination_prev,
.pagination_next {
	background: url('../images/redisign/icons/arrow.svg') no-repeat center/contain transparent;
}

.pagination_start,
.pagination_finish {
	background: url('../images/redisign/icons/double_arrow.svg') no-repeat center/contain transparent;
}
/* Pagination */

/* Blog detail */
.blog_detail {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 30px;
	padding-bottom: 100px;
}

.blog_cover {
	width: 100%;
	margin-bottom: 30px;
}

.blog_cover img {
	display: block;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.blog_subcover {
	display: flex;
	justify-content: space-between;
	margin-bottom: 45px;
}

.blog_subcover-left {
	display: flex;
}

.blog_subcover-left img {
	display: block;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	margin-right: 15px;
}

.expert_name {
	margin-top: 15px;
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
}

.share {
	font-weight: 500;
	color: var(--color-red);
	display: flex;
	align-items: center;
}

.share::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url('./loyout/images/icons/share.svg') no-repeat center/contain transparent;
	margin-right: 15px;
}

.blog_table-contents {
	padding: 15px;
	background: #F4F4F4;
	border-radius: 10px;
	margin-bottom: 45px;
}

.blog_table-contents h2 {
	font-weight: 700;
	font-size: 28px;
	line-height: 33px;
	margin-bottom: 30px;
}

.blog_table-contents ul {
	list-style: none;
	display: grid;
	gap: 15px;
}

.blog_table-contents ul ul {
	padding-left: 15px;
	padding-top: 15px;
}

.blog_table-contents a {
	text-decoration: underline;
}

.blog_detail-content {
	display: grid;
	gap: 30px;
}

.blog_detail-content section {
	display: grid;
	gap: 15px;
}

.blog_detail-content p + ul {
	padding-top: 6px;
}

.blog_detail-content ul {
	display: grid;
	gap: 6px;
	padding: 20px;
}

.blog_detail-content a {
	text-decoration: underline;
	color: var(--color-red);
}

.other_blog h3 {
	margin-bottom: 30px;
}

.other_blog-list {
	display: grid;
	gap: 15px;
}
/* /Blog detail */

/* Product detail */
.product_page h1 {
	font-weight: 400;
	font-size: 28px;
	line-height: 33px;
	margin-top: 30px;
	margin-bottom: 15px;
}

.product_tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.product_tools-left {
	display: flex;
}

.product_tools .product_favorite {
	width: auto;
	height: auto;
	background: #FFF;
	display: flex;
	align-items: center;
	padding: 6px 8px;
	border: 2px solid var(--color-light-grey);
	border-radius: 10px;
	margin-left: 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-red);
	cursor: pointer;
}

.product_tools .product_favorite::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url('images/icons/heart-red.svg') no-repeat center/contain transparent;
	margin-right: 15px;
}

.product_tools .product_favorite__check::before {
	background-image: url('/local/templates/aspro_mshop/images/redisign/icons/full-heart.svg');
}

.product_main-info {
	display: flex;
	margin-bottom: 45px;
}

.product_main-image {
	position: relative;
	height: 280px;
	margin-right: 30px;
}

.product__main-image img {
	display: block;
	height: 100%;
	object-fit: contain;
}

.product__main-image .product_labels {
	position: absolute;
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px;
}

.product__main-image .product_labels > * {
	width: fit-content;
}

.product_characteristics-short {
	max-width: 445px;
}

.product_characteristics-short ul {
	list-style: none;
	display: grid;
	gap: 15px;
}

.product_characteristics-short li {
	display: flex;
}

.product_characteristics-short_name {
	font-weight: 700;
	margin-right: 6px;
}

.product_characteristics-short a {
	text-decoration: underline;
}

.product_characteristics-short > a {
	margin-top: 15px;
	display: block;
}

.product_main-tools {
	padding: 10px;
	background: #F4F4F4;
	border-radius: 10px;
	height: fit-content;
	margin-left: 30px;
	width: 255px;
}

.product_main-tools_price {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 15px;
}

.product_main-tools .product_bonuses {
	padding: 8px;
	border-radius: 10px;
	width: fit-content;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
}

.product_main-tools .product_available__soldout {
	margin-top: 0px;
}

.product_main-tools .product_footer {
	margin-top: 0;
}

.product_tabs-container {
	width: 100%;
}

.product_tabs {
	display: grid;
	grid-template-columns: repeat(4, 250px);
	gap: 10px;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 15px;
}

.product_tab {
	padding: 12px;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	background: #F4F4F4;
	border: 3px solid #E5E5E5;
	border-radius: 20px;
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.product_tab.active {
	color: var(--color-red);
	border-color: var(--color-red);
	background-color: #FFF;
}

.product_tabs-content {
	display: none;
}

.product_tabs-content.active {
	display: block;
}

.product_characteristics {
	display: grid;
	gap: 15px;
	list-style-type: disc;
	margin-bottom: 60px;
}

.product_characteristics li {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-left: 22px;
}

.product_characteristics li::before {
	content: "";
	width: 6px;
	height: 6px;
	background-color: var(--color-red);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: 6px;
}

.product_characteristics li::after {
	content: "";
	display: block;
	width: calc(100% - 22px);
	border-bottom: 1px dashed var(--color-dark-grey);
	position: absolute;
	top: 10px;
}

.product_characteristics-name {
	background-color: #FFF;
	z-index: 1;
	padding-right: 5px;
	margin-right: 35px;
	/* min-width: 50%; */
}

.product_characteristics-value {
	background-color: #FFF;
	z-index: 1;
	padding-left: 5px;
}

.product_instruction-toggle {
	font-weight: 500;
	color: var(--color-red);
	width: fit-content;
	padding: 15px 10px;
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr 16px;
	align-items: center;
	gap: 9px;
}

.product_instruction-toggle::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url('images/icons/arrow_red.svg');
	transform: rotate(90deg);
	transition: all .3s ease;
}

.product_instruction-toggle.active::after {
	transform: rotate(-90deg);
}

.product_instruction {
	height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.product_instruction.active {
	height: auto;
	padding: 30px 0;
}

.product_instruction section:not(:last-child) {
	margin-bottom: 30px;
}

.product_instruction section h3 {
	margin-bottom: 3px;
}

.product_instruction section p:not(:last-child),
.product_instruction section i:not(:last-child) {
	margin-bottom: 8px;
}

.add_review {
	border: 0;
	background: var(--color-red);
	padding: 12px 10px;
	color: #FFF;
	font-weight: 500;
	border-radius: 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.add_review img {
	display: block;
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.form_review {
	margin-top: 40px;
}

.form_row {
	display: grid;
	gap: 6px;
	margin-bottom: 15px;
}

.form_row-flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.form-rating_review {
	margin-bottom: 30px;
}

.rating_review {
	border: 0;
	margin-left: 18px;
	display: flex;
}

.rating_review input[type="radio"] {
	border: 0;
	opacity: 0;
	visibility: visible;
	display: none;
}

.rating_review label::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('images/icons/star.svg');
	cursor: pointer;
}

.rating_review label.active::before {
	background: url('images/icons/star_fill.svg');
}

.form_row input[type="text"],
.form_row textarea {
	font-size: 16px;
	line-height: 19px;
	padding: 11px 11px;
	border: 1px solid #1E1E1E;
	border-radius: 20px;
	resize: none;
}

.form_row textarea {
	height: 90px;
}

.reload {
	border: 0;
	width: 40px;
	height: 40px;
	display: block;
	background: url('images/icons/sync.svg') no-repeat center/contain transparent;
	cursor: pointer;
	margin: 0 15px;
}

.load_file {
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-red);
	margin-top: 15px;
}

.load_file input {
	display: none;
}

.checkbox {
	position: relative;
	display: flex;
	cursor: pointer;
}

.checkbox label {
	cursor: pointer;
}

.checkbox input {
	display: none;
}

.checkbox::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border: 1px solid var(--color-red);
	border-radius: 2px;
	margin-right: 6px;
}

.checkbox input[type="checkbox"]:checked + label::before {
	content: "";
	display: block;
	width: 6px;
	height: 12px;
	border-right: 2px solid var(--color-red);
	border-bottom: 2px solid var(--color-red);
	position: absolute;
	left: 5px;
	transform: rotate(45deg);
}

.form_buttons {
	margin-top: 20px;
}

.form_buttons input[type="submit"],
.form_buttons button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 40px;
	border: 2px solid var(--color-red);
	border-radius: 20px;
	color: var(--color-red);
	background-color: #FFF;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}

.form_buttons input[type="submit"] {
	color: #FFF;
	background-color: var(--color-red);
}
/* /Product detail */
.modal_form .form_buttons input[type="submit"] {
	width: fit-content;
	height: auto;
	padding: 12px 10px;
	border: 0;
	margin: 0 auto;
}

.modal_form label {
	font-weight: 700;
}

@media (max-width: 1400px) {
	.menu_catalog-hits {
		display: none;
	}

	.menu_catalog-second {
		width: auto;
	}
}

@media (max-width: 1200px) {
	.banners_controls>button {
		left: 10px;
	}

	.banners_controls>button[data-controls="next"] {
		right: 10px;
	}

	.blog_detail {
		grid-template-columns: 1fr 300px;
	}

	.product__main-image {
    height: 224px;
    margin-right: 15px;
	}

	.product_main-tools {
		margin-left: 15px;
	}
}

@media (max-width: 968px) {

	header {
		top: 0;
	}

	.header-contact {
		display: none;
	}

	.header-main {
		flex-wrap: wrap;
	}

	.header-main_burger {
		display: block;
		height: 40px;
		width: 40px;
		background: url('/local/templates/aspro_mshop/images/redisign/icons/burger.svg') no-repeat center/contain transparent;
		border: 0;
		margin-right: 10px;
		cursor: pointer;
	}

	.header-main_burger.active {
		background-image: url('/local/templates/aspro_mshop/images/redisign/icons/catalog_close.svg');
	}

	.header-main_logo {
		height: 40px;
		width: 40px;
		background-image: url('/local/templates/aspro_mshop/images/redisign/mini-logo.png');
	}

	.header-main_buttons {
		flex-direction: row-reverse;
	}

	.header-main_buttons a {
		display: flex;
		width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.header-main_buttons>*:not(:first-child) {
		margin-right: 10px;
	}

	.header-main_buttons a:nth-child(2) {
		margin-right: 0;
	}

	.header-main_buttons p {
		display: none;
	}

	a.header-main_button_order {
		display: none;
	}

	.header-main_search,
	.search_middle_block {
		order: 1;
		width: 100%;
		flex: auto;
		margin-right: 0 !important;
		margin-top: 10px;
	}

	.header-main_search_examplas {
		display: none;
	}

	.header-menu {
		position: absolute;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		left: -102%;
		width: 100vw;
		background-color: var(--color-white);
		height: calc(100vh - 115px);
		padding: 10px 20px;
		overflow: auto;
		box-shadow: 0px 6px 10px rgba(31, 22, 24, 0.1);
	}

	.header-menu .geolocation {
		display: flex;
		padding: 10px 0;
	}

	.header-menu .header-main_button_order {
		display: flex;
		align-items: center;
		padding: 8px 0;
	}

	.header-menu .header-main_button_order .header-main_buttons_icon {
		margin: 0;
		margin-right: 4px;
	}

	.header-menu .footer_phones {
		display: flex;
		border-top: 1px solid var(--color-red);
		margin-top: 0;
		padding-top: 15px;
	}

	.header-menu.active {
		left: 0;
	}

	li.header-menu_catalog>span::after {
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		background: url('/local/templates/aspro_mshop/images/redisign/icons/arrow_red.svg') no-repeat right center/contain transparent;
		flex: 1;
	}

	.link_back {
		display: flex;
	}

	.header-menu>li {
		position: static;
	}

	.header-menu>li>a,
	.header-menu>li>span {
		height: 40px;
		text-align: left;
		justify-content: space-between;
	}

	.header-menu_parent>a::after,
	.header-menu_parent:hover>a::after {
		transform: rotate(0deg);
	}

	.header-menu_parent:hover,
	.header-menu_parent>ul a:hover,
	.header-menu_catalog .header-menu_catalog__wrapper>ul>li:hover {
		background-color: var(--color-white);
	}

	.header-menu_parent>ul {
		top: 0;
		height: calc(100vh - 115px);
		overflow: auto;
		left: -100vw;
		right: auto;
		width: 100vw;
		transition: all .3s ease;
	}

	.header-menu_parent:hover>ul {
		visibility: hidden;
	}

	.header-menu_parent.active>ul {
		visibility: visible;
		z-index: 2;
		left: 0;
	}

	.header-menu_parent>ul a {
		text-align: left;
	}

	.menu_catalog-second {
		left: -100vw;
		z-index: 1;
		width: 100%;
		bottom: auto;
		transition: all .3s ease;
	}

	.menu_catalog-second.active {
		left: 0;
	}

	.menu_catalog-second ul {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-auto-flow: initial;
		width: calc(100% - 18px);
		height: auto;
		max-height: none;
	}

	.header-menu_catalog .header-menu_catalog__wrapper>ul {
		top: 0;
		width: 100vw;
		left: -100vw;
		z-index: 1;
		height: calc(100vh - 115px);
		overflow: auto;
		transition: all .3s ease;
	}
	.header-menu_catalog.active .header-menu_catalog__wrapper {
		left: 0;
		top: 0;
	}
	.header-menu_catalog.active .header-menu_catalog__wrapper>ul {
		visibility: visible;
		opacity: 1;
		left: 0;
	}

	.header-menu_catalog .header-menu_catalog__wrapper>ul>li {
		width: 100%;
	}

	.header-menu_catalog .header-menu_catalog__wrapper>ul>li:hover .menu_catalog-second {
		visibility: hidden;
	}

	.header-menu_catalog .header-menu_catalog__wrapper>ul>li .menu_catalog-second.active {
		visibility: visible;
	}


	.menu_catalog-second ul>li {
		width: 100%;
		margin-right: 0;
	}

	footer .subscrube {
		display: grid;
		grid-template-columns: 280px;
	}

	footer .subscrube_title {
		margin-right: 0;
		margin-bottom: 7px;
		justify-content: center;
	}

	footer .subscrube input[type="submit"] {
		margin-left: 0;
		margin-top: 15px;
		width: 100%;
	}

	.footer_columns {
		grid-template-columns: 1fr;
		max-width: 280px;
		margin: 0 auto;
	}

	.footer_logo {
		display: none;
	}

	.footer_column:nth-child(2),
	.footer_column:nth-child(3) {
		order: -1;
	}

	.footer_column:nth-child(2) .footer_parent,
	.footer_column:nth-child(3) .footer_parent {
		display: flex;
		align-items: center;
		cursor: pointer;
	}

	.footer_column:nth-child(2) .footer_parent::after,
	.footer_column:nth-child(3) .footer_parent::after {
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		background: url('/local/templates/aspro_mshop/images/redisign/icons/arrow.svg') no-repeat center/contain transparent;
		transform: rotate(90deg);
		margin-left: 10px;
		transition: all .3s ease;
	}

	.footer_column:nth-child(2).active .footer_parent::after,
	.footer_column:nth-child(3).active .footer_parent::after {
		transform: rotate(-90deg);
	}

	.footer_column:nth-child(2) ul,
	.footer_column:nth-child(3) ul {
		height: 0px;
		overflow: hidden;
	}

	.footer_column:nth-child(2).active ul,
	.footer_column:nth-child(3).active ul {
		height: auto;
	}

	.footer_copy {
		margin-top: 30px;
	}

	.city_list {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-auto-flow: initial;
	}


	.banner_img {
		position: absolute;
		right: 10%;
		bottom: 20px;
	}

	.banner_footer {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
		justify-content: end;
	}

	.banner_period {
		font-size: 10px;
		line-height: 12px;
		margin-left: 0;
		margin-bottom: 6px;
		flex: initial;
	}

	.banner_discount {
		left: auto;
		right: 50%;
		font-size: 16px;
		line-height: 19px;
		border-radius: 20px;
	}

	.banner_trekrezan .banner_img img {
		width: 250px;
		height: 120px;
	}

	.banner_ketorolak .banner_img img {
		display: block;
		width: 201px;
		height: 130px;
	}

	.steps {
		grid-template-columns: 1fr;
		margin-top: 15px;
		margin-bottom: 30px;
		gap: 65px;
		justify-items: center;
	}

	.steps::before {
		display: none;
	}

	.step {
		max-width: auto;
	}

	.step_number {
		position: relative;
	}

	.step:not(:first-child) .step_number::before {
		content: "";
		display: block;
		width: 1px;
		height: 45px;
		background: var(--color-dark-grey);
		position: absolute;
		top: -55px;
		left: 50%;
	}

	.advantages_list {
		grid-template-columns: 1fr;
		gap: 30px;
		justify-items: center;
	}

	.advantages_item {
		max-width: none;
	}

	.news_list,
	.smi_list {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.news_item,
	.smi_item {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
	}

	.news_image,
	.smi_image {
    height: 200px;
	}

	.review_text::before {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    margin-right: 6px;
	}

	.blog_page {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog_detail {
		grid-template-columns: 1fr;
	}

	.share span {
		display: none;
	}

	.product_tools .product_favorite {
		margin-left: 6px;
	}

	.product_tools-right .share {
		display: none;
	}

	.product_main-info {
		flex-direction: column;
	}

	.product_main-image {
    margin-right: 0px;
		margin-bottom: 15px;
	}

	.product_main-image img {
		margin: 0 auto;
		width: 100%;
	}

	.product_main-tools {
		max-width: fit-content;
		margin: 30px auto 0;
	}

	.product_characteristics-short {
		margin: 0 auto;
		max-width: none;
	}

	.product_characteristics-short li {
    display: grid;
		grid-template-columns: repeat(2, 50%);
		gap: 6px;
	}

	.product_characteristics-short_name {
		margin-right: 0;
	}

	.product_characteristics-short_value {
    word-break: break-word;
	}

}

@media (max-width: 800px) {
	.banner {
		padding: 15px 5px;
		height: 425px;
	}

	.banner_text {
		width: 100%;
	}

	.banner_title {
		text-align: center;
		font-weight: 600;
		font-size: 18px;
		line-height: 21px;
	}

	.banner_description {
		text-align: center;
		font-size: 12px;
		line-height: 14px;
	}

	.banner_advantages {
		gap: 6px;
		max-width: 100%;
	}

	.banner_advantages li {
		font-weight: 300;
		font-size: 14px;
		line-height: 16px;
	}

	.banner_advantages li::before {
		margin-right: 6px;
	}

	.banner_disclaimer {
		font-size: 12px;
		line-height: 14px;
		text-align: center;
		max-width: 100%;
		width: 100%;
	}

	.banner_discount {
		left: auto;
		right: 50%;
		bottom: -20px;
		top: auto;
	}

	.banner_kvatran .banner_description {
		margin-bottom: 15px;
	}

	.banner_kvatran .banner_img {
		height: 170px;
		right: 0%;
		bottom: 90px;
	}

	.banner_kvatran .banner_img img {
		display: block;
		height: 100%;
		object-fit: contain;
	}

	.banner_kvatran .banner_advantages li:last-child {
		max-width: 60%;
	}

	.banner_trekrezan .banner_img {
		top: 50%;
		bottom: auto;
		transform: translate(50%, -25%);
		right: 50%;
	}

	.banner_ketorolak .banner_img {
		top: 50%;
		bottom: auto;
		transform: translateY(0%);
		right: auto;
	}

	.banner_ketorolak .banner_discount {
		bottom: 0;
		transform: translateX(50%);
	}

	.banner.banner_logo {
		padding: 15px;
		gap: 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: start;
	}

	.banner_logo img {
		display: block;
		width: 100%;
		max-width: 250px;
		margin-bottom: 64px;
	}

	.banner_logo-title {
		font-size: 20px;
		line-height: 23px;
		margin-bottom: 22px;
	}

	.banner_logo-phone {
		font-size: 16px;
		line-height: 19px;
	}

	.banner_logo-phone:not(:last-child) {
		margin-bottom: 20px;
	}

	.banners_nav {
		margin-top: 35px;
	}

	.banners_controls>button {
		top: auto;
		bottom: -40px;
		left: 20px;
	}

	.banners_controls>button[data-controls="next"] {
		right: 20px;
	}

	.grid-banners {
		grid-template-columns: 1fr;
	}

	.grid-banners_title {
		font-size: 18px;
		line-height: 21px;
	}
	
	.grid-banners_img {
		margin-left: auto;
    margin-right: auto;
	}

	.grid-banners_item:nth-child(3) .grid-banners_discount {
		bottom: 0;
	}
	
	.grid-banners_item:nth-child(4) {
		grid-column: auto;
	}

	.grid-banners_item:nth-child(4) .grid-banners_advantages {
		font-size: 18px;
		line-height: 21px;	
	}

	.grid-banners_item:nth-child(4) .grid-banners_advantages li {
		max-width: none;
	}

	.grid-banners_item:nth-child(4) .grid-banners_img {
		height: auto;
	}

	.grid-banners_item:nth-child(4) .grid-banners_img img {
		position: static;
		max-width: 203px;
		height: auto;
		margin-top: 30px;
		margin-bottom: 42px;
	}

	.grid-banners_item:nth-child(4) .grid-banners_discount {
		right: auto;
		left: -40px;
		bottom: 30px;
	}

	.grid-banners_item:nth-child(4) .grid-banners_footer {
		grid-template-columns: 1fr;
	}

	.grid-banners_item:nth-child(4) .grid-banners_period {
		font-size: 10px;
		line-height: 12px;
		text-align: center;
		max-width: none;
	}

	.grid-banners_item:nth-child(4) .grid-banners_disclaimer {
		grid-row: auto;
		text-align: center;
		font-size: 11px;
		line-height: 13px;
	}

	.about_content {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.about_image img {
		max-height: 340px;
	}

	.about_more {
		margin-top: 15px;
	}
}

@media (max-width: 668px) {
	.blog_page {
		grid-template-columns: 1fr;
		margin-bottom: 30px;
	}

	.blog_item .news_name {
		padding: 0;
	}

	.product_main-tools {
		width: 100%;
		max-width: none;
	}

	.product_tabs {
		grid-template-columns: repeat(4, 110px);
	}

	.product_tab {
		width: 110px;
		padding: 5px 8px;
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
		text-align: center;
		border-width: 1px;
	}

	.product_characteristics {
		font-size: 12px;
		line-height: 14px;
	}

	.product_characteristics li {
		padding-left: 0;
	}

	.product_characteristics-value {
		min-width: 100px;
		width: 100px;
		padding-left: 3px;
	}

	.product_characteristics li::before {
		display: none;
	}

	.product_characteristics li::after {
		top: 6px;
	}
	
	.form_buttons input[type="submit"],
	.form_buttons button {
		width: 100%;
	}
}


/* перебивание классов аспро */



.product_image_block {
	height: 130px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	display: inline-block;
}

#tns1-mw {
	overflow: hidden;
}

header ul li:before, .footer_column ul li:before {
	content: '';
}

.header-main_search p, .about_text p, .about_more, .subscrube_title p {
	font-size: 16px;
	margin: 0;
}

.header-contact p {
	margin-bottom: 0;
}

.header-menu_catalog ul li::before {
	display: none;
}

ul.header-menu > li {
	font-size: 16px;
}

ul.header-menu > li a {
	color: #000;
}

.footer_column, .footer_column li a {
	color: #000
}

.footer_column li a {
	font-size: 16px;
}

.header-contact a {
	color: #000;
}

.smi_list a {
	color: #000;
}

.news_list a {
	color: #000;
}

#content .left_block {
	z-index: 9;
}

/* перебивание классов аспро */
body .jqmOverlay, 
body .popup-window-overlay {
	background: var(--color-overlay)!important;
}

/* fix */
.geolocation p,
.header-main_button_order p {
	margin-bottom: unset;
}

@media (max-height: 1100px) {
	.modal_title {
		margin-top: 15px;
	}
}

@media (min-height: 700px) {
	.modal[data-id="cities"] {
		max-height: 85vh;
		height: fit-content;
	}
}
@media(max-width: 480px){
	.fa-order-table{
		flex-direction: column;
	}
}
@media(max-width: 768px){
	#fa-cart-variants   .fa-pickup-variants{
		margin-bottom: 10px;
	}

	.fa-order-form  .fa-fx.fa-fx-between{
		flex-wrap: wrap;
	}
	.fa-order-form  #fa-cart-variants{
		display: block;
	}
	.header-main_search_result{
		width: 100%;
	}
	div.title-search-result{
		left: 10px !important;
		right: 10px !important;
	}
	.fa-order-form	.fa-item-block div:not(.item-price) img{
		display: none;
	}
	.fa-order-form	.fa-item-block div.item-price{
		font-weight: bold;
	}
	.fa-order-form	.fa-item-block div:not(.item-price){
font-size: 14px;
		padding: 5px 10px;
	}
}