/*--------- fonts start ---------*/

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-ExtraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/*--------- fonts end ---------*/

/*--------- common start ---------*/

* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Circe', Arial, sans-serif;
	color: #000000;
}
.no_select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.no_select:focus {
    outline: none !important;
}
.bold {
    font-weight: 700;
}
.action_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 6em;
    height: 2.8em;
    color: #FFFFFF;
    background-color: #FFDA02;
    font-size: 1.6rem;
    line-height: 1em;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    padding: 0 1em;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-radius: 0.3em;
    position: relative;
    background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
    font-family: 'Circe', Arial, sans-serif;
    transition: transform .4s ease;
}
.action_button:hover {
	transform: scale(1.02);
}
.button_processing {
	cursor: default;
}
.button_processing:hover {
	transform: none !important;
}
.button_processing:before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	background-color: rgba(255, 255, 255, .5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	border-radius: inherit;
}
.button_processing:after {
	content: '';
	display: block;
	width: 3rem;
	height: 3rem;
	background-image: url(../img/icon_load.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	margin: auto;
	animation: button_processing 2s linear infinite;
}
@keyframes button_processing {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.line_title_container {
	display: block;
	width: 100%;
	height: auto;
	height: 2.4rem;
	position: relative;
	z-index: 1;
}
.line_title_container:before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #E5E5E5;
	z-index: 1;
}
.line_title {
	display: inline-block;
	width: auto;
	height: 100%;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1em;
	position: relative;
	border-bottom: 2px solid #FFC702;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.tags_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	height: auto;
	max-height: 2.4rem;
	overflow: hidden;
	margin-top: 0.6rem;
	transition: max-height .4s ease;
}
.tags_list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 80rem;
	height: auto;
	list-style: none;
}
.tag_item {
	display: block;
	width: auto;
	height: auto;
	list-style: none;
	margin-right: 2rem;
	margin-bottom: 1em;
}
.tag_item_link {
	display: block;
	width: auto;
	height: auto;
	font-size: 1.6em;
	line-height: normal;
	color: #5FBBDC;
	text-decoration: none;
	cursor: pointer;
}
.tag_item.active_tag_item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.tag_item.active_tag_item .tag_item_link {
	color: #FF8A02;
}
.close_tag_item {
	display: block;
	width: .8rem;
	height: .8rem;
	background-image: url(../img/icon_close_blue.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-left: 1rem;
	cursor: pointer;
}
.tag_item_link:hover {
	text-decoration: underline;
}
.show_all_tags_button {
	display: block;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1.5em;
	font-family: 'Circe';
	color: #5FBBDC;
	text-decoration: underline;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
}
.show_all_tags_button:hover {
	text-decoration: none;
}
.show_all_tags_button .hide_all,
.show_all_tags_button.active_show_all_tags_button .show_all {
	display: none;
}
.show_all_tags_button.active_show_all_tags_button .hide_all {
	display: block;
}
.sorting_links_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin-top: 0.2rem;
	border-bottom: 2px solid #E5E5E5;
}
.sorting_text {
	display: block;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1em;
	margin-right: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
}
.sorting_link {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	padding: 1rem 1rem;
	box-sizing: border-box;
	border-radius: 1rem;
	margin-right: 2rem;
	margin-bottom: 1rem;
	text-decoration: none;
	color: #000000;
	font-size: 1.2em;
	line-height: 1em;
	cursor: pointer;
	transition: background-color .4s ease;
}
.sorting_link.active_sorting_link {
	background-color: #F7F7F7;
}
.sorting_link:hover {
	background-color: #F0F0F0;
}
.sorting_link img {
	display: block;
	width: 1rem;
	margin-right: .5rem;
}
.products_list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	border-radius: 1rem;
	/* overflow: hidden; */
	margin-top: 1rem;
	list-style: none;
	padding: 1px;
	box-sizing: border-box;
}
.products_list_item {
	display: block;
    width: 50%;
	height: auto;
	background-color: #FFFFFF;
	box-sizing: border-box;
	padding: 1.5rem 1.5rem 1.5rem;
    position: relative;
    border: 1px solid #E5E5E5;
}
.in_basket {
    background-color: #E5E5E5;
}
.products_list_item:nth-child(1) {
	border-top-left-radius: inherit;
}
.products_list_item:nth-child(2) {
	border-top-right-radius: inherit;
}
.products_list_item.updating {
    /* opacity: 0.8; */
    /* transition: opacity 0.3s ease; */
    pointer-events: none; /* опционально: блокировка ввода во время анимации */
}
.products_list_item.updating:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    background-color: rgba(255, 255, 255, .6);
    z-index: 3;
}
.products_list_item.updating:after {
    content: '';
    display: block;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 4px dashed #FFC702;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 4;
    animation: products_list_item_updating 2s linear infinite;
}
@keyframes products_list_item_updating {
    100% {
        transform: rotate(360deg);
    }
}
.product_top_line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	height: 8rem;
}
.product_image_container {
	display: block;
	width: 13rem;
	height: 100%;
	cursor: pointer;
	/*	overflow: hidden;*/
	box-sizing: border-box;
	position: relative;
}
.promotion_products_list_item .product_image_container:before {
	content: '';
	display: block;
	width: 9.1rem;
	height: 3.7rem;
	position: absolute;
	top: 1.9rem;
	left: -1.2rem;
	z-index: 2;
	background-image: url(../img/icon_promotion.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.product_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_line_container {
	display: block;
	width: 29rem;
	height: 100%;
	position: relative;
}
.product_name {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: normal;
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}
.product_price_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #EFF6FB;
	padding: .5rem .5rem .5rem 1.3rem;
	box-sizing: border-box;
}
.product_price {
	display: block;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1em;
	color: #949494;
}
.product_price_input {
	display: block;
	width: 12rem;
	height: 2.6rem;
	background-color: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: .5rem;
	color: #000000;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
}
.product_price_input:placeholder {
	color: #949494;
}
.product_bottom_line {
	display: block;
	width: 100%;
	height: auto;
	margin-top: .4rem;
}
.product_bottom_line_text {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: normal;
}
.product_amounts_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: .4rem;
}
.product_amounts {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 30.4rem;
	height: 3.4rem;
	background-color: #EFF6FB;
	padding: 0.4rem;
	box-sizing: border-box;
}
.product_amount_input {
	display: block;
	width: 8.8rem;
	height: 100%;
	background-color: #FFFFFF;
	border: 2px solid #E5E5E5;
	border-radius: .5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.6rem;
}
.product_amount_input::placeholder {
	color: #949494;
}
.buy_button {
	width: 12rem;
	height: 3rem;
	box-sizing: border-box;
}
.buy_bestseller_button.to_basket,
.buy_button.to_basket {
    background-color: #FFFFFF;
    background-image: none;
    border: 2px solid #FF8A02;
    color: #FF8A02;
    white-space: nowrap;
}

