:root {
	--sr-header-blue: #002d72;
	--sr-header-blue-dark: #00245b;
	--sr-header-blue-light: #245f9f;
	--sr-header-text: #002d72;
	--sr-header-muted: #60798c;
	--sr-header-border: #d8e2ea;
	--sr-header-white: #ffffff;
}

body.sr-rehab-header-active {
	padding-top: 104px !important;
}

body.sr-rehab-header-active #top-header,
body.sr-rehab-header-active #main-header,
body.sr-rehab-header-active .site-header,
body.sr-rehab-header-active .et-l--header,
body.sr-rehab-header-active .header-wrapper,
body.sr-rehab-header-active .main-header-bar,
body.sr-rehab-header-active header[role="banner"]:not(.sr-header) {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
	overflow: hidden !important;
}

.sr-header,
.sr-header * {
	box-sizing: border-box;
}

.sr-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	width: 100%;
	background: var(--sr-header-white);
	border-bottom: 1px solid #e8e8e8;
	color: var(--sr-header-text);
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.35;
	box-shadow: none;
	will-change: transform;
}

.sr-header--fallback {
	position: fixed;
}

.sr-header__skip {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	transform: translateY(-140%);
	background: var(--sr-header-blue-dark);
	color: var(--sr-header-white);
	padding: 8px 12px;
	text-decoration: none;
}

.sr-header__skip:focus {
	transform: translateY(0);
}

.sr-header__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 3rem 0 3rem;
}

.sr-header__brand-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
}

.sr-header__brand {
	display: inline-flex;
	align-items: center;
	width: 285px;
	min-width: 285px;
	text-decoration: none;
	color: var(--sr-header-blue);
}

.sr-header__brand img {
	display: block;
	width: 100%;
	height: auto;
}

.sr-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex: 1;
	min-width: 0;
	padding-top: 8px;
}

.sr-header__phone,
.sr-header__icon-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--sr-header-text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.sr-header__phone:hover,
.sr-header__icon-link:hover,
.sr-header__menu a:hover,
.sr-header__menu-button:hover {
	color: var(--sr-header-blue-light);
}

.sr-header__search {
	display: flex;
	align-items: center;
	width: 220px;
	height: 32px;
	border: 1px solid var(--sr-header-border);
	background: #f8fafc;
}

.sr-header__search input,
.sr-header__mobile-search input {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: var(--sr-header-text);
	font: inherit;
	outline: 0;
	padding: 8px 10px;
}

.sr-header__search input::placeholder,
.sr-header__mobile-search input::placeholder {
	color: #8293a0;
	font-size: 12px;
	font-style: italic;
}

.sr-header__search button {
	width: 34px;
	height: 30px;
	border: 0;
	border-left: 1px solid var(--sr-header-border);
	background: #ffffff;
	color: var(--sr-header-text);
	cursor: pointer;
	font-size: 12px;
}

.sr-header__cart {
	font-size: 15px;
}

.sr-header__wbenc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 142px;
	min-width: 142px;
	color: #111111;
	text-decoration: none;
}

.sr-header__wbenc img {
	display: block;
	width: 100%;
	height: auto;
}

.sr-header__nav {
	display: flex;
	justify-content: flex-end;
	margin-top: 4px;
}

.sr-header__menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sr-header__menu-item {
	position: relative;
	margin: 0;
	padding: 0;
}

