
:root {
	/* Grid/Carousel Header */
	--wpcu-headerFontSize: 24px;
	--wpcu-headerFontColor: #000;
	--wpcu-productTitleSize: 16px;
	--wpcu-productTitleColor: #363940;
	--wpcu-productTitleColorHover: #000;
	--wpcu-productPriceSize: 16px;
	--wpcu-productPriceColor: #f50;
	--wpcu-productRatingSize: 16px;
	--wpcu-productRatingColor: #feb507;
	--wpcu-buttonColor: #fff;
	--wpcu-buttonColorHover: #fff;
	--wpcu-buttonBgColor: #f50;
	--wpcu-buttonBgColorHover: #d54500;
	--wpcu-ribbonBgColor: #f50;
	--wpcu-qvIconColor: #fff;
	--wpcu-qvBgColor: #f50;
	--wpcu-navArrowColor: #333;
	--wpcu-navArrowColorHover: #fff;
	--wpcu-navBgColor: #fff;
	--wpcu-navBgColorHover: #f50;
	--wpcu-navBorderColor: #e4e4ed;
	--wpcu-navBorderColorHover: #f50;
	--wpcu-pagColor: #333;
	--wpcu-pagColorHover: #fff;
	--wpcu-pagBorderColor: #e4e4e4;
	--wpcu-pagBorderColorHover: #f50;
	--wpcu-pagBgColor: #fff;
	--wpcu-pagBgColorHover: #f50;
	--wpcu-pagActiveColor: #fff;
	--wpcu-pagActiveBorderColor: #f50;
	--wpcu-pagActiveBgColor: #f50;
	--wpcu-dotsColor: #b0b0b0;
	--wpcu-dotsActiveColor: #f50;
}

/* General Styles */
.wpcu-products {
	max-width: 100% !important;
	width: 100%;
	padding: 0;
	font-family: "Rubik", sans-serif;
	position: relative;
}

/* Product image tweaks */
.wpcu-product {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.wpcu-product .wpcu-product__img {}

.wpcu-product .wpcu-product__img img {
	width: 100%;
	-webkit-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
}

.wpcu-product .wpcu-product__img--hover-effect > a {
	display: block;
	overflow: hidden;
}

.wpcu-product .wpcu-product__img--hover-effect:hover img {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}

/* Lazy load */
.wpcu-lazy-load {
	position: relative;
}

.wpcu-lazy-load:before {
	content: "";
	z-index: 9998;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #f5f5f5;
}

.wpcu-lazy-load:after {
	content: "";
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #f50;
	border-right-color: transparent;
	-webkit-animation: wpcu-rotate 2s linear infinite;
	animation: wpcu-rotate 2s linear infinite;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9999;
}

/* Carousel nav style */
.wpcu-carousel-nav {
	margin: 0 -5px;
	padding: 0 15px;
}

.wpcu-carousel-nav__btn {
	width: 40px;
	height: 40px;
	border: 1px solid var(--wpcu-navBorderColor) !important;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 5px;
	cursor: pointer;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	background: var(--wpcu-navBgColor) !important;
}

.wpcu-carousel-nav__btn svg {
	width: 6px;
	fill: var(--wpcu-navArrowColor) !important;
}

.wpcu-carousel-nav__btn:hover {
	border-color: var(--wpcu-navBorderColorHover) !important;
	background: var(--wpcu-navBgColorHover) !important;
}

.wpcu-carousel-nav__btn:hover svg {
	fill: var(--wpcu-navArrowColorHover) !important;
}

.wpcu-carousel-nav--circle .wpcu-carousel-nav__btn {
	border-radius: 50%;
}

.wpcu-carousel-nav--bottom-left {
	margin-top: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0;
}

.wpcu-carousel-nav--bottom-middle {
	margin-top: 35px;
	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;
}

.wpcu-carousel-nav--bottom-right {
	margin-top: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 0;
}

.wpcu-carousel-nav--middle {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 99;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.wpcu-carousel-nav--middle .wpcu-carousel-nav__btn {
	margin: 0;
	pointer-events: all;
}

.wpcu-carousel-nav--middle .wpcu-carousel-nav__btn--prev {
	margin-left: 0;
}

.wpcu-carousel-nav--middle .wpcu-carousel-nav__btn--next {
	margin-right: 0;
}

.wpcu-carousel-nav--top-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 30px;
	padding: 0;
}

.wpcu-carousel-nav--top-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 30px;
	padding: 0;
}

.wpcu-carousel-nav--top-middle {
	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;
	margin-bottom: 30px;
	padding: 0;
}

/* Header style */
.wpcu-products__header {
	margin: 0 0 30px !important;
	max-width: 100% !important;
	padding: 0 15px;
	text-align: left;
}

.wpcu-products__header.wpcu-products__header--middle {
	text-align: center;
}

.wpcu-products__header.wpcu-products__header--right {
	text-align: right;
}

.wpcu-products__header h2 {
	font-size: var(--wpcu-headerFontSize);
	color: var(--wpcu-headerFontColor) !important;
	font-weight: 500;
	margin: 0 !important;
	padding: 0 !important;
}

/* Carousel Style */
.wpcu-carousel {
	overflow: hidden;
}

/* wpcu grid */
.wpcu-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	margin-top: -25px;
	min-width: 100%;
}

.wpcu-row > * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 25px;
}

/* wpcu columns */
.wpcu-column-1 .wpcu-product {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
}

.wpcu-column-2 .wpcu-product {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}

.wpcu-column-3 .wpcu-product {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
}

.wpcu-column-4 .wpcu-product {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
}

.wpcu-column-5 .wpcu-product {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
}

/* columns in mobile and tablet */
@media only screen and (max-width: 991px) {
	.wpcu-column-md-1 .wpcu-product {
		-webkit-box-flex: 0 !important;
		-ms-flex: 0 0 100% !important;
		flex: 0 0 100% !important;
	}
	
	.wpcu-column-md-2 .wpcu-product {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
	}
	
	.wpcu-column-md-3 .wpcu-product {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33%;
		flex: 0 0 33.33%;
	}
	
	.wpcu-column-md-4 .wpcu-product {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
	}
}

@media only screen and (max-width: 767px) {
	.wpcu-column-sm-1 .wpcu-product {
		-webkit-box-flex: 0 !important;
		-ms-flex: 0 0 100% !important;
		flex: 0 0 100% !important;
	}
	
	.wpcu-column-sm-2 .wpcu-product {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
	}
	
	.wpcu-column-sm-3 .wpcu-product {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33%;
		flex: 0 0 33.33%;
	}
	
	.wpcu-column-sm-4 .wpcu-product {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
	}
}

/* Keyframes */
@-webkit-keyframes wpcu-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes wpcu-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*
    * Buttons
    ? Modifiers: --sm, --rounded, --rounded-circle, --icon-circle, --outlined, --light
*/
.wpcu-button {
	display: inline-block;
}

.wpcu-button p {
	margin: 0;
	display: inline-block;
}

.wpcu-button .button, .wpcu-button .added_to_cart, .wpcu-button .button.added {
	min-height: 40px;
	background: var(--wpcu-buttonBgColor) !important;
	color: var(--wpcu-buttonColor) !important;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 12px;
	padding: 0 15px !important;
	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;
	text-decoration: none;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	border: 1px solid transparent !important;
	line-height: unset;
	text-align: center;
}

.wpcu-button .button:hover, .wpcu-button .added_to_cart:hover, .wpcu-button .button.added:hover {
	text-decoration: none;
	background: var(--wpcu-buttonBgColorHover) !important;
	color: var(--wpcu-buttonColorHover) !important;
	border-color: var(--wpcu-buttonBgColorHover) !important;
}

