@charset "UTF-8";

:root {
	--f-spinner-width: 36px;
	--f-spinner-height: 36px;
	--f-spinner-color-1: rgba(0, 0, 0, .1);
	--f-spinner-color-2: rgba(17, 24, 28, .8);
	--f-spinner-stroke: 2.75;
}

.f-spinner {
	margin: auto;
	padding: 0;
	width: var(--f-spinner-width);
	height: var(--f-spinner-height);
}

.f-spinner svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
	-webkit-animation: f-spinner-rotate 2s linear infinite;
	animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
	stroke-width: var(--f-spinner-stroke);
	fill: none;
}

.f-spinner svg *:first-child {
	stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
	stroke: var(--f-spinner-color-2);
	-webkit-animation: f-spinner-dash 2s ease-in-out infinite;
	animation: f-spinner-dash 2s ease-in-out infinite;
}

.f-throwOutUp {
	-webkit-animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp;
	animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
	-webkit-animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown;
	animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown;
}

.f-zoomInUp {
	-webkit-animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp;
	animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp;
}

.f-zoomOutDown {
	-webkit-animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown;
	animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown;
}

.f-fadeIn {
	-webkit-animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
	animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
	z-index: 2;
}

.f-fadeOut {
	-webkit-animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
	animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
	z-index: 1;
}

.f-fadeFastIn {
	-webkit-animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
	animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
	z-index: 2;
}

.f-fadeFastOut {
	-webkit-animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
	animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
	z-index: 2;
}

.f-fadeSlowIn {
	-webkit-animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
	animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
	z-index: 2;
}

.f-fadeSlowOut {
	-webkit-animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
	animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
	z-index: 1;
}

.f-crossfadeIn {
	-webkit-animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
	animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
	z-index: 2;
}

.f-crossfadeOut {
	-webkit-animation: calc(var(--f-transition-duration, .2s)*.5) linear .1s both f-crossfadeOut;
	animation: calc(var(--f-transition-duration, .2s)*.5) linear .1s both f-crossfadeOut;
	z-index: 1;
}

.f-slideIn.from-next {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev;
}

.f-classicIn.from-next {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
	z-index: 2;
}

.f-classicIn.from-prev {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
	z-index: 2;
}

.f-classicOut.to-next {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
	z-index: 1;
}

.f-classicOut.to-prev {
	-webkit-animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
	animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
	z-index: 1;
}

:root {
	--f-button-width: 40px;
	--f-button-height: 40px;
	--f-button-border: 0;
	--f-button-border-radius: 0;
	--f-button-color: #374151;
	--f-button-bg: #f8f8f8;
	--f-button-hover-bg: #e0e0e0;
	--f-button-active-bg: #d0d0d0;
	--f-button-shadow: none;
	--f-button-transition: all .15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 20px;
	--f-button-svg-height: 20px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: none;
	--f-button-svg-disabled-opacity: .65;
}

.f-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	box-sizing: content-box;
	position: relative;
	margin: 0;
	padding: 0;
	width: var(--f-button-width);
	height: var(--f-button-height);
	border: var(--f-button-border);
	border-radius: var(--f-button-border-radius);
	color: var(--f-button-color);
	background: var(--f-button-bg);
	box-shadow: var(--f-button-shadow);
	pointer-events: all;
	cursor: pointer;
	-webkit-transition: var(--f-button-transition);
	transition: var(--f-button-transition);
}

.f-button:active:not([disabled]) {
	background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
	outline: none;
}

.f-button:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
	width: var(--f-button-svg-width);
	height: var(--f-button-svg-height);
	fill: var(--f-button-svg-fill);
	stroke: currentColor;
	stroke-width: var(--f-button-svg-stroke-width);
	stroke-linecap: round;
	stroke-linejoin: round;
	-webkit-transition: opacity .15s ease;
	transition: opacity .15s ease;
	-webkit-transform: var(--f-button-transform);
	-ms-transform: var(--f-button-transform);
	transform: var(--f-button-transform);
	filter: var(--f-button-svg-filter);
	pointer-events: none;
}

.f-button[disabled] {
	cursor: default;
}

.f-button[disabled] svg {
	opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
	position: absolute;
	z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
	left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
	right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
	left: auto;
	right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
	right: auto;
	left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
	top: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
	top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
	bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
	pointer-events: none;
}

html.with-fancybox {
	width: auto;
	overflow: visible;
	scroll-behavior: auto;
}

html.with-fancybox body {
	-ms-touch-action: none;
	touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
	width: auto;
	margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
	overflow: hidden !important;
	overscroll-behavior-y: none;
}

.fancybox__container {
	--fancybox-color: #dbdbdb;
	--fancybox-hover-color: #fff;
	--fancybox-bg: rgba(24, 24, 27, .98);
	--fancybox-slide-gap: 10px;
	--f-spinner-width: 50px;
	--f-spinner-height: 50px;
	--f-spinner-color-1: rgba(255, 255, 255, .1);
	--f-spinner-color-2: #bbb;
	--f-spinner-stroke: 3.65;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: #f8f8f8;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow: visible;
	z-index: var(--fancybox-zIndex, 1050);
	outline: none;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
	box-sizing: inherit;
}

.fancybox__container::backdrop {
	background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background: var(--fancybox-bg);
	opacity: var(--fancybox-opacity, 1);
	will-change: opacity;
}

.fancybox__carousel {
	position: relative;
	box-sizing: border-box;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-height: 0;
	z-index: 10;
	overflow-y: visible;
	overflow-x: clip;
}

.fancybox__viewport {
	width: 100%;
	height: 100%;
}

.fancybox__viewport.is-draggable {
	cursor: move;
	cursor: grab;
}

.fancybox__viewport.is-dragging {
	cursor: move;
	cursor: grabbing;
}

.fancybox__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	height: 100%;
}

.fancybox__slide {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 var(--fancybox-slide-gap) 0 0;
	padding: 4px;
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
	padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
	overflow: hidden;
}

.fancybox__slide.has-image {
	overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
	overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 0;
	flex: 0 0 0;
	margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
	display: block;
}

.fancybox__content {
	-ms-flex-item-align: center;
	align-self: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	margin: 0;
	padding: 2rem;
	max-width: 100%;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	cursor: default;
	border-radius: 0;
	z-index: 20;
}

.is-loading .fancybox__content {
	opacity: 0;
}

.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab;
}

.can-zoom_in .fancybox__content {
	cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
	cursor: zoom-out;
}

.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
	cursor: auto;
}

.fancybox__slide.has-image>.fancybox__content {
	padding: 0;
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	-webkit-transition: none;
	transition: none;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
	width: 100%;
	height: auto;
	max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
	will-change: transform, width, height;
}

.fancybox-image {
	margin: auto;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	filter: blur(0px);
}

.fancybox__caption {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	max-width: 100%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0;
	padding: 14px 0 4px 0;
	overflow-wrap: anywhere;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	cursor: auto;
	visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
	opacity: 0;
	visibility: hidden;
}

.is-compact .fancybox__caption {
	padding-bottom: 0;
}

.f-button.is-close-btn {
	--f-button-svg-stroke-width: 2;
	position: absolute;
	top: 0;
	right: 8px;
	z-index: 40;
}

.fancybox__content>.f-button.is-close-btn {
	--f-button-width: 34px;
	--f-button-height: 34px;
	--f-button-border-radius: 4px;
	--f-button-color: var(--fancybox-color, #fff);
	--f-button-hover-color: var(--fancybox-color, #fff);
	--f-button-bg: transparent;
	--f-button-hover-bg: transparent;
	--f-button-active-bg: transparent;
	--f-button-svg-width: 22px;
	--f-button-svg-height: 22px;
	position: absolute;
	top: -38px;
	right: 0;
	opacity: .75;
}

.is-loading .fancybox__content>.f-button.is-close-btn {
	visibility: hidden;
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
	visibility: hidden;
}

.fancybox__content>.f-button.is-close-btn:hover {
	opacity: 1;
}

.fancybox__footer {
	padding: 0;
	margin: 0;
	position: relative;
}

.fancybox__footer .fancybox__caption {
	width: 100%;
	padding: 24px;
	opacity: var(--fancybox-opacity, 1);
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.is-compact .fancybox__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: rgba(24, 24, 27, .5);
}

.is-compact .fancybox__footer .fancybox__caption {
	padding: 12px;
}

.is-compact .fancybox__content>.f-button.is-close-btn {
	--f-button-border-radius: 50%;
	--f-button-color: #fff;
	--f-button-hover-color: #fff;
	--f-button-outline-color: #000;
	--f-button-bg: rgba(0, 0, 0, .6);
	--f-button-active-bg: rgba(0, 0, 0, .6);
	--f-button-hover-bg: rgba(0, 0, 0, .6);
	--f-button-svg-width: 18px;
	--f-button-svg-height: 18px;
	--f-button-svg-filter: none;
	top: 5px;
	right: 5px;
}

.fancybox__nav {
	--f-button-width: 50px;
	--f-button-height: 50px;
	--f-button-border: 0;
	--f-button-border-radius: 50%;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: transparent;
	--f-button-hover-bg: rgba(24, 24, 27, .3);
	--f-button-active-bg: rgba(24, 24, 27, .5);
	--f-button-shadow: none;
	--f-button-transition: all .15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 26px;
	--f-button-svg-height: 26px;
	--f-button-svg-stroke-width: 2.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .5));
	--f-button-svg-disabled-opacity: .65;
	--f-button-next-pos: 1rem;
	--f-button-prev-pos: 1rem;
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
	position: absolute;
	content: "";
	top: -30px;
	right: -20px;
	left: -20px;
	bottom: -30px;
	z-index: 1;
}

.is-idle .fancybox__nav {
	-webkit-animation: .15s ease-out both f-fadeOut;
	animation: .15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
	pointer-events: none;
	-webkit-animation: .15s ease-out both f-fadeOut;
	animation: .15s ease-out both f-fadeOut;
}

.fancybox__slide>.f-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
	z-index: 30;
	cursor: pointer;
}

.fancybox-protected {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox-ghost {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	z-index: 40;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.fancybox-focus-guard {
	outline: none;
	opacity: 0;
	position: fixed;
	pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
	opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop):not(.fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
	-webkit-animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn;
	animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
	-webkit-animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn;
	animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop):not(.fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
	-webkit-animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut;
	animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
	-webkit-animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut;
	animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	max-width: 100%;
	-ms-flex-negative: 1;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
	width: calc(100% - 120px);
	height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
	width: 100%;
	height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, .9);
	color: #fff;
}

.has-map .fancybox__content {
	background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.f-carousel__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-outline: 0;
	--f-thumb-outline-color: #5eb0ef;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1;
	--f-thumb-border-radius: 2px;
	--f-thumb-offset: 0;
	--f-button-next-pos: 0;
	--f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: .5;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px;
}

.f-thumbs {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.f-thumbs .f-spinner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-image: -webkit-linear-gradient(#ebeff2, #e2e8f0);
	background-image: linear-gradient(#ebeff2, #e2e8f0);
	z-index: -1;
}

.f-thumbs .f-spinner svg {
	display: none;
}

.f-thumbs.is-vertical {
	height: 100%;
}

.f-thumbs__viewport {
	width: 100%;
	height: auto;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.f-thumbs__slide {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	width: var(--f-thumb-width);
	height: var(--f-thumb-height);
	overflow: visible;
	cursor: pointer;
}

.f-thumbs__slide.is-loading img {
	opacity: 0;
}

.is-classic .f-thumbs__viewport {
	height: 100%;
}

.is-modern .f-thumbs__track {
	width: max-content;
}

.is-modern .f-thumbs__track::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((var(--f-thumb-clip-width, 0))*-.5);
	width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
	cursor: pointer;
}

.is-modern .f-thumbs__slide {
	width: var(--f-thumb-clip-width);
	-webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
	transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
	-webkit-transition: none;
	transition: none;
	pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
	-webkit-transition: -webkit-transform .33s ease;
	transition: -webkit-transform .33s ease;
	transition: transform .33s ease;
	transition: transform .33s ease, -webkit-transform .33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
	-webkit-transition: clip-path .33s ease;
	transition: clip-path .33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
	filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
	-webkit-appearance: none;
	appearance: none;
	width: var(--f-thumb-width);
	height: 100%;
	margin: 0 -100% 0 -100%;
	padding: 0;
	border: 0;
	position: relative;
	border-radius: var(--f-thumb-border-radius);
	overflow: hidden;
	background: rgba(0, 0, 0, 0);
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	opacity: var(--f-thumb-opacity);
	-webkit-transition: opacity .2s ease;
	transition: opacity .2s ease;
}

.f-thumbs__slide__button:hover {
	opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
	outline: none;
}

.f-thumbs__slide__button:focus-visible {
	outline: none;
	opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
	--clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * .5) round var(--f-thumb-border-radius, 0));
	clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
	opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: auto;
	bottom: 0;
	border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
	border-radius: var(--f-thumb-border-radius);
	-webkit-animation: f-fadeIn .2s ease-out;
	animation: f-fadeIn .2s ease-out;
	z-index: 10;
}

.f-thumbs__slide__img {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: var(--f-thumb-offset);
	box-sizing: border-box;
	pointer-events: none;
	object-fit: cover;
	border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
	padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
	margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
	margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-border-radius: 2px;
	--f-thumb-outline: 2px;
	--f-thumb-outline-color: #ededed;
	position: relative;
	opacity: var(--fancybox-opacity, 1);
	-webkit-transition: max-height .35s cubic-bezier(.23, 1, .32, 1);
	transition: max-height .35s cubic-bezier(.23, 1, .32, 1);
}

.fancybox__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: .5;
	--f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
	background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
}

.fancybox__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
	background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
}

.fancybox__thumbs.is-horizontal {
	padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
	padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
	--f-thumb-width: 64px;
	--f-thumb-clip-width: 32px;
	--f-thumb-height: 48px;
	--f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
	max-height: 0 !important;
}

.is-closing .fancybox__thumbs {
	-webkit-transition: none !important;
	transition: none !important;
}

.fancybox__toolbar {
	--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, .94));
	--f-button-width: 46px;
	--f-button-height: 46px;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: rgba(24, 24, 27, .65);
	--f-button-hover-bg: rgba(70, 70, 73, .65);
	--f-button-active-bg: rgba(90, 90, 93, .65);
	--f-button-border-radius: 0;
	--f-button-svg-width: 24px;
	--f-button-svg-height: 24px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .15));
	--f-button-svg-fill: none;
	--f-button-svg-disabled-opacity: .65;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));
	pointer-events: none;
	z-index: 20;
}

