@charset "UTF-8";

.animate__animated {
	-webkit-animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: 1s;
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: 1;
	animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: 2;
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
	animation-iteration-count: 2;
	animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: 3;
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
	animation-iteration-count: 3;
	animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: 1s;
	animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
	-webkit-animation-delay: 2s;
	-webkit-animation-delay: calc(var(--animate-delay) * 2);
	animation-delay: 2s;
	animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
	-webkit-animation-delay: 3s;
	-webkit-animation-delay: calc(var(--animate-delay) * 3);
	animation-delay: 3s;
	animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
	-webkit-animation-delay: 4s;
	-webkit-animation-delay: calc(var(--animate-delay) * 4);
	animation-delay: 4s;
	animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
	-webkit-animation-delay: 5s;
	-webkit-animation-delay: calc(var(--animate-delay) * 5);
	animation-delay: 5s;
	animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
	-webkit-animation-duration: .5s;
	-webkit-animation-duration: calc(var(--animate-duration) / 2);
	animation-duration: .5s;
	animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
	-webkit-animation-duration: .8s;
	-webkit-animation-duration: calc(var(--animate-duration) * .8);
	animation-duration: .8s;
	animation-duration: calc(var(--animate-duration) * .8);
}

.animate__animated.animate__slow {
	-webkit-animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: 2s;
	animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
	-webkit-animation-duration: 3s;
	-webkit-animation-duration: calc(var(--animate-duration) * 3);
	animation-duration: 3s;
	animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion:reduce),print {
	.animate__animated {
		-webkit-animation-duration: 1ms !important;
		animation-duration: 1ms !important;
		-webkit-transition-duration: 1ms !important;
		transition-duration: 1ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
	}
	
	.animate__animated[class*=Out] {
		opacity: 0;
	}
}

.animate__bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

.animate__flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.animate__rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX;
}

.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY;
}

.animate__headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}

.animate__swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

.animate__tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.animate__wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

.animate__jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

.animate__heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	-webkit-animation-duration: calc(var(--animate-duration) * 1.3);
	animation-duration: 1.3s;
	animation-duration: calc(var(--animate-duration) * 1.3);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown;
}

.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft;
}

.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight;
}

.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp;
}

.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown;
}

.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft;
}

.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight;
}

.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp;
}

.animate__bounceIn {
	-webkit-animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

.animate__bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

.animate__bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

.animate__bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

.animate__bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

.animate__bounceOut {
	-webkit-animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

.animate__bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

.animate__bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

.animate__bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

.animate__bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

.animate__fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.animate__fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

.animate__fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

.animate__fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.animate__fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

.animate__fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.animate__fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.animate__fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft;
}

.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight;
}

.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft;
}

.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight;
}

.animate__fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

.animate__fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

.animate__fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

.animate__fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

.animate__fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

.animate__fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

.animate__fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

.animate__fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

.animate__fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft;
}

.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight;
}

.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight;
}

.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft;
}

.animate__animated.animate__flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

.animate__flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

.animate__flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

.animate__flipOutX {
	-webkit-animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

.animate__flipOutY {
	-webkit-animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

.animate__lightSpeedInRight {
	-webkit-animation-name: lightSpeedInRight;
	animation-name: lightSpeedInRight;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.animate__lightSpeedInLeft {
	-webkit-animation-name: lightSpeedInLeft;
	animation-name: lightSpeedInLeft;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.animate__lightSpeedOutRight {
	-webkit-animation-name: lightSpeedOutRight;
	animation-name: lightSpeedOutRight;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

.animate__lightSpeedOutLeft {
	-webkit-animation-name: lightSpeedOutLeft;
	animation-name: lightSpeedOutLeft;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

.animate__rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
	-webkit-transform-origin: center;
	transform-origin: center;
}

.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

.animate__rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
	-webkit-transform-origin: center;
	transform-origin: center;
}

.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

.animate__hinge {
	-webkit-animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: 2s;
	animation-duration: calc(var(--animate-duration) * 2);
	-webkit-animation-name: hinge;
	animation-name: hinge;
	-webkit-transform-origin: top left;
	transform-origin: top left;
}

.animate__jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox;
}

.animate__rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

.animate__rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

.animate__zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

.animate__zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

.animate__zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

.animate__zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

.animate__zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

.animate__zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	-webkit-transform-origin: right center;
	transform-origin: right center;
}

.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

.animate__slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

.animate__slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

.animate__slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

.animate__slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

.animate__slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

.animate__slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

.animate__slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

.animate__slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

.clearfix::before, .clearfix::after {
	content: " ";
	display: table;
	clear: both;
}

.eael-testimonial-slider.nav-top-left, .eael-testimonial-slider.nav-top-right, .eael-team-slider.nav-top-left, .eael-team-slider.nav-top-right, .eael-logo-carousel.nav-top-left, .eael-logo-carousel.nav-top-right, .eael-post-carousel.nav-top-left, .eael-post-carousel.nav-top-right, .eael-product-carousel.nav-top-left, .eael-product-carousel.nav-top-right {
	padding-top: 40px;
}

.eael-contact-form input[type=text], .eael-contact-form input[type=email], .eael-contact-form input[type=url], .eael-contact-form input[type=tel], .eael-contact-form input[type=date], .eael-contact-form input[type=number], .eael-contact-form textarea {
	background: #fff;
	box-shadow: none;
	-webkit-box-shadow: none;
	float: none;
	height: auto;
	margin: 0;
	outline: 0;
	width: 100%;
}

.eael-contact-form input[type=submit] {
	border: 0;
	float: none;
	height: auto;
	margin: 0;
	padding: 10px 20px;
	width: auto;
	-webkit-transition: all .25s linear 0s;
	transition: all .25s linear 0s;
}

.eael-contact-form.placeholder-hide input::-webkit-input-placeholder, .eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-contact-form.placeholder-hide input::-moz-placeholder, .eael-contact-form.placeholder-hide textarea::-moz-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-contact-form.placeholder-hide input:-ms-input-placeholder, .eael-contact-form.placeholder-hide textarea:-ms-input-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-contact-form.placeholder-hide input:-moz-placeholder, .eael-contact-form.placeholder-hide textarea:-moz-placeholder {
	opacity: 0;
	visibility: hidden;
}

.eael-custom-radio-checkbox input[type=checkbox], .eael-custom-radio-checkbox input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	border-style: solid;
	border-width: 0;
	outline: none;
	min-width: 1px;
	width: 15px;
	height: 15px;
	background: #ddd;
	padding: 3px;
}

.eael-custom-radio-checkbox input[type=checkbox]:before, .eael-custom-radio-checkbox input[type=radio]:before {
	content: "";
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}

.eael-custom-radio-checkbox input[type=checkbox]:checked:before, .eael-custom-radio-checkbox input[type=radio]:checked:before {
	background: #999;
	-webkit-transition: all .25s linear 0s;
	transition: all .25s linear 0s;
}

.eael-custom-radio-checkbox input[type=radio] {
	border-radius: 50%;
}

.eael-custom-radio-checkbox input[type=radio]:before {
	border-radius: 50%;
}

.eael-post-elements-readmore-btn {
	font-size: 12px;
	font-weight: 500;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	display: inline-block;
}

.elementor-lightbox .dialog-widget-content {
	width: 100%;
	height: 100%;
}

.eael-contact-form-align-left, .elementor-widget-eael-weform.eael-contact-form-align-left .eael-weform-container {
	margin: 0 auto 0 0;
	display: inline-block;
	text-align: left;
}

.eael-contact-form-align-center, .elementor-widget-eael-weform.eael-contact-form-align-center .eael-weform-container {
	float: none;
	margin: 0 auto;
	display: inline-block;
	text-align: left;
}

.eael-contact-form-align-right, .elementor-widget-eael-weform.eael-contact-form-align-right .eael-weform-container {
	margin: 0 0 0 auto;
	display: inline-block;
	text-align: left;
}

.eael-force-hide {
	display: none !important;
}

.eael-d-none {
	display: none !important;
}

.eael-d-block {
	display: block !important;
}

.eael-h-auto {
	height: auto !important;
}

.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating~.count {
	display: none;
}

.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating {
	display: none;
}

.sr-only {
	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;
}

.elementor-widget-eael-adv-tabs .eael-tab-content-item, .elementor-widget-eael-adv-accordion .eael-accordion-content, .elementor-widget-eael-data-table .td-content, .elementor-widget-eael-info-box .eael-infobox-template-wrapper, .elementor-widget-eael-countdown .eael-countdown-expiry-template, .elementor-widget-eael-countdown .eael-countdown-container, .elementor-widget-eael-cta-box .eael-cta-template-wrapper, .elementor-widget-eael-toggle .eael-toggle-primary-wrap, .elementor-widget-eael-toggle .eael-toggle-secondary-wrap, .elementor-widget-eael-protected-content .eael-protected-content-message, .elementor-widget-eael-protected-content .protected-content, .eael-offcanvas-content-visible .eael-offcanvas-body, .elementor-widget-eael-stacked-cards .eael-stacked-cards__item {
	position: relative;
}

.elementor-widget-eael-adv-tabs .eael-tab-content-item:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-adv-accordion .eael-accordion-content:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-data-table .td-content:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-info-box .eael-infobox-template-wrapper:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-countdown .eael-countdown-expiry-template:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-countdown .eael-countdown-container:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-cta-box .eael-cta-template-wrapper:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-toggle .eael-toggle-primary-wrap:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-toggle .eael-toggle-secondary-wrap:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-protected-content .eael-protected-content-message:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-protected-content .protected-content:hover .eael-onpage-edit-template-wrapper, .eael-offcanvas-content-visible .eael-offcanvas-body:hover .eael-onpage-edit-template-wrapper, .elementor-widget-eael-stacked-cards .eael-stacked-cards__item:hover .eael-onpage-edit-template-wrapper {
	display: block;
}

.eael-widget-otea-active .elementor-element:hover>.elementor-element-overlay, .eael-widget-otea-active .elementor-empty-view, .eael-widget-otea-active .elementor-add-section-inline, .eael-widget-otea-active .elementor-add-section {
	display: initial !important;
}

.eael-onpage-edit-template-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	border: 2px solid #5eead4;
}

