@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

.location-item.active {
	border-color: #00A88F;
	background: #CCEEE9;
}

#filter.loading {
	pointer-events: none;
	filter: grayscale(0.5);
}

#filter.loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.1);
	z-index: 100;
}

#filter.loading::before {
	content: 'Loading...';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
}

.green-btn {
	display: flex;
	height: 58px;
	padding: 8px 32px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	align-self: stretch;
	color: #FFF;
	text-align: center;
	font-family: Aktiv Grotesk;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.38;
	border-radius: 100px;
	background: #00A88F;
	cursor: pointer;
}

.overflow-hidden {
	overflow: hidden;
}

.menu-list-product-cats {
	list-style: none;
	padding: 0;
	overflow: hidden;
}

.menu-list-product-cats ul {
	list-style: none;
}

.menu-list-product-cats li {
	position: relative;
}

:where(.menu-list-product-cats, .all-products) input {
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: 999;
}

:where(.menu-list-product-cats, .all-products) input~label {
	padding-left: 32px;
	position: relative;
	display: table;
	margin-bottom: 16px;
	cursor: pointer;
}

.menu-list-product-cats li.has-child:not(.has-single-child)>label,
.all-products label {
	margin-bottom: 8px;
}

:where(.menu-list-product-cats, .all-products) input~label::before {
	position: absolute;
	left: 0;
	top: 0px;
	content: '';
	width: 24px;
	height: 24px;
	display: inline-block;
	background-image: url("../img/checkbox.svg");
	cursor: pointer;
}

:where(.menu-list-product-cats, .all-products) input~label::after {
	position: absolute;
	left: 0;
	top: 0px;
	content: '';
	width: 24px;
	height: 24px;
	display: inline-block;
	background-image: url("../img/checkbox-checked.svg");
	cursor: pointer;
	opacity: 0;
	z-index: 3;
}

:where(.menu-list-product-cats, .all-products) input:checked~label::after {
	background-image: url("../img/checkbox-checked.svg");
	opacity: 1;
}

.checkbox-group input~label .store-icon {
	display: inline-block;
	transform: translateY(-4px);
	margin-right: 2px;
}

.menu-list-product-cats input.parent-checkbox+label,
.all-products label,
.menu-list-product-cats>li:not(.has-child)>label {
	font-weight: 700;
}

.checkbox-group input~label::after {
	position: absolute;
	left: 0;
	top: -3px;
	content: '';
	width: 24px;
	height: 24px;
	display: inline-block;
	background-image: url("../img/inp-marked-green.svg");
	opacity: 0;
	z-index: 3;
}

.checkbox-group input:checked~label::after {
	opacity: 1;
}

#site-products-block .sep {
	margin-bottom: 16px;
	border-bottom: 1px solid #F2F2F2;
	position: relative;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
}

.menu-list-product-cats .cat-dropdown-toggle {
	top: 2px;
	position: absolute;
	right: 20px;
	background: none;
	z-index: 99999;
}

.menu-list-product-cats li.closed .cat-dropdown-toggle {
	transform: rotate(180deg);
}

.menu-list-product-cats li.has-single-child .cat-dropdown-toggle,
.menu-list-product-cats li.has-single-child .sep,
.menu-list-product-cats li.has-single-child ul.children {
	display: none;
}

.menu-list-product-cats li.closed ul.children {
	display: none;
}

#site-products-block {
	overflow: auto;
}

#site-products-block .apply-btn {
	position: fixed;
	z-index: 1000;
}

.output-chosen-data {
	color: #000;
}

.output-chosen-data[data-json^="{"]+.filter-option,
.output-chosen-data[data-term-ids-json^="["]+.filter-option {
	display: none;
}

.output-chosen-data span {
	font-weight: bold;
}

.filter-dropdown-widget {
	padding: 18px 0 16px;
}

.filter-dropdown-widget__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.filter-dropdown-widget__name {
	font-weight: 600;
}

