html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Proxima Nova';
	text-decoration: none;
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a {
	color: #F07A21;
	transition: color .3s ease;
}

a:hover {
	text-decoration: underline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	/* background: #ccc; */
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

b,
strong {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	max-width: 100%;
}

b.loading_screen {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease;
}

b.loading_screen.active {
	visibility: visible;
	opacity: 1;
}

input,
select,
textarea {
	box-sizing: border-box;
	padding: 12px 12px;
	min-height: 48px;
	font-size: 14px;
	font-weight: 400;
	color: #2f2f2f;
	font-family: 'Proxima Nova';
	border-radius: 3px;
	border: solid 1px #e8e8e8;
	outline: none;
	transition: all .3s ease;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('../images/select_arrow.svg');
	background-repeat: no-repeat;
	background-position-y: 50%;
	background-position-x: calc(100% - 14px);
	background-size: 14px;
	padding-right: 30px;
	padding-left: 20px;
	cursor: pointer;
	animation-duration: .5s;
}
select:hover {
    border-color: rgb(240 122 33 / 50%);
    animation-name: arrow_select;
}

@keyframes arrow_select {
	0% {
		background-position-y: 50%;
	}

	50% {
		background-position-y: 60%;
	}

	100% {
		background-position-y: 50%;
	}
}

input.error,
select.error,
textarea.error {
	border-color: red;
}

.btn,
button:not([class]),
.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 55px;
	min-width: 150px;
	padding: 12px 15px;
	transition: all .3s ease;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	background-color: #F07A21;
	border-radius: 3px;
	text-decoration: none;
}

.btn:hover,
button:not([class]):hover,
.button:hover,
input[type="submit"]:hover {
	background-color: #d4624a;
	text-decoration: none;
}



.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #aaaaaa;
	font-family: 'Proxima Nova';
	font-size: 14px;
	font-weight: 300;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #aaaaaa;
	font-family: 'Proxima Nova';
	font-size: 14px;
	font-weight: 300;
}

:-ms-input-placeholder {
	/* IE 10+ */
	color: #aaaaaa;
	font-family: 'Proxima Nova';
	font-size: 14px;
	font-weight: 300;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #aaaaaa;
	font-family: 'Proxima Nova';
	font-size: 14px;
	font-weight: 300;
}

ul:not([class]) {
	margin: 25px 0 25px;
}

ul:not([class]) li {
	position: relative;
	padding-left: 18px;
}

ul:not([class]) li:before {
	content: "";
	width: 4px;
	height: 4px;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 11px;
	left: 0;
	background-color: #000000;
}

ul:not([class]) li:not(:last-child) {
	margin-bottom: 12px;
}

ol:not([class]) {
	margin: 15px 0;
	counter-reset: item;
}

ol:not([class]) li {
	position: relative;
}

ol:not([class]) li:before {
	content: counter(item) ') ';
	counter-increment: item;
	font-weight: 500;
	color: #faac13;
}

ol:not([class]) li:not(:last-child) {
	margin-bottom: 6px;
}

.container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

@media (max-width: 1360px) {

	.container,
	.slide_content {
		padding-left: 20px;
		padding-right: 20px;
	}
}

svg {
	fill: inherit;
	stroke: inherit;
	display: block;
	width: inherit;
	height: inherit;
}

path {
	fill: inherit;
	stroke: inherit;
	transition: fill .3s ease, stroke .3s ease;
}

.menu_container,
.block_container {
	position: relative;
}

.edit_button {
	font-size: 10px;
	max-width: 20px;
	background-color: #1EA59A;
	border-radius: 5px;
	padding: 4px 5px;
	display: flex;
	align-items: center;
	column-gap: 5px;
	color: #ffffff;
	overflow: hidden;
	transition: all .3s ease;
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
	z-index: 2;
}

.menu_container:hover .edit_button,
.block_container:hover .edit_button,
.product_brief_item:hover .edit_button,
.title_wrap:hover .edit_button {
	opacity: 0.7;
}

.menu_container .edit_button:hover,
.block_container .edit_button:hover,
.product_brief_item .edit_button:hover,
.title_wrap .edit_button:hover {
	max-width: 95px;
	opacity: 1;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1;
}

.block_container {
	padding-top: 70px;
	padding-bottom: 70px;
}

.block_container.block_container_54 {
	/* Slider block */
	padding-top: 0;
	padding-bottom: 0;
}

.block_container.block_container_58 {
	/* Advantage block */
	padding-top: 35px;
	padding-bottom: 35px;
}

.block_container.block_container_57 {
	/* Category main block */
	margin-bottom: 0;
}

.block_container.block_container_55 {
	/* Info block */
	padding-top: 0;
	padding-bottom: 0;
}

.block_container.block_container_65 {
	/* Slider manufacturers block */
	padding-top: 15px;
	padding-bottom: 15px;
}

.block_container_68 {
	/* Reviews block */
	overflow: hidden;
}

.block_container.block_container_70 {
	/* Newsletter subscription block */
	padding-top: 32px;
	padding-bottom: 32px;
}

.block_container.block_container_72 {
	/* Gift certificate block */
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 70px;
	border-radius: 10px;
}
.block_container.block_container_69 {
	/* Advantage block */
    padding-bottom: 0;
}
.topbar .menu_container .menu_block {
	display: flex;
	align-content: center;
	column-gap: 24px;
}

.topbar>.menu_container>.menu_block {
	justify-content: space-between;
	column-gap: 24px;
	min-height: 60px;
}

.topbar .menu_block a,
.topbar .menu_block span:not(._free) {
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: #181C23;
	display: block;
	padding: 4px 0;
	transition: color .3s ease, fill .3s ease;
	text-decoration: none;
}

.topbar .menu_block a:hover {
	color: #F07A21;
	fill: #F07A21;
}