.eael-onpage-edit-template-wrapper::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: #5eead4;
	opacity: .3;
}

.eael-onpage-edit-template-wrapper.eael-onpage-edit-activate {
	display: block;
}

.eael-onpage-edit-template-wrapper.eael-onpage-edit-activate::after {
	display: none;
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template {
	background: #5eead4;
	color: #000;
	width: 150px;
	text-align: center;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
	cursor: pointer;
	position: relative;
	z-index: 3;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template::before {
	content: "";
	border-top: 30px solid #5eead4;
	border-right: 0;
	border-bottom: 0;
	border-left: 14px solid rgba(0, 0, 0, 0);
	right: 100%;
	position: absolute;
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template::after {
	content: "";
	border-top: 0;
	border-right: 0;
	border-bottom: 30px solid rgba(0, 0, 0, 0);
	border-left: 14px solid #5eead4;
	left: 100%;
	position: absolute;
}

.eael-onpage-edit-template-wrapper .eael-onpage-edit-template>i {
	margin-right: 8px;
}

.elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect1, .elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect2, .elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect3, .elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect4 {
	-webkit-box-shadow: inherit !important;
	box-shadow: inherit !important;
}

.eael-popup-details-render {
	width: 80%;
	max-width: 900px;
}

.eael-popup-details-render .eael-preloader {
	margin: 0 auto;
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #3498db;
	width: 50px;
	height: 50px;
	-webkit-animation: eaelSpin 2s linear infinite;
	animation: eaelSpin 2s linear infinite;
}

.eael-product-popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	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;
	z-index: -1;
}

.eael-product-popup.eael-product-popup-ready {
	z-index: 999;
	opacity: 1 !important;
}

.eael-product-popup.eael-product-zoom-in {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.eael-product-popup.eael-product-zoom-in .eael-product-popup-details {
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
}

.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-popup-details {
	opacity: 1;
	-webkit-transform: scale(.9);
	-ms-transform: scale(.9);
	transform: scale(.9);
}

.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-modal-bg {
	opacity: .7;
}

.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-modal-bg {
	opacity: 0;
}

.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-popup-details {
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
	opacity: 0;
}

.eael-product-popup .eael-product-modal-bg {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.eael-product-popup .eael-product-popup-details {
	position: relative;
	margin: 5vh auto;
	padding: 20px;
	border: 1px solid #888;
	max-width: 900px;
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
	background-color: #fefefe;
	width: 100%;
	border-radius: 10px;
	height: auto;
	max-height: -webkit-fit-content;
	max-height: -moz-fit-content;
	max-height: fit-content;
}

.eael-product-popup .eael-product-popup-details .single_add_to_cart_button {
	position: relative;
}

.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-added:after {
	font-family: "Font Awesome 5 Free";
	content: "";
	font-weight: 900;
	display: inline-block;
	position: absolute;
	right: 12px;
}

.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-loading:after {
	font-family: "Font Awesome 5 Free";
	content: "";
	font-weight: 900;
	position: absolute;
	right: 12px;
	-webkit-animation: eaelSpin 2s linear infinite;
	animation: eaelSpin 2s linear infinite;
}

.eael-product-popup.woocommerce div.product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	overflow-y: auto;
	background: rgba(0, 0, 0, 0);
	position: relative;
	width: inherit;
	float: inherit;
}

.eael-product-popup.woocommerce div.product.ast-article-single, .eael-product-popup.woocommerce div.product .ast-article-single {
	background: rgba(0, 0, 0, 0);
}

@media (max-width: 767px) {
	.eael-product-popup.woocommerce div.product {
		display: block;
	}
}

.eael-product-popup.woocommerce div.product div.images {
	width: 100%;
	margin-bottom: 0;
}

.eael-product-popup.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	margin-bottom: 1em;
}

.eael-product-popup.woocommerce div.product div.images .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li, .eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: calc(25% - .75em);
	margin-right: 1em;
	margin-bottom: 1em;
}

.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img, .eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img {
	cursor: pointer;
	opacity: .5;
}

.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img:hover, .eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img:hover {
	opacity: 1;
}

.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li img.flex-active, .eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child, .eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:last-child {
	margin-right: 0;
}

.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 ol.flex-control-thumbs, .eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-5 ol.flex-control-thumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eael-product-popup.woocommerce div.product .product_title {
	font-size: 28px;
	line-height: 1.2em;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: normal;
	text-transform: capitalize;
}

.eael-product-popup.woocommerce div.product .product_title.entry-title {
	display: block;
}

.eael-product-popup.woocommerce div.product .product_title:before {
	content: none;
}

.eael-product-popup.woocommerce div.product .price {
	font-size: 25px;
	line-height: 1.2em;
	margin: 0 0 15px;
	text-align: left !important;
}

.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 18px;
	line-height: 1.2em;
	margin: 0;
}

