.bi-site-header-shell,
.bi-site-header-shell * {
	box-sizing: border-box;
}

.bi-site-header-shell {
	--bi-header-green: #0a8d61;
	--bi-header-green-dark: #076344;
	--bi-header-ink: #131714;
	--bi-header-muted: #68716c;
	--bi-header-line: #e4e8e5;
	position: sticky;
	top: 0;
	z-index: 9996;
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	font-family: inherit;
}

.admin-bar .bi-site-header-shell {
	top: 32px;
}

.bi-site-header-shell a {
	text-decoration: none !important;
}

.bi-site-header {
	position: relative;
	width: 100%;
	background: #fff;
	box-shadow: 0 1px 0 rgba(20, 33, 26, .08);
}

.bi-site-header__container {
	display: flex;
	align-items: center;
	width: min(1490px, calc(100% - 42px));
	margin: 0 auto;
}

.bi-site-header__main {
	background: #fff;
}

.bi-site-header__main .bi-site-header__container {
	min-height: 90px;
	transition: min-height .2s ease;
}

.bi-site-header-shell.is-condensed .bi-site-header__main .bi-site-header__container {
	min-height: 74px;
}

.bi-site-header__logo {
	flex: 0 0 auto;
	width: 185px;
	margin-right: 39px;
}

.bi-site-header__logo > a,
.bi-site-drawer__logo > a {
	display: flex;
	align-items: center;
	max-width: 100%;
}

.bi-site-header__logo img {
	display: block;
	width: auto;
	max-width: 185px;
	height: auto;
	max-height: 52px;
}

.bi-site-wordmark {
	display: flex !important;
	align-items: center;
	gap: 8px;
	color: var(--bi-header-ink) !important;
}

.bi-site-wordmark > span {
	display: grid;
	grid-template-columns: auto auto;
	line-height: .92;
}

.bi-site-wordmark strong,
.bi-site-wordmark b {
	font-size: 21px;
	font-style: italic;
	font-weight: 900;
	letter-spacing: -.06em;
}

.bi-site-wordmark b {
	color: var(--bi-header-green);
}

.bi-site-wordmark small {
	grid-column: 1 / -1;
	margin-top: 4px;
	font-size: 6px;
	font-weight: 800;
	letter-spacing: .17em;
}

.bi-site-wordmark > i {
	position: relative;
	display: block;
	width: 37px;
	height: 31px;
	background: var(--bi-header-green);
	clip-path: polygon(0 100%, 28% 35%, 44% 61%, 65% 8%, 100% 100%);
}

.bi-site-header__desktop-nav {
	min-width: 0;
	flex: 1;
	align-self: stretch;
}