.drop_menu {
	position: absolute;
	right: 0;
	white-space: nowrap;
	background-color: #2F343B;
	padding: 15px 20px;
	top: calc(100% + 10px);
	display: none;
	z-index: 1;
	border-bottom: solid 1px rgb(240 122 33 / 40%);
}

.drop_menu_block {
	position: relative;
}

.topbar .menu_block .ordinary_menu a,
.topbar .menu_block .ordinary_menu span {
	white-space: nowrap;
}

.topbar .menu_container .menu_block .ordinary_menu,
.topbar .menu_container .menu_block .service_menu {
	display: flex;
	align-content: center;
	align-self: center;
	align-items: center;
}

img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.topbar .menu_container .menu_block .service_menu.menu_item_address {
	column-gap: 8px;
}

.languages_button {
	display: flex;
	align-content: center;
	column-gap: 4px;
}

.topbar .menu_block .languages_button .select_language {
	color: #F07A21;
}

.topbar .menu_block .open_drop_menu {
	cursor: pointer;
	white-space: nowrap;
}

.topbar .menu_block .open_drop_menu:hover {
	color: #F07A21;
}

.topbar {
	border-bottom: 1px solid #F3F8FE;
}

.topbar .menu_block .drop_menu a,
.topbar .menu_block .drop_menu span {
	color: #ffffff;
}

.topbar .menu_block .drop_menu a:hover {
	color: #F07A21;
}

.topbar .menu_block .service_menu.menu_item_login>a,
.topbar .menu_block .service_menu.menu_item_login span:not(._free) {
	display: inline-flex;
	align-content: center;
	column-gap: 8px;
}

.toolbar_icon {
	width: 18px;
	height: 18px;
	display: block;
	margin-bottom: 2px;
}

.toolbar_icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.slider_arrow {
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	transition: fill .3s ease;
	cursor: pointer;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	fill: #C4C7CB;
}

.slider_arrow svg {
	display: block;
	width: 11px;
	height: 18px;
}

.slider_arrow:hover {
	fill: #F07A21;
}

.slider_main {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.slider_arrow.prev_arrow {
	left: 10px;
}

.slider_arrow.next_arrow {
	right: 10px;
}

.slider_main img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

ul.slick-dots {
	position: absolute;
	bottom: 37px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}

ul.slick-dots li button {
	display: none;
}

ul.slick-dots li {
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid #FFFFFF;
	transition: all .3s ease;
}

ul.slick-dots li.slick-active {
	background-color: #ffffff;
}

.menu_item_lozung {
	font-weight: 600;
	font-size: 14px;
	line-height: 150%;
	color: #181C23;
	min-width: 125px;
	max-width: 150px;
}

.menu_item_logo {
	max-width: 210px;
	max-height: 65px;
	display: block;
	flex-shrink: 0;
}

.menu_item_logo a {
	display: block;
	max-width: inherit;
	max-height: inherit;
}

.header .menu_block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
}

.search_field {
	display: grid;
	grid-template-columns: 1fr auto;
	border-radius: 3px;
	overflow: hidden;
}

.search_botton {
	background-color: #F0F5FA;
	border: none;
	height: 100%;
	width: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	fill: #181C23;
	transition: all .3s ease;
	cursor: pointer;
}

.search_botton svg {
	width: 18px;
	height: 18px;
}

.search_botton:hover {
	background-color: #F07A21;
	fill: #ffffff;
}

.search_field input {
	background-color: #F0F5FA;
	min-height: 50px;
	display: block;
	border: none;
	width: 100%;
}

.header_icon {
	display: block;
	width: 26px;
	height: 26px;
}

.header_icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.menu_item_search {
	width: 100%;
	max-width: 515px;
}

.topbar .menu_container .menu_block .menu_block {
	flex-wrap: wrap;
}

.menu_item_phone a,
.menu_item_phones a {
	font-weight: 700;
	font-size: 17px;
	line-height: 23px;
	color: #181C23;
	white-space: nowrap;
	text-decoration: none;
}

.header .menu_block .menu_block {
	flex-direction: column;
	align-items: flex-start;
}

.menu_item_callback a {
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	text-decoration: underline;
	color: #F07A21;
}

.menu_item_phone a:hover,
.menu_item_phones a:hover {
	color: #F07A21;
}

.menu_item_callback a:hover {
	text-decoration: none;
}

.header .menu_item_callback {
	margin-top: 2px;
}

.label_count {
	font-weight: 700;
	font-size: 10px;
	line-height: 12px;
	height: 14px;
	min-width: 14px;
	border-radius: 50%;
	background-color: #FD9711;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	padding: 3px;
	position: absolute;
	top: 0;
	right: 0;
}

.menu_item_favorites,
.menu_item_comparison,
.menu_item_cart {
	position: relative;
}

.menu_item_favorites a,
.menu_item_comparison a,
.menu_item_cart a {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #181C23;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 8px;
	cursor: pointer;
	white-space: nowrap;
	transition: fill .3s ease, color .3s ease;
	text-decoration: none;
}

.menu_item_favorites a:hover,
.menu_item_comparison a:hover,
.menu_item_cart a:hover {
	fill: #F07A21;
	color: #F07A21;
}

.header {
	min-height: 90px;
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.main_menu .menu_block a,
.main_menu .menu_block span {
	font-weight: 700;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 10px 0;
	display: inline-flex;
	text-decoration: none;
}

.main_menu {
	background-color: #2F343B;
	min-height: 55px;
	display: flex;
	align-items: center;
	padding: 8px 0;
}

.main_menu .menu_block .special_links a,
.main_menu .menu_block .special_links span {
	color: #F07A21;
	fill: #F07A21;
	align-items: center;
	column-gap: 8px;
	transition: fill .3s ease, color .3s ease;
}

.special_icon {
	width: 24px;
	height: 24px;
	display: block;
}

.special_icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.main_menu .menu_block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 35px;
}

