
/*********** CSS RESET **********/
* {
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
}

	*, *:before, *:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

html {
	margin: 0;
	-webkit-text-size-adjust: none;
}

ol, ul {
	list-style: none;
}

#cboxCurrent {
	display: none !important;
}

a, input, button {
	font-family: 'Roboto', sans-serif;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.ease-in-out {
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

a img {
	border: none;
}

a:active {
	outline: none;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

input[type="text"], input[type="password"], textarea, select {
	font-family: 'Roboto', sans-serif;
}

input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
	margin: 0;
	border: 0;
	padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"],
textarea {
	border-radius: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

input:-webkit-autofill {
	-webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
	display: none !important;
}

input[type="checkbox"]:checked + .switchButton::before, .account-page-wrapper .inputs input[type="checkbox"]:checked + .switchButton::before {
	left: 19px
}

input[type="checkbox"]:checked + .switchButton, .account-page-wrapper .inputs input[type="checkbox"]:checked + .switchButton {
	background-color: #40daa8
}

.switchButton {
	position: absolute;
	right: 10px;
	top: 8px
}
/*********** GLOBAL STYLES **********/
.grid-container {
	display: -ms-grid;
	display: grid;
}

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	border-radius: 0;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 400;
	height: 24px;
	line-height: 27px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
	color: #8CC6EC;
	font-family: "Open Sans",sans-serif;
	text-align: right;
}

	.nice-select:hover {
		border-color: #dbdbdb;
	}

	.nice-select:active, .nice-select.open, .nice-select:focus {
		border-color: #999;
	}

	.nice-select:after {
		width: 13px;
		height: 13px;
		content: '';
		z-index: 3;
		border-top: 0;
		border-left: 0;
		border-right: 0;
		background-image: url(/Themes/DefaultClean/Content/images/AriaHotels/Icons/language-arrow-bottom.svg);
		background-repeat: no-repeat;
		background-size: contain;
		right: 12px;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		-moz-transition: all .15s ease-in-out;
		-o-transition: all .15s ease-in-out;
		-webkit-transition: all .15s ease-in-out;
		transition: all .15s ease-in-out;
		background-position: center;
	}

	.nice-select.open:after {
		-moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}

	.nice-select.open .list {
		opacity: 1;
		pointer-events: auto;
		-webkit-transform: scale(1) translateY(0);
		-ms-transform: scale(1) translateY(0);
		transform: scale(1) translateY(0);
	}

	.nice-select.disabled {
		border-color: #ededed;
		color: #999;
		pointer-events: none;
	}

		.nice-select.disabled:after {
			border-color: #cccccc;
		}

	.nice-select.wide {
		width: 100%;
	}

		.nice-select.wide .list {
			left: 0 !important;
			right: 0 !important;
		}

	.nice-select.right {
		float: right;
	}

		.nice-select.right .list {
			left: auto;
			right: 0;
		}

	.nice-select.small {
		font-size: 12px;
		height: 36px;
		line-height: 34px;
	}

		.nice-select.small:after {
			height: 4px;
			width: 4px;
		}

		.nice-select.small .option {
			line-height: 34px;
			min-height: 34px;
		}

	.nice-select .list {
		background-color: #fff;
		border-radius: 5px;
		box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
		box-sizing: border-box;
		margin-top: 4px;
		opacity: 0;
		overflow: hidden;
		padding: 0;
		pointer-events: none;
		position: absolute;
		top: 100%;
		left: 0;
		-webkit-transform-origin: 50% 0;
		-ms-transform-origin: 50% 0;
		transform-origin: 50% 0;
		-webkit-transform: scale(0.75) translateY(-21px);
		-ms-transform: scale(0.75) translateY(-21px);
		transform: scale(0.75) translateY(-21px);
		-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
		transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
		z-index: 9;
		width: 100%;
	}

		.nice-select .list:hover .option:not(:hover) {
			background-color: transparent !important;
		}

	.nice-select .option {
		cursor: pointer;
		font-weight: 400;
		line-height: 40px;
		list-style: none;
		min-height: 40px;
		outline: none;
		padding-left: 18px;
		padding-right: 29px;
		text-align: left;
		-webkit-transition: all 0.2s;
		transition: all 0.2s;
	}

		.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
			background-color: #f6f6f6;
		}

		.nice-select .option.selected {
			font-weight: bold;
		}

		.nice-select .option.disabled {
			background-color: transparent;
			color: #999;
			cursor: default;
		}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

.form-fields {
	position: relative;
	border-top: 0;
	background-color: #FFF;
	padding: 30px 15px;
}


.slick-prev:before, .slick-next:before {
	display: none;
}

.master-wrapper-content {
	width: 100%;
}

.pager:before {
	content: '';
	display: block;
	clear: both;
}

body,
html {
	color: #4F4F4F;
	font: normal 14px Playfair Display, Arial, Helvetica, sans-serif;
	font-family: 'Roboto', sans-serif;
	margin: 0;
	-webkit-font-smoothing: none !important;
	-webkit-font-smoothing: subpixel-antialiased !important;
	-webkit-font-smoothing: antialiased !important;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	max-width: 100%;
	overflow-x: hidden;
}


.center-1 {
	margin: 0;
}

p {
	font-size: 16px;
	font-weight: 300;
	color: #3F3F3F;
	margin: 0 0 10px;
}

ul li {
	font-size: 16px;
	font-weight: 300;
	color: #3F3F3F;
	margin: 0 0 10px;
}


h1,
h2 {
	font-size: 30px;
	font-weight: 300;
	color: #012543;
	margin: 0;
}

.clear {
	height: 0;
	display: block;
	clear: both;
}

.bar-notification .content {
	margin: 0 10px 0 0;
	color: #FFF;
	font-size: 14px;
}

input[type="button"], input[type="submit"], input[type="reset"] {
	font-family: 'Roboto', sans-serif;
}

.flex-container, * > .flex-container {
	display: -ms-flexbox;
	/*IE*/
	display: -webkit-flex;
	/* Safari */
	display: flex;
}

.justify-content-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justify-content-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-content-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.justify-content-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.align-items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.align-items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-shrink-1 {
	-ms-flex-negative: 1;
	flex-shrink: 1;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.container {
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

.container-large {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 15px;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}


.flex-10 {
	-ms-flex-preferred-size: 10%;
	flex-basis: 10%;
}

.flex-14 {
	-ms-flex-preferred-size: 14%;
	flex-basis: 14%;
}

.flex-15 {
	-ms-flex-preferred-size: 15%;
	flex-basis: 15%;
}

.flex-18 {
	-ms-flex-preferred-size: 18%;
	flex-basis: 18%;
}

.flex-19 {
	-ms-flex-preferred-size: 19%;
	flex-basis: 19%;
}

.flex-20 {
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
}

.flex-24 {
	-ms-flex-preferred-size: 24%;
	flex-basis: 24%;
}

.flex-24_55 {
	-ms-flex-preferred-size: 24.55%;
	flex-basis: 24.55%;
}

.flex-25 {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
}

.flex-30 {
	-ms-flex-preferred-size: 30%;
	flex-basis: 30%;
}

.flex-32 {
	-ms-flex-preferred-size: 32%;
	flex-basis: 32%;
}

.flex-32_65 {
	-ms-flex-preferred-size: 32.65%;
	flex-basis: 32.65%;
}

.flex-32_9 {
	-ms-flex-preferred-size: 32.9%;
	flex-basis: 32.9%;
}

.flex-33 {
	-ms-flex-preferred-size: 33%;
	flex-basis: 33%;
}


.flex-35 {
	-ms-flex-preferred-size: 35%;
	flex-basis: 35%;
}

.flex-38 {
	-ms-flex-preferred-size: 38%;
	flex-basis: 38%;
}

.flex-40 {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
}

.flex-40_05 {
	-ms-flex-preferred-size: 40.05%;
	flex-basis: 40.05%;
}

.flex-45 {
	-ms-flex-preferred-size: 45%;
	flex-basis: 45%;
}

.flex-47 {
	-ms-flex-preferred-size: 47%;
	flex-basis: 47%;
}

.flex-48_416 {
	-ms-flex-preferred-size: 48.416%;
	flex-basis: 48.416%;
}

.flex-48 {
	-ms-flex-preferred-size: 48%;
	flex-basis: 48%;
}

.flex-48_5 {
	-ms-flex-preferred-size: 48.5%;
	flex-basis: 48.5%;
}

.flex-49 {
	-ms-flex-preferred-size: 49%;
	flex-basis: 49%;
}

.flex-49_5 {
	-ms-flex-preferred-size: 49.5%;
	flex-basis: 49.5%;
}

.flex-50 {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.flex-51 {
	-ms-flex-preferred-size: 51%;
	flex-basis: 51%;
}

.flex-52 {
	-ms-flex-preferred-size: 52%;
	flex-basis: 52%;
}

.flex-55 {
	-ms-flex-preferred-size: 55%;
	flex-basis: 55%;
}

.flex-60 {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
}

.flex-61_08 {
	-ms-flex-preferred-size: 61.08%;
	flex-basis: 61.08%;
}

.flex-62 {
	-ms-flex-preferred-size: 62%;
	flex-basis: 62%;
}

.flex-64 {
	-ms-flex-preferred-size: 64%;
	flex-basis: 64%;
}

.flex-65 {
	-ms-flex-preferred-size: 65%;
	flex-basis: 65%;
}

.flex-66 {
	-ms-flex-preferred-size: 66%;
	flex-basis: 66%;
}

.flex-67 {
	-ms-flex-preferred-size: 67%;
	flex-basis: 67%;
}

.flex-70 {
	-ms-flex-preferred-size: 70%;
	flex-basis: 70%;
}

.flex-75 {
	-ms-flex-preferred-size: 75%;
	flex-basis: 75%;
}

.flex-80 {
	-ms-flex-preferred-size: 80%;
	flex-basis: 80%;
}

.flex-90 {
	-ms-flex-preferred-size: 90%;
	flex-basis: 90%;
}

.flex-100 {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
}


.italic-text {
	font-style: italic;
}

.master-wrapper-page {
	background-color: #FFF;
	overflow: hidden;
}

.master-wrapper-content {
	width: 100%;
	margin: 0;
}

.inputs input[type="text"], .inputs input[type="password"], .inputs select {
	background-color: transparent;
	text-align: left;
	color: #4F4F4F;
	padding: 15px;
	border: solid 1px #e8e8e8;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 42px;
	line-height: 40px;
}

	.inputs input[type="text"]::placeholder, .inputs input[type="password"]::placeholder {
		color: #BCBCBC;
		font-size: 13px;
		font-weight: 300;
		font-family: 'Roboto', sans-serif;
	}


.inputs label {
	width: 100%;
	display: block;
	text-align: left;
	margin: 0 0 10px;
	font-weight: 300;
}

.inputs textarea {
	border: 2px solid #e5e5e5;
	background-color: transparent;
	text-align: left;
	color: #8c8c8c;
	font-size: 16px;
	font-weight: 300;
	padding: 15px;
}

	.inputs textarea::placeholder {
		color: #BCBCBC;
		font-size: 13px;
		font-weight: 300;
		font-family: 'Roboto', sans-serif;
	}

.fieldset, .section {
	margin: 0 0 35px;
}

.bar-notification {
	z-index: 999999;
}

.page-title {
	min-height: unset;
	margin: 0 0 45px;
	border-bottom: 0;
	padding: 0;
}

	.page-title h1 {
		text-transform: uppercase;
		color: #e2b15c;
		line-height: 33px;
		font-size: 27px;
		letter-spacing: 3px;
		font-weight: 300;
	}

#back-to-top {
	position: fixed;
	bottom: 50px;
	right: 80px;
	z-index: 9999;
	width: 82px;
	height: 82px;
	text-align: center;
	line-height: 40px;
	padding: 0 1px 0 2px;
	background: #0054A6;
	color: #FFF;
	cursor: pointer;
	border: 0;
	text-decoration: none;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	opacity: 0;
	font-size: 10px;
	font-weight: 400;
	background-repeat: no-repeat;
	background-size: 34px;
	background-image: url(/Themes/DefaultClean/Content/images/Pietris/Icons/back-to-top-icon.svg);
	background-position: 53% 45px;
}

	#back-to-top.show {
		opacity: 1;
	}

	#back-to-top:hover {
		background-position: 53% 40px;
		font-weight: 700;
	}

/*********** HEADER **********/
.fixed-espa-homepage-wrapper {
	position: fixed;
	right: -480px;
	bottom: 30px;
	z-index: 99999;
	background-color: #fff;
	padding: 25px clamp(5px,2.5vw,23px);
	box-shadow: -4px 4px 17px 0 rgba(0, 0, 0, 0.29);
	display: block;
	transition: all 0.5s ease-in-out;
}

	.fixed-espa-homepage-wrapper.open {
		right: 0;
	}

	.fixed-espa-homepage-wrapper .fixed-espa-close-button {
		text-align: center;
		text-align: center;
		display: block;
		overflow: hidden;
		text-decoration: none;
		position: relative;
		background: #001F5F;
		color: #fff;
		cursor: pointer;
		vertical-align: middle;
		padding: 10px 20px;
		border: 1px solid #fff;
		transition: all 0.3s ease;
		white-space: nowrap;
		font-size: 18px;
		text-transform: uppercase;
		z-index: 0;
		cursor: pointer;
	}

.fixed-espa-homepage-image {
	max-width: 200px;
}

	.fixed-espa-homepage-image img {
		max-width: 100%;
		display: block;
		margin: 0 0;
	}

.fixed-espa-close-button {
	max-width: 124px;
	margin: 35px auto 0;
}

.product-carousel-item-image {
	position: relative;
	margin: 0 0 19px;
}

	.product-carousel-item-image img {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		filter: grayscale(1);
		transition: all 0.3s ease-in-out;
	}

	.product-carousel-item-image:before {
		content: '';
		display: block;
		padding-top: 41%;
	}

	.product-carousel-item-image img:hover {
		filter: grayscale(0);
	}



.product-carousel {
	margin-bottom: 30px;
}

	.product-carousel .owl-product-inner-carousel .owl-stage-outer .owl-stage {
		display: flex;
		align-items: center;
	}


	.product-carousel .product-carousel-grid {
		padding-inline: 40px;
	}

		.product-carousel .product-carousel-grid .owl-nav .owl-prev {
			left: -5px;
			background-image: url(../../Content/images/Pietris/Icons/arrow-prev-black.png);
			filter: invert(1);
		}

		.product-carousel .product-carousel-grid .owl-nav .owl-next {
			right: -5px;
			background-image: url(../../Content/images/Pietris/Icons/arrow-next-black.png);
			filter: invert(1);
		}

	.product-carousel .owl-carousel .owl-stage-outer {
		background-color: #fff;
	}
/***************************/
/*Header Top*/
.header {
	width: 100%;
}

.header-lower {
	display: block;
	width: 100%;
	background-color: #1A1A1A;
	padding: 10px 0 12px;
}

.header-container {
	max-width: 1330px;
	margin: 0 auto;
	padding: 0 15px;
}

.header-stores ul li {
	margin: 0;
}

	.header-stores ul li:first-child {
		margin: 0 20px 0 0;
	}

.header-stores-list {
	margin: 0 0 17px;
}

	.header-stores-list li a {
		border: 2px solid;
		display: block;
		min-width: 197px;
		font-size: 17px;
		letter-spacing: 5px;
		line-height: 20px;
		padding: 12px 5px;
		text-align: center;
		font-weight: 300;
		position: relative;
	}

	.header-stores-list li:first-child a {
		color: #FFF;
		border-color: #e2b15c;
		background-color: #e2b15c;
	}

		.header-stores-list li:first-child a:hover {
			color: #e2b15c;
			background-color: transparent;
		}

	.header-stores-list li:nth-child(2) a {
		color: #AD914F;
		border-color: #AD914F;
		background-color: transparent;
		min-width: 315px;
	}

		.header-stores-list li:nth-child(2) a:hover {
			color: #1A1A1A;
			background-color: #AD914F;
		}

.header-stores ul li:first-child a:after {
	content: '';
	width: 2px;
	height: 29px;
	display: block;
	position: absolute;
	bottom: -31px;
	right: 0;
	left: 0;
	margin: 0 auto;
	background-color: #e2b15c;
}

.header-logo {
	display: block;
	margin: 0 90px 0 0;
}

 .header-menu > ul > li:nth-child(2) > a {
	pointer-events: none;
}
/*End Header Top*/

/***************************/
/*Header Social*/
.header-social {
	margin: 0 0 17px;
}

	.header-social .networks {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

		.header-social .networks li {
			margin: 0 24px 0 0;
		}

			.header-social .networks li:last-child {
				margin: 0;
			}

			.header-social .networks li a {
				width: 16px;
				height: 16px;
				font-size: 0;
				background-position: center;
				background-repeat: no-repeat;
				background-size: contain;
				display: block;
			}

			.header-social .networks li:hover a {
				-moz-transform: scale(1.4);
				-ms-transform: scale(1.4);
				-o-transform: scale(1.4);
				-webkit-transform: scale(1.4);
				transform: scale(1.4);
			}

			.header-social .networks li.facebook a {
				background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/header-fb-icon.svg);
			}

			.header-social .networks li.twitter a {
				background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/header-insta-icon.svg);
			}

			.header-social .networks li.youtube a {
				background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/header-yt-icon.svg);
			}

			.header-social .networks li.google-plus a {
				background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/header-in-icon.svg);
			}