.wpcu-button--outlined .button, .wpcu-button--outlined .added_to_cart {
	border: 1px solid #e4e4ed;
	background: var(--wpcu-buttonBgColor) !important;
	color: var(--wpcu-buttonColor) !important;
}

.wpcu-button--outlined .button:hover, .wpcu-button--outlined .added_to_cart:hover {
	color: var(--wpcu-buttonColorHover) !important;
	background: var(--wpcu-buttonBgColorHover) !important;
	border-color: var(--wpcu-buttonBgColorHover) !important;
}

.wpcu-button--sm .button, .wpcu-button--sm .added_to_cart {
	min-height: 35px;
	padding: 0 12px;
}

.wpcu-button--rounded .button, .wpcu-button--rounded .added_to_cart {
	border-radius: 3px;
}

.wpcu-button--rounded-circle .button, .wpcu-button--rounded-circle .added_to_cart {
	border-radius: 20px !important;
}

.wpcu-button--icon-circle a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--wpcu-qvBgColor);
}

.wpcu-button--icon-circle a svg {
	width: 14px;
	height: 14px;
	fill: var(--wpcu-qvIconColor);
}

.wpcu-button--light .button {
	background: var(--wpcu-buttonBgColor) !important;
	border-color: #fff;
	color: var(--wpcu-buttonColor) !important;
}

.wpcu-button--light .button:hover {
	color: var(--wpcu-buttonColorHover) !important;
	border-color: var(--wpcu-buttonBgColorHover) !important;
	background: var(--wpcu-buttonBgColorHover) !important;
}

/* Button tweaks */
.wpcu-button .button.added {
	display: none !important;
}

/* Button text decoration none */
.wpcu-product .wpcu-button .button, .wpcu-product .wpcu-button .added_to_cart, .wpcu-product .wpcu-button .button.added {
	text-decoration: none !important;
}

/* Badges */
.wpcu-badge {
	height: 26px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 12px;
	padding: 0 12px;
}

.wpcu-badge--primary {
	color: #fff;
	background: var(--wpcu-ribbonBgColor) !important;
}

.wpcu-badge--sm {
	height: 20px;
	padding: 0 7px;
}

.wpcu-badge--outlined {
	border: 1px solid #f50;
	color: #f50;
}

.wpcu-badge--rounded {
	border-radius: 2px;
}

.wpcu-badge--rounded-circle {
	border-radius: 25px;
}

.wpcu-badge--text-lg {
	text-transform: uppercase;
	font-weight: 500;
}

/* Product title */
.wpcu-product__title {
	margin: 0 !important;
	line-height: normal;
	font-size: unset;
	font-family: inherit;
}

.wpcu-product__title::before {
	content: none;
}

.wpcu-product__title a {
	text-decoration: none;
	font-size: var(--wpcu-productTitleSize);
	font-weight: normal;
	color: var(--wpcu-productTitleColor) !important;
	letter-spacing: normal;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.wpcu-product__title a:hover {
	color: var(--wpcu-productTitleColorHover) !important;
}

.wpcu-product .wpcu-product__title a {
	text-decoration: none;
}

/* Product Price */
.wpcu-product__price {
	line-height: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 -4px;
}

.wpcu-product__price__sale {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #9192a3;
	font-size: 15px;
}

.wpcu-product__price ins, .wpcu-product__price del {
	background: none;
}

.wpcu-product__price ins bdi, .wpcu-product__price .amount {
	display: inline-block;
	font-size: var(--wpcu-productPriceSize);
	line-height: normal;
	color: var(--wpcu-productPriceColor) !important;
	margin: 0 4px;
}

.wpcu-product__price del bdi {
	font-weight: 300;
	display: inline-block;
	font-size: var(--wpcu-productPriceSize);
	color: #9192a3;
	margin: 0;
	text-decoration: line-through;
}

.wpcu-product__price__discount-badge {
	margin: 0 4px;
}

/* Product rating */
.wpcu-product__rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wpcu-product__rating__stars {
	position: relative;
}

.wpcu-product__rating__stars__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wpcu-product__rating__stars__wrap svg {
	width: var(--wpcu-productRatingSize) !important;
	fill: var(--wpcu-productRatingColor) !important;
}

.wpcu-product__rating__stars__solid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}

.wpcu-product__rating__stars__solid svg {
	min-width: var(--wpcu-productRatingSize) !important;
	fill: var(--wpcu-productRatingColor) !important;
}

.wpcu-product__rating .wpcu-product__rating__total {
	font-size: 14px;
	color: #9192a3;
	display: inline-block;
	padding-left: 4px;
	position: relative;
	top: 2px;
}

/*
    Product cover content placement
    .wpcu-product__cover-content
        --modifiers:
            top-left,
            top-right,
            bottom-right,
            bottom-left,
            middle
*/
.wpcu-product__cover-content {
	font-size: initial;
	line-height: unset;
	position: absolute;
}

.wpcu-product__cover-content--top-left {
	top: 20px;
	left: 20px;
}

.wpcu-product__cover-content--top-right {
	top: 20px;
	right: 20px;
}

.wpcu-product__cover-content--bottom-right {
	bottom: 20px;
	right: 20px;
}

.wpcu-product__cover-content--bottom-left {
	left: 20px;
	bottom: 20px;
}