.main_menu .menu_categories {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 35px;
	flex-wrap: wrap;
}

.main_menu .menu_block a:hover {
	color: #F07A21;
}

.main_menu .menu_block .special_links a:hover {
	color: #ffffff;
	fill: #ffffff;
}

footer {
	background-color: #181C23;
}

.mobile_icon {
	display: block;
	width: 24px;
	height: 24px;
}

.mobile_icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

footer .menu_block .menu_item_mobile a {
	display: inline-flex;
	min-width: 220px;
	min-height: 55px;
	padding: 10px 10px;
	border: 1px solid #643D22;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #F07A21;
	fill: #F07A21;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	transition: fill .3s ease, color .3s ease, border-color .3s ease;
}

footer .menu_block .menu_item_mobile a:hover {
	color: #ffffff;
	border-color: #ffffff;
	fill: #ffffff;
}

footer .menu_block .menu_item_logo_footer {
	max-width: 210px;
	max-height: 65px;
	display: block;
	margin-bottom: 40px;
}

footer .menu_block .menu_item_logo_footer a {
	display: block;
	max-width: inherit;
	max-height: inherit;
	padding: 0;
}

.menu_item_shop_description {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #868E9D;
	max-width: 335px;
}

.social_links .menu_block {
	display: flex;
	align-items: center;
	column-gap: 16px;
}

.social_icon {
	display: block;
	width: 24px;
	height: 24px;
}

.social_icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

footer .menu_block .social_links .menu_block a {
	fill: #ffffff;
	transition: fill .3s ease;
}

footer .menu_block .social_links .menu_block a:hover {
	fill: #F07A21;
}

.footer_menu_top_row {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: space-between;
	padding: 90px 0;
}

.menu_title {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 18px;
}

footer .menu_block a,
footer .menu_block span {
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #868E9D;
	padding: 6px 0;
	fill: #868E9D;
	display: inline-flex;
	align-items: center;
	column-gap: 8px;
	transition: color .3s ease, fill .3s ease;
	text-decoration: none;
}

.footer_icon {
	width: 20px;
	height: 20px;
	display: block;
}

.footer_icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

footer .menu_block a:hover {
	color: #F07A21;
	fill: #F07A21;
}

footer .menu_block .menu_item_phones a,
footer .menu_block .menu_item_phone a {
	font-weight: 700;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0;
}

footer .menu_block .menu_item_phones a:hover,
footer .menu_block .menu_item_phone a:hover {
	color: #F07A21;
	fill: #F07A21;
}

footer .menu_block .menu_item_mobile {
	margin-bottom: 32px;
}

footer .menu_block .menu_item_shop_description {
	margin-bottom: 25px;
}

footer .menu_block .menu_item_phones,
footer .menu_block .menu_item_phone {
	margin-bottom: 10px;
}

.footer_copyright_text {
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #868E9D;
	opacity: 0.7;
}

.footer_development {
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #F25E0D;
	opacity: 0.7;
}

.footer_development a {
	color: #868E9D;
	text-decoration: none;
}

.footer_development a:hover {
	color: #F25E0D;
}

.footer_copyright_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 65px;
	border-top: 1px solid rgba(234, 234, 234, 0.08);
	padding: 10px 0;
}

.slide_content {
	position: absolute;
	height: 100%;
	width: 100%;
	max-width: 1320px;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 35px;
}
.slide_button {
	display: none;
	position: absolute;
	bottom: 3rem;
}

.slide_item {
	position: relative;
}

.slide_title {
	font-weight: 800;
	font-size: 36px;
	line-height: 44px;
	color: #181C23;
	max-width: 400px;
}

.slide_description {
	font-weight: 500;
	font-size: 24px;
	line-height: 31px;
	color: #181C23;
	max-width: 400px;
}

#scroll_to_top svg {
	width: 20px;
	height: 23px;
	display: block;
}

#scroll_to_top {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #F07A21;
	border-radius: 50%;
	fill: #ffffff;
	opacity: 0;
	position: fixed;
	bottom: 35px;
	right: 35px;
	cursor: pointer;
	transition: opacity .3s ease;
}

#scroll_to_top.active {
	opacity: .6;
}

#scroll_to_top.active:hover {
	opacity: 1;
}

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

.info_block a:after {
	content: "";
	background-image: url('/data/medisport/images/arrow_right.svg');
	width: 14px;
	height: 7px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	left: 8px;
	transition: left .3s ease;
}

.info_block {
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: #181C23;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 50px;
	min-height: 40px;
	padding: 10px 30px 10px 0;
	position: relative;
}

.info_block a:hover:after {
	left: 12px;
}

.close_info_block {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	cursor: pointer;
}

.close_info_block:after,
.close_info_block:before {
	content: "";
	display: block;
	width: 12px;
	height: 1px;
	background-color: #181C23;
	top: 50%;
	left: 50%;
	position: absolute;
	transition: all .3s ease;
}