/*End Header Social*/
/***************************/
/*Header Menu*/
.header-menu {
	width: 100%;
	margin: 0;
	border: 0;
	padding: 0;
	background-color: #e2b15c;
}

	.header-menu > ul > li {
		margin: 0;
	}
/*End Header Menu*/
/***************************/
/*********** HOMEPAGE **********/

.owl-nav > * {
	position: absolute;
	top: 50%;
	font-size: 0;
	height: 60px;
	width: 51px;
	background-position: center;
	background-size: 32px;
	background-repeat: no-repeat;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.owl-carousel .owl-nav .owl-next {
	right: 60px;
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/home_next.svg);
}

.owl-carousel .owl-nav .owl-prev {
	left: 60px;
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/home_prev.svg);
}

.home-page .page-body {
	position: relative;
}

.slide-homepage {
	position: relative;
}

.slider-text-wrapper {
	min-height: 367px;
	position: absolute;
	bottom: 0;
	width: 100%;
	overflow: hidden;
}

.slider-text-inner-wrapper {
	position: relative;
	padding: 13px 15px 10px;
	height: 100%;
	min-height: 367px;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}


/*.homepage-slide-text-bg {
	position: absolute;
	top: -15px;
	bottom: -95px;
	right: -15px;
	left: -15px;
	height: 108%;
	width: 102%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	background-origin: border-box;*/
/*	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.63);
	box-shadow: inset 0 0 0 300px rgba(0,0,0,.63);*/
	/*z-index: 1;
}*/



.politikes-etairias-wrapper ul {
	list-style:none;

}
.politikes-etairias-wrapper ul  li a{
	color:#fff;
}
.home-page .topic-block {
	margin: 0;
	position: relative;
}

	.home-page .topic-block p {
		margin: 0;
	}

.topic-block a, .topic-page a {
	text-decoration: none;
	color: #e2b15c;
}

.homepage-text-wrapper {
	background-color: #1A1A1A;
	padding: 40px 15px;
	position: static;
	height: auto;
	width: 100%;
	z-index: 1025;
}

.homepage-text-container {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: center;
}

	.homepage-text-container p {
		text-align: center;
		color: #FFF;
		font-size: 15px;
		line-height: 23px;
		font-weight: 100;
	}

.homepage-text-title h2 {
	color: #e2b15c;
	font-size: 27px;
	letter-spacing: 3px;
	line-height: 33px;
	margin: 0 0 22px;
}

.homepage-text-wrapper a.homepage-txt-btn {
	margin: 55px auto 0;
	display: block;
	max-width: 201px;
	color: #e2b15c;
	text-decoration: none;
	border: 2px solid #e2b15c;
	padding: 11px 0 9px;
	font-weight: 700;
	font-size: 15px;
}

	.homepage-text-wrapper a.homepage-txt-btn:hover {
		background-color: #e2b15c;
		color: #1a1a1a;
	}


/***************************/
/*Homepage Categories*/
.homepage-categories-wrapper {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center top;
	padding: 148px 0 119px;
	background-size: cover;
}

.home-page-category-grid {
	margin: 0 auto;
	max-width: 1260px;
	padding: 0 15px;
}

	.home-page-category-grid .item-box {
		margin: 0 0.5%;
	}

	.home-page-category-grid .category-item-title {
		margin: 37px 0 0;
	}

	.home-page-category-grid .title a {
		padding: 0;
		color: #FFF;
		font-size: 24px;
		line-height: 29px;
		font-weight: 700;
	}

		.home-page-category-grid .title a:hover {
			color: #e2b15c;
		}

	.home-page-category-grid .picture {
		background-color: transparent;
	}

	.home-page-category-grid .item-box:hover .picture a img {
		opacity: 1;
	}

	.home-page-category-grid .item-box .picture:hover a img {
		-moz-transform: scale(1.05);
		-ms-transform: scale(1.05);
		-o-transform: scale(1.05);
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
		opacity: 1;
	}
/*End Homepage Categories*/
/***************************/
/*Homepage News*/
.homepage-news-wrapper {
	padding: 60px 0 70px;
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center bottom;
	position: relative;
}

.news-list-homepage .title {
	border: 0;
	padding: 0;
	margin: 0 0 47px;
}

	.news-list-homepage .title strong {
		font-weight: 300;
		color: #e2b15c;
		font-size: 27px;
		letter-spacing: 3px;
		line-height: 33px;
		display: block;
		text-transform: uppercase;
	}

.news-list-homepage .news-head {
	text-align: left;
}

.news-date {
	display: inline-block;
	margin: 0 0 8px;
	background-color: transparent;
	padding: 0 15px 10px 0;
	font-style: normal;
	color: #8E8E8E;
	border-bottom: 2px solid #e2b15c;
}


.news-list-homepage {
	margin: 0;
	position: relative;
	z-index: 2;
	padding: 0 15px;
}

.news-items {
	max-width: 1230px;
	margin: 0 auto 64px;
}