.fancybox__toolbar :focus-visible {
	z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.is-idle .fancybox__toolbar {
	pointer-events: none;
	-webkit-animation: .15s ease-out both f-fadeOut;
	animation: .15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.fancybox__infobar {
	padding: 0 5px;
	line-height: var(--f-button-height);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
	cursor: default;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox__infobar span {
	padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
	background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
	position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
	height: 100%;
	opacity: .3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
	display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
	display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
	display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
	display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
	display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
	display: -ms-flexbox;
	display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.f-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0;
	-ms-transform-origin: 0;
	transform-origin: 0;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
	z-index: 30;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.body-color,
body,
.section-title,
.jcf-number .jcf-btn-inc,
.jcf-number .jcf-btn-dec,
.custom-form input:not(.form-control)[type="number"],
button.btn.btn-primary:not(:disabled):not(.disabled):hover,
button.btn.btn-primary:not(:disabled):not(.disabled):focus,
button.btn.button:not(:disabled):not(.disabled):hover,
button.btn.button:not(:disabled):not(.disabled):focus,
a.btn.btn-primary:not(:disabled):not(.disabled):hover,
a.btn.btn-primary:not(:disabled):not(.disabled):focus,
a.btn.button:not(:disabled):not(.disabled):hover,
a.btn.button:not(:disabled):not(.disabled):focus,
input.btn.btn-primary:not(:disabled):not(.disabled):hover,
input.btn.btn-primary:not(:disabled):not(.disabled):focus,
input.btn.button:not(:disabled):not(.disabled):hover,
input.btn.button:not(:disabled):not(.disabled):focus,
button.btn:not(:disabled):not(.disabled):hover,
button.btn:not(:disabled):not(.disabled):focus,
a.btn:not(:disabled):not(.disabled):hover,
a.btn:not(:disabled):not(.disabled):focus,
input.btn:not(:disabled):not(.disabled):hover,
input.btn:not(:disabled):not(.disabled):focus,
.user-info-container button.button:not(:disabled):not(.disabled):hover,
.user-info-container button.button:not(:disabled):not(.disabled):focus,
.promo-code-wrap .btn-promo:not(:disabled):not(.disabled):hover,
.promo-code-wrap .btn-promo:not(:disabled):not(.disabled):focus,
button.btn.btn-outline,
a.btn.btn-outline,
input.btn.btn-outline,
#primary-nav .primary-menu>li>a,
.product-item .product-title a,
.product-item .product-name a,
.product-item span.price,
.product-item .product-price,
.home-layout-three .box-content .box-title,
.blog-item .blog-title a,
.single-product-summary .product-quantity .jcf-number input,
.product-tab-info .tab-content a,
.single-product-detail-container .product-share-sc a,
.map-infoitem ul li a,
.checkout-title,
.mini-cart-item .product-name,
.mini-cart-item .product-name a,
.checkout-container .promo-code-wrap .cart-coupon-main,
.checkout-container .cart-footer,
.delivery-option label .method-option,
.payment-option label .method-option,
.subscribe_field label.checkbox,
.custom-checkbox,
.subscribe_field label.checkbox a,
.custom-checkbox a,
#footer .design-dev-info a,
.footer-newsletter,
.footer-newsletter .widget-title,
.footer-contact-info ul>li:not(.social-icon) .ico-wrap {
	color: #0e293d;
}

body input[type=text],
body input[type=number],
body input[type=email],
body input[type=tel],
body input[type=url],
body input[type=password],
body input[type=search],
body textarea,
body .input-text {
	margin: 0;
}

body,
button.btn,
a.btn,
input.btn,
.product-item .product-img .last-chance-label {
	font-family: "SimplerPro", sans-serif !important;
}

.section-title {
	letter-spacing: 0;
	font-weight: 700;
}

button.btn.btn-primary,
button.btn.button,
a.btn.btn-primary,
a.btn.button,
input.btn.btn-primary,
input.btn.button,
button.btn,
a.btn,
input.btn,
.user-info-container button.button,
.promo-code-wrap .btn-promo {
	border-radius: 25px;
	background: #0e293d;
	border-color: #0e293d;
	color: #fff;
}

button.btn.btn-primary:not(:disabled):not(.disabled):hover,
button.btn.btn-primary:not(:disabled):not(.disabled):focus,
button.btn.button:not(:disabled):not(.disabled):hover,
button.btn.button:not(:disabled):not(.disabled):focus,
a.btn.btn-primary:not(:disabled):not(.disabled):hover,
a.btn.btn-primary:not(:disabled):not(.disabled):focus,
a.btn.button:not(:disabled):not(.disabled):hover,
a.btn.button:not(:disabled):not(.disabled):focus,
input.btn.btn-primary:not(:disabled):not(.disabled):hover,
input.btn.btn-primary:not(:disabled):not(.disabled):focus,
input.btn.button:not(:disabled):not(.disabled):hover,
input.btn.button:not(:disabled):not(.disabled):focus,
button.btn:not(:disabled):not(.disabled):hover,
button.btn:not(:disabled):not(.disabled):focus,
a.btn:not(:disabled):not(.disabled):hover,
a.btn:not(:disabled):not(.disabled):focus,
input.btn:not(:disabled):not(.disabled):hover,
input.btn:not(:disabled):not(.disabled):focus,
.user-info-container button.button:not(:disabled):not(.disabled):hover,
.user-info-container button.button:not(:disabled):not(.disabled):focus,
.promo-code-wrap .btn-promo:not(:disabled):not(.disabled):hover,
.promo-code-wrap .btn-promo:not(:disabled):not(.disabled):focus {
	border-color: #0e293d;
	background: transparent;
}

.promo-code-wrap .promo-input {
	border-radius: 25px;
	margin: 0;
}

#sc_phone,
#sc_code,
#sc_fname,
#sc_sname,
#sc_email,
.sc-input-text,
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=search],
textarea,
.input-text {
	box-shadow: none;
}

.ajax-sugg-res-inner .search-topics-col a.btn-primary {
	border-radius: 25px;
	background: #0e293d;
	border-color: #0e293d;
	color: #fff;
}

.ajax-sugg-res-inner .search-topics-col a.btn-primary:not(:disabled):not(.disabled):hover,
.ajax-sugg-res-inner .search-topics-col a.btn-primary:not(:disabled):not(.disabled):focus {
	border-color: #0e293d !important;
	background: #fff !important;
	color: #0e293d !important;
}

button.btn.btn-outline,
a.btn.btn-outline,
input.btn.btn-outline {
	border-radius: 25px;
	border: 1px solid #0e293d;
	background: transparent;
}

button.btn.btn-outline:not(:disabled):not(.disabled):hover,
button.btn.btn-outline:not(:disabled):not(.disabled):focus,
a.btn.btn-outline:not(:disabled):not(.disabled):hover,
a.btn.btn-outline:not(:disabled):not(.disabled):focus,
input.btn.btn-outline:not(:disabled):not(.disabled):hover,
input.btn.btn-outline:not(:disabled):not(.disabled):focus {
	border-color: #0e293d;
	background: #0e293d;
	color: #fff !important;
}

#wrapper .progress .progress-bar {
	background: #1e425f;
}

.woocommerce-breadcrumb {
	text-align: center !important;
}

.modal .stock-alert-row .form-control {
	border-radius: 50px;
}

.pac-container {
	border-top: none;
}

.h1-layout .h1-content .h1-inner .text {
	text-align: center;
}

.modal .stock-alert-row .stock-alert-title {
	font-weight: 400;
}

.content_control a {
	color: inherit;
	text-decoration: underline;
}

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

.slick-slider .slick-arrow:before {
	display: none;
}

.account-newsletter .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"],
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
	position: absolute;
	opacity: 0;
}

.account-newsletter .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked+.wpcf7-list-item-label:after,
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked+.wpcf7-list-item-label:after {
	opacity: 1;
}

.account-newsletter .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item,
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
	position: relative;
	margin: 0;
	-webkit-padding-start: 30px;
	padding-inline-start: 30px;
}

.account-newsletter .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:before,
.account-newsletter .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:after,
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:before,
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:after {
	position: absolute;
	content: "";
}

.account-newsletter .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:before,
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:before {
	background: #fff;
	width: 20px;
	height: 20px;
	top: 0;
	right: 0;
	border: 1px solid #000;
}

.account-newsletter .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:after,
.contact-form-holder .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:after {
	width: 6px;
	height: 10px;
	border: 1px solid #000;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 3px;
	right: 7px;
	opacity: 0;
}

.wpcf7-form.unaccepted .wpcf7-response-output {
	color: #f00;
}

.wpcf7-list-item-label a {
	color: #000;
	text-decoration: underline;
}

.checkout-review .checkout-container .terms-content-wrapper {
	margin: 0 !important;
}

.checkout-review .woocommerce-terms-and-conditions-wrapper {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

/* css from khusboo */
.checkout-review .cart-footer span.sub-total-amount.amount {
	text-align: left;
}

body .elementor-widget-form input[type=text],
body .elementor-widget-form input[type=number],
body .elementor-widget-form input[type=email],
body .elementor-widget-form input[type=tel],
body .elementor-widget-form input[type=url],
body .elementor-widget-form input[type=password],
body .elementor-widget-form input[type=search],
body .elementor-widget-form textarea,
body .elementor-widget-form .input-text {
	padding: .5rem 1rem;
}

.header-offer-bar {
	background: #1e425f;
}

.header_logo_center .logo {
	margin-inline: auto;
}

#header {
	box-shadow: none;
}

#header .header-action-nav .counter,
#header .header-action-nav .counter_wish {
	background: #0e293d;
}

#header .mobile-account-menu:empty {
	display: none;
}

#header .mobile-account-menu .user_switching_switch_on_top a {
	color: #f00;
	font-weight: 600;
	padding: 0;
	margin: 0 .3125rem;
}

#header .mobile-account-menu .user_switching_switch_on_top a:hover {
	color: #0e293d;
}

#header .header-holder {
	border-bottom: 1px solid #f0f0f0;
}

.logo {
	width: 4rem;
}

.nav-opener .nav-bar:after {
	width: 100%;
}

#primary-nav .primary-menu>li>a {
	font-size: 14px;
}

#primary-nav .mega-menu .submenu-holder {
	overflow-x: hidden;
}

#primary-nav .mega-menu .submenu-holder>*:only-child {
	max-width: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
}

.header-action-nav .header-account {
	display: block;
	position: relative;
}

.header-action-nav .header-account:has(.user_switching_switch_on_top) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-action-nav .header-account a {
	font-size: 18px;
	margin-top: -2px;
}

.header-action-nav .header-account a:has(.account-username) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	gap: .1875rem;
}

.header-action-nav .header-account a .account-username {
	font-size: .5625rem;
	line-height: 1;
}

.header-action-nav .header-account .user_switching_switch_on_top {
	margin-bottom: 0;
}

.header-action-nav .header-account .user_switching_switch_on_top a {
	color: #f00;
	font-size: 12px;
	line-height: 1.2;
	-webkit-margin-end: 10px;
	margin-inline-end: 10px;
	-webkit-margin-start: 0;
	margin-inline-start: 0;
}

.header-action-nav .header-account .user_switching_switch_on_top a:hover {
	color: #0e293d;
}

.header-action-nav .header-account .user_switching_switch_on_top .original_user_icon {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
	color: #0e293d;
	font-size: 20px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	font-weight: 700;
}

.header-action-nav .header-account .user_switching_switch_on_top-btn {
	display: none !important;
}