.main_part_item {
	display: block;
	width: 120rem;
	height: auto;
	position: relative;
	z-index: 2;
	margin: 0 auto;
}
.breadcrumbs {
	display: block;
	width: 120rem;
	margin: 0 auto;
	height: auto;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
.breadcrumb_line {
	display: block;
	width: 100%;
	height: auto;
	font-size: 1.6rem;
	line-height: 1.5em;
}
.breadcrumb_line a {
	color: #000000;
	text-decoration: underline;
	cursor: pointer;
}
.breadcrumb_line a:hover {
	text-decoration: none;
}
.info_block {
    display: block;
    margin-top: 2rem;
}
.standard_title {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 2.4rem;
	line-height: 1.2em;
	font-weight: bold;
}
.standard_title_mini {
    display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.2em;
	font-weight: bold;
}
.standard_text {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.2em;
}
.yellow_text {
    color: #FAB50C !important;
}
.bold_text {
    font-weight: bold;
}
.standard_text a {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}
.standard_text a:hover {
    text-decoration: none;
}
.info_block .standard_text {
    margin-top: .4em;
}
.connection_box {
	display: block;
	width: 100%;
	height: auto;
	border: 2px solid #E5E5E5;
	border-radius: 10px;
	padding: 1.5rem 1rem;
	box-sizing: border-box;
	margin-top: 2rem;
}
.connection_title {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1em;
}
.product_catalog_section {
	display: block;
	width: 93.8rem;
	height: auto;
	padding: 0 2.2rem 6rem;
	box-sizing: border-box;
}
.chat_button,
.director_call_button,
.leave_feedback_button {
	align-items: flex-start;
	text-align: left;
	padding-left: 4.7rem;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin-top: 1.5rem;
	font-size: 1.6rem;
	padding-right: 0;
	letter-spacing: -1px;
	height: 2.3em;
}
.chat_button:before,
.director_call_button:before,
.leave_feedback_button:before {
	content: '';
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
.chat_button:before {
	width: 2.1rem;
	height: 1.7rem;
	background-image: url(../img/icon_chat_white.svg);
	left: 1.8rem;
}
.director_call_button:before {
	width: 1.8rem;
	height: 1.8rem;
	background-image: url(../img/icon_phone_white.svg);
	left: 1.9rem;
}
.leave_feedback_button:before {
	width: 1.8rem;
	height: 1.8rem;
	background-image: url(../img/icon_like_white.svg);
	left: 1.9rem;
}
.standard_main {
	display: block;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	position: relative;
	padding-top: 2rem;
	padding-bottom: 4rem;
}
.standard_main:before {
	content: '';
	display: block;
	width: 100%;
	height: 15.8rem;
	background: linear-gradient(180deg, #EFF6FB 0%, rgba(239, 246, 251, 0.00) 100%);
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
}
.flying_dropdown_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 3.7rem;
	background: linear-gradient(to top, #FFFFFF 0, #FFFFFF 18%, #FFFFFF 83%, #FFFFFF 100%);
	box-sizing: border-box;
	padding-left: 4.5rem;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1em;
	position: relative;
	transition: color .4s ease;
	border: 2px solid #E5E5E5;
	border-radius: inherit;
	font-weight: bold;
	font-family: 'Circe', Arial, sans-serif;
	cursor: pointer;
	margin-top: 1rem;
	position: relative;
	z-index: 4;
}
.flying_dropdown_button:hover {
	background: linear-gradient(to top,#eff7fa 0,#dbf3fc 18%,#f4f9fb 83%,#f5f9fa 100%);
}
.flying_dropdown_button:before {
	content: '';
	display: block;
	width: 1.2rem;
	height: .8rem;
	background-image: url(../img/icon_arrow_bottom_blue.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: transform .4s ease, filter .4s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1.5rem;
	margin: auto 0;
	z-index: 2;
	pointer-events: none;
	transform: rotate(180deg);
	filter: grayscale(100%);
}
.flying_dropdown_button.open:before  {
	transform: rotate(360deg);
	filter: grayscale(0%);
}
.flying_dropdown_bg {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .5);
	z-index: 4;
}
.flying_dropdown_bg.open {
	display: block;
}
.flying_dropdown_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: auto;
	height: auto;
	background-color: #FFFFFF;
	border-radius: 1rem;
	border: 2px solid #F7F7F7;
	position: fixed;
	transition: transform .4s ease, opacity .4s ease;
	pointer-events: none;
	opacity: 0;
	transform: translateY(2rem);
	z-index: 99;
	padding: 2rem 1rem;
	box-sizing: border-box;
}
.flying_dropdown_container.open {
	transform: none;
	opacity: 1;
	pointer-events: auto;
}
.flying_dropdown_list {
	display: block;
	width: 27rem;
	height: auto;
	list-style: none;
}
.flying_dropdown_list_item {
	display: block;
	width: 100%;
	height: auto;
	list-style: none;
	margin-top: 1.8rem;
	position: relative;
}
.flying_dropdown_list_item:nth-child(1) {
	margin-top: 0;
}
.flying_dropdown_list_link {
	display: block;
	width: 100%;
	height: auto;
	background-color: #F7F7F7;
	border-radius: 1rem;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000000;
	padding: 1rem 1rem 1rem 4.7rem;
	box-sizing: border-box;
	position: relative;
	text-decoration: none;
	transition: color .2s ease;
}
.flying_dropdown_image {
	display: block;
	width: 2rem;
	height: 2rem;
	object-fit: contain;
	transition: .4s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1.7rem;
	margin: auto 0;
}
.flying_dropdown_text {
	display: block;
	width: 100%;
	height: auto;
	font-size: inherit;
	line-height: 1.1em;
}
.flying_dropdown_list_item.open .flying_dropdown_image path,
.flying_dropdown_list_item:hover .flying_dropdown_image {
	stroke: #5FBBDC;
}
.flying_dropdown_list_item.open .flying_dropdown_list_link,
.flying_dropdown_list_item:hover .flying_dropdown_list_link {
	color: #5FBBDC;
}
.flying_dropdown_list_item.open:before {
	content: '';
	display: block;
	width: 2rem;
	height: 1rem;
	background-image: url(../img/icon_arrow_bottom_blue.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -3rem;
	margin: auto 0;
	transform: rotate(90deg);
}
.dropdown_inner_list {
	display: block;
	width: 40rem;
	height: auto;
	list-style: none;
	position: relative;
	margin-left: 4rem;
}
.dropdown_inner_list_item {
	display: none;
	width: 100%;
	list-style: none;
	padding-top: 1rem;
}
.dropdown_inner_list_item.active_dropdown_inner_list_item {
	display: block;
}
.dropdown_inner_list_link {
	display: inline-block;
	width: 100%;
	height: auto;
	text-align: left;
	color: #000000;
	text-decoration: none;
	font-size: 1.6rem;
	cursor: pointer;
	margin-top: 1rem;
}
.dropdown_inner_list_link:nth-child(1) {
	margin-top: 0;
}
.dropdown_inner_list_link:hover {
	transition: color .4s ease;
	color: #5FBBDC;
}
.bestsellers_container {
	display: block;
	width: auto;
	padding-top: 1rem;
    position: relative;
}
.bestsellers_title {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1em;
	font-weight: bold;
    height: 2rem;
}
.bestsellers_list_wrapper {
    display: block;
    width: 40rem;
    height: 32rem;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 3rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity .2s ease;
}
.bestsellers_list {
	display: grid;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem 0.6rem;
	list-style: none;
}
.flying_dropdown_container.open .bestsellers_list_wrapper_active {
    display: grid;
    position: relative;
    pointer-events: auto;
    z-index: 2;
    top: auto;
    opacity: 1;
}
.bestseller_list_item {
	display: block;
	width: 12rem;
	height: 15rem;
	list-style: none;
	transition: transform .6s ease, opacity .6s ease;
	opacity: 0;
	transform: translateX(4rem);
}
.bestseller_list_item:nth-child(1) {
    transition-delay: .2s;
}
.bestseller_list_item:nth-child(2) {
    transition-delay: .3s;
}
.bestseller_list_item:nth-child(3) {
    transition-delay: .4s;
}
.bestseller_list_item:nth-child(4) {
    transition-delay: .5s;
}
.bestseller_list_item:nth-child(5) {
    transition-delay: .6s;
}
.bestseller_list_item:nth-child(6) {
    transition-delay: .7s;
}
.flying_dropdown_container.open .bestsellers_list_wrapper_active .bestseller_list_item {
    opacity: 1;
    transform: none;
}
.bestseller_link {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	box-sizing: border-box;
	border: 2px solid #EFF6FB;
	overflow: hidden;
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	position: relative;
}
.bestseller_image_container {
	display: block;
	width: 100%;
	height: 5.3rem;
	border-bottom: 2px solid #EFF6FB;
	box-sizing: border-box;
	overflow: hidden;
}
.bestseller_image_container img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.bestseller_list_item:hover img {
	transform: scale(1.05);
}
.bestseller_name {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 1rem;
	padding: 0 1rem;
	box-sizing: border-box;
	font-size: 1.2rem;
	line-height: 1.1em;
    height: 4.2em;
    overflow: hidden;
}
.bestseller_info_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 1rem;
	left: 0;
	padding: 0 .8em;
	box-sizing: border-box;
}
.bestseller_price {
	display: block;
	width: auto;
	height: auto;
	font-size: 1.2rem;
	line-height: 1em;
}
.buy_bestseller_button {
	font-size: 1rem;
	width: 6rem;
	min-width: 0;
	height: 2rem;
	white-space: nowrap;
	padding: 0;
}
.close_flying_dropdown {
	display: block;
	width: 1rem;
	height: 1rem;
	background-image: url(../img/icon_close_orange.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border: none;
	outline: none;
	cursor: pointer;
	transition: transform .4s ease;
	background-color: transparent;
}
.close_flying_dropdown:hover {
	transform: scale(1.05);
}
.flying_result_amount_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	-webkit-border-radius: .3rem;
    -moz-border-radius: .3rem;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background: #ffd500;
    background: linear-gradient(to bottom, #ffd500 0, #ff9600 100%);
    background: -moz-linear-gradient(top, #ffd500 0, #ff9600 100%);
    background: -ms-linear-gradient(top, #ffd500 0, #ff9600 100%);
    background: -o-linear-gradient(top, #ffd500 0, #ff9600 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffd500), color-stop(100%, #ff9600));
    background: -webkit-linear-gradient(top, #ffd500 0, #ff9600 100%);
    font-weight: 400;
    height: 3.6rem;
    line-height: 3.6rem;
    moz-border-radius: .3rem;
    padding: 0 1rem;
    position: absolute;
    left: 100%;
    top: 0;
    webkit-border-radius: 3px;
    width: 31.5rem;
    z-index: 250;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-1rem);
    transition: transform .4s ease, opacity .1s ease;
    pointer-events: none;
}
.flying_result_amount_container:hover .show {
	text-decoration: underline;
}
.flying_result_amount_container.active_flying_result_amount_container {
	opacity: 1;
	transform: none;
	pointer-events: auto;
    transition: transform .4s ease, opacity .1s ease, top .6s ease;
}
.product_available_form {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	padding-left: 2.6rem;
	box-sizing: border-box;
}
#product_available_checkbox {
	display: block;
	width: .1px;
	height: .1px;
	position: absolute;
	opacity: 0;
	z-index: -999;
	overflow: hidden;
}
.product_available_label {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1em;
}
.product_available_label:before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 2px;
	margin-right: 1.5rem;
	cursor: pointer;
	background-color: #FFFFFF;
}
#product_available_checkbox:checked + .product_available_label:before {
	background-image: url(../img/icon_checkbox.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.product_dropdown_container {
	display: block;
	width: 100%;
	height: auto;
	background-color: #F1F1F1;
	border-radius: 1rem;
	padding: 1rem;
	box-sizing: border-box;
	margin-top: 1.5rem;
	position: relative;
}
.product_top_line_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 3;
}
.product_dropdown_item {
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
	background-color: #FFFFFF;
	border-radius: 1rem;
	position: relative;
	margin-top: 1rem;
	box-sizing: border-box;
}
.product_dropdown_item:nth-child(1) {
	margin-top: 0;
}
.product_top_line_container .product_dropdown_item {
	width: 22.8rem;
	margin: 0 0 1.5rem;
	background-color: transparent;
}
.product_top_line_container .product_dropdown_item:last-child {
	margin-right: 0;
}
.product_dropdown_item_title {
	display: block;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 3.7rem;
	background: linear-gradient(to top, #FFFFFF 0, #FFFFFF 18%, #FFFFFF 83%, #FFFFFF 100%);
	box-sizing: border-box;
	padding-left: 4.5rem;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1em;
	position: relative;
	transition: color .4s ease;
	border: 2px solid #E5E5E5;
	border-radius: inherit;
	padding-top: 0.9rem;
    color: #000000;
    text-decoration: none;
}
.product_top_line_container .product_dropdown_item_title {
	padding-left: 5.7rem;
	padding-right: 2rem;
	background: none;
	background-color: transparent;
}
.product_dropdown_container > a {
    text-decoration: none;
    margin-top: 1rem;
    display: block;
}
.product_dropdown_container > a:first-child {
    margin-top: 0;
}
.product_dropdown_container > a .product_dropdown_item_title {
    padding: 1rem 1rem;
    line-height: 1.2em;
    height: auto;
}
.product_dropdown_item_title:before {
	content: '';
	display: block;
	width: 1.2rem;
	height: .8rem;
	background-image: url(../img/icon_arrow_bottom.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: transform .4s ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1.5rem;
	margin: auto 0;
	z-index: 2;
	pointer-events: none;
}
.product_dropdown_container > a .product_dropdown_item_title:before {
    content: none;
}
.product_dropdown_item.open .product_dropdown_item_title {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.product_dropdown_item.open .product_dropdown_item_title:before {
	transform: rotate(180deg);
}
.product_dropdown_item:hover .product_dropdown_item_title {
	background: linear-gradient(to top,#eff7fa 0,#dbf3fc 18%,#f4f9fb 83%,#f5f9fa 100%);
}
.product_dropdown_item.open:hover .product_dropdown_item_title {
	background: none;
}
.product_dropdown_item.select .product_dropdown_item_title {
	color: #0886f2;
}
.product_dropdown_item.top_line_dropdown_item.select .product_dropdown_item_title {
	background: #ffd500;
	background: linear-gradient(to bottom, #ffd500 0, #ff9600 100%);
	background: -moz-linear-gradient(top, #ffd500 0, #ff9600 100%);
	background: -ms-linear-gradient(top, #ffd500 0, #ff9600 100%);
	background: -o-linear-gradient(top, #ffd500 0, #ff9600 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffd500), color-stop(100%, #ff9600));
	background: -webkit-linear-gradient(top, #ffd500 0, #ff9600 100%);
	color: #FFFFFF;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.top_line_dropdown_item.open {
    z-index: 3;
}
.clear_search_button {
	display: block;
	width: 2rem;
	height: 2rem;
	background-image: url(../img/icon_close_blue.svg);
	background-repeat: no-repeat;
	background-size: 50% 50%;
	background-position: center;
	position: absolute;
	top: 1.1rem;
	right: .5rem;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
	transition: transform .4s ease;
	opacity: 0;
	pointer-events: none;
}
.clear_search_button:hover {
	transform: scale(1.1);
}
.product_dropdown_item.select .clear_search_button {
	opacity: 1;
	pointer-events: auto;
}
.reset_search_button {
	display: none;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1rem;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	transition: transform .4s ease;
	margin: auto 0;
}
.reset_search_button:hover {
	transform: scale(1.05);
}
.reset_search_button:before,
.reset_search_button:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 1px;
	margin: auto;
}
.reset_search_button:before {
	transform: rotate(45deg);
}
.reset_search_button:after {
	transform: rotate(-45deg);
}
.top_line_dropdown_item.select .reset_search_button {
	display: flex;
}
.product_dropdown_inner_container {
	display: block;
	width: 100%;
	height: auto;
	padding: 0 1.5rem;
	box-sizing: border-box;
	padding-bottom: 0;
	box-sizing: border-box;
	border: 2px solid #E5E5E5;
	border-width: 0;
	border-radius: inherit;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, padding .4s ease;
	background: linear-gradient(0.5turn, #F3F3F3, #FFFFFF 3rem, #FFFFFF calc(100% - 3rem), #F3F3F3);
}
.product_dropdown_item.open .product_dropdown_inner_container {
	padding-bottom: 1rem;
	border-width: 2px;
	border-top-width: 0;
}
.product_top_line_container .product_dropdown_inner_container {
	position: absolute;
	top: 3.7rem;
	left: 0;
}
.product_dropdown_inner {
	display: block;
	width: 100%;
	height: auto;
	padding: 1.5rem 0;
}
.product_dropdown_search_container {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 2px;
	box-sizing: border-box;
}
/*.product_dropdown_item.select .product_dropdown_search_container {
	border: 1px solid #9bdaf1;
	margin-bottom: 1.5rem;
	padding-bottom: .3rem;
}*/
.chosen_list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}
.chosen_list:empty {
	height: 0;
}
.chosen_item {
	display: block;
	width: auto;
	height: auto;
	background: linear-gradient(to bottom,#ffd500 0,#ff9600 100%);
	padding: .2rem 2rem .2rem .6rem;
	border-radius: 2px;
	position: relative;
	margin: .3rem 0 0 .3rem;
}
.chosen_item_text {
	font-size: 1.6rem;
	color: #FFFFFF;
}
.chosen_item_delete_button {
	display: block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	right: .5rem;
	margin: auto 0;
	cursor: pointer;
	z-index: 2;
	background-color: transparent;
	border: none;
	outline: none;
}
.chosen_item_delete_button:before,
.chosen_item_delete_button:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 1px;
	margin: auto;
}
.chosen_item_delete_button:before {
	transform: rotate(45deg);
}
.chosen_item_delete_button:after {
	transform: rotate(-45deg);
}
.product_dropdown_search_form {
	display: block;
	width: 100%;
	height: auto;
}
.product_dropdown_search_input {
	display: block;
	width: 100%;
	height: auto;
	border: none;
	outline: none;
	font-size: 1.6rem;
	line-height: 1em;
	padding: .2em 1em;
	box-sizing: border-box;
}
.product_dropdown_search_input:placeholder {
	color: #E5E5E5;
}
.product_dropdown_list {
	display: block;
	width: 100%;
	height: auto;
	list-style: none;
}
.product_search_list {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1.5rem;
}
.product_search_list:empty {
	padding: 0;
	border: none;
}
.product_dropdown_list_item {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 1.5rem;
	position: relative;
}
.product_dropdown_list_item:nth-child(1) {
	margin-top: 0;
}
.product_dropdown_list_checkbox {
	display: block;
	width: .1px;
	height: .1px;
	position: absolute;
	opacity: 0;
	z-index: -999;
	overflow: hidden;
}
.product_dropdown_list_checkbox_label {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1em;
}
.product_dropdown_list_checkbox_label:before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 2px;
	margin-right: 1.5rem;
	cursor: pointer;
	background-color: #FFFFFF;
}
.product_dropdown_list_checkbox:checked + .product_dropdown_list_checkbox_label {
	color: #0886f2;
}
.product_dropdown_list_checkbox:checked + .product_dropdown_list_checkbox_label:before {
	background-image: url(../img/icon_checkbox.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/*--------- common end ---------*/

/*--------- header start ---------*/

.standard_header {
	display: block;
	width: 100%;
	height: auto;
	padding: 3rem 0;
	box-sizing: border-box;
	border-bottom: 2px solid #C1EAF9;
}
.standard_header_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 120rem;
	margin: 0 auto;
}
.header_top_line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
}
.header_icon_links_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	height: auto;
	list-style: none;
}
.header_icon_link_item {
	display: block;
	width: auto;
	height: auto;
	list-style: none;
	margin-right: 2.5rem;
    height: 2.4rem;
}
.header_icon_link_item:last-child {
	margin-right: 0;
}
.header_icon_link {
	display: inline-block;
    height: 100%;
	cursor: pointer;
}
.header_icon {
	display: block;
    height: 100%;
	transition: opacity .4s ease;
}
.header_icon:hover {
	opacity: 1;
}
.top_line_info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 57.3rem;
	height: 3.7em;
	border-bottom: 1px solid #C1EAF9;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	box-sizing: border-box;
}
.top_line_link {
	display: block;
	font-size: 1.2rem;
	line-height: 1em;
	color: #949494;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	transition: color .4s ease;
}
.top_line_link:hover {
	color: #676767;
}
.top_line_link:nth-child(2) {
	font-size: 2.2rem;
}
.top_line_link.mobile {
	display: none;
}
.back_call_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 21.5rem;
	height: 3.7rem;
	color: #FFFFFF;
	font-size: 1.6rem;
	line-height: 1em;
	border: none;
	outline: none;
	transition: transform .4s ease;
	cursor: pointer;
	position: relative;
	background-color: transparent;
	font-family: 'Circe', Arial, sans-serif;
}
.back_call_button:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
	border-radius: .6rem;
	border-top-right-radius: 1rem;
	border-bottom-left-radius: 1rem;
	transform: skewX(-15deg);
}
.back_call_button:hover {
	transform: scale(1.05);
}
.back_call_button span {
	position: relative;
	z-index: 2;
}
.header_search_line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 3.7rem;
	margin-top: 3.6rem;
}
.main_logo_link {
	display: block;
	width: 23.2rem;
	cursor: pointer;
}
.main_logo_link img {
	display: block;
	width: 100%;
	transition: transform .4s ease;
}
.main_logo_link img:hover {
	transform: scale(1.05);
}
.search_line_form {
	display: block;
	width: 80rem;
	height: 100%;
	position: relative;
}
.search_line_form:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	border: 2px solid #E5E5E5;
	border-radius: 0.6rem;
	border-top-right-radius: 0.8rem;
	border-bottom-left-radius: 0.8rem;
	transform: skewX(-15deg);
	box-sizing: border-box;
}
.search_line_input {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
	border: none;
	outline: none;
	background-color: transparent;
	font-size: 1.2rem;
	line-height: 1em;
	padding: 1.2em 2em 0.8em;
	box-sizing: border-box;
	color: #7F7D7D;
}
.search_line_input::placeholder {
	color: #949494;
}
.search_line_button {
	display: block;
	width: 1.8rem;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2rem;
	margin: auto 0;
	background-color: transparent;
	border: none;
	outline: none;
	transition: transform .4s ease;
	cursor: pointer;
	z-index: 2;
}
.search_line_button:hover {
	transform: scale(1.05);
}
.search_line_button img {
	display: block;
	width: 100%;
}
.header_busket_button {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: auto;
	min-width: 11.1rem;
	height: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	position: relative;
	padding: 0 3rem 0 2.5rem;
	box-sizing: border-box;
	transition: transform .4s ease;
	cursor: pointer;
	text-decoration: none;
	color: #7F7D7D;
}
.header_busket_button:hover {
	transform: scale(1.05);
}
.header_busket_button:before {
	content: '';
	display: block;
	width: 91.1%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	border: 2px solid #FFC702;
	transform: skewX(-15deg);
	box-sizing: border-box;
	margin: auto;
	border-radius: 0.6rem;
	border-top-right-radius: 0.8rem;
	border-bottom-left-radius: 0.8rem;
}
.header_busket_icon {
	display: block;
	width: 2.2rem;
	margin-right: 1.5rem;
}
.header_busket_text {
	display: block;
	width: auto;
	height: auto;
	text-align: right;
	font-size: 1.2rem;
	line-height: 1em;
	color: #7F7D7D;
}
.mobile_line {
	display: none;
}
.header_navigation {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 3.6rem;
}
.header_navigation_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	list-style: none;
}
.header_navigation_item {
	display: block;
	padding: 1rem 2.6rem;
	list-style: none;
	position: relative;
}
.header_navigation_item.mobile {
	display: none;
}
.header_navigaion_link {
	display: block;
	width: auto;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1em;
	color: #949494;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s ease;
}
.header_navigaion_link.active_header_navigaion_link:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 2px solid #FFC702;
    border-radius: 0.6rem;
    border-top-right-radius: 0.8rem;
    border-bottom-left-radius: 0.8rem;
    transform: skewX(-15deg);
    box-sizing: border-box;
}
.header_navigaion_link:hover {
	color: #0886f2;
}

/*--------- header end ---------*/

/*--------- footer start ---------*/

.standard_footer {
	display: block;
	width: 100%;
	height: auto;
	background: linear-gradient(180deg, #EFF6FB 0%, rgba(239, 246, 251, 0.00) 100%);
	padding: 3rem 0 4rem;
	box-sizing: border-box;
}
.footer_links_line {
	display: block;
	width: 120rem;
	height: auto;
	padding-bottom: 3rem;
	border-bottom: 2px solid #E5E5E5;
	margin: 0 auto;
}
.footer_links_box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}
.footer_links_container {
	display: block;
	width: auto;
	height: auto;
}
.footer_link_item {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
	list-style: none;
}
.footer_link {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1.4em;
	color: #000000;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: .2s ease;
}
.footer_link:hover {
	border-color: #0886f2;
	color: #0886f2;
}
.footer_link.underline {
	border-color: #000000;
}
.footer_link.underline:hover {
	border-color: #0886f2;
}
.give_link_box {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 2rem;
}
.marks_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: 1rem;
}
.mark_item {
	display: block;
	width: 3.4rem;
	height: 3.4rem;
	margin-right: 1rem;
	background-image: url(../img/star_empty.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.mark_item.mark_item_full {
	background-image: url(../img/star_full.svg);
}
.mark_item:last-child {
	margin-right: 0;
}
.map_mini_link {
	display: block;
	width: 21.2rem;
	margin-top: 1rem;
}
.map_mini {
	display: block;
	width: 100%;
	transition: transform .4s ease;
}
.map_mini:hover {
	transform: scale(1.05);
}
.footer_yandex_box {
	display: block;
	width: 22rem;
}
.footer_copyright_line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 120rem;
	padding-top: 3rem;
	margin: 0 auto;
}
.footer_copyright_line_item {
	display: block;
	width: 39rem;
	height: auto;
}
.footer_copyright_line_item:nth-child(1) {
	width: 38rem;
}
.footer_copyright_line_item:nth-child(2) {
	width: 39rem;
}
.footer_copyright_line_item:nth-child(3) {
	width: 35.3rem;
}
.footer_text {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: normal;
}
.footer_social_links_box {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: 3rem;
}
.footer_social_link_item {
	display: block;
	width: 4.5rem;
	cursor: pointer;
	margin-right: 2rem;
}
.footer_social_link_image {
	display: block;
	width: 100%;
	transition: transform .4s ease;
}
.footer_social_link_item:hover .footer_social_link_image {
	transform: translateY(-.5rem);
}
.footer_social_link_item_ya_rythm {
    background-color: #000000;
    border-radius: 1rem;
    height: 4.5rem;
}
.footer_social_link_item_ya_rythm .footer_social_link_image {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/*--------- footer end ---------*/

/*----------popups start----------*/

#main_popup_container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -999;
	opacity: 0;
	transition: opacity .4s ease;
	overflow: hidden;
}
#main_popup_container.active_popup_container {
	z-index: 100;
	opacity: 1;
}
.main_popup_container_wrapper {
	display: block;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: relative;
	z-index: 2;
}
.main_popup_container_wrapper_scroll {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
}
#popup_background {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}
.popup_item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 50rem;
	min-width: 400px;
	height: auto;
	opacity: 0;
	position: absolute;
	box-sizing: border-box;
	transition: opacity .4s ease, transform .4s ease;
	transform: translateY(-2rem);
	background-color: #FFFFFF;
	z-index: -1;
	max-height: 0;
	border-radius: 1rem;
	padding: 3rem 3rem;
	overflow: hidden;
	border: 2px solid #E5E5E5;
}
.popup_item.active_popup {
	opacity: 1;
	transform: none;
	z-index: 2;
	position: relative;
	max-height: 100%;
	overflow: visible;
}
.popup_form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: auto;
}
.form_label {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 1.5rem;
	position: relative;
}
.form_label:nth-of-type(1) {
	margin-top: 0;
}
#feedback_form .form_label:nth-of-type(1),
#individual_price_form .form_label:nth-of-type(1) {
	margin-top: 3rem;
}
.form_input,
.form_textarea {
	display: block;
	width: 100%;
	height: 3.7rem;
	border: 2px solid #C1EAF9;
	outline: none;
	font-size: 1.6rem;
	line-height: 1em;
	padding: 0.1em 1.2em;
	box-sizing: border-box;
	background-color: #FFFFFF;
	color: #000000;
	border-radius: 1.3rem;
}
.form_input.error,
.form_textarea.error {
	border: 1px solid #E83F34;
}
.form_input::placeholder,
.form_textarea::placeholder {
    color: #949494;
    font-weight: 400;
}
.form_textarea {
	max-width: 100%;
	max-height: 15rem;
	min-height: 3.7rem;
	padding-top: 0.5em;
}
.label_error {
	display: block;
	width: auto;
	height: 1.1em;
	font-size: 1.6rem;
	line-height: 1em;
	margin-top: .5em;
	font-weight: 500;
	color: red;
}
.label_error:empty {
	max-height: 0;
	margin: 0;
}
.close_popup_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 3;
	border: none;
	outline: none;
	background-color: transparent;
	cursor: pointer;
	transition: transform .4s ease;
}
.close_popup_button:before,
.close_popup_button:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FF8A02;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transform-origin: center;
	border-radius: 4px;
}
.close_popup_button:before {
	transform: rotate(45deg);
}
.close_popup_button:after {
	transform: rotate(-45deg);
}
.close_popup_button:hover {
	transform: scale(1.05);
}
.popup_title {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.3em;
}
#individual_price_popup .popup_title,
#feedback_popup .popup_title,
#order_popup .popup_title {
	text-transform: uppercase;
}
.popup_text {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1em;
    font-weight: 400;
    margin-top: 2rem;
}
.popup_text:empty {
	display: none;
}
.button_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	border-top: 2px solid #E5E5E5;
	margin-top: 2.6rem;
	padding-top: 2.6rem;
}
#feedback_form_button,
#individual_price_form_button {
	width: 19rem;
}
.popup_footnote {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.2rem;
	line-height: normal;
	color: #949494;
}
.popup_footnote a {
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}
.popup_footnote a:hover {
	text-decoration: none;
}
#feedback_popup .popup_footnote,
#individual_price_popup .popup_footnote {
	width: 20.2rem;
}
.popup_checkbox_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: 2.6rem;
}
.popup_checkbox {
	display: block;
	width: .1px;
	height: .1px;
	position: absolute;
	opacity: 0;
	z-index: -999;
	overflow: hidden;
}
.popup_checkbox_label {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 1px;
	margin-right: 1.5rem;
	cursor: pointer;
	background-color: #FFFFFF;
}
.popup_checkbox:checked + .popup_checkbox_label {
	border-color: #000000;
}
.popup_checkbox:checked + .popup_checkbox_label:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/icon_checkbox.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.popup_checkbox_container .popup_text {
	width: auto;
	margin: 0;
}
.good_icon,
.bad_icon {
	display: block;
	width: 7rem;
	margin: 0 auto;
}
#good_popup .popup_title,
#bad_popup .popup_title {
	margin-top: 3rem;
}
#good_popup .action_button {
	width: 19rem;
	margin-top: 3rem;
}
#good_popup .popup_text,
#bad_popup .popup_text {
	font-size: 2rem;
	text-align: center;
	margin-top: 3rem;
}
#bad_popup .action_button {
	margin-top: 3rem;
}
#order_form {
	margin-top: 1.5rem;
}
.order_form_container {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 2rem;
	padding: 2rem 0;
	border-top: 2px solid #E5E5E5;
	border-bottom: 2px solid #E5E5E5;
}
.order_documents_container {
	display: block;
	width: 100%;
	height: auto;
}
.order_documents_container.dragover {
  outline: 2px dashed #4a90e2;
  background: rgba(74, 144, 226, 0.05);
}
.order_documents_label {
	display: none;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 5rem;
	cursor: pointer;
	background-color: #F0F0F0;
	border-radius: 1rem;
}
.empty_order_documents_container .order_documents_label {
	display: flex;
}
#order_input_file {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.empty_container  {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 2rem;
	box-sizing: border-box;
	cursor: pointer;
}
.empty_container:before {
	content: '';
	display: block;
	width: 1.4rem;
	height: 1.4rem;
	background-image: url(../img/icon_add.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 1rem;
}
.empty_container_text {
	font-size: 1.2rem;
	color: #000000;
}
.empty_order_documents_container .order_documents_list {
	display: none;
}
.order_documents_list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	background-color: #F0F0F0;
	border: 2px solid #E5E5E5;
	border-radius: 1rem;
	padding: 1rem 1rem 0;
	box-sizing: border-box;
}
.order_document_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 20rem;
	height: 10rem;
	border-radius: .5rem;
	border: 2px solid #C1EAF9;
	padding: 0 1rem;
	box-sizing: border-box;
	position: relative;
	background-color: #FFFFFF;
	margin-bottom: 1rem;
}
.order_document_item_add {
    cursor: pointer;
}
.order_document_item_add::before {
    content: '';
    display: block;
    width: 4rem;
    height: .6rem;
    border-radius: .3rem;
    background-color: #C1EAF9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.order_document_item_add::after {
    content: '';
    display: block;
    height: 4rem;
    width: .6rem;
    border-radius: .3rem;
    background-color: #C1EAF9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.order_document_name {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1em;
	color: #000000;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.delete_documen_button {
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
	transition: transform .4s ease;
}
.delete_documen_button:hover {
	transform: scale(1.05);
}
.delete_documen_button:before,
.delete_documen_button:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #C1EAF9;
	border-radius: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}