.news-list-homepage .news-item {
	margin: 0 1%;
}

.news-title {
	padding: 0;
	text-align: left;
	color: #FFF;
	font-size: 20px;
	line-height: 27px;
	font-weight: 700;
	display: block;
	min-height: 81px;
	max-height: 81px;
	overflow: hidden;
}

	.news-title:hover {
		color: #e2b15c;
	}

.news-list-homepage .view-all a {
	margin: 55px auto 0;
	display: block;
	max-width: 201px;
	color: #e2b15c;
	text-decoration: none;
	border: 2px solid #e2b15c;
	padding: 14px 0 12px;
	font-weight: 700;
	font-size: 15px;
}

	.news-list-homepage .view-all a:hover {
		background-color: #e2b15c;
		color: #1a1a1a;
	}

.news-picture {
	margin: 0 0 21px;
}

	.news-picture img {
		max-width: 100%;
		display: block;
		height: auto;
	}

.news-list-homepage .news-picture img {
	max-width: 100%;
	display: block;
	height: auto;
	max-height: 180px;
	width: 100%;
	object-fit: cover;
}

.news-blur-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
}

.news-blur-inner-wrapper {
	position: relative;
	height: 100%;
}

.homepage-news-blur-bg {
	font-size: 0;
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	position: absolute;
	top: -15px;
	bottom: -95px;
	right: -15px;
	left: -15px;
	height: 110%;
	width: 106%;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-box-shadow: inset 0 0 0 1010px rgba(0,0,0,.63);
	box-shadow: inset 0 0 0 1010px rgba(0,0,0,.63);
	z-index: 1;
}

/*End Homepage News*/
/***************************/
/*Homepage Gallery*/
.homepage-gallery-wrapper {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center 98%;
	padding: 67px 0 0;
}

.home-page .homepage-gallery-container {
	padding: 0 0 112px;
}

.homepage-gallery-container {
	padding: 67px 0 112px;
}

.homepage-gallery-title {
	margin: 0 0 67px;
}

	.homepage-gallery-title h2 {
		text-align: center;
		color: #e2b15c;
		font-size: 27px;
		letter-spacing: 3px;
		line-height: 33px;
		font-weight: 300;
	}

.homepage-gallery-wrapper .owl-carousel .owl-nav .owl-prev {
	left: 45px;
}

.homepage-gallery-wrapper .owl-carousel .owl-nav .owl-next {
	right: 45px;
}

.gallery-blur-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 1;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.gallery-blur-inner-wrapper {
	position: relative;
	overflow: hidden;
	height: 100%;
}

.homepage-gallery-blur-bg {
	position: absolute;
	top: -15px;
	bottom: -95px;
	right: -15px;
	left: -15px;
	height: 108%;
	width: 110%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(7px);
	filter: blur(7px);
	-webkit-box-shadow: inset 0 0 0 600px rgba(0,0,0,.63);
	box-shadow: inset 0 0 0 600px rgba(0,0,0,.63);
	z-index: 1;
}

.homepage-gallery .active .gallery-blur-wrapper {
	opacity: 0;
	z-index: -1;
}

/*End Homepage Gallery*/
/***************************/
/*Homepage Stores*/
.homepage-stores-wrapper {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
}