.close_info_block:after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.close_info_block:before {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.close_info_block:hover:after,
.close_info_block:hover:before {
	width: 18px;
}

.block_body p {
	font-weight: 300;
	font-size: 18px;
	line-height: 170%;
	color: #404448;
}

.block_body p:not(:last-child) {
	margin-bottom: 18px;
}

.design_content, .design_content p {
	font-weight: 300;
	font-size: 16px;
	line-height: 170%;
	color: #404448;
}

.design_content p:not(:last-child) {
	margin-bottom: 16px;
}

.about_block--content_title {
	font-weight: 700;
	font-size: 36px;
	line-height: 41px;
	color: #181C23;
	margin-bottom: 35px;
}

.about_block--content_title span {
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	font-size: 22px;
	display: block;
	margin-top: 5px;
}
.about_block--image {
    width: 100%;
    max-width: 480px;
    flex-shrink: 0;
}

.about_block {
	min-height: 540px;
	display: flex;
	justify-content: center;
	gap: 80px;
	align-items: center;
}

.custom_title_block i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	background: linear-gradient(180deg, #F7C03A 0%, #EB8B1A 100%);
	border-radius: 26px;
	margin-bottom: 18px;
}

.custom_title_block i img {
	max-width: 34px;
	max-height: 34px;
}

.custom_title_block {
	font-weight: 800;
	font-size: 36px;
	line-height: 44px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}

.custom_title_block span {
	display: block;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #BDBDBD;
	margin-top: 10px;
}

.custom_title_block a {
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 150%;
	margin-top: 10px;
}

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

.category_main_item {
	border-radius: 10px;
	overflow: hidden;
	height: 420px;
	position: relative;
	text-decoration: none;
}

.category_main_item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform .3s ease;
}

.category_main_item span {
	position: absolute;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #FFFFFF;
	left: 24px;
	z-index: 1;
	bottom: 24px;
	background-color: #181C23;
	backdrop-filter: blur(7px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	min-height: 55px;
	padding: 10px 25px;
	max-width: 100%;
	transition: all .3s ease;
}

.category_main_item:hover span {
	background-color: #F07A21;
	color: #ffffff;
}

.category_main_item:hover img {
	transform: scale(1.05);
}

.breadcrumbs {
	display: flex;
	align-items: center;
	column-gap: 12px;
	row-gap: 12px;
}

.breadcrumbs li i {
	width: 12px;
	height: 12px;
	display: block;
	fill: #676767;
	margin-right: 12px;
}

.breadcrumbs li i svg {
	width: 100%;
	height: 100%;
	display: block;
}

.breadcrumbs li {
	display: inline-flex;
	align-items: center;
}

.breadcrumbs li a,
.breadcrumbs li span {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #676767;
}

.breadcrumbs li a:hover {
	color: #F07A21;
}

h1,
.h1 {
	font-weight: 800;
	font-size: 36px;
	line-height: 44px;
	color: #181C23;
}

.inner_container {
	margin-top: 40px;
	margin-bottom: 40px;
}

.title_wrap {
	margin-top: 12px;
	position: relative;
	margin-bottom: 35px;
}

.advantage_icon {
	background-color: #FAFAFA;
	border-radius: 26px;
	width: 68px;
	height: 68px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.advantage_icon img {
	max-width: 34px;
	max-height: 34px;
}

.advantage_item {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 24px;
}

.advantage_title {
	font-weight: 700;
	font-size: 16px;
	line-height: 170%;
	display: flex;
	align-items: center;
	color: #181C23;
	margin-bottom: 8px;
}

.advantage_description {
	font-weight: 400;
	font-size: 16px;
	line-height: 170%;
	color: #404448;
}

.advantage_block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 30px;
	row-gap: 30px;
	flex-wrap: wrap;
}

.slide_item a {
	text-decoration: none;
}

.block_head {
	font-weight: 800;
	font-size: 36px;
	line-height: 44px;
	color: #181C23;
	margin-bottom: 32px;
}

.star_icon {
	display: block;
	width: 14px;
	height: 13px;
	fill: transparent;
	stroke: #F7C03A;
}

.star_icon.star_active {
	fill: #F7C03A;
}

.star_icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.product_brief_image {
	height: 270px;
	width: 100%;
	margin: 20px 0 5px;
	position: relative;
	transition: height .3s ease, width .3s ease, margin .3s ease;
}


.product_brief_image a {
	width: 100%;
	height: 100%;
	display: block;
}

.product_brief_image a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product_brief_item {
	position: relative;
	background-color: #ffffff;
	padding: 15px 15px 20px;
}

.product_brief_buttons a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	fill: #C4C7CB;
	border-radius: 50%;
	transition: all .3s ease;
	text-decoration: none;
}

.product_brief_buttons a svg {
	display: block;
	width: 24px;
	height: 24px;
	transition: width .3s ease, height .3s ease;
}

.product_brief_buttons a:hover,
.product_brief_buttons a.active {
	fill: #F07A21;
}

.product_brief_label {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: width .3s ease, height .3s ease;
}


.product_brief_absolute_block {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 1;
	transition: opacity .3s ease;
}

.product_brief_top {
	position: relative;
	flex: 1;
}

.product_brief_labels {
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}

.product_brief_buttons {
	display: flex;
	align-items: center;
	column-gap: 5px;
}

.product_brief_title a {
	font-weight: 400;
	font-size: 16px;
	line-height: 170%;
	color: #181C23;
	text-decoration: none;
	display: block;
}

.product_brief_actual_price {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #181C23;
}

.product_brief_old_price {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	text-decoration-line: line-through;
	color: #C4C7CB;
}

.product_brief_price {
	display: flex;
	align-items: center;
	column-gap: 12px;
	transition: column-gap .3s ease, row-gap .3s ease, margin .3s ease;
	flex-wrap: wrap;
}
.product_brief_rating {
	display: flex;
	align-items: center;
	column-gap: 3px;
	margin-bottom: 15px;
}

.product_brief_cart a {
	width: 36px;
	height: 36px;
	fill: #F07A21;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	cursor: pointer;
	border-radius: 50%;
}

.product_brief_cart a svg {
	display: block;
	width: 26px;
	height: 26px;
}

.product_brief_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	transition: margin .3s ease;
}

.product_brief_cart a:hover {
	background-color: #F07A21;
	fill: #ffffff;
}

.product_brief_hidden {
	display: none;
}

.product_brief_item form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.product_brief_middle {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 5px;
	transition: margin .3s ease, padding .3s ease;
}

.product_brief_title {
	flex: 1;
	display: flex;
	align-items: center;
}

.next_picture_product_brief_card {
	opacity: 0;
	position: absolute;
}