.user_switching_switch_on_top {
	margin-bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.user_switching_switch_on_top a {
	font: 600 .8125rem / 1.25rem "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;
	outline: none;
	box-shadow: none;
	text-decoration: none;
	color: #f00;
	text-transform: uppercase;
	display: inline-block;
	-webkit-transition: .2s linear color, .2s linear background, .2s linear border;
	transition: .2s linear color, .2s linear background, .2s linear border;
}

.user_switching_switch_on_top a:hover {
	color: #0e293d;
}

.user_switching_switch_on_top a.top_extra_nav {
	color: #1e425f !important;
	border: none;
	padding: 0;
	border-radius: 0;
	margin-inline: .625rem;
	background: none;
}

.user_switching_switch_on_top .sticky-affiliate {
	position: relative;
	margin-top: -2px;
}

.user_switching_switch_on_top .sticky-affiliate i:before {
	width: 20px;
	height: 20px;
}

.user_switching_switch_on_top .btn.btn-primary {
	font-weight: 600 !important;
}

.user_switching_switch_on_top .btn.btn-primary.btn:not(:disabled):not(.disabled):hover {
	color: #1e425f !important;
}

.login-modal .modal-close,
.register-modal .modal-close {
	font-size: .625rem;
	top: .625rem;
}

.rtl .login-modal .modal-close,
.rtl .register-modal .modal-close {
	left: .625rem;
}

.login-modal .modal-dialog,
.register-modal .modal-dialog {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.login-modal .resend-sms,
.register-modal .resend-sms {
	font: inherit;
}

.login-modal .modal-content,
.register-modal .modal-content {
	overflow: inherit;
	padding: 0;
	margin: 0 .9375rem;
	height: auto;
	max-height: initial;
	width: auto;
	right: initial;
	bottom: inherit;
	top: inherit;
	position: inherit;
}

.login-modal .modal-inner-frame,
.register-modal .modal-inner-frame {
	padding: 1.5625rem 1.25rem 1.875rem;
	font-size: .9375rem;
}

.login-modal .modal-content-inner,
.register-modal .modal-content-inner {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.login-modal .modal-title,
.register-modal .modal-title {
	font-size: 1.25rem;
	font-weight: 700;
	border-bottom: 0;
	padding: 0;
	margin-bottom: 1.5625rem;
}

.login-modal .form-control,
.register-modal .form-control {
	border-color: #c9c9c9;
	border-radius: 25px;
	text-align: right;
}

.login-modal .form-group,
.login-modal .btn-wrap,
.register-modal .form-group,
.register-modal .btn-wrap {
	width: 100%;
}

.login-modal .btn-wrap,
.register-modal .btn-wrap {
	text-align: center;
}

.login-modal .sms-form .form-group,
.register-modal .sms-form .form-group {
	max-width: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
}

.login-modal .btn-wrap,
.register-modal .btn-wrap {
	row-gap: .375rem;
}

.login-modal .btn-wrap button,
.register-modal .btn-wrap button {
	font-weight: 600;
	text-transform: inherit;
}

.login-modal .btn-wrap .btn-login,
.register-modal .btn-wrap .btn-login {
	min-width: 5rem;
}

.login-modal .modal-form-holder,
.register-modal .modal-form-holder {
	padding: 0;
}

.login-modal .modal-form-holder .form-holder,
.register-modal .modal-form-holder .form-holder {
	margin-top: 0;
}

.login-modal .modal-form-holder .btn,
.register-modal .modal-form-holder .btn {
	max-width: inherit;
	background-color: #0e293d;
	border-color: #0e293d;
}

.login-modal .modal-form-holder .form-title,
.register-modal .modal-form-holder .form-title {
	font-weight: 700 !important;
	margin-bottom: .625rem;
}

.login-modal .modal-form-holder .modal-question,
.register-modal .modal-form-holder .modal-question {
	font-weight: 700;
	margin-bottom: .5rem;
}

.login-modal .regular-form .form-message,
.register-modal .regular-form .form-message {
	margin-bottom: 10px;
	text-align: center;
}

.login-modal .regular-form .form-message a,
.register-modal .regular-form .form-message a {
	color: #0e293d;
	text-decoration: underline;
}

.login-modal .regular-form .form-message a:hover,
.register-modal .regular-form .form-message a:hover {
	text-decoration: none;
	color: #0e293d;
}

.login-modal .btn-google,
.register-modal .btn-google {
	border-radius: 25px;
	border-color: #c9c9c9;
	font-weight: 700;
}

.login-modal .modal-img img,
.register-modal .modal-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.mini-cart-item .jcf-number input:not(.form-control)[type="number"] {
	border-radius: 25px;
}

.ajax-srch-inner .form-control {
	box-shadow: none;
}

.header-wishlist-box .product-item .btn-add-cart {
	padding: 0;
	text-decoration: underline;
	background: transparent;
	border: none;
	color: #0e293d;
}

.single-product .sticky-wrap,
.single-product #header {
	overflow: unset;
}

.product-item {
	text-align: center;
}

.product-item .matat-wishlist-button-wrap {
	left: auto;
	right: .4375rem;
}

.product-item .product-img {
	border: 1px solid #eff1f4;
	background: #fff;
}

.product-item .product-img .normal-image,
.product-item .product-img .vimeo-wrap {
	padding-bottom: 100%;
}

.product-item .product-img .custom-image-badge {
	position: absolute;
	z-index: 1;
	bottom: .0625rem;
	right: .0625rem;
}

.product-item .product-title,
.product-item .product-name {
	font-weight: 600;
}

.product-item span.price,
.product-item .product-price {
	font-weight: 600;
}

.product-item .price-per-unit {
	color: #707070;
	font-size: .6875rem;
	padding-bottom: .1875rem;
}

.product-item .product-detail {
	text-align: center;
}

.product-item .product-detail:has(.custom-image-badge) {
	position: relative;
	padding-inline: 35px;
}

.product-item .product-detail:has(.custom-image-badge) .custom-image-badge {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
}

.product-item .btn-add-wishlist {
	background: #eff1f4;
}

.product-item .matat_sale_badge,
.product-item .sold-out-label,
.product-item .sale-label,
.product-item .new-label,
.product-item .off-label,
.product-item .comming-soon-label {
	right: 0;
	color: #e20000;
	border-radius: 0 25px 25px 0;
	box-shadow: none;
	background: #fcebe6;
	left: 0;
	right: auto;
}

.product-item .sold-out-label {
	background: #1e425f;
	color: #fff;
}

.product-item .product-title a,
.product-item .product-name a {
	white-space: break-spaces;
}

.woo-variation-swatches .product-item .product-detail .price-per-unit {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

[class^="the-icon-"],
[class*=" the-icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "the-icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.the-icon-pdf:before {
	content: "\e900";
}

.the-icon-batch:before {
	content: "\e90f";
}

.the-icon-three:before {
	content: "\e910";
}

.the-icon-two:before {
	content: "\e911";
}

.the-icon-one:before {
	content: "\e912";
}

.the-icon-user-alt:before {
	content: "\e901";
}

.the-icon-email-alt:before {
	content: "\e902";
}

.the-icon-phone:before {
	content: "\e903";
}

.the-icon-mapin:before {
	content: "\e90b";
}

.hero-banner+.best-selling-section:before {
	content: "";
	position: absolute;
	top: -5%;
	right: 0;
	height: 500px;
	background: url(../images/bg1.png) no-repeat;
	left: auto;
}

.best-selling-section {
	position: relative;
}

.best-selling-section .products-row {
	margin-bottom: 0;
}

.home-layout-three .box-content {
	top: auto;
	bottom: 21px;
	right: 0;
	max-width: 42%;
	padding: .5625rem .8125rem;
	background: rgba(255, 255, 255, .8);
	border-radius: 50px 0 0 50px;
}

.home-layout-three .box-content .box-title {
	margin: 0;
	font-weight: 700;
	text-align: right;
	font-size: .9375rem;
}

.home-layout-three+.best-selling-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 500px;
	background: url(../images/bg2.png) no-repeat;
	background-size: contain;
	right: auto;
}

.home-layout-two+.collection-banner:before {
	display: none !important;
	content: "";
	position: absolute;
	top: auto;
	bottom: 3%;
	left: 0;
	width: 18.5rem;
	height: 13.625rem;
	background: url(../images/bg3-mobile.png) no-repeat;
	right: auto;
	background-size: contain;
	z-index: -1;
}

.home-layout-two .col-item a {
	display: inline-block;
	position: relative;
}

.home-layout-two .col-item:has(img[src*="2כפתור-בבאנר.webp"]) {
	-webkit-transition: .3s ease transform;
	transition: .3s ease transform;
}

.home-layout-two .col-item:has(img[src*="2כפתור-בבאנר.webp"]):hover img {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.home-layout-two .col-item img {
	aspect-ratio: 32 / 25;
}

.home-layout-two .col-item .box-content:empty {
	display: none;
}

.collection-banner {
	position: relative;
}

.collection-banner .collection-content .collection-inner .text {
	word-break: break-word;
}

.collection-banner .img-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 250px 0 0 250px;
}

.collection-banner.flex-md-row-reverse .img-wrap {
	overflow: hidden;
	border-radius: 0 250px 250px 0;
}

.collection-banner+.collection-banner:before {
	content: "";
	position: absolute;
	top: auto;
	bottom: 1%;
	right: 0;
	width: 18.5rem;
	height: 13.625rem;
	background: url(../images/bg4-mobile.png) no-repeat;
	left: auto;
	background-size: contain;
	z-index: -1;
}

.blog-item .blog-title {
	font-weight: 600;
}

.home .blog-item .blog-title {
	font-weight: 600;
}

.blog-item .blog-detail {
	padding-top: .3125rem;
}

.home-blogs-section {
	position: relative;
	z-index: 2;
}

.col-item:hover img {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.col-item a:hover img,
.collection-banner .img-wrap a:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.collection-banner .img-wrap img {
	-webkit-transition: .3s ease transform;
	transition: .3s ease transform;
}

.home-reviews-section .home-reviews-slider .slick-list {
	padding: 0 !important;
}

.page_wrapper_article .single-article-container p>strong:only-child {
	display: inline-block;
}

.page_wrapper_article .single-article-container iframe {
	margin-right: 0;
	max-width: 100%;
}

.page_wrapper_article .single-article-container .vp-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.single-article-container iframe {
	display: block;
	margin-inline: auto;
}

.contact-form-holder .form-control {
	box-shadow: none;
}

.single-product-detail .single-slider-wrapper .matat-wishlist-button-wrap {
	left: auto;
	right: 0;
}

.single-product-detail .single-slider-wrapper .matat-wishlist-button-wrap .matat-wishlist-button {
	background: #eff1f4;
}

.single-product-detail .single-slider-wrapper .single-product-slider {
	border: 1px solid #eff1f4;
}

.single-product-detail .single-slider-wrapper .single-product-slider .img-wrap {
	padding-bottom: 100%;
}

.single-product-detail .single-slider-wrapper .single-product-slider .vimeo-wrap {
	padding-bottom: 100%;
}

.single-product-detail .single-slider-wrapper .single-product-slider .vimeo-wrap iframe {
	position: absolute;
	top: 50%;
	right: 50%;
	width: 100%;
	height: 100%;
	border: none;
	-webkit-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}

.single-product-detail .single-slider-wrapper .single-product-slider:not(.no_slide_thumb) {
	border: 1px solid #eff1f4;
}

.single-product-detail .single-slider-wrapper .single-product-slider .button-zoom {
	background: #eff1f4;
}

.single-product-detail .single-slider-wrapper .single-product-slider .slick-dots {
	bottom: 9px;
}

.single-product-detail .single-slider-wrapper .single-product-slider .slick-dots button {
	background: #0e293d;
	border-color: #0e293d;
	margin: 0 4px;
	width: 6.5px;
	height: 6.5px;
}

.single-product-detail .single-slider-wrapper .single-product-slider .slick-dots .slick-active button {
	background: #eff1f4;
	border-color: #eff1f4;
}

.single-product-detail .single-slider-wrapper .single-product-slider .img-wrap img:not(.zoomImg) {
	padding: 0;
}

.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination {
	padding-bottom: 100%;
	border: 1px solid #eff1f4;
	overflow: hidden;
}

.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination:after {
	background: #0e293d;
	border-radius: 11px;
}

.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination iframe {
	position: absolute;
	width: 200%;
	height: 150%;
	top: 50%;
	left: 50%;
	right: auto;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.single-product-detail .single-slider-wrapper .matat-wishlist-button-wrap .matat-wishlist-button {
	background: #eff1f4;
}

.single-product-summary .product_title {
	font-weight: 600;
	margin-bottom: 10px;
}

.single-product-summary .product-price {
	font-weight: 600;
}

.single-product-summary .product-price-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: .46875rem;
}

.single-product-summary .product-price-wrap .price-per-unit {
	color: #707070;
	margin-top: .0625rem;
	font-size: .75rem;
}

.single-product-summary .product-price-wrap .price-per-unit .per-month {
	display: block;
	font-weight: 400;
}

.single-product-summary .product-price-wrap .free-shipping-txt {
	color: #e20000;
}

.single-product-summary .product-detail-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.single-product-summary .product-detail-header .wishlist-mobile-section {
	position: absolute;
	top: .5rem;
	left: .9375rem;
	right: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.single-product-summary .product-detail-header .wishlist-mobile-section .matat-wishlist-button-wrap {
	position: static;
}

.single-product-summary .product-detail-header .wishlist-mobile-section .matat-wishlist-button-wrap .matat-wishlist-button {
	padding-inline: .3125rem;
	width: auto;
	height: auto;
}

.single-product-summary .product-detail-header .oos_button_single {
	position: static;
	height: auto;
	width: 2.5rem;
	margin-left: 8px;
	margin-top: -12px;
}

.single-product-summary .product-detail-header .product_title {
	margin-left: 0;
}

.single-product-summary .product-detail-header:has(.oos_button_single) .product_title {
	width: calc(100% - 2.5rem - 8px);
}

.single-product-summary .product-quantity .jcf-number {
	border-radius: 25px;
}

.single-product-summary .product-quantity .jcf-number input {
	border-radius: 25px;
}

.single-product-summary .stock-alert-row .input-wrap:before {
	margin-right: .1875rem;
}

.single-product-summary .stock-alert-row .form-control {
	border-radius: 12.5rem;
}

.single-product .variation-bundle-selection {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: .9375rem;
	padding: .9375rem 0;
}

.single-product .single_detail_variations_form .variations_main {
	width: 100%;
}

.single-product .single_detail_variations_form .variations_main td.label {
	font-size: .75rem;
	font-weight: 600;
	width: 16%;
	padding-left: .625rem;
	vertical-align: bottom;
}

.single-product .single_detail_variations_form .variations_main .jcf-select {
	border-radius: 50px;
	border-color: #c9c9c9;
	height: 2rem;
}

.single-product .single_detail_variations_form .variations_main .jcf-select .jcf-select-text {
	line-height: 2rem;
}

.shop-page-container .page-title {
	font-weight: 700;
}

.product-tab-info .tab-content h2,
.product-tab-info .tab-content h3 {
	font: inherit;
	margin: 0;
}

.product-tab-info .tab-content a[data-toggle="collapse"] {
	font-weight: 600;
}

.product-tab-info .tab-content a[data-toggle="collapse"].collapsed {
	font-weight: 600;
}

.product-tab-info .tab-content .tab-item {
	border-color: #c9c9c9;
}

.product-tab-info .tab-content .tab-item:first-child {
	border-color: #c9c9c9;
}

.single-product-detail-container > .single-product-container {
	max-width: 100%;
}

.single-product-detail-container>.single-product-container:not(.no_slide_thumb) .single-slider-wrapper>[class*="-label"] {
	left: 0;
	right: auto;
}

.single-product-detail-container .no_slide_thumb .single-product-detail .position-absolute:has(.matat-wishlist-button-wrap) {
	right: 10px;
}

.single-product-detail-container .no_slide_thumb .single-product-detail .matat_sale_badge,
.single-product-detail-container .no_slide_thumb .single-product-detail .sold-out-label,
.single-product-detail-container .no_slide_thumb .single-product-detail .sale-label,
.single-product-detail-container .no_slide_thumb .single-product-detail .new-label,
.single-product-detail-container .no_slide_thumb .single-product-detail .off-label,
.single-product-detail-container .no_slide_thumb .single-product-detail .comming-soon-label,
.single-product-detail-container .no_slide_thumb .single-product-detail .sold-out-label,
.single-product-detail-container .no_slide_thumb .single-product-detail .out-of-stock {
	right: 0;
}

.single-product-detail-container .single-product-detail .matat_sale_badge,
.single-product-detail-container .single-product-detail .sold-out-label,
.single-product-detail-container .single-product-detail .sale-label,
.single-product-detail-container .single-product-detail .new-label,
.single-product-detail-container .single-product-detail .off-label,
.single-product-detail-container .single-product-detail .comming-soon-label {
	color: #e20000;
	border-radius: 0 25px 25px 0;
	box-shadow: none;
	background: #fcebe6;
}

.single-product-detail-container .single-product-detail .sold-out-label,
.single-product-detail-container .single-product-detail .out-of-stock {
	background: #1e425f;
	color: #fff;
}

.single-product-detail-container .product-share-sc {
	margin-top: 0;
}

.single-product-detail-container .product-share-sc a {
	padding: 0 .625rem;
	margin: 0;
}

.single-product-detail-container .product-share-sc a:last-child {
	padding-left: 0;
}

.related-product-section {
	background: transparent;
}

.related-product-section .section-title {
	font-weight: 700;
}

.oos_button_single {
	position: absolute;
	bottom: .625rem;
	right: .625rem;
	width: 2.8125rem;
	height: 2.8125rem;
	z-index: 1;
}

.oos_button_single img {
	width: 100%;
}

.btn-holder .icons-text-section {
	margin-top: 20px;
}

.icons-text-section {
	border-top: 1px solid #c9c9c9;
	margin-top: -1px;
}

.icons-text-section .icons-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.icons-text-section .icons-row .icons-col {
	max-width: 120px;
}

.icons-text-section .icons-row .icos-wrap {
	text-align: center;
}

.icons-text-section .icons-row .text-wrap {
	font-family: "SimplerPro", sans-serif !important;
	text-align: center;
	margin-top: .1875rem;
	line-height: 1.2;
}

.product-faqs-image-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.product-faqs-image-wrapper .product-faqs-wrapper,
.product-faqs-image-wrapper .faq-image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.product-faqs-image-wrapper .faq-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-faqs-image-wrapper .product-faqs-wrapper {
	background: #eff1f4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-block: 2.5rem;
	margin-inline: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product-faqs-image-wrapper .product-tab-info .tab-content {
	background: transparent;
	width: 100%;
	font-size: .75rem;
	padding-bottom: 0;
}

.product-faqs-image-wrapper .product-tab-info .tab-content .section-title {
	text-align: right;
}

.product-faqs-image-wrapper .product-tab-info .tab-content .tab-item {
	border-color: #c9c9c9;
}

.product-faqs-image-wrapper .product-tab-info .tab-content .tab-item:first-of-type {
	border-top: 1px solid #c9c9c9;
}

.product-faqs-image-wrapper .product-tab-info .tab-content .tab-item a[data-toggle="collapse"].collapsed {
	font-weight: 400;
}

.product-faqs-image-wrapper .content-wrap iframe {
	width: 100%;
}

.group-product-wrap .group-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.group-product-wrap .group-wrapper .wishlist-mobile-section {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.group-product-wrap .group-wrapper .wishlist-mobile-section .product-share-sc {
	display: block;
}

.group-product-wrap .group-wrapper .wishlist-mobile-section .matat-wishlist-button-wrap {
	padding: 0 .625rem;
}

.group-product-wrap .group-wrapper .wishlist-mobile-section .matat-wishlist-button-wrap>a {
	line-height: 1;
	display: block;
}

.group-product-wrap .group-product-title {
	font-weight: 600;
	font-size: .75rem;
	margin-bottom: .8125rem;
}

.group-product-wrap>ul {
	padding: 0;
	margin: 0;
}

.group-product-wrap>ul>li {
	border-bottom: 1px solid #c9c9c9;
	padding-block: .294375rem;
}

.group-product-wrap>ul>li:nth-child(1) {
	border-top: 1px solid #c9c9c9;
}

.group-product-wrap>ul>li .group-product-item {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-inline: -.1875rem;
}

.group-product-wrap > ul > li .group-product-item .group-product-count,
.group-product-wrap > ul > li .group-product-item .group-product-pricing,
.group-product-wrap > ul > li .group-product-item .group-product-btnwrap {
	padding-inline: .1875rem;
}

.modal-dialog .group-product-wrap>ul>li .group-product-item .group-product-pricing {
	-webkit-padding-end: 0;
	padding-inline-end: 0;
}

.group-product-wrap>ul>li .group-product-item .group-product-count {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	max-width: 20%;
}

.group-product-wrap>ul>li .group-product-item .group-product-count .count-text {
	max-width: 1.125rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.125rem;
	flex: 0 0 1.125rem;
}

.group-product-wrap>ul>li .group-product-item .group-product-count .count-text img {
	object-fit: contain;
}

.group-product-wrap>ul>li .group-product-item .group-product-count span {
	font-size: .75rem;
	font-weight: 600;
}

.group-product-wrap>ul>li .group-product-item .product-price-wrap {
	gap: 0;
}

.group-product-wrap>ul>li .group-product-item .product-price {
	width: 100%;
	font-size: .75rem;
	margin-bottom: 0;
}

.group-product-wrap>ul>li .group-product-item .matat_sale_discount {
	color: #e20000;
	font-size: .6875rem;
	font-weight: 400;
}

.group-product-wrap>ul>li .group-product-item .group-product-pricing {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	max-width: 40%;
}

.group-product-wrap>ul>li .group-product-item .group-product-btnwrap {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	max-width: 40%;
}

.group-product-wrap>ul>li .group-product-item .group-product-btnwrap .btn {
	font-weight: 600;
	padding-inline: .3125rem;
	width: 100%;
}

.group-product-wrap>ul>li .group-product-item .group-product-btnwrap .added_to_cart.wc-forward {
	display: none;
}

.mobile-sticky-add-cart {
	background: #0e293d;
	border-top: none;
	padding: .625rem .9375rem;
	gap: .625rem;
}

.nav-active .mobile-sticky-add-cart,
.header_search_active .mobile-sticky-add-cart {
	z-index: 60;
}

.mobile-sticky-add-cart .btn {
	max-height: 2.1875rem;
	min-height: 2.1875rem !important;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
	font-weight: 600;
	font-size: .75rem;
	padding: .6rem .375rem .375rem;
}

.mobile-sticky-add-cart .btn.btn-white:not(:disabled):not(.disabled):hover,
.mobile-sticky-add-cart .btn.btn-white:not(:disabled):not(.disabled):focus {
	border-color: #fff;
	background: #0e293d;
	color: #fff;
}

.mobile-sticky-add-cart .btn.btn-outline {
	border-color: #fff;
	color: #fff;
}

.mobile-sticky-add-cart .btn.btn-outline:not(:disabled):not(.disabled):hover,
.mobile-sticky-add-cart .btn.btn-outline:not(:disabled):not(.disabled):focus {
	border-color: #fff;
	background: #fff;
	color: #0e293d !important;
}

.quick-popup .modal-header {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: none;
	padding: 1.25rem 0 0;
}

.quick-popup .group-product-title {
	font-size: .9375rem;
	margin-bottom: 0;
}

.quick-popup .modal-content {
	border-radius: 0;
}

.quick-popup .close {
	position: absolute;
	right: .625rem;
	top: .625rem;
	color: #1e425f;
	opacity: 1;
}

.product-extra-section-wrapper {
	background: #eff1f4;
	padding-block: 1.5625rem;
	padding-inline: .9375rem;
	margin-top: 1.25rem;
}

.product-extra-section-wrapper h2 {
	font-weight: 700;
	font-size: 1rem;
}

.product-extra-section-wrapper .main-content-paragraph {
	font-size: .75rem;
}

.product-extra-section-wrapper .main-content-paragraph:last-child {
	margin-bottom: 0;
}

.product-extra-section-wrapper .main-content-paragraph ol {
	padding-right: 1.5625rem;
	list-style: decimal;
}

.product-extra-section-wrapper .main-content-paragraph .custom-gallery-wrapper {
	padding-top: .625rem;
}

.product-extra-section-wrapper .main-content-paragraph .custom-gallery-wrapper .gallery-item .gallery-caption {
	margin-top: .625rem;
}

.product-extra-section-wrapper .main-content-paragraph iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: 100%;
}

.button-pdf-exist-wrapper a {
	color: #1e425f;
	text-decoration: underline;
	padding-right: 5px;
	font-size: .875rem;
}

.button-pdf-exist-wrapper a:hover {
	text-decoration: none;
	color: #1e425f;
}

.vdo-slider-section .section-title {
	margin-bottom: .625rem;
}

.vdo-slider-section .vdo-slider-holder:not(.flickity-enabled) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/* .vdo-slider-section .vdo-slider-holder:not(.flickity-enabled) .vdo-slider:nth-child(3)~.vdo-slider {
	display: none;
} */

.vdo-slider-section .vdo-slider {
	width: 10rem;
	padding: 0 .375rem;
}

.vdo-slider-section .vdo-slider .vdo-item {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-top: 178%;
	border-radius: .375rem;
}

.vdo-slider-section .vdo-slider img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vdo-slider-section .vdo-btn-holder {
	position: absolute;
	inset: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.vdo-slider-section .vdo-btn-holder .vdo-play-btn {
	background: rgba(0, 0, 0, .5);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 100%;
	display: block;
	position: relative;
}

.vdo-slider-section .vdo-btn-holder .vdo-play-btn::before {
	content: "";
	border-top: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
	border-left: .75rem solid #fff;
	width: 0;
	height: 0;
	position: absolute;
	inset: 0;
	margin: auto;
	left: 3px;
}

.vdo-slider-section .flickity-prev-next-button {
	top: 0;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	height: 100%;
	border-radius: 0;
	width: 20px;
	background: transparent;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	box-shadow: none;
}

.vdo-slider-section .flickity-prev-next-button.previous {
	right: 0;
}

.vdo-slider-section .flickity-prev-next-button.next {
	left: 0;
}

.vdo-slider-section .flickity-prev-next-button:focus {
	box-shadow: none;
}

.vdo-slider-section .flickity-prev-next-button:active {
	opacity: 1;
}

.vdo-slider-section .flickity-prev-next-button .flickity-button-icon {
	width: 100%;
	height: auto;
	position: static;
}

.fancybox__backdrop {
	background: rgba(0, 0, 0, .8);
}

.fancybox__container .fancybox__content {
	border-radius: .3125rem;
	background: #000;
}

.fancybox__container .fancybox__content iframe {
	border-radius: .3125rem;
}

.fancybox__container .fancybox__content>.f-button.is-close-btn {
	opacity: 1;
}

.fancybox__container.is-idle .fancybox__nav {
	-webkit-animation: none;
	animation: none;
}

.with-fancybox .single-product .fancybox__container .fancybox__toolbar__column.is-middle {
	display: none !important;
}

.with-fancybox .single-product .fancybox__container button.f-button {
	background: none !important;
}

.with-fancybox .single-product .fancybox__container .is-horizontal .fancybox__nav .f-button.is-next {
	right: 0;
}

.with-fancybox .single-product .fancybox__container .is-horizontal .fancybox__nav .f-button.is-prev {
	left: 0;
}

.with-fancybox .single-product .sticky-affiliate.sticky-product-link {
	z-index: 999 !important;
}

.with-fancybox .single-product nav#pojo-a11y-toolbar {
	z-index: 9;
}

.with-fancybox .custom-cookie-outer.show {
	z-index: 1;
}

.vdo-slider-section .vdo-slider-holder .carousel-cell {
	width: 100%;
	/* Full-width slide */
	max-width: 100%;
}

.vdo-slider-section .flickity-prev-next-button.previous {
	right: inherit;
	left: 0;
}

.vdo-slider-section .flickity-prev-next-button.next {
	left: inherit;
	right: 0;
}

.vdo-slider-section .flickity-viewport {
	padding: 0 20px;
}

.vdo-slider-section .vdo-slider-holder:not(.flickity-enabled) .vdo-slider:nth-child(3)~.vdo-slider {
	display: block !important;
}


.mobile-sticky-add-cart {
	visibility: hidden !important;
	opacity: 1 !important;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	/* slide down (hidden) */
	-webkit-transition: opacity .35s ease, visibility .35s ease, -webkit-transform .35s ease;
	transition: opacity .35s ease, visibility .35s ease, -webkit-transform .35s ease;
	transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
	transition: transform .35s ease, opacity .35s ease, visibility .35s ease, -webkit-transform .35s ease;
}

.mobile-sticky-add-cart.active {
	opacity: 1 !important;
	visibility: visible !important;
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	/* slide up */;
}

.blogs-container .blog-nav .category-menu > li .blog-tag-item {
	border-radius: 25px;
}

.blogs-container .blog-nav .category-menu>li .blog-tag-item:hover {
	background-color: #1e425f;
	border-color: #1e425f;
}

.blogs-container .blog-nav .category-menu>li.active .blog-tag-item {
	border-color: #1e425f;
	background-color: #1e425f;
	color: #fff;
}

.blog-item .blog-item-tags .tag_item {
	border-radius: 25px;
	background-color: rgba(30, 66, 95, .5);
}

.user-info-container .woocommerce-MyAccount-navigation .myaccount-menu>li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--user-switching-switch-back a {
	font: 500 .8125rem / 1.25rem "Heebo", "Helvetica Neue", Helvetica, Arial, sans-serif;
	outline: none;
	box-shadow: none;
	text-decoration: none;
	border: 1px solid red;
	background: red;
	padding: .375rem;
	color: #fff;
	text-transform: uppercase;
	border-radius: 25px;
	display: inline-block;
	text-align: center;
	-webkit-transition: .2s linear color, .2s linear background, .2s linear border;
	transition: .2s linear color, .2s linear background, .2s linear border;
}

.user-info-container .woocommerce-MyAccount-navigation .myaccount-menu>li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--user-switching-switch-back a:hover {
	border-color: #0e293d;
	background: #fff;
	color: #0e293d;
	text-decoration: none;
}

.user-info-container .woocommerce-MyAccount-navigation .myaccount-menu>li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--user-switching-switch-back a:after {
	display: none;
}

.woo-order-cancel .top-text-holder p {
	text-align: right;
}

.woo-order-cancel iframe {
	width: 100%;
	border: none;
	overflow: scroll;
	border-top: 1px solid #ddd;
	padding-top: 20px;
}

.custom-account-message {
	margin-top: .625rem;
}

.matat_thankyou_page_hooks_payment_gateway {
	text-align: center;
	padding-bottom: .9375rem;
}

.matat_thankyou_page_hooks_payment_gateway p {
	margin: 0;
}

form.woocommerce-form-login .show-password-input {
	display: none;
}

.map-outerwrap {
	padding: .1875rem .9375rem 2.5rem;
}

.map-search {
	text-align: center;
	margin-bottom: 1.875rem;
}

.map-search h1 {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1.6875rem;
}

.map-search .map-search-wrap .input-group {
	gap: .625rem;
}

.map-search .map-search-wrap .input-group .icon-search {
	font-size: .625rem;
	position: absolute;
	bottom: 0;
	margin-bottom: .8125rem;
	z-index: 4;
	left: 10px;
	color: #909090;
}

.rtl .map-search .map-search-wrap .input-group .icon-search {
	left: auto;
	right: 10px;
}

.map-search .map-search-wrap .input-group .form-control {
	border-radius: 25px;
	padding-right: 1.5625rem;
	font-size: .75rem;
	color: rgba(0, 0, 0, .6);
}

.map-search .map-search-wrap .input-group .form-control::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .6);
}

.map-search .map-search-wrap .input-group .form-control:-ms-input-placeholder {
	color: rgba(0, 0, 0, .6);
}

.map-search .map-search-wrap .input-group .form-control::placeholder {
	color: rgba(0, 0, 0, .6);
}

.map-search .map-search-wrap .input-group .input-group-append {
	max-width: 4.6875rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 4.6875rem;
	flex: 0 0 4.6875rem;
}

.map-search .map-search-wrap .input-group .input-group-append .btn-search {
	border-radius: 25px;
	width: 100%;
	background-color: #0e293d;
	border-color: #0e293d;
	font-size: .75rem;
}

.map-search .map-search-wrap .input-group .input-group-append .btn-search:not(:disabled):not(.disabled):hover {
	border-color: #0e293d;
	color: #0e293d;
	background: #fff;
}

.map-wrap .map-section {
	margin-bottom: .9375rem;
}

.map-wrap .map-section #map {
	min-height: 18.125rem;
}

.map-wrap .map-section #map .yNHHyP-marker-view {
	top: 21px;
}

.map-wrap .map-infowrap {
	max-height: 31.25rem;
	overflow: auto;
	direction: ltr;
}

.map-wrap .map-infowrap::-webkit-scrollbar {
	width: .3125rem;
}

.map-wrap .map-infowrap::-webkit-scrollbar-track {
	background-color: #ebebe3;
}

.map-wrap .map-infowrap::-webkit-scrollbar-thumb {
	background-color: #1e425f;
}

.map-wrap .map-infowrap::-webkit-scrollbar-thumb:hover {
	background-color: rgba(30, 66, 95, .8);
}

.map-wrap .map-infowrap::-webkit-scrollbar-thumb:active {
	background-color: #1e425f;
}

.map-infoitem {
	direction: rtl;
	padding: .75rem 1.25rem .9375rem;
}

.map-infoitem.active {
	background-color: rgba(239, 241, 244, .5);
}

.map-infoitem h2 {
	font-weight: 700;
	font-size: .75rem;
	margin-bottom: .8125rem;
	cursor: pointer;
}

.map-infoitem ul li {
	font-size: .75rem;
}

.map-infoitem ul li:nth-child(1) {
	cursor: pointer;
	direction: ltr;
}

.map-infoitem ul li:not(:last-child) {
	margin-bottom: .5625rem;
}

.map-infoitem ul li .ico-wrap,
.map-infoitem ul li .icon-waze-wrap {
	margin-left: .3125rem;
}

.map-infoitem ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.map-infoitem ul li a:hover {
	color: #1e425f;
}

.map-infoitem ul li.waze-link a {
	text-decoration: underline;
}

.map-infoitem ul li.waze-link a:hover {
	text-decoration: none;
}

.map-infoitem .ico-wrap {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-size: .5625rem;
	background: #0e293d;
	color: #fff;
	border-radius: 50%;
	font-weight: 600;
	height: .9375rem;
	width: .9375rem;
	-ms-flex-preferred-size: .9375rem;
	flex-basis: .9375rem;
	width: .9375rem;
	min-width: .9375rem;
	line-height: .9375rem;
	margin-right: 0;
	margin-left: .3125rem;
}

.map-infoitem .ico-wrap .icon-location:before {
	content: "\e90b";
	font-family: "the-icomoon" !important;
}

.map-infoitem .ico-wrap .icon-phone-alt:before {
	content: "\e903";
	font-family: "the-icomoon" !important;
}

.map-infoitem .icon-waze-wrap {
	height: .9375rem;
	width: .9375rem;
	-ms-flex-preferred-size: .9375rem;
	flex-basis: .9375rem;
	width: .9375rem;
	min-width: .9375rem;
	margin-right: 0;
	margin-left: .3125rem;
}

.map-infoitem .icon-waze-wrap svg {
	width: 100%;
	height: 100%;
}

.map-infowrap .map-infoitem:nth-child(1) {
	border-top: 1px solid #c9c9c9;
}

.map-infowrap .map-infoitem:not(:last-child) {
	border-bottom: 1px solid #c9c9c9;
}

.page-template-checkout.mini_cart_active,
.page-template-checkout.wishlist_active,
.page-template-checkout.nav-active {
	overflow: unset;
}

.page-template-checkout.mini_cart_active .header-offer-bar:before,
.page-template-checkout.wishlist_active .header-offer-bar:before,
.page-template-checkout.mini_cart_active #header:before,
.page-template-checkout.wishlist_active #header:before {
	display: none;
}

.rtl .user-info-container .edit-account .form-group .input-text {
	text-align: right;
}

.verification-message {
	font-size: .75rem;
}

.verification-message.success {
	color: green;
}

.verification-message.error {
	color: red;
}

.checkout-container .woocommerce-breadcrumb {
	text-align: right !important;
}

.checkout-container .shipping-method-holder .mini-cart-upsell .minicart-upsell-slider.slick-slider .slick-arrow {
	height: auto;
}

.checkout-container .shipping-method-holder .mini-cart-upsell .product-item .product-detail {
	padding-inline: 0;
}

.checkout-container .shipping-method-holder .mini-cart-upsell .product-item .product-detail .price {
	margin-inline: 0;
	padding-bottom: 0;
}

.delivery-option label .fake-input:before,
.payment-option label .fake-input:before {
	background: #0e293d;
}

.delivery-option label .method-detail,
.payment-option label .method-detail {
	position: relative;
	width: 100%;
}

.delivery-option label .method-detail .tooltip-wrap,
.payment-option label .method-detail .tooltip-wrap {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 1;
}

.delivery-option label .method-detail .tooltip-wrap .tooltip-icon,
.payment-option label .method-detail .tooltip-wrap .tooltip-icon {
	position: absolute;
	left: 0;
	background-image: url("data:image/svg+xml,%3Csvg id='Group_14216' data-name='Group 14216' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='Group_14050' data-name='Group 14050'%3E%3Cg id='Group_14049' data-name='Group 14049'%3E%3Cpath id='Path_1717' data-name='Path 1717' d='M201.411,219.378a.968.968,0,0,1-.584-.131.606.606,0,0,1-.167-.5,2.586,2.586,0,0,1,.054-.452,4.982,4.982,0,0,1,.118-.507l.534-1.837a2.781,2.781,0,0,0,.109-.557c0-.2.027-.344.027-.425a1.19,1.19,0,0,0-.421-.946,1.769,1.769,0,0,0-1.195-.362,3.1,3.1,0,0,0-.9.149q-.48.149-1.009.357l-.154.6c.1-.036.231-.077.376-.122a1.538,1.538,0,0,1,.425-.063.869.869,0,0,1,.575.14.656.656,0,0,1,.149.493,2.145,2.145,0,0,1-.05.452q-.048.238-.122.5l-.538,1.846a5.276,5.276,0,0,0-.1.52,3.234,3.234,0,0,0-.032.452,1.181,1.181,0,0,0,.452.937,1.81,1.81,0,0,0,1.213.371,2.791,2.791,0,0,0,.9-.131q.385-.131,1.027-.376l.145-.57a2.5,2.5,0,0,1-.357.118A1.718,1.718,0,0,1,201.411,219.378Z' transform='translate(-190.081 -205.294)' fill='%231e425f'/%3E%3Cpath id='Path_1718' data-name='Path 1718' d='M250.745,128.329a1.376,1.376,0,0,0-1.81,0,1.081,1.081,0,0,0,0,1.638,1.357,1.357,0,0,0,1.81,0,1.086,1.086,0,0,0,0-1.638Z' transform='translate(-238.844 -122.987)' fill='%231e425f'/%3E%3Cpath id='Path_1719' data-name='Path 1719' d='M10,0A10,10,0,1,0,20,10,10,10,0,0,0,10,0Zm0,19.091A9.091,9.091,0,1,1,19.091,10,9.091,9.091,0,0,1,10,19.091Z' fill='%231e425f'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	height: 1.25rem;
	width: 1.25rem;
	z-index: 99;
}

.delivery-option label .method-detail .tooltip-wrap .tooltip-icon:hover~.tooltip-desc,
.payment-option label .method-detail .tooltip-wrap .tooltip-icon:hover~.tooltip-desc {
	opacity: 1;
	visibility: visible;
	z-index: 999;
	display: block;
}

.delivery-option label .method-detail .tooltip-wrap .tooltip-desc,
.payment-option label .method-detail .tooltip-wrap .tooltip-desc {
	display: none;
	background: #eff1f4;
	padding: .625rem;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	font-size: .75rem;
	max-width: 12.5rem;
	width: 12.5rem;
	margin-left: 2.1875rem;
}

.delivery-option label .method-detail .tooltip-wrap .tooltip-desc:before,
.payment-option label .method-detail .tooltip-wrap .tooltip-desc:before {
	content: "";
	position: absolute;
	border-top: .625rem solid transparent;
	border-bottom: .625rem solid transparent;
	border-right: .625rem solid #eff1f4;
	left: 1.5625rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.delivery-option label input[type="checkbox"]:checked~.method-option .fake-input,
.delivery-option label input[type="radio"]:checked~.method-option .fake-input,
.payment-option label input[type="checkbox"]:checked~.method-option .fake-input,
.payment-option label input[type="radio"]:checked~.method-option .fake-input {
	border-color: #0e293d;
}

.custom-donation-holder {
	background: #eff1f4;
	line-height: 1.4;
	padding: .75rem .9375rem .9375rem;
	border-radius: .75rem;
	margin: .5rem 0 1.3125rem;
}

.custom-donation-holder h2 {
	font-weight: 700;
	color: #0e293d;
	font-size: .75rem;
	margin-bottom: .6875rem;
}

.custom-donation-holder p {
	margin-bottom: .75rem;
}

.custom-donation-holder .donation-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: .9375rem;
	column-gap: .9375rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: .625rem;
}

.custom-donation-holder .donation-icons img {
	max-height: 3.875rem;
}

.custom-donation-holder .product-donation-amount-wrapper {
	margin-bottom: .3125rem;
}

.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-inline: auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation .btn-variation {
	background: #fff;
	border-color: #dcdcdc;
}

.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation .btn-variation:hover {
	background: #fff;
	border-color: #0e293d;
	color: #000;
}

.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation label input[type="radio"]:checked~.btn-variation {
	background: #fff !important;
	border-color: #0e293d !important;
	color: #000 !important;
}

.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation li:last-child {
	padding-left: 0;
}

.custom-donation-holder .product-donation-amount-wrapper .input-text {
	box-shadow: none;
	height: 1.5625rem;
	min-width: 3.4375rem;
}

.custom-donation-holder .add_to_cart_donation_button {
	margin-inline: auto;
	width: 16.25rem;
	height: 1.875rem;
}

.checkout-address-row wc-order-attribution-inputs {
	display: none;
}

.checkout-review .cart-footer span.sub-total-amount.amount {
	text-align: left;
}

.steps-container {
	padding-inline: .9375rem;
	padding-block: 1.875rem;
}

.steps-container .section-title {
	margin-bottom: 0;
}

.steps__navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-bottom: 1px solid #c9c9c9;
	margin: 1.25rem 0;
	padding: 0 0 1.25rem;
}

.steps__navigation:nth-child(1) {
	margin-top: 0;
}

.steps__navigation:last-child {
	margin-bottom: 0;
}

.step {
	display: none;
	padding: 1.25rem 0 0;
}

.step.active {
	display: block;
}

.step .next-btn {
	font-weight: 400;
	min-width: 9.375rem;
	height: 1.875rem;
	margin-top: 1.125rem;
	line-height: 1;
}

.step .step__text {
	line-height: 1.4;
}

.step .step__text p:last-child {
	margin-bottom: 0;
}

.step .row {
	width: unset;
}

.step.step--3 {
	padding: 0;
}

.step .btn-link {
	color: #1e425f;
	background: transparent;
	border: none;
	font-weight: 700;
	font-size: .75rem;
	text-decoration: underline !important;
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
	margin-top: .9375rem;
	padding: 0;
}

.step .btn-link:hover {
	text-decoration: none !important;
}

.step .video-category-section iframe {
	border: none;
	outline: none;
	margin: 0;
	height: auto;
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
}

.step__nav {
	position: relative;
	font-weight: 700;
	font-size: .9375rem;
}

.step__nav:before {
	content: "";
	background-image: url("../images/1white.png");
	background-size: auto .75rem;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5625rem;
	min-width: 1.5625rem;
	height: 1.5625rem;
	border: 1px solid #1e425f;
	border-radius: 50%;
	line-height: 1;
	text-align: center;
	margin-left: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.step__nav.active {
	font-weight: 700;
}

.step__nav.active:before {
	background-color: #1e425f;
	color: white;
}

.step__nav[data-step="2"]:before {
	background-image: url("../images/2.png");
}

.step__nav[data-step="2"].active:before {
	background-image: url("../images/2white.png");
}

.step__nav[data-step="3"]:before {
	background-image: url("../images/3.png");
}

.step__nav[data-step="3"].active:before {
	background-image: url("../images/3white.png");
}

.step__search {
	width: 100%;
}

.step__search .form-control {
	border-color: #1e425f;
	border-radius: 25px;
	height: 1.875rem;
	padding-inline: .625rem;
}

.step__search .form-control::-webkit-input-placeholder {
	color: #909090;
}

.step__search .form-control:-ms-input-placeholder {
	color: #909090;
}

.step__search .form-control::placeholder {
	color: #909090;
}

.step__product__wrapper {
	margin: -.8125rem 0 0;
	padding-block: 1rem .625rem;
	border-radius: 0 0 10px 10px;
	border: solid #1e425f;
	border-width: 0 1px 1px;
	overflow: hidden;
}

.step__product__wrapper .noresult_info {
	text-align: center;
}

.step__product__item {
	padding: .3125rem .625rem;
	-webkit-transition: .5s ease all;
	transition: .5s ease all;
}

.step__product__item:hover {
	background: #eff1f4;
	cursor: pointer;
}

.step__product__item:not(:last-child) {
	margin-bottom: 2px;
}

.step__product__item .step__product__img {
	border: 1px solid #eff1f4;
	width: 2.1875rem;
	height: 2.1875rem;
}

.step__product__item .step__product__img img {
	width: 100%;
	object-fit: cover;
}

.step__product__item .step__product__detail {
	max-width: calc(100% - 62px);
	-webkit-box-flex: calc(100% - 62px);
	-ms-flex: calc(100% - 62px);
	flex: calc(100% - 62px);
}

.step__product__item .step__product__detail h3 {
	font-size: .75rem;
	padding-right: .625rem;
}

.step__product__info {
	color: #1e425f;
	margin-top: 1.25rem;
}

.step__product__info a {
	color: #1e425f;
}

.step__product__info h2 {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: .625rem;
}

.step__product__info img {
	max-width: 7.8125rem;
	max-height: 7.8125rem;
	border: 1px solid #eff1f4;
	margin-bottom: 1.25rem;
}

.step__product__info .info {
	display: block;
	margin-bottom: .75rem;
	font-size: .875rem;
}

.step__product__info .info.info--title {
	font-size: .75rem;
	margin-block: 1rem .625rem;
}

.batch__wrap ul li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.batch__wrap ul li:before {
	position: relative;
	content: "\e90f";
	font-family: "the-icomoon" !important;
	font-size: 1rem;
	right: 0;
	line-height: 1;
	padding-left: 5px;
}

.batch__wrap ul li:not(:last-child) {
	margin-bottom: .75rem;
}

.batch__wrap .batch-link {
	text-decoration: underline;
	padding-right: 5px;
	text-wrap: nowrap;
}

.batch__wrap .batch-link:hover {
	text-decoration: none;
}

.batch__wrap.batch__wrap--count li {
	display: none;
}

.batch__wrap.batch__wrap--pdf ul li:before {
	content: "\e900";
	color: #cf1f25;
}

.single.single-post.single-product-layout-two:not(.single_gallery_size_big):not(.page) .woocommerce-breadcrumb {
	padding-block: 0;
}

.single.single-post.single-product-layout-two:not(.single_gallery_size_big):not(.page) .woocommerce-breadcrumb.article_breadcrumb {
	padding-block: .75rem 0;
}

.single.single-post .article-related-wrapper .related-blog-section .section-title {
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: .625rem;
}

.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider {
	margin-inline: 0;
}

.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider .slide .blog-item {
	margin-inline: 0 .9375rem;
}

.page_wrapper_article .page-header-article .woocommerce-breadcrumb {
	text-align: right !important;
}

.page_wrapper_article .page-header-article .page-title {
	font-weight: 600;
}

.page_wrapper_article .page-header-article .post-cat a {
	border-radius: 25px;
	background-color: #1e425f;
	border-color: #1e425f;
}

.page_wrapper_article .page-header-article .post-cat .post-cat-title {
	font-weight: 600;
	color: #1e425f;
}

.single-related-product {
	border: 1px solid #d0d0d0;
	padding: 1.0625rem 1.25rem;
}

.single-related-product .section-title {
	font-size: 1.25rem;
	margin-bottom: .9375rem;
}

.single-related-product .product-item .price {
	margin-bottom: 0;
}

#footer {
	position: relative;
	z-index: 1;
	background: #1e425f;
	color: #fff;
}

.home #footer {
	margin-top: .9375rem;
}