.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p, .eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 20px;
}

.eael-product-popup.woocommerce div.product .button {
	margin: 0 !important;
	line-height: 1.5em;
}

.eael-product-popup.woocommerce div.product form.cart {
	margin: 0 0 1.2em;
	padding: 0;
	border: none;
	width: 100%;
}

.eael-product-popup.woocommerce div.product form.cart table {
	border: none;
	margin: 0 0 1.2em;
	border-collapse: collapse;
	width: 100%;
}

.eael-product-popup.woocommerce div.product form.cart table tbody {
	display: table-row-group;
	border: none;
}

.eael-product-popup.woocommerce div.product form.cart p.stock {
	margin-bottom: 0;
}

.eael-product-popup.woocommerce div.product form.cart .group_table td {
	border: none;
}

.eael-product-popup.woocommerce div.product form.cart .group_table .button {
	padding: .8em;
	font-weight: 400;
	font-size: .9rem;
	white-space: nowrap;
}

.eael-product-popup.woocommerce div.product form.cart div.quantity {
	margin-right: 15px;
	width: auto;
}

.eael-product-popup.woocommerce div.product form.cart div.quantity input, .eael-product-popup.woocommerce div.product form.cart div.quantity a {
	height: 100%;
	border: 1px solid;
}

.eael-product-popup.woocommerce div.product form.cart div.quantity input[type=number] {
	min-width: 90px;
}

.eael-product-popup.woocommerce div.product form.cart div.quantity .qty {
	text-align: center;
}

.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus {
	outline: none;
}

.eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button {
	padding: 10px 40px;
}

.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.plus, .eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.minus {
	display: none;
}

.eael-product-popup.woocommerce div.product .woocommerce-product-rating {
	margin-bottom: 5px;
}

.eael-product-popup.woocommerce div.product .woocommerce-product-rating .star-rating {
	font-size: 16px;
}

.eael-product-popup.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 18px;
}

.eael-product-popup.woocommerce div.product table.variations tbody .label {
	padding: 15px;
	line-height: 0;
}

.eael-product-popup.woocommerce div.product table.variations tbody tr {
	border-bottom: 1px solid #ccc;
}

.eael-product-popup.woocommerce div.product table.variations tbody tr td {
	background: rgba(0, 0, 0, 0);
	vertical-align: middle !important;
	line-height: 0;
}

.eael-product-popup.woocommerce div.product .product_meta {
	font-size: 14px;
	border-top: 1px solid #ccc;
	border-bottom: 0;
	padding: 1em 0 0;
	margin: 0 0 .8em;
}

.eael-product-popup.woocommerce div.product .product_meta>span {
	display: block;
	border: none;
	padding: 5px 0;
}

.eael-product-popup .eael-product-image-wrap {
	width: 40%;
	background-image: url("/wp-content/uploads/essential-addons-elementor/../../../wp-admin/images/spinner.gif");
	background-repeat: no-repeat;
	background-position: center center;
	--lzl-bg-img: "/wp-content/uploads/essential-addons-elementor/../../../wp-admin/images/spinner.gif";
}

@media (max-width: 767px) {
	.eael-product-popup .eael-product-image-wrap {
		width: 100%;
	}
}

.eael-product-popup .eael-product-image-wrap .badge-container {
	display: none;
}

.eael-product-popup .eael-product-image-wrap .eael-new-product .flex-viewport {
	height: auto !important;
}

.eael-product-popup .eael-product-details-wrap {
	width: 56%;
	margin-left: 4%;
	text-align: left;
}

@media (max-width: 767px) {
	.eael-product-popup .eael-product-details-wrap {
		width: 100%;
		margin-left: 0;
		margin-top: 25px;
	}
}

.eael-product-popup .eael-product-details-wrap .is-divider {
	display: none;
}

.eael-product-popup button.eael-product-popup-close {
	position: absolute;
	right: -15px;
	top: -18px;
	font-size: 20px;
	padding: 0;
	cursor: pointer;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	overflow: visible;
	background: #fff;
	text-align: center;
	-webkit-box-shadow: 2px 0px 12px 3px rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
	box-shadow: 2px 0px 12px 3px rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
	color: #000 !important;
	height: 40px;
	width: 40px;
	min-height: 40px;
	max-width: 40px;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	opacity: 1;
	border: 0;
	margin: 0;
}

.eael-product-popup button.eael-product-popup-close:focus {
	outline: none;
}

.eael-product-popup form.cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
}

.eael-product-popup form.cart.variations_form {
	display: block;
}

.eael-product-popup form.cart.variations_form .variations {
	border: none;
}

.eael-product-popup form.cart.variations_form .variations tr {
	margin-bottom: 5px;
}

.eael-product-popup form.cart.variations_form .variations td {
	display: block;
	width: 100%;
	border: none;
	padding: 0;
	margin-bottom: 5px;
}

.eael-product-popup form.cart.variations_form .variations td select {
	width: 100%;
}

.eael-product-popup form.cart.variations_form .variations_button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.eael-product-popup form.cart.grouped_form {
	display: block;
}

.eael-product-popup form.cart.grouped_form table .button {
	line-height: 1.2em;
}

.eael-product-popup form.cart.grouped_form .quantity {
	width: 100%;
}

.eael-product-popup form.cart.grouped_form .quantity input, .eael-product-popup form.cart.grouped_form .quantity a {
	height: auto !important;
	min-height: 2.507em;
	line-height: 1.2em;
}

.eael-product-popup form.cart .quantity {
	width: 37%;
	margin-right: 20px;
}

.eael-product-popup form.cart .quantity input {
	width: 100%;
}

.eael-product-popup .eael-onsale {
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 500;
	position: absolute;
	text-align: center;
	line-height: 1.2em;
	top: 30px;
	left: 0;
	margin: 0;
	background-color: #ff7a80;
	color: #fff;
	z-index: 9;
}

.eael-product-popup .eael-onsale.sale-preset-1.outofstock br {
	display: none;
}

.eael-product-popup .eael-onsale.sale-preset-1.right {
	left: auto;
	right: 0;
}

.eael-product-popup .eael-onsale.sale-preset-2 {
	padding: 0;
	top: 5px;
	left: 5px;
	min-width: 50px;
	min-height: 50px;
	line-height: 50px;
	border-radius: 100%;
	-webkit-font-smoothing: antialiased;
}

.eael-product-popup .eael-onsale.sale-preset-2.outofstock {
	line-height: 1.2em;
	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;
}

.eael-product-popup .eael-onsale.sale-preset-3 {
	border-radius: 50px;
	left: 15px;
	top: 15px;
}

.eael-product-popup .eael-onsale.sale-preset-3.outofstock br {
	display: none;
}

.eael-product-popup .eael-onsale.sale-preset-4 {
	left: 0;
	top: 15px;
}

.eael-product-popup .eael-onsale.sale-preset-4.outofstock br {
	display: none;
}

.eael-product-popup .eael-onsale.sale-preset-4:after {
	position: absolute;
	right: -15px;
	bottom: 0px;
	width: 15px;
	height: 24px;
	border-top: 12px solid rgba(0, 0, 0, 0);
	border-bottom: 12px solid rgba(0, 0, 0, 0);
	border-left: 10px solid #23a454;
	content: "";
}