.product_brief_title a:hover {
	color: #F07A21;
}

.arrow_slider {
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border: none;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	fill: #C4C7CB;
	cursor: pointer;
	transition: all .3s ease;
}

.arrow_slider svg {
	width: 10px;
	height: 16px;
	display: block;
}

.arrow_slider:hover {
	fill: #F07A21;
}

.arrows_slider {
	display: flex;
	align-items: center;
	column-gap: 12px;
	justify-content: flex-end;
	position: absolute;
	top: -68px;
	width: 100%;
}

.block_body {
	position: relative;
}

.horizontal_slider {
	background-color: #EAEAEA;
}

.horizontal_slider .slick-slide {
	margin-left: 1px;
}

.horizontal_slider .slick-list {
	margin-left: -1px;
}

.products_week {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.product_week_block {
	background-color: #2F343B;
	display: flex;
	align-items: center;
	justify-content: center;
	row-gap: 15px;
	position: relative;
}

.product_week {
	padding-right: 70px;
	background-color: #F8F8F8;
	border-radius: 10px;
	overflow: hidden;
}

.product_week form {
	display: grid;
	grid-template-columns: minmax(300px, 350px) auto;
	justify-content: space-between;
	grid-column-gap: 70px;
	min-height: 350px;
}

.product_week_image {
	width: 340px;
	height: 100%;
}

.product_week_image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: darken;
}

.product_week_text {
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	color: #FFFFFF;
}

.product_week_percent {
	font-weight: 800;
	font-size: 24px;
	line-height: 29px;
	color: #FFFFFF;
	background-color: #F07A21;
	border-radius: 0 3px 3px 0;
	min-height: 52px;
	min-width: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 34px;
	left: 0;
}

.product_week_title a {
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	color: #181C23;
	text-decoration: none;
}

.product_week_actual_price {
	font-weight: 800;
	font-size: 30px;
	line-height: 37px;
	color: #181C23;
}

.product_week_old_price {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	text-decoration-line: line-through;
	color: #BBC2D0;
}

.product_week_price {
	display: flex;
	align-items: flex-end;
	column-gap: 12px;
	margin-bottom: 34px;
}

.product_week_button a {
	text-decoration: none;
}

.product_week_title a:hover {
	color: #F07A21;
}

.product_week_item {
	display: flex;
	align-items: center;
	column-gap: 68px;
	padding: 15px 0;
}

.product_week_title {
	margin-bottom: 12px;
}

.product_week_image a {
	display: block;
	width: 100%;
	height: 100%;
}

.next_picture_product_brief_card {
	opacity: 0;
	position: absolute;
	top: 0;
}

.ajax_posts_link {
	font-weight: 700;
	position: relative;
	font-size: 16px;
	line-height: 150%;
	color: #181C23;
	fill: transparent;
	min-height: 80px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	padding: 20px 35px;
	cursor: pointer;
	background-color: #ffffff;
	transition: background-color .3s ease, fill .3s ease;
}

.ajax_posts_link:first-child {
	border-top-left-radius: 10px;
}

.ajax_posts_link.active {
	background-color: #F7C03A;
	fill: #F7C03A;
	border-color: #F7C03A;
}

.ajax_posts_link svg {
	position: absolute;
	height: 100%;
	left: 100%;
	width: 0px;
	transition: width .3s ease;
}

.ajax_posts_link.active svg {
	width: 20px;
}

.ajax_posts_link:not(.active):hover {
	background-color: #fdecc6;
	border-color: #fdecc6;
}

.useful_information_wrap {
	display: grid;
	grid-template-columns: minmax(200px, 260px) 1fr;
	grid-column-gap: 34px;
	align-items: flex-start;
}

.useful_information_menu {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.short_posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 40px;
}

#ajax_posts {
	position: relative;
}

#ajax_posts:after {
	content: "";
	background-image: url('../images/loader.svg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10%;
	background-color: rgb(255 255 255 / 80%);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
}

#ajax_posts.loading:after {
	visibility: visible;
	opacity: 1;
}

.image_short_post {
	height: 350px;
	border-radius: 10px 10px 0 0;
	transition: opacity .3s ease;
	overflow: hidden;
}

@media (max-width: 1250px) {
	.image_short_post {
		height: 250px;
	}
}

.image_short_post a {
	display: block;
	height: 100%;
	width: 100%;
}

.image_short_post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.item_short_post:hover img {
	transform: scale(1.05);
}

.title_short_post a {
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #181C23;
}

.title_short_post a:hover {
	color: #F07A21;
	text-decoration: none;
}

.description_short_post {
	font-weight: 300;
	font-size: 16px;
	line-height: 170%;
	color: #404448;
	flex: 1;
}