.footer-layout-three:not(.home) #footer {
	box-shadow: none;
}

#footer .design-dev-info a {
	font-weight: 300;
}

#footer .design-dev-info a span {
	font-size: .75rem;
}

#footer .design-dev-info a img {
	width: 1.2em;
}

.footer-top {
	background: #1e425f;
}

.footer-middle {
	font-weight: 400;
	position: relative;
}

.footer-middle:before {
	content: "";
	position: absolute;
	top: auto;
	left: 2%;
	bottom: 4.375rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../images/footer-bg-mobile.png);
	width: 13rem;
	height: 14.375rem;
	background-position: 0 100%;
	z-index: -1;
}

.footer-middle a {
	color: #fff;
}

.footer-middle a:hover {
	color: #fff;
}

.footer-middle .widget-title {
	font-weight: 700;
}

.footer-newsletter {
	background: #eff1f4;
	padding: 1.4375rem 0 1.25rem;
}

.footer-newsletter .widget-title {
	font-weight: 700;
}

.footer-newsletter .input-row {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.footer-newsletter .input-row .input-label {
	position: absolute;
	top: .6875rem;
	margin: 0;
	line-height: 1;
	z-index: 9;
	-webkit-transition: top ease .3s, font-size ease .3s;
	transition: top ease .3s, font-size ease .3s;
	pointer-events: none;
	right: .6875rem;
	color: rgba(0, 0, 0, .8);
}

.footer-newsletter .input-row .input-wrap {
	position: relative;
}

.footer-newsletter .input-row .input-wrap.focused .input-label,
.footer-newsletter .input-row .input-wrap.populated .input-label {
	top: .15625rem;
	font-size: .6875rem;
}

.footer-newsletter .input-row .input-wrap .form-control {
	margin: 0;
	padding-inline: .6875rem;
}

.footer-newsletter .input-row .input-wrap .form-control::-webkit-input-placeholder {
	color: transparent;
}

.footer-newsletter .input-row .input-wrap .form-control:-ms-input-placeholder {
	color: transparent;
}

.footer-newsletter .input-row .input-wrap .form-control::placeholder {
	color: transparent;
}

.footer-newsletter .form-control {
	border-color: #0e293d;
	border-radius: 25px;
}

.footer-newsletter .check-wrap .wpcf7-form-control-wrap input[type="checkbox"]:checked+.wpcf7-list-item-label:before {
	z-index: 1;
	color: #fff;
	background-color: #0e293d;
}

.footer-about a:hover {
	text-shadow: none;
}

.footer-contact-info ul {
	margin-top: .5rem;
}

.footer-contact-info ul>li .icon-phone-alt:before {
	content: "\e903";
	font-family: "the-icomoon" !important;
}

.footer-contact-info ul>li .icon-email-vibez:before {
	content: "\e902";
	font-family: "the-icomoon" !important;
}

.footer-contact-info ul>li .icon-location-vibez:before {
	content: "\e90b";
	font-family: "the-icomoon" !important;
}

.footer-contact-info ul>li:not(.social-icon) .ico-wrap {
	font-size: .5625rem;
	background: #fff;
	border-radius: 50%;
	font-weight: 600;
	height: 1.25rem;
	width: 1.25rem;
	-ms-flex-preferred-size: 1.25rem;
	flex-basis: 1.25rem;
	min-width: 1.25rem;
	line-height: 1.5rem;
	margin-right: 0;
	margin-left: .3125rem;
}

.footer-contact-info .footer-contact-img {
	margin-block: 1.875rem;
}

.footer-contact-info .footer-contact-imgwrap {
	gap: 1.25rem;
}

.footer-bottom {
	background: #fff;
	z-index: 2;
	position: relative;
}

.footer-bottom .payment-info:empty {
	display: none;
}

.footer-info {
	background: #eff1f4;
	text-align: center;
	color: #575757;
	padding: .625rem .9375rem;
}

.footer-info span {
	font-weight: 600;
}

.footer-info .footer-info-content {
	margin-bottom: .3125rem;
}

.footer-info .footer-info-content p {
	margin-bottom: 0;
}

.footer-info .footer-info-content p:not(:last-child) {
	margin-bottom: .625rem;
}

.sticky-affiliate {
	cursor: pointer;
}

.sticky-affiliate * {
	pointer-events: none;
}

.sticky-affiliate.sticky-product-link {
	position: fixed;
	top: 65%;
	right: 20px;
	z-index: 9999;
}

.sticky-affiliate .tooltip {
	background: rgba(25, 25, 25, .9);
	border: 1px solid #1e425f;
	inset-inline-start: -.625rem;
	top: 120%;
	padding: 3px;
	border-radius: 5px;
	width: 200px;
	font-size: .75rem;
	font-weight: 700;
	opacity: 1;
	color: #fff;
	text-align: center;
}

.sticky-affiliate .tooltip .arrow {
	position: absolute;
	top: -17px;
	color: rgba(25, 25, 25, .9);
	inset-inline-start: 12px;
	font-size: 1rem;
}

.sticky-affiliate .tooltip label {
	margin-bottom: 0;
}

.sticky-affiliate .tooltip .generate-product-link {
	background: #1e425f;
	border: 1px solid #1e425f;
	color: #fff;
	padding: 5px;
	width: 100%;
	margin-top: 3px;
}

.sticky-affiliate .tooltip .generate-product-link:hover {
	color: #1e425f;
	background: #fff;
	border-color: #fff;
}

.sticky-affiliate .tooltip .copied-text-message {
	display: none;
}

.sticky-affiliate i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.sticky-affiliate i:before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	width: 1.25rem;
	height: 1.25rem;
	background-position: center;
}

