/* ШРИФТИ — повний URL для коректної роботи на мобільних */
@font-face {
    font-family: 'Mazzard H';
    src: url('https://shop.brendovaoptika.com/fonts/MazzardH-Light.woff2') format('woff2'),
         url('https://shop.brendovaoptika.com/fonts/MazzardH-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('https://shop.brendovaoptika.com/fonts/MazzardH-Regular.woff2') format('woff2'),
         url('https://shop.brendovaoptika.com/fonts/MazzardH-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('https://shop.brendovaoptika.com/fonts/MazzardH-Medium.woff2') format('woff2'),
         url('https://shop.brendovaoptika.com/fonts/MazzardH-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('https://shop.brendovaoptika.com/fonts/MazzardH-SemiBold.woff2') format('woff2'),
         url('https://shop.brendovaoptika.com/fonts/MazzardH-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('https://shop.brendovaoptika.com/fonts/MazzardH-Bold.woff2') format('woff2'),
         url('https://shop.brendovaoptika.com/fonts/MazzardH-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* КОЛЬОРИ */
:root {
	--site-bg-color: #f5f5f5;
	--main-color: #783E19;
	--sub-main-color: #FED213;
	--main-accent-color: #201E50;
	--main-light: #A1A1A1;
	--footer-color: #201E50;
	--btn-bg: #783E19;
	--btn-border: #783E19;
	--btn-contrast: #0DCC71;
	--btn-text: #FFFFFF;
	--btn-text-hover: #783E19;
	--text-color: #1F1F1F;
	--text-light: #5F5F5F;
	--text-contrast: #ffffff;
	--text-main-color: #783E19;
	--border-color: #783E19;
	--icon-color: #1F1F1F;
	--active-icon-color: #783E19;
	--link-color: #1F1F1F;
	--link-color-active: #783E19;
	--error-color: #EE3C30;

	--section-bottom: 48px;
}

/* SLIDER */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	outline: none;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 16px;
	flex-wrap: wrap;
}

.slick-dots li {
	margin: 4px 8px;
}

.slick-dots button {
	font-size: 0;
	display: block;
	width: 16px;
	height: 16px;
	padding: 0;
	background-color: transparent;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.slick-dots li.slick-active button {
	background-color: var(--main-color);
}

.slick-arrow {
	font-size: 0;
	padding: 0;
	background-color: transparent;
	width: 30px;
	height: 30px;
	border: none;
	position: absolute;
	z-index: 1;
	cursor: pointer;
}

.slick-arrow::before {
	content: "";
	width: 15px;
	height: 15px;
	border-bottom: 1px solid #1F1F1F;
	border-left: 1px solid #1F1F1F;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: 0.3s;
}

.slick-arrow:hover::before {
	border-color: var(--main-color);
}

.slick-arrow.slick-disabled {
	cursor: unset;
	opacity: 0.5;
}

.slick-arrow.slick-disabled:hover::before {
	border-color: #1F1F1F
}

/* СКИДАЄМ СТИЛІ */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	 margin: 0;
}

menu,
ul,
ol {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

img {
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

/* загальні стилі */

BODY, HTML {
	font-family: "Mazzard H", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 1rem;
	line-height: 20px;
	width: 100%;
	min-width: 22.5rem;
	height: 100%;
	color: var(--text-color);
}

body {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: var(--site-bg-color);
}

main {
	flex: 1 0 auto;
}

input {
	font-size: 14px;
	line-height: 17px;
	height: 40px;
	border: none;
	padding: 0 15px 0 8px;
	border-bottom: 1px solid #D6D6D6;
	transition: 0.3s;
}

input[type=text].error, input[type=password].error, input[type=tel].error, input[type=email].error, input[type=number].error, textarea.error {	border-color: var(--error-color); box-shadow: 0px 0px 8px rgba(235, 87, 87, 0.25);
}

input[type=text]:focus , input[type=password]:focus , input[type=tel]:focus , input[type=number]:focus, textarea:focus  {
	border-color: var(--sub_main-color);
	outline: 0;
	outline-offset: 0;
}

input::-webkit-calendar-picker-indicator {
	opacity: 0;
}

input:focus {
	outline: none !important;
	border-color: #1F1F1F;
}

textarea  {
	font-size: 14px;
	line-height: 17px;
	border: 1px solid #D6D6D6;
	resize: none;
	outline: none;
	padding: 8px;
	border-radius: 4px;
	transition: 0.3s;
}

a {
	color: var(--link-color);
}

a:hover {
	text-decoration: none
}
.seo_text { margin:0 0 24px 0;}
article a {
	color: var(--link-color);
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
	transition: 0.3s;
}

article a:hover {
	color: var(--link-color-active)
}

article li {
	position: relative;
	padding-left: 10px;
}

article li::before {
	content: "";
	width: 4px;
	height: 4px;
	background-color: var(--text-color);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 7px;
}

a:active {
	color: inherit;  /* НЕ УДАЛЯТИ */
}

.main_title,
h1 {
	display: inline-block;
	font-weight: normal;
	font-size: 28px;
	line-height: 32px;
	text-decoration: none;
	color: var(--text-color);
	margin-bottom: 40px;
	transition: 0.3s;
}

a.main_title:hover {
	opacity: 0.7;
}

.sub_title,
h2,
h3 {
	display: inline-block;
	font-weight: normal;
	font-size: 20px;
	line-height: 24px;
	text-decoration: none;
	color: var(--text-color);
	margin: 24px 0;
	transition: 0.3s;
}

a.sub_title:hover {
	opacity: 0.7;
}

.centre {
	margin: 0 auto;
	padding: 0 10px;
	width: 100%;
	max-width: 1440px;
	display: flex;
	flex-direction: column;
}

.icon {
	width: 25px;
	height: 25px;
	fill: var(--icon-color);
}

.btn {
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: var(--btn-text);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	width: max-content;
	padding: 5px 20px;
	background-color: var(--btn-bg);
	border: 1px solid var(--btn-border);
	cursor: pointer;
	transition: 0.3s;
}

.btn:hover {
	background-color: transparent;
	color: var(--btn-text-hover);
}

.close_btn {
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
}

.close_btn::before,
.close_btn::after {
	content: "";
	width: 18px;
	height: 2px;
	background-color: var(--icon-color);
	position: absolute;
	top: 50%;
	left: 50%;
	transition: background-color 0.3s;
}

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

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

.close_btn:hover::before,
.close_btn:hover::after {
	background-color: var(--error-color);;
}

.shadow {
	font-size: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(32, 30, 80, 0.9);
	z-index: 200;
}


.hidden {
	display: none !important;
}

.autocomplete-suggestions {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	box-shadow: 2px 2px 10px rgb(0 0 0 / 30%);
}

.autocomplete-suggestion {
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	position: relative;
	width: 100%;
	float: left;
	padding: 11px 8px;
	border-top: 1px solid #d7d7d7;
	transition: .3s;
	cursor: pointer;
}

.autocomplete-suggestion:hover {
	color: var(--link-color-active);
}

/* ДРОПДАУН */

.dropdown {
	position: relative;
	height: 42px;
	border: 1px solid #D6D6D6;
	border-radius: 3px;
	transition: .3s;
}

.dropdown.error {
	border-color: var(--error-color);
}

.dropdown_short {
	width: 68px;
	height: 30px;
	margin: 0 20px;
	color: #1d1d1d
}

.dropdown_short:hover .drop_arrow {
	background-color: #5ead5a
}

.dropdown.dropdown-open {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.dropdown.dropdown_short.dropdown-open {
	width: 68px
}

.dropdown .overflow {
	width: 100%;
	height: 100%;
	padding: 0 40px 0 0;
	background-color: #fff;
	position: relative;
	float: left;
}

.dropdown .overflow input {
	border: none;
	padding: 0;
	width: 100%;
}

.dropdown.short .overflow {
	width: 138px
}

.dropdown.dropdown-open .overflow {
	z-index: 10
}

.dropdown Span {
	font-size: 14px;
	line-height: 14px;
	cursor: pointer;
	height: 100%;
	padding: 0 20px 0 8px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	z-index: 2;
}

.dropdown_short Span {
	padding: 0 10px
}

.dropdown UL {
	position: absolute;
	top: 40px;
	right: -1px;
	left: -1px;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .3);
	z-index: 4;
	margin: 0;
	border-top: none;
	overflow-y: auto;
	display: none
}

.dropdown_short ul {
	border: 1px solid #d7d7d7;
	border-radius: 3px;
	top: 28px;
	overflow: auto;
}

.dropdown UL LI {
	position: relative;
	float: left;
	background: none;
	width: 100%;
	font-size: 15px;
	line-height: 1.2;
	border-top: 1px solid #d7d7d7
}

.dropdown_short UL LI {
	border: none
}

.dropdown UL LI A {
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	position: relative;
	width: 100%;
	float: left;
	padding: 11px 8px;
	transition: .3s
}

.dropdown_short ul li a {
	color: #1d1d1d;
	text-align: center;
	padding: 6px 0
}

.dropdown UL LI A:hover {
	color: var(--link-color-active)
}

.dropdown_short ul li a:hover {
	background-color: #e6e6e6;
	color: initial
}

.dropdown UL LI A.selected {
	display: none
}

.drop_arrow {
	position: absolute;
	right: 0;
	top: 0;
	background-color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	transition: background-color .3s;
	cursor: pointer;
}

.drop_arrow:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #201E50;
	border-left: 2px solid #201E50;
	transition: .3s
}

.drop_arrow:hover::after {
	border-color: var(--border-color)
}

.dropdown-open .drop_arrow:after {
	transform: translate(-50%, -50%) rotate(135deg);
}

.dropdown_short .drop_arrow {
	right: -1px;
	top: -1px;
	background-color: #70c46a;
	border-radius: 0 3px 3px 0;
	width: 31px;
	height: 30px
}

.dropdown_short .drop_arrow:after {
	border-width: 6px 3.5px 0 3.5px;
	border-color: #ffffff transparent transparent transparent;
	margin-left: -3.5px
}

.dropdown_alt {
	width: 100%;
	height: 50px;
	color: #504f4f;
}

.dropdown_alt span {
	font-size: 16px
}

.dropdown_alt .drop_arrow {
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
	background-color: #73c86d;
	width: 50px;
	height: 50px;
	right: -1px;
	top: -1px
}

.dropdown_alt .drop_arrow:hover {
	background-color: var(--main-active-color);
}

.dropdown_alt .drop_arrow:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 8px 0 8px;
	border-color: #ffffff transparent transparent transparent;
	margin: -5.5px 0 0 -8px
}

.dropdown_alt ul {
	border: none;
	top: calc(100% + 1px)
}

.dropdown_alt UL LI {
	font-size: 16px;
	border: none
}

.dropdown_alt UL LI A {
	background-color: #f7f7f7;
	border-right: 1px solid #d7d7d7;
	border-left: 1px solid #d7d7d7;
	color: #504f4f;
	padding: 14px 20px
}

.dropdown_alt UL LI+LI A {
	border-top: 1px solid #d7d7d7
}

.dropdown_alt UL LI:last-child A {
	border-bottom: 1px solid #d7d7d7;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}

.dropdown_alt UL LI A:hover {
	border-color: #73c86d
}

.dropdown_alt UL LI:hover+LI A {
	border-top-color: #73c86d
}

.dropdown_alt.dropdown-open {
	width: initial
}

.dropdown_alt.dropdown-open .drop_arrow {
	border-bottom-right-radius: 0
}

.dropdown_sm {
	background-color: #fff;
	height: 45px
}

.dropdown_sm .drop_arrow {
	width: 45px;
	height: 45px
}

.dropdown_sm .drop_arrow:after {
	border-width: 8px 6px 0 6px;
	border-color: #fff transparent transparent transparent;
	margin: -4px 0 0 -6px
}

.options_dropdown_list UL LI {
	position: relative;
	padding: 0 0 0 10px
}

.options_dropdown_list UL LI:before {
	content: '';
	width: 4px;
	height: 4px;
	background-color: #000;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 11px
}

.options_dropdown_list UL LI A {
	text-decoration: none;
	color: #117f8a;
	-webkit-transition: color .3s;
	transition: color .3s
}

.options_dropdown_list UL LI A:hover {
	color: #000
}

.options_dropdown_tile UL {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 10px 0 0 0
}

.options_dropdown_tile UL LI {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	margin: 0 3px 3px 0
}

.options_dropdown_tile UL LI A {
	text-decoration: none;
	background-color: #f3f3f3;
	color: #000;
	padding: 5px 10px;
	-webkit-transition: .3s;
	transition: .3s
}

.options_dropdown_tile UL LI A:hover {
	background-color: #117f8a;
	color: #fff
}

.options_dropdown_tile UL LI.disabled {
	opacity: .5
}

.options_dropdown_tile UL LI.disabled a {
	cursor: default
}

.options_dropdown_tile UL LI.disabled a:hover {
	background-color: #f3f3f3;
	color: #000
}


/* ХЕДЕР */

.site_header {
	position: relative;
}

.site_header.search_opened {
	z-index: 2;
}

.search_result.active {display:none}

.top_header {
	display: flex;
	flex-direction: column;
}

.logo_wrap {
	display: flex;
	align-items: center;
	/*margin: 0 auto;*/
	padding: 24px 0 10px;
	width: 100%;
	max-width: 180px;
}

.logo_wrap .logo {
	width: 100%;
	fill: var(--main-color);
}

.header_panel {
	display: flex;
	align-items: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

.desk-search_from {
	display: none;
}

.header_panel .call_back {
	display: flex;
	flex-direction: column;
}

.header_panel .call_back a {
	text-decoration: none;
	font-size: 14px;
}

.header_panel .call_back .call_me {
	display: none;
	width: max-content;
	color: var(--link-color-active);
	text-decoration: none;
	text-transform: lowercase;
	font-size: 12px;
	line-height: 16px;
	border-bottom: 1px solid transparent;
	transition: border-bottom 0.3s;
}

.header_panel .call_back .call_me:hover {
	border-bottom: 1px solid var(--link-color-active);
}

.header_panel .toggle_language {
	display: none;
}
.header_nav {
	display: none;
}

.header_icon {
	position: relative;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: #783E19;
	margin: 0 5px;
}

@media (max-width: 769px) {
	.header_icon {
		width: 36px;
	height: 36px;
	}
}

.header_icon.wishes {
	/*margin-left: auto;*/
}

.header_panel .icon {
	padding: 7px;
	box-sizing: content-box;
	transition: fill 0.3s;
}



.header_icon.active .icon,
.header_icon.header_icon-active .icon,
.header_icon:hover .icon {
	
}

.header_icon .counter {
	font-size: 12px;
	color: var(--text-contrast);
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	background-color: var(--main-color);
	border-radius: 8px;
	padding: 0 3px;
}

.cart_counter {
	position: absolute;
	top: calc(50% + 3px);
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 10px;
}

.btn.open-doctor_form {
	display: none!important;
}

.serch_wrap {
	position: relative;
	order: -1;
}

.search_form-bg {
	font-size: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(32, 30, 80, 0.4);
	z-index: 1;
}

.serch_from {
	position: absolute;
	top: calc(100% + 10px);
	left: 10px;
	visibility: hidden;
	opacity: 0;
	display: flex;
	align-items: center;
	height: 40px;
	z-index: 12;
	transition: 0.3s;
	width: calc(100% - 20px);
}

.serch_from.active {
	visibility: visible;
	opacity: 1;
}

.search_btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	padding: 0;
	background-color: transparent;
	outline: none;
	position: absolute;
	cursor: pointer;
	top: 0;
	right: 0;
}

.search_btn .icon {
	fill: var(--main-color);
}

.search_btn .icon:hover {
	fill: var(--main-accent-color);
}

.serch_from input {
	width: 100%;
	padding: 0 40px 0 20px;
	border-radius: 20px;
}

.serch_from input:focus {
	border-color: var(--main-color);
}

.serch_wrap .open_search {
	position: relative;
}

.serch_wrap .open_search::before,
.serch_wrap .open_search::after {
	content: "";
	width: 18px;
	height: 2px;
	background-color: var(--icon-color);
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transition: 0.3s;
}

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

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

.serch_wrap .open_search.active::before,
.serch_wrap .open_search.active::after {
	opacity: 1;
}

.serch_wrap .open_search .icon {
	transition: 0.3s;
}

.serch_wrap .open_search .icon:hover {
	fill: var(--icon-color)
}

.serch_wrap .open_search.active .icon {
	opacity: 0;
}

.open_menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 5px;
	box-sizing: content-box;
	position: relative;
}

.open_menu::before,
.open_menu::after {
	content: "";
	width: 20px;
	height: 2px;
	background-color: var(--icon-color);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.open_menu::before {
	margin-top: -6px;
}

.open_menu::after {
	margin-top: 6px;
}

.open_menu i {
	font-size: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--icon-color);
}

.mob_menu {
	position: fixed;
	width: 100%;
	padding-bottom: 40px;
	top: 0;
	bottom: 0;
	left: 100%;
	z-index: 12;
	background-color: var(--site-bg-color);
	overflow: auto;
	transition: 0.3s;
}

.mob_menu.active {
	left: 0;
}

.header_menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px;
	background-color: var(--site-bg-color);
	box-shadow: 0px 0px 30px rgba(66, 171, 179, 0.15);
}

.toggle_language a {
	text-transform: uppercase;
	padding: 0 8px;
	text-decoration: none;
	color: var(--link-color)
}

.toggle_language a.active {
	color: var(--link-color-active)
}

.menu_phones {
	display: flex;
	flex-direction: column;
}

.menu_phones a {
	text-decoration: none;
	font-weight: 500;
}

.mob_nav {
	margin: 20px 48px 28px 48px;
}

.mob_nav a {
	text-decoration: none;
	transition: 0.3s;
}

.mob_nav a.active {
	color: var(--link-color-active);
}

.mob_nav ul {
	display: none;
}

.mob_nav ul.open_list {
	display: block;
}

.mob_nav > li {
	padding: 12px 0;
}

.mob_nav > li > a {
	text-transform: uppercase;
}

.mob_nav > li li {
	padding-left: 10px;
	margin: 2px 0;
}

.appointment_doctor {
	display: none;
	margin: 0 auto 24px auto;
	width: calc(100% - 96px)
}

.bottom_menu {
	margin: 0 48px;
}

.bottom_menu > li {
	padding: 8px 0;
}

.bottom_menu > li > a {
	text-decoration: none;
	text-transform: uppercase
}

/* СТАНДАРТНА ФОРМА */

.form_box {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 385px;
	padding: 28px 32px 40px 32px;
	background-color: var(--site-bg-color);
	border-radius: 8px;
}


.form_box .close_btn {
	position: absolute;
	top: 5px;
	right: 5px;
}

.form_inner {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.from_caption {
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 4px;
}

.important_text {
	color: var(--error-color);
}

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

.form_input-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 40px;
	position: relative;
}

.form_input-wrap input{
	width: 100%;
	padding-right: 40px;
}

.form_input-wrap input[type="date"] {
	width: 100%;
}

.form_input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.form_input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.form_input-wrap .icon {
	width: 12px;
	height: 12px;
	fill: var(--icon-color);
	stroke: var(--icon-color);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%)
}

.form_input-wrap textarea {
	width: 100%;
	height: 120px;
}

.info_form {
	font-size: 14px;
}

.radio_wrap {
	display: flex;
	flex-direction: column;
	padding: 0 0 0 30px;
	position: relative;
}

.radio_wrap + .radio_wrap {
	margin-top: 16px;
}

.radio_wrap > input[type=radio] {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
}

.radio_wrap-control {
	display: flex;
	cursor: pointer;
}

.radio_wrap-control::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	background-color: transparent;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	transition: 0.3s;
	filter: grayscale(1);
}

.radio_wrap-control::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: 4px;
	filter: grayscale(1);
	opacity: 0;
	transition: 0.3s;
}

.radio_wrap > input[type=radio]:checked + .radio_wrap-control::before {
	filter: grayscale(0);
}

.radio_wrap > input[type=radio]:checked + .radio_wrap-control::after {
	filter: grayscale(0);
	opacity: 1;
}

.radio_wrap-control > .icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	margin-top: -2px;
	margin-right: 12px;
}