.item_short_post {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.content_short_post {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 24px;
}

.title_short_post {
	margin-bottom: 10px;
}

.more_short_post a {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #A7ACB3;
}

.more_short_post a:hover {
	color: #F07A21;
}

.more_short_post {
	margin-top: 20px;
}

.useful_information_more_link a {
	stroke: #F07A21;
	color: #F07A21;
	display: inline-flex;
	align-items: center;
	padding: 2px 0;
}

.useful_information_more_link a svg {
	width: 28px;
	height: 11px;
	margin-left: 18px;
	transition: margin-left .3s ease;
}

.useful_information_more_link a:hover svg {
	margin-left: 25px;
}

.useful_information_more_link {
	margin-top: 35px;
}

.useful_information_switch_link {
	width: calc(100% - 20px);
	background-color: #F0F5FA;
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 1px;
	border-top-left-radius: 10px;
}

.system_message {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 50px;
	font-weight: 400;
	font-size: 16px;
	line-height: 170%;
	color: #f07a21;
	background-color: #fef3eb;
	border: solid 1px #f7b887;
	border-radius: 5px;
}

.short_posts .system_message {
	grid-column: 1/5;
	height: 100%;
}

.manufacturer_slide {
	justify-content: center;
	align-items: center;
	max-height: 105px;
}

.manufacturer_slide img {
	mix-blend-mode: darken;
}

.slider_manufacturers {
	padding-left: 50px;
	padding-right: 50px;
}

.slider_manufacturers_wrap {
	position: relative;
}

.slider_manufacturers_wrap .arrow_slider {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	background-color: transparent;
	padding: 0;
}

.slider_manufacturers_wrap .arrow_prev {
	left: 0;
	justify-content: flex-start;
}

.slider_manufacturers_wrap .arrow_next {
	right: 0;
	justify-content: flex-end;
}

.slider_manufacturers_wrap .arrow_slider svg {
	width: 11px;
	height: 18px;
}

.slider_manufacturers_wrap .slick-slide {
	margin-right: 15px;
	margin-left: 15px;
	;
}

a.manufacturer_slide {
	transition: opacity .3s ease;
	text-decoration: none;
	outline: none;
	padding: 0;
}

a.manufacturer_slide:hover {
	opacity: .7;
}

.medisport_block {
	min-height: 500px;
	display: flex;
	justify-content: center;
	column-gap: 90px;
}
.medisport_block--image {
    width: 100%;
    max-width: 545px;
    flex-shrink: 0;
}
.medisport_block--content_title,
.medisport_block--content_title h1,
.medisport_block--content_title h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	color: #181C23;
}

.medisport_block--content_description,
.medisport_block--content_description p,
.block_body .medisport_block--content_description p {
	font-weight: 300;
	font-size: 16px;
	line-height: 170%;
	color: #404448;
}

.medisport_block--content_title {
	margin-bottom: 35px;
}

.signature {
	max-width: 250px;
	max-height: 70px;
	margin-top: 40px;
}

.review_body {
	font-style: italic;
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
}

.review_author {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #B6BCCC;
	fill: #F07A21;
	display: flex;
	align-items: center;
	column-gap: 25px;
}

.review_date {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	display: flex;
	align-items: flex-end;
	text-align: center;
	color: #B6BCCC;
}

.review_author svg {
	width: 24px;
	height: 19px;
}

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

.review_item {
	background: linear-gradient(141.87deg, rgba(254, 248, 255, 0.21) 1.8%, rgba(254, 248, 255, 0) 106.18%);
	backdrop-filter: blur(100px);
	border-radius: 10px;
	padding: 50px 50px;
	transform: scale(0.84);
	-moz-transform: scale(0.84);
	-ms-transform: scale(0.84);
	-o-transform: scale(0.84);
	-webkit-transform: scale(0.84);
	opacity: .4;
	transition: transform .3s ease, opacity .3s ease;
}

.reviews_list .slick-slide {
	margin-left: 20px;
	margin-right: 20px;
	width: 550px;
	position: relative;
}

.slick-center .review_item {
	transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}

.reviews_list .slick-list {
	overflow: visible;
}

.arrows_reviews .arrow_slider {
	background-color: transparent;
	fill: transparent;
	stroke: #80859F;
}

.arrows_reviews .arrow_slider svg {
	width: 28px;
	height: 11px;
}

.arrows_reviews {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	margin-top: 18px;
}

.arrows_reviews .arrow_slider:hover {
	stroke: #ffffff;
}

.reviews_list .slick-slide:after {
	content: "";
	background-image: url('../images/yellow_circle.png');
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
	width: 78px;
	height: 78px;
	position: absolute;
	bottom: -30px;
	right: -30px;
	z-index: -1;
	opacity: 0;
	transform: scale(0);
	transition: transform .5s ease, opacity .5s ease;
}

.reviews_list .slick-slide.slick-center:after {
	opacity: 1;
	transform: scale(1);
}

.custom_title_block.black_title_block {
	color: #181C23;
}

.custom_title_block.black_title_block span {
	color: #767676;
}

.advantages_company_block {
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
}

.advantages_company_block .advantage_item {
	max-width: 385px;
	padding: 35px 0;
	background-color: rgb(255 255 255 / 85%);
	backdrop-filter: blur(5px);
}

.advantages_company_block .advantage_item:nth-child(even) {
	padding-left: 35px;
}

.advantages_company_block .advantage_item:nth-child(odd) {
	padding-right: 35px;
}
.advantages_company_wrap {
    position: relative;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage_image {
    max-width: 420px;
    width: 100%;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.newsletter_subscription_title {
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	color: #181C23;
}

.newsletter_subscription_block {
	display: flex;
	justify-content: center;
	column-gap: 50px;
	flex-wrap: wrap;
}

.newsletter_subscription_social_links {
	display: flex;
	align-items: center;
	column-gap: 16px;
}

.newsletter_subscription_social_links a {
	display: inline-flex;
	align-items: flex-start;
}

.newsletter_subscription_social_links a img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 5px;
	opacity: 1;
	transform: scale(1.0);
	animation-duration: .5s;
}

.newsletter_subscription_social_links a:hover img {
	animation-name: social_link;
}

@keyframes social_link {
	0% {
		opacity: 1;
		transform: scale(1.0);
	}

	50% {
		opacity: .6;
		transform: scale(1.1);
	}

	100% {
		opacity: 1;
		transform: scale(1.0);
	}
}

.newsletter_subscription_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 500px;
}

.newsletter_subscription_description {
	margin-top: 10px;
}

ul.solution_problems_block li {
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: #181C23;
	background-color: #F0F5FA;
	border-radius: 10px;
	padding: 12px 18px;
}

ul.solution_problems_block li.selected {
	font-size: 22px;
	line-height: 27px;
}