.delete_documen_button:before {
	transform: rotate(45deg);
}
.delete_documen_button:after {
	transform: rotate(-45deg);
}
.order_checkbox_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 3rem;
	background-color: #F0F0F0;
	border-radius: 1rem;
	margin-top: 1.5rem;
	padding: 0 2rem;
    box-sizing: border-box;
}
.order_checkbox_container .popup_text {
	margin: 0;
}
.order_sum_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3.7rem;
	background-color: #F0F0F0;
	border-radius: 1rem;
	margin-top: 3rem;
}
.order_sum {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1em;
}
#order_form_button {
	width: 100%;
	margin-top: 2rem;
}
#order_form .popup_footnote {
	margin-top: 1.2rem;
}
#gallery_popup {
	width: 100rem;
}
.gallery_swiper {
	width: 100%;
}
.gallery_swiper .swiper-slide {
	width: 90rem;
}
.slide_image {
	display: block;
	width: 100%;
	height: 70rem;
	object-fit: contain;
}
.slide_text {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.2em;
	margin-top: 2rem;
}
.gallery_swiper_button_prev,
.gallery_swiper_button_next {
	color: #FFC702;
}
.gallery_swiper_pagination .swiper-pagination-bullet {
	width: 1rem;
	height: 1rem;
	margin: 0.5rem;
	background-color: #c1eaf9;
	opacity: 1;
}
.gallery_swiper_pagination .swiper-pagination-bullet-active {
	background-color: #FFC702;
	opacity: 1;
}