.filter-dropdown-widget__chosen-values {
	width: 100%;
	font-size: 14px;
	margin-top: -4px;
}

.filter-dropdown-widget__values {
	display: none;
	padding-bottom: 10px;
}

.filter-dropdown-widget__values label {
	font-size: 15px;
	font-weight: 600;
	padding-left: 16px;
	padding-bottom: 3px;
	cursor: pointer;
}

.filter-dropdown-widget__values input {
	width: 25px;
	height: 25px;
	color: #000;
	-webkit-appearance: unset;
	-moz-appearance: unset;
	appearance: unset;
	border: 1px solid #ddd;
	position: relative;
}

.filter-dropdown-widget__values input::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25px;
	height: 25px;
	background: url('../img/checked.webp') center no-repeat;
	background-size: 20px;
	opacity: 0;
}

.filter-dropdown-widget__values input:checked::after {
	opacity: 1;
}

.filter-dropdown-widget__value-wrap {
	display: flex;
	align-items: center;
	padding-top: 10px;
}

.filter-dropdown-widget__toggler-arr {
	transition: transform 0.3s;
}

.filter-dropdown-widget__toggler-arr svg {
	display: block;
}

.filter-dropdown-widget.opened .filter-dropdown-widget__toggler-arr {
	transform: rotate(90deg);
}

.main-section_gr.dropdown-section {
	border-top: 1px solid #D7D7D7;
	padding: 5px 0;
	min-height: 80px;
}

#site-locations-block .apply-btn {
	position: fixed;
	z-index: 1000;
	background-color: #fff;
}

.site-locations-container {
	position: relative;
	z-index: 4;
	padding-bottom: 80px;
}

.main_menu_gr .bottom-menu-icon-wrap {
	display: inline-grid;
	grid-template-columns: auto;
	grid-template-rows: auto;
}

.main_menu_gr .bottom-menu-icon-wrap img {
	grid-row: 1;
	grid-column: 1;
	position: relative;
}

.main_menu_gr .bottom-menu-icon-wrap img:first-child,
.main_menu_gr .bottom-menu-icon-wrap svg:first-child {
	z-index: 2;
	opacity: 0;
}


.main_menu_gr .bottom-menu-icon-wrap img:last-child,
.main_menu_gr .bottom-menu-icon-wrap svg:last-child {
	z-index: 4;
}

.main_menu_gr ul li.current-menu-item a img:last-child .main_menu_gr ul li.current-menu-item a:hover img:last-child {
	opacity: 1;
}

.main_menu_gr ul li.current-menu-item a,
.main_menu_gr ul li.current-menu-item a:hover {
	color: #00a88f;
}

.main_menu_gr ul li.current-menu-item a img:first-child,
.main_menu_gr ul li.current-menu-item a:hover img:first-child {
	opacity: 1;
}


.main_menu_gr ul li.current-menu-item a img:last-child,
.main_menu_gr ul li.current-menu-item a:hover img:last-child {
	opacity: 0;
}

.main_menu_gr ul li a:hover img:first-child {
	opacity: 1;
}

.main_menu_gr ul li a:hover img:last-child {
	opacity: 0;
}


.main_menu_gr ul li.current-menu-item a img:last-child,
.main_menu_gr ul li.current-menu-item a:hover img:last-child {
	opacity: 0;
}

@media(max-width: 767px) {
	.products-cat-container .container {
		max-width: 365px;
	}

	.products-cat-container .list-cats {
		width: 100%;
		flex-basis: 100%;
	}
}