.homepage-stores-container {
	max-width: 1380px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.flex-store-homepage {
	text-align: center;
	padding: 0 10px;
}

.homepage-store-img {
	margin: 0 0 30px;
}

	.homepage-store-img a {
		display: block;
	}

	.homepage-store-img img {
		max-width: 100%;
		display: block;
		margin: 0 auto;
	}

.homepage-store-name a {
	text-decoration: none;
	color: #FFF;
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
	min-height: 42px;
	display: block;
}

.homepage-stores-blur-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.homepage-stores-blur-container {
	position: relative;
	height: 100%;
}

.homepage-stores-blur {
	font-size: 0;
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	position: absolute;
	top: -15px;
	bottom: -95px;
	right: -15px;
	left: -15px;
	height: 110%;
	width: 106%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(5px);
	filter: blur(5px);
	-webkit-box-shadow: inset 0 0 0 375px rgba(0,0,0,.63);
	box-shadow: inset 0 0 0 375px rgba(0,0,0,.63);
	z-index: 1;
}

.homepage-stores-title {
	margin: 0 0 54px;
}

	.homepage-stores-title h2 {
		text-align: center;
		color: #e2b15c;
		letter-spacing: 3px;
		line-height: 33px;
		font-size: 27px;
		font-weight: 300;
	}

.homepage-stores-button {
	margin: 80px 0 0;
	text-align: center;
}

	.homepage-stores-button .homepage-stores-btn {
		margin: 55px auto 0;
		display: block;
		max-width: 201px;
		color: #e2b15c;
		text-decoration: none;
		border: 2px solid #e2b15c;
		padding: 11px 0 9px;
		font-weight: 700;
		font-size: 15px;
	}

		.homepage-stores-button .homepage-stores-btn:hover {
			background-color: #e2b15c;
			color: #1a1a1a;
		}

.homepage-store-img a {
	pointer-events: none;
}

.homepage-store-name a {
	pointer-events: none;
}
/*End Homepage Stores*/
/***************************/
/*********** CATEGORY PAGE **********/
.category-description-wrapper {
	padding: 70px 0 105px;
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.category-description-container {
	max-width: 787px;
	margin: 0 auto;
	padding: 0 10px;
	width: 97%;
}

.category-description-wrapper .category-description {
	margin: 0;
}

	.category-description-wrapper .category-description p {
		color: #FFF;
		text-align: center;
		margin: 0;
		font-weight: 100;
		font-size: 15px;
		line-height: 23px;
	}

.category-page .page-title {
	margin: 0 0 34px;
}

	.category-page .page-title h1 {
		color: #e2b15c;
		line-height: 33px;
		font-size: 27px;
		letter-spacing: 3px;
		font-weight: 300;
	}

.category-banner img {
	display: block;
	max-width: 100%;
	height: auto;
}

.category-page .item-box {
	width: 50%;
	margin: 0;
	clear: none;
}

	.category-page .item-box .picture a:before {
		padding-top: 0;
	}

	.category-page .item-box .picture a.picture-anchor:before {
		padding-top: 69%;
	}

	.category-page .item-box .picture {
		margin: 0;
	}

		.category-page .item-box .picture a img {
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			object-fit: cover;
			opacity: 1;
		}

.product-grid, .product-list {
	margin: 0;
}

.product-box-products ul li {
	margin: 0;
}

.product-box-products-inner {
	padding: 45px 0 44px;
	position: relative;
}

.product-box-products {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	opacity: 1;
}

	.product-box-products ul li {
		margin: 0 10px 0 0;
		font-size: 13px;
		color: #FFF;
		padding: 1px 5px;
		line-height: 39px;
		font-weight: 700;
		position: relative;
		padding: 1px 5px;
		text-shadow: 0 0 5px rgba(0, 0, 0, .2);
	}

		.product-box-products ul li:last-child {
			margin: 0;
		}

		.product-box-products ul li:after {
			content: "|";
			color: #e2b15c;
			font-size: 23px;
			position: absolute;
			right: -7px;
			top: 1px;
		}

		.product-box-products ul li:last-child:after {
			display: none;
		}

.category-page .item-box:hover .product-box-hover-wrapper {
	opacity: 1;
	z-index: 1;
}

.product-box-blur-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.product-box-blur-inner {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.product-box-blur {
	position: absolute;
	top: -5px;
	bottom: -14px;
	right: -15px;
	left: -15px;
	height: 113%;
	width: 104%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-box-shadow: inset 0 0 0 300px rgba(255,255,255,.13);
	box-shadow: inset 0 0 0 300px rgba(255,255,255,.13);
	z-index: 1;
}

.product-box-products ul {
	position: relative;
	z-index: 2;
}

.category-page .item-box:hover .product-box-products {
	opacity: 0;
}

.product-box-hover-wrapper {
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: -1;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.product-box-hover-wrap {
	position: relative;
	height: 100%;
}

.product-box-hover-blur-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.product-hover-box-blur-inner {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.product-hover-box-blur {
	position: absolute;
	top: -29px;
	bottom: -14px;
	right: -15px;
	left: -23px;
	height: 111%;
	width: 107%;
	background-repeat: no-repeat;
	background-position: 96% bottom;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(10px);
	filter: blur(23px);
	-webkit-box-shadow: inset 0 0 0 300px rgba(255,255,255,.13);
	box-shadow: inset 0 0 0 300px rgba(255,255,255,.13);
	z-index: 1;
}

.product-box-hover-wrap {
	position: relative;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}


	.product-box-hover-wrap ul {
		position: relative;
		z-index: 2;
		padding: 30px 68px 29px;
		background-color: rgba(0, 0, 0, .76);
		width: 90%;
	}

		.product-box-hover-wrap ul li {
			font-size: 14px;
			line-height: 28px;
			font-weight: 700;
			color: #FFF;
			margin: 0 10px 0 0px;
			padding: 1px 5px;
			position: relative;
		}

			.product-box-hover-wrap ul li:last-child {
				margin: 0;
			}

			.product-box-hover-wrap ul li:after {
				content: "|";
				color: #e2b15c;
				font-size: 23px;
				position: absolute;
				right: -7px;
				top: 1px;
				font-weight: 300;
			}

			.product-box-hover-wrap ul li:last-child:after {
				display: none;
			}


.category-page .item-box:hover .product-box-hover-wrapper {
	opacity: 1;
	z-index: 1;
}

.category-page .item-grid {
	background-color: #000;
}
/*********** TOPIC PAGE **********/
.topic-banner img {
	max-width: 100%;
	display: block;
	height: auto;
}

.topic-block-title {
	min-height: unset;
	border-bottom: 0;
	padding: 0;
}

.topic-page .page-title {
	margin: 0 0 35px;
}

.topic-page .page-body {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center top;
}

.topic-page-body-wrapper {
	padding: 50px 0 100px;
	background-color: rgba(0, 0, 0, .67);
}

.topic-page-body-container {
	max-width: 960px;
	padding: 0 15px;
	margin: 0 auto;
}

.topic-page p, .topic-page ul li {
	font-size: 15px;
	color: #FFF;
	line-height: 23px;
	font-weight: 100;
	margin: 0 0 25px;
}

.topic-block strong, .topic-page strong {
	color: #FFF;
}

.topic-picture-wrapper {
	padding: 65px 0;
	text-align: center;
}

.topic-picture-container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

.topic-picture img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	height: auto;
}

.organogramma-wrap img {
	max-width: 100%;
	display: block;
	margin: 0 auto 45px;
}
/*********** TOPIC PAGE WITH GALLERY **********/
.topic-page-with-gallery .homepage-gallery-container {
	padding: 80px 0 65px;
}

.topic-page-stores-with-gallery .page-body {
	padding: 50px 0 0;
}

.topic-page-stores-with-gallery .homepage-gallery-container {
	padding: 20px 0 65px;
}

.store-page-inner {
	max-width: 650px;
	margin: 0 auto 100px;
	padding: 0 15px;
}

.store-page-text-wrapper {
	position: relative;
	padding: 50px 0 30px;
}

.store-page-text {
	position: relative;
	z-index: 2;
	max-width: 310px;
	margin: 0 auto;
	text-align: center;
}

	.store-page-text p {
		text-align: center;
		font-size: 16px;
		line-height: 25px;
		font-weight: 300;
	}

	.store-page-text a {
		text-decoration: none;
		color: #e2b15c;
		font-size: 16px;
		line-height: 25px;
	}

.store-page-blur-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.store-page-blur-inner-wrapper {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.store-page-blur-inner-bg {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	position: absolute;
	top: -10px;
	bottom: -15px;
	right: -15px;
	left: -15px;
	height: 120%;
	width: 110%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-box-shadow: inset 0 0 0 600px rgba(0,0,0,.63);
	box-shadow: inset 0 0 0 600px rgba(0,0,0,.63);
	z-index: 1;
}
/*********** TOPIC PAGE STORES GRID **********/
.topic-stores-body-wrapper {
	padding: 50px 0 160px;
}

.topic-stores-body-container {
	max-width: 1300px;
	padding: 0 15px;
	margin: 0 auto;
}

.store-item {
	margin: 0 3% 34px 0;
}

	.store-item:nth-child(2n) {
		margin: 0 0 34px;
	}


	.store-item:last-child {
		margin: 0 0 34px;
	}

.topic-page .topic-stores-body-wrapper .page-title {
	margin: 0 0 100px;
}

.store-item-image {
	-ms-flex-preferred-size: 42%;
	flex-basis: 42%;
}

.store-item-text-wrapper {
	-ms-flex-preferred-size: 58%;
	flex-basis: 58%;
	position: relative;
}

.topic-gallery-blur-wrapper.store-blur-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.topic-gallery-blur-inner-wrapper.store-blur-inner-wrapper {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.topic-gallery-blur-bg.store-blur-bg {
	position: absolute;
	top: -15px;
	bottom: -95px;
	right: -30px;
	left: -15px;
	height: 111%;
	width: 110%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	-webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.63);
	box-shadow: inset 0 0 0 300px rgba(0,0,0,.63);
	z-index: 1;
}

.store-item-text-inner {
	position: relative;
	z-index: 2;
	padding: 40px 20px 40px 30px;
	height: 100%;
}

.store-item-title {
	margin: 0 0 15px;
}

	.store-item-title h3 {
		color: #e2b15c;
		font-size: 20px;
		line-height: 24px;
		text-align: left;
	}

.store-item-desc {
	margin: 0 0 45px;
	min-height: 100px;
	max-height: 100px;
	overflow: hidden;
}

	.store-item-desc p {
		font-size: 16px;
		line-height: 25px;
		font-weight: 300;
		margin: 0;
		text-align: left;
	}

.store-item-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.store-item-anchor .store-item-btn {
	display: block;
	text-decoration: none;
	width: 100%;
	max-width: 201px;
	text-align: center;
	padding: 13px 0;
	font-size: 17px;
	font-weight: 700;
	color: #e2b15c;
	border: 1px solid #e2b15c;
}

	.store-item-anchor .store-item-btn:hover {
		background-color: #e2b15c;
		color: #1a1a1a;
	}

/*********** PRODUCT PAGE **********/
.product-details-page {
	padding: 0;
}

.product-banner img {
	max-width: 100%;
	display: block;
	height: auto;
}

.product-gallery .active .gallery-blur-wrapper {
	opacity: 0;
	z-index: -1;
}

.product-gallery-wrapper {
	padding: 0 0 85px;
}

.product-details-page .page-body {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/product_bg.jpg);
}

.product-collateral {
	margin: 0 0 45px;
}

.product-title-wrapper {
	padding: 88px 15px 78px;
	text-align: center;
}

	.product-title-wrapper h3 {
		color: #e2b15c;
		font-size: 27px;
		font-weight: 300;
		margin: 0;
		line-height: 33px;
	}

.special-icon {
	position: absolute;
	top: 10px;
	right: 10px;
}

	.special-icon img {
		max-width: 100%;
		height: auto;
		display: block;
	}

.product-variant-list {
	max-width: 1525px;
	margin: 0 auto;
	padding: 0 15px 55px;
}

.product-variant-line {
	border: 0;
	margin: 0 2% 38px 0;
	width: 32%;
	background-color: rgba(0, 0, 0, .76);
	padding: 52px 25px 45px 57px;
	position: relative;
}

	.product-variant-line:nth-child(3n) {
		margin: 0 0 38px;
	}

.variant-overview .variant-description {
	margin: 0;
	line-height: 22px;
}

.product-grouped-short-desc, .product-description-grouped {
	max-width: 1230px;
	margin: 0 auto 75px;
	padding: 0 15px;
	text-align: center;
}

	.product-grouped-short-desc p, .product-description-grouped p {
		color: #FFF;
		font-size: 17px;
	}

	.product-grouped-short-desc p {
		line-height: 32px;
	}

.variant-overview .variant-name {
	color: #FFF;
	padding: 0 0 22px;
	min-height: 88px;
	font-size: 27px;
	position: relative;
	margin: 0 0 22px;
	line-height: 33px;
}

	.variant-overview .variant-name:after {
		content: '';
		width: 100%;
		display: block;
		max-width: 148px;
		height: 3px;
		background-color: #e2b15c;
		position: absolute;
		bottom: 0;
	}

.variant-overview .variant-description {
	margin: 0;
	line-height: 26px;
	color: #FFF;
	font-weight: 100;
	font-size: 17px;
}

.image-item-title-wrapper {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	text-align: center;
}

	.image-item-title-wrapper h4 {
		font-size: 20px;
		line-height: 39px;
		color: #FFF;
		font-weight: 700;
		position: relative;
		z-index: 2;
	}

.image-item-title-inner-wrapper {
	padding: 38px 0 36px;
	position: relative;
}

.image-item-blur-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.image-item-blur-inner-wrapper {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.image-item-blur-bg {
	position: absolute;
	top: -12px;
	bottom: -100px;
	right: -15px;
	left: -15px;
	height: 125%;
	width: 103%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 99%;
	background-origin: border-box;
	-webkit-filter: blur(20px);
	filter: blur(19px);
	-webkit-box-shadow: inset 0 0 0 600px rgba(0, 0, 0, 0.25);
	box-shadow: inset 0 0 0 600px rgba(0, 0, 0, 0.25);
	z-index: 1;
}


.flex-quality-assurance {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

	.flex-quality-assurance .flex-50 {
		padding: 0 10px;
		margin: 0 0 15px;
	}
/*********** CONTACT PAGE **********/
.contact-page .page-body {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/contact_bg.jpg);
	background-position: center;
	background-size: cover;
	padding: 50px 0 135px;
}

.contact-banner img {
	max-width: 100%;
	display: block;
	height: auto;
}

.contact-page .page-title {
	margin: 0 0 70px;
}

.contact-page .contact-wrapper .topic-block {
	margin: 0 auto;
	max-width: 390px;
}

.contact-text p {
	margin: 0 0 10px;
	color: #AEAEAE;
	text-align: center;
	font-size: 14px;
	line-height: 27px;
}

.contact-wrapper {
	max-width: 1175px;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
}

.contact-page .form-fields {
	background-color: transparent;
	max-width: 360px;
	margin: 0 auto;
	padding: 0;
}

.contact-wrapper .buttons {
	margin: 0 auto 70px;
	max-width: 350px;
}

.contact-page .topic-block {
	margin: 0;
}

.map {
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

	.map.open {
		-moz-filter: grayscale(0%);
		-ms-filter: grayscale(0%);
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

	.map p {
		margin: 0;
	}

	.map iframe {
		display: block;
		pointer-events: none;
	}

.contact-blur-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.contact-blur-inner {
	position: relative;
	overflow: hidden;
	height: 100%;
}

.contact-blur {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/contact_bg.jpg);
	position: absolute;
	top: -29px;
	bottom: -14px;
	right: -15px;
	left: -23px;
	height: 110%;
	width: 107%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(20px);
	filter: blur(20px);
	-webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.13);
	box-shadow: inset 0 0 0 300px rgba(0,0,0,.13);
	z-index: 1;
}

.contact-wrapper-inner {
	position: relative;
	z-index: 2;
	padding: 65px 0 70px;
}

.contact-wrapper .inputs {
	margin: 0 0 16px;
}

	.contact-wrapper .inputs input[type="text"], .contact-wrapper .inputs textarea {
		border: 0;
		border-bottom: 1px solid #e2b15c;
	}

.contact-wrapper .required {
	display: none;
}

.contact-wrapper .fieldset {
	margin: 0;
}


.contact-page .button-1 {
	width: 100%;
	background-color: #e2b15c;
	border: 2px solid #e2b15c;
	color: #000000;
	font-size: 19px;
	text-transform: none;
	font-weight: 300;
	line-height: 23px;
	padding: 11px 0 10px;
}

	.contact-page .button-1:hover {
		background-color: transparent;
		color: #e2b15c;
	}

.contact-wrapper .inputs input[type="text"], .contact-wrapper .inputs textarea {
	border: 0;
	border-bottom: 1px solid #e2b15c;
	text-align: center;
	font-weight: 300;
	color: rgba(250, 195, 13, .56);
	font-size: 16px;
	height: 39px;
}

	.contact-wrapper .inputs input[type="text"]::placeholder, .contact-wrapper .inputs textarea::placeholder {
		font-weight: 300;
		color: rgba(250, 195, 13, .36);
		font-size: 16px;
	}

.contact-wrapper .inputs textarea {
	min-height: 45px;
	height: auto;
}

.contact-wrapper .field-validation-error {
	position: absolute;
	bottom: -16px;
	text-align: center;
	right: 0;
	left: 0;
}

.contact-text a {
	text-decoration: none;
}

	.contact-text a:hover {
		color: #e2b15c;
	}

/*********** NEWS LIST PAGE **********/

.news-list-page {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-size: cover;
	padding: 95px 0 70px;
}

	.news-list-page .news-items {
		margin: 0 auto;
		padding: 0 15px;
	}

		.news-list-page .news-items .news-item {
			-ms-flex-preferred-size: 32%;
			flex-basis: 32%;
			margin: 0 2% 53px 0;
		}

			.news-list-page .news-items .news-item:nth-child(3n) {
				margin: 0 0 53px;
			}

	.news-list-page .news-item .news-picture img {
		min-height: 266px;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.news-list-page .page-title {
		margin: 0 0 70px;
	}

	.news-list-page .news-date {
		min-width: 148px;
		border-width: 1px;
		position: relative;
		z-index: 2;
		color: #FFF;
		font-weight: 300;
		font-size: 14px;
		margin: 0 0 12px;
	}

	.news-list-page .news-picture {
		margin: 0;
	}

	.news-list-page .news-head {
		min-height: 145px;
		padding: 30px;
		position: relative;
	}

.news-head-blur-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.news-head-blur-inner {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.news-head-blur {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-size: cover;
	position: absolute;
	top: -15px;
	bottom: -95px;
	right: -15px;
	left: -15px;
	height: 110%;
	width: 106%;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	background-origin: border-box;
	-webkit-filter: blur(10px);
	filter: blur(6px);
	-webkit-box-shadow: inset 0 0 0 610px rgba(0,0,0,.53);
	box-shadow: inset 0 0 0 610px rgba(0,0,0,.53);
	z-index: 1;
}

.news-list-page .news-title {
	position: relative;
	z-index: 2;
}
/*********** NEWS ITEM PAGE **********/
.pager ul {
	text-align: right;
	font-size: 0;
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

.pager li span {
	border-color: transparent;
	background-color: #e2b15c;
	color: #fff;
}

.news-item-page {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-size: cover;
	padding: 140px 0 70px;
}

	.news-item-page .page-title {
		max-width: 1230px;
		margin: 0 auto 75px;
		padding: 0 15px;
	}

		.news-item-page .page-title h1 {
			color: #FFF;
			font-size: 22px;
			line-height: 27px;
			text-transform: none;
			font-weight: 700;
		}

	.news-item-page .news-date {
		display: block;
		max-width: 148px;
		margin: 0 auto 15px;
		border-width: 1px;
		color: #FFF;
		text-align: center;
		padding: 0 0 10px;
		font-size: 14px;
		line-height: 17px;
	}

	.news-item-page .news-body {
		padding: 0 15px;
		max-width: 1230px;
		margin: 0 auto;
	}

.news-body img {
	max-width: 100%;
	height: auto;
}

.news-item-page .news-body p {
	margin: 0 0 20px;
	color: #FFF;
	line-height: 27px;
	font-size: 17px;
	font-weight: 300;
}

/*********** LOGIN PAGE **********/
.password-recovery-page form {
	max-width: 530px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: center;
}

.password-recovery-page, .login-page {
	padding: 55px 0;
}

	.login-page .returning-wrapper {
		float: none;
		width: 100%;
		margin: 0 auto;
		max-width: 390px;
		padding: 0 15px;
	}

	.password-recovery-page .button-1, .login-page .button-1 {
		background-color: #e2b15c;
		border: 2px solid #e2b15c;
		text-transform: none;
	}

		.password-recovery-page .button-1:hover, .login-page .button-1:hover {
			background-color: transparent;
			color: #e2b15c;
		}

	.login-page .returning-wrapper .inputs.reversed a:hover {
		color: #e2b15c;
	}

	.password-recovery-page .inputs {
		text-align: center;
	}

		.password-recovery-page .inputs input {
			float: none;
			margin: 0 auto;
		}

	.password-recovery-page .required {
		display: none;
	}

	.password-recovery-page .inputs label {
		text-align: center;
	}

	.password-recovery-page .result {
		margin: 0 0 5px;
		font-weight: bold;
		color: #444;
		text-align: center;
	}


/*********** ROOT CATEGORY PAGE **********/
.root-category-page {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center top;
	background-repeat: repeat;
	background-size: contain;
}

	.root-category-page .page-title {
		margin: 0;
	}

	.root-category-page .category-description-wrapper {
		background-image: unset;
		padding: 65px 0;
	}

	.root-category-page .sub-category-line .sub-category-line-container > .sub-category-picture a {
		display: block;
		width: 100%;
		height: 100%;
	}

		.root-category-page .sub-category-line .sub-category-line-container > .sub-category-picture a img {
			display: block;
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			object-fit: cover;
		}

	.root-category-page .sub-category-text {
		position: relative;
	}

		.root-category-page .sub-category-text::before {
			content: '';
			display: block;
			position: absolute;
			right: 0;
			left: 0;
			top: 0;
			height: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(87, 87, 87, .89);
			background-blend-mode: multiply;
			mix-blend-mode: multiply;
		}

.sub-category-text-inner-container {
	height: 100%;
	position: relative;
	z-index: 2;
}

.sub-category-text-inner {
	max-width: 471px;
	margin: 0 auto;
	padding: 50px 10px;
	width: 97%;
}


	.sub-category-text-inner .title {
		text-align: center;
		margin: 0 0 20px;
	}

		.sub-category-text-inner .title h2 {
			padding: 0 0 15px;
			position: relative;
			color: #FFF;
			font-size: 16px;
			line-height: 19px;
			text-align: center;
			font-weight: 300;
			text-transform: uppercase;
		}

			.sub-category-text-inner .title h2::before {
				content: '';
				display: block;
				width: 138px;
				height: 3px;
				position: absolute;
				bottom: 0;
				right: 0;
				left: 0;
				margin: 0 auto;
				background-color: #e2b15c;
			}


.sub-category-description {
	margin: 0 0 20px;
}

	.sub-category-description p {
		text-align: center;
		color: #FFF;
		font-size: 14px;
		line-height: 18px;
		font-weight: 100;
		margin: 0;
	}

.root-category-page .sub-category-line:nth-child(1) .sub-category-line-container > .sub-category-text .sub-category-text-inner {
	max-width: 537px;
}


.sub-button {
	text-align: center;
}

	.sub-button > a {
		font-size: 13px;
		font-weight: 700;
		display: inline-block;
		padding: 13px 16px;
		min-width: 201px;
		line-height: 1;
		color: #e2b15c;
		border: 1px solid #e2b15c;
	}

		.sub-button > a:hover {
			background-color: #e2b15c;
			color: #FFF;
		}

.title-icon {
	display: block;
	text-align: center;
	margin: 0 0 27px;
}

	.title-icon img {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		height: auto;
	}
/*********** CATEGORY GRID PAGE **********/
.category-grid-page .page-title h1 {
	text-transform: unset;
}

.category-grid-page .category-description-wrapper {
	background-image: unset;
}

.category-grid-page .page-body {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/homepage_bg.jpg);
	background-position: center top;
	background-repeat: repeat;
	padding: 0 0 217px;
	background-size: 100%;
	position: relative;
}

	.category-grid-page .page-body::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		background-color: rgba(0,0,0,.62);
	}

.category-grid-container {
	max-width: 1300px;
	padding: 0 10px;
	margin: 0 auto;
	width: 97%;
	position: relative;
	z-index: 2;
}

.category-grid {
	grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
	grid-gap: 47px 21px;
}

	.category-grid .category-item-box {
		width: 100%;
		border: 1px solid #e2b15c;
		background-color: rgba(0,0,0,.62);
	}

		.category-grid .category-item-box .picture span {
			display: block;
			position: relative;
		}

			.category-grid .category-item-box .picture span::before {
				content: '';
				display: block;
				padding-top: 68.3%;
			}

		.category-grid .category-item-box:hover {
			-moz-transform: scale(1.2);
			-ms-transform: scale(1.2);
			-o-transform: scale(1.2);
			-webkit-transform: scale(1.2);
			transform: scale(1.2);
			position: relative;
			z-index: 9999999999;
		}

	.category-grid .category-item-box {
		transition: all 0.3s ease;
	}


.category-description-video {
	position: relative;
	padding-top: 83.439%;
	width: 100%;
}

.category-description iframe {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

			.category-grid .category-item-box .picture span img {
				display: block;
				position: absolute;
				width: 100%;
				max-height: 100%;
				-o-object-fit: cover;
				object-fit: cover;
				top: 0;
				right: 0;
				bottom: 0;
				left: 0;
				margin: auto;
			}

		.category-grid .category-item-box .details {
			padding: 32px 15px 38px;
			text-align: center;
			background-color:#000;
		}

			.category-grid .category-item-box .details .product-title {
				font-size: 16px;
				color: #FFF;
				line-height: 19px;
				text-transform: uppercase;
			}

.block-category-navigation .list li {
	padding: 5px 10px;
	text-align: center;
	margin: 0;
	position: relative;
}

	.block-category-navigation .list li:after {
		content: '|';
		color: #FFF;
		font-size: 18px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.block-category-navigation .list li:last-child:after {
		display: none;
	}

.block-category-navigation .list a {
	color: #FFF;
	font-size: 18px;
	line-height: 23px;
	letter-spacing: .18px;
	font-weight: 300;
}

.block-category-navigation .title {
	padding: 0 0 8px;
	position: relative;
	margin: 0 0 25px;
}

	.block-category-navigation .title::after {
		content: '';
		width: 95%;
		max-width: 300px;
		margin: 0 auto;
		position: absolute;
		right: 0;
		left: 0;
		bottom: 0;
		height: 2px;
		background-color: #e2b15c;
	}

	.block-category-navigation .title strong {
		color: #e2b15c;
		font-weight: 300;
		font-size: 27px;
		line-height: 33px;
		text-transform: uppercase;
		letter-spacing: 5.5px;
	}
/*********** FOOTER **********/
.footer {
	background-color: #000000;
}
/*Footer Upper*/
.footer-upper {
	width: 100%;
	padding: 30px 0;
	border: 0;
}

.footer-logo {
	margin: 0 0 20px;
}

	.footer-logo a {
		display: inline-block;
	}

	.footer-logo img {
		display: block;
		height: auto;
		max-width: 100%;
	}

.footer .information .footer-list {
	padding: 0 0 0 20px;
}

.footer .footer-list li {
	color: #AEAEAE;
	margin: 0 0 1px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 300;
}

	.footer .footer-list li a:hover {
		color: #e2b15c;
	}

.footer-container {
	max-width: 1330px;
	margin: 0 auto;
	padding: 0 15px;
}

.follow-us {
	width: auto !important;
}

	.follow-us .social ul {
		margin: 0 0 95px;
		border-bottom: 0;
		padding: 0;
		font-size: 0;
	}

	.follow-us .social li {
		margin: 0 45px 0 0;
	}

		.follow-us .social li:last-child {
			margin: 0;
		}

	.follow-us .social a {
		width: 28px;
		height: 28px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}

		.follow-us .social a:hover {
			-moz-transform: scale(1.2);
			-ms-transform: scale(1.2);
			-o-transform: scale(1.2);
			-webkit-transform: scale(1.2);
			transform: scale(1.2);
		}

	.follow-us .social .facebook a {
		background-position: center;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/footer-fb-icon.svg);
	}

	.follow-us .social .twitter a {
		background-position: center;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/footer-insta-icon.svg);
	}

	.follow-us .social .youtube a {
		background-position: center;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/footer-yt-icon.svg);
	}

	.follow-us .social .google-plus a {
		background-position: center;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/footer-in-icon.svg);
	}

.footer-store-wrap {
	min-width: 254px;
}

	.footer-store-wrap a {
		width: 100%;
		display: block;
		color: #FFF;
		background-color: #e2b15c;
		text-align: center;
		font-size: 14px;
		line-height: 17px;
		font-weight: 300;
		letter-spacing: 5px;
		padding: 8px 0 5px;
		border: 2px solid #e2b15c;
	}

		.footer-store-wrap a:hover {
			background-color: transparent;
			color: #e2b15c;
		}
/*End Footer Upper*/
/*Footer Lower*/
.footer-lower {
	width: 100%;
	padding: 13px 0 12px;
	background-color: #232323;
}

.footer-powered-by a {
	font-weight: 300;
	color: #e2b15c;
}

.footer-powered-by {
	line-height: 1;
	color: #919191;
}

.footer-info {
	line-height: 1;
	color: #919191;
}
/*End Footer Lower*/


/*** HOMEPAGE NEWSLETTER POPUP STYLES ***/
.html-home-page #cboxContent {
	background: transparent;
	overflow: hidden;
}
.html-home-page #cboxClose {
	background-image: url(/Themes/PietrisCatering/Content/images/Pietris/Newsletter/newsletter-close.svg);
	width: 17px;
	height: 17px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: transparent;
	-moz-border-radius: unset;
	-webkit-border-radius: unset;
	border-radius: unset;
	font-size: 0;
	bottom: auto;
	top: 0;
}
.html-home-page #cboxTopCenter, .html-home-page #cboxTopLeft, .html-home-page #cboxTopRight, .html-home-page #cboxMiddleRight, .html-home-page #cboxMiddleLeft, .html-home-page #cboxBottomCenter, .html-home-page #cboxBottomLeft, .html-home-page #cboxBottomRight {
	display: none !important;
}
.html-home-page #cboxOverlay {
	background-color: rgba(0,0,0,.7);
}