.sticky-affiliate i.fa.fa-share-square-o:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.13em' height='1em' viewBox='0 0 576 512'%3E%3Cpath fill='%231e425f' d='M352 224h-46.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9l138.2 124.4c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32zM80 96c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-48c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112c0-44.2 35.8-80 80-80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32z'/%3E%3C/svg%3E");
}

.sticky-affiliate i.fa.fa-link:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.25em' height='1em' viewBox='0 0 640 512'%3E%3Cpath fill='%231e425f' d='M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l112.2-112.3c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0z'/%3E%3C/svg%3E");
}

.sticky-affiliate:not(:hover) .tooltip {
	opacity: 0;
	pointer-events: none;
}

.sticky-affiliate.sticky-product-link .tooltip {
	inset-inline-start: 0;
}

.sticky-affiliate.sticky-product-link i {
	background-color: #1e425f;
	border-radius: 50%;
	box-shadow: 0 2px 4px 0 lightgray;
	height: 2.5rem;
	width: 2.5rem;
}

.sticky-affiliate.sticky-product-link i.fa.fa-share-square-o:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.13em' height='1em' viewBox='0 0 576 512'%3E%3Cpath fill='white' d='M352 224h-46.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9l138.2 124.4c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32zM80 96c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-48c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112c0-44.2 35.8-80 80-80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32z'/%3E%3C/svg%3E");
}

.sticky-affiliate.sticky-product-link i.fa.fa-link:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.25em' height='1em' viewBox='0 0 640 512'%3E%3Cpath fill='white' d='M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l112.2-112.3c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0z'/%3E%3C/svg%3E");
}

.sticky-affiliate.sticky-product-link * {
	pointer-events: all;
}