.list-reset {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-cats-wrap {
	margin-top: 20px;
	padding-bottom: 100px;
}

.product-cats-wrap li:not(:last-child) {
	margin-bottom: 8px;
}

.product-link__arr {
	margin-left: auto;
	transition: transform 0.3s;
}

.product-cats-wrap a {
	display: flex;
	align-items: center;
	padding: 16px 12px;
	background-color: #fff;
	color: #000;
}

.product-cats-wrap a:hover .product-link__arr {
	transform: translateX(3px);
}

.product-link__title {
	font-weight: 600;
	line-height: 1.38;
	letter-spacing: 0;
}

.product-link__default-icon {
	width: 24px;
	height: 24px;
	background: #E3E3E3;
}

.send-details-to-email {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 335px;
	padding: 30px 0 10px;
	opacity: 0;
	transition: opacity 0.5s;
}

.send-details-to-email.opened {
	opacity: 1;
}

.btn_h-modal {
	width: auto;
}

.send-details-to-email label {
	display: block;
	margin-bottom: 3px;
}

.send-details-to-email .fields-wrap {
	max-width: 90%;
	margin: 0 auto;
}

.send-details-to-email .email-input {
	border: 1px solid #D7D7D7;
	padding: 5px 5px 5px 15px;
	margin-bottom: 10px;
	width: 100%;
	display: inline-block;
}

.send-details-to-email .send-wrap {
	display: flex;
	justify-content: center;
	position: relative;
}

.reset-btn {
	border: none;
	outline: none;
	padding: 0;
	background-color: transparent;
}

.send-details-to-email .close-dialog {
	position: absolute;
	right: 5px;
	top: 5px;
	cursor: pointer;
}

.send-details-to-email .loading-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 70px;
	display: none;
}

.send-details-to-email.loading .loading-icon {
	display: initial;
}

.brochures_wrap {
	position: relative;
}

.preview-brochure {
	position: fixed;
	left: 50%;
	top: 58px;
	width: 100vw;
	z-index: 9;
	transform: translateX(-50%);
	transition: opacity 0.8s;
	display: none;
	border-top: 14px solid #4f4f4f;
	border-bottom: 14px solid #4f4f4f;
	border-right: 12.5px solid #4f4f4f;
	border-left: 12.5px solid #4f4f4f;
}

.preview-brochure .pdf-wrap {
	position: absolute;
	width: 100%;
	height: calc(100vh - 146px);
	top: 0;
}

.preview-brochure .pdfjs-viewer {
	z-index: 100;
	position: relative;
}

.page-template-page-brochures.brochure-preview-opened {
	overflow: hidden;
}

.page-template-page-brochures.brochure-preview-opened .main-header_gr {

	position: fixed;
	z-index: 10;
	top: 0;
	width: 100%;
}

.preview-brochure .pdf-wrap::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 40;
}

.preview-brochure .close-brochure {
	position: absolute;
	right: 20px;
	top: 20px;
	background-color: transparent;
	cursor: pointer;
	padding: 5px;
	z-index: 100;

}

.preview-brochure .close-brochure svg {
	display: block;
}

.preview-brochure .pdf-wrap::after {
	content: 'Loading...';
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.preview-brochure .pdf-wrap.loaded::before,
.preview-brochure .pdf-wrap.loaded::after {
	display: none;
}

body.brochure-preview-opened .preview-brochure {
	display: block;
	animation-name: my-fade-in;
	animation-duration: 0.8s;
}

.preview-brochure .pdf-doc {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s;
}

.preview-brochure .pdf-doc.show {
	opacity: 1;
}

.open-menu-brochures {
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	right: calc(50% - 160px);
	bottom: 100px;
	z-index: 30;
	background-color: #00a88f;
	border-radius: 50%;
	width: 52px;
	height: 52px;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

@keyframes my-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

body.brochure-preview-opened .open-menu-brochures {
	display: flex;
	animation-name: my-fade-in;
	animation-duration: 1s;
}

.share-brochure-dialog {
	position: fixed;
	width: 375px;
	left: 50%;
	top: 100%;
	border-radius: 32px 32px 0 0;
	transform: translate(-50%, 0);
	background-color: #fff;
	padding: 22px 16px 20px;
	transition: transform 0.4s, opacity 0.4s;
	opacity: 1;
}

body.share-dialog-opened .share-brochure-dialog {
	transform: translate(-50%, -100%);
	opacity: 1;
}

.share-brochure-dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.4);
}