ul.solution_problems_block {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.gift_certificate_title {
	font-weight: 800;
	font-size: 36px;
	line-height: 44px;
	color: #FFFFFF;
	margin-bottom: 15px;
}

.gift_certificate_description {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #BDBDBD;
}

.gift_certificate_block {
	display: flex;
	align-items: center;
	padding: 60px 75px;
	column-gap: 80px;
}

.gift_certificate_card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gift_certificate_button {
	margin-top: 35px;
}

.gift_certificate_card {
	width: 265px;
	height: 184px;
}

span._free {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	align-self: center;
}

.product_week_hidden {
    display: none;
}

.product_week_date {
	font-weight: 800;
	font-size: 36px;
	line-height: 44px;
	color: #FFFFFF;
}

.product_week_bar {
	display: flex;
	flex-direction: column;
	row-gap: 18px;
}
.container.is_left_blocks {
    display: grid;
    grid-template-columns: minmax(200px, 290px) auto;
    grid-column-gap: 35px;
}

.container.is_left_blocks .content {
    width: 100%;
}
.left_blocks .block_container {
    padding-top: 0;
    padding-bottom: 0;
}

.left_blocks .block_container:not(:last-child) {
    margin-bottom: 35px;
}

.content_design, .content_design p {
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    color: #404448;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #181C23;
    margin-bottom: 32px;
}

.content_design p:not(:last-child) {
    margin-bottom: 18px;
}

.category_description {
    margin-top: 50px;
}
.small_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 15px;
    transition: all .3s ease;
    cursor: pointer;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    background-color: #F07A21;
    border-radius: 3px;
}

.small_button:hover {
    background-color: #d4624a;
    text-decoration: none;
}
.small_button.disabled {
    cursor: default;
    background-color: #cccccc;
}
.favcom_icon {
    width: 24px;
    height: 24px;
    display: block;
    opacity: 1;
    transform: scale(1.0);
    animation-duration: .3s;
}

.favcom_icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.favorites_button.active .favcom_icon,
.compare_button.active .favcom_icon {
    animation-name: favcom;
}

@keyframes favcom {
    0% {
		opacity: 1;
		transform: scale(1.0);
	}

	50% {
		opacity: .6;
		transform: scale(1.5);
	}

	100% {
		opacity: 1;
		transform: scale(1.0);
	}
}

.quantity {
    height: 55px;
    width: 126px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    border: 1px solid #DCDCDC;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.minus_icon, .plus_icon {
    display: block;
    width: 12px;
    height: 12px;
}

.minus_icon svg, .plus_icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.quantity button {
    background-color: transparent;
    border: none;
    fill: #C4C7CB;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color .3s ease, fill .3s ease;
}

.quantity input {
    border: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.quantity button:hover {
    fill: #f07a21;
    background-color: #fef5ee;
}

.js_reduction_button {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #F07A21;
	display: flex;
	align-items: center;
	column-gap: 5px;
	cursor: pointer;
	margin-top: 16px;
	width: 100%;
	position: relative;
}

.js_reduction_button:hover {
    text-decoration: underline;
}

.js_reduction_button:after {
    content: "";
    display: inline-flex;
    background-image: url('../images/arrow_toggle.svg');
    width: 14px;
    height: 14px;
}

.js_reduction_button[data-action="close"]:after {
    transform: rotateX(180deg);
}

.js_reduction_button[data-action="open"]:before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: 100%;
    height: 50px;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255) 100%);
}

.quickOrderText {
    color: #777777;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 20px;
}

.quickOrderRow {
    display: grid;
    grid-template-columns: 30% auto;
    grid-column-gap: 20px;
    align-items: center;
}

.quickOrderColumn:last-child {
    text-align: left;
    font-size: 15px;
    color: #777777;
}

.quickOrderColumn:first-child {
    text-align: right;
    font-size: 15px;
    color: #444444;
}

.quickOrderRow:not(:nth-last-child(2)):not(:last-child) {border-bottom: dashed 1px #e0e0e0;}
.quickOrderRow:not(:last-child) {margin-bottom: 10px;box-sizing: border-box;padding-bottom: 10px;}



.quickOrderRow.quickOrderRowSubmit {
    grid-template-columns: 1fr;
}
span.error {
    color: #ff6976;
}

.order-table-header {
    display: grid;
    grid-template-columns: 10% 25% 19% 10% 17% 19%;
    align-items: center;
    margin-bottom: 13px;
    box-sizing: border-box;
    border-bottom: solid 1px #e0e0e0;
    padding-bottom: 10px;
}

#quick_modal .modal_body input, #quick_modal .modal_body select, #quick_modal .modal_body textarea {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

#quick_modal .modal_body input.button {
    width: auto;
}
h2, .h2 {
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 30px;
    line-height: 37px;
    color: #111111;
}

h3, .h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    color: #222222;
    margin-bottom: 22px;
}

h4, .h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    color: #222222;
    margin-bottom: 20px;
}
.modal_block .c_m_b-productInfoName a:not(.button) {
    border: none;
}

.modal_block .c_m_b-productInfoName a:hover {
    text-decoration: underline;
}
ul.c_m_b-productTitle {
    display: grid;
    grid-template-columns: 15% 40% 17% 23% 5%;
    align-items: center;
    margin-bottom: 13px;
    box-sizing: border-box;
    border-bottom: solid 1px #e0e0e0;
    padding-bottom: 10px;
}