.radio_wrap-hidden {
	display: none;
	padding-top: 8px;
}

.radio_wrap > input[type=radio]:checked + .radio_wrap-control + .radio_wrap-hidden {
	display: block;
}

.checkbox_style {
	margin-bottom: 12px;
	position: relative;
}

.checkbox_style input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
}

.checkbox_style-box {
	display: flex;
	padding: 0 0 0 30px;
	cursor: pointer;
}

.checkbox_style-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	background-color: transparent;
	border: 1px solid var(--main-color);
	transition: 0.3s;
	filter: grayscale(1);
}

.checkbox_style-box::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--main-color);
	position: absolute;
	top: 4px;
	left: 4px;
	filter: grayscale(1);
	opacity: 0;
	transition: 0.3s;
}

.checkbox_style input[type=checkbox]:checked + .checkbox_style-box::before {
	filter: grayscale(0);
}

.checkbox_style input[type=checkbox]:checked + .checkbox_style-box::after {
	filter: grayscale(0);
	opacity: 1;
}


.form_box button[type=submit] {
	font-size: 16px;
	line-height: 22px;
	width: 100%;
	max-width: 255px;
	height: 48px;
	border-radius: 24px;
	margin: 15px auto 0 auto;
}

/* ПОПАП */

.popup {
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 250;
}

.wishes_popup.popup {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
}