.share-brochure-dialog__close-btn {
	position: absolute;
	top: 18px;
	right: 19px;
	cursor: pointer;
}

.share-brochure-dialog__wrap {
	display: flex;
	gap: 52px;
	justify-content: center;
	margin-top: 20px;
}

.share-btn {
	position: relative;
	text-align: center;
}

.share-btn span {
	font-size: 14px;
	line-height: 1.43;
	color: #000;
}

.share-btn__icon-wrap {
	background-color: #00A88F;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: 0 auto 7px;
}

.share-brochure-dialog__header {
	font: 700 16px / 1.375 'Aktiv Grotesk', sans-serif;
	color: #000;
	text-align: center;
	max-width: 257;
	margin: 0 auto;
}

.share-brochure-dialog__header span {
	display: block;
}

.page-template-page-brochures .back_link {
	display: none;
}

.page-template-page-brochures.brochure-preview-opened .back_link {
	display: initial;
}

.show-wellcome-screen header,
.show-wellcome-screen main {
	display: none;
}

.wellcome-screen {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*	background-repeat: repeat;*/
	background-size: cover;
	background-position: center;
	animation-delay: 2.5s;
	animation-duration: 1s;
	display: none;
	background-color: green;
}

.show-wellcome-screen .wellcome-screen {
	display: block;
}

.wellcome-screen__container {
	max-width: 320px;
	margin: 0 auto;
	position: relative;
	height: 100%;
}

.wellcome-screen__first,
.wellcome-screen__second {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.wellcome-screen__first {
	animation-duration: 1.5s;
}

.wellcome-screen__second {
	opacity: 0;
}

.wellcom-screen__the {
	margin-bottom: 5px;
}

.wellcom-screen__green {
	display: flex;
	/*	gap: 12px;*/
	margin-bottom: 5px;
}

.wellcom-screen__green>div:not(:first-child) {
	margin-left: 12px;
}


.wellcom-screen__green>div:nth-child(2) {
	margin-left: 15px;
}

.wellcom-screen__green>div:nth-child(3) {
	margin-left: 8px;
}

.wellcome-screen__app {
	margin-bottom: 27px;
}

.wellcom-screen__capral-product svg {
	animation-delay: 4.8s;
}

.location__state-items {
	/* font-size: 14px; */
}

.location__state-item h4 {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	margin-bottom: 3px;
}

.location__state-item ul {
	list-style: none;
}

.location__state-item {
	margin-bottom: 10px;
}

.location {
	padding-top: 10px;
}

.back_link,
.reset {
	cursor: pointer;
}

.filter_sort .row {
	justify-content: center;
}

.popup-container .close-menu-btn {
	position: absolute;
	right: 20px;
	padding: 5px;
	top: -1px;
	cursor: pointer;
}

.or-divider {
	position: relative;
	font: 600 16px / 1.375 Roboto, sans-serif;
	z-index: 1;
	display: flex;
	justify-content: center;
	margin-block: 16px;
	overflow: hidden;
}

.or-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -39px;
	width: 50%;
	height: 1px;
	background: #D1D3D9;
}

.or-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(50% + 39px);
	width: 50%;
	height: 1px;
	background: #D1D3D9;
}

.product-image {
	max-width: 160px;
	display: block;
	margin: 25px auto;
}

.generated-pdf-wrap {
	position: absolute;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	-webkit-overflow-scrolling: touch !important;
	overflow-y: scroll;
}

.generated-pdf-wrap iframe {
	width: 100%;
	height: 100vh;
	touch-action: pan-y;
	/*overflow: hidden; */
}

.generated-pdf {
	position: relative;
	overflow-y: hidden;
}

.open-menu-brochures.visible {
	display: flex;
}

body .pdfjs-viewer {
	background: transparent;
}
