/*KEY FRAMES*/
@keyframes slideUpFadeIn {
	0% {opacity: 0; transform: translateY(140%);}

	50% {opacity: 0.5; transform: translateY(70%);}

	100% {opacity: 1; transform: translateY(0);}
}
@keyframes slideInLeftToRight {
	0% {opacity: 0; transform: translateX(-100%);}

	50% {opacity: 0.5; transform: translateX(-80%);}

	100% {opacity: 1; transform: translateX(1);}
}

@keyframes slideOutRightToLeft {
	0% {opacity: 1; transform: translateX(1);}

	50% {opacity: 0.5; transform: translateX(-30%);}

	100% {opacity: 0; transform: translateX(-100%);}
}

/*END KEY FRAMES*/
/*ANIMATION*/
.need-observe[data-animated-style='slideUpFadeIn'] {
	opacity: 0;
	transform: translateY(140%);
}
.shown.need-observe[data-animated-style='slideUpFadeIn'] {
	opacity: 1;
	transform: translateY(0);
}

/*END ANIMATION*/

/* Banner Text Ferr Style */
.banner-text-ferr-style {
	position: relative;
}
.banner-text-ferr-style img {
	width: 100%;	
}
.banner-text-ferr-style > div {
	position: absolute;
}
.banner-text-ferr-style > div h6 {
	font-size: 3em;
	font-family: 'Playfair Display', serif;
}

.banner-text-ferr-style > div p {
	font-size: .9em;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.banner-text-ferr-style .overlay {
	width: 0px;
	height: 0px;
	transition: all 500ms ease-in;
	top: 50%;
	left: 50%;
}

.banner-text-ferr-style:hover .overlay {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

/* END Banner Text Ferr Style */

/* TimeLine Widget Style One */
.time-line-widget-one-main {
	display: none;
	font-family: "Quicksand", sans-serif;
}
.time-line-widget-one-main.active {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.time-line-widget-one-image-container {
	width: 50%;
}
.time-line-widget-one-text {
	width: 45%;
}
.time-line-widget-one-image-container img {
	width: 100%;
}
.time-line-widget-one-text p {
	font-size: .8em;
}
.time-line-widget-one-slider {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5em;
	overflow-y: scroll;
}
.time-line-widget-one-button {
	font-family: "Montserrat", sans-serif;
	font-size: .9em;
}
.time-line-widget-one-button:hover {
	cursor: pointer;
}
.time-line-widget-one-button.active {
	font-size: 1.5em;
	text-decoration: underline;
	text-underline-position: under;
}

@media screen and (max-width: 768px) {
	.time-line-widget-one-main.active {
		display: block;
		position: relative;
	}
	.time-line-widget-one-image-container {
		width: 100%;
		position: relative;
	}
	.time-line-widget-one-overlay {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
		background-color: black;
		opacity: .4;
	}
	.time-line-widget-one-text {
		position: absolute;
		width: 75%;
		top: 75px;
		left: 12%;
		color: white;
		text-align: center;
	}
	.time-line-widget-one-slider {
		margin-top: 1.5em;
	}
}
/* END TimeLineWidgetStyleOne */

/*simple_image_banner_link*/
.simple_image_banner_link img {
	width: 100%;
}
/*END simple_image_banner_link*/


/*SUBCATEGORY FILTER*/
.category-filter > .filter {
	margin-bottom: 1.5em;
}
.category-filter > .filter > h6 {
	font-family: "Playfair Display", serif;
	font-weight: bold;
	text-transform: uppercase;
	padding-bottom: 10px;
	font-size: .8em;
	letter-spacing: 1px;
	border-bottom: 1px solid #AAA;
}
.category-filter > .filter > ul {
	max-height: 300px;
	overflow-y: scroll;
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
.category-filter > .filter > ul > li {
	margin-bottom: .5em;
}
.category-filter > .filter > ul > li.has-help-text {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.category-filter > .filter > ul > li.has-help-text span:last-child {
	font-family: "Quicksand", sans-serif;
	font-size: .8em;
	color: #555;
}
.category-filter > .filter > ul div.custom-checkbox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.category-filter > .filter > ul div.custom-checkbox input{
	width: 15px;
	height: 15px;
	color: #333;
	margin-right: .5em;
}
.category-filter > .filter > ul div.custom-checkbox input:checked {
	position: relative;
}
.category-filter > .filter > ul div.custom-checkbox input:checked::before {
	content: "✓";
	font-size: 14px;
	position: absolute;
	background-color: black;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.category-filter > .filter > ul div.custom-checkbox label {
	font-family: "Quicksand", sans-serif;
	font-size: .8em;
	padding-bottom: 0;
	margin-bottom: 0;
}
.category-filter {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-left: 1.75em;
}

.filter-h6 {
    display: none;
}
.close-mobile-filter {
    display: none;
}
.close-filter {
    display: none;
}
@media screen and (max-width: 768px) {

    .category-filter {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000000;
        background-color: white;
        overflow-y: scroll;
        margin-top: 0;
        padding-top: 1.5em;
        margin-bottom: 1.5em;
    }
    .category-filter.active {
        display: block;
    }
    .filter-h6 {
        display: block;
        position: relative;
        text-align: center;
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
        font-size: 16px;
        height: 30px;
        border-bottom: 2px solid #CCC;
        margin-bottom: 1em;
    }
    .filter-h6 .close-mobile-filter {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
        width: 24px;
        height: 24px;
        right: 10px;
        top: -3px;
    }
    .close-filter {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .close-filter > .close-mobile-filter {
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
        background-color: black;
        color: white;
        font-family: "Montserrat", sans-serif;
        border-color: none;
        padding: .5em 1.5em;
        font-size: .9em;
    }

}
/*END SUBCATEGORY FILTER*/

/*PULL PRODUCTS TO CONTAINER*/
.product-fetched {
	position: relative;
}
.product-fetched .sale-percentage {
	position: absolute;
	left: 30px;
	top: 30px;
	background-color: darkred;
	color: white;
	font-size: .9em;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .3em .3em;
}
.product-fetched .category-product-name {
	font-family: "Montserrat", sans-serif;
	text-align: center;
	font-size: .8em;
}
.product-fetched .category-product-price {
	text-align: center;
}
.product-fetched .category-product-price, .product-fetched .category-sale-price {
	margin-right: 1em;
}
.product-fetched .category-product-price .category-normal-price {
	color: darkred;
	margin-right: 1em;
	text-decoration: line-through;
}
.product-fetched .sale-until {
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-fetched .sale-until .time-left {
	font-family: "Quicksand", sans-serif;
	font-size: .9em;
}
.product-fetched .sale-until .time-left:not(:last-child) {
	margin-right: .5em;
}

/*ENDPULLPRODUCTS*/