.eael-product-popup .eael-onsale.sale-preset-5 {
	display: block;
	line-height: 74px;
	height: 60px;
	width: 120px;
	left: -37px;
	top: -8px;
	right: auto;
	padding: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.eael-product-popup .eael-onsale.sale-preset-5.outofstock {
	line-height: normal;
	padding-top: 12px;
	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;
}

.theme-storefront .eael-product-popup form.cart.variations_form .variations td select {
	padding: 8px;
	border: 1px solid #121212;
}

.theme-storefront .eael-product-popup .woocommerce-product-gallery {
	position: relative;
}

.theme-storefront .eael-product-popup .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
}

.theme-storefront .eael-product-popup .eael-product-popup.woocommerce div.product table tbody tr td {
	padding: 5px 15px 15px 0 !important;
}

.theme-oceanwp.elementor-editor-active .eael-product-popup.woocommerce div.product form.cart div.quantity .qty {
	max-width: 150px;
}

.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus {
	border: 1px solid;
}

.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity * {
	min-height: 33px;
	line-height: 33px;
	margin-top: 1px;
}

.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity .qty {
	min-width: 100px;
}

@media only screen and (max-width: 1023px) {
	.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart.grouped_form div.quantity .qty {
		min-width: 70px;
	}
}

.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus {
	border: 1px solid;
}

@media only screen and (max-width: 767px) {
	.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity {
		width: 50%;
	}
	
	.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .minus, .theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .plus {
		width: 20%;
	}
	
	.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty {
		width: 60%;
		min-width: auto !important;
	}
	
	.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button {
		padding: 10px 18px !important;
	}
}

.theme-savoy #elementor-lightbox-slideshow-single-img {
	display: none !important;
}

.theme-savoy .eael-product-popup.woocommerce .nm-quantity-wrap .quantity .input-text {
	height: 42px;
}

.theme-savoy .eael-product-popup .flex-control-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.theme-savoy .eael-product-popup .nm-quantity-wrap {
	width: auto;
	border: none;
}

.theme-savoy .eael-product-popup .nm-quantity-wrap .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.theme-savoy .eael-product-popup .variations_form.nm-custom-select tr .value select {
	opacity: 1;
	border: 1px solid #ccc;
}

.theme-savoy .eael-product-popup #nm-product-meta {
	padding-left: 0;
	text-align: left;
}

.theme-savoy .eael-product-popup #nm-product-meta .nm-row {
	padding-left: 0;
}

.theme-savoy .eael-product-popup #nm-product-meta .nm-row .col-xs-12 {
	padding-left: 0;
	display: grid;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
}

.theme-savoy .eael-product-popup .eael-product-popup-ready~#elementor-lightbox-slideshow-single-img {
	display: none !important;
}

.theme-buddyboss-theme .eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button {
	padding: 5px 36px;
}

.eael-product-popup-details.eael-quick-view-hide-categories .product .product_meta .posted_in {
	display: none;
}

.eael-product-popup-details.eael-quick-view-hide-quantity .cart .quantity {
	display: none;
}

.eael-woo-product-slider-container .woocommerce ul.products .product .star-rating {
	margin: 14px 0 0;
	display: inline-block;
	float: none;
	height: 1em;
	width: 7em;
	font-size: 18px !important;
	line-height: 1em;
}

.eael-woo-product-slider-container .woocommerce ul.products .product .star-rating:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	opacity: 1;
	letter-spacing: .3em;
}

.eael-woo-product-slider-container .woocommerce ul.products .product .star-rating span {
	display: inline-block;
}

.eael-woo-product-slider-container .woocommerce ul.products .product .star-rating span:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	letter-spacing: .3em;
}

.eael-woo-product-slider-container .woocommerce ul.products .product a.button.loading::after, .eael-woo-product-slider-container .woocommerce ul.products .product button.button.loading::after {
	left: 47%;
	right: auto;
	-webkit-transform: translateX(-47%);
	-ms-transform: translateX(-47%);
	transform: translateX(-47%);
}

@media (min-width: 601px) {
	.eael-woo-product-slider-container .eael-woo-product-slider .eael-reverse-column>div:first-child {
		grid-row: 1;
		grid-column: 2;
	}
}

.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-product-excerpt {
	font-size: 22px;
	line-height: 1.5em;
	color: #5a5a5a;
	font-weight: 500;
	margin-top: 30px;
}

.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-product-excerpt p {
	font-size: inherit;
	margin-bottom: 0;
}

.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button {
	margin-top: 20px;
}

.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button.add_to_cart_button, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.added_to_cart {
	display: inline-block;
	margin: 0 !important;
	padding: 13px 25px !important;
	font-size: 18px;
	line-height: 1.2em;
	border-radius: 10px;
	background-color: #00a983;
	color: #fff;
}

.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button.add_to_cart_button:hover, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button:hover, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.added_to_cart:hover {
	background-color: #338e79;
	color: #fff;
}

.eael-woo-product-slider-container .eael-woo-product-slider a.button.add_to_cart_button.added {
	display: none !important;
}

.eael-woo-product-slider-container.preset-1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #004eff;
}

.eael-woo-product-slider-container.preset-1 .swiper-container .swiper-button-next:hover, .eael-woo-product-slider-container.preset-1 .swiper-container .swiper-button-prev:hover, .eael-woo-product-slider-container.preset-1.swiper-container-wrap .swiper-button-next:hover, .eael-woo-product-slider-container.preset-1.swiper-container-wrap .swiper-button-prev:hover {
	background-color: #004eff;
	color: #fff;
}

.eael-woo-product-slider-container.preset-1 .eael-product-slider .eael-onsale.sale-preset-4.right:after {
	border-right-color: #004eff;
}

.eael-woo-product-slider-container.preset-2 .swiper-pagination.dots-preset-4 .swiper-pagination-bullet {
	border: 1px solid #ff3f56;
}

.eael-woo-product-slider-container.preset-2 .swiper-pagination .swiper-pagination-bullet-active {
	background: #ff3f56;
}

.eael-woo-product-slider-container.preset-2 .swiper-container .swiper-button-next:hover, .eael-woo-product-slider-container.preset-2 .swiper-container .swiper-button-prev:hover, .eael-woo-product-slider-container.preset-2.swiper-container-wrap .swiper-button-next:hover, .eael-woo-product-slider-container.preset-2.swiper-container-wrap .swiper-button-prev:hover {
	background-color: #ff3f56;
	color: #fff;
}

.eael-woo-product-slider-container.preset-2 .eael-product-slider .eael-onsale.sale-preset-4.right:after {
	border-right-color: #ff3f56;
}

.eael-woo-product-slider-container.preset-2 .eael-product-slider .icons-wrap.box-style-list {
	opacity: 1;
	visibility: visible;
	top: 50%;
	left: 50%;
	right: auto;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}

.eael-woo-product-slider-container.preset-2 .eael-product-excerpt {
	font-size: 16px;
	line-height: 1.5em;
	color: #5a5a5a;
	font-weight: 500;
	margin-top: 30px;
}

.eael-woo-product-slider-container.preset-3.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet, .eael-woo-product-slider-container.preset-3.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet {
	border: 1px solid #00a983;
}

.eael-woo-product-slider-container.preset-3.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.preset-3.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #00a983;
}

.eael-woo-product-slider-container.preset-3 .swiper-pagination .swiper-pagination-bullet-active {
	background: #00a983;
}

.eael-woo-product-slider-container.preset-3 .swiper-container .swiper-button-next:hover, .eael-woo-product-slider-container.preset-3 .swiper-container .swiper-button-prev:hover, .eael-woo-product-slider-container.preset-3.swiper-container-wrap .swiper-button-next:hover, .eael-woo-product-slider-container.preset-3.swiper-container-wrap .swiper-button-prev:hover {
	background-color: #00a983;
	color: #fff;
}