@font-face {
	font-family: "the-icomoon";
	src: url("../fonts/icomoon/fonts/icomoon.eot?ggd0ek");
	src: url("../fonts/icomoon/fonts/icomoon.eot?ggd0ek#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?ggd0ek") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?ggd0ek") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?ggd0ek#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

@font-face {
	font-family: "SimplerPro";
	src: url("../fonts/SimplerPro-Regular.woff2") format("woff2"), url("../fonts/SimplerPro-Regular.woff") format("woff"), url("../fonts/SimplerPro-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "SimplerPro";
	src: url("../fonts/SimplerPro-Bold.woff2") format("woff2"), url("../fonts/SimplerPro-Bold.woff") format("woff"), url("../fonts/SimplerPro-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@media (hover: hover) {
	.f-button:hover:not([disabled]) {
		color: var(--f-button-hover-color);
		background-color: var(--f-button-hover-bg);
	}
}

@media (min-width: 576px) {
	.single-product-summary .product-price-wrap .price-per-unit {
		margin-top: 1px;
	}
}

@media (min-width: 768px) {
	.h1-layout {
		padding-inline: 20px;
	}

	.order-cancel-form .cancel-order-terms-conditions {
		margin-bottom: 40px;
	}

	#header .header-holder .btn-search-opener {
		min-width: 1.125rem;
		text-align: center;
	}

	.logo {
		width: 80px;
	}

	#primary-nav .mega-menu .submenu-holder>.sub-menu>li>a {
		font-weight: 700;
	}

	.header-action-nav {
		-ms-flex-preferred-size: 66%;
		flex-basis: 66%;
	}

	.header-action-nav .header-account a {
		font-size: 14px;
		margin-top: 0;
	}

	.header-action-nav .header-account a .account-username {
		font-size: 12px;
	}

	.header-action-nav .header-account .user_switching_switch_on_top {
		margin-left: 10px;
	}

	.header-action-nav .header-account .user_switching_switch_on_top .original_user_icon {
		display: none !important;
	}

	.user_switching_switch_on_top {
		margin-left: 17px;
	}

	.user_switching_switch_on_top a {
		font-size: .875rem;
		line-height: 1.5;
	}

	.user_switching_switch_on_top a.top_extra_nav {
		margin-inline: 15px;
	}

	.user_switching_switch_on_top .btn.btn-primary {
		margin-inline: 15px;
	}

	.user_switching_switch_on_top .btn.btn-primary:before {
		left: -15px;
	}

	.login-modal .modal-close,
	.register-modal .modal-close {
		font-size: 15px;
		top: 16px;
	}

	.rtl .login-modal .modal-close,
	.rtl .register-modal .modal-close {
		left: 16px;
	}

	.login-modal .modal-content,
	.register-modal .modal-content {
		max-width: calc(100% - 1.875rem);
	}

	.login-modal .modal-content,
	.register-modal .modal-content {
		margin: 0 auto;
		width: 707px;
		max-width: 707px;
	}

	.login-modal .modal-inner-frame,
	.register-modal .modal-inner-frame {
		max-width: 62%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 62%;
		flex: 0 0 62%;
		padding: 40px 60px 50px;
		font-size: 16px;
	}

	.login-modal .modal-title,
	.register-modal .modal-title {
		font-size: 28px;
		margin-bottom: 33px;
	}

	.login-modal .btn-wrap,
	.register-modal .btn-wrap {
		row-gap: 10px;
	}

	.login-modal .btn-wrap button,
	.register-modal .btn-wrap button {
		font-size: 16px;
	}

	.login-modal .btn-wrap,
	.register-modal .btn-wrap {
		margin-bottom: 20px;
		padding-top: 15px;
	}

	.login-modal .btn-wrap .btn-login,
	.register-modal .btn-wrap .btn-login {
		min-width: 100px;
	}

	.login-modal .modal-form-holder .form-title,
	.register-modal .modal-form-holder .form-title {
		margin-bottom: 15px;
	}

	.login-modal .modal-form-holder .modal-question,
	.register-modal .modal-form-holder .modal-question {
		margin-bottom: 12px;
	}

	.login-modal .regular-form .form-message,
	.register-modal .regular-form .form-message {
		margin-bottom: 10px;
	}

	.login-modal .modal-img,
	.register-modal .modal-img {
		max-width: 38%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 38%;
		flex: 0 0 38%;
	}

	.register-pop-wrapper {
		padding-bottom: 18px;
	}

	.product-item .matat-wishlist-button-wrap {
		left: auto;
		right: 9px;
	}

	.product-item .product-img {
		margin-bottom: 16px;
	}

	.product-item .product-img .custom-image-badge {
		bottom: 3px;
		right: 5px;
	}

	.product-item .price-per-unit {
		font-size: 14px;
		padding-bottom: 6px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.product-item .product-detail:has(.custom-image-badge) {
		padding-inline: 45px;
	}

	.product-item .product-detail:has(.custom-image-badge) .custom-image-badge {
		width: 42px;
	}

	.hero-banner+.best-selling-section:before {
		width: 325px;
	}

	.home-layout-three .box-content {
		max-width: 56%;
		padding: 10px 25px;
		right: 0;
	}

	.home-layout-three .box-content .box-title {
		font-size: 24px;
	}

	.home-layout-three .col-item {
		padding-inline: 0 !important;
		margin-inline: 9px;
	}

	.home-layout-three+.best-selling-section:before {
		width: 325px;
	}

	.home-layout-two+.collection-banner:before {
		bottom: auto;
		width: 325px;
		height: 500px;
		top: 5%;
		background: url(../images/bg3.png) no-repeat;
	}

	.home-layout-two .col-item img {
		aspect-ratio: 1437 / 401;
	}

	.collection-banner {
		padding-right: 0;
	}

	.collection-banner .collection-content {
		text-align: right;
	}

	.collection-banner .collection-content .collection-inner .section-title {
		text-align: right;
	}

	.collection-banner .img-wrap img {
		border-radius: 250px 0 0 250px;
	}

	.collection-banner.flex-md-row-reverse {
		padding-left: 0;
		padding-right: 20px;
	}

	.collection-banner.flex-md-row-reverse .img-wrap img {
		border-radius: 0 250px 250px 0;
	}

	.collection-banner+.collection-banner:before {
		bottom: auto;
		top: 15%;
		background: url(../images/bg4.png) no-repeat;
		width: 325px;
		height: 500px;
	}

	.blog-item .blog-detail {
		padding-top: 12px;
	}

	.blog-item .link_read_more {
		font-size: 16px;
	}

	.single-product-detail .position-absolute.d-none.d-md-block:has(.matat-wishlist-button-wrap) {
		right: 7.25rem;
	}

	.single-product-detail .single-slider-wrapper {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	.single-product-detail .single-slider-wrapper .single-product-slider:not(.no_slide_thumb) {
		-ms-flex-preferred-size: calc(100% - 6.625rem);
		flex-basis: calc(100% - 6.625rem);
		max-width: calc(100% - 6.625rem);
	}

	.single-product-detail .single-slider-wrapper .single-product-slider .slick-arrow {
		opacity: 1;
		visibility: visible;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider {
		padding-left: 1.4375rem;
		-ms-flex-preferred-size: 6.625rem;
		flex-basis: 6.625rem;
		max-width: 6.625rem;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider .slide {
		padding: 0 0 7px;
	}

	.single-product-summary {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	.single-product-summary .product-price {
		margin-bottom: 0;
	}

	.single-product-summary .product-price-wrap .price-per-unit {
		font-size: 14px;
	}

	.single-product-summary .product-detail-header {
		border-bottom: 1px solid #c9c9c9;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.single-product-summary .product-detail-header .oos_button_single {
		width: 50px;
		margin-left: 0;
	}

	.single-product-summary .product-detail-header:has(.oos_button_single) .product_title {
		width: calc(100% - 50px);
	}

	.single-product-summary .woocommerce-product-details__short-description {
		padding-bottom: 15px;
	}

	.single-product-summary .stock-alert-row .input-wrap:before {
		margin-right: 3px;
	}

	.single-product .variation-bundle-selection {
		gap: 15px;
		padding: 20px 0;
	}

	.single-product .variation-bundle-selection .variation_wrapper+.add-to-cart-btn {
		padding-top: 5px;
	}

	.single-product .single_detail_variations_form {
		max-width: 100%;
	}

	.single-product .single_detail_variations_form .variations_main td.label {
		font-size: 14px;
		padding-left: 10px;
	}

	.single-product-detail-container>.single-product-container:not(.no_slide_thumb) .single-slider-wrapper>[class*="-label"] {
		left: 0;
		right: auto;
	}

	.single-product-detail-container .no_slide_thumb .single-product-detail .position-absolute:has(.matat-wishlist-button-wrap) {
		right: 20px !important;
	}

	.single-product-detail-container .product-share-sc {
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
		max-width: max-content;
	}

	.oos_button_single {
		bottom: 17pxpx;
		right: 16px;
		width: 70px;
		height: 70px;
	}

	.btn-holder .icons-text-section {
		padding-top: 30px;
		padding-bottom: 0;
		margin-top: -1px;
	}

	.icons-text-section {
		margin-top: -1px;
		padding-block: 20px;
		max-width: 408px;
	}

	.icons-text-section .icons-row {
		max-width: 408px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.icons-text-section .icons-row .text-wrap {
		margin-top: 3px;
		font-size: 14px;
	}

	.product-faqs-image-wrapper {
		padding-bottom: 10px;
	}

	.product-faqs-image-wrapper .product-faqs-wrapper,
	.product-faqs-image-wrapper .faq-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content {
		font-size: .875rem;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content .section-title {
		margin-bottom: 18px;
		font-size: 20px;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content .tab-item a[data-toggle="collapse"] {
		padding: 16px 0;
		font-size: 16px;
	}

	.group-product-wrap {
		max-width: 408px;
	}

	.group-product-wrap .group-product-title {
		font-size: 16px;
		margin-bottom: 19px;
	}

	.group-product-wrap > ul > li {
		padding-block: 12px;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-count {
		-ms-flex-preferred-size: 22%;
		flex-basis: 22%;
		max-width: 22%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-count .count-text {
		max-width: 25px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25px;
		flex: 0 0 25px;
	}

	.group-product-wrap>ul>li .group-product-item .group-product-count span {
		font-size: 16px;
	}

	.group-product-wrap>ul>li .group-product-item .product-price-wrap {
		max-width: 150px;
	}

	.group-product-wrap>ul>li .group-product-item .product-price {
		font-size: 16px;
	}

	.group-product-wrap>ul>li .group-product-item .matat_sale_discount {
		font-size: 14px;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-pricing {
		-ms-flex-preferred-size: 44%;
		flex-basis: 44%;
		max-width: 44%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap {
		-ms-flex-preferred-size: 34%;
		flex-basis: 34%;
		max-width: 34%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap .btn {
		padding: .67rem .4rem;
		font-size: 14px;
	}

	.group-product-wrap+.product-tab-info .tab-content .tab-item:first-child {
		border-top: none;
	}

	.product-extra-section-wrapper {
		padding-block: 30px;
		margin-block: 20px 0;
		padding-inline: 30px;
	}

	.product-extra-section-wrapper h2 {
		font-size: 20px;
	}

	.product-extra-section-wrapper .main-content-paragraph {
		font-size: 14px;
	}

	.product-extra-section-wrapper .main-content-paragraph ol {
		padding-right: 35px;
	}

	.product-extra-section-wrapper .main-content-paragraph .custom-gallery-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 30px;
	}

	.product-extra-section-wrapper .main-content-paragraph .custom-gallery-wrapper .gallery-item {
		text-align: center;
		max-width: calc(33.33% - 20px);
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(33.33% - 20px);
		flex: 0 0 calc(33.33% - 20px);
	}

	.product-extra-section-wrapper .main-content-paragraph .custom-gallery-wrapper .gallery-item .gallery-caption {
		margin-top: 10px;
	}

	.product-extra-section-wrapper .main-content-paragraph iframe {
		max-width: 80%;
	}

	.button-pdf-exist-wrapper a {
		font-size: 16px;
	}

	.vdo-slider-section {
		margin-bottom: 40px;
	}

	.vdo-slider-section .section-title {
		margin-bottom: 15px;
	}

	.vdo-slider-section .vdo-slider {
		width: 25%;
		padding-inline: 7.5px;
	}

	.vdo-slider-section .vdo-slider .vdo-item {
		border-radius: 10px;
	}

	.vdo-slider-section .vdo-btn-holder .vdo-play-btn {
		width: 60px;
		height: 60px;
	}

	.vdo-slider-section .vdo-btn-holder .vdo-play-btn::before {
		border-top-width: 12px;
		border-bottom-width: 12px;
		border-left-width: 16px;
	}

	.vdo-slider-section .flickity-prev-next-button {
		background: #fff;
	}

	.fancybox__container .fancybox__content {
		border-radius: 10px;
	}

	.fancybox__container .fancybox__content iframe {
		border-radius: 10px;
	}

	.vdo-slider-section .vdo-slider-holder:not(.flickity-enabled) {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.user-info-container .woocommerce-MyAccount-navigation .myaccount-menu>li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--user-switching-switch-back a {
		font-size: 14px;
		line-height: 1.5;
		padding: .5625rem;
		margin-block: 10px;
	}

	.custom-account-message {
		margin-top: 15px;
	}

	.matat_thankyou_page_hooks_payment_gateway {
		padding-bottom: 23px;
	}

	.map-search {
		max-width: 600px;
		margin: 0 auto 42px;
	}

	.map-search h1 {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.map-search .map-search-wrap .input-group {
		gap: 20px;
	}

	.map-search .map-search-wrap .input-group .icon-search {
		left: 20px;
	}

	.rtl .map-search .map-search-wrap .input-group .icon-search {
		right: 20px;
	}

	.map-search .map-search-wrap .input-group .icon-search {
		margin-bottom: .875rem;
		font-size: .875rem;
	}

	.map-search .map-search-wrap .input-group .form-control {
		font-size: 14px;
		padding-right: 43px;
	}

	.map-search .map-search-wrap .input-group .input-group-append {
		max-width: 100px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100px;
		flex: 0 0 100px;
	}

	.map-search .map-search-wrap .input-group .input-group-append .btn-search {
		padding: .5rem;
		font-size: 14px;
	}

	.map-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.map-wrap .map-section {
		margin-bottom: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 72.5%;
		flex: 0 0 72.5%;
		max-width: 72.5%;
	}

	.map-wrap .map-section #map {
		min-height: 600px;
	}

	.map-wrap .map-infowrap {
		margin-bottom: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 27.5%;
		flex: 0 0 27.5%;
		max-width: 27.5%;
		max-height: 600px;
		border: solid #c9c9c9;
		border-width: 0 1px 1px 0;
	}

	.map-wrap .map-infowrap::-webkit-scrollbar {
		width: 5px;
	}

	.map-infoitem {
		padding: 16px 20px 20px;
	}

	.map-infoitem h2 {
		font-size: 14px;
		margin-bottom: 13px;
	}

	.map-infoitem ul li {
		font-size: 14px;
	}

	.map-infoitem ul li:not(:last-child) {
		margin-bottom: 9px;
	}

	.map-infoitem ul.waze-active li:nth-child(n-1) {
		margin-bottom: 0;
	}

	.map-infoitem .product-tags-wrap {
		margin-top: 10px;
	}

	.map-infoitem .ico-wrap {
		font-size: 9px;
		height: 15px;
		width: 15px;
		-ms-flex-preferred-size: 15px;
		flex-basis: 15px;
		min-width: 15px;
		line-height: 17px;
		margin-left: 10px;
	}

	.verification-message {
		font-size: 14px;
	}

	.delivery-option label .method-detail:has(.tooltip-wrap) .method-title,
	.payment-option label .method-detail:has(.tooltip-wrap) .method-title {
		padding-left: 20px;
	}

	.delivery-option label .method-detail .tooltip-wrap .tooltip-icon,
	.payment-option label .method-detail .tooltip-wrap .tooltip-icon {
		height: 20px;
		width: 20px;
	}

	.delivery-option label .method-detail .tooltip-wrap .tooltip-desc,
	.payment-option label .method-detail .tooltip-wrap .tooltip-desc {
		font-size: 14px;
		padding: 10px;
		margin-left: 40px;
		max-width: 200px;
		width: 200px;
	}

	.delivery-option label .method-detail .tooltip-wrap .tooltip-desc:before,
	.payment-option label .method-detail .tooltip-wrap .tooltip-desc:before {
		left: 30px;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-right: 10px solid #eff1f4;
	}

	.custom-donation-holder {
		margin-block: -9px 28px;
		padding: 18px 15px 20px;
		border-radius: 20px;
		font-size: 14px;
	}

	.custom-donation-holder h2 {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.custom-donation-holder p {
		margin-bottom: 8px;
	}

	.custom-donation-holder .donation-icons {
		margin-bottom: 13px;
		-webkit-column-gap: 15px;
		column-gap: 15px;
	}

	.custom-donation-holder .donation-icons img {
		max-height: 71px;
	}

	.custom-donation-holder .product-donation-amount-wrapper {
		margin-bottom: 10px;
	}

	.custom-donation-holder .product-donation-amount-wrapper .input-text {
		height: 34px;
		min-width: 60px;
	}

	.custom-donation-holder .add_to_cart_donation_button {
		width: 100%;
		max-width: 350px;
		font-size: 16px;
		height: 45px;
	}

	.steps-container {
		padding-inline: 20px;
		padding-block: 30px;
	}

	.steps__navigation {
		padding: 0 30px 30px;
		margin-block: 30px;
	}

	.step {
		padding: 20px 0 0;
	}

	.step .next-btn {
		font-size: 16px;
		min-width: 200px;
		height: 45px;
		margin-top: 37px;
	}

	.step .step__text {
		font-size: 14px;
	}

	.step.step--1 .col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.step.step--1 .col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.step.step--3 .batch__wrap {
		padding-top: 4px;
	}

	.step.step--3 .step__product__info .info {
		margin-block: 26px 21px;
	}

	.step .btn-link {
		font-size: 16px;
		margin-top: 30px;
	}

	.step__nav {
		font-size: 20px;
	}

	.step__nav:before {
		background-size: auto 17px;
		width: 40px;
		height: 40px;
		min-width: 40px;
		margin-left: 13px;
	}

	.step__nav:before {
		margin-left: 20px;
	}

	.step__search {
		max-width: 491px;
		width: 491px;
	}

	.step__search .form-control {
		height: 45px;
		padding: 10px 20px;
	}

	.step__product__wrapper {
		margin: -25px 0 0;
		padding-block: 40px 10px;
		border-radius: 0 0 25px 25px;
		max-width: 491px;
		width: 491px;
	}

	.step__product__item {
		padding: 4px 13px;
	}

	.step__product__item .step__product__img {
		width: 62px;
		height: 62px;
	}

	.step__product__item .step__product__detail h3 {
		font-size: 16px;
		padding-right: 15px;
	}

	.step__product__info {
		margin-top: 28px;
	}

	.step__product__info h2 {
		font-size: 26px;
		margin-bottom: 27px;
	}

	.step__product__info img {
		max-width: 238px;
		max-height: 238px;
		margin-bottom: 26px;
	}

	.step__product__info .info {
		font-size: 16px;
		margin-bottom: 26px;
	}

	.step__product__info .info.info--title {
		font-size: 20px;
		margin-block: .625rem;
	}

	.batch__wrap ul li {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.batch__wrap ul li:before {
		font-size: 24px;
	}

	.batch__wrap ul li:not(:last-child) {
		margin-bottom: 20px;
	}

	.single.single-post #wrapper {
		overflow: initial;
	}

	.single.single-post.single-product-layout-two:not(.single_gallery_size_big):not(.page) .woocommerce-breadcrumb.article_breadcrumb {
		padding-block: 21px 28px;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider {
		margin-inline: -15px;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider .slide {
		-ms-flex-preferred-size: 33.33%;
		flex-basis: 33.33%;
		max-width: 33.33%;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider .slide .blog-item {
		margin-inline: 15px;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider .slide .blog-item .blog-detail {
		padding-top: 13px;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-blogs-slider .slide .blog-item .blog-title {
		margin-bottom: 10px;
	}

	.page_wrapper_article .page-header-article {
		margin-bottom: 23px;
	}

	.page_wrapper_article .page-header-article .page-title {
		font-size: 30px;
		margin-top: 0;
	}

	.single-article-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.single-wrap-left-inner {
		max-width: 21.25rem;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 21.25rem;
		flex: 0 0 21.25rem;
	}

	.single-wrap-right-inner {
		-ms-flex-preferred-size: calc(100% - 21.25rem);
		flex-basis: calc(100% - 21.25rem);
		max-width: calc(100% - 21.25rem);
		padding-left: 30px;
	}

	.single-related-product {
		padding: 30px 20px;
		position: sticky;
		top: 208px;
		margin-bottom: 40px;
	}

	.single-related-product .section-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.home #footer {
		margin-top: 10px;
		overflow: initial;
	}

	#footer .design-dev-info {
		margin: 0 auto 0 0;
	}

	#footer .design-dev-info a span {
		font-size: .875rem;
	}

	.footer-middle:before {
		background-image: url(../images/footer-bg.png);
		height: 340px;
		width: 340px;
		top: 50%;
		left: 1%;
		bottom: auto;
	}

	.footer-middle a[data-text] {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.footer-middle a[data-text]:hover {
		font-weight: 700;
	}

	.footer-middle a[data-text]:after {
		content: attr(data-text);
		content: attr(data-text)/"";
		height: 0;
		visibility: hidden;
		overflow: hidden;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		pointer-events: none;
		font-weight: 700;
	}

	.footer-newsletter {
		padding: 24px 0;
	}

	.footer-newsletter .input-row {
		gap: 20px;
		margin-bottom: 10px;
	}

	.footer-newsletter .input-row .input-label {
		right: 10px;
		top: 1rem;
	}

	.footer-newsletter .input-row .input-wrap.focused .input-label,
	.footer-newsletter .input-row .input-wrap.populated .input-label {
		top: .1875rem;
		font-size: .875rem;
	}

	.footer-newsletter .input-row .input-wrap .form-control {
		height: 45px;
		padding-inline: 10px;
	}

	.footer-newsletter .input-row .btn-wrap .btn {
		height: 45px;
	}

	.footer-about {
		padding-top: 0;
	}

	.footer-about .footer-logo {
		width: 147px;
	}

	.footer-contact-info ul>li:not(.social-icon) .ico-wrap {
		font-size: 12px;
		height: 20px;
		width: 20px;
		-ms-flex-preferred-size: 20px;
		flex-basis: 20px;
		min-width: 20px;
		line-height: 20px;
		margin-left: 10px;
	}

	.footer-contact-info .footer-contact-img {
		margin-block: 18px 30px;
	}

	.footer-info {
		font-size: 14px;
		padding: 20px;
	}

	.footer-info .footer-info-content {
		margin-bottom: 5px;
	}

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

	.sticky-affiliate.sticky-product-link {
		right: 15px;
	}

	.sticky-affiliate .tooltip {
		font-size: 14px;
	}

	.sticky-affiliate .tooltip .arrow {
		inset-inline-start: 20px;
	}

	.sticky-affiliate i:before {
		height: 30px;
		width: 30px;
	}

	.sticky-affiliate.sticky-product-link i {
		height: 50px;
		width: 50px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.logo {
		right: 110px;
	}

	.product-faqs-image-wrapper .product-faqs-wrapper {
		padding: 30px;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content .tab-item {
		padding-left: 15px;
	}
}

@media (min-width: 992px) {
	.h1-layout {
		padding-inline: 45px;
	}

	.logo {
		width: 116px;
	}

	#primary-nav {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	#primary-nav .primary-menu>li.menu-item-has-children>a:before {
		margin-top: 0;
	}

	.logged-in .header-holder:has(.user_switching_switch_on_top) #primary-nav {
		-ms-flex-preferred-size: 45%;
		flex-basis: 45%;
		max-width: 45%;
	}

	.header-action-nav {
		-ms-flex-preferred-size: calc(25% - 3.25rem);
		flex-basis: calc(25% - 3.25rem);
	}

	.logged-in .header-action-nav:has(.user_switching_switch_on_top) {
		margin-right: auto;
		-ms-flex-preferred-size: calc(37% - .0625rem);
		flex-basis: calc(37% - .0625rem);
	}

	.user_switching_switch_on_top {
		margin-left: 10px;
	}

	.user_switching_switch_on_top a {
		font-size: 1.125rem;
	}

	.header-mini-cart .minicart-upsell-slider.slick-slider .slick-arrow {
		top: 89px;
	}

	.product-item .matat-wishlist-button-wrap {
		left: auto;
		right: .5625rem;
	}

	.hero-banner+.best-selling-section:before {
		width: 400px;
	}

	.home-layout-three .box-content {
		padding: 13px 30px;
		max-width: 46%;
	}

	.home-layout-three .col-item {
		margin-inline: 11px;
	}

	.home-layout-three+.best-selling-section:before {
		width: 340px;
	}

	.home-layout-two+.collection-banner:before {
		width: 400px;
	}

	.collection-banner .collection-content {
		padding: 0 30px 0 0;
		-ms-flex-preferred-size: 37%;
		flex-basis: 37%;
		max-width: 37%;
	}

	.collection-banner .collection-content .collection-inner {
		max-width: 440px;
	}

	.collection-banner .collection-content .collection-inner .section-title {
		max-width: 440px;
	}

	.collection-banner .collection-content .collection-inner .section-title {
		margin-bottom: 19px;
	}

	.collection-banner .collection-content .collection-inner .text {
		line-height: 1.35;
		padding-bottom: 10px;
	}

	.collection-banner .img-wrap {
		-ms-flex-preferred-size: 63%;
		flex-basis: 63%;
		max-width: 63%;
	}

	.collection-banner.flex-md-row-reverse {
		padding-right: 45px;
	}

	.collection-banner.flex-md-row-reverse .collection-content {
		padding: 0 0 0 30px;
	}

	.collection-banner+.collection-banner:before {
		width: 400px;
	}

	.blog-item .blog-title {
		font-size: 20px;
	}

	.single-product-layout-two:not(.single_gallery_size_big):not(.page) .woocommerce-breadcrumb {
		padding-top: 19px;
		padding-bottom: 42px;
	}

	.single-product-detail .position-absolute.d-none.d-md-block:has(.matat-wishlist-button-wrap) {
		right: 7.875rem;
	}

	.single-product-summary {
		padding-right: 25px;
	}

	.single-product .single_detail_variations_form .variations_main .jcf-select {
		height: 40px;
	}

	.single-product .single_detail_variations_form .variations_main .jcf-select .jcf-select-text {
		line-height: 40px;
	}

	.icons-text-section .icons-row {
		margin-inline: auto;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content .section-title {
		font-size: 24px;
		margin-bottom: 29px;
	}

	.group-product-wrap > ul > li .group-product-item {
		margin-inline: -5px;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-count,
	.group-product-wrap > ul > li .group-product-item .group-product-pricing,
	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap {
		padding-inline: 5px;
	}

	.group-product-wrap>ul>li .group-product-item .group-product-count .count-text {
		max-width: 38px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 36px;
		flex: 0 0 36px;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-pricing {
		-ms-flex-preferred-size: 40%;
		flex-basis: 40%;
		max-width: 40%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap {
		-ms-flex-preferred-size: 38%;
		flex-basis: 38%;
		max-width: 38%;
	}

	.product-extra-section-wrapper {
		padding-block: 40px;
		padding-inline: 45px;
		margin-block: 30px 10px;
	}

	.product-extra-section-wrapper h2 {
		font-size: 22px;
	}

	.vdo-slider-section {
		margin-bottom: 50px;
	}

	.vdo-slider-section .section-title {
		margin-bottom: 18px;
	}

	.vdo-slider-section .vdo-slider {
		width: 16.667%;
	}

	.shop-products-row .product-col,
	.shop-products-row .archive-col {
		margin-bottom: 35px;
	}

	.user-info-container .woocommerce-MyAccount-navigation .myaccount-menu>li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--user-switching-switch-back a {
		font-size: 16px;
		padding: .4375rem .625rem .375rem;
	}

	.matat_thankyou_page_hooks_payment_gateway {
		padding-bottom: 30px;
	}

	.page-template-map .woocommerce-breadcrumb {
		padding: 17px 45px 0;
	}

	.map-outerwrap {
		padding: 23px 0 80px;
		max-width: 830px;
		margin-inline: auto;
	}

	.map-search .map-search-wrap .input-group .icon-search {
		margin-bottom: 1rem;
		font-size: .9375rem;
	}

	.checkout-container .shipping-method-holder .mini-cart-upsell .minicart-upsell-slider.slick-slider .slick-arrow {
		top: calc(var(--image-height, 150px) / 2);
	}

	.steps-container {
		padding-inline: 45px;
		padding-block: 40px;
	}

	.steps__navigation {
		padding: 0 40px 40px;
		margin-block: 35px 40px;
	}

	.step {
		padding: 27px 0 0;
	}

	.step .step__text p {
		margin-bottom: 21px;
	}

	.step.step--1 .col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 53%;
		flex: 0 0 53%;
		max-width: 53%;
	}

	.step.step--1 .col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%;
		max-width: 47%;
	}

	.single-wrap-right-inner {
		padding-left: 66px;
	}

	.home #footer {
		margin-top: 15px;
	}

	.footer-middle:before {
		top: 3%;
	}

	.footer-middle .container {
		margin-right: 0;
	}

	.footer-middle .links-col {
		-ms-flex-pack: distribute;
		justify-content: space-around;
		padding: 0 0 0 6%;
	}

	.footer-newsletter {
		-ms-flex-preferred-size: 490px;
		flex-basis: 490px;
	}

	.footer-newsletter .wpcf7 {
		max-width: 490x;
		-ms-flex-preferred-size: 490x;
		flex-basis: 490x;
	}

	.footer-newsletter .input-row {
		gap: 25px;
	}

	.footer-newsletter .input-row .input-label {
		right: 15px;
		font-size: 16px;
	}

	.footer-newsletter .input-row .input-wrap .form-control {
		padding-inline: 15px;
	}

	.footer-about .footer-logo {
		margin-bottom: 21px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.footer-middle .container {
		padding-left: 35.5%;
	}
}

@media (min-width: 1200px) {
	.h1-layout {
		padding-inline: 60px;
	}

	#matat-club-register-popup .matat-member-popup-wrapper.has_club_banner .popup-frame .club-left-col {
		padding-inline: 42px;
	}

	.redeem-earning-points {
		max-width: 465px;
	}

	#header .header-holder {
		padding-inline: 75px;
	}

	#primary-nav {
		-ms-flex-preferred-size: 56%;
		flex-basis: 56%;
		max-width: 56%;
	}

	#primary-nav .primary-menu>li>a {
		font-size: 16px;
	}

	.header-holder {
		padding-inline: 40px;
	}

	.logged-in .header-holder:has(.user_switching_switch_on_top) #primary-nav {
		-ms-flex-preferred-size: 40%;
		flex-basis: 40%;
		max-width: 40%;
	}

	.header-action-nav {
		-ms-flex-preferred-size: calc(22% - 3.25rem);
		flex-basis: calc(22% - 3.25rem);
	}

	.header-action-nav .header-account a {
		font-size: 16px;
	}

	.logged-in .header-action-nav:has(.user_switching_switch_on_top) {
		-ms-flex-preferred-size: calc(45% - .625rem);
		flex-basis: calc(45% - .625rem);
	}

	.user_switching_switch_on_top {
		margin-left: 17px;
	}

	.header-mini-cart .minicart-upsell-slider.slick-slider .slick-arrow {
		top: 85px;
	}

	.hero-banner+.best-selling-section:before {
		width: 465px;
	}

	.home-layout-three .col-item {
		margin-inline: 13px;
	}

	.home-layout-three+.best-selling-section:before {
		width: 415px;
	}

	.home-layout-two+.collection-banner:before {
		width: 465px;
	}

	.collection-banner .collection-content {
		padding: 0 63px 0 0;
	}

	.collection-banner.flex-md-row-reverse {
		padding-right: 60px;
	}

	.collection-banner.flex-md-row-reverse .collection-content {
		padding: 0 0 0 63px;
	}

	.collection-banner+.collection-banner:before {
		width: 465px;
	}

	.single-product-detail .single-slider-wrapper {
		-ms-flex-preferred-size: 51.6%;
		flex-basis: 51.6%;
		max-width: 51.6%;
	}

	.single-product-summary {
		-ms-flex-preferred-size: 48.4%;
		flex-basis: 48.4%;
		max-width: 48.4%;
		padding-right: 40px;
	}

	.single-product-summary .product-price {
		font-size: 24px;
	}

	.single-product-summary .product-price-wrap {
		gap: 8px;
	}

	.single-product-summary .product-detail-header {
		max-width: 465px;
	}

	.single-product-summary .woocommerce-product-details__short-description {
		max-width: 465px;
	}

	.single-product-summary .produc-misc-info,
	.single-product-summary .stock-alert-row {
		max-width: 465px;
	}

	.single-product-summary .add-to-cart-btn,
	.single-product-summary .btn-holder.single_p_add_cart {
		max-width: 465px;
	}

	.product-tab-info .tab-content {
		max-width: 465px;
	}

	.product-tab-info .tab-content a[data-toggle="collapse"] {
		font-size: 14px;
	}

	.single-product-detail-container > .single-product-container {
		max-width: 80rem;
	}

	.icons-text-section {
		max-width: 465px;
	}

	.icons-text-section .icons-row {
		max-width: 465px;
	}

	.product-faqs-image-wrapper {
		padding-bottom: 20px;
	}

	.group-product-wrap {
		max-width: 465px;
	}

	.group-product-wrap > ul > li .group-product-item {
		margin-inline: -10px;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-count,
	.group-product-wrap > ul > li .group-product-item .group-product-pricing,
	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap {
		padding-inline: 10px;
	}

	.group-product-wrap>ul>li .group-product-item .product-price-wrap {
		max-width: 180px;
	}

	.product-extra-section-wrapper {
		padding-block: 60px;
		margin-block: 40px 20px;
		padding-inline: 100px;
	}

	.product-extra-section-wrapper h2 {
		font-size: 24px;
	}

	.vdo-slider-section {
		margin-bottom: 60px;
	}

	.vdo-slider-section .section-title {
		margin-bottom: 22px;
	}

	.fancybox__container .fancybox__content>.f-button.is-close-btn {
		top: 0;
		right: -40px;
	}

	.shop-page-container .archive-heading-wrap {
		margin-bottom: 26px;
	}

	.steps-container {
		padding-inline: 60px;
		padding-block: 50px;
	}

	.steps__navigation {
		padding: 0 57px 40px;
	}

	.home #footer {
		margin-top: 30px;
	}

	.footer-middle .links-col {
		padding: 0 11%;
	}

	.footer-newsletter .container {
		max-width: 840px;
	}

	.footer-newsletter .widget-title {
		-ms-flex-preferred-size: calc(100% - 440px);
		flex-basis: calc(100% - 440px);
		max-width: calc(100% - 440px);
		font-size: 30px;
	}

	.footer-about {
		max-width: 148px;
	}
}

@media (min-width: 1200px) and (max-width: 1299.98px) {
	.footer-middle .container {
		padding-left: 22.5%;
	}
}

@media (min-width: 1300px) {
	.h1-layout {
		padding-inline: 75px;
	}

	.header-holder {
		padding-inline: 75px;
	}

	.logged-in .header-holder:has(.user_switching_switch_on_top) #primary-nav {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}

	.logged-in .header-action-nav:has(.user_switching_switch_on_top) {
		-ms-flex-preferred-size: calc(35% - .625rem);
		flex-basis: calc(35% - .625rem);
	}

	.hero-banner {
		margin-bottom: 30px;
	}

	.best-selling-section {
		padding-block: 30px;
	}

	.home-layout-three {
		padding-block: 30px;
	}

	.home-layout-three .col-item {
		margin-inline: 15px;
	}

	.home-layout-three+.best-selling-section:before {
		width: 465px;
	}

	.home-layout-two {
		padding-block: 30px;
	}

	.collection-banner {
		padding-block: 30px;
	}

	.collection-banner.flex-md-row-reverse {
		padding-right: 75px;
	}

	.single-product .single_detail_variations_form .variations_main td.label {
		width: 13%;
	}

	.single-product-detail-container > .single-product-container {
		max-width: 69.5rem;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-count {
		-ms-flex-preferred-size: 24%;
		flex-basis: 24%;
		max-width: 24%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-pricing {
		-ms-flex-preferred-size: 36%;
		flex-basis: 36%;
		max-width: 36%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap {
		-ms-flex-preferred-size: 40%;
		flex-basis: 40%;
		max-width: 40%;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap .btn {
		padding: .67rem .4rem;
	}

	.product-extra-section-wrapper {
		padding-inline: 130px;
	}

	.archive .woocommerce-breadcrumb {
		padding-block: 20px 37px;
	}

	.steps-container {
		padding-inline: 75px;
		padding-block: 53px;
	}

	.footer-middle:before {
		top: 2%;
	}
}

@media (min-width: 1300px) and (max-width: 1439.98px) {
	.footer-middle .container {
		padding-left: 22.5%;
	}
}

@media (min-width: 1440px) {
	.single-product-summary {
		padding-right: 62px;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-btnwrap .btn {
		font-size: 16px;
	}

	.vdo-slider-section .vdo-slider {
		width: 12.5%;
	}
}

@media (min-width: 1920px) {
	.collection-banner .img-wrap {
		border-radius: 350px 0 0 350px;
	}

	.collection-banner .img-wrap img {
		border-radius: 350px 0 0 350px;
	}

	.collection-banner.flex-md-row-reverse .img-wrap {
		border-radius: 0 350px 350px 0;
	}

	.collection-banner.flex-md-row-reverse .img-wrap img {
		border-radius: 0 350px 350px 0;
	}

	.checkout-container .checkout-left .breadcrumb-container {
		padding-right: 53px;
	}

	.custom-donation-holder .product-donation-amount-wrapper .input-text {
		min-width: 80px;
	}
}

@media (max-width: 991.98px) {
	.home-layout-two .col-item img[src*="2כפתור-בבאנר.webp"] {
		max-height: 2.5rem;
	}
}

@media (max-width: 767.98px) {
	#header .mobile-account-menu .user_switching_switch_on_top .sticky-affiliate {
		-webkit-margin-start: .3125rem;
		margin-inline-start: .3125rem;
	}

	#header .mobile-account-menu {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		height: 2.625rem;
	}

	#header .mobile-account-menu a {
		color: #0e293d;
		font-weight: 400;
		padding: .71875rem 1.09375rem;
	}

	#header .mobile-account-menu a i {
		padding-left: .625rem;
	}

	#header .header-holder {
		box-shadow: none;
	}

	.user_switching_switch_on_top {
		margin-inline: .625rem;
	}

	.user_switching_switch_on_top a {
		font-size: .75rem;
	}

	.user_switching_switch_on_top .btn.btn-primary {
		font-size: .75rem;
		padding: .3125rem .625rem !important;
		margin-inline: .625rem;
	}

	.login-modal .modal-form-holder .btn,
	.register-modal .modal-form-holder .btn {
		line-height: 1.235;
	}

	.login-modal .modal-form-holder .form-title,
	.register-modal .modal-form-holder .form-title {
		font-size: .9375rem;
	}

	.login-modal .social-login,
	.register-modal .social-login {
		padding-top: .9375rem;
	}

	.product-item .product-img .custom-image-badge img {
		width: 40px;
		height: 40px;
	}

	.product-item .product-detail {
		padding: 0;
	}

	.hero-banner .video-frame.mobile_video {
		padding-bottom: 55.46%;
	}

	.best-selling-section .best-selling-slider.has_slider .product-col {
		min-width: 12.1875rem;
		max-width: 12.1875rem;
	}

	.home-layout-three .col-item {
		margin-bottom: .9375rem;
	}

	.home-layout-two .col-item img[src*="2כפתור-בבאנר.webp"] {
		max-height: 2.375rem;
	}

	.collection-banner .collection-content {
		font-size: .75rem;
	}

	.collection-banner .collection-content .collection-inner .section-title {
		margin-bottom: .5rem;
	}

	.collection-banner .img-wrap {
		margin-bottom: .5rem;
	}

	.blog-item .blog-title {
		margin-bottom: 0;
		font-size: .875rem;
	}

	.section-blogs-slider .blog-item {
		margin: 0 .46875rem;
	}

	.logos-layout-section {
		padding-right: 0;
	}

	.page_wrapper_article .single-article-container iframe {
		height: 100%;
	}

	.contactus-form-inner-holder .row {
		width: 100%;
		margin-inline: 0;
	}

	.woocommerce-breadcrumb {
		padding-block: .8125rem .625rem;
	}

	.single-product .woocommerce-breadcrumb {
		display: none;
	}

	.single-product-detail .single-slider-wrapper .single-product-slider .vimeo-wrap::before {
		display: none;
	}

	.single-product-detail .single-slider-wrapper .single-product-slider .button-zoom {
		bottom: .625rem;
	}

	.single-product-summary {
		margin-top: 0;
		border-radius: 0;
		padding-top: .5rem;
	}

	.single-product-summary:after {
		display: none;
	}

	.single-product-summary .product_title {
		border-radius: 0;
		margin: 0 0 1.25rem 4.125rem;
	}

	.single-product-summary .product-price-wrap .price-per-unit {
		line-height: 1.3;
	}

	.single-product-summary .product-detail-header {
		padding-bottom: .5rem;
	}

	.single-product-summary .product-quantity {
		margin-bottom: 17px;
	}

	.single-product .variation-bundle-selection .add-to-cart-btn .primary-matat-btn {
		width: 100%;
	}

	.product-tab-info .tab-content {
		padding-top: .9375rem;
	}

	.single-product-detail-container>.single-product-container .single-product-detail {
		margin-bottom: 0;
		position: relative;
	}

	.single-product-detail-container>.single-product-container .single-product-detail:after {
		content: "";
		top: calc(100% - 15.625rem);
		height: 9999px;
		position: absolute;
		left: 0;
		right: 0;
		background: #fff;
		z-index: 1;
	}

	.single-product-detail-container .product-share-sc a {
		padding: 0 .3125rem;
		font-size: .75rem;
	}

	.single-product-detail-container .icons-text-section,
	.single-product-detail-container .product-faqs-image-wrapper {
		background: #fff;
		position: relative;
		z-index: 2;
		margin-inline: -.9375rem;
	}

	.related-product-section {
		padding-top: 1.75rem;
	}

	.icons-text-section {
		padding-top: .9375rem;
		margin-top: -1px;
	}

	.icons-text-section .icons-row {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: .3125rem;
	}

	.icons-text-section .icons-row::-webkit-scrollbar {
		display: none;
	}

	.icons-text-section .icons-row .icons-col {
		min-width: 4.6875rem;
		max-width: 4.6875rem;
	}

	.icons-text-section .icons-row .icos-wrap {
		max-width: 1.875rem;
		max-height: 1.875rem;
		margin-inline: auto;
	}

	.product-faqs-image-wrapper {
		padding-block: 1.4375rem .3125rem;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content {
		padding-top: 0;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content .section-title {
		padding-inline: .9375rem;
		font-size: 1rem;
		margin-bottom: .8125rem;
	}

	.product-faqs-image-wrapper .product-tab-info .tab-content .tab-item a[data-toggle="collapse"] {
		padding-left: 1.25rem;
	}

	.group-product-wrap .product-share-sc {
		display: none;
	}

	.group-product-wrap > ul > li .group-product-item .group-product-count .count-text img {
		max-height: 1rem;
	}

	.group-product-wrap>ul>li .group-product-item .group-product-btnwrap .btn {
		padding-top: .6rem;
		font-size: .75rem;
	}

	#productBundleMobile .group-product-wrap>ul>li .group-product-item .group-product-btnwrap .btn {
		padding-inline: .75rem;
	}

	.bundle_product_enabled .mobile-sticky-add-cart {
		opacity: 1;
		visibility: visible;
		margin-bottom: 0;
	}

	.mobile-sticky-add-cart.sticky_phone_disable .btn {
		width: 100%;
		max-width: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}

	.single-product.sticky_add_cart_enabled .matat-wa-chat-container,
	.single-product.sticky_add_cart_enabled .topscroll {
		margin-bottom: 3.625rem;
	}

	.product-extra-section-wrapper {
		position: relative;
		z-index: 1;
	}

	.vdo-slider-section {
		position: relative;
		z-index: 1;
		margin-block: 1.5625rem;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 15px 5px 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider.pagination-lessthan-4 .slick-list {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider:not(.slick-initialized) .slide {
		min-width: calc(100% / 4);
		max-width: calc(100% / 4);
	}

	.single-product-detail .single-slider-wrapper .pagination-slider .slide {
		padding: 10px 5px;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination {
		padding-bottom: 0;
		border: 1px solid #eff1f4;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination:after,
	.single-product-detail .single-slider-wrapper .pagination-slider .slide .img-wrap-pagination::before {
		display: none;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider .slide img {
		position: inherit;
		top: inherit;
		right: inherit;
		width: inherit;
		height: inherit;
		object-fit: inherit;
		object-position: inherit;
		aspect-ratio: 1 / 1;
	}

	.single-product-detail .single-slider-wrapper .pagination-slider .slide.slick-current .img-wrap-pagination {
		border-color: #1d425f;
	}

	.vdo-slider-section .vdo-slider-holder:not(.flickity-enabled) {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		overflow: auto;
		white-space: pre;
	}

	.shop-page-container .archive-heading-wrap {
		padding-bottom: .9375rem;
	}

	.shop-page-container .fixed-position .archive-heading-wrap {
		padding: .5625rem .3125rem;
	}

	.shop-page-container .fixed-position .sort-filter-row .page-title {
		opacity: 0;
	}

	.shop-page-container .sort-filter-row .page-title {
		display: none;
	}

	.user-info-container {
		min-height: 40dvh;
	}

	.map-search .map-search-wrap .input-group .form-control {
		height: 2.125rem;
	}

	.map-wrap .map-section {
		aspect-ratio: 1;
	}

	.map-wrap .map-infowrap {
		border: solid #c9c9c9;
		border-width: 0 1px 1px 1px;
	}

	.user-info-container .edit-account .verification-buttonwrap {
		gap: .625rem;
	}

	.user-info-container .edit-account .verification-buttonwrap .form-group {
		margin-bottom: 0;
		padding-top: 0;
	}

	.woocommerce-MyAccount-content .wc-social-login-profile {
		margin-top: 1.25rem;
	}

	.custom-donation-holder .donation-icons img {
		max-width: 4.6875rem;
	}

	.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation .btn-variation {
		height: 1.5625rem;
		width: 2.5rem;
	}

	.custom-donation-holder .product-donation-amount-wrapper .gift-amount-variation label {
		font-size: .75rem;
	}

	html:has(.page-template-page-searchproducts) {
		overflow-x: hidden;
	}

	.step .step__text {
		margin-top: 1.25rem;
	}

	.step.step--1 .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.step.step--2 {
		width: 100%;
	}

	.single.single-post .article-related-wrapper {
		border-top: none;
		padding-top: 1.875rem;
	}

	.single.single-post .article-related-wrapper .related-blog-section {
		padding-left: 0;
	}

	.single.single-post .article-related-wrapper .related-blog-section .section-title {
		padding-left: 0;
		margin-left: 0;
	}

	.single-wrap-right-inner {
		padding-bottom: .9375rem;
		margin-bottom: 1.875rem;
		position: relative;
	}

	.single-wrap-right-inner:after {
		content: "";
		position: absolute;
		border-bottom: 1px solid #d1d1d1;
		right: -.9375rem;
		left: -.9375rem;
		bottom: 0;
	}

	#footer {
		font-size: .75rem;
	}

	.footer-middle {
		padding-block: 1.875rem 1.25rem;
	}

	.footer-middle .links-col {
		border-color: #fff;
		padding: 0 0 21px;
	}

	.footer-middle .widget-item {
		border-color: #fff;
	}

	.footer-newsletter .widget-title {
		font-size: .9375rem;
		margin-bottom: .5rem;
	}

	.footer-newsletter .input-row {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.footer-newsletter .input-wrap {
		-ms-flex-preferred-size: calc(100% - 5.4rem);
		flex-basis: calc(100% - 5.4rem);
		max-width: calc(100% - 5.4rem);
	}

	.footer-about .footer-logo {
		margin-bottom: 29px;
	}

	.footer-contact-info ul {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.footer-contact-info ul > li > a {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.footer-contact-info ul > li > a.social {
		margin-inline: 0 .9375rem;
	}

	.footer-contact-info ul > li:not(.social-icon) {
		padding-bottom: .625rem;
		max-width: 100%;
	}

	.footer-contact-info .footer-contact-img img {
		max-width: 3.75rem;
	}

	.footer-bottom .payment-info ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.header-action-nav .header-account:has(.user_switching_switch_on_top) .user_switching_switch_on_top-btn {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.header-action-nav .header-account:has(.user_switching_switch_on_top)>.original_user_icon {
		display: none !important;
	}

	.user_switching_switch_on_top_active .header-action-nav .header-account .user_switching_switch_on_top {
		opacity: 1;
		visibility: visible;
	}

	.header-action-nav .header-account .user_switching_switch_on_top a {
		width: 100%;
		margin: 0 0 8px;
		text-align: right;
	}

	.header-action-nav .header-account .user_switching_switch_on_top {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		position: absolute;
		background: #fff;
		border: 1px solid #000;
		padding: 8px;
		width: 200px;
		top: 100%;
		margin-top: 4px;
		left: -13px;
		opacity: 0;
		visibility: hidden;
	}

	.rtl .header-action-nav .btn-wishlist,
	.rtl .header-action-nav .btn-cart {
		margin-right: .95rem;
	}
}

@media (max-width: 767.98px) and (max-width: 767.98px) {
	.single-product-detail .single-slider-wrapper .single-product-slider .slick-arrow {
		display: none !important;
	}
}

@media (max-width: 640px) {
	.header-action-nav .header-account a .account-username {
		display: none;
	}
}

@-webkit-keyframes f-spinner-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes f-spinner-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes f-spinner-dash {
	0% {
		stroke-dasharray: 1,150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -124;
	}
}

@keyframes f-spinner-dash {
	0% {
		stroke-dasharray: 1,150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -124;
	}
}

@-webkit-keyframes f-throwOutUp {
	to {
		-webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		opacity: 0;
	}
}

@keyframes f-throwOutUp {
	to {
		-webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		opacity: 0;
	}
}

@-webkit-keyframes f-throwOutDown {
	to {
		-webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		opacity: 0;
	}
}

@keyframes f-throwOutDown {
	to {
		-webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		opacity: 0;
	}
}

@-webkit-keyframes f-zoomInUp {
	from {
		-webkit-transform: scale(.975) translate3d(0, 16px, 0);
		transform: scale(.975) translate3d(0, 16px, 0);
		opacity: 0;
	}

	to {
		-webkit-transform: scale(1) translate3d(0, 0, 0);
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes f-zoomInUp {
	from {
		-webkit-transform: scale(.975) translate3d(0, 16px, 0);
		transform: scale(.975) translate3d(0, 16px, 0);
		opacity: 0;
	}

	to {
		-webkit-transform: scale(1) translate3d(0, 0, 0);
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes f-zoomOutDown {
	to {
		-webkit-transform: scale(.975) translate3d(0, 16px, 0);
		transform: scale(.975) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

@keyframes f-zoomOutDown {
	to {
		-webkit-transform: scale(.975) translate3d(0, 16px, 0);
		transform: scale(.975) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

@-webkit-keyframes f-fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes f-fadeOut {
	100% {
		opacity: 0;
	}
}

@keyframes f-fadeOut {
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes f-fadeFastIn {
	0% {
		opacity: .75;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-fadeFastIn {
	0% {
		opacity: .75;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes f-fadeFastOut {
	100% {
		opacity: 0;
	}
}

@keyframes f-fadeFastOut {
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes f-fadeSlowIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-fadeSlowIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes f-fadeSlowOut {
	100% {
		opacity: 0;
	}
}

@keyframes f-fadeSlowOut {
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes f-crossfadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-crossfadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes f-crossfadeOut {
	100% {
		opacity: 0;
	}
}

@keyframes f-crossfadeOut {
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes f-slideInPrev {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes f-slideInPrev {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes f-slideInNext {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes f-slideInNext {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes f-slideOutNext {
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes f-slideOutNext {
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@-webkit-keyframes f-slideOutPrev {
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes f-slideOutPrev {
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@-webkit-keyframes f-classicInNext {
	0% {
		-webkit-transform: translateX(-75px);
		transform: translateX(-75px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes f-classicInNext {
	0% {
		-webkit-transform: translateX(-75px);
		transform: translateX(-75px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes f-classicInPrev {
	0% {
		-webkit-transform: translateX(75px);
		transform: translateX(75px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes f-classicInPrev {
	0% {
		-webkit-transform: translateX(75px);
		transform: translateX(75px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@-webkit-keyframes f-classicOutNext {
	100% {
		-webkit-transform: translateX(-75px);
		transform: translateX(-75px);
		opacity: 0;
	}
}

@keyframes f-classicOutNext {
	100% {
		-webkit-transform: translateX(-75px);
		transform: translateX(-75px);
		opacity: 0;
	}
}

@-webkit-keyframes f-classicOutPrev {
	100% {
		-webkit-transform: translateX(75px);
		transform: translateX(75px);
		opacity: 0;
	}
}

@keyframes f-classicOutPrev {
	100% {
		-webkit-transform: translateX(75px);
		transform: translateX(75px);
		opacity: 0;
	}
}

#global-loader {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999999;
}

/* Loader circle */
#global-loader .loader {
	width: 50px;
	height: 50px;
	border: 6px solid #ccc;
	border-top-color: #000;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Show loader when body has the class */
body.loading-screen #global-loader {
	display: flex;
}