.html-home-page #cboxContent, .html-home-page #cboxLoadedContent {
	width: 100% !important;
}

.html-home-page #cboxLoadedContent {
	display: flex;
	align-items: center;
}

.html-home-page #cboxClose {
	background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Newsletter/newsletter-close.svg);
	width: 17px;
	height: 17px;
	background-size: contain;
	background-color: transparent;
	-moz-border-radius: unset;
	-webkit-border-radius: unset;
	border-radius: unset;
}

.ajax-newsletter-popup {
	display: none;
	width: 90%;
	max-width: 668px;
	margin: 0 auto;
	padding: 0 10px;
	overflow: hidden;
}

#cboxLoadedContent .ajax-newsletter-popup {
	display: block;
}

.ajax-newsletter-popup-inner-wrapper {
	background-color: #FFFFFF;
	padding: clamp(14px, 1vw, 18px);
}

.ajax-newsletter-popup-inner-container {
	border: 2px solid #e2b15c;
	padding: clamp(20px, 2.5vw, 31px) clamp(10px, 2vw, 25px);
}

.ajax-newsletter-popup-inner-grid {
	gap: clamp(10px, 2vw, 20px);
}


.ajax-newsletter-popup-left .newsletter-result.ajax-newsletter-popup-text-success {
	height: 100%;
	display: flex;
	align-items: center;
}