.bi-site-menu {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.bi-site-menu--desktop {
	display: flex;
	align-items: stretch;
	height: 100%;
}

.bi-site-menu--desktop > li {
	position: relative;
	display: flex;
	align-items: stretch;
	margin: 0 !important;
}

.bi-site-menu--desktop > li > a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 clamp(10px, 1vw, 18px);
	color: var(--bi-header-ink) !important;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .01em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.bi-site-menu--desktop > li > a::after {
	position: absolute;
	right: 14px;
	bottom: 0;
	left: 14px;
	height: 3px;
	background: var(--bi-header-green);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.bi-site-menu--desktop > li:hover > a::after,
.bi-site-menu--desktop > li:focus-within > a::after,
.bi-site-menu--desktop > li.current-menu-item > a::after,
.bi-site-menu--desktop > li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.bi-site-menu--desktop .menu-item-has-children > a {
	padding-right: 29px;
}

.bi-site-menu--desktop .menu-item-has-children > a::before {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.bi-site-menu--desktop .sub-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: repeat(2, minmax(190px, 1fr));
	width: max-content;
	min-width: 430px;
	margin: 0 !important;
	padding: 13px !important;
	visibility: hidden;
	background: #fff;
	border: 1px solid var(--bi-header-line);
	border-top: 3px solid var(--bi-header-green);
	border-radius: 0 0 10px 10px;
	box-shadow: 0 20px 45px rgba(13, 31, 22, .14);
	list-style: none !important;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .17s ease, transform .17s ease, visibility .17s;
}

.bi-site-menu--desktop > li:nth-last-child(-n+2) > .sub-menu {
	right: 0;
	left: auto;
}

.bi-site-menu--desktop li:hover > .sub-menu,
.bi-site-menu--desktop li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.bi-site-menu--desktop .sub-menu li {
	position: relative;
	margin: 0 !important;
	list-style: none !important;
}

.bi-site-menu--desktop .sub-menu a {
	display: block;
	padding: 11px 13px;
	border-radius: 6px;
	color: #222824 !important;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.bi-site-menu--desktop .sub-menu a:hover,
.bi-site-menu--desktop .sub-menu a:focus-visible {
	background: #edf7f2;
	color: var(--bi-header-green-dark) !important;
}

.bi-site-menu--desktop .sub-menu .sub-menu {
	position: static;
	display: block;
	width: auto;
	min-width: 0;
	padding: 0 0 6px 12px !important;
	visibility: visible;
	border: 0;
	box-shadow: none;
	opacity: 1;
	transform: none;
}

.bi-site-menu--desktop .sub-menu .sub-menu a {
	padding: 7px 12px;
	color: var(--bi-header-muted) !important;
	font-size: 11px;
}

.bi-site-header__actions {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-left: 18px;
}

.bi-site-header__desktop-social,
.bi-site-header__search-button {
	position: relative;
	display: grid;
	place-items: center;
	width: 39px;
	height: 39px;
	margin: 0;
	padding: 0;
	background: #f2f5f3;
	border: 0;
	border-radius: 50%;
	color: var(--bi-header-ink) !important;
	cursor: pointer;
}

.bi-site-header__desktop-facebook {
	font: 900 18px/1 Arial, sans-serif;
}

.bi-site-header__desktop-instagram svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.bi-site-header__desktop-instagram svg circle:last-child {
	fill: currentColor;
	stroke: none;
}

.bi-site-header__search-button::before {
	width: 13px;
	height: 13px;
	border: 2px solid currentColor;
	border-radius: 50%;
	content: "";
}

.bi-site-header__search-button::after {
	position: absolute;
	width: 7px;
	height: 2px;
	margin: 13px 0 0 13px;
	background: currentColor;
	content: "";
	transform: rotate(45deg);
}

.bi-site-header__desktop-social:hover,
.bi-site-header__search-button:hover {
	background: var(--bi-header-green);
	color: #fff !important;
}

.bi-site-header__search {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 15;
	padding: 23px 20px;
	background: #fff;
	border-top: 1px solid var(--bi-header-line);
	box-shadow: 0 20px 35px rgba(19, 31, 24, .12);
}

.bi-site-header__search[hidden] {
	display: none;
}

.bi-site-header__search form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 8px;
	width: min(920px, 100%);
	margin: 0 auto;
}

.bi-site-header__search input {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 0 16px;
	background: #f5f7f6;
	border: 1px solid #dce3df;
	border-radius: 7px;
	color: var(--bi-header-ink);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	outline: 0;
}

.bi-site-header__search input:focus {
	border-color: var(--bi-header-green);
	box-shadow: 0 0 0 3px rgba(10, 141, 97, .12);
}

.bi-site-header__search form > button[type="submit"] {
	min-width: 115px;
	height: 48px;
	margin: 0;
	padding: 0 21px;
	background: var(--bi-header-green);
	border: 0;
	border-radius: 7px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.bi-site-header__search-close {
	position: relative;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.bi-site-header__search-close::before,
.bi-site-header__search-close::after,
.bi-site-drawer header > button::before,
.bi-site-drawer header > button::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%) rotate(45deg);
}

.bi-site-header__search-close::after,
.bi-site-drawer header > button::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.bi-site-header__menu-button {
	display: none;
}

.bi-site-drawer {
	--bi-header-green: #0a8d61;
	--bi-header-green-dark: #076344;
	--bi-header-ink: #131714;
	--bi-header-muted: #68716c;
	--bi-header-line: #29312d;
	position: fixed;
	inset: 0;
	z-index: 100000;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease, visibility .25s;
}

.bi-site-drawer,
.bi-site-drawer * {
	box-sizing: border-box;
}

.bi-site-drawer.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.bi-site-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: rgba(7, 15, 11, .64);
	border: 0;
	backdrop-filter: blur(3px);
}

.bi-site-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(430px, calc(100% - 35px));
	height: 100%;
	overflow-y: auto;
	background: #fff;
	box-shadow: -18px 0 55px rgba(0, 0, 0, .22);
	transform: translateX(103%);
	transition: transform .28s cubic-bezier(.2, .75, .3, 1);
	overscroll-behavior: contain;
}