.eael-woo-product-slider-container.preset-3 .eael-product-slider .eael-onsale.sale-preset-4.right:after {
	border-right-color: #00a983;
}

.eael-woo-product-slider-container.preset-3 .product-details-wrap .eael-product-excerpt {
	margin-top: 15px;
}

.eael-woo-product-slider-container.preset-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #7139ff;
}

.eael-woo-product-slider-container.preset-4 .swiper-container .swiper-button-next:hover, .eael-woo-product-slider-container.preset-4 .swiper-container .swiper-button-prev:hover, .eael-woo-product-slider-container.preset-4.swiper-container-wrap .swiper-button-next:hover, .eael-woo-product-slider-container.preset-4.swiper-container-wrap .swiper-button-prev:hover {
	background-color: #7139ff;
	color: #fff;
}

.eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button {
	margin-top: 40px;
}

.eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button a.button.add_to_cart_button, .eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button a.button, .eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button a.added_to_cart {
	background: #7139ff;
	border-radius: 30px;
}

.eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button a.button.add_to_cart_button:hover, .eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button a.button:hover, .eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-add-to-cart-button a.added_to_cart:hover {
	background: #5f3ff1;
}

.eael-woo-product-slider-container.preset-4 .eael-product-slider .eael-onsale.sale-preset-4.right:after {
	border-right-color: #7139ff;
}