.ajax-newsletter-popup-left .newsletter-result:not(.ajax-newsletter-popup-text-success) {
	position: absolute;
	color: red;
	font-size: 11px;
	line-height: 13px;
}

.ajax-newsletter-popup-left .newsletter {
	height: 100%;
}

.ajax-newsletter-popup-left p {
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: clamp(26px, 2vw, 30px);
	color: #8E8E8E;
	text-align: center;
	margin-bottom: clamp(25px, 4vw, 45px);
}

.ajax-newsletter-popup-left .newsletter-email .newsletter-subscribe-text, .ajax-newsletter-popup-left .newsletter-email .newsletter-subscribe-button {
	display: block;
	width: 100%;
}

.ajax-newsletter-popup-left .newsletter-email .newsletter-subscribe-text {
	background-color: #FFFFFF;
	border: 1px solid #8E8E8E;
	height: 49px;
	font-size: 14px;
	padding: 5px 16px;
	color: #B8B8B8;
}

	.ajax-newsletter-popup-left .newsletter-email .newsletter-subscribe-text::placeholder {
		font-size: 14px;
		color: #B8B8B8;
	}

.ajax-newsletter-popup-left .newsletter-email .newsletter-subscribe-button {
	height: 49px;
	border: 1px solid #e2b15c;
	padding: 10px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 700;
	text-align: center;
	color: #FFFFFF;
	background-color: #e2b15c;
	margin-block: 12px;
}

	.ajax-newsletter-popup-left .newsletter-email .newsletter-subscribe-button[disabled] {
		opacity: .6;
		cursor: not-allowed;
	}

.ajax-newsletter-popup-left .newsletter-inputs label, .ajax-newsletter-popup-left .newsletter-inputs span {
	font-size: 11px;
	line-height: 15px;
	color: #8E8E8E;
	text-align: left;
}

.ajax-newsletter-popup-left .newsletter-inputs input[type="checkbox"] {
	display: none;
}

.ajax-newsletter-popup-left .newsletter-inputs label {
	display: block;
	position: relative;
	padding-left: 24px;
	max-width: 200px;
}

	.ajax-newsletter-popup-left .newsletter-inputs label::before {
		content: "";
		display: block;
		position: absolute;
		width: 12px;
		height: 12px;
		background-color: #FFFFFF;
		border: 1px solid #8E8E8E;
		border-radius: 0;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

.ajax-newsletter-popup-left .newsletter-inputs input[type=checkbox]:checked + label::before {
	background-color: #C6B17F;
	-webkit-box-shadow: inset 0 0 0 1px #fff;
	box-shadow: inset 0 0 0 1px #fff;
}

.ajax-newsletter-popup-left .newsletter-inputs span {
	text-decoration: underline;
	cursor: pointer;
}

.ajax-newsletter-popup-right {
	display: none;
}

.ajax-newsletter-popup .result-newsletter {
	padding-top: 97px;
	position: relative;
}

	.ajax-newsletter-popup .result-newsletter::before {
		content: '';
		display: block;
		position: absolute;
		margin: 0 auto;
		width: 57px;
		height: 57px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Newsletter/popup-success-icon.svg);
		top: 0;
		right: 0;
		left: 0;
	}

	.ajax-newsletter-popup .result-newsletter h3 {
		color: #8E8E8E;
		font-size: clamp(16px, 1.5vw, 20px);
		line-height: clamp(26px, 2vw, 30px);
		text-align: center;
		font-weight: 400;
		margin-bottom: clamp(25px, 5vw, 65px);
	}

	.ajax-newsletter-popup .result-newsletter p {
		color: #8E8E8E;
		font-size: clamp(16px, 1.5vw, 20px);
		line-height: clamp(26px, 2vw, 30px);
		text-align: center;
		font-weight: 700;
		margin: 0;
	}
/*** END HOMEPAGE NEWSLETTER POPUP STYLES ***/
/*** NEWSLETTER ACTIVATION PAGE STYLES ***/
.newsletter-page {
	padding: 95px 0 70px;
	background-color: #1a1a1a;
}

	.newsletter-page .page-body {
		margin: 0 auto;
		padding: 0 10px;
		max-width: 1230px;
	}

	.newsletter-page .newsletter-page-result {
		text-align: center;
	}

		.newsletter-page .newsletter-page-result strong {
			color: #FFFFFF;
			font-size: 16px;
			line-height: 19px;
			text-align: center;
			font-weight: 400;
		}
/*** END NEWSLETTER ACTIVATION PAGE STYLES ***/
/*********** FOOTER **********/
/*** FOOTER NEWSLETTER STYLES ***/
.footer-newsletter-wrapper {
	background-color: #F3F3F3;
	padding: 34px 0 29px;
}

.footer-newsletter-container {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 10px;
}

.footer-newsletter-grid {
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.footer-newsletter-left {
	flex-basis: 100%;
	width: 100%;
}

	.footer-newsletter-left h3 {
		color: #e2b15c;
		font-size: clamp(19px, 2vw, 27px);
		line-height: clamp(22px, 2vw, 30px);
		text-align: center;
		margin-bottom: 5px;
		font-weight: 300;
	}

	.footer-newsletter-left p {
		color: #8E8E8E;
		font-size: clamp(13px, 1vw, 16px);
		line-height: clamp(15px, 1vw, 18px);
		text-align: center;
		font-weight: 400;
		margin: 0;
	}

.footer-newsletter-right {
	flex-basis: 100%;
	width: 100%;
	position: relative;
}

	.footer-newsletter-right .newsletter-result:not(.ajax-newsletter-popup-text-success) {
		position: absolute;
		color: red;
		font-size: 11px;
		line-height: 13px;
	}

	.footer-newsletter-right .newsletter .newsletter-email {
		display: flex;
		gap: 22px;
	}

		.footer-newsletter-right .newsletter .newsletter-email .newsletter-subscribe-text {
			background-color: #FFFFFF;
			border: 1px solid #8E8E8E;
			height: 49px;
			font-size: 14px;
			padding: 5px 16px;
			color: #B8B8B8;
		}

			.footer-newsletter-right .newsletter .newsletter-email .newsletter-subscribe-text::placeholder {
				font-size: 14px;
				color: #B8B8B8;
			}

		.footer-newsletter-right .newsletter .newsletter-email .newsletter-subscribe-button {
			height: 49px;
			border: 1px solid #e2b15c;
			padding: 10px;
			font-size: 16px;
			line-height: 19px;
			font-weight: 700;
			text-align: center;
			color: #e2b15c;
		}

			.footer-newsletter-right .newsletter .newsletter-email .newsletter-subscribe-button[disabled] {
				border: 1px solid #8E8E8E;
				color: #8E8E8E;
				cursor: not-allowed;
			}

	.footer-newsletter-right .newsletter .newsletter-inputs {
		margin-top: 13px;
	}

		.footer-newsletter-right .newsletter .newsletter-inputs label, .footer-newsletter-right .newsletter .newsletter-inputs span {
			color: #8E8E8E;
			font-size: 11px;
			line-height: 12px;
			font-weight: 400;
		}

		.footer-newsletter-right .newsletter .newsletter-inputs span {
			text-decoration: underline;
			cursor: pointer;
		}

		.footer-newsletter-right .newsletter .newsletter-inputs label {
			text-align: left;
			padding-left: 24px;
			position: relative;
		}

			.footer-newsletter-right .newsletter .newsletter-inputs label::before {
				content: "";
				display: block;
				position: absolute;
				width: 12px;
				height: 12px;
				background-color: #FFFFFF;
				border: 1px solid #8E8E8E;
				border-radius: 0;
				left: 0;
				top: 50%;
				-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
			}

		.footer-newsletter-right .newsletter .newsletter-inputs input[type=checkbox] {
			display: none;
		}

			.footer-newsletter-right .newsletter .newsletter-inputs input[type=checkbox]:checked + input + label::before, .footer-newsletter-right .newsletter .newsletter-inputs input[type=checkbox]:checked + label::before {
				background-color: #e2b15c;
				-webkit-box-shadow: inset 0 0 0 1px #fff;
				box-shadow: inset 0 0 0 1px #fff;
			}

		.footer-newsletter-right .newsletter .newsletter-inputs a {
			text-decoration: underline;
		}

	.footer-newsletter-right .result-newsletter {
		position: relative;
		padding-left: clamp(45px, 7vw, 69px);
	}

		.footer-newsletter-right .result-newsletter::before {
			content: '';
			display: block;
			width: clamp(24px, 4vw, 39px);
			height: clamp(24px, 4vw, 39px);
			background-position: center;
			background-size: contain;
			background-repeat: no-repeat;
			background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Newsletter/footer-success-icon.svg);
			position: absolute;
			left: 0;
			top: 50%;
			-moz-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			-o-transform: translateY(-50%);
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
		}

		.footer-newsletter-right .result-newsletter h3 {
			font-size: clamp(19px, 2.5vw, 27px);
			line-height: clamp(21px, 2.5vw, 29px);
			color: #e2b15c;
			font-weight: 300;
			margin-bottom: 10px;
			text-transform: uppercase;
		}

		.footer-newsletter-right .result-newsletter p {
			font-size: clamp(14px, 1vw, 16px);
			line-height: clamp(16px, 1vw, 19px);
			color: #8E8E8E;
			margin: 0;
			font-weight: 400;
		}