input#datetime,
input#datetime:placeholder,
input#datetime:invalid::-webkit-datetime-edit {
	color: rgba(0, 147, 214, .5);
    font-weight: 400;
}

/*----------popups end----------*/

.page_numbers_container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin-top: 4rem;
	overflow-y: auto;
}
.page_numbers_list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	list-style: none;
	border-radius: .5rem;
    padding: 0 .5rem;
    border: 1px solid #e5e5e5;
}
.page_numbers_item {
	display: block;
	width: 3rem;
	height: 4rem;
	list-style: none;
	margin: 0 .5rem;
}
.page_number_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: 900;
    color: #464646;
    font-size: 1.6rem;
    line-height: 1em;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: color .4s ease;
    cursor: pointer;
}
.page_numbers_item.active_page_numbers_item .page_number_button,
.page_number_button:hover {
	color: #ff9600;
}

.back_data_container h2,
.back_data_container .summary-title {
    display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.2em;
	font-weight: bold;
    margin: 2rem 0 0 !important;
}
.back_data_container p:not(.news_item_text),
.back_data_container .row strong,
.back_data_container .row span,
.back_data_container h3 {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.25em;
    margin: 2rem 0 0 !important;
}
.back_data_container p:first-child {
    margin-top: 0 !important;
}
.products_list + .back_data_container p:first-child {
    margin-top: 2rem !important;
}
.back_data_container .row span {
    color: #000000 !important;
}
.back_data_container p a,
.back_data_container .row span a {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}
.back_data_container p span {
    color: inherit !important
}
.back_data_container p a:hover,
.back_data_container .row span a:hover {
    text-decoration: none;
}
.back_data_container p img {
    display: block;
    float: none !important;
    max-width: 100%;
    max-height: 400px;
}
.back_data_container ul {
    display: block;
    width: 100%;
    list-style: none !important;
    margin: 2rem 0 0 !important;
    padding: 0 !important;
}
.back_data_container li {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.1em;
    margin: .6rem 0 0 !important;
    position: relative;
    padding-left: 2em;
    list-style: none !important;
}
.back_data_container li:before {
    content: '';
    display: block;
    width: .5em;
    height: .5em;
    position: absolute;
    left: 0;
    top: .2em;
    border-radius: 50%;
    background-color: #FFC702;
}
.back_data_container li a {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}
.back_data_container li a:hover {
    text-decoration: none;
}
.back_data_container li span {
    color: inherit !important
}
.back_data_container table {
    margin: 2rem 0 0 !important;
    width: 100%;
    border-collapse: collapse;
}
.back_data_container th,
.back_data_container td {
    border: 1px solid #ddd !important;
    padding: 1rem !important;
    text-align: left !important;
    font-size: 1.6rem;
	line-height: 1.1em;
}