.eael-woo-product-slider-container.preset-4 .product-image-wrap:hover .icons-wrap.box-style {
	bottom: 25%;
	visibility: visible;
	opacity: 1;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-1.outofstock br {
	display: none;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-1.right {
	left: auto;
	right: 0;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-2.outofstock {
	line-height: normal;
	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;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-2.right {
	left: auto;
	right: 5px;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-3.outofstock br {
	display: none;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-3.right {
	left: auto;
	right: 15px;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-4.outofstock br {
	display: none;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-4.right {
	left: auto;
	right: 0;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-4.right:after {
	right: auto;
	left: -15px;
	border-left: 0;
	border-right: 10px solid #23a454;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-5.outofstock {
	line-height: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 7px;
}

.eael-woo-product-slider-container .eael-onsale.sale-preset-5.right {
	left: auto;
	right: -35px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.eael-woo-product-slider-container.swiper-container-dots-outside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-dots-inside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet {
	border-radius: 2px;
	width: 8px;
	height: 3px;
}

.eael-woo-product-slider-container.swiper-container-dots-outside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-dots-inside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 20px;
}

.eael-woo-product-slider-container.swiper-container-dots-outside .swiper-pagination.dots-preset-2 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-2 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-dots-inside .swiper-pagination.dots-preset-2 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-2 .swiper-pagination-bullet {
	border-radius: 0;
}

.eael-woo-product-slider-container.swiper-container-dots-outside .swiper-pagination.dots-preset-3 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-3 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-dots-inside .swiper-pagination.dots-preset-3 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	margin: 0 7px;
}

.eael-woo-product-slider-container.swiper-container-dots-outside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-dots-inside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet, .eael-woo-product-slider-container.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet {
	border: 1px solid #7139ff;
	background: rgba(0, 0, 0, 0);
}

.eael-woo-product-slider-container.swiper-container-dots-outside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-wrap-dots-outside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-dots-inside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet.swiper-pagination-bullet-active, .eael-woo-product-slider-container.swiper-container-wrap-dots-inside .swiper-pagination.dots-preset-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #7139ff;
}

.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination {
	width: 350px !important;
	margin-top: 20px;
}

.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination .swiper-slide {
	opacity: .4;
}

.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination .swiper-slide.swiper-slide-active {
	opacity: 1;
}

.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination .swiper-slide img {
	width: 60px;
	height: 60px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

@media all and (min-width: 1024px) {
	.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination.eael_gallery_pagination_hide_on_desktop {
		display: none !important;
	}
}

@media all and (min-width: 768px)and (max-width: 1024px) {
	.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination.eael_gallery_pagination_hide_on_tablet {
		display: none !important;
	}
}

@media all and (max-width: 767px) {
	.eael-woo-product-slider-container .eael-woo-product-slider-gallary-pagination.eael_gallery_pagination_hide_on_mobile {
		display: none !important;
	}
}

.eael-woo-product-slider-container.swiper-container-wrap .swiper-pagination-bullet {
	background: #ccc;
	margin: 0 4px;
	opacity: 1;
	height: 8px;
	width: 8px;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.eael-woo-product-slider-container.swiper-container-wrap .swiper-pagination-bullet:focus {
	outline: none;
}

.eael-woo-product-slider-container .swiper-container .swiper-button-next, .eael-woo-product-slider-container .swiper-container .swiper-button-prev, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-next, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-prev {
	font-size: 20px;
	margin: 0;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 5px;
	-webkit-filter: drop-shadow(0px 23px 13.5px rgba(28, 34, 56, .05));
	filter: drop-shadow(0px 23px 13.5px rgba(28, 34, 56, .05));
	background-color: #eee;
	background-image: none;
	color: #000;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.eael-woo-product-slider-container .swiper-container .swiper-button-next:focus, .eael-woo-product-slider-container .swiper-container .swiper-button-prev:focus, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-next:focus, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-prev:focus {
	outline: none;
}

.eael-woo-product-slider-container .swiper-container .swiper-button-next.swiper-button-disabled, .eael-woo-product-slider-container .swiper-container .swiper-button-prev.swiper-button-disabled, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-next.swiper-button-disabled, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-prev.swiper-button-disabled {
	color: #c3c9d0;
	opacity: .7;
}

.eael-woo-product-slider-container .swiper-container .swiper-button-next i, .eael-woo-product-slider-container .swiper-container .swiper-button-prev i, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-next i, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-prev i {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.eael-woo-product-slider-container .swiper-container .swiper-button-next, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-next {
	right: -40px;
}

.eael-woo-product-slider-container .swiper-container .swiper-button-prev, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-prev {
	left: -40px;
}

.eael-woo-product-slider-container .product.product-type-grouped .icons-wrap.block-style, .eael-woo-product-slider-container .product.product-type-variable .icons-wrap.block-style, .eael-woo-product-slider-container .product.product-type-external .icons-wrap.block-style, .eael-woo-product-slider-container .product.outofstock .icons-wrap.block-style {
	grid-template-columns: repeat(2, 1fr);
}

.eael-woo-product-slider-container.preset-3 .product.outofstock .icons-wrap li.view-details, .eael-woo-product-slider-container.preset-4 .product.outofstock .icons-wrap li.view-details {
	display: none;
}

.eael-product-popup .eael-product-image-wrap.lzl:not(.lzl-ed), .eael-product-popup .eael-product-image-wrap.lzl-ing:not(.lzl-ed) {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAG0lEQVQ4EWNgGAWjITAaAqMhMBoCoyFAnRAAAAZUAAFIj+31AAAAAElFTkSuQmCC");
}

.eael-woo-product-slider-container .icons-wrap.box-style li a.added_to_cart {
	font-size: 0;
}

.eael-woo-product-slider-container .icons-wrap.box-style li a.added_to_cart:after {
	content: "";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 20px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list {
	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;
	right: -50px;
	top: 30px;
	-webkit-transition: .3s ease-in;
	transition: .3s ease-in;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li {
	-webkit-transition: .3s ease-in;
	transition: .3s ease-in;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li:nth-child(1) {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li:nth-child(2) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li:nth-child(3) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li:nth-child(4) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a {
	position: relative;
	width: 55px;
	height: 55px;
	margin: 3px;
	-webkit-box-shadow: 0px 15px 10px rgba(61, 70, 79, .12);
	box-shadow: 0px 15px 10px rgba(61, 70, 79, .12);
	background-color: #fff;
	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;
	border-radius: 5px;
	color: #ff3f56;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a:hover {
	background: #ff3f56;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a i {
	line-height: 1rem;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a.added_to_cart {
	font-size: 0;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a.added_to_cart:after {
	content: "";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 20px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a.button.add_to_cart_button {
	padding: 0 !important;
	margin: 3px;
	font-size: 0px;
	display: block;
	border: none;
	color: #ff3f56;
	background-color: #fff;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a.button.add_to_cart_button:before {
	content: "";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-size: 20px;
	font-weight: 900;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	position: absolute;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a.button.add_to_cart_button:hover {
	color: #fff;
	background-color: #ff3f56;
}

.eael-woo-product-slider-container .icons-wrap.box-style-list li a.button.add_to_cart_button.product_type_variable:before {
	content: "";
}

.eael-woo-product-slider-container .icons-wrap.block-style {
	background: #00a983;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 40px;
	width: 100%;
	top: auto;
	bottom: -50px;
	margin: 0;
	color: #fff;
}

.eael-woo-product-slider-container .icons-wrap.block-style:before, .eael-woo-product-slider-container .icons-wrap.block-style:after {
	content: none;
}

.eael-woo-product-slider-container .icons-wrap.block-style li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-right: 1px solid #fff;
}

.eael-woo-product-slider-container .icons-wrap.block-style li:last-child {
	border: none;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a {
	position: relative;
	color: #fff;
	background: #00a983;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a:hover {
	background: rgba(0, 0, 0, 0);
	color: #fff;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a.added_to_cart {
	font-size: 0;
	border-radius: 0;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a.added_to_cart:after {
	content: "";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 20px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a.button.add_to_cart_button {
	padding: 0 !important;
	margin: 0;
	font-size: 0;
	border-radius: 0;
	background: #00a983;
	display: block;
	border: none;
	color: inherit;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a.button.add_to_cart_button:hover {
	background: inherit;
	color: inherit;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a.button.add_to_cart_button:before {
	content: "";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-size: 20px;
	font-weight: 900;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	position: absolute;
}

.eael-woo-product-slider-container .icons-wrap.block-style li a.button.add_to_cart_button.product_type_variable:before {
	content: "";
}

.eael-woo-product-slider-container .icons-wrap li a svg {
	width: 22px;
}

.eael-woo-product-slider-container .eael-product-cats {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-bottom: 10px !important;
}

.eael-woo-product-slider-container .eael-product-cats a {
	font-size: 14px;
	line-height: 1.2em;
	padding: 5px 10px;
	margin-right: 5px;
	position: relative;
	display: inline-block;
}

.eael-woo-product-slider-container .eael-product-cats a:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-top: 9px solid #000;
	border-top-color: #6f35e1;
	border-left: 7px solid rgba(0, 0, 0, 0);
	border-right: 7px solid rgba(0, 0, 0, 0);
}

.eael-woo-product-slider-container .eael-no-posts-found {
	margin: 0;
	background: #ccc;
	color: #000;
	font-size: 16px;
	line-height: 1.2em;
	direction: ltr;
}

@media only screen and (max-width: 1024px) {
	.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-product-excerpt {
		font-size: 16px;
		margin-top: 20px;
	}
	
	.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button.add_to_cart_button, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.added_to_cart {
		font-size: 16px;
	}
	
	.eael-woo-product-slider-container .swiper-container .swiper-button-prev, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-prev {
		left: 0;
	}
	
	.eael-woo-product-slider-container .swiper-container .swiper-button-next, .eael-woo-product-slider-container.swiper-container-wrap .swiper-button-next {
		right: 0;
	}
}

@media only screen and (max-width: 767px) {
	.eael-woo-product-slider-container .woocommerce ul.products .product .star-rating {
		font-size: 14px !important;
	}
	
	.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-product-excerpt {
		font-size: 14px;
		margin-top: 10px;
	}
	
	.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button {
		margin-top: 20px;
	}
	
	.eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.button.add_to_cart_button, .eael-woo-product-slider-container .eael-woo-product-slider .eael-product-slider .eael-add-to-cart-button a.added_to_cart {
		font-size: 14px;
		padding: 9px 20px !important;
	}
	
	.eael-woo-product-slider-container.preset-3 .eael-product-slider .eael-add-to-cart-button {
		margin-top: 10px;
	}
}

@media only screen and (max-width: 600px) {
	.eael-woo-product-slider-container .icons-wrap.box-style-list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		top: 47%;
	}
}

.theme-oceanwp .amount {
	color: inherit;
}

.theme-astra .eael-woo-product-slider ul.swiper-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: unset;
	-moz-column-gap: unset;
	column-gap: unset;
}

.theme-astra .eael-woo-product-slider-container.preset-1 .eael-product-slider li a.added_to_cart, .theme-astra .eael-woo-product-slider-container.preset-2 .eael-product-slider li a.added_to_cart {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.theme-blocksy .button:before {
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
	-webkit-filter: none !important;
	filter: none !important;
	opacity: 1;
	z-index: 0;
	bottom: 0 !important;
	right: 0;
	line-height: 1.2em;
}

.theme-blocksy .button:hover {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.theme-woodmart .amount {
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
}

.theme-woodmart del .amount {
	color: inherit;
	font-weight: inherit;
}

.theme-woodmart .price del {
	color: inherit;
}

.theme-savoy .eael-woo-product-slider.woocommerce ul.products li.product .star-rating {
	font-size: 12px;
	letter-spacing: 2px;
	width: 75px;
}

.theme-savoy .eael-woo-product-slider.woocommerce ul.products li.product .star-rating:before {
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 12px;
	left: 0px;
}

.theme-savoy .eael-woo-product-slider.woocommerce ul.products li.product .star-rating span {
	font-size: 12px;
	letter-spacing: 2px;
}

.theme-savoy .eael-woo-product-slider.woocommerce ul.products li.product .star-rating span:before {
	font-size: 12px;
	letter-spacing: 2px;
	left: 0px;
	line-height: 12px;
}

.theme-buddyboss-theme .woocommerce.eael-woo-product-slider ul.products li.product {
	max-width: 100%;
}

.theme-buddyboss-theme .woocommerce.eael-woo-product-slider ul.products li.product:first-of-type {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.theme-buddyboss-theme .woocommerce.eael-woo-product-slider ul.products li.product.type-product {
	margin: 0;
}

.theme-buddyboss-theme .woocommerce.eael-woo-product-slider ul.products li.product .product-details-wrap {
	padding-left: 10px;
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-2 .eael-product-slider {
	width: 100%;
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-1 .eael-woo-product-slider li.product, .theme-buddyboss-theme #content .elementor-widget-container .preset-2 .eael-woo-product-slider li.product {
	background: rgba(0, 0, 0, 0);
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-1 .eael-woo-product-slider li.product .button.add_to_cart_button, .theme-buddyboss-theme #content .elementor-widget-container .preset-2 .eael-woo-product-slider li.product .button.add_to_cart_button {
	width: 55px;
	border-radius: 5px;
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-1 .eael-woo-product-slider li.product a.added_to_cart, .theme-buddyboss-theme #content .elementor-widget-container .preset-2 .eael-woo-product-slider li.product a.added_to_cart {
	width: 55px;
	line-height: 0;
	font-size: 0;
	border: none;
	border-radius: 3px;
	margin: 3px;
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-3 .eael-woo-product-slider li.product, .theme-buddyboss-theme #content .elementor-widget-container .preset-4 .eael-woo-product-slider li.product {
	background: rgba(0, 0, 0, 0);
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-3 .eael-woo-product-slider li.product .button.add_to_cart_button, .theme-buddyboss-theme #content .elementor-widget-container .preset-4 .eael-woo-product-slider li.product .button.add_to_cart_button {
	width: auto;
	float: left;
	border-radius: 30px;
	border: none;
}

.theme-buddyboss-theme #content .elementor-widget-container .preset-3 .eael-woo-product-slider li.product a.added_to_cart, .theme-buddyboss-theme #content .elementor-widget-container .preset-4 .eael-woo-product-slider li.product a.added_to_cart {
	width: auto;
	float: left;
	border-radius: 30px;
}

.theme-cartzilla .eael-woo-product-slider-container .eael-woo-product-slider .swiper-wrapper.products .product {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	max-width: 100%;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-1 .icons-wrap.box-style li a.button.add_to_cart_button {
	color: #004eff !important;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-1 .icons-wrap.box-style li a.button.add_to_cart_button .czi-cart {
	display: none;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-1 .icons-wrap.box-style li a.button.add_to_cart_button:hover {
	color: #fff !important;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-2 .icons-wrap.box-style-list li a.button.add_to_cart_button {
	color: #ff3f56 !important;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-2 .icons-wrap.box-style-list li a.button.add_to_cart_button .czi-cart {
	display: none;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-2 .icons-wrap.box-style-list li a.button.add_to_cart_button:hover {
	color: #fff !important;
}

.theme-cartzilla .eael-woo-product-slider-container.preset-4 .btn-primary, .theme-cartzilla .eael-woo-product-slider-container.preset-3 .btn-primary {
	border-color: rgba(0, 0, 0, 0);
	width: auto;
}

.eael-button-wrap.eael-force-hide, .eael-load-more-button-wrap.eael-force-hide {
	display: none !important;
}

.eael-button-wrap.eael-infinity-scroll, .eael-load-more-button-wrap.eael-infinity-scroll {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.eael-button-wrap.eael-infinity-scroll .eael-load-more-button:not(.button--loading), .eael-load-more-button-wrap.eael-infinity-scroll .eael-load-more-button:not(.button--loading) {
	display: none !important;
	height: 1px;
}

.eael-button.hide, .eael-load-more-button.hide {
	display: none !important;
}

.eael-button.button--loading .eael-btn-loader, .eael-load-more-button.button--loading .eael-btn-loader {
	display: block;
}

.eael-button.button--loading>span, .eael-load-more-button.button--loading>span {
	margin-left: 0;
}

.eael-button.button--loading .eael-btn-loader, .eael-load-more-button.button--loading .eael-btn-loader {
	left: 0;
}

.rtl .eael-load-more-button-wrap {
	direction: ltr;
}

.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab img {
	display: block;
	margin: 0 auto 5px auto;
}

.eael-product-gallery.eael-terms-layout-vertical {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2%;
}

@media (max-width: 767px) {
	.eael-product-gallery.eael-terms-layout-vertical {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
}

.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab {
	width: 25%;
}

@media (max-width: 767px) {
	.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab {
		width: 100%;
	}
}

@media (min-width: 768px) {
	.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li {
		display: block;
	}
}

.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:first-child a {
	margin-top: 0;
}

.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:last-child a {
	margin-bottom: 0;
}

.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab a {
	padding: 20px 30px;
}

.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab img {
	margin: 0 5px 0 0;
}

.eael-product-gallery.eael-terms-layout-vertical .woocommerce {
	width: 75%;
}

@media (max-width: 767px) {
	.eael-product-gallery.eael-terms-layout-vertical .woocommerce {
		width: 100%;
	}
}

.eael-product-gallery .eael-cat-tab img {
	width: 35px;
}

.eael-product-gallery .woocommerce ul.products .product .eael-product-sold-count-progress-bar-wrapper {
	background-color: #f1f1f1;
	border-radius: 10px;
	overflow: hidden;
}

.eael-product-gallery .woocommerce ul.products .product .eael-product-sold-count-progress-bar {
	background-color: #2196f3;
	height: 10px;
	border-radius: 10px;
}

.eael-product-gallery .woocommerce ul.products .product .star-rating {
	margin: 0 auto 5px;
	display: inline-block;
	float: none;
	height: 1em;
	width: 5.6em;
	font-size: 1em;
	line-height: 1em;
}

.eael-product-gallery .woocommerce ul.products .product .star-rating:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	opacity: 1;
}

.eael-product-gallery .woocommerce ul.products .product .star-rating span {
	display: inline-block;
}

.eael-product-gallery .woocommerce ul.products .product .star-rating span:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.eael-product-gallery .woocommerce ul.products .product .ast-on-card-button.ast-onsale-card {
	display: none !important;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #333;
	margin: 25px 0 12px;
	padding: 0;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .onsale {
	display: block;
	line-height: 170px;
	font-size: 13px;
	text-align: center;
	letter-spacing: 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
	text-transform: uppercase;
	color: #fff;
	background-color: #ff2a13;
	border-radius: 0;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	position: absolute;
	height: 100px;
	width: 200px;
	z-index: 1;
	left: -100px;
	top: -50px;
	right: auto;
	margin: 0;
	padding: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .outofstock-badge {
	line-height: 16px;
	font-size: 13px;
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	letter-spacing: 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
	text-transform: uppercase;
	color: #fff;
	background-color: #ff2a13;
	border-radius: 0;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	position: absolute;
	height: 100px;
	width: 200px;
	z-index: 1;
	left: -95px;
	top: -45px;
	right: auto;
	margin: 0;
	padding: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price {
	font-size: 14px;
	margin-bottom: 0;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price del {
	opacity: .5;
	display: inline-block;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price ins {
	font-weight: 400;
	background-color: rgba(0, 0, 0, 0);
	color: #ff2a13;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating {
	display: block;
	float: none;
	font-size: 14px;
	margin: 10px auto;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .eael-wc-compare {
	color: #fff;
	background-color: #333;
}

.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart {
	display: block;
	margin: 15px;
	padding: 0;
	font-size: 14px;
	line-height: 38px;
	text-transform: capitalize;
	color: #333;
	background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 766px) {}

@media (min-width: 766px) {}

.eael-product-gallery .woocommerce ul.products h2.eael-product-not-found {
	grid-column: 1/-1;
	text-align: center;
	font-size: 20px;
}

.eael-product-gallery .woocommerce ul.products li.product .woocommerce-loop-product__title {
	letter-spacing: normal;
	font-weight: 700;
	text-transform: capitalize;
	font-size: 1em;
}

.eael-product-gallery .woocommerce ul.products li.product .star-rating {
	margin: 0 auto 5px;
	display: inline-block;
	float: none;
	height: 1em;
	width: 5.6em;
	font-size: 1em;
	line-height: 1em;
}

.eael-product-gallery .woocommerce ul.products li.product .star-rating:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	opacity: 1;
}

.eael-product-gallery .woocommerce ul.products li.product .star-rating span {
	display: inline-block;
}

.eael-product-gallery .woocommerce ul.products li.product .star-rating span:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br {
	display: none;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.right {
	left: auto;
	right: 0;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.outofstock {
	line-height: 1.2em;
	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;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.right {
	left: auto;
	right: 5px;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br {
	display: none;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.right {
	left: auto;
	right: 15px;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br {
	display: none;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right {
	left: auto;
	right: 0;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right:after {
	right: auto;
	left: -15px;
	border-left: 0;
	border-right: 10px solid #23a454;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.outofstock {
	line-height: normal;
	padding-top: 12px;
	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;
}

.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.right {
	left: auto;
	right: -35px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.eael-product-gallery .eael-product-wrap .star-rating {
	margin: 0 auto 10px;
}

.eael-product-gallery .eael-product-wrap a.button.add_to_cart_button.added {
	display: none !important;
}

.eael-product-gallery .eael-product-wrap:hover .icons-wrap.box-style {
	bottom: 30px;
	visibility: visible;
	opacity: 1;
}

.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-box-style {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}

.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-style {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style {
	background: red;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	width: 100%;
	top: auto;
	bottom: -50px;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li:not(:last-child) {
	border-right: 1px solid #fff;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li.add-to-cart {
	-webkit-box-flex: 4;
	-ms-flex: 4;
	flex: 4;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a {
	position: relative;
	background-color: rgba(0, 0, 0, 0);
	margin: 0;
	padding: 10px 5px;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a:hover {
	background-color: rgba(0, 0, 0, 0);
	color: #000;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a i {
	line-height: normal;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style {
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: auto;
	bottom: -100px;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a {
	position: relative;
	width: 42px;
	height: 42px;
	margin: 3px;
	-webkit-box-shadow: 0px 15px 10px rgba(61, 70, 79, .12);
	box-shadow: 0px 15px 10px rgba(61, 70, 79, .12);
	background-color: #fff;
	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;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a i {
	line-height: 1rem;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart {
	font-size: 0 !important;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after {
	content: "";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button {
	padding: 0;
	margin: 3px;
	font-size: 0px !important;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before {
	content: "";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	font-weight: 900;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	position: absolute;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before {
	content: "";
}

.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart {
	font-size: 0 !important;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after {
	content: "";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	line-height: 38px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	margin: 3px;
	padding: 0;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external {
	width: auto;
	height: auto;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style {
	background: #fff;
	width: 100%;
	top: auto;
	bottom: -50px;
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a {
	position: relative;
	width: 42px;
	height: 42px;
	margin: 10px 2px 0;
	padding: 0;
	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;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a i {
	line-height: 1rem;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart {
	font-size: 0 !important;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after {
	content: "";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button {
	padding: 0;
	margin: 10px 2px 0;
	font-size: 0px !important;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before {
	content: "";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	font-weight: 900;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	position: absolute;
}

.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before {
	content: "";
}

.eael-product-gallery .eael-product-wrap .icons-wrap li a svg {
	width: 18px;
}

.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button, .eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button, .eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button {
	display: none;
}

.eael-load-more-button.hide-load-more {
	display: none !important;
}

@media only screen and (min-width: 1025px) {}

@media only screen and (max-width: 1024px)and (min-width: 766px) {}

@media only screen and (max-width: 767px) {
	.eael-product-gallery-column-mobile-1 .eael-product-gallery .woocommerce ul.products {
		grid-template-columns: 100%;
	}
	
	.eael-product-gallery-column-mobile-2 .eael-product-gallery .woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.eael-product-gallery-column-mobile-3 .eael-product-gallery .woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.eael-product-gallery-column-mobile-4 .eael-product-gallery .woocommerce ul.products {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.eael-product-gallery-column-mobile-5 .eael-product-gallery .woocommerce ul.products {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.eael-product-gallery-column-mobile-6 .eael-product-gallery .woocommerce ul.products {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.eael-product-gallery-column-mobile-1 .eael-product-gallery.masonry .woocommerce ul.products li.product {
		width: 100%;
		margin: 15px 0;
	}
	
	.eael-product-gallery-column-mobile-2 .eael-product-gallery.masonry .woocommerce ul.products li.product {
		width: 48% !important;
		margin: 1%;
	}
	
	.eael-product-gallery-column-mobile-3 .eael-product-gallery.masonry .woocommerce ul.products li.product {
		width: 31.3333% !important;
		margin: 1%;
	}
	
	.eael-product-gallery-column-mobile-4 .eael-product-gallery.masonry .woocommerce ul.products li.product {
		width: 23% !important;
		margin: 1%;
	}
	
	.eael-product-gallery-column-mobile-5 .eael-product-gallery.masonry .woocommerce ul.products li.product {
		width: 18% !important;
		margin: 1%;
	}
	
	.eael-product-gallery-column-mobile-6 .eael-product-gallery.masonry .woocommerce ul.products li.product {
		width: 14.66666667% !important;
		margin: 1%;
	}
}

.eael-product-loader {
	opacity: .6 !important;
	pointer-events: none !important;
}

.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
	position: unset;
	display: unset;
}

.woocommerce ul.products li.product .ast-shop-product-out-of-stock, .woocommerce-page ul.products li.product .ast-shop-product-out-of-stock {
	display: none;
}

.theme-astra .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart {
	line-height: 38px;
	width: 90%;
	margin: 12px auto;
}

.theme-blocksy .button:before {
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
	-webkit-filter: none !important;
	filter: none !important;
	opacity: 1;
	z-index: 0;
	bottom: 0 !important;
	right: 0;
	line-height: 1.2em;
}

.theme-blocksy .button:hover {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating {
	width: 85px;
}

.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating:before {
	line-height: 13px;
}

.theme-savoy .eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating span:before {
	line-height: 11px;
}

.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating {
	font-size: 12px;
	letter-spacing: 2px;
}

.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating:before {
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 18px;
}

.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating span {
	font-size: 12px;
	letter-spacing: 2px;
}

.theme-savoy .eael-product-gallery .woocommerce ul.products li.product .star-rating span:before {
	font-size: 12px;
	letter-spacing: 2px;
	left: 9px;
	line-height: 18px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-1.eael-product-gallery .woocommerce li.product .button, .theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-2.eael-product-gallery .woocommerce li.product .button, .theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-3.eael-product-gallery .woocommerce li.product .button {
	width: 42px;
	border-radius: 4px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-1.eael-product-gallery .woocommerce li.product a.added_to_cart, .theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-2.eael-product-gallery .woocommerce li.product a.added_to_cart, .theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-3.eael-product-gallery .woocommerce li.product a.added_to_cart {
	width: 42px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-2.eael-product-gallery li.product .button {
	margin-top: 10px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-4.eael-product-gallery .woocommerce li.product .button {
	width: 92%;
	border-radius: 4px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-4.eael-product-gallery .woocommerce li.product .star-rating {
	display: inline-block;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-preset-4.eael-product-gallery .woocommerce li.product a.added_to_cart {
	height: 55px;
	width: 92%;
	margin: auto;
	float: initial;
	border-radius: 4px;
	line-height: 50px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .eael-product-preset-1 li.product a.added_to_cart, .theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .eael-product-preset-2 li.product a.added_to_cart, .theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .eael-product-preset-3 li.product a.added_to_cart {
	width: 42px;
	line-height: 0;
	font-size: 0;
	margin-right: 3px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .woocommerce ul.products:not(.elementor-grid) {
	display: grid;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .woocommerce li.product {
	max-width: 100%;
	display: block;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .woocommerce li.product .star-rating {
	min-width: 110px;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .woocommerce li.product a.button.add_to_cart_button {
	margin-bottom: 0;
}

.theme-buddyboss-theme #content .elementor-widget-eael-woo-product-gallery .eael-product-gallery .woocommerce li.product .eael-product-price ins {
	text-decoration: none;
}

.theme-kadence .woocommerce ul.products:not(.woo-archive-btn-button) li:where(:not(.woo-archive-btn-button)) .button:not(.kb-button) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}