.newsletter-result-error {
	font-size: 14px;
	line-height: 16px;
	color: red;
	position: absolute;

}



.topic-synergasies-carousel {
	margin-bottom: 30px;
	background-color: #fff;
}

	.topic-synergasies-carousel .topic-synergasies-carousel-inner .owl-stage-outer .owl-stage {
		display: flex;
		align-items: center;
	}


.topic-synergasies-carousel .topic-synergasies-carousel-grid {
	padding-inline: 40px;
	padding-block: 15px;
}

.topic-synergasies-carousel .topic-synergasies-carousel-grid .owl-nav .owl-prev {
	left: -45px;
	background-image: url(../../Content/images/Pietris/Icons/arrow-prev-black.png);
	filter:invert(1);
}

.topic-synergasies-carousel .topic-synergasies-carousel-grid .owl-nav .owl-next {
	right: -45px;
	background-image: url(../../Content/images/Pietris/Icons/arrow-next-black.png);
	filter:invert(1);
}



/*** END FOOTER NEWSLETTER STYLES ***/
/*********** MEDIA **********/
@media (min-width:769px) {
	.flex-row-769 {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	/*** HOMEPAGE NEWSLETTER POPUP STYLES ***/
	.ajax-newsletter-popup-left {
		flex-basis: 52%;
	}

	.ajax-newsletter-popup-inner-grid {
		gap: clamp(15px, 2vw, 26px);
	}

	.ajax-newsletter-popup-right {
		display: block;
		position: relative;
		flex-basis: 47.87%;
	}

		.ajax-newsletter-popup-right::before {
			content: '';
			display: block;
			padding-top: 113.73%;
		}

		.ajax-newsletter-popup-right img {
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			max-width: 100%;
			max-height: 100%;
			margin: auto;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	/*** END HOMEPAGE NEWSLETTER POPUP STYLES ***/
	/*** FOOTER NEWSLETTER STYLES  ***/
	.footer-newsletter-grid {
		justify-content: space-between;
	}

	.footer-newsletter-left {
		flex-basis: auto;
		width: auto;
	}

	.footer-newsletter-right {
		flex-basis: 58.93%;
		width: auto;
	}

		.footer-newsletter-right.footer-newsletter-right-fullwidth {
			flex-basis: 100%;
			max-width: 820px;
			margin: 0 auto;
		}

	.footer-newsletter-left h3 {
		text-align: left;
	}

	.footer-newsletter-left p {
		text-align: left;
	}

	/*** END FOOTER NEWSLETTER STYLES  ***/
	/*********** ROOT CATEGORY PAGE **********/

	.root-category-page .category-description-wrapper {
		padding: 80px 0;
	}

	.root-category-page .sub-category-line-container > * {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}

	.root-category-page .sub-category-line:nth-of-type(odd) .sub-category-line-container > .sub-category-picture {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

	.sub-category-text-inner .title {
		margin: 0 0 25px;
	}

		.sub-category-text-inner .title h2 {
			padding: 0 0 17px;
			font-size: 18px;
			line-height: 20px;
		}


	.sub-category-description {
		margin: 0 0 25px;
	}

		.sub-category-description p {
			font-size: 15px;
			line-height: 20px;
		}

	.sub-button > a {
		font-size: 13px;
		padding: 14px 18px;
		min-width: 171px;
	}
}

@media (min-width:1025px) {
	/*********** ROOT CATEGORY PAGE **********/

	.root-category-page .category-description-wrapper {
		padding: 95px 0;
	}

	.sub-category-text-inner .title {
		margin: 0 0 31px;
	}

		.sub-category-text-inner .title h2 {
			padding: 0 0 20px;
			font-size: 20px;
			line-height: 24px;
		}


	.sub-category-description {
		margin: 0 0 31px;
	}

		.sub-category-description p {
			font-size: 16px;
			line-height: 25px;
		}

	.sub-button > a {
		font-size: 14px;
		padding: 15px 19px;
		min-width: 181px;
	}
}

@media (min-width:1281px) {
	/*********** ROOT CATEGORY PAGE **********/

	.root-category-page .category-description-wrapper {
		padding: 128px 0;
	}

	.sub-category-text-inner .title {
		margin: 0 0 41px;
	}

		.sub-category-text-inner .title h2 {
			padding: 0 0 27px;
			font-size: 23px;
			line-height: 28px;
		}


	.sub-category-description {
		margin: 0 0 41px;
	}

		.sub-category-description p {
			font-size: 18px;
			line-height: 28px;
		}

	.sub-button > a {
		font-size: 16px;
		padding: 16px 19px;
		min-width: 201px;
	}
}

@media (max-width:1366px) {

	.slider-text-inner-wrapper {
		min-height: 285px;
	}

	.slider-text-wrapper {
		min-height: 285px;
	}

	.home-page .topic-block p {
		margin: 0;
		font-size: 13px;
		line-height: 20px;
	}

	.homepage-text-wrapper a.homepage-txt-btn {
		margin: 25px auto 0;
	}

	.homepage-text-wrapper {
		top: -235px;
	}
	/*********** CATEGORY PAGE **********/
	.product-box-hover-wrap ul li {
		font-size: 12px;
		line-height: 21px;
	}

	.product-box-products ul li {
		font-size: 12px;
		line-height: 21px;
	}
}

@media (max-width:1280px) {


	/*********** NEWS PAGE **********/
	.news-list-page .news-title {
		font-size: 13px;
		line-height: 24px;
	}


	/*********** STORES PAGE **********/
	.store-item-title h3 {
		font-size: 15px;
		line-height: 21px;
	}

	.store-item-desc p {
		font-size: 13px;
		line-height: 21px;
	}

	.store-item-desc {
		margin: 0 0 20px;
		min-height: 85px;
		max-height: 85px;
		overflow: hidden;
	}
}

@media (max-width:1190px) {
	/*********** PRODUCT PAGE **********/
	.variant-overview .variant-name {
		font-size: 21px;
		line-height: 30px;
	}

	.variant-overview .variant-description {
		line-height: 23px;
		font-size: 14px;
	}
}

@media (min-width:768px) and (max-width:1024px) {
	/*********** HOMEPAGE **********/
	.home-page-category-grid .item-box {
		margin: 0 0.5%;
		clear: none;
		width: 32%;
	}
}
/*Media Both Sites*/
@media (max-width:1024px) {

	.topic-synergasies-carousel .topic-synergasies-carousel-grid {
			padding-inline: 40px;
	}

		.topic-synergasies-carousel .topic-synergasies-carousel-grid .owl-nav .owl-prev {
			left: -4px;
			background-image: url(../../Content/images/Pietris/Icons/arrow-prev-black.png);
			filter: invert(0);
		}

		.topic-synergasies-carousel .topic-synergasies-carousel-grid .owl-nav .owl-next {
			right: -4px;
			background-image: url(../../Content/images/Pietris/Icons/arrow-next-black.png);
			filter: invert(0);
		}


	/*********** HOMEPAGE **********/
	.homepage-text-wrapper {
		background-color: #1A1A1A;
		padding: 40px 15px;
		position: static;
	}

	.slider-text-wrapper {
		display: none;
	}

	.homepage-store-name a {
		font-size: 12px;
	}

	.news-list-homepage .news-item {
		max-width: 390px;
		margin: 0 auto 35px;
	}
	/*********** HEADER **********/
	.header-right {
		display: none;
	}

	.header-menu > ul {
		display: none !important;
		font-size: 0;
	}

	.top-menu .sublist li a {
		display: block;
		padding: 10px 0;
		font-size: 15px;
		text-align: left;
	}

	.sublist-toggle {
		height: 48px;
	}

	.header-menu > ul {
		display: none;
		font-size: 0;
	}

	.header-selectors-right {
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.header .logo-wrapper {
		left: 10px;
		margin: 0;
	}

	.header .header-logo a {
		padding: 0;
		display: block;
	}

	.header-logo a img {
		opacity: 1;
		max-width: 75px;
		display: block;
		height: auto;
		max-height: 50px;
	}

	body {
		-moz-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		-webkit-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}

	.header .header-menu > ul.mobile {
		display: block !important;
		position: absolute;
		right: -160px;
		margin: 10px 0 0;
		-moz-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		-webkit-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}

	.header .header-menu > .top-menu.mobile.open {
		right: 0;
	}

	.header .header-menu > ul.mobile {
		display: none !important;
	}

	body.open-menu {
		margin-left: -330px;
		margin-right: 330px;
		overflow: hidden;
	}


	.menu-toggle {
		background: none;
		padding: 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.menu-toggle-desktop {
		display: none;
	}

	.header .header-menu {
		position: relative;
		right: 0;
		width: auto;
		z-index: 1026;
		height: 100%;
		background-color: transparent;
	}


	.mobile-menu-wrapper {
		display: block;
		position: fixed;
		right: -330px;
		top: 0;
		height: 100%;
		-webkit-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
		padding: 55px 0;
		z-index: 9999999999999;
		width: 330px;
		height: 100%;
		background-color: #ededed;
		overflow: auto;
	}

		.mobile-menu-wrapper.open {
			right: 0;
		}

	.close-menu {
		background-color: #e2b15c;
		width: 30px;
		height: 30px;
		font-size: 30px;
		line-height: 30px;
		cursor: pointer;
		background-position: center;
		background-repeat: no-repeat;
		background-size: 19px;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/close-white-icon.svg);
		border-radius: 3px;
		position: absolute;
		right: 20px;
		top: 20px;
		-moz-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;
	}

		.close-menu:hover {
			background-color: #cccccc;
		}

	.open-menu .header-global.fixed {
		right: 330px;
		left: -330px;
		-moz-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		-webkit-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}

	.menu-toggle-burger {
		min-width: 18px;
	}

	.top-menu-mobile {
		display: block;
	}

		.top-menu-mobile > li {
			position: relative;
			margin: 10px;
			background-color: #fff;
			border-bottom: 2px solid #e2b15c;
		}

			.top-menu-mobile > li > a {
				text-align: left;
				padding: 15px 20px;
				min-height: unset;
				text-transform: uppercase;
				font-family: "Roboto",sans-serif;
				font-weight: 700;
				color: #666;
				font-size: 15px;
				display: block;
				text-align: left;
			}

	.header-left .header-stores {
		display: none;
	}

	.header {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0 15px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		background-color: #1A1A1A;
	}

	.header-left {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}

	.menu-toggle-burger {
		min-width: 18px;
	}

	.top-menu-mobile {
		display: block;
	}

		.top-menu-mobile > li {
			position: relative;
			margin: 10px;
			background-color: #fff;
			border-bottom: 2px solid #e2b15c;
		}

			.top-menu-mobile > li > a {
				text-align: left;
				padding: 15px 20px;
				min-height: unset;
				text-transform: uppercase;
				font-family: "Roboto",sans-serif;
				font-weight: 700;
				color: #666;
				font-size: 15px;
				display: block;
				text-align: left;
			}

	.menu-toggle-burger {
		width: 30px;
		height: 26px;
		margin: 0 0 0 15px;
		display: block;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(/Themes/PietrisBakeryNew/Content/images/Pietris/Icons/burger-icon.svg);
	}

	.menu-toggle-text {
		font-size: 0;
	}

	.small-header-menu {
		border-right: 0;
		flex-basis: auto;
	}

	.sublist .sublist li {
		background-color: transparent;
		border-bottom: 2px solid #e2b15c;
		padding: 0 10px;
	}

	.header-stores-list {
		margin: 0 0 17px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0 15px;
	}

		.header-stores-list li:nth-child(2) a {
			min-width: unset;
			width: 100%;
			margin: 28px 0 0;
		}

	.header-stores ul li:first-child {
		margin: 0;
	}

	.header-stores-list li:first-child a {
		width: 100%;
		max-width: unset;
	}

	.header-stores ul li:nth-child(2) a:after {
		display: none;
	}

	.header-stores-list li:first-child a:hover {
		color: #FFF;
		background-color: #e2b15c;
	}



	/*********** CATEGORY PAGE **********/
	.category-banner img {
		min-height: 235px;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.product-box-hover-wrap ul li {
		font-size: 10px;
		line-height: 19px;
	}

	.product-box-products ul li {
		font-size: 10px;
		line-height: 19px;
	}

	.product-hover-box-blur {
		-webkit-filter: blur(0);
		filter: blur(0);
		-webkit-box-shadow: unset;
		box-shadow: unset;
	}

	.product-box-products {
		display: none;
	}

	.category-page .item-box .product-box-hover-wrapper {
		opacity: 1;
		z-index: 1;
	}
	/*********** PRODUCT PAGE **********/
	.image-item-title-inner-wrapper {
		padding: 18px 0 16px;
	}

	.image-item-title-wrapper h4 {
		font-size: 15px;
		line-height: 25px;
	}

	.variant-overview .variant-name {
		font-size: 17px;
		line-height: 27px;
		min-height: 76px;
	}

	.variant-overview .variant-description {
		font-size: 13px;
	}
	/*********** FOOTER **********/
	.footer .information .footer-list {
		padding: 0;
	}

	.footer .footer-list li {
		font-size: 12px;
	}
}

@media (max-width:768px) {

	/*********** HOMEPAGE **********/
	.homepage-text-wrapper {
		background-color: #1A1A1A;
		padding: 40px 15px;
		position: static;
	}


	.slider-text-wrapper {
		display: none;
	}

/*	.slide-homepage img {
		min-height: 350px;
		-o-object-fit: cover;
		object-fit: cover;
	}
*/
	.homepage-slider-title {
		padding: 16px 0 12px;
	}

		.homepage-slider-title h2 {
			font-size: 20px;
			line-height: 29px;
		}

	.owl-nav > * {
		width: 41px;
	}

	.owl-carousel .owl-nav .owl-prev {
		left: 5px;
	}

	.owl-carousel .owl-nav .owl-next {
		right: 5px;
	}

	.slide-description {
		max-width: 220px;
	}

	.homepage-stores-flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.flex-store-homepage {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		margin: 0 0 25px;
	}

	.homepage-stores-blur {
		-webkit-box-shadow: inset 0 0 0 575px rgba(0,0,0,.63);
		box-shadow: inset 0 0 0 575px rgba(0,0,0,.63);
	}
	/*********** NEWS PAGE **********/
	.news-item-page .page-title {
		margin: 0 0 45px;
		padding: 0 15px;
	}

		.news-item-page .page-title h1 {
			font-size: 16px;
			line-height: 23px;
		}

	.news-item-page .news-body p {
		line-height: 25px;
		font-size: 15px;
	}

	.news-item-page {
		padding: 50px 0 40px;
	}

	.news-list-page .news-items .news-item {
		-ms-flex-preferred-size: 48%;
		flex-basis: 48%;
		margin: 0 2% 53px 0;
	}

		.news-list-page .news-items .news-item:nth-child(3n) {
			margin: 0 2% 53px 0;
		}

	.news-list-page .news-title {
		font-size: 13px;
		line-height: 20px;
	}
	/*********** TOPIC PAGES **********/
	.topic-page-with-gallery .homepage-gallery-container {
		padding: 20px 0 65px;
	}
	/*********** CATEGORY PAGES **********/
	.product-box-hover-wrap ul {
		padding: 10px 25px 10px
	}

		.product-box-hover-wrap ul li {
			font-size: 9px;
			line-height: 16px;
		}
	/*********** STORES PAGE **********/
	.store-item {
		margin: 0 auto 30px;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 640px;
	}

		.store-item:nth-child(2n) {
			margin: 0 auto 30px;
		}

		.store-item:nth-last-child(2) {
			margin: 0 auto 30px;
		}

	/*********** PRODUCT PAGES **********/
	.product-variant-line {
		width: 48%;
		padding: 46px 5px 35px 17px;
	}

		.product-variant-line:nth-child(3n) {
			margin: 0 2% 38px 0;
		}

	.variant-overview .variant-description {
		font-size: 13px;
		text-align: left;
	}

	.variant-overview .variant-name {
		min-height: 66px;
		font-size: 14px;
		line-height: 30px;
		text-align: left;
	}

	.product-title-wrapper h3 {
		font-size: 20px;
		line-height: 30px;
	}
	/*********** FOOTER **********/
	.footer-upper {
		padding: 35px 0 50px;
	}

	.footer-logo {
		margin: 0 0 20px;
		text-align: center;
	}


	.footer-upper .footer-container, .footer-left {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer .information .footer-list {
		padding: 0;
		text-align: center;
		margin: 0 0 25px;
	}

	.footer-block {
		width: 100%;
		max-width: 380px;
	}

	.follow-us .social ul {
		margin: 0 0 25px;
	}

	.footer-block .title {
		background: #e2b15c url(../images/toggle-white.png) right center no-repeat;
	}

	.footer-block .list {
		border: 2px solid #e2b15c;
		border-top: 0;
		margin: -1px 0 0;
	}

	.footer-block .title strong {
		font-size: 14px;
		font-weight: 300;
		line-height: 21px;
	}

	.footer-store-wrap a {
		padding: 14px 0 10px;
	}
}

@media (max-width:767px) {
	/*********** HOMEPAGE **********/
	.home-page-category-grid .item-box {
		width: 100%;
		max-width: 400px;
		margin: 0 auto 45px;
		clear: none;
		float: none;
	}

	.home-page-category-grid .category-item-title {
		margin: 17px 0 0;
	}
	/*********** CATEGORY PAGE **********/
	.category-page .item-box {
		width: 100%;
	}

	.product-box-products-inner {
		padding: 21px 0 20px;
	}

	.product-hover-box-blur {
		height: 135%;
	}
}

@media (max-width:650px) {
	/*********** PRODUCT PAGE **********/
	.product-banner img {
		min-height: 235px;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.product-variant-line {
		width: 100%;
		max-width: 360px;
		padding: 52px 25px 45px 30px;
		margin: 0 auto 38px;
	}

		.product-variant-line:nth-child(3n) {
			margin: 0 auto 38px;
		}
	/*********** TOPIC PAGE **********/
	.topic-page p {
		text-align: left !important;
	}
}

@media screen and (min-width:1025px) {
	/*********** HEADER **********/
	/***************************/
	/*Header Menu*/
	.header-menu {
		width: 100%;
		margin: 0;
		border: 0;
		padding: 0;
		background-color: #e2b15c;
	}

		.header-menu > ul > li {
			margin: 0;
			border: 0;
			padding: 0 25px;
		}

			.header-menu > ul > li > a, .header-menu > ul > li > span {
				font-size: 12px;
				line-height: 14px;
				padding: 11px 0 9px;
				color: #000000;
				text-transform: uppercase;
				font-weight: 700;
				letter-spacing: 3.5px;
			}

				.header-menu > ul > li > a:hover {
					color: #FFF;
				}

		.header-menu .sublist {
			display: none;
			position: absolute;
			width: 200px;
			-moz-box-shadow: unset;
			-webkit-box-shadow: unset;
			box-shadow: unset;
			background-color: #e2b15c;
			padding: 10px 20px;
			text-align: left;
		}

			.header-menu .sublist li {
				margin: 0;
			}

				.header-menu .sublist li a:before {
					display: none;
				}

				.header-menu .sublist li a {
					padding: 9px 0;
					font-size: 14px;
					color: #000000;
					border-bottom: 1px solid rgba(0, 0, 0, .09);
					font-weight: 300;
				}

				.header-menu .sublist li:hover > a {
					background-color: transparent;
					color: #FFF;
				}

	.menu-responsive-wrapper {
		display: none;
	}
	/*End Header Menu*/
	/***************************/
}

@media screen and (min-width:769px) {
	/*********** FOOTER **********/
	.footer-block {
		width: 47%;
	}

		.footer-block .title {
			display: none;
		}

		.footer-block .list {
			margin: 0;
			padding: 20px 0 0;
		}

			.footer-block .list li {
				padding: 0;
				margin: 0 0 20px;
			}

			.footer-block .list a {
				display: inline;
				padding: 0;
				text-transform: uppercase;
				color: #e2b15c;
				font-size: 12px;
				letter-spacing: 5px;
				font-weight: 400;
			}

				.footer-block .list a:hover {
					color: #ffffff;
				}

	.follow-us {
		padding: 20px 0 0;
	}
}

@media (min-width: 481px) {

	/*********** FOOTER  **********/
	/*** FOOTER NEWSLETTER STYLES ***/
	.footer-newsletter-right .newsletter .newsletter-email .newsletter-subscribe-text {
		flex-basis: 64.76%;
	}

	.footer-newsletter-right .newsletter .newsletter-email .newsletter-subscribe-button {
		flex-basis: 31.63%;
	}
	/*** END FOOTER NEWSLETTER STYLES ***/
	/*********** END FOOTER  **********/
}

@media (max-width:480px) {
	/*** FOOTER NEWSLETTER STYLES ***/
	.footer-newsletter-right .newsletter .newsletter-email {
		flex-direction: column;
	}
	/*** END FOOTER NEWSLETTER STYLES ***/
	/*********** STORES PAGE **********/
	.store-item-text-inner {
		padding: 20px 10px 20px 15px;
	}

	.store-item-title h3 {
		font-size: 13px;
		line-height: 17px;
	}

	.store-item-desc p {
		font-size: 11px;
		line-height: 21px;
	}

	.store-item-anchor .store-item-btn {
		font-size: 13px;
		max-width: 170px;
		padding: 9px 0;
	}

	.topic-page p {
		font-size: 13px;
		line-height: 20px;
	}

	/*********** NEWS PAGE **********/
	.news-list-page .news-items .news-item {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		margin: 0 auto 45px;
		max-width: 390px;
	}

		.news-list-page .news-items .news-item:nth-child(3n) {
			margin: 0 auto 45px;
		}
	/*********** PRODUCT PAGE **********/
	.image-item-title-wrapper {
		position: static;
	}
	/*********** CONTACT PAGE **********/
	.contact-page .page-body {
		padding: 50px 0 65px;
	}

	.contact-text p {
		font-size: 12px;
		line-height: 21px;
	}

	.contact-page .page-title {
		margin: 0 0 40px;
	}

	.page-title h1 {
		font-size: 20px;
		line-height: 27px;
	}
}

@media (max-width:380px) {
	/*********** HOMEPAGE **********/
	.homepage-store-name a {
		font-size: 10px;
	}
}