ul.c_m_b-productTitle.noQuantityCart {
    grid-template-columns: 15% 63% 17% 5%;
}
ul.c_m_b-productTitle li {
    color: #777777;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

ul.c_m_b-productInfo {
    display: grid;
    grid-template-columns: 15% 40% 17% 23% 5%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
ul.c_m_b-productInfo.noQuantityCart {
    grid-template-columns: 15% 63% 17% 5%;
}

ul.c_m_b-productInfo li {
    font-size: 14px;
    line-height: 18px;
}
li.c_m_b-productInfoPhoto {
    width: 100%;
    box-sizing: border-box;
    padding: 9px;
}

li.c_m_b-productInfoPhoto a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 75px;
}

li.c_m_b-productInfoPhoto a img {
    max-width: 100%;
    max-height: 100%;
}
li.c_m_b-productInfoName {
    box-sizing: border-box;
    padding: 0px 12px;
}
li.c_m_b-productInfoQuantity {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

li.c_m_b-productInfoCost {
    color: #f07a21;
    font-weight: 500;
}

li.c_m_b-productInfoDel a {
    color: #ff6976;
}
ul.c_m_b-productInfo:not(:nth-last-child(2)):not(:last-child) {}

ul.c_m_b-productInfo:not(:first-child):not(:last-child) {
    border-bottom: dashed 1px #e0e0e0;
    margin-bottom: 10px;
    box-sizing: border-box;
    padding-bottom: 10px;
}

ul.c_m_b-productTotal {
    margin: 25px 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

ul.c_m_b-productTotal li:not(:first-child) {
    padding-left: 10px;
}

ul.c_m_b-productTotal li:first-child {
    font-size: 18px;
    line-height: 20px;
}

ul.c_m_b-productTotal li:last-child {
    font-size: 20px;
    color: #f07a21;
    font-weight: 600;
}

ul.c_m_b-productTotal li {
    position: relative;
    border-top: solid 1px #e0e0e0;
    padding-top: 15px;
}
span.message_min_order {
    position: absolute;
    display: block;
    min-width: 190px;
    max-width: 250px;
    box-sizing: border-box;
    padding: 6px 5px;
    background-color: #3b83d4;
    color: #fff;
    border-radius: 3px;
    top: calc(100% + 5px);
    white-space: nowrap;
    font-size: 14px;
}

span.message_min_order:before {content: "\f0d8";position: absolute;top: -11px;left: 50%;transform: translateX(-50%);font-family: "Font Awesome 5 Pro";color: #3b83d4;font-weight: 600;}
.c-m-h_message {
    box-sizing: border-box;
    padding: 10px;
    border: solid 1px #ff6976;
    margin-bottom: 20px;
    border-radius: 3px;
    color: #ff6d7a;
    text-align: center;
    font-size: 14px;
}
.modal_block  li.c_m_b-productInfoPhoto a {
    border: none;
}

.modal_block li.c_m_b-productInfoDel a {
    border: none;
}

.modalSubmitBlock {
    display: flex;
    justify-content: flex-end;
}
.quantity.quantity--cart_modal,
.quantity.quantity--cart {
	height: 40px;
	width: 100px;
}
.quantity.quantity--cart_modal button,
.quantity.quantity--cart button {
	padding: 5px 10px;
}
.quantity.quantity--cart_modal input,
.quantity.quantity--cart input {
	min-height: 100%;
}


li.down_menu {
    position: relative;
}

ul.drop_down_menu {
    position: absolute;
    top: calc(100% + 0px);
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transform: translateY(-10px);
    transition: all .3s ease;
    min-width: 100%;
    box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
li.down_menu:hover .drop_down_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    overflow: visible;
}
/* li.down_menu:after {content: "\f107";font-family: "Font Awesome 5 Pro";position: absolute;top: 50%;transform: translateY(-50%);right: 4px;color: #3b83d4;} */

li.down_menu a {
    padding-right: 20px;
}
/* li.down_menu:hover:after { */
	/* opacity: 0; */
/* } */
li.down_menu a i {
    color: #3b83d4;
    font-size: 14px;
    margin-left: 6px;
	transition: all .3s ease;
}
li.down_menu:hover a i {
	color: #ffd200;
}
li.down_menu:hover > a {
	background-color: #3b83d4;
    color: #fff;
}
/* subcategories style */

.menu_categories > li{
	position: relative;
}
.menu_categories > li ul{
	visibility: hidden;
	position: absolute;
	z-index: 10;
	background: #2F343B;
    padding: 10px 15px;
	left: -15px;
	top: 100%;
	opacity: 0;
	transform: translateY(-10px);
    transition: all .3s ease;
	border-radius: 0 0 10px 10px;
}
.menu_categories > li:hover ul{
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}
.menu_categories > li ul li a{
	padding: 0px 0 10px;
}
.design_content table {
	margin: 20px 0;
}
.design_content thead tr:last-child, .design_content tbody tr td:first-child {
    background-color: #f0f5fa;
}
.design_content table th, .design_content table td {
    border: solid 1px #f07a21;
    vertical-align: middle;
    text-align: center;
    padding: 6px 6px;
}

.design_content table td p, .design_content table th p, .design_content table td, .design_content table th {
    line-height: 20px;
}
.scroll-modal .modal_wrap {
    max-height: 100vh;
}
.scroll-modal .cartModalBody {
    max-height: calc(100vh - 300px);
    overflow: auto;
    padding-right: 20px;
}

.scroll-modal ul.c_m_b-productTotal {position: sticky;bottom: 0;background-color: #ffffff;padding: 25px 0;margin: 0px 0 40px;}
.scroll-modal .cartModalFooter {
    padding-right: 20px;
}
.scroll-modal ul.c_m_b-productTitle {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1;
}
.trash_icon {
    fill: #ef7b2c;
    width: 16px;
    height: 16px;
    display: block;
    margin: 0 auto;
}
.required_field:after {content: "*";color: red;font-size: 16px;margin-left: 4px;}

.b24-widget-button-block path {
	fill: #ffffff;
}

.b24-widget-button-block svg {
	width: auto;
	height: auto;
}

.order-success-qr {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: #777777;
	font-size: 14px;
	line-height: 19px;
	margin-bottom: 40px;
}
.order-success-qr .order-success-subtitle {
	margin-bottom: 0;
	max-width: 480px;
	margin-right: 20px;
}