.flex_section_wrapper {
    display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.flex_section {
    display: block;
	width: 94.8rem;
	height: auto;
	padding: 2rem 0 6rem;
    padding-top: 0;
	box-sizing: border-box;
}
.flex_section_container {
    display: block;
	width: 100%;
	height: auto;
}
.product_control_section {
	display: block;
	width: 24.2rem;
	height: auto;
}
.main_line_title_container {
	display: none;
}
.sections_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem 2rem;
}
.sections_wrapper .item {
	display: block;
	width: 45rem;
	text-decoration: none;
	color: #000000;
	cursor: pointer;
}
.sections_wrapper .item:hover {
	text-decoration: underline;
	color: #0886f2;
}
.sections_wrapper .item img {
	display: block;
	width: 100%;
	height: 30rem;
	object-fit: cover;
    transition: transform .6s ease;
}
.sections_wrapper .item:hover img {
    transform: translateY(-1rem);
}
.sections_wrapper .item > p {
	margin-top: 1rem !important;
}
.cookie_section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform .4s ease;
  /* background-color: #eeeeee; */
  background: linear-gradient(180deg, #EFF6FB 0%, rgba(239, 246, 251, 0.00) 100%);
  background-color: #dcdcdc;
  padding: 3rem 7rem;
  border-top: 2px solid #C1EAF9;
}
.cookie_text {
  display: block;
  width: 120rem;
  font-size: 1.6rem;
  line-height: 1.3em;
}
.cookie_text a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.cookie_text a:hover {
  text-decoration: none;
}
.ok_cookie_button {
  width: 20rem;
  /* background: #FFFFFF; */
  /* color: #FF8A02; */
  /* border: 2px solid #FF8A02; */
}
.policy_checkbox_container {
    display: block;
    margin-top: 2rem;
}
.policy_checkbox {
	display: block;
	width: .1px;
	height: .1px;
	position: absolute;
	opacity: 0;
	z-index: -999;
	overflow: hidden;
}
.policy_checkbox_label {
	display: block;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1.2em;
    padding-left: 3rem;
    position: relative;
    color: #949494;
}
.policy_checkbox_label a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.policy_checkbox_label a:hover {
    text-decoration: none;
}
.policy_checkbox_label:before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 2px;
	margin-right: 1.5rem;
	cursor: pointer;
	background-color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
}
.policy_checkbox:checked + .policy_checkbox_label {
	color: #0886f2;
}
.policy_checkbox:checked + .policy_checkbox_label:before {
	background-image: url(../img/icon_checkbox.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.checkbox_error  + .policy_checkbox_label {
    color: red;
}
.search_resuts_flying_box {
    display: block;
    position: absolute;
    top: 100%;
    left: -0.3rem;
    transition: height .6s ease;
    overflow: hidden;
    height: 0;
    z-index: 4;
    width: calc(100% - 2px);
    pointer-events: none;
}
.search_resuts_flying_box_active {
    height: 32rem;
    pointer-events: auto;
}
.search_resuts_flying_box_active.search_resuts_flying_box_load:before {
    content:"";
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: .4rem dashed #C1EAF9;
    position: absolute;
    left: 0;
    right: 0;
    top: 14rem;
    margin: 0 auto;
    animation: flying_box_load 4s linear infinite;
}
@keyframes flying_box_load {
    100% {
        transform : rotate(360deg);
    }
}
.search_resuts_container {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 2px solid #E5E5E5;
    border-top: none;
    border-radius: 0 0 .6rem .6rem;
    box-sizing: border-box;
}
.search_resuts_list_wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.search_resuts_list {
    display:block;
    list-style: none;
    height: 28rem;
    overflow-y:auto;
}
.search_result_item {
    display: block;
    height: 4rem;
}
.search_result_item_text {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    font-size: 1.6rem;
    line-height: 1.2em;
    cursor: pointer;
    padding: 0.2rem 2rem 0;
    border-bottom: 1px solid #E5E5E5;
    transition: background-color .2s ease, color .2s ease;
}
.search_result_item_text:hover {
    background-color: #C1EAF9;
}
.all_search_results {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 4rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.2rem 2rem 0;
    font-size: 1.6rem;
    color: #000000;
    text-decoration: none;
    border-top: 1px solid #C1EAF9;
    background-color: #FFFFFF;
}
.all_search_results:hover {
    color: #0886f2;
}
#feedback_captcha,
#individual_price_captcha,
#order_captcha {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}
.smart_warning {
    animation: smart_warning 1s linear forwards;
}
@keyframes smart_warning {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    12% {
        transform: translateX(-2rem);
        opacity: 0.15;
    }
    24% {
        transform: translateX(0px);
        opacity: 1;
    }
    36% {
        transform: translateX(1.6rem);
        opacity: 0.25;
    }
    48% {
        transform: translateX(0px);
        opacity: 1;
    }
    58% {
        transform: translateX(-1.2rem);
        opacity: 0.4;
    }
    68% {
        transform: translateX(0px);
        opacity: 1;
    }
    76% {
        transform: translateX(-.8rem);
        opacity: 0.6;
    }
    84% {
        transform: translateX(0px);
        opacity: 1;
    }
    90% {
        transform: translateX(-.4rem);
        opacity: 0.8;
    }
    95% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@media screen and (max-width: 1280px) {
	html {
		font-size: .72vw;
	}
}

@media screen and (min-width: 2000px) {
	html {
		font-size: .52vw;
	}
}

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

	/*--------- common start ---------*/
	html {
		font-size: 1vw;
	}
.action_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 10em;
    height: 2em;
    	font-size: 4rem;
    padding: 0 1em;
    border-radius: 0.3em;
}
	.button_processing:after {
		width: 6rem;
		height: 6rem;
	}
	.line_title_container {
		height: auto;
	}
    .gallery_section .line_title_container,
    .certificates_gallery_section .line_title_container {
        margin-top: 4rem;
    }
	.line_title_container:before {
		height: 2px;
	}
	.line_title {
		font-size: 4rem;
        line-height: 1.2em;
		border-bottom: 2px solid #FFC702;
		padding: 1rem 0;
		box-sizing: border-box;
	}
	.tags_container {
		max-height: 4rem;
		margin-top: 2.3rem;
	}
	.tags_list {
		width: 70rem;
	}
	.tag_item {
		margin-right: 2rem;
		margin-bottom: 1em;
	}
	.close_tag_item {
		width: 2rem;
		height: 2rem;
		margin-left: 1rem;
	}
	.tag_item_link {
		font-size: 3.2rem;
		line-height: 1.5em;
	}
	.show_all_tags_button {
		font-size: 3.2rem;
	}

	.sorting_links_container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin-top: 1rem;
	border-bottom: 2px solid #E5E5E5;
}
	.sorting_text {
		display: none
	}
	.sorting_link {
		padding: 2rem 1rem;
		box-sizing: border-box;
		border-radius: 1rem;
		margin-right: 4rem;
		margin-bottom: 1rem;
		font-size: 3.2rem;
	}
	.sorting_link img {
		width: 2.5rem;
		margin-right: .5rem;
	}
	.products_list {
		display: block;
		border-radius: 2.5rem;
		margin-top: 2.5em;
		padding: 2px;
	}
	.products_list_item {
		display: block;
		width: 100%;
		margin: 0;
		padding: 2rem;
		border-bottom: 2px solid #E5E5E5;
	}
	.products_list_item:nth-child(1) {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	.products_list_item:nth-child(2) {
		border-top-right-radius: 0;
	}
	.products_list_item:last-child {
		border-bottom: none;
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	.product_top_line {
		height: 20rem;
	}
	.product_image_container {
		width: 25rem;
		height: 100%;
	}
	.promotion_products_list_item .product_image_container:before {
		width: 14rem;
		height: 6rem;
		top: 5rem;
		left: -2.2rem;
	}
	.top_line_container {
		width: 55rem;
	}
	.product_name {
		font-size: 3.2rem;
	}
	.product_price_container {
		padding: 1.4rem 1.4rem 1.4rem 2rem;
	}
	.product_price {
		font-size: 3.2rem;
	}
	.product_price_input {
		width: 26.9rem;
		height: 7rem;
		border-radius: 1.2rem;
		font-size: 4rem;
	}
	.product_bottom_line {
		margin-top: 1rem;
	}
	.product_bottom_line_text {
		font-size: 3.2rem;
	}
	.product_amounts_container {
		margin-top: 1rem;
	}
	.product_amounts {
		width: 58.1rem;
		height: 9rem;
		padding: 1.5rem;
	}
	.product_amount_input {
		width: 16.3rem;
		font-size: 3.2rem;
	}
	.buy_button {
		width: 23rem;
		height: 8rem;
		min-width: 15rem;
		font-size: 4rem;
	}

	.main_part_item {
		width: 100%;
		margin: 0;
		padding: 0 4rem;
		box-sizing: border-box;
	}
	.breadcrumbs {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 4rem;
		padding: 0 4rem;
		box-sizing: border-box;
	}
	.breadcrumb_line {
		font-size: 3.2rem;
	}
    .info_block {
        margin-top: 4rem;
    }
	.standard_title {
		font-size: 4rem;
	}
    .standard_title_mini {
        font-size: 3.2rem;
    }
	.standard_text {
		font-size: 3.2rem;
	}
.connection_box {
	display: block;
	width: 100%;
	height: auto;
	border: 2px solid #E5E5E5;
	border-radius: 10px;
	padding: 1.5rem 1rem;
	box-sizing: border-box;
	margin-top: 2rem;
}
.connection_title {
	display: block;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1em;
}
	.product_catalog_section {
		width: 100%;
		padding: 0 0 6rem;
	}
.chat_button,
.director_call_button,
.leave_feedback_button {
	align-items: flex-start;
	text-align: left;
	padding-left: 4.7rem;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin-top: 1.5rem;
	font-size: 1.2rem;
	padding-right: 0;
}
.chat_button:before,
.director_call_button:before,
.leave_feedback_button:before {
	content: '';
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
.chat_button:before {
	width: 2.1rem;
	height: 1.7rem;
	background-image: url(../img/icon_chat_white.svg);
	left: 1.8rem;
}
.director_call_button:before {
	width: 1.8rem;
	height: 1.8rem;
	background-image: url(../img/icon_phone_white.svg);
	left: 1.9rem;
}
.leave_feedback_button:before {
	width: 1.8rem;
	height: 1.8rem;
	background-image: url(../img/icon_like_white.svg);
	left: 1.9rem;
}
	.standard_main {
		width: 100%;
		padding-top: 7rem;
		padding-bottom: 8rem;
	}
	.standard_main:before {
		height: 15.8rem;
	}
	.flying_dropdown_button {
		display: none;
	}
	.flying_dropdown_bg {
		display: none !important;
	}
	.flying_dropdown_container {
		display: none;
	}
	.product_available_form {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	padding-left: 2.6rem;
	box-sizing: border-box;
}
#product_available_checkbox {
	display: block;
	width: .1px;
	height: .1px;
	position: absolute;
	opacity: 0;
	z-index: -999;
	overflow: hidden;
}
.product_available_label {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	height: auto;
	font-size: 1.6rem;
	line-height: 1em;
}
.product_available_label:before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 2px;
	margin-right: 1.5rem;
	cursor: pointer;
	background-color: #FFFFFF;
}
#product_available_checkbox:checked + .product_available_label:before {
	background-image: url(../img/icon_checkbox.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.product_dropdown_container {
	display: block;
	width: 100%;
	height: auto;
	background-color: #F1F1F1;
	border-radius: 1rem;
	padding: 1rem;
	box-sizing: border-box;
	margin-top: 2.4rem;
}
	.product_top_line_container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
		width: 100%;
		height: auto;
		position: relative;
		z-index: 3;
	}
.product_dropdown_item {
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
	background-color: #FFFFFF;
	border-radius: 1.5rem;
	position: relative;
	margin-top: 0;
}
.product_dropdown_item:nth-child(1) {
	margin-top: 0;
}
	.product_dropdown_item.open {
		z-index: 2;
	}
	.product_top_line_container .product_dropdown_item {
		width: 42.6rem;
		margin: 0 0 1.5rem;
	}
	.product_dropdown_item_title {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 7.5rem;
		background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
		padding-left: 0;
		font-size: 3.2rem;
		border: none;
		color: #FFFFFF;
	}
    .product_dropdown_container > a .product_dropdown_item_title {
        padding: 0 1rem;
        line-height: 1.2em;
        height: 7.5rem;
    }
	.product_top_line_container .product_dropdown_item_title {
		padding-left: 2rem;
		padding-right: 4rem;
		background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
		text-align: left;
		display: block;
		padding-top: 2rem;
		font-size: 4rem;
	}
	.product_dropdown_item_title:before {
		display: none;
	}
	.product_dropdown_item.open .product_dropdown_item_title {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.product_dropdown_item:hover .product_dropdown_item_title {
		background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
	}
	.product_dropdown_item.open:hover .product_dropdown_item_title {
		background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
	}
	.product_dropdown_item.select .product_dropdown_item_title {
		color: #FFFFFF;
	}
.product_dropdown_inner_container {
	display: block;
	width: 100%;
	height: auto;
	padding: 0 1.5rem;
	box-sizing: border-box;
	padding-bottom: 0;
	box-sizing: border-box;
	border: 2px solid #E5E5E5;
	border-width: 0;
	border-radius: inherit;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, padding .4s ease;
	background: linear-gradient(0.5turn, #F3F3F3, #FFFFFF 3rem, #FFFFFF calc(100% - 3rem), #F3F3F3);
}
.product_dropdown_item.open .product_dropdown_inner_container {
	padding-bottom: 1rem;
	border-width: 2px;
	border-top-width: 0;
}
	.reset_search_button {
		width: 2rem;
		height: 2rem;
		right: 2rem;
	}
	.reset_search_button:before,
	.reset_search_button:after {
		height: 2px;
	}
	.product_top_line_container .product_dropdown_inner_container {
		top: 7rem;
	}
.product_dropdown_inner {
	display: block;
	width: 100%;
	height: auto;
	padding: 1.5rem 0;
}
.product_dropdown_search_container {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 2px;
	box-sizing: border-box;
}
/*.product_dropdown_item.select .product_dropdown_search_container {
	border: 1px solid #9bdaf1;
	margin-bottom: 1.5rem;
	padding-bottom: .3rem;
}*/
.chosen_list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}
.chosen_list:empty {
	height: 0;
}
.chosen_item {
	display: block;
	width: auto;
	height: auto;
	background: linear-gradient(to bottom,#ffd500 0,#ff9600 100%);
	padding: .2rem 2rem .2rem .6rem;
	border-radius: 2px;
	position: relative;
	margin: .3rem 0 0 .3rem;
}
.chosen_item_text {
	font-size: 1.6rem;
	color: #FFFFFF;
}
.chosen_item_delete_button {
	display: block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	right: .5rem;
	margin: auto 0;
	cursor: pointer;
	z-index: 2;
	background-color: transparent;
	border: none;
	outline: none;
}
.chosen_item_delete_button:before,
.chosen_item_delete_button:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 1px;
	margin: auto;
}
.chosen_item_delete_button:before {
	transform: rotate(45deg);
}
.chosen_item_delete_button:after {
	transform: rotate(-45deg);
}
.product_dropdown_search_form {
	display: block;
	width: 100%;
	height: auto;
}
.product_dropdown_search_input {
	display: block;
	width: 100%;
	height: auto;
	border: none;
	outline: none;
	font-size: 1.6rem;
	line-height: 1em;
	padding: .2em 1em;
	box-sizing: border-box;
}
.product_dropdown_search_input:placeholder {
	color: #E5E5E5;
}
.product_dropdown_list {
	display: block;
	width: 100%;
	height: auto;
	list-style: none;
}
.product_search_list {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1.5rem;
}
.product_search_list:empty {
	padding: 0;
	border: none;
}
.product_dropdown_list_item {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 1.5rem;
	position: relative;
}
.product_dropdown_list_item:nth-child(1) {
	margin-top: 0;
}
	.product_dropdown_list_checkbox_label {
		font-size: 3.2rem;
	}
	.product_dropdown_list_checkbox_label:before {
		width: 4rem;
		height: 4rem;
		margin-right: 2.5rem;
	}

	/*--------- common end ---------*/

	/*--------- header start ---------*/

	.standard_header {
		padding: 3rem 3rem;
		position: relative;
		z-index: 3;
	}
	.standard_header_wrapper {
		width: 100%;
	}
	.header_top_line {
		display: none;
	}
	.top_line_link.mobile {
		display: block;
		font-size: 4rem;
		transform: translateY(0.15em);
		/* font-weight: 600; */
		color: #565656;
	}
	.header_search_line {
		height: auto;
		margin-top: 0;
	}
	.main_logo_link {
		width: 29.9rem;
	}
	.search_line_form {
		display: none
	}
	.header_busket_button {
		height: 6.2rem;
		width: 22em;
		padding: 0 4rem 0 3rem;
		box-sizing: border-box;
	}
	.header_busket_button:before {
		border-radius: 1.4rem;
    	border-top-right-radius: 1.6rem;
    	border-bottom-left-radius: 1.6rem;
	}
	.header_busket_icon {
		width: 3.6rem;
		margin-right: 2rem;
	}
	.header_busket_text {
		font-size: 3.2rem;
		white-space: nowrap;
		transform: translateY(0.4rem);
		font-weight: 500;
	}
	.mobile_line {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: auto;
		margin-top: 5rem;
	    position: relative;
    	z-index: 3;
	}
	.header_icon_links_container {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		width: auto;
		height: auto;
		list-style: none;
	}
	.header_icon_link_item {
		margin-right: 3em;
        height: 4em;
	}
	.header_icon_link_item:last-child {
		margin-right: 0;
	}
	.burger_button {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 6rem;
		height: 4.2rem;
		font-size: 1rem;
		background-color: transparent;
		border: none;
		outline: none;
		position: relative;
		transition: transform .4s ease;
	}
	.open_burger_button .burger_button {
		transform: rotate(90deg);
	}
	.burger_button:before,
	.burger_button:after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		border-radius: .5rem;
		position: absolute;
		left: 0;
		background-color: #FFC702;
	}
	.burger_button:before {
		top: 0;
	}
	.burger_button:after {
		bottom: 0;
		width: 54rem;
		max-width: 100%;
		transition: max-width .4s ease;
	}
	.open_burger_button .burger_button:after {
		max-width: 54rem;
	}
	.burger_button span {
		display: block;
		width: 100%;
		height: 2px;
		border-radius: .5rem;
		background-color: #FFC702;
	}
	.mobile_line_link {
		display: block;
		width: auto;
		height: auto;
		font-size: 3.2rem;
		height: 1em;
		color: #949494;
		text-decoration: none;
		cursor: pointer;
		font-weight: 500;
		transform: translateY(-0.2em);
	}
	.mobile_line_link:hover {
		text-decoration: underline;
	}
	.mobile_line_link.active_mobile_line_link {
		color: #5FBBDC;
	}
	.header_navigation {
		display: block;
		width: 30.5rem;
		height: auto;
		max-height: 0;
		margin-top: 0;
		position: absolute;
		top: 100%;
		left: 3rem;
		z-index: 2;
		border-bottom-left-radius: 1.2rem;
		border-bottom-right-radius: 1.2rem;
		overflow: hidden;
		transition: max-height .4s ease;
	}
	.header_navigation_container {
		display: block;
		width: 100%;
		height: auto;
		background-color: #F1F1F1;
		padding: 1.2rem 1.2rem 1.2rem 5rem;
		box-sizing: border-box;
		position: relative;
	}
	.header_navigation_item.mobile {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 7rem;
		border: 2px solid #E5E5E5;
		border-radius: 1.2rem;
		box-sizing: border-box;
		padding: 0;
		padding-left: 2rem;
		position: relative;
		background-color: #FFFFFF;
		margin-bottom: 1.2rem;
	}
	.header_navigation_item.desktop {
		display: none;
	}
	.header_navigation_item:last-child {
		margin-bottom: 0;
	}
	.header_navigation_item:before {
		content: '';
		display: block;
		width: 4.2rem;
		height: 2px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 100%;
		background-color: #FFC702;
		margin: auto 0;
	}
	.header_navigaion_link {
		text-align: left;
		font-size: 3.2rem;
		line-height: 1em;
		color: #000000;
	}
	.header_navigaion_link.active_header_navigaion_link:before {
	    border: 2px solid #FFC702;
	    border-radius: 1.2rem;
	    border-top-right-radius: 1.2rem;
	    border-bottom-left-radius: 1.2rem;
	    transform: none;
	}

	/*--------- header end ---------*/

	/*--------- footer start ---------*/

	.standard_footer {
		background: linear-gradient(180deg, #EFF6FB 0%, rgba(239, 246, 251, 0.00) 100%);
		padding: 7rem 5rem 11rem;
	}
	.footer_links_line {
		width: 100%;
		padding-bottom: 0;
		border-bottom: none;
		margin: 0;
	}
	.footer_links_container {
		width: 48%;
		margin-bottom: 7em;
	}
	.footer_link_item {
		margin-bottom: 2.5rem;
	}
	.footer_link_item:last-child {
		margin-bottom: 0;
	}
	.footer_link {
		font-size: 3.2rem;
	}
    .footer_yandex_box .footer_link {
        width: 100%;
    }
	.give_link_box {
		width: 100%;
		margin-bottom: 4rem;
	}
	.marks_container {
		margin-top: 2.5rem;
	}
	.mark_item {
		width: 6rem;
		height: 6rem;
		margin-right: 2rem;
	}
	.mark_item:last-child {
		margin-right: 0;
	}
	.map_mini_link {
		width: 40rem;
		margin-top: 2.5rem;
	}
	.footer_yandex_box {
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: flex-start;
		width: 48%;
	}
	.footer_copyright_line {
		display: block;
		width: 100%;
		padding-top: 0;
		margin: 0;
		margin-top: 7rem;
	}
	.footer_copyright_line_item {
		width: 100%;
	}
	.footer_copyright_line_item:nth-child(1) {
		width: 100%;
	}
	.footer_copyright_line_item:nth-child(2) {
		width: 100%;
	}
	.footer_copyright_line_item:nth-child(3) {
		width: 100%;
	}
	.footer_text {
		text-align: center;
		font-size: 3.2rem;
	}
	.footer_social_links_box {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.footer_social_link_item {
		width: 11rem;
		margin: 0 1.5rem;
	}
    .footer_social_link_item_ya_rythm {
        height: 11rem;
        border-radius: 2rem;
    }
	.footer_copyright_line_item:nth-child(2) {
		margin-bottom: 2.5rem;
	}

	/*--------- footer end ---------*/

	/*----------popups start----------*/

	#main_popup_container {
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
	}
    .main_popup_container_wrapper_scroll {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        width: 100%;
        height: auto;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
        position: relative;
        box-sizing: border-box;
    }
	.popup_item {
		width: 90rem;
		min-width: 300px;
		max-height: 0;
		border-radius: 2.5rem;
		padding: 8rem 5rem;
	}
	.popup_item.active_popup {
		max-height: 100%;
	}
	.form_label {
		margin-top: 4rem;
	}
	.form_label:nth-of-type(1) {
		margin-top: 0;
	}
	#feedback_form .form_label:nth-of-type(1),
	#individual_price_form .form_label:nth-of-type(1) {
		margin-top: 4rem;
	}
	.form_input,
	.form_textarea {
		height: 7rem;
		border: 2px solid #C1EAF9;
		font-size: 3.2rem;
		padding: 0.1em 1.2em;
		border-radius: 2.5rem;
	}
	.form_input.error,
	.form_textarea.error {
		border: 2px solid #E83F34;
	}
    .form_textarea {
        max-width: 100%;
        max-height: 15rem;
        min-height: 3.7rem;
        padding-top: 0.5em;
    }
	.label_error {
		font-size: 3.2rem;
	}
	.close_popup_button {
		width: 4rem;
		height: 4rem;
		top: 4rem;
		right: 4rem;
	}
	.close_popup_button:before,
	.close_popup_button:after {
		height: 2px;
		border-radius: 4px;
	}
	.popup_title {
	    font-size: 4rem;
	}
    #individual_price_popup .popup_title,
    #feedback_popup .popup_title,
    #order_popup .popup_title {
        text-transform: uppercase;
    }
	.popup_text {
	    font-size: 2.4rem;
	    margin-top: 4rem;
	}
	.button_container {
		display: block;
		width: 100%;
		height: auto;
		border-top: 2px solid #E5E5E5;
		margin-top: 3rem;
		padding-top: 3rem;
	}
	#feedback_form_button,
	#individual_price_form_button {
		width: 100%;
	}
	.popup_footnote {
		font-size: 2.4rem;
	}
	#feedback_popup .popup_footnote,
	#individual_price_popup .popup_footnote {
		width: 100%;
		margin-top: 3rem;
	}
	.popup_checkbox_container {
		margin-top: 4rem;
	}
	.popup_checkbox_label {
		width: 3rem;
		height: 3rem;
		margin-right: 3rem;
	}
	.good_icon,
	.bad_icon {
		width: 10rem;
	}
	#good_popup .popup_title,
	#bad_popup .popup_title {
		margin-top: 4rem;
	}
	#good_popup .action_button {
		width: 100%;
		margin-top: 4rem;
	}
    #good_popup .popup_text,
    #bad_popup .popup_text {
        font-size: 2.4rem;
        text-align: center;
        margin-top: 3rem;
    }
    #bad_popup .action_button {
        margin-top: 3rem;
    }
	#order_form {
		margin-top: 3rem;
	}
	.order_form_container {
		margin-top: 3rem;
		padding: 3rem 0;
	}
	.order_documents_label {
		height: 10rem;
		border-radius: 2.5rem;
	}
    .empty_container  {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0 2rem;
        box-sizing: border-box;
        cursor: pointer;
    }
	.empty_container:before {
		width: 3rem;
		height: 3rem;
		margin-right: 2rem;
	}
	.empty_container_text {
		font-size: 2.4rem;
	}
	.order_documents_list {
		border-radius: 2.5rem;
		padding: 2rem 2rem 0;
	}
	.order_document_item {
		width: 36rem;
		height: 18rem;
		border-radius: 2.5rem;
		padding: 0 1rem;
		margin-bottom: 2rem;
	}
    .order_document_item_add::before {
        width: 10rem;
        height: 2rem;
        border-radius: 1rem;
    }
    .order_document_item_add::after {
        height: 10rem;
        width: 2rem;
        border-radius: 1rem;
    }
	.order_document_name {
		font-size: 3.2rem;
	    text-overflow: ellipsis;
	    overflow: hidden;
	    white-space: nowrap;
	}
	.delete_documen_button {
		width: 4rem;
		height: 4rem;
		top: 1rem;
		right: 1rem;
	}
	.order_checkbox_container {
		width: 100%;
		height: 7rem;
		border-radius: 2.5rem;
		margin-top: 2.5rem;
		padding: 0 2rem;
	}
	.order_checkbox_container .popup_text {
		margin: 0;
	}
	.order_sum_container {
		height: 7rem;
		border-radius: 3rem;
		margin-top: 2.5rem;
	}
	.order_sum {
		font-size: 3.2rem;
	}
	#order_form_button {
		width: 100%;
		margin-top: 3rem;
	}
	#order_form .popup_footnote {
		margin-top: 3rem;
	}
	#gallery_popup {
		width: 90rem;
	}
	.gallery_swiper .swiper-slide {
		width: 80rem;
	}
	.slide_image {
		height: 70rem;
	}
	.slide_text {
		font-size: 3.2rem;
		margin-top: 2rem;
	}
	.gallery_swiper_pagination .swiper-pagination-bullet {
		width: 2rem;
		height: 2rem;
		margin: 1rem;
	}

	/*----------popups end----------*/

	.page_numbers_container {
		margin-top: 4rem;
	}
	.page_numbers_list {
		border-radius: 2rem;
	    padding: 0 1rem;
	}
	.page_numbers_item {
		width: 6rem;
		height: 10rem;
		margin: 0 1rem;
	}
	.page_number_button {
	    font-size: 4rem;
	}
    .back_data_container h2,
    .back_data_container .summary-title {
        font-size: 3.2rem;
        margin: 4rem 0 0 !important;
    }
    .back_data_container p:not(.news_item_text),
    .back_data_container p,
    .back_data_container .row strong,
    .back_data_container .row span,
    .back_data_container h3 {
        font-size: 3.2rem;
        margin: 4rem 0 0 !important;
    }
    .products_list + .back_data_container p:first-child {
        margin-top: 4rem !important;
    }
    .back_data_container p img {
        max-height: 200px;
    }
    .back_data_container ul {
        margin: 4rem 0 0 !important;
    }
    .back_data_container li {
        font-size: 3.2rem;
        margin-top: 1.5rem !important;
        padding-left: 2em;
    }
    .back_data_container table {
        margin: 2rem 0 0 !important;
    }
    .back_data_container th,
    .back_data_container td {
        font-size: 3.2rem;
        line-height: 1.2em;
    }

    .flex_section_wrapper {
        display: block;
    }
    .flex_section {
        width: 100%;
	    padding: 0;
    }
    .product_control_section {
		width: 100%;
		position: relative;
	}
    .main_line_title_container {
		display: block;
		margin-bottom: 6rem;
	}
    .sections_wrapper {
        padding-top: 4rem;
    }
    .sections_wrapper .item {
        width: 44rem;
    }
    .cookie_section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 6rem 4rem;
    }
    .cookie_text {
        width: 100%;
        font-size: 4rem;
    }
    .ok_cookie_button {
        width: 40rem;
        margin-top: 4rem;
    }
    .policy_checkbox_container {
        margin-top: 2rem;
    }
    .policy_checkbox_label {
        font-size: 3.2rem;
        padding-left: 6rem;
    }
    .policy_checkbox_label:before {
        width: 4rem;
        height: 4rem;
        border: 2px solid #E5E5E5;
        border-radius: 4px;
        margin-right: 3rem;
    }
    .product_dropdown_container > a {
        margin-top: 0;
    }
    #feedback_captcha,
    #individual_price_captcha,
    #order_captcha {
        margin-top: 4rem;
    }
}