.wpcu-product__cover-content--middle {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/*===========================
 Utility Classes
===========================*/
.wpcu-text-center {
	text-align: center;
}

.wpcu-pos-relative {
	position: relative;
}

.wpcu-tr-0 {
	top: 0;
	right: 0;
}

.wpcu-tl-0 {
	top: 0;
	left: 0;
}

.wpcu-br-0 {
	bottom: 0;
	right: 0;
}

.wpcu-bl-0 {
	bottom: 0;
	left: 0;
}

/*===========================
 Modal Styles
===========================*/

/* Modal Style */
.wpcu-modal.wpcu-modal--loading .wpcu-modal__content {
	position: relative;
	overflow: hidden;
}

.wpcu-modal.wpcu-modal--loading .wpcu-modal__content::after {
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #fff;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
}

.wpcu-modal.wpcu-modal--loading .wpcu-modal__content::before {
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	border: 2px solid #f50;
	border-right-color: transparent;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 2;
	-webkit-animation: wpcu-rotate 2s linear infinite;
	animation: wpcu-rotate 2s linear infinite;
}

.wpcu-modal .wpcu-modal__content .wpcu-modal__body .add_to_cart_inline {
	border: 0 none !important;
	padding: 0 !important;
}

.wpcu-modal .wpcu-modal-close {
	width: 40px;
	height: 40px;
	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;
	border-radius: 50%;
	background: #f3f3f3;
	text-decoration: none !important;
}

.wpcu-modal .wpcu-modal-close span {
	position: relative;
	top: -2px;
}

.wpcu-modal .wpcu-modal__product-title {
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 20px;
	margin-top: 0;
}

.wpcu-modal .wpcu-modal__product-title::before {
	content: none;
}

.wpcu-modal .wpcu-modal__product-image {
	margin-bottom: 20px;
}

.wpcu-modal .wpcu-modal__product-image img {
	max-width: 300px;
}

.wpcu-modal .wpcu-modal__product-price {
	margin-bottom: 10px;
}

.wpcu-modal .wpcu-modal__product-price .amount {
	font-size: 22px;
	font-weight: 600;
	color: var(--wpcu-productPriceColor);
}

.wpcu-modal .wpcu-modal__product-price ins {
	text-decoration: none;
}

.wpcu-modal .wpcu-modal__product-price del bdi {
	font-weight: 300;
	color: #9192a3;
}

.wpcu-modal .wpcu-modal__product-description {
	margin-bottom: 20px;
}

.wpcu-modal .wpcu-modal__product-description p {
	color: #505050;
	font-size: 16px;
}

.wpcu-modal .wpcu-modal__product-action p {
	border: 0 none !important;
	padding: 0 !important;
}

.wpcu-modal .wpcu-modal__product-action p a, .wpcu-modal .wpcu-modal__product-action p a.added_to_cart {
	border-radius: 5px;
	line-height: 46px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 500;
	color: var(--wpcu-buttonColor);
	background: var(--wpcu-buttonBgColor) !important;
	border: 0 none;
	text-decoration: none !important;
	display: inline-block;
}

.wpcu-modal .wpcu-modal__product-action p a:hover, .wpcu-modal .wpcu-modal__product-action p a:focus, .wpcu-modal .wpcu-modal__product-action p a:active {
	text-decoration: none !important;
	background: var(--wpcu-buttonBgColorHover) !important;
	color: var(--wpcu-buttonColorHover);
	border-radius: 5px;
}

.wpcu-modal .wpcu-modal__product-action p a.added {
	display: none !important;
}

/*===========================
 Pagination styles
===========================*/
.wpcu-pagination .pagination {
	margin: 0;
	padding: 0;
	border: 0 none;
	width: 100%;
	max-width: 100%;
}

.wpcu-pagination .pagination .nav-links {
	margin: 25px -5px -5px;
	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;
}

.wpcu-pagination.wpcu-pagination--left .pagination .nav-links {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wpcu-pagination.wpcu-pagination--right .pagination .nav-links {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.wpcu-pagination .pagination .nav-links .page-numbers {
	color: var(--wpcu-pagColor) !important;
	margin: 5px;
	font-size: 14px;
	text-decoration: none !important;
	border: 1px solid var(--wpcu-pagBorderColor) !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	background: var(--wpcu-pagBgColor) !important;
	width: 34px;
	min-width: 34px;
	height: 34px;
	min-height: 34px;
	border-radius: 3px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.wpcu-pagination .pagination .nav-links .page-numbers:before, .wpcu-pagination .pagination .nav-links .page-numbers:after {
	content: none;
}

.wpcu-pagination .pagination .nav-links .page-numbers.prev, .wpcu-pagination .pagination .nav-links .page-numbers.next {
	position: static;
}

.wpcu-pagination .pagination .nav-links .page-numbers svg {
	fill: var(--wpcu-pagColor) !important;
}

.wpcu-pagination .pagination .nav-links .page-numbers:hover svg {
	fill: var(--wpcu-pagColorHover) !important;
}

.wpcu-pagination .pagination .nav-links .page-numbers:hover {
	background: var(--wpcu-pagBgColorHover) !important;
	border-color: var(--wpcu-pagBorderColorHover) !important;
	color: var(--wpcu-pagColorHover) !important;
}

.wpcu-pagination .pagination .nav-links .page-numbers.current {
	background: var(--wpcu-pagActiveBgColor) !important;
	border-color: var(--wpcu-pagActiveBorderColor) !important;
	color: var(--wpcu-pagActiveColor) !important;
}

/* Carousel bullets pagination */
.wpcu-carousel-pagination {
	margin-top: 30px;
	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;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.wpcu-carousel-pagination .swiper-pagination-bullet {
	background: var(--wpcu-dotsColor) !important;
	opacity: 1;
}

.wpcu-carousel-pagination .swiper-pagination-bullet-active {
	background: var(--wpcu-dotsActiveColor) !important;
}

/*===========================
 Style: Theme One
===========================*/
.wpcu-theme_1 .wpcu-product__img {
	position: relative;
	margin-bottom: 20px;
}

.wpcu-theme_1 .wpcu-product__img .wpcu-overlay-content-bottom {
	padding: 0 15px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.wpcu-theme_1 .wpcu-product__content:hover .wpcu-overlay-content-bottom {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
	bottom: 20px;
}

.wpcu-theme_1 .wpcu-product__details {
	text-align: center;
	margin: -6px 0;
}

.wpcu-theme_1 .wpcu-product__details .wpcu-product__title, .wpcu-theme_1 .wpcu-product__details .wpcu-product__price {
	padding: 6px 0;
}

.wpcu-theme_1 .wpcu-product__price {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wpcu-theme_1 .wpcu-product__rating {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*===========================
 Style: Theme Two
===========================*/
.wpcu-theme_2 .wpcu-product__img {
	position: relative;
	margin-bottom: 20px;
}

.wpcu-theme_2 .wpcu-product__img .wpcu-product__cover-content--middle {
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

.wpcu-theme_2 .wpcu-product__details {
	text-align: center;
	margin: -6px 0;
}

.wpcu-theme_2 .wpcu-product__details .wpcu-product__title, .wpcu-theme_2 .wpcu-product__details .wpcu-product__price, .wpcu-theme_2 .wpcu-product__details .wpcu-product__rating, .wpcu-theme_2 .wpcu-product__details .wpcu-button {
	padding: 6px 0;
}

.wpcu-theme_2 .wpcu-product__price {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wpcu-theme_2 .wpcu-product__rating {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wpcu-theme_2 .wpcu-product__content:hover .wpcu-product__cover-content--middle {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

/*===========================
 Style: Theme Three
===========================*/
.wpcu-theme_3 .wpcu-product__content {
	border: 1px solid #e4e4ed;
	border-radius: 6px;
	padding: 10px;
	background: #fff;
}

.wpcu-theme_3 .wpcu-product__img {
	margin-bottom: 20px;
}

.wpcu-theme_3 .wpcu-product__img img {
	border-radius: 6px;
}

.wpcu-theme_3 .wpcu-product__img .wpcu-product__cover-content--middle {
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.wpcu-theme_3 .wpcu-product__details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin: -6px 0 6px;
}

.wpcu-theme_3 .wpcu-product__details .wpcu-product__title, .wpcu-theme_3 .wpcu-product__details .wpcu-product__price, .wpcu-theme_3 .wpcu-product__details .wpcu-product__rating {
	padding: 6px 0;
}

.wpcu-theme_3 .wpcu-product__content:hover .wpcu-product__cover-content--middle {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.elementor-widget-container .wpcu-product__price .wpcu-badge--rounded {
	display: none;
}

/* Modal Core Styles */
.wpcu-modal {
	position: fixed;
	width: 100% !important;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	left: 0;
	top: 0;
	z-index: -1;
	overflow: hidden;
	outline: 0;
	max-width: 100% !important;
}

.wpcu-modal__dialog {
	position: relative;
	width: 500px;
	margin: 30px auto;
	transition: .3s ease;
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.wpcu-modal__dialog-lg {
	width: 900px;
}

.wpcu-modal__content {
	width: 100%;
	background: #fff;
	pointer-events: auto;
	border-radius: 3px;
	position: relative;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.wpcu-modal__content .wpcu-modal__header {
	position: relative;
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.wpcu-modal__content .wpcu-modal__header .wpcu-modal__header--title {
	font-size: 16px;
	margin: 0;
}

.wpcu-modal__content .wpcu-modal-close {
	position: absolute;
	right: 15px;
	top: 10px;
	text-decoration: none;
}

.wpcu-modal__content .wpcu-modal__body {
	padding: 20px 25px;
}

.wpcu-modal__content .wpcu-modal__footer {
	border-top: 1px solid #eee;
	padding: 18px;
}

.wpcu-modal__content .wpcu-modal__footer .wpcu-modal__action {
	display: flex;
	justify-content: flex-end;
	margin: -7.5px;
}

.wpcu-modal__content .wpcu-modal__footer .wpcu-modal__action button {
	margin: 7.5px;
}

.wpcu-modal__dialog {
	height: 550px;
}

.wpcu-modal__dialog.wpcu-modal--lg {
	width: 800px;
}

.wpcu-modal__dialog.wpcu-modal--xl {
	width: 1140px;
}

.wpcu-modal__dialog.wpcu-modal--sm {
	width: 300px;
}

.wpcu-modal.wpcu-fade {
	transition: .3s ease;
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}

.wpcu-modal.wpcu-fade:not(.wpcu-show) {
	opacity: 0;
	visibility: hidden;
}

.wpcu-modal.wpcu-show .wpcu-modal__dialog {
	opacity: 1;
	visibility: visible;
	transition: .3s ease;
	pointer-events: all;
}

/* Responsive CSS */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.wpcu-modal__dialog {
		width: calc(100% - 60px);
		height: 500px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
	.wpcu-modal__dialog {
		width: calc(100% - 60px);
		height: 400px;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.wpcu-modal__dialog {
		width: calc(100% - 60px);
		height: 400px;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.wpcu-modal__dialog {
		width: calc(100% - 30px);
		height: 250px;
	}
}

:root {
	--swiper-theme-color: #007aff;
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-container-pointer-events {
	touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-container-3d {
	perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
	scroll-snap-type: y mandatory;
}

:root {
	--swiper-navigation-size: 44px;
}

.swiper-button-next, .swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - ( var(--swiper-navigation-size) / 2 ));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	text-transform: none;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
	content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
	content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
	--swiper-navigation-color: #fff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
	--swiper-navigation-color: #000;
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #000;
	opacity: .2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: .2s transform, .2s top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s right;
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-white {
	--swiper-pagination-color: #fff;
}

.swiper-pagination-black {
	--swiper-pagination-color: #000;
}

.swiper-pagination-lock {
	display: none;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1);
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s infinite linear;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next+.swiper-slide, .swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
	content: "";
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px);
}

.swiper-container-flip {
	overflow: visible;
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Navigation Menu CSS */
ul.hfe-nav-menu, .hfe-nav-menu li, .hfe-nav-menu ul {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.hfe-nav-menu li.menu-item {
	position: relative;
}

.hfe-flyout-container .hfe-nav-menu li.menu-item {
	position: relative;
	background: unset;
}

.hfe-nav-menu .sub-menu li.menu-item {
	position: relative;
	background: inherit;
}

.hfe-nav-menu__theme-icon-yes button.sub-menu-toggle {
	display: none;
}

div.hfe-nav-menu, .elementor-widget-hfe-nav-menu .elementor-widget-container {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.hfe-nav-menu__layout-horizontal, .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.hfe-nav-menu .parent-has-no-child .hfe-menu-toggle {
	display: none;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu, .hfe-submenu-action-hover .hfe-layout-vertical .hfe-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 16;
	visibility: hidden;
	opacity: 0;
	text-align: left;
	-webkit-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu, .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
	visibility: visible;
	opacity: 1;
}

.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:hover > .sub-menu, .hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
	visibility: hidden;
	opacity: 0;
}

.hfe-nav-menu .menu-item-has-children .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
}

.hfe-flyout-container .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
	top: 0;
	left: 0;
}

.hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
	top: 0;
	left: 100%;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu, .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children.focus > .sub-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

.hfe-nav-menu:before, .hfe-nav-menu:after {
	content: "";
	display: table;
	clear: both;
}

/* Alignemnt CSS */
.hfe-nav-menu__align-right .hfe-nav-menu {
	margin-left: auto;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	justify-content: flex-end;
}

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-menu-item, .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	justify-content: flex-end;
}

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper, .rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper, .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper, .rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper {
	text-align: right;
}

.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper, .rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper, .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper, .rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper {
	text-align: left;
}

.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper, .hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-button-wrapper {
	text-align: center;
}

.hfe-nav-menu__align-left .hfe-nav-menu {
	margin-right: auto;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	justify-content: flex-start;
}

.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-menu-item, .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	justify-content: flex-start;
}

.hfe-nav-menu__align-center .hfe-nav-menu {
	margin-left: auto;
	margin-right: auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-menu-item, .hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
	width: 100%;
}

.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.menu-item {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	flex-grow: 1;
}

.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

/* Alignment CSS ends */
.hfe-active-menu + nav li:not(:last-child) a.hfe-menu-item, .hfe-active-menu + nav li:not(:last-child) a.hfe-sub-menu-item {
	border-bottom-width: 0;
}

/*  Horizontal Menu */
.hfe-nav-menu a.hfe-menu-item, .hfe-nav-menu a.hfe-sub-menu-item {
	line-height: 1;
	text-decoration: none;
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.hfe-nav-menu a.hfe-menu-item:hover, .hfe-nav-menu a.hfe-sub-menu-item:hover {
	text-decoration: none;
}

.hfe-nav-menu .sub-menu {
	min-width: 220px;
	margin: 0;
	z-index: 9999;
}

.hfe-nav-menu__layout-horizontal {
	font-size: 0;
}

.hfe-nav-menu__layout-horizontal li.menu-item, .hfe-nav-menu__layout-horizontal > li.menu-item {
	font-size: medium;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu {
	-webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
	box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
}

/* Icons CSS */
.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i:before {
	content: "";
}

.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-arrow i:before {
	content: "";
}

.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-arrow i:before {
	content: "+";
}

.hfe-submenu-icon-none .hfe-nav-menu .parent-has-child .sub-arrow {
	display: none;
}

.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
	content: "";
}

.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
	content: "-";
}

.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
	content: "";
}

.rtl .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.rtl .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
	content: "";
}

/* Icon CSS ends */
.hfe-nav-menu-icon {
	padding: .35em;
	border: 0 solid;
}

.hfe-nav-menu-icon svg {
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 25px;
}

.hfe-nav-menu-icon i:focus {
	outline: 0;
}

.hfe-has-submenu-container a.hfe-menu-item:focus, .hfe-has-submenu-container a.hfe-sub-menu-item:focus {
	outline: 0;
}

/* Submenus */
.hfe-nav-menu .menu-item-has-children:focus, .hfe-nav-menu .menu-item-has-children .sub-menu:focus, .hfe-nav-menu .menu-item-has-children-container:focus {
	outline: 0;
}

.hfe-nav-menu .menu-item-has-children-container {
	position: relative;
}

.hfe-nav-menu__layout-expandible .sub-menu, .hfe-nav-menu__layout-vertical .sub-menu, .hfe-flyout-wrapper .sub-menu {
	position: relative;
	height: 0;
}

.hfe-nav-menu__submenu-arrow .hfe-menu-toggle:before, .hfe-nav-menu__submenu-plus .hfe-menu-toggle:before, .hfe-nav-menu__submenu-classic .hfe-menu-toggle:before {
	font-family: "Font Awesome 5 Free";
	z-index: 1;
	font-size: inherit;
	font-weight: inherit;
	line-height: 0;
}

.hfe-menu-item-center .hfe-nav-menu li a.hfe-menu-item, .hfe-menu-item-center .hfe-nav-menu li a.hfe-sub-menu-item {
	margin-right: 0px;
}

.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-menu-item, .hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-sub-menu-item {
	margin-right: 0px;
}

.hfe-nav-menu__toggle-icon:before {
	content: "";
	font-family: "fontAwesome";
	z-index: 1;
	font-size: 24px;
	font-weight: inherit;
	font-style: normal;
	line-height: 0;
}

.hfe-active-menu .hfe-nav-menu__toggle-icon:before {
	content: "";
}

.hfe-nav-menu__layout-expandible {
	-webkit-transition-property: display;
	transition-property: display;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: cubic-bezier(0, 1, .5, 1);
	transition-timing-function: cubic-bezier(0, 1, .5, 1);
}

.hfe-nav-menu__layout-expandible {
	visibility: hidden;
	opacity: 0;
}

.hfe-nav-menu__layout-expandible .sub-menu {
	visibility: hidden;
	opacity: 0;
}

.hfe-active-menu + .hfe-nav-menu__layout-expandible {
	visibility: visible;
	opacity: 1;
	height: auto;
}

.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-expandible, .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal, .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
	position: absolute;
	top: 100%;
}

.hfe-nav-menu__layout-expandible .menu-item-has-children .menu-item-has-children .sub-menu, .hfe-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
	top: 0;
	left: 0;
}

.hfe-layout-expandible nav {
	height: 0;
}

.hfe-nav-sub-menu-icon, .hfe-nav-menu__icon {
	display: inline-block;
	line-height: 1;
}

.hfe-nav-menu__toggle {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 22px;
	cursor: pointer;
	border: 0 solid;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #494c4f;
	position: relative;
	line-height: 1;
}

.hfe-nav-menu__toggle-icon {
	display: inline-block;
	font-size: inherit;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.hfe-nav-menu .sub-arrow {
	font-size: 14px;
	line-height: 1;
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	margin-top: -10px;
	margin-bottom: -10px;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
	margin-left: 10px;
}

.hfe-nav-menu__layout-vertical .hfe-nav-menu .sub-arrow, .hfe-layout-expandible .sub-arrow, .hfe-flyout-wrapper .sub-arrow {
	padding: 10px;
}

.hfe-nav-menu .child-item, .hfe-nav-menu__layout-vertical .hfe-nav-menu .child-item {
	font-size: 14px;
	line-height: 1;
	padding: 10px 0 10px 10px;
	margin-top: -10px;
	margin-bottom: -10px;
	position: absolute;
	right: 0;
	margin-right: 20px;
}

.hfe-layout-horizontal .hfe-nav-menu__toggle, .hfe-layout-vertical .hfe-nav-menu__toggle {
	visibility: hidden;
	opacity: 0;
	display: none;
}

.hfe-nav-menu-icon {
	display: inline-block;
	line-height: 1;
	text-align: center;
}

.hfe-nav-menu__layout-expandible .saved-content, .hfe-nav-menu__layout-expandible .sub-menu, .hfe-nav-menu__layout-expandible .child, .hfe-nav-menu__layout-vertical .saved-content, .hfe-nav-menu__layout-vertical .sub-menu, .hfe-nav-menu__layout-vertical .child, .hfe-flyout-container .saved-content, .hfe-flyout-container .sub-menu, .hfe-flyout-container .child {
	left: 0 !important;
	width: 100% !important;
}

.hfe-flyout-container .hfe-nav-menu .sub-menu {
	background: unset;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle:hover, .hfe-nav-menu__layout-expandible .hfe-menu-toggle:hover, .hfe-flyout-wrapper .hfe-menu-toggle:hover {
	border: 1px dotted;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle, .hfe-nav-menu__layout-expandible .hfe-menu-toggle, .hfe-flyout-wrapper .hfe-menu-toggle {
	border: 1px dotted transparent;
}

/* Common Animation CSS */
.hfe-nav-menu .menu-item a:before, .hfe-nav-menu .menu-item a:after {
	display: block;
	position: absolute;
	-webkit-transition: .3s;
	transition: .3s;
	-webkit-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
	transition-timing-function: cubic-bezier(.58, .3, .005, 1);
}

.hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	opacity: 0;
}

.hfe-nav-menu .menu-item a.hfe-menu-item:hover:before, .hfe-nav-menu .menu-item a.hfe-menu-item:hover:after, .hfe-nav-menu .menu-item a.hfe-menu-item:focus:before, .hfe-nav-menu .menu-item a.hfe-menu-item:focus:after, .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before, .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after, .hfe-nav-menu .current-menu-item:before, .hfe-nav-menu .current-menu-item:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* Double Line / Underline / Overline Style */
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:after {
	height: 3px;
	width: 100%;
	left: 0;
	background-color: #55595c;
	z-index: 2;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	height: 0;
	width: 0;
	left: 50%;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	bottom: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: -10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	bottom: -10px;
}

.hfe-pointer__double-line.hfe-animation__none, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__underline.hfe-animation__none, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__overline.hfe-animation__none, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hfe-pointer__double-line.hfe-animation__none:before, .hfe-pointer__double-line.hfe-animation__none:after, .hfe-pointer__double-line.hfe-animation__none:hover, .hfe-pointer__double-line.hfe-animation__none:focus, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__underline.hfe-animation__none:before, .hfe-pointer__underline.hfe-animation__none:after, .hfe-pointer__underline.hfe-animation__none:hover, .hfe-pointer__underline.hfe-animation__none:focus, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__overline.hfe-animation__none:before, .hfe-pointer__overline.hfe-animation__none:after, .hfe-pointer__overline.hfe-animation__none:hover, .hfe-pointer__overline.hfe-animation__none:focus, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before {
	content: "";
	top: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	width: 10px;
	left: -20px;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after {
	content: "";
	bottom: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	width: 10px;
	left: -webkit-calc(100% + 20px);
	left: calc(100% + 20px);
}

/* Framed Style */
.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after {
	background: transparent;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	border: 3px solid #55595c;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
	content: "";
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	-webkit-transform: scale(.75);
	-ms-transform: scale(.75);
	transform: scale(.75);
}

.hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	-webkit-transform: scale(1.25);
	-ms-transform: scale(1.25);
	transform: scale(1.25);
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:before {
	-webkit-transition: opacity .2s, -webkit-transform .4s;
	transition: opacity .2s, -webkit-transform .4s;
	transition: opacity .2s, transform .4s;
	transition: opacity .2s, transform .4s, -webkit-transform .4s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
	width: 3px;
	height: 3px;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before {
	border-width: 0 0 3px 3px;
	-webkit-transition: width .1s .2s, height .1s .3s, opacity .12s .22s;
	transition: width .1s .2s, height .1s .3s, opacity .12s .22s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
	content: "";
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 3px 3px 0 0;
	-webkit-transition: width .1s, height .1s .1s, opacity .02s .18s;
	transition: width .1s, height .1s .1s, opacity .02s .18s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
	width: 100%;
	height: 100%;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before {
	-webkit-transition: opacity .02s, height .1s, width .1s .1s;
	transition: opacity .02s, height .1s, width .1s .1s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
	-webkit-transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
	transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
	width: 3px;
	height: 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before {
	border-width: 3px 0 0 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
	content: "";
	top: initial;
	bottom: 0;
	left: initial;
	right: 0;
	border-width: 0 3px 3px 0;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:after {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .002s, width .4s, height .4s;
	transition: opacity .002s, width .4s, height .4s;
}

.hfe-pointer__framed.hfe-animation__none, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hfe-pointer__framed.hfe-animation__none:before, .hfe-pointer__framed.hfe-animation__none:after, .hfe-pointer__framed.hfe-animation__none:hover, .hfe-pointer__framed.hfe-animation__none:focus, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

/* Background Style */
.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:after {
	content: "";
	-webkit-transition: .3s;
	transition: .3s;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #55595c;
	z-index: -1;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__background .menu-item.parent a.hfe-menu-item.highlighted, .hfe-pointer__background .current-menu-item {
	color: #fff;
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before {
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__grow .current-menu-item:before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: .3s;
	transition: .3s;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shrink .current-menu-item:before {
	-webkit-transition: opacity .15s, -webkit-transform .4s;
	transition: opacity .15s, -webkit-transform .4s;
	transition: opacity .15s, transform .4s;
	transition: opacity .15s, transform .4s, -webkit-transform .4s;
}

.hfe-pointer__background.hfe-animation__sweep-left .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	left: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-right .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	right: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-up .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-down .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-out-vertical .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	bottom: 50%;
	top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-out-horizontal .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	right: 50%;
	left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #55595c;
	z-index: -1;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:before {
	top: 0;
	bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after {
	top: 100%;
	bottom: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:before {
	bottom: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:after {
	top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:before {
	right: 0;
	left: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
	right: 100%;
	left: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:before {
	left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:after {
	right: 50%;
}

.hfe-pointer__background.hfe-animation__none, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hfe-pointer__background.hfe-animation__none:before, .hfe-pointer__background.hfe-animation__none:after, .hfe-pointer__background.hfe-animation__none:hover, .hfe-pointer__background.hfe-animation__none:focus, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

/* Text Style */
.hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transform: skew(-8deg);
	-ms-transform: skew(-8deg);
	transform: skew(-8deg);
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transform: scale(.8);
	-ms-transform: scale(.8);
	transform: scale(.8);
}

.hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-8px);
}

.hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transform: translateY(8px);
	-ms-transform: translateY(8px);
	transform: translateY(8px);
}

.hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transform: rotate(6deg);
	-ms-transform: rotate(6deg);
	transform: rotate(6deg);
}

.hfe-pointer__text.hfe-animation__none, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hfe-pointer__text.hfe-animation__none:before, .hfe-pointer__text.hfe-animation__none:after, .hfe-pointer__text.hfe-animation__none:hover, .hfe-pointer__text.hfe-animation__none:focus, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hfe-flyout-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999998;
	background: rgba(0, 0, 0, .6);
	cursor: pointer;
	-webkit-backface-visibility: hidden;
}

/* No link hover effect to last menu item */
.hfe-pointer__underline .menu-item.parent a.hfe-menu-item.elementor-button:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item.elementor-button:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:after, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:before {
	height: 0px;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:after {
	border-width: 0px;
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:focus {
	-webkit-transform: none;
	transform: none;
}

.hfe-flyout-close, .hfe-flyout-close svg {
	position: absolute;
	top: 0;
	right: 0;
	margin: 5px;
	width: 23px;
	height: 23px;
	line-height: 23px;
	font-size: 23px;
	display: block;
	cursor: pointer;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
	top: 0;
	bottom: 0;
	left: -100%;
	right: auto;
	height: 100%;
	width: 300px;
	max-width: 100%;
	max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side {
	display: none;
	position: fixed;
	z-index: 999999;
	padding: 0;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-show {
	display: block;
}

.hfe-flyout-content.push {
	color: #fff;
}

.hfe-flyout-content ul li {
	color: #fff;
}

/* ===========================================================
 *  Flyout Location
 * ======================================================== */
.hfe-flyout-wrapper .hfe-side.hfe-flyout-right {
	top: 0;
	bottom: 0;
	left: auto;
	right: -100%;
	height: 100%;
	width: 300px;
	max-width: 100%;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
	top: 0;
	bottom: 0;
	left: -100%;
	right: auto;
	height: 100%;
	width: 300px;
	max-width: 100%;
	max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side.top {
	top: -100%;
	bottom: auto;
	left: 0;
	right: 0;
	width: 100%;
	width: 100vw;
	height: 300px;
	max-height: 100%;
}

.hfe-flyout-wrapper .hfe-side.bottom {
	top: auto;
	bottom: -100%;
	left: 0;
	right: 0;
	width: 100%;
	width: 100vw;
	height: 300px;
	max-height: 100%;
}

/* ===========================================================
 *  Flyout Container
 * ======================================================== */
.hfe-flyout-content {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	line-height: 1.4em;
	color: #fff;
}

/* iOS fix */
@media (max-width:1024px) {
	.hfe-flyout-content {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.hfe-flyout-content::-webkit-scrollbar {
	display: none;
}

.admin-bar .hfe-side {
	margin-top: 32px;
}

/* Dropdown animation CSS */
.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
	-webkit-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .1s;
	transition: all .1s;
}

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
	-webkit-transform: translateY(-20%);
	-ms-transform: translateY(-20%);
	transform: translateY(-20%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .1s;
	transition: all .1s;
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:first-child, .hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:last-child {
	overflow: visible !important;
}

.elementor-widget-navigation-menu:not(.hfe-nav-menu__align-justify):not(.hfe-menu-item-space-between) a.hfe-menu-item.elementor-button {
	display: inline-flex;
}

.hfe-nav-menu li.hfe-button-wrapper {
	align-self: center;
}

/* Tablet */
@media only screen and ( max-width: 1024px ) {
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal li, .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu {
		width: 100%;
		margin-right: 0px;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle, .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
		display: block;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		visibility: visible;
		opacity: 1;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-vertical {
		visibility: visible;
		opacity: 1;
		height: auto;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		position: relative;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
		position: absolute;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
		top: 0;
		left: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle, .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
		float: none;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu, .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu, .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
		visibility: hidden;
		opacity: 0;
		-webkit-transition: none;
		transition: none;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle:hover {
		border: 1px dotted;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle {
		border: 1px dotted transparent;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
		position: relative;
		height: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
		position: relative;
		height: 0;
		top: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .saved-content, .hfe-nav-menu__breakpoint-tablet .sub-menu, .hfe-nav-menu__breakpoint-tablet .child {
		left: 0 !important;
		width: auto !important;
	}
	
	.hfe-nav-menu .sub-menu {
		min-width: auto;
		margin: 0;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
		padding: 10px;
	}
	
	.hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "-";
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu .sub-menu {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before, .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before, .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before, .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before, .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before {
		content: "";
	}
	
	/* Effect 1: Fade in and scale up */
	.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu, .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu, .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu, .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	
	/*.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu ul.sub-menu li a{
        border-left: 16px solid transparent;
    }*/
	.elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after, .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
		background-color: unset !important;
	}
	
	.elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
		border: 0px !important;
	}
	
	.elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}
	
	.hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item, .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item, .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

/* Mobile */
@media only screen and ( max-width: 767px ) {
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item, .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item 
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-horizontal .hfe-nav-menu__toggle, .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal li.menu-item, .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu {
		width: 100%;
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle {
		display: inline-block;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
		position: relative;
		height: 0;
		top: 0;
	}
	
	.hfe-nav-menu .sub-menu {
		min-width: auto;
		margin: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu, .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
		visibility: hidden;
		opacity: 0;
		-webkit-transition: none;
		transition: none;
	}
	
	.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
		float: none;
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle.hfe-active-menu {
		display: block;
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-vertical {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-layout-horizontal .hfe-nav-menu__toggle, .hfe-nav-menu__breakpoint-mobile .hfe-layout-vertical .hfe-nav-menu__toggle {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
		float: none;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		visibility: hidden;
		opacity: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		visibility: visible;
		opacity: 1;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
		visibility: hidden;
		opacity: 0;
		height: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-vertical {
		visibility: visible;
		opacity: 1;
		height: auto;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
		position: relative;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal, .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
		position: absolute;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
		top: 0;
		left: 0;
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "-";
	}
	
	.hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before {
		content: "";
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle:hover {
		border: 1px dotted;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle {
		border: 1px dotted transparent;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu .sub-menu {
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	/* Effect 1: Fade in and scale up */
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-1 .hfe-nav-menu {
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
	.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
		padding: 10px;
	}
	
	.hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-1 .hfe-nav-menu {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}
	
	/* Effect 2: Slide from the right */
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-2 .hfe-nav-menu {
		-webkit-transform: translateX(20%);
		-ms-transform: translateX(20%);
		transform: translateX(20%);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transition: all .3s cubic-bezier(.25, .5, .5, .9);
		transition: all .3s cubic-bezier(.25, .5, .5, .9);
	}
	
	.hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-2 .hfe-nav-menu {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}
	
	/* Effect 3: Slide from the bottom */
	.hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-3 .hfe-nav-menu {
		-webkit-transform: translateY(20%);
		-ms-transform: translateY(20%);
		transform: translateY(20%);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
	.hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-3 .hfe-nav-menu {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}
	
	.hfe-nav-menu__breakpoint-mobile .saved-content, .hfe-nav-menu__breakpoint-mobile .sub-menu, .hfe-nav-menu__breakpoint-mobile .child, .hfe-nav-menu__breakpoint-tablet .saved-content, .hfe-nav-menu__breakpoint-tablet .sub-menu, .hfe-nav-menu__breakpoint-tablet .child {
		left: 0 !important;
		width: auto !important;
	}
	
	.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu, .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu, .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu, .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	
	.elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after, .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after, .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before, .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
		background-color: unset !important;
	}
	
	.elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
		border: 0px !important;
	}
	
	.elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus, .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text .menu-item.parent a.hfe-menu-item:focus {
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}
}

.hfe-toggle-no .hfe-layout-expandible .hfe-nav-menu__toggle {
	display: none;
}

/* Icon common CSS */
.hfe-icon {
	display: inline-block;
	vertical-align: middle;
}

/* Icon Svg */
.hfe-icon svg {
	width: 1em;
	height: 1em;
}

/* Menu Cart CSS */
.hfe-cart-menu-wrap-custom {
	display: inline-block;
	line-height: 1;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count, .hfe-cart-menu-wrap-custom .hfe-cart-count:after {
	border-color: #75c32c;
	color: #75c32c;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count {
	font-weight: bold;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	min-width: 2.1em;
	min-height: 2.1em;
	font-size: .86em;
	line-height: 1.8;
	border-radius: .3em .3em .3em .3em;
	border-width: 2px;
	border-style: solid;
	padding: 12px 24px;
}

/* Default skin for cart*/
.hfe-cart-menu-wrap-default {
	display: inline-block;
	line-height: 1;
}

.hfe-cart-menu-wrap-default .hfe-cart-count, .hfe-cart-menu-wrap-default .hfe-cart-count:after {
	border-color: #75c32c;
	color: #75c32c;
}

.hfe-cart-menu-wrap-default .hfe-cart-count {
	font-weight: bold;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	min-width: 2.1em;
	min-height: 2.1em;
	font-size: .86em;
	line-height: 1.8;
	border-radius: 0em 0em .3em .3em;
	border-width: 2px;
	border-style: solid;
	padding: 0 .4em;
}

.hfe-cart-menu-wrap-default .hfe-cart-count:after {
	bottom: 100%;
	margin-bottom: 0;
	height: .8em;
	width: .8em;
	left: 50%;
	transform: translateX(-50%);
	top: -.6em;
	content: " ";
	position: absolute;
	pointer-events: none;
	border-width: 2px;
	border-style: solid;
	border-top-left-radius: 10em;
	border-top-right-radius: 10em;
	border-bottom: 0;
}

.elementor-widget-hfe-cart:not(.hfe-menu-cart--show-subtotal-yes) .hfe-menu-cart__toggle .elementor-button-text {
	display: none;
}

.elementor-widget-hfe-cart.toggle-icon--bag-light .hfe-menu-cart__toggle .elementor-button-icon i:before {
	content: "";
}

.elementor-widget-hfe-cart.toggle-icon--bag-medium .hfe-menu-cart__toggle .elementor-button-icon i:before {
	content: "";
}

.elementor-widget-hfe-cart.toggle-icon--bag-solid .hfe-menu-cart__toggle .elementor-button-icon i:before {
	content: "";
}

.hfe-menu-cart__toggle .elementor-button {
	background: transparent;
	border-radius: 0;
	color: #818a91;
	border: 1px solid;
	border-color: inherit;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hfe-menu-cart__toggle .elementor-button-text {
	margin-right: .3em;
}

.hfe-menu-cart__toggle .elementor-button-icon {
	position: relative;
	-webkit-transition: color .1s;
	-o-transition: color .1s;
	transition: color .1s;
}

.hfe-menu-cart--items-indicator-bubble .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
	content: attr(data-counter);
	display: block;
	position: absolute;
	min-width: 1.6em;
	height: 1.6em;
	line-height: 1.5em;
	top: -.7em;
	right: -.7em;
	border-radius: 100%;
	color: #fff;
	background-color: #d9534f;
	text-align: center;
	font-size: 10px;
}

.hfe-menu-cart--items-indicator-plain .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
	content: attr(data-counter);
	display: inline-block;
	font-weight: normal;
}

.hfe-menu-cart--empty-indicator-hide .hfe-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter="0"]:before {
	content: none;
	display: none;
}

.hfe-menu-cart__toggle .elementor-button-icon {
	-webkit-box-ordinal-group: 16;
	-webkit-order: 15;
	-ms-flex-order: 15;
	order: 15;
}

.hfe-menu-cart__toggle.hfe-button-wrapper .elementor-button {
	color: #4d4848;
}

/*Search Box CSS*/
.hfe-search-button-wrapper {
	display: block;
	cursor: pointer;
	vertical-align: middle;
	text-align: right;
}

.hfe-search-form__container {
	display: flex;
	overflow: hidden;
}

.hfe-search-form__input {
	flex-basis: 100%;
}

.hfe-search-icon-toggle i.fa-search {
	display: inline-block;
	position: absolute;
	width: 20px;
	box-sizing: content-box;
	padding: 10px;
}

.hfe-search-icon-toggle i:before {
	vertical-align: middle;
}

/*search icon toggle css*/
.hfe-search-button-wrapper input[type=search] {
	border: 0;
	padding: 10px;
	cursor: pointer;
	border-radius: 0;
	transition: all .5s;
	box-sizing: border-box;
	outline: none;
}

.hfe-search-button-wrapper button {
	border: none;
	border-radius: 0;
	padding: 0;
}

.hfe-search-button-wrapper input[type=search]:focus {
	cursor: auto;
	border: none;
	box-shadow: none;
}

.hfe-search-icon-toggle input:-moz-placeholder, .hfe-search-icon-toggle input::-webkit-input-placeholder {
	color: transparent;
}

.hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input {
	background-color: unset;
	height: 100%;
}

.hfe-search-button-wrapper.hfe-input-focus {
	display: flex;
}

.hfe-search-form__container .hfe-search-submit {
	min-width: 3%;
	position: relative;
}

.hfe-search-form__container button#clear, .hfe-search-icon-toggle button#clear {
	visibility: hidden;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 8px;
	font-style: normal;
	user-select: none;
	cursor: pointer;
	bottom: 0;
	margin-right: 10px;
	background-color: transparent;
}

.hfe-search-button-wrapper input[type="search"]::-webkit-search-decoration, .hfe-search-button-wrapper input[type="search"]::-webkit-search-cancel-button, .hfe-search-button-wrapper input[type="search"]::-webkit-search-results-button, .hfe-search-button-wrapper input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

.hfe-search-form__container button#clear-with-button {
	visibility: hidden;
	position: absolute;
	top: 0;
	padding: 0 8px;
	font-style: normal;
	font-size: 1.2em;
	user-select: none;
	cursor: pointer;
	bottom: 0;
	background-color: transparent;
}

.hfe-search-button-wrapper, .hfe-search-form__container, .hfe-search-icon-toggle, .hfe-search-button-wrapper .hfe-search-icon-toggle i, .hfe-search-button-wrapper .hfe-search-icon-toggle i:before {
	position: relative;
}

.hfe-search-button-wrapper .hfe-search-icon-toggle .hfe-search-form__input {
	position: absolute;
	width: 0;
	right: 0;
	background-color: transparent;
}

.hfe-search-icon-toggle {
	width: 100% !important;
}

.hfe-search-button-wrapper.hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input {
	position: absolute;
	width: 250px;
	right: 0;
}

.hfe-search-layout-text .hfe-search-form__container, .hfe-search-layout-icon_text .hfe-search-form__container, .hfe-search-layout-text .hfe-search-form__container .hfe-search-form__input, .hfe-search-layout-icon_text .hfe-search-form__container .hfe-search-form__input {
	width: 100%;
}

.hfe-search-icon-toggle {
	line-height: 1.5;
}

/*-------Navigation menu active parent---------*/
.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	width: 100%;
	left: 0;
	opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	bottom: 0px;
	opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	top: 0px;
	opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	height: 3px;
	width: 100%;
	left: 0;
	opacity: 1;
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.hfe-pointer__framed.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	opacity: 1;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
	border-width: 3px;
	width: 100%;
	opacity: 1;
	height: 100%;
}

/* Scroll to top CSS */
.hfe-scroll-to-top-wrap.hfe-scroll-to-top-hide {
	display: none;
}

.hfe-scroll-to-top-wrap.edit-mode, .hfe-scroll-to-top-wrap.single-page-off {
	display: none !important;
}

.hfe-scroll-to-top-button {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 9999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: #000;
	color: #fff;
	text-align: center;
	opacity: 1;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.hfe-scroll-to-top-button i {
	color: #fff;
	font-size: 16px;
}

/* Breadcrumbs CSS */
ul.hfe-breadcrumbs {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.hfe-breadcrumbs li {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}

ul.hfe-breadcrumbs li:last-child {
	margin: 0;
}

ul.hfe-breadcrumbs li a, ul.hfe-breadcrumbs li span.hfe-breadcrumbs-separator-icon, ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text {
	display: block;
}

ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text {
	-webkit-transition: all .4s;
	transition: all .4s;
}

span.hfe-breadcrumbs-home-icon {
	margin-right: 10px;
	align-content: center;
}

.hfe-breadcrumbs-first a {
	align-content: center;
}

.hfe-breadcrumbs-separator-icon i, .hfe-breadcrumbs-separator-icon svg, .hfe-breadcrumbs-home-icon i, .hfe-breadcrumbs-home-icon svg {
	width: 1em;
	height: 1em;
	position: relative;
	display: block;
}

ul.hfe-breadcrumbs-show-home li.hfe-breadcrumbs-first {
	display: inline-flex;
}

/* Post Info CSS */
ul.hfe-post-info-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.hfe-post-info-inline.hfe-post-info-items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

li.hfe-post-info-item {
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

li.hfe-post-info-item, li.hfe-post-info-item > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
}

.hfe-post-info-inline.hfe-post-info-items .hfe-post-info-item {
	margin-right: 8px;
	margin-left: 8px;
}

.hfe-post-info-inline .hfe-post-info-item:not(:last-child):after {
	position: relative;
	right: -8px;
}

.hfe-post-info-inline.hfe-post-info-items {
	margin-right: -8px;
	margin-left: -8px;
}

.hfe-post-info-icon svg {
	display: block;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child):after {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child) {
	position: relative;
}

/* Info Card CSS */
.hfe-icon-wrap .hfe-icon svg {
	height: 100%;
	width: 100%;
}

body .elementor .hfe-button-wrapper a {
	text-decoration: none;
}

.hfe-button-wrapper {
	border-radius: 3px;
}

.hfe-reading-progress-bar {
	height: 4px;
}

/* Basic Posts Widget CSS - Only essential structure, no styling */
.hfe-posts-grid {
	display: grid;
}

.hfe-post-image img {
	width: 100%;
	height: auto;
	display: block;
}

.hfe-post-title a {
	text-decoration: none;
}

.hfe-post-title {
	margin-top: 0px;
}

.hfe-read-more {
	text-decoration: none;
}

.hfe-post-meta {
	font-size: 12px;
	line-height: 1.3em;
}

.hfe-post-title {
	font-size: 20px;
}

/* HFE Woo Products Widget Styles */
.hfe-woo-products-wrapper {
	width: 100%;
}

.hfe-woo-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px 20px;
}

.hfe-product-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
}

.hfe-product-image {
	position: relative;
	overflow: hidden;
}

.hfe-product-image img {
	width: 100%;
	height: auto;
	display: block;
}

.hfe-product-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hfe-product-category {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .8px;
	margin-bottom: 8px;
	opacity: .75;
	font-weight: 500;
	color: #666;
}

.hfe-product-title {
	margin: 0 0 12px 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	flex-grow: 1;
}

.hfe-product-title a {
	color: #333;
	text-decoration: none;
}

.hfe-product-title h2 {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

.hfe-product-title .hfe-loop-product__link {
	display: block;
}

.hfe-product-rating {
	margin-bottom: 12px;
}

.hfe-product-rating .review-rating {
	display: flex;
	align-items: center;
	min-height: 16px;
}

.hfe-product-rating .star-rating {
	font-size: 14px;
	color: #ffa500;
	display: inline-block;
}

.hfe-product-price {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 18px;
}

.hfe-product-price .price {
	color: #333;
}

.hfe-product-price .price del {
	opacity: .6;
	margin-right: 8px;
	font-weight: 400;
}

.hfe-product-description {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	flex-grow: 1;
}

.hfe-product-add-to-cart {
	margin-top: auto;
}

.hfe-woo-products-wrapper .hfe-product-add-to-cart .button {
	width: auto;
	min-width: 100px;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:hover, .hfe-woo-products-wrapper .hfe-product-add-to-cart .button:focus, .hfe-woo-products-wrapper .hfe-product-add-to-cart .button:active, .hfe-woo-products-wrapper .hfe-product-add-to-cart a.button:link {
	text-decoration: none;
}

.hfe-woo-products-notice, .hfe-woo-products-empty {
	text-align: center;
	padding: 40px 20px;
	background: #f8f9fa;
	border-radius: 4px;
	color: #666;
}

/* Card Hover Effects */
.hfe-product-item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hfe-product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Content Alignment Classes */
.hfe-content-align-left .hfe-product-item {
	text-align: left;
}

.hfe-content-align-left .hfe-product-item .star-rating {
	margin-left: 0;
	margin-right: auto;
}

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

.hfe-content-align-center .hfe-product-item .star-rating {
	margin-left: auto;
	margin-right: auto;
}

.hfe-content-align-right .hfe-product-item {
	text-align: right;
}

.hfe-content-align-right .hfe-product-item .star-rating {
	margin-left: auto;
	margin-right: 0;
}

/* Tablet Responsive Alignment */
@media (max-width: 1024px) {
	.hfe-content-tablet-align-left .hfe-product-item {
		text-align: left;
	}
	
	.hfe-content-tablet-align-left .hfe-product-item .star-rating {
		margin-left: 0;
		margin-right: auto;
	}
	
	.hfe-content-tablet-align-center .hfe-product-item {
		text-align: center;
	}
	
	.hfe-content-tablet-align-center .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hfe-content-tablet-align-right .hfe-product-item {
		text-align: right;
	}
	
	.hfe-content-tablet-align-right .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: 0;
	}
}

/* Mobile Responsive Alignment */
@media (max-width: 767px) {
	.hfe-content-mobile-align-left .hfe-product-item {
		text-align: left;
	}
	
	.hfe-content-mobile-align-left .hfe-product-item .star-rating {
		margin-left: 0;
		margin-right: auto;
	}
	
	.hfe-content-mobile-align-center .hfe-product-item {
		text-align: center;
	}
	
	.hfe-content-mobile-align-center .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hfe-content-mobile-align-right .hfe-product-item {
		text-align: right;
	}
	
	.hfe-content-mobile-align-right .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: 0;
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hfe-woo-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.hfe-woo-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 15px;
	}
	
	.hfe-product-content {
		padding: 16px;
	}
	
	.hfe-product-title {
		font-size: 15px;
	}
	
	.hfe-product-price {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hfe-woo-products-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.hfe-product-content {
		padding: 18px;
	}
}