.bi-site-drawer.is-open .bi-site-drawer__panel {
	transform: translateX(0);
}

.bi-site-drawer header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 13px 18px 13px 21px;
	border-bottom: 1px solid var(--bi-header-line);
}

.bi-site-drawer__logo {
	max-width: 180px;
}

.bi-site-drawer__logo img {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
	max-height: 48px;
}

.bi-site-drawer header > button {
	position: relative;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	background: #f0f4f2;
	border: 0;
	border-radius: 50%;
	color: var(--bi-header-ink);
	cursor: pointer;
}

.bi-site-drawer__nav {
	padding: 13px 20px 4px;
}

.bi-site-menu--mobile li {
	position: relative;
	margin: 0 !important;
	border-bottom: 1px solid var(--bi-header-line);
	list-style: none !important;
}

.bi-site-menu--mobile li:last-child {
	border-bottom: 0;
}

.bi-site-menu--mobile a {
	display: block;
	padding: 15px 45px 15px 3px;
	color: var(--bi-header-ink) !important;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.bi-site-menu--mobile > li.current-menu-item > a,
.bi-site-menu--mobile > li.current-menu-ancestor > a {
	color: var(--bi-header-green) !important;
}

.bi-site-menu__submenu-toggle {
	position: absolute;
	top: 7px;
	right: 0;
	width: 39px;
	height: 39px;
	margin: 0;
	padding: 0;
	background: #f1f6f3;
	border: 0;
	border-radius: 7px;
	cursor: pointer;
}

.bi-site-menu__submenu-toggle::before {
	position: absolute;
	top: 14px;
	left: 15px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--bi-header-green-dark);
	border-bottom: 2px solid var(--bi-header-green-dark);
	content: "";
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.bi-site-menu--mobile li.is-submenu-open > .bi-site-menu__submenu-toggle::before {
	top: 17px;
	transform: rotate(225deg);
}

.bi-site-menu--mobile .sub-menu {
	display: none;
	margin: 0 0 10px !important;
	padding: 6px 9px !important;
	background: #f2f7f4;
	border-radius: 8px;
	list-style: none !important;
}

.bi-site-menu--mobile li.is-submenu-open > .sub-menu {
	display: block;
}

.bi-site-menu--mobile .sub-menu li {
	border-bottom-color: #dfe8e3;
}

.bi-site-menu--mobile .sub-menu a {
	padding: 11px 35px 11px 10px;
	font-size: 13px;
	font-weight: 700;
}

.bi-site-menu--mobile .sub-menu .sub-menu {
	margin-bottom: 6px !important;
	background: #fff;
}

.bi-site-menu--mobile .sub-menu .sub-menu a {
	font-size: 12px;
}

.bi-site-drawer footer {
	margin-top: auto;
	padding: 21px;
	background: #f4f6f5;
}

.bi-site-drawer__socials {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.bi-site-drawer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 9px 11px;
	background: #16231d;
	border: 1px solid #26372f;
	border-radius: 9px;
	color: #fff !important;
	font-size: 12px;
	font-weight: 800;
}

.bi-site-drawer__socials strong {
	font: 900 18px/1 Arial, sans-serif;
}

.bi-site-drawer__socials svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.bi-site-drawer__socials svg circle:last-child {
	fill: currentColor;
	stroke: none;
}

.bi-site-header__empty {
	margin: auto 0;
	color: #9b2727;
	font-size: 12px;
	font-weight: 700;
}

body.bi-site-menu-open {
	overflow: hidden;
}

@media (max-width: 1250px) {
	.bi-site-header__logo {
		width: 160px;
		margin-right: 20px;
	}

	.bi-site-header__logo img {
		max-width: 160px;
	}

	.bi-site-menu--desktop > li > a {
		padding-right: 10px;
		padding-left: 10px;
		font-size: 11px;
	}

	.bi-site-menu--desktop .menu-item-has-children > a {
		padding-right: 25px;
	}

	.bi-site-menu--desktop .menu-item-has-children > a::before {
		right: 10px;
	}
}

@media (max-width: 1040px) {
	.bi-site-header__desktop-nav,
	.bi-site-header__desktop-social {
		display: none;
	}

	.bi-site-header__container {
		width: calc(100% - 28px);
	}

	.bi-site-header__main .bi-site-header__container,
	.bi-site-header-shell.is-condensed .bi-site-header__main .bi-site-header__container {
		justify-content: space-between;
		min-height: 66px;
	}

	.bi-site-header__menu-button {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		width: 41px;
		height: 41px;
		margin: 0;
		padding: 0;
		background: #f1f5f3;
		border: 0;
		border-radius: 50%;
		cursor: pointer;
	}

	.bi-site-header__menu-button span {
		display: block;
		width: 17px;
		height: 2px;
		background: var(--bi-header-ink);
		border-radius: 2px;
	}

	.bi-site-header__logo {
		position: absolute;
		left: 50%;
		width: auto;
		margin: 0;
		transform: translateX(-50%);
	}

	.bi-site-header__logo img {
		max-width: 166px;
		max-height: 45px;
	}

	.bi-site-header__actions {
		margin-left: auto;
	}

	.bi-site-header__search-button {
		width: 41px;
		height: 41px;
	}
}

@media (max-width: 600px) {
	.bi-site-header__main .bi-site-header__container,
	.bi-site-header-shell.is-condensed .bi-site-header__main .bi-site-header__container {
		min-height: 61px;
	}

	.bi-site-header__menu-button,
	.bi-site-header__search-button {
		width: 38px;
		height: 38px;
	}

	.bi-site-header__logo img {
		max-width: 145px;
		max-height: 40px;
	}

	.bi-site-wordmark strong,
	.bi-site-wordmark b {
		font-size: 18px;
	}

	.bi-site-wordmark > i {
		width: 31px;
		height: 27px;
	}

	.bi-site-header__search {
		padding: 14px;
	}

	.bi-site-header__search form {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.bi-site-header__search form > button[type="submit"] {
		min-width: 76px;
		padding: 0 13px;
	}

	.bi-site-header__search-close {
		display: none;
	}

	.bi-site-drawer__panel {
		width: calc(100% - 22px);
	}
}

@media (max-width: 782px) {
	.admin-bar .bi-site-header-shell {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bi-site-header-shell *,
	.bi-site-drawer,
	.bi-site-drawer__panel {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

/* Czarny wariant Beskidinfo, szerokość zgodna z układem portalu. */
.bi-site-header-shell {
	--bi-header-line: #29312d;
}

.bi-site-header,
.bi-site-header__main {
	background: #080a09;
}

.bi-site-header {
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.bi-site-header__container {
	width: min(1200px, calc(100% - 42px));
}

.bi-site-header__logo {
	display: flex;
	align-self: stretch;
	align-items: center;
	justify-content: center;
	width: 158px;
	margin-right: 38px;
}

.bi-site-header__logo > a {
	justify-content: center;
	width: 100%;
}

.bi-site-header__logo img {
	width: 154px;
	max-width: 154px;
	transform: translateY(-2px);
}

.bi-site-menu--desktop > li > a {
	color: rgba(255, 255, 255, .92) !important;
}

.bi-site-menu--desktop .sub-menu {
	background: #111512;
	border-color: #29312d;
	border-top-color: var(--bi-header-green);
	box-shadow: 0 20px 45px rgba(0, 0, 0, .36);
}

.bi-site-menu--desktop .sub-menu a {
	color: rgba(255, 255, 255, .9) !important;
}

.bi-site-menu--desktop .sub-menu a:hover,
.bi-site-menu--desktop .sub-menu a:focus-visible {
	background: #163d30;
	color: #fff !important;
}

.bi-site-menu--desktop .sub-menu .sub-menu a {
	color: #aeb8b2 !important;
}

.bi-site-header__desktop-social,
.bi-site-header__search-button {
	background: #171b18;
	color: #fff !important;
}

.bi-site-header__search {
	background: #0d100e;
	border-top-color: #252c28;
	box-shadow: 0 20px 35px rgba(0, 0, 0, .32);
}

.bi-site-header__search input {
	background: #1a1f1c;
	border-color: #343d38;
	color: #fff;
}

.bi-site-header__search-close {
	color: #fff;
}

.bi-site-drawer__panel {
	background: #0a0d0b;
}

.bi-site-drawer header {
	border-bottom-color: #252c28;
}

.bi-site-drawer header > button {
	background: #1a211d;
	color: #fff;
}

.bi-site-menu--mobile li {
	border-bottom-color: #262e29;
}

.bi-site-menu--mobile a {
	color: rgba(255, 255, 255, .94) !important;
}

.bi-site-menu__submenu-toggle {
	background: #18211c;
}

.bi-site-menu--mobile .sub-menu {
	background: #121814;
}

.bi-site-menu--mobile .sub-menu li {
	border-bottom-color: #28332d;
}

.bi-site-menu--mobile .sub-menu .sub-menu {
	background: #0d110f;
}

.bi-site-drawer footer {
	background: #050706;
}

.bi-site-drawer footer a {
	color: #a6b1ab !important;
}

.bi-site-drawer footer .bi-site-drawer__socials a {
	color: #fff !important;
}

@media (max-width: 1040px) {
	.tdc-header-template-wrap .tdc-row:has(.bi-site-header-shell),
	.tdc-header-template-wrap .td-pb-row:has(.bi-site-header-shell),
	.tdc-header-template-wrap .td-pb-span12:has(.bi-site-header-shell),
	.tdc-header-template-wrap .td_block_wrap:has(.bi-site-header-shell),
	.tdc-row:has(.bi-site-header-shell),
	.tdc-row-composer:has(.bi-site-header-shell),
	.vc_row:has(.bi-site-header-shell),
	.td-pb-row:has(.bi-site-header-shell),
	.tdc-column:has(.bi-site-header-shell),
	.vc_column_container:has(.bi-site-header-shell),
	.vc_column-inner:has(.bi-site-header-shell),
	.wpb_wrapper:has(.bi-site-header-shell),
	.td-pb-span12:has(.bi-site-header-shell),
	.td_block_wrap:has(.bi-site-header-shell),
	.tdb-block-inner:has(.bi-site-header-shell) {
		height: auto !important;
		min-height: 0 !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		background: #080a09 !important;
	}

	.bi-site-header-shell {
		min-height: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
		background: #080a09;
		line-height: normal;
	}

	.bi-site-header,
	.bi-site-header__main {
		min-height: 0;
		margin: 0;
		padding: 0;
	}

	.bi-site-header__container {
		width: calc(100% - 28px);
	}

	.bi-site-header__main .bi-site-header__container,
	.bi-site-header-shell.is-condensed .bi-site-header__main .bi-site-header__container {
		min-height: 76px;
	}

	.bi-site-header__logo {
		top: 50%;
		left: 50%;
		width: 146px;
		margin: 0;
		align-self: auto;
		transform: translate(-50%, -50%);
	}

	.bi-site-header__logo > a {
		justify-content: center;
		width: 100%;
	}

	.bi-site-header__logo img {
		width: 146px;
		max-width: 146px;
		max-height: 41px;
		transform: none;
	}

	.bi-site-header__menu-button {
		width: 44px;
		height: 44px;
		background: #171d19;
	}

	.bi-site-header__menu-button span {
		width: 19px;
		background: #fff;
	}

	.bi-site-header__search-button {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 600px) {
	.bi-site-header__main .bi-site-header__container,
	.bi-site-header-shell.is-condensed .bi-site-header__main .bi-site-header__container {
		min-height: 72px;
	}

	.bi-site-header__logo {
		width: 140px;
	}

	.bi-site-header__logo img {
		width: 140px;
		max-width: 140px;
		max-height: 39px;
	}

	.bi-site-header__menu-button,
	.bi-site-header__search-button {
		width: 43px;
		height: 43px;
	}

	.bi-site-header__search {
		padding: 14px;
	}

	.bi-site-header__search form {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0;
		max-width: 100%;
		overflow: hidden;
		background: #1a1f1c;
		border: 1px solid var(--bi-header-green);
		border-radius: 9px;
	}

	.bi-site-header__search input {
		height: 52px;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	.bi-site-header__search input:focus {
		box-shadow: inset 0 0 0 2px rgba(10, 141, 97, .2);
	}

	.bi-site-header__search form > button[type="submit"] {
		min-width: 88px;
		height: 52px;
		padding: 0 15px;
		border-radius: 0;
	}

	.bi-site-drawer__logo {
		width: 145px;
		max-width: 145px;
	}

	.bi-site-drawer__logo img {
		width: 145px;
		max-width: 145px;
	}
}