.wishes_popup.popup .popup_close {
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.wishes_popup.popup .popup_close::before,
.wishes_popup.popup .popup_close::after {
	content: "";
	width: 15px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.3s;
}

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

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

.wishes_popup.popup .popup_close:hover::before,
.wishes_popup.popup .popup_close:hover::after {
	background-color: var(--main-color);
}

.wishes_popup.popup .popup_title {
	font-size: 26px;
	line-height: 1.4;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

.wishes_popup.popup figcaption {
	margin-bottom: 25px;
}

.wish_img_wrap {
	margin-bottom: 15px;
	width: 100%;
	height: auto;
}

.wish_img_wrap img {
	display: block;
	width: 100%;
	max-width: 224px;
	height: auto;
	margin: 0 auto;
}

.wishes_popup.popup .wish_price {
	margin-top: 10px;
}

.show_wishlist {
	color: var(--link-color-active);
}

.form_box.popup {
	display: none;
}

.form_box.popup.active {
	display: flex;
}

.popup-star_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.popup-star_wrap a {
	display: block;
	margin: 0 5px;
	width: 16px;
	height: 16px;
}

.popup-star_wrap .icon {
	width: 16px;
	height: 16px;
	fill: var(--main-color);
}

.popup-star_wrap .icon.icon_active {
	display: none;
}

.popup-star_wrap a.active .icon.icon_default,
.popup-star_wrap a:hover .icon.icon_default {
	display: none;
}

.popup-star_wrap a.active .icon.icon_active,
.popup-star_wrap a:hover .icon.icon_active {
	display: block;
}

.form_success.popup .icon {
	display: block;
	width: 40px;
	height: 40px;
	margin: 50px auto 20px auto;
}

.form_success.popup .sub_title {
	font-size: 16px;
	line-height: 1.2;
	text-transform: none;
	margin-bottom: 50px;
}
/* ХЛІБНІ КРИХТИ */

.clickpath {
	display: flex;
	max-width: 100%;
	overflow: auto;
	padding-top: 24px;
	margin-bottom: 34px;
}

.clickpath a {
	padding-top: 2px;
	padding-bottom: 2px;
	display: inline-block;
	white-space: nowrap;
	text-decoration: none;
	color: var(--text-light);
}

.clickpath li:not(:last-child) a {
	padding-right: 16px;
	margin-right: 16px;
	border-right: 1px solid var(--text-light);
	transition: 0.3s;
}

.clickpath li:not(:last-child) a:hover {
	color: var(--link-color-active);
}

.clickpath li:last-child {
	cursor: unset;
	pointer-events: none;
}

/* СТОРІНКА ВХОДУ.РЕЄСТРАЦІЇ */

.login_place {
	padding-bottom: 96px;
}

.login_place .form_box {
	margin: 0 auto;
	padding-top: 40px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.login_place .sub_title {
	text-transform: uppercase;
}

.login_place .sub_title.small_title {
	font-size: 16px;
	line-height: 20px;
}

.show_pass .icon {
	padding: 5px;
	width: 16px;
	height: 16px;
	box-sizing: content-box;
	opacity: 1;
	transition: 0.3s;
}

.form_input-wrap input[type=text] + .show_pass .icon {
	opacity: 0.5;
}

.social_wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.social_wrap a {
	display: block;
	margin: 0 16px;
}

.social_wrap .icon {
	width: 48px;
	height: 48px;
	transition: 0.3s;
}

.social_wrap a:hover .icon {
	opacity: 0.8;
}

.login_or {
	text-align: center;
	margin-bottom: 20px;
}

.form_bottm-text {
	font-size: 12px;
	line-height: 16px;
	margin-top: 12px;
	text-align: center;
}

.form_bottm-text a {
	color: var(--link-color-active);
	text-decoration: underline;
}

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

.login_checkbox {
	font-size: 12px;
	line-height: 16px;
}

.login_checkbox a {
	color: var(--link-color-active);
	text-decoration: underline;
}

.login_checkbox label {
	display: flex;
	flex-direction: column;
	padding-bottom: 12px;
}

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

.login_checkbox input[type=checkbox]:checked,
.login_checkbox input[type=checkbox]:not(:checked) {
	position: absolute;
	left: -9999px;
}

.login_checkbox input[type=checkbox]:checked + label,
.login_checkbox input[type=checkbox]:not(:checked) + label {
	position: relative;
	padding-left: 24px;
	cursor: pointer;
}

.login_checkbox input[type=checkbox]:checked + label:before,
.login_checkbox input[type=checkbox]:not(:checked) + label:before{
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 16px;
	height: 16px;
	border: 1px solid #A1A1A1;
	background-color: #ffffff;
	border-radius: 4px;
}

.login_checkbox input[type=checkbox].error:not(:checked) + label{
	color: var(--error-color);
}

.login_checkbox input[type=checkbox]:checked + label:before,
.login_checkbox input[type=checkbox]:not(:checked) + label:before {
	border-radius: 2px;
}

.login_checkbox input[type=checkbox]:checked + label:after,
.login_checkbox input[type=checkbox]:not(:checked) + label:after {
	content: '';
	position: absolute;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.login_checkbox input[type=checkbox]:checked + label:after,
.login_checkbox input[type=checkbox]:not(:checked) + label:after {
	left: 3px;
	top: 4px;
	width: 10px;
	height: 6px;
	border-radius: 1px;
	border-left: 3px solid var(--main-color);
	border-bottom: 3px solid var(--main-color);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.login_checkbox input[type=checkbox]:not(:checked) + label:after  {
	opacity: 0;
}

.login_checkbox input[type=checkbox]:checked + label:after {
	opacity: 1;
}

/* ФУТЕР */

.site_footer {
	flex: 0 0 auto;
	padding: 30px 0 48px 0;
	background-color: #f1ecd9;
}

.site_footer .centre {
	padding: 0 48px;
}

.footer_menu > li > a,
.footer_title {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text-contrast);
	margin-bottom: 25px;
}

.footer_menu ul a,
.footer_text  {
	color: var(--text-contrast);
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
}

.footer_text {
	margin-bottom: 20px;
}

.master-viza {
	display: block;
	width: 88px;
	height: 22px;
	margin-bottom: 16px;
}

.footer_social {
	display: flex;
}

.footer_social a {
	display: flex;
	margin-right: 15px;
	font-size: 0;
	transition: 0.3s;
}

.footer_social a:hover {
	opacity: 0.7;
}

.footer_social .icon {
	width: 20px;
	height: 20px;
}

.popup_social {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.popup_social .icon {
	width: 20px;
	height: 20px;
	margin: 0 20px;
}

.footer_menu ul a {
	border-bottom: 1px solid transparent;
	transition: border-bottom 0.3s;
}

.footer_menu ul a:hover {
	border-bottom: 1px solid var(--text-contrast);
}

.footer_menu ul li + li > a {
	display: inline-block;
	margin-top: 10px;
}

.footer_menu > li + li,
.footer_time {
	margin-top: 32px;
}

.work_wrap {
	display: flex;
	flex-direction: column;
}

.footer_boottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 48px;
}

.footer_logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	width: 195px;
	fill: var(--text-contrast);
}

.footer_logo .logo {
	width: 100%;
	height: 16px
}

.copyright_wrap {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	line-height: 16px;
}

.copyright_wrap a {
	color: var(--text-contrast);
	text-decoration: none;
}

.copyright_wrap a:hover {
	text-decoration: underline;
}

/* БАННЕР */

.main_banner {
	padding-bottom: var(--section-bottom);
}

.big_slider {
	width: 100%;
}

.big_slider:not(.slick-initialized) {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
}

.big_slider:not(.slick-initialized) .main_slide {
	min-width: 100%;
}

.big_slider.slick-initialized {
	display: flex;
	flex-direction: column;
}

.big_slider.slick-initialized .slick-list {
	flex: 1 1 auto;
}

.big_slider.slick-initialized .slick-track {
	display: flex;
	height: 100%;
}

.big_slider.slick-initialized figure {
	align-self: stretch;
	height: auto;
}

.slim_banner:not(.slick-initialized) {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
}

.slim_banner:not(.slick-initialized) .slim_slide {
	min-width: 100%;
}

.main_slide {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
}

.slide_image {
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	height: auto;
}

.slide_image picture {
	width: 100%;
	display: flex;
	flex: 1 1 auto;
}

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

.big_slider figcaption {
	padding: 40px 48px 32px 48px;
	background-color: var(--sub-main-color);
}

.big_slider figcaption.active {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: none;
	background-color: transparent;
	z-index: 1;
}

.banner_title {
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
	display: inline-block;
	margin-bottom: 8px;
}

.banner_text {
	font-size: 16px;
	line-height: 20px;
	display: inline-block;
	margin-bottom: 32px;
}

.main_banner .btn {
	font-weight: normal;
	background-color: transparent;
	border-color: var(--text-color);
	color: var(--text-color);
	margin: 0 auto;
	width: 100%;
	max-width: 225px;
}

.main_banner .btn:hover {
	background-color: var(--text-color);
	color: var(--sub-main-color)
}

.slim_banner {
	display: none;
}

/* ВІТРИНА */
.product_slider {
	padding-bottom: var(--section-bottom);
    margin-top: 50px;
}

.product_slider .main_title {
	margin-bottom: 16px;
}

.product_slider > .btn.btn_text {
	margin-bottom: 30px;
}

.btn.compare_cat-btn .icon {
	margin-right: 6px;
	fill: var(--btn-text);
	transition: 0.3s;
}

.btn.compare_cat-btn:hover .icon {
	fill: var(--btn-text-hover);
}

.product-inner:not(.slick-initialized) {
	display: flex;
	flex-wrap: wrap;
}

.product_filter {
	display: flex;
	max-width: 100%;
	overflow: auto;
	margin-bottom: 28px;
}

.product_filter a {
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	font-size: 12px;
	line-height: 16px;
	padding-bottom: 4px;
	border-bottom: 1px solid transparent;
	transition: 0.3s;
	z-index: 1;
}

.product_filter a + a {
	margin-left: 50px;
}

.product_filter a.active,
.product_filter a:hover {
	border-bottom: 1px solid var(--main-color)
}

.product_item {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 46px 10px 25px 10px;
	position: relative;
	z-index: 1;
}

.product_slider .product_item {
	margin: 0 8px;
	width: 284px;
}

.status_wrap {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 8px;
	left: 0px;
	z-index: 1;
}

.product_status .discont {
	background-color:#00ad5e;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	/* display: none; */
	margin: 0 8px 8px 0;
	padding: 6px 10px;
	font-weight: 600;
	width: max-content;
	border-radius: 4px;
}
.status_wrap .discont {
	background-color:#00ad5e;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	/* display: none; */
	margin-bottom: 5px;
	padding: 6px 10px;
	font-weight: 600;
	width: max-content;
	border-radius: 4px;
}

.product_status .hit {
	background-color:#FED213;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 6px 10px;
	font-weight: 600;
	width: max-content;
	border-radius: 4px;
}

.status_wrap .hit {
	background-color:#FED213;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 600;
	padding: 6px 10px;
	width: max-content;
	border-radius: 4px;
}
.product_status .new {
	background-color:#03D6E7;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 6px 10px;
	font-weight: 600;
	width: max-content;
	border-radius: 4px;
}
.status_wrap .new {
	background-color:#03D6E7;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 5px;
	padding: 6px 10px;
	width: max-content;
	border-radius: 4px;
}
.status_wrap span {
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	margin-bottom: 5px;
	padding: 6px 10px;
	font-weight: 600;
	color: #000;
	width: max-content;
	background-color: #f1ecd9;
}

.price_sale {
    position: relative;
}

.price_sale span{
	text-transform: uppercase;
	font-size: 10px;
	line-height: 12px;
	position: absolute;
	left: 90%;
	bottom: -20px;
	display: inline-block;
	margin-bottom: 5px;
	padding: 3px 6px;
	font-weight: 400;
	color: #000;
	width: max-content;
	background-color: #f1ecd9;
}

.product_slider .price_sale span {
	left: 25%;
}

.add_wish {
	display: block;
	position: absolute;
	top: 12px;
	right: 12px;
}

.add_wish .icon {
	width: 26px;
	height: 26px;
	display: block;
	fill: var(--icon-color);
	transition: 0.3s;
}

.add_wish:hover .icon {
	fill: var(--main-color);
}

.add_wish .fill_icon {
	display: none;
}

.add_wish.active .icon {
	display: none;
}

.add_wish.active .fill_icon {
	display: block;
	fill: var(--active-icon-color)
}

.to_compare_list,
.remove_compare_list {
	margin-left: 12px;
}

.to_compare_list .icon,
.remove_compare_list .icon {
	width: 26px;
	height: 26px;
	display: none;
	fill: var(--icon-color);
	transition: 0.3s;
}

.to_compare_list.active .icon,
.remove_compare_list.active .icon,
.to_compare_list:hover .icon,
.remove_compare_list:hover .icon {
	fill: var(--active-icon-color)
}

.compare.to_compare_list,
.compare.remove_compare_list {
	display: none;
	width: 26px;
	height: 26px;
	position: absolute;
	top: 43px;
	right: 12px;
	margin: 0;
}

.compare.to_compare_list .icon,
.compare.remove_compare_list .icon {
	margin: 0;
	width: 26px;
	height: 26px;
}

.style_checkbox {
	position: absolute;
	top: 12px;
	right: 12px;
}

.style_checkbox input {
	display: none;
}

.style_checkbox .style_box {
	width: 16px;
	height: 16px;
	border: 1px solid var(--main-accent-color);
	border-radius: 2px;
	cursor: pointer;
}

.style_checkbox .style_box::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: transparent;
	position: absolute;
	left: 3px;
	top: 3px;
	transition: background-color 0.3s;
}

.style_checkbox input:checked + .style_box::after {
	background-color: var(--main-accent-color);
}

.product_photo {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	position: relative;
}

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

.main_slider-wrap .product_gift {
	display: none;
	font-size: 16px;
	line-height: 1.3;
	color: var(--text-contrast);
	text-decoration: none;
	padding: 2px 6px;
	width: max-content;
	max-width: 100%;
	min-height: 22px;
	font-weight: bold;
	background-color: #0dac49;
	position: absolute;
	top: 12px;
	z-index: 9;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
}

.product_gift {
	display: none;
	font-size: 12px;
	line-height: 1.3;
	color: var(--text-contrast);
	text-decoration: none;
	padding: 2px 6px;
	width: max-content;
	max-width: 100%;
	min-height: 22px;
	font-weight: bold;
	background-color: #0dac49;
	position: absolute;
	top: 35px;
	z-index: 9;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
}


.has_good .product_gift {
	display: block;
}


.product_gift b {
	font-size: 10px;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}

.product_gift b::before {
	content: "";
	width: 100%;
	height: 24px;
	background-color: #141e8c;
	position: absolute;
	top: -5px;
	left: -1px;
	z-index: -1;
}

.product_gift b img {
	position: absolute;
	top: 18px;
	left: -1px;
	width: 100%;
	height: auto;
}

.product_item figcaption {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product_link {
	font-size: 16px;
	line-height: 22px;
	text-decoration: none;
	color: var(--link-color);
	display: inline-block;
	margin-bottom: 10px;
}

.price_product {
	display: grid;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: auto;
	min-height: 36px;
}

.price_product > span {
	margin-right: 8px;
	font-weight: 600;
}

.price_product del {
	text-decoration: none;
	font-size: 14px;
	line-height: 16px;
	margin-right: 8px;
	opacity: 0.7;
	position: relative;
}

.price_product del::before {
	content: "";
	width: 60px;
	height: 2px;
	background-color:var(--pale-sky);
	position: absolute;
	top: 50%;
	left: 0;
	opacity: 0.5;
}

.price_product .product_raiting {
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	min-height: 20px;
}

.product_item .btn {
	margin-top: 18px;
	width: calc(100% - 48px);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
}

.product_slider .slick-arrow {
	top: 150px;
}

.product_slider .slick-prev {
	left: -30px;
}

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

/* ЗАПИС ДО ЛІКАРЯ */

.subscribe {
	padding-bottom: var(--section-bottom);
}

.subscribe_box {
	display: flex;
	flex-direction: column;
}

.subscribe_box + .subscribe_box {
	margin-top: 48px;
}

.subscribe_inner {
	transform: translateX(-10px);
	width: calc(100% + 20px);
	margin-bottom: 32px;
}

.subscribe_inner img {
	display: block;
	width: 100%;
	height: auto;
}

.subscribe_box figcaption {
	padding: 0 30px;
}

.sub_title {
	margin-bottom: 16px;
}

.subscribe_text {
	display: inline-block;
	margin-bottom: 28px;
}

.btn.subscribe_btn {
	margin: 0 auto;
	max-width: 284px;
	font-size: 16px;
	height: 48px;
	width: 100%;
	color: var(--text-color);
	background-color: var(--sub-main-color);
	border-color: var(--sub-main-color);
	border-radius: 24px;
}

.btn.subscribe_btn:hover {
	background-color: transparent;
	border-color: var(--sub-main-color);
}

/* ПОСЛУГИ */

.services {
	padding-bottom: var(--section-bottom);
}
/* 
.services_slider:not(.slick-initialized) {
	display: grid;
	grid-gap: 16px;
}
*/

/* .services_slider .slick-list {
	margin: -16px 0 ;
	padding: 16px 0;
} 

.services_slider .slick-track {
	display: flex;
	margin: 0 -16px;
	padding: 0 16px;
} */

.services_item {
	/* text-decoration: none;
	display: flex;
	flex-direction: column;
	padding: 40px 40px 38px 40px;
	width: 100%; */
	/* min-width: 280px; */
	/* width: 284px; */
	/* height: auto;
	border-radius: 8px;
	box-shadow: 0px 0px 16px rgba(66, 171, 179, 0.15); */
}
/* 
.services_slider.slick-initialized .services_item {
	margin: 0 8px;
}

.services_item img {
	display: block;
	margin: 0 auto 40px auto;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.services_text {
	font-size: 16px;
	font-weight: normal;
}

.services .slick-prev {
	top: 50%;
	transform: translateY(-50%);
	left: -30px;
}

.services .slick-next {
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	right: -30px;
} */

/* ПРЕВЮ БЛОГА */

.blog_preview-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
}

.blog_preview-top .main_title {
	margin-bottom: 0;
}

.blog_preview {
	margin-bottom: var(--section-bottom);
}

.blog_preview-slider:not(.slick-initialized) {
	display: flex;
	flex-wrap: wrap;
}

.blog_slide {
	width: 280px;
	box-shadow: 0px 0px 16px rgb(66 171 179 / 15%);
	border-radius: 8px;
	overflow: hidden;
}

.blog_preview-slider:not(.slick-initialized) .blog_slide {
	margin: 8px;
}

.blog_preview-slider.slick-initialized .blog_slide {
	margin: 0 8px;
}

.blog_preview-slider .slick-list {
	margin: -16px 0 ;
	padding: 16px 0;
}

.blog_preview-slider .slick-track {
	display: flex;
}

.blog_image {
	display: block;
	width: 100%;
	height: 254px;
}

.blog_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.blog_slide figcaption {
	display: flex;
	flex-direction: column;
	padding: 20px 16px 16px 32px;
}

.article_link {
	text-decoration: none;
	color: var(--link-color);
	font-size: 16px;
	line-height: 22px;
	transition: 0.3s;
	margin-bottom: 18px;
}

.article_link:hover {
	color: var(--link-color-active);
}

.article_reading {
	margin-left: auto;
	line-height: 20px;
	transition: 0.3s;
}

.article_reading:hover {
	color: var(--link-color-active);
	text-decoration: underline;
}

/* КАТАЛОГ */

.catalog {
	padding-bottom: var(--section-bottom);
}

.catalog_content .main_title {
	text-transform: none;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 26px;
}

.main_title.search_title {
	margin-bottom: 15px;
}

.top_filter_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.top_filter_list .toggle_item {
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 8px 8px 0;
	min-width: 60px;
	height: 60px;
	border-radius: 3px;
	background-color: var(--site-bg-color);
	overflow: unset;
	border: 1px solid var(--border-color);
	padding: 10px;
	transition: 0.3s;
}

.top_filter_list .toggle_item.active {
	color: #fff;
	background-color: var(--main-color);
}

.top_filter_list .toggle_item:not(.active):hover {
	color: var(--main-color);
}

.top_filter_list .toggle_item img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

.search_counter {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 22px;
}

.catalog_control {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.dropdown_sort {
	width: calc(50% - 20px);
	height: 32px;
	border: none;
	box-shadow: 0px 0px 30px rgba(66, 171, 179, 0.15);
}

.dropdown_sort .drop_arrow {
	width: 32px;
	height: 32px;
}

.open_filter {
	text-decoration: none;
	font-size: 12px;
	line-height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(50% - 20px);
	height: 32px;
	border: 1px solid var(--border-color);
	box-shadow: 0px 0px 30px rgba(66, 171, 179, 0.15);
	border-radius: 4px;
}

.decktop_sort {
	display: none;
}

.catalog_filter {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	padding: 32px 48px 60px 48px;
	overflow: auto;
	background-color: #fff;
	transition: right 0.3s;
	z-index: 12;
}

.catalog_filter.active {
	right: 0;
}

.catalog_filter .close_btn {
	position: absolute;
	top: 5px;
	right: 5px;
}

.filter_title {
	display: inline-block;
	font-weight: bold;
	margin-bottom: 20px;
}

.filter_dropdown {
	font-size: 12px;
	display: none;
	margin-top: 12px;
}

.filter_dropdown > input[type=text] {
	margin-bottom: 12px;
	height: 32px;
}

.filter_box.fil_group_grid .filter_list {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 40px;
	position: relative;
}

.filter_box.fil_group_grid .filter_dropdown li {
	display: flex;
	margin: 0 5px 5px 0;
}

.filter_box.fil_group_grid .filter_dropdown li + li {
	margin-top: 0;
}

.filter_box.fil_group_grid .filter_dropdown li a {
	padding: 3px 5px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

.filter_box.fil_group_grid .filter_dropdown li.active a {
	color: #fff;
	background-color: var(--main-color);
}

.filter_box.fil_group_grid  .filter_dropdown li a::after {
	display: none;
}

.filter_box.fil_group_grid .filter_dropdown li a::before {
	display: none;
}

.filter_box.fil_group_grid .submit_filters {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.fil_group .fs_title {
	font-size: 16px;
	line-height: 1.4;
}

.one_ch_fil {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.one_ch_fil > b {
	margin-bottom: 5px;
}

.one_ch_fil > span {
	display: flex;
	align-items: center;
	margin-bottom: 3px;
}

.one_ch_fil .deactivate-filter {
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 5px;
	position: relative;
	cursor: pointer;
}

.one_ch_fil .deactivate-filter::before,
.one_ch_fil .deactivate-filter::after {
	content: "";
	width: 15px;
	height: 1px;
	background-color: #000;
	transition: 0.3s;
	position: absolute;
	top: 50%;
	left: 50%;
}

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

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

.one_ch_fil .deactivate-filter:hover::before,
.one_ch_fil .deactivate-filter:hover::after {
	background-color: var(--main-color);
}

.clear_filters .ct_delete.deactivate-filter {
	color: var(--btn-text);
	margin-bottom: 20px;
	padding: 5px 10px;
	background-color: var(--btn-bg);
	border-radius: 5px;
	border: 1px solid var(--btn-border);
	transition: 0.3s;
	cursor: pointer;
}

.clear_filters .ct_delete.deactivate-filter:hover {
	color: var(--btn-text-hover);
	background-color: var(--btn-bg-hover);
	border-color: var(--btn-border-hover);
}

.filter_box.filter_opened .filter_dropdown {
	display: block;
}

.filter_box {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
}

.filter_name {
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	width: 100%;
	transition: 0.3s;
	position: relative;
}

.filter_name:hover {
	color: var(--link-color-active);
}

.filter_name::before {
	content: "";
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--link-color);
	border-left: 1px solid var(--link-color);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(-45deg);
	transition: 0.3s;
}

.filter_box.filter_opened .filter_name::before {
	transform: translateY(-50%) rotate(135deg);
}

.fs_from_to {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.fs_place_with,
.fs_place_to {
	padding: 2px 4px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

.filter_dropdown li + li {
	margin-top: 12px;
}

.filter_dropdown li .check_item {
	text-decoration: none;
	padding-left: 24px;
	position: relative;
	transition: color 0.3s;
}

.filter_dropdown li.no_active .check_item {
	filter: grayscale(1);
	opacity: 0.3;
	pointer-events: none;
}

.filter_dropdown li .check_item:hover {
	color: var(--link-color-active);
}

.filter_dropdown li .check_item::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 1px solid var(--main-color);
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 0;
}

.filter_dropdown li .check_item::after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: transparent;
	position: absolute;
	left: 3px;
	top: 3px;
	transition: background-color 0.3s;
}

.filter_dropdown li .check_item.active::after {
	background-color: var(--main-color);
}

.open_more-filters {
	font-size: 14px;
	display: inline-block;
	margin-top: 16px;
}

.open_more-filters.open_filter {
	padding: 8px 3px 0 3px;
	width: auto;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

.open_more-filters.open_filter:hover {
	color: var(--main-color);
}

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

.submit_filters {
	text-decoration: none;
	color: var(--btn-text);
	margin: 20px auto 0 auto;
	display: block;
	width: max-content;
	padding: 5px 10px;
	background-color: var(--btn-bg);
	border-radius: 5px;
	border: 1px solid var(--btn-border);
	transition: 0.3s;
}

.submit_filters:hover {
	background-color: transparent;
	color: var(--btn-text-hover);
}

.input_wrap {
	width: 84px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0px 0px 30px rgba(66, 171, 179, 0.15);
}

.input_wrap span {
	font-size: 10px;
	line-height: 12px;
	margin: 2px 0 2px 8px;
}

.input_wrap input {
	border: none;
	padding: 0 8px 2px 8px;
	height: 22px;
	width: 100%;
}

.price_wrap > span {
	margin: 0 4px;
}

.catalog_filter .btn {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}

.catalog_filter.active .btn {
	opacity: 1;
	visibility: visible;
}

.pgoduct_grid {
	display: grid;
	grid-gap: 15px;
	margin-bottom: 22px;
}

.pgoduct_grid li {
	display: flex;
	flex-direction: column;
}

.to_load {
	text-decoration: none;
	display: flex;
	align-items: center;
	margin: 0 auto 22px auto;
	padding: 15px;
	width: max-content;
}

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

.to_load .icon {
	margin-right: 12px;
	width: 16px;
	height: 16px;
	stroke: var(--active-icon-color);
}

/* пагінатор */

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

.arrow_pag {
	display: block;
	margin: 0 8px;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border: 1px solid var(--main-color);
	background-color: var(--main-color);
	border-radius: 4px;
	position: relative;
	transition: 0.3s;
}

.arrow_pag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--text-contrast);
	border-left: 1px solid var(--text-contrast);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: 0.3s;
}
/*
.arrow_pag:hover::before {
	border-color: var(--main-color)

} */

.arrow_pag.arrow_pag-next {
	transform: rotate(180deg);
}

.arrow_pag.not_active {
	filter: grayscale(0.8);
	cursor: unset;
	pointer-events: none;
}

.arrow_pag:not(.not_active):hover {
	background-color: transparent;
}

.arrow_pag:not(.not_active):hover::before {
	border-color: var(--main-color)
}

.pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination ul a,
.pagination ul span {
	text-decoration: none;
	color: #B4B4B4;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 4px 8px;
	padding: 0 5px;
	min-width: 32px;
	height: 32px;
	border: 1px solid #FAFAFA;
	border-radius: 4px;
	transition: 0.3s;
}

.pagination ul a.active {
	cursor: unset;
}

.pagination ul a.active.pointer {
	border-color: var(--main-color);
	cursor: pointer;
}

.pagination ul a:hover {
	color: var(--main-color)
}

.pagination ul a.active:hover {
	color: #B4B4B4;
}

/* стаття в низу каталогу */

.caralog_article {
	font-size: 10px;
	line-height: 12px;
}

.caralog_article > * {
	display: inline-block;
	margin-bottom: 8px;
}

.catalog-comments_item {
	margin-top: 30px;
}

.catalog-comments_item.on-page {
	flex: 0 1 auto;
	margin-top: 0;
	padding-bottom: var(--section-bottom);
	width: 100%;
}

.catalog-comments_header {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.catalog-comments_title {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.2;
	margin-right: 50px;
}

.catalog-comments_header .btn {
	text-align: center;
	background-color: transparent;
	color: var(--btn-text-hover);
	z-index: 1;
}

.catalog-comments_header .btn:hover {
	background-color: var(--btn-bg);
	color: var(--btn-text);
}

.catalog-comments_item.on-page .slick-list {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

.catalog-comments_item.on-page .catalog-comments_list:not(.slick-initialized) {
	display: flex;
	overflow: hidden;
}

.catalog-comments_item.on-page .catalog-comments_list:not(.slick-initialized) .catalog-comments-slide {
	flex: 0 0 100%;
	margin-left: 0;
	margin-right: 0;
}

.catalog-comments_list .slick-list {
	margin: -30px;
	padding: 30px;
}

.catalog-comments-slide {
	display: flex;
	flex-direction: column;
	margin: 0 20px;
}

.catalog-comments_one {
	display: flex;
	flex-direction: column;
	padding: 16px;
	max-width: 384px;
	border-radius: 16px;
	background: var(--site-bg-color);
	box-shadow: 0px 0px 30px rgba(66, 171, 179, 0.15);
}

.catalog-comments_one:nth-child(1) {
	margin-bottom: 16px;
}

.catalog-comments_one.comment_reply {
	margin-left: auto;
}

.catalog-comments_one.comment_reply .comments_one-header > .icon {
	margin: 0 0 0 15px;
}

.catalog-comments_one.comment_reply .catalog-comments_text {
	padding: 0 48px 0 0 ;
}

.comments_one-header {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.comments_one-header > .icon {
	display: block;
	margin-right: 16px;
	width: 32px;
	height: 32px;
}

.comments_one-header b {
	font-size: 12px;
	line-height: 1.2;
	font-weight: 400;
	margin-right: 12px;
}

.comments_one-header span {
	font-size: 12px;
	color: var(--text-light);
}

.catalog-comments_text {
	padding-left: 48px;
}

.comments_arrows {
	flex: 0 0 32px;
	margin-top: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.comments_arrows .slick-arrow {
	flex: 0 0 32px;
	height: 32px;
	position: relative;
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 4px;
	transition: 0.3s;
}

.comments_arrows .slick-arrow::before {
	width: 10px;
	height: 10px;
	border-color: #fff;
	transform: translate(calc(-50% + 2px), -50%) rotate(45deg);
	transition: 0.3s;
}

.comments_arrows .slick-arrow.comments-next {
	transform: rotate(180deg);
}

.comments_arrows .slick-arrow:hover {
	background-color: #fff;
}

.comments_arrows .slick-arrow:hover::before {
	border-color: var(--main-color)
}

.comments_dots .slick-dots {
	padding: 0 8px;
	z-index: 1;
	position: relative;
}

.comments_dots li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #FAFAFA;
	background-color: var(--site-bg-color);
	border-radius: 4px;
	transition: 0.3s;
	cursor: pointer;
}

.comments_dots li.slick-active span {
	border-color: var(--main-color);
	cursor: unset;
}

.comments_dots li span:hover {
	color: var(--main-color);
}

.comments_dots li.slick-active span:hover {
	color: unset;
}

/* РАЗОМ ДЕШЕВШЕ */

.together_discount {
	margin-bottom: var(--section-bottom);
}

.discount_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.discount_inner .product_photo {
	height: 75px;
}

.discount_inner .product_item {
	width: 100%;
	max-width: 284px;
}

.discount_inner .plus,
.discount_inner .sum {
	font-size: 0;
	display: block;
	margin: 15px 0;
	width: 40px;
	height: 40px;
	position: relative;
}


.discount_inner .plus::before,
.discount_inner .plus::after,
.discount_inner .sum::before,
.discount_inner .sum::after {
	content: "";
	width: 40px;
	height: 6px;
	background-color: var(--main-color);
	position: absolute;
}

.discount_inner .plus::before {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.discount_inner .plus::after {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
}

.discount_inner .sum::before {
	top: 7px;
	left: 0;
}

.discount_inner .sum::after {
	bottom: 7px;
	left: 0;
}

.total_discount {
	font-size: 32px;
	line-height: 39px;
	margin: 0 auto;
}

.discount_inner .to_cart {
	margin: 20px;
}

.to_cart_disabled, .to_cart_disabled:hover {
	background: var(--main-light);
	border-color: var(--main-light);
	color: var(--btn-text);
}


/* БЛОГ */

.blog_list {
	padding-bottom: var(--section-bottom);
}

.blog_list .main_title {
	text-transform: none;
	padding-bottom: 8px;
	margin-bottom: 16px;
	width: 100%;
	border-bottom: 1px solid var(--border-color);
}

.blog_categories {
	display: flex;
	margin-bottom: 50px;
	max-width: 100%;
	overflow: auto;
}

.blog_categories a {
	display: inline-block;
	text-decoration: none;
	white-space: nowrap;
	color: var(--link-color);
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: color 0.3s;
}

.blog_categories a:hover {
	color: var(--link-color-active)
}

.blog_categories li + li {
	margin-left: 48px;
}

.blog_categories a.active {
	border-bottom: 1px solid var(--text-color);
}

.blog_categories a.active:hover {
	color: var(--link-color);
	/* pointer-events: none; */
	cursor: unset;
}

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


.blog_item {
    box-shadow: 0px 0px 16px rgb(66 171 179 / 15%);
    border-radius: 8px;
    overflow: hidden;
}

.blog_images {
	display: block;
	width: 100%;
	height: 160px;
}

.blog_images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog_item figcaption {
	display: flex;
	flex-direction: column;
	padding: 18px;
	background-color: #fff;
}

.blog_title {
	color: var(--text-black);
	font-weight: bold;
	text-decoration: none;
	margin-bottom: 8px;
}

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

.blog_text {
	color: var(--text-black);
	font-size: 15px;
	line-height: 15px;
}

/* СТАТТЯ */

.blog_details {
	padding-bottom: var(--section-bottom);
}

.blog_details img {
	max-width: 100%;
	height: auto;
}

.blog_details header  {
	margin-bottom: 24px;
}

.blog_details header h1 {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.blog_main-photo {
	display: inline-block;
	width: 100%;
	margin-bottom: 48px;
}

.blog_content {
	margin: 0 auto;
	width: 100%;
}

.blog_content > * {
	margin-bottom: 20px;
}

.blog_content img {
	margin: 40px 0;
}

/* ОФОРМЛЕННЯ ЗАМОВЛЕННЯ */

.cart_order {
	padding-top: 20px;
	padding-bottom: var(--section-bottom);
}

.cart_order .sub_title {margin:40px 0;}

.cart_column {
	margin-bottom: 40px;
	max-width: 400px;
	margin: 0 auto;
}

.order_form .col {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	padding: 30px;
}

.order_form .col:nth-child(2) {
	padding: 22px;
	background-color: #fff;
}

.order_form .col:nth-child(1) button[type=submit] {
	display: none;
}

.checkout_form-box {
	margin-bottom: 36px;
}

.checkout_form-grid {
	display: grid;
}

.cart_order .cart_title {
	display: inline-block;
	margin-bottom: 30px;
}

.cart_product {
	display: flex;
	border-bottom: 1px solid var(--border-color);
	margin: 0 0 15px 0;
	padding: 0 0 15px 0;
}

.cart_product-img {
	display: block;
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	margin-right: 15px;
	border: 1px solid transparent;
	transition: border 0.3s;
}

.cart_product-img:hover {
	border: 1px solid var(--border-color);
}

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

.product-cart_info {
	display: flex;
	flex-direction: column;
}

.product_name {
	display: inline-block;
	text-decoration: none;
	transition: color 0.3s;
	margin-bottom: 10px;
}

.product_name:hover {
	color: var(--link-color-active)
}

.cart_order .product_code {
	margin-bottom: 10px;
}

.cart_order .product_color {
	margin-bottom: 10px;
}

.cart_order .product_color span {
	margin-right: 10px;
}

.cart_product-price {
	display: flex;
	justify-content: space-between;
}

.cart_total {
	display: block;
	width: 100%;
	text-align: end;
	margin-bottom: 15px;
}

.edit_order {
	font-size: 14px;
	transition: color 0.3s;
}

.edit_order:hover {
	text-decoration: underline;
	color: var(--link-color-active)
}

.cart_order .btn {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 0;
}

.send_completed, .cart_completed {
	font-size: 20px;
	text-align: center;
	line-height: 26px;
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 30px);
	max-width: max-content;
	padding: 20px;
	border-radius: 8px;
	background-color: var(--site-bg-color);
	box-shadow: 0px 0px 16px rgb(0 0 0 / 15%);
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
	z-index: 12;
}

.send_completed.active, .cart_completed.active {
	opacity: 1;
	visibility: visible;
}

/* СПИСОК ЛІКАРІВ */

.doctors_list {
	margin: 0 auto;
	padding-bottom: var(--section-bottom);
	width: 100%;
	max-width: 784px;
}

.doctors_list .main_title {
	text-transform: none;
}

.doctors_inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, 184px);
	grid-column-gap: 16px;
	grid-row-gap: 32px;
	justify-content: center;
}

.doctor_one {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: 184px;
}

.doctor_photo {
	display: block;
	margin-bottom: 24px;
	width: 184px;
	height: 184px;
	border-radius: 8px;
	background-color: #C4C4C4;
	overflow: hidden;
}

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

.doctor_name {
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	line-height: 18px;
	color: var(--link-color);
	display: inline-block;
	margin-bottom: 8px;
	transition: color 0.3s;
}

.doctor_name:hover {
	color: var(--link-color-active);
}

span.doctor_name {
	cursor: none;
}

span.doctor_name:hover {
	color: var(--link-color);
	cursor: none;
}


.doctor_profession {
	font-size: 14px;
	line-height: 18px;
}
/* ДЕТАЛЬНЕ ЛІКАРЯ */

.doctors_details {
	margin: 0 auto;
	max-width: 784px;
	padding-bottom: var(--section-bottom);
	width: 100%;
}

.doctors_details .main_title {
	text-transform: none;
}

.doctors_info {
	display: flex;
	flex-direction: column;
}

.doctors_photo {
	max-width: 384px;
	margin-bottom: 30px;
}

.doctors_photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.doctor_text {
	display: flex;
	flex-direction: column;
}

.doctor_skill {
	font-size: 14px;
	line-height: 18px;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.doctor_skill b {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 2px;
}

.doctor_text .btn {
	font-size: 16px;
	line-height: 20px;
	color: var(--btn-text-hover);
	margin: 50px 0 24px 0;
	width: 100%;
	height: 48px;
	border-radius: 24px;
	background-color: transparent;
}

.doctor_text .btn:hover {
	background-color: var(--btn-bg);
	color: var(--btn-text)
}

/* ЧАСТО ЗАПИТУЮТЬ */

.question {
	margin-bottom: 50px;
	background-color: var(--site-bg-color);
}

.question_header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}

.question .main_title {
	text-transform: none;
	margin: 0 15px 0 0;
}

.question_header .btn {
	color: var(--btn-text-hover);
	height: 40px;
	background-color: transparent;
}

.question_header .btn:hover {
	color: var(--btn-text);
	background-color: var(--btn-bg);
}

.question_accordion {
	display: flex;
	flex-direction: column;
}

.question_item {
	display: flex;
	flex-direction: column;
	padding: 0 16px 0 16px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.question_item + .question_item {
	margin-top: 16px;
}

.question_title {
	position: relative;
	text-decoration: none;
	transition: 0.3s;
	margin: 10px 0;
}

.question_title:hover {
	color: var(--link-color-active);
}

.question_title::before,
.question_title::after {
	content: "";
	width: 20px;
	height: 1px;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: 0.3s;
}

.question_title::after {
	transform: translateY(-50%) rotate(-90deg);
}

.question_item.question_opened .question_title::after {
	transform: translateY(-50%) rotate(0deg);
}

.question_text {
	display: none;
}

.question_item.question_opened .question_text {
	display: block;
}

.question_text {
	line-height: 18px;
	padding: 0 20px;
	margin-bottom: 37px;
}

.question .pagination {
	margin-top: 70px;
	margin-bottom: 0;
}

/* ЗАДАТИ ЗАПИТАННЯ */

.question_form {
	padding-bottom: var(--section-bottom);
}

.question_form .form_box {
	margin: 0 auto;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.question_form .sub_title {
	text-transform: none;
}

/* ВІДГУКИ */

.comments {
	padding-bottom: var(--section-bottom);
}

.comments_header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 42px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.comments_header .main_title {
	padding-bottom: 0;
	margin: 0 15px 0 0;
	max-width: max-content;
	border-bottom: none;
}

.comments_header .btn {
	color: var(--btn-text-hover);
	background-color: transparent;
}

.comments_header .btn:hover {
	color: var(--btn-text);
	background-color: var(--btn-bg);
}

.comments_list {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.comment_text {
	display: flex;
	flex-direction: column;
	padding: 20px 22px 24px 22px;
	width: 85%;
	max-width: 680px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.comment_text + .comment_text {
	margin-top: 20px;
}

.comment_text.comment_admin {
	margin-left: auto;
}

.comment_text b {
	font-size: 14px;
	margin-bottom: 20px;
}

.comment_text b time {
	font-weight: normal;
}

.comment_text > span {
	font-size: 14px;
	line-height: 17px;
}

/* КОНТАКТИ */

.contacts {
	margin-bottom: var(--section-bottom);
}

.contacts .main_title {
	width: 100%;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
}

.contacts_text {
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
}

.contacts_text a {
	width: fit-content;
	transition: 0.3s;
	text-decoration: none;
}

.contacts_text a:hover {
	color: var(--link-color-active)
}

.contacts_text dt {
	font-weight: 500;
	margin-bottom: 10px;
}

.contacts_text * + dt {
	margin-top: 25px;
}

.contacts_text dd {
	display: flex;
	flex-direction: row;
	font-size: 14px;
	line-height: 17px;
}

.contacts_text dd * + * {
	margin-top: 3px;
}

.contacts_map {
	width: 100%;
	height: 475px;
}

.contacts_map > * {
	width: 100%;
	height: 100%;
}

/* ОБМІН І ПОВЕРНЕННЯ */

.exchange {
	padding-bottom: var(--section-bottom);
}

.exchange > h1 {
	width: 100%;
	text-transform: none;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}

.exchange_photo {
	display: block;
	margin-bottom: 58px;
	width: 100%;
	height: auto;
}

.exchange_inner {
	font-size: 16px;
	line-height: 20px;
	display: flex;
	flex-direction: column;
}

.exchange_text {
	margin-bottom: 20px;
}

.exchange_text > * {
	margin-bottom: 15px;
}

/* ДОСТАВКА ТА ОПЛАТА */

.delivery_info {
	margin-top: 80px;
}

.delivery_title {
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	margin-bottom: 40px;
	width: 100%;
	text-align: center;
}

.delivery_grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 25px;
}

.delivery_grid + .delivery_title {
	margin-top: 40px;
}

.delivery_item {
	display: flex;
	flex-direction: column;
}

.info_title {
	text-transform: uppercase;
	margin-bottom: 15px;
}

/* СТАТТЯ ШИРОКА */

.article_wide {
	padding-bottom: var(--section-bottom);
}

.article_wide h1 {
	text-transform: none;
	padding-bottom: 8px;
	width: 100%;
	border-bottom: 1px solid var(--border-color);
}

.article_wide-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 775px;
}

.article_wide-inner img {
	max-width: 100%;
}

.article_wide-inner > * {
	margin-bottom: 25px;
}

/* ВАКАНСІЇ */

.job_vacancies {
	padding-bottom: var(--section-bottom);
}

.vacancies_title {
	font-size: 24px;
	line-height: 30px;
	display: inline-block;
	margin-bottom: 20px;
}

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

.vacancies_banner img {
	display: block;
	width: 100%;
	height: auto;
}

.job_vacancies .main_title {
	text-transform: none;
}

.vacancies_list {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 16px;
}

.vacancies_list a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	padding: 22px;
	border: 1px solid var(--border-color);
	border-bottom: 4px solid var(--border-color);
}

.vacancies_list a b {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 10px;
}

.vacancies_list a span {
	width: 100%;
	padding-right: 35px;
	position: relative;
	transition: 0.3s;
}

.vacancies_list a:hover span {
	color: var(--link-color-active)
}

.vacancies_list a span::before {
	content: "";
	width: 11px;
	height: 11px;
	border-bottom: 1px solid var(--link-color);
	border-right: 1px solid var(--link-color);
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%) rotate(-45deg);
	transition: 0.3s;
}

.vacancies_list a span::after {
	content: "";
	width: 30px;
	height: 1px;
	background-color: var(--link-color);
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translateY(-50%);
	transition: 0.3s;
}

.vacancies_list a:hover span::before {
	border-color: var(--link-color-active);
}
.vacancies_list a:hover span::after {
	background-color: var(--link-color-active);
}

/* БОНУСНА ПРОГРАМА */

.bonus_program {
	padding-bottom: var(--section-bottom);
}

.bonus_program .main_title {
	padding-bottom: 8px;
	width: 100%;
	border-bottom: 1px solid var(--border-color);
}

.bonus_grid {
	margin-bottom: 58px;
}

.bonus_images {
	margin-bottom: 40px;
	width: 100%;
}

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

.bonus_images img + img {
	margin-top: 15px;
}

.bonus_cards {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 16px;
}

.bonus_cards li {
	font-size: 24px;
	line-height: 34px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	border-radius: 8px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.bonus_text {
	font-size: 14px;
	line-height: 17px;
}

/* ПРО НАС */

.about_us {
	margin: 0 auto;
	padding-bottom: var(--section-bottom);
	width: 100%;
	max-width: 784px;
}

.about_us .main_title {
	text-transform: none;
	width: 100%;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}

.abut-us_list {
	border-bottom: 1px solid #1f1f1f;
	margin-bottom: 32px;
}

.about_us-img {
	margin-bottom: 20px;
	width: 100%;
	border-radius: 8px;
}

.about_us-img img {
	display: block;
	width: 100%;
}

.abut-us_list figure {
	width: 100%;
	margin-bottom: 32px;
}

.abut-us_list h3  {
	font-weight: 24px;
	line-height: 30px;
	margin-bottom: 12px;
}

.abut-us_list p {
	font-size: 14px;
	line-height: 18px;
}

.abut-us_list + .main_title {
	padding-bottom: 0;
	border-bottom: none;
}
/* СТОРІНКА КОРИСТУВАЧА */

.user_page {
	width: 100%;
	padding-bottom: var(--section-bottom);
}

.open_user_menu {
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px 20px auto;
	width: 30px;
	height: 30px;
	border: 2px solid var(--border-color);
	border-radius: 3px;
}

.about_us-menu {
	position: fixed;
	top: 0;
	left: -100%;
	padding: 40px 30px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow: auto;
	background-color: var(--site-bg-color);
	transition: 0.3s;
	z-index: 2;
}

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

.close_about-menu {
	position: absolute;
	font-size: 0;
	top: 5px;
	right: 5px;
}

.about_us-menu ul a {
	text-decoration: none;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	padding: 14px 32px;
	color: var(--link-color);
	transition: color 0.3s;
}

.about_us-menu ul a:hover {
	color: var(--link-color-active)
}

.about_us-menu ul a.active {
	color: var(--link-color);
	background-color: #FBFBFB;
	cursor: unset;
}

.about_us-menu ul a.active:hover {
	color: var(--link-color)
}

.about_us-menu ul a .counter {
	font-size: 12px;
	color: var(--text-contrast);
	position: relative;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	background-color: var(--main-color);
	border-radius: 8px;
	padding: 0 3px;
}

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

.delete_all input {
	display: none;
}

.delete_all span {
	border: 1px solid var(--border-color);
	padding: 3px 8px;
	border-radius: 3px;
	transition: 0.3s;
	cursor: pointer;
}

.delete_all input:checked + span {
	background-color: var(--main-color);
	color: var(--text-contrast);
}

.remove_selected_compare {
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: 0.3s;
	color: var(--text-color);
}

.remove_selected_compare:hover {
	color: var(--error-color);
}

.remove_selected_compare .icon {
	fill: var(--text-color);
	margin-right: 6px;
	transition: 0.3s;
}
.remove_selected_compare:hover .icon {
	fill:  var(--error-color);
}

.btn.compare_btn {
	margin: -30px 0 50px 0;
}

.compare_list {
	padding-bottom: var(--section-bottom);
}

.compare_inner {
	display: flex;
	flex-direction: column;
}

.compare_aside {
	/*flex: 0 0 150px;*/
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.compare_aside .product_compare-info.options_list {
	display: none;
}

.compare_number {
	font-weight: bold;
	margin-bottom: 10px;
}


.btn_text.btn_reverse {
	text-decoration: none;
	color: var(--link-color-active);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
}

.btn_text.btn_reverse span {
	text-align: center;
}

.btn_text.btn_reverse .icon {
	fill: currentColor;
}

.btn_text.btn_reverse:hover .icon {
	transition: 0.3s;
	transform: rotate(90deg);
}

.cleen_compare-all.remove_compare_category {
	color: var(--text-color);
	text-align: center;
	text-decoration: none;
	border-radius: 3px;
	display: block;
	width: 100%;
	padding: 5px;
	font-size: 14px;
	border: 1px solid var(--border-color);
	margin-bottom: 20px;
	transition: 0.3s;
}

.cleen_compare-all.remove_compare_category:hover {
	background-color: var(--main-color);
	color: var(--btn-text);
}

.compare_toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.compare_toggle a {
	text-decoration: none;
	color: var(--link-color);
}

.compare_toggle a + a {
	margin-top: 5px;
}

.compare_toggle a:hover {
	text-decoration: underline;
}

.compare_toggle a.active {
	text-decoration: underline;
	color: var(--link-color-active);
}


.product_compare-info.options_list {
	margin-top: auto;
}

.compare_products {
	display: flex;
	overflow-x: auto;
	padding-left: 10px;
}

.compare_products .one_good {
	flex: 0 0 180px;
	display: flex;
	flex-direction: column;
	width: 180px;
}

.compare_products .product_photo {
	height: 180px;
}

.compare_products .one_good + .one_good {
	margin-left: 10px;
}

.compare_products .delete_compare {
	display: flex;
	margin-bottom: 10px;
	width: 15px;
	height: 15px;
	margin-left: auto;
}

.compare_products .delete_compare .icon {
	width: 15px;
	height: 15px;
	margin: 0;
}

.compare_products .product_raiting {
	display: none;
}


.compare_products .options_list {
	margin-top: 10px;
}

.options_list li {
	text-align: center;
	display: flex;
	align-items: center;
	height: 40px;
	position: relative;
	margin-top: 40px;
	border-top: 1px solid var(--main-light);
	border-bottom: 1px solid var(--main-light);
}

.options_list li::before {
	font-size: 12px;
	font-weight: 700;
	content: attr(data-filter-name);
	position: absolute;
	bottom: 100%;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.compare_products .one_good:nth-child(2n + 2) .options_list li::before {
	display: none;
}

.options_list li span {
	display: flex;
	align-items: center;
	width: 100%;
	height: 40px;
	overflow: hidden;
}

.title_small {
	display: block;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px	;
}
.user_grid {
	margin-bottom: 30px;
	padding: 0;
	max-width: 584px;
}

.check_wrap:not(:last-child) {
	margin-right: 40px;
}

.check_wrap input[type="radio"]:checked,
.check_wrap input[type="radio"]:not(:checked)
{
	position: absolute;
	left: -9999px;
}

.check_wrap input[type="radio"]:checked + label,
.check_wrap input[type="radio"]:not(:checked) + label {
	display: inline-block;
	position: relative;
	padding-left: 28px;
	font-size: 14px;
	line-height: 14px;
	cursor: pointer;
}

.check_wrap input[type="radio"]:checked + label:before,
.check_wrap input[type="radio"]:not(:checked) + label:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 16px;
	height: 16px;
	border: 1px solid #dddddd;
	background-color: #ffffff;
	transition: 0.3s;
}

.check_wrap input[type="radio"]:checked + label:before,
.check_wrap input[type="radio"]:not(:checked) + label:before {
	border-radius: 100%;
}

.check_wrap input[type="radio"]:checked + label:before {
	border-color: var(--main-color)
}

.check_wrap input[type="radio"]:checked + label:after,
.check_wrap input[type="radio"]:not(:checked) + label:after {
	content: "";
	position: absolute;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.check_wrap input[type="radio"]:checked + label:after,
.check_wrap input[type="radio"]:not(:checked) + label:after {
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--main-color);
}

.check_wrap input[type="radio"]:not(:checked) + label:after {
	opacity: 0;
}

.check_wrap input[type="radio"]:checked + label:after {
	opacity: 1;
}

.tabs_caption {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	margin-bottom: 50px;
}

.tabs_caption li {
	display: inline-block;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: 0.3s;
}

.tabs_caption li.active {
	border-color: #1F1F1F;
}

.tabs_content {
	display: none;
}

.tabs_content.active {
	display: block;
}

.user_title {
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 24px;
}

.social_connect {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.social_connect a {
	text-transform: none;
	background-color: transparent;
	color: var(--text-color);
	margin: 0 12px 12px 0;
}

.social_connect a:hover {
	color: var(--btn-text);
	background-color: var(--btn-bg);
}

.social_connect a .icon {
	margin-right: 20px;
}

.user_orders header {
	display: none;
}

.orders_item {
	font-size: 14px;
	line-height: 20px;
	display: flex;
	flex-direction: column;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 10px;
}

.orders_item * + * {
	margin-top: 10px;
}

a.orders_product {
	text-decoration: none;
}

a.orders_product:hover {
	text-decoration: underline;
}

.orders_item .orders_sum {
	font-weight: bold;
}

.user_bonus {
	display: flex;
	flex-direction: column;
}

.bonus_card {
	display: flex;
	flex-direction: column;
	box-shadow: 0px 0px 30px rgba(66, 171, 179, 0.15);
}

.bonus_card + .bonus_card {
	margin-top: 20px;
}

.bonus_info {
	display: flex;
	flex-direction: column;
	padding: 40px;
}

.bonus_info * + *  {
	margin-top: 16px;
}

.bonus_balance {
	display: flex;
	flex-direction: column;
	padding: 40px;
	background-color: var(--main-color);
	color: var(--text-contrast)
}

.bonus_balance span {
	margin-bottom: 16px;
}

.bonus_balance b {
	font-weight: normal;
	font-size: 32px;
	line-height: 40px;
}

.user_wish {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 16px;
}
/*
ЗАВЕРШЕННЯ ЗАМОВЛЕННЯ
 */
.checkout {
	padding: 50px 0;
}

.checkout_title {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 15px;
	text-align: center;
}

.checkout article {
	text-align: center;
}

.checkout_text {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 30px;
}

.checkout .main_title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

.print_order {
	font-size: 14px;
	line-height: 1.2;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	height: 28px;
	border-radius: 14px;
	color: #fff;
	background-color: var(--btn-bg);
	border: 1px solid var(--btn-border);
	cursor: pointer;
	transition: 0.3s;
}

.print_order:hover {
	color: var(--text-color);
	background-color: transparent;
}

.checkout_box_inner {
	display: flex;
	flex-direction: column;
}

.checkout_order {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.checkout_product {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 23px;
	width: 100%;
	padding: 20px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

.checkout_product > a {
	display: block;
	margin-bottom: 10px;
	width: 196px;
	height: 130px;
}

.checkout_product > a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.checkout_product figcaption {
	width: 100%;
}

.checkout_product_title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.checkout_product_title a {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 22px;
	text-decoration: none;
	color: var(--link-color);
	display: inline-block;
}

.checkout_product_title a:hvoer {
	color: var(--link-color-active);
}

.checkout_product_title span {
	flex: 0 0 auto;
	margin-left: 10px;
}

.checkout_total {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.4;
}

.checkout_contacts_title {
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.checkout_contact + .checkout_contacts_title {
	margin-top: 15px;
}

.checkout_contact {
	margin-bottom: 8px;
}

.checkout .op_title {
	font-size: 24px;
	line-height: 1.4;
	margin-bottom: 35px;
}

.page_404 {
	padding: 75px 0 50px 0;
}

.text_404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}

.text_404_num {
	font-size: 85px;
	line-height: 1.4;
	color: #ee3e3e;
}

.text_404_title {
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 20px;
}

.links_404_list {
	list-style: disc;
	padding-left: 30px;
}

.links_404_list a {
	text-decoration: none;
	transition: 0.3s;
	margin-bottom: 3px;
}

.links_404_list a:hover {
	color: var(--link-color-active);
	text-decoration: underline;
}

.links_404_title {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 5px;
}

.links_404_subtitle {
	margin-bottom: 3px;
}

.call_bottom {
    margin-top: 30px;
}

.call_bottom a {
	text-decoration: none;
	color: var(--text-contrast);
	font-weight: bold;
}

.call_bottom a:hover {
	border-bottom: 1px solid var(--text-contrast);
}

.sitemail {
	margin-top: 10px;
}

.sitemail a {
	text-decoration: none;
	color: var(--text-contrast);
}

.sitemail a:hover {
	border-bottom: 1px solid var(--text-contrast);
}
/* button social */
.navigation
{
	position: fixed;
	display: flex;
	right: 30px;
	bottom: 30px;
	justify-content: center;
	align-items: center;
	z-index: 999;
}


@keyframes shakeAnimation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}



.menu
{
	position: absolute;
	width: 190px;
	height: 35px;
	bottom: 20px;
	background: #fff;
	border-radius: 70px;
	z-index: -1;
	transition: transform 0.5s, width 0.5s, height 0.5s;
	transition-delay: 1s, 0.5s, 0.5s;
	transition-timing-function: cubic-bezier(0.075,0.82, 0.165, 1);
}


.menu ul
{
	position: relative;
	display: flex;
	height: 70px;
	padding: 7px;
}
.menu ul li
{
	list-style: none;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
	transition-delay: calc(0.75s + var(--i));
}

.menu ul li a
{
	display: block;
	font-size: 2em;
	text-decoration: none;
	color: #555;
}
.menu ul li a img {width: 20px; margin: 0px 19px;}
.menu ul li a:hover
{
	color: #ff216d !important;
	cursor: pointer;
}




.widget-messenger__badge {
	color: #fff;
	font-weight: 700;
    padding: 15px 10px 15px 15px;
    border-radius: 5px;
    background-color:#03D6E7;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    overflow: hidden;
	font-size: 1rem;
	width: 220px;
	font-size: 12px;
	height: 150px;
	line-height: 2rem;
	text-align: center;
	border-radius: 1rem;
	position: absolute;
	bottom:10px;
	right: 0px;
	opacity: 1;
	z-index: -9;
	transition: opacity .25s ease-in-out;
	animation: pulse 2s ease-in-out 1s alternate infinite none running;
}

.widget-messenger__badge::before {
	content: 'Якщо у вас є питання, ми готові вам допомогти! ';
	transition: 1.5s;
	text-transform: uppercase;
	line-height: 1.5;
	display: block;
	padding-top: 10px;
}
.close-button::before, .close-button::after {
    content: '';
    position: absolute;
    cursor: pointer;
    background-color: #fff;
    width: 1px;
    height: 15px;
    top: 8px;
    right: 15px;
    transform: rotate(-45deg);
}

.close-button::after {
    transform: rotate(45deg);
}

.for_price {
	margin-right: 10px;
	font-weight: 500;
}


#banner-container {overflow: hidden; border-radius: 10px; margin-bottom:30px;}
#banner-container img {width: 100%; height: auto; display: block; border-radius: 10px; }
@media (max-width: 639px) {
	#banner-container img {max-width: 100%;height: auto;}
	.header_panel .call_back {display:none}
	.header_panel .user  {display:none}
	.header_panel {position:absolute; right:20px; top:5px}
	.logo_wrap {margin-left:15px; margin-bottom:10px}
	.header_icon .user {display:none}
	.top_header {position:fixed; z-index:102; left:0; right:0; background-color:#f5f5f5;top: 0;}
	.serch_from {
		top: calc(0.2% + 66px);
		position: fixed;
	}
	main {margin-top:65px}
}
@media (min-width: 640px) {
	#banner-container img {max-width: 100%;height: auto;}
}

.in_stock {
	border: none;
	color: #000;
	padding: 0 3px;
	list-style: none;
	border-radius: 5px;
	font-size: 0.8rem;
	line-height: 12px;
	padding: 3px 0px;
	display: inline flow-root list-item;
}

.in_stock.red {
	color: red;
	list-style: none;
}

.day_delivery {
	color: #000;
	padding: 0 3px;
	border-radius: 5px;
	font-size: 0.8rem;
	line-height: 12px;
	padding: 6px 10px;
	display: none;
}
.day_delivery::marker {
	content: ""; /* Встановлення порожнього вмісту перед кожним елементом списку */
}



.mob_menu {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: auto;
	background-color: #fff;
	z-index: 12;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.mob_menu.active {
	opacity: 1;
	visibility: visible;
}

.close-mob_menu {
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
}

.close-mob_menu .icon {
	width: 22px;
	height: 22px;
}

.mob_menu-item,
.mob_menu .header_catalog > ul > li > a,
.mob_menu .header_catalog .for_evry_drop > ul > li > a,
.mob_menu .header_catalog .for_evry_drop > ol > li > a,
.btn_back,
.mob-top_menu a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--text-color);
	display: flex;
	align-items: center;
	padding: 16px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
}

.mob_menu-item .icon,
.btn_back .icon {
	margin-right: 8px;
	width: 16px;
	height: 16px;
	fill: var(--text-color);
}

.mob_menu a.has_drop::after {
	content: "";
	display: block;
	margin-top: -2px;
	margin-left: auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--text-color);
	border-top: 2px solid var(--text-color);
	position: relative;
	transform: rotate(45deg);
}

.mob_menu .btn_back {
	opacity: 0.5;
}

.mob_menu .btn_back::before {
	content: "";
	display: block;
	margin-top: -2px;
	margin-right: 8px;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid var(--text-color);
	border-left: 2px solid var(--text-color);
	position: relative;
	transform: rotate(45deg);
}

.mob-top_menu a {
	font-weight: 300;
}

.mob_menu .for_evry_drop {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	transition: 0.3s;
	background-color: #fff;
	z-index: 1;
}

.mob_menu .for_evry_drop.active {
	left: 0;
}

.ul_one li img {display:none}
/* Стилі для вікна допомоги */
#popup_bottom {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 350px;
	border-radius: 10px;
	transform: translate(-10%, -10%);
	padding: 15px;
	background-color: #fff;
	border: 1px solid #03D6E7;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 9999;
}
#popup_bottom p {margin: 0;}
.title_popup_bottom {
	margin-bottom: 10px;
	margin-top: 15px;
}
.title_popup_bottom p{
	text-align: center;
	margin: 0;
}
.title_popup_bottom span{
	display: block;
	color: #201E50;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}
.contact_popup_bottom {
	background: #03D6E7;
	padding: 10px 15px;
	text-align: center;
	border-radius: 10px;
}
#overlay {

}

#close-btn {
	position: absolute;
	
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.phone_popup_bottom {margin-bottom: 10px;}
.phone_popup_bottom a {
	font-size: 1.3rem;
	color: #000;
	text-decoration: underline;
}
.social_popup_bottom img {width: 50px; padding: 5px;}
.city_error {font-size:12px;}


.mob_menu {
    display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  background-color: #fff;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mob_menu.active {
    opacity: 1;
    visibility: visible;
}

.close-mob_menu {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
}

.close-mob_menu .icon {
    width: 22px;
    height: 22px;
}

.mob_menu-item,
.mob_menu .header_catalog > ul > li > a,
.mob_menu .header_catalog .for_evry_drop > ul > li > a,
.mob_menu .header_catalog .for_evry_drop > ol > li > a,
.btn_back,
.mob-top_menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mob_menu-item .icon,
.btn_back .icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    fill: var(--text-color);
}

.mob_menu a.has_drop::after {
    content: "";
    display: block;
    margin-top: -2px;
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-color);
    border-top: 2px solid var(--text-color);
    position: relative;
    transform: rotate(45deg);
}

.mob_menu .btn_back {
    opacity: 0.5;
}

.mob_menu .btn_back::before {
    content: "";
    display: block;
    margin-top: -2px;
    margin-right: 8px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--text-color);
    border-left: 2px solid var(--text-color);
    position: relative;
    transform: rotate(45deg);
}

.mob-top_menu a {
    font-weight: 300;
}

.mob_menu .for_evry_drop {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    transition: 0.3s;
    background-color: #fff;
    z-index: 1;
}

.mob_menu .for_evry_drop.active {
    left: 0;
}

/* popup sale */
.overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Стилі для вікна з текстом та кнопками */
    .sale_popup {
      background: #03D6E7;
      border-radius: 5px;
      color: #000;
      line-height: 30px;
      position: absolute;
      text-transform: uppercase;
      padding: 30px;
      text-align: center;
      animation: fadeIn 0.5s ease-in-out;
     

    }
    .sale_popup .close_bth {
        position: absolute;
        top: 5px;
        right: 5px;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.4em;
        
}
    .sale_popup .bth {
        color: #000;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  border-radius: 30px;
  margin-top: 30px;
  z-index: 1;
  box-shadow: 0px 0px 41px 8px rgba(0,0,0,0.1);
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.sale_popup .bth:hover{
  animation:ani 8s linear infinite;
  box-shadow: none;
}

.brands-content {
    margin-top: 50px;
}

.col-xs-100 {
    width: 100%;
}


@media (min-width: 992px) {
    .col-md-25 {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .col-sm-50 {
        width: 50%;
    }
}



.brand-item, .brand-list-title {
    margin-bottom: 10px;
}

.brand-list {
    margin-bottom: 50px;
    padding-left: 0;
}

.brand-item, .brand-list-title {
    margin-bottom: 10px;
}

.brand-link {
    font-size: 16px;
}

.row {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    align-items: flex-start;
}

.brand-list-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #081928;
}
.b_friday {
    margin-bottom: 20px;
}
.b_friday img {
    width: 100%;
    border-radius: 5px;
}
.info_price {
    display: flex;
    justify-content: space-between;
}
.free_shipping {
    background: #0dac49;
    display: flex;
    color: #fff;
    height: 25px;
    border-radius: 5px;
    padding: 2px 5px;
    width: max-content;
}

.free_shipping img {
    width: 20px;
    margin-right: 10px;
}

.free_shipping span {
    align-content: center;
    font-weight: 600;
    font-size: 12px;
}

/* --- BRANDS --- */

.brands {
	display: flex;
	flex-direction: column;
}

.ob_container:not(.slick-initialized) {
	display: flex;
	overflow: hidden;
}

.ob_container:not(.slick-initialized) .ob_one_logo {
	flex: 0 0 50%;
}

.ob_container .slick-track {
	display: flex;
}

.ob_container .slick-arrow {
	position: absolute;
	top: 50%;
}

.ob_container .slick-arrow.slick-prev {
	left: 0;
	transform: translateY(-50%);
}

.ob_container .slick-arrow.slick-next {
	right: 0;
	transform: translateY(-50%) rotate(180deg);
}

.ob_one_logo {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: auto;
}

.ob_one_logo a {
	text-decoration: none;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0 10px;
}

.ob_one_logo .logo_img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

.ob_one_logo .logo_titile {
	text-align: center;
	font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    color: var(--link-color);
    display: inline-block;
    margin-top: 10px;
}

.insta-fixed {
  display: flex;
	width: 25px;
	height: 25px;
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-fixed svg {
  flex-shrink: 0;
	fill: #fff;
}