.sr-header__menu a,
.sr-header__menu-button {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border: 0;
	background: none;
	color: var(--sr-header-text);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.sr-header__dropdown {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(210px, 1fr));
	gap: 2px 10px;
	min-width: 470px;
	padding: 16px;
	background: #ffffff;
	border: 1px solid var(--sr-header-border);
	box-shadow: 0 12px 24px rgba(15, 48, 72, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.sr-header__dropdown--compact {
	grid-template-columns: 1fr;
	min-width: 190px;
}

.sr-header__dropdown a {
	justify-content: flex-start;
	min-height: auto;
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: none;
}

.sr-header__menu-item:hover > .sr-header__dropdown,
.sr-header__menu-item.is-open > .sr-header__dropdown,
.sr-header__menu-button[aria-expanded="true"] + .sr-header__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sr-header__toggle {
	display: none;
	width: 42px;
	height: 36px;
	border: 1px solid var(--sr-header-border);
	background: #ffffff;
	padding: 8px;
	cursor: pointer;
}

.sr-header__toggle-line {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--sr-header-blue);
}

.sr-header__mobile {
	display: none;
	background: #ffffff;
	border-top: 1px solid var(--sr-header-border);
	padding: 12px 22px 18px;
}

.sr-header__mobile a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #edf2f5;
	color: var(--sr-header-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sr-header__mobile-search {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.sr-header__mobile-search input {
	border: 1px solid var(--sr-header-border);
}

.sr-header__mobile-search button {
	border: 0;
	background: var(--sr-header-blue);
	color: #ffffff;
	font-weight: 700;
	padding: 0 14px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.modal-open {
	overflow: hidden;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100050;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

.modal.show {
	display: block;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100040;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
}

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop.show {
	opacity: 0.5;
}

body.sr-auth-area {
	padding-top: 82px !important;
}

body.sr-auth-area .sr-header__inner {
	padding-bottom: 10px;
}

body.sr-auth-area .sr-header__brand-row {
	position: relative;
	align-items: center;
	justify-content: center;
	min-height: 62px;
}

body.sr-auth-area .sr-header__brand {
	width: 285px;
	min-width: 285px;
}

body.sr-auth-area .sr-header__actions {
	position: absolute;
	top: 50%;
	right: 3rem;
	flex: none;
	padding-top: 0;
	transform: translateY(-50%);
}

body.sr-auth-area .sr-header__phone,
body.sr-auth-area .sr-header__search,
body.sr-auth-area .sr-header__cart,
body.sr-auth-area .sr-header__wbenc,
body.sr-auth-area .sr-header__toggle,
body.sr-auth-area .sr-header__nav,
body.sr-auth-area .sr-header__mobile {
	display: none !important;
}

body.sr-auth-area .sr-header__icon-link:not(.sr-header__cart) {
	display: inline-flex !important;
	color: var(--sr-header-text);
	font-size: 13px;
	font-weight: 600;
}

body.sr-auth-area footer,
body.sr-auth-area #footer,
body.sr-auth-area #main-footer,
body.sr-auth-area .site-footer,
body.sr-auth-area .footer,
body.sr-auth-area .footer-widget,
body.sr-auth-area .et-l--footer {
	display: none !important;
}

body.sr-auth-area .entry-title,
body.sr-auth-area .page-title,
body.sr-auth-area .main_title,
body.sr-auth-area .et_pb_title_container,
body.sr-auth-area .woocommerce-products-header,
body.sr-auth-area .woocommerce-MyAccount-content > h1,
body.sr-auth-area .woocommerce-MyAccount-content > h2,
body.sr-auth-area .woocommerce-MyAccount-content > h3 {
	display: none !important;
}

@media (max-width: 1120px) {
	.sr-header__inner {
		max-width: 1400px;
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.sr-header__search {
		width: 205px;
	}

	.sr-header__wbenc {
		width: 145px;
		min-width: 145px;
	}

	.sr-header__menu a,
	.sr-header__menu-button {
		padding-left: 7px;
		padding-right: 7px;
		font-size: 13px;
	}
}

@media (max-width: 960px) {
	body.sr-rehab-header-active {
		padding-top: 86px !important;
	}

	body.sr-auth-area {
		padding-top: 76px !important;
	}

	.sr-header__inner {
		padding: 10px 18px;
	}

	.sr-header__brand {
		width: 260px;
		min-width: 260px;
	}

	.sr-header__search,
	.sr-header__icon-link,
	.sr-header__nav {
		display: none;
	}

	.sr-header__toggle {
		display: inline-block;
	}

	.sr-header__mobile:not([hidden]) {
		display: block;
	}

	body.sr-auth-area .sr-header__brand-row {
		min-height: 56px;
	}

	body.sr-auth-area .sr-header__brand {
		width: 230px;
		min-width: 230px;
	}

	body.sr-auth-area .sr-header__actions {
		right: 18px;
	}

	body.sr-auth-area .sr-header__icon-link:not(.sr-header__cart) {
		font-size: 12px;
	}
}

@media (max-width: 620px) {
	body.sr-rehab-header-active {
		padding-top: 76px !important;
	}

	body.sr-auth-area {
		padding-top: 68px !important;
	}

	.sr-header__inner {
		padding-left: 14px;
		padding-right: 14px;
	}

	.sr-header__brand-row {
		gap: 12px;
	}

	.sr-header__brand {
		width: 190px;
		min-width: 190px;
	}

	.sr-header__phone {
		display: none;
	}

	.sr-header__wbenc {
		width: 96px;
		min-width: 96px;
	}

	body.sr-auth-area .sr-header__brand {
		width: 185px;
		min-width: 185px;
	}

	body.sr-auth-area .sr-header__actions {
		right: 14px;
	}
}
.entry-content{
    position: relative !important;
    top: -40px !important;
}
