:root {
  --small-text: clamp(1.1rem, 0.8rem + 1vw ,1.3rem);
  --normal-text: clamp(1.1rem, 1rem + 1vw, 1.6rem);
  --large-text: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --dark-green: #0f410e;
}

@font-face {
    font-family: bernard;
	src: url('bernard.woff2') format('woff2'),
         url('bernardwoff') format('woff');
	font-display: fallback;
}

@font-face {
	font-family: papy;
	src: url('papyrus.woff') format('woff');
  font-display: fallback; 
}

.small-text {
	font-family: papy;
	font-size: var(--small-text);
	text-align: justify;
}
.normal-text {
	font-family: papy;
	font-size: var(--normal-text);
	text-align: justify;
}
.large-text {
	font-family: papy;
	font-size: var(--large-text);
	text-align: justify;
}

.width-90 {
	width: clamp(340px, 90%, 100%);
}

div:focus {
	outline: none;
}

img {
	border: 0;
	max-width: 100%;
}

div {
	scrollbar-color: rgba(6, 25,5, 0.3) rgba(163, 208, 74, 0.3);
  	scrollbar-width: thin;
}

p:first-child {
	margin-top: 0;
}

p:not(:first-child) {
  margin-top: 0.5em;
}

.full-width-90 {
	width: 90%;
}
@media (max-width: 400px) { 
	.full-width-90 {
		width: 100%;
	}	
}

.text, .text a:link, .text a:visited, .text a:hover, .text a:active{
	font-family: papy;
	font-size: var(--small-text);
	margin: clamp(0.1em, -30px + 10vw, 1em);
	color: #0f410e;	
}

.two-columned {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--min-width), 1fr));
}

.pointer {
	cursor: pointer;
}

.thin-border {
	border:1px solid #003300;
}

.thick-border {
	border:5px solid #003300;
	border-radius: 5px;
}

.shadow {
	box-shadow: 3px 3px 3px #888888;
}

.transition-5 {
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.strike {
	text-decoration: line-through; 
}

.full-width {
	width: 100%;
}

.bold {
	font-weight: bold;
}

.colored-block {
	overflow: hidden; 
	margin: 1.6rem;
}

 @media (max-width: 400px) {
	.colored-block {
		margin: 0;
	}
 } 

.green-block {
	background-color: rgba(163, 208, 74, 0.5);
}

.yellow-block {
	background-color: rgba(255, 191, 0, 0.5);
}

.blue-block {
	background-color: rgba(39, 110, 110, 0.5);
}

.purple-block {
	background-color: rgba(105, 13, 85, 0.5);
}
 

A:link, A:visited, A:active  { color: #0f410e; }

.card A:link { color: #e9f2ce; font-size: 12px;}
.card A:visited { color: #e9f2ce; font-size: 12px;}
.card A:active { color: #e9f2ce; font-size: 12px; }

.bigger A:link { color: #0f410e; font-size: 18px;}
.bigger A:visited { color: #0f410e; font-size: 18px;}
.bigger A:active { color: #0f410e; font-size: 18px; }

.red A:link { color: #ff0000; font-size: 12px;}
.red A:visited { color: #ff0000; font-size: 12px;}
.red A:active { color: #ff0000; font-size: 12px;}

.bold a:link {  font-size: 12px; font-weight: bold}
.bold a:visited {  font-size: 12px; font-weight: bold}
.bold a:active {  font-size: 12px; font-weight: bold}

h1 {
	font-family: bernard;
	font-size: 30px;
	font-weight: normal;
	text-align: center;
}

h1.main {
	text-decoration: none; 
	font-weight: normal; 
	font-size: 22px;
}
	
h2 {
	font-family: arial;
	font-size: 18px;
	color : #0f410e;
	font-weight: bold;
	text-align: center;
}

h3 {
	font-family: arial;
	font-size: 16px;
	color : #0f410e;
}


BODY {
	background-color: white;
	font-family: arial;
	font-size: 12px;
	color : #0f410e;
	margin: 0px;
	height: 100%;	 
}

.page-container {
	min-height: 100%;
	margin-top: 0px;
}
	
.blur-outer {
	position:relative; 
	max-width: 1500px; 
	margin:0 auto; 
	background-color: rgba(233, 242, 206, 0.5);
	padding-bottom: 20px;
}

.blur-inner {
	position:relative; 
	max-width: 1380px; 
	margin:0 auto; 
	padding-bottom: 20px; 
	background-color: rgba(233, 242, 206, 0.5);
}

@media (min-width: 1200px) {
	.page-container {
		background: url(images/mainBG_4.jpg);
		background-attachment: fixed;
  		background-repeat: repeat;
  		height: 100%; 
	}
}

@media (min-width: 1921px) {
	.page-container {
		background-attachment: fixed;
  		background-repeat: no-repeat;
  		background-size: cover;
  		height: 100%;
	}
}


.kiegTable {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: papy;
	font-size: 16px;
	border-spacing: 5px;
    border-collapse: separate;
    margin: 0 10% 3% 10%;
    width: 90%;
}

.kiegTable div:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.kiegTable div:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
}

.kiegTable div:nth-child(3) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.kiegTable div:nth-child(4) {
  -ms-grid-column: 4;
  -ms-grid-row: 1;
}
.kiegTable div:nth-child(4) {
  -ms-grid-column: 4;
  -ms-grid-row: 1;
}
.kiegTable div:nth-child(4) {
  -ms-grid-column: 4;
  -ms-grid-row: 1;
}
.kiegTable div:nth-child(5) {
  -ms-grid-column: 1;
  -ms-grid-row: 2;
}
.kiegTable div:nth-child(6) {
  -ms-grid-column: 2;
  -ms-grid-row: 2;
}
.kiegTable div:nth-child(7) {
  -ms-grid-column: 3;
  -ms-grid-row: 2;
}
.kiegTable div:nth-child(8) {
  -ms-grid-column: 4;
  -ms-grid-row: 2;
}

.kiegTable img {
	margin-left: auto; 
	margin-right: auto;
	margin-bottom: 5px;	
	margin-top: 10px;
}

.kiegTable a {
	text-decoration: none;
	font-size: 16px; 
}


div.alsolap {
	background-color: rgba(0, 0, 0, 0.05);
	border: 1px solid #0f410e;
	border-radius: 2px;
	font-size: 12px; 
	cellspacing: 1;
	cursor:pointer;	
}

div.alsolap img{
	border:1px solid #003300;
	margin-right: 15px;
	margin-left: 5px;
	float: right; 
}

div.alsolap div{
	margin: 10px;
}

table.nextAvailableTimes {
	font-family: arial;
	font-size: 12px;
	font-weight: normal;
	border-collapse: collapse;
	border-bottom-style: solid;
	border: thick;
	width: 300px;
}

table.nextAvailableTimes2 {
	border-collapse: collapse;
	border-bottom-style: solid;
	border: thick;
}

.slide_caption {
	display:block;
	color:#fff;
	font-size:12px;
	font-weight: bold;
	line-height:30px;
	text-align:center;
	border-radius:4px;
	background:#eb5100;
	background-color:rgba(235, 81, 0, 0.6)
}


div.product-picture {
	border: 5px solid #005500; 
	border-radius: 5px; 
	box-shadow: 3px 3px 3px #888888; 
}

hr {
	color: #c0cd59;  
}

.center {
	margin-left: auto; 
	margin-right: auto;
	text-align: center;	
}

.left {
	text-align: left;	
}
.right {
	text-align: right;	
}
.justify  {
	text-align: justify;	
}

a.pager {
	text-decoration: none; 
	font-size: 10px; 
	color: #b61c1a;	
}

.warning {
	color: red;
}
.warning a:link { color: red;}
.warning a:visited { color: red;}
.warning a:active { color: red;}

div.plushFilter {
	background-color: white;
	height: 50px;
	width: 48px;
	line-height: 55px;
	vertical-align: middle;

	font-size: 1.3em;
	font-weight: bold;
	border-radius: 10px; 
	box-shadow: 3px 3px 3px #888888;
	float: left;
	margin-right: 10px;
	display:table-cell; 
	text-align:center;
	
	cursor:pointer;
	border:1px solid #ffffff;
}

div.plushFilter:hover {
	border:1px solid #003300;
}

div.plushFilter img {
	height: 40px;
	vertical-align: middle;
	align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
}

/* Filters */
.flowerFilterContainer h2 {
	font-family: bernard;
	font-size: 18px;
	font-weight: normal;
}

.flowerFilterContainer img{
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 10px; 
	border:1px solid #ffffff;
	box-shadow: 3px 3px 3px #888888;
	height: 35px;
	padding: 7px; 
	align: center; 
	margin: 1px;
	transition: 0.3s; 
}

.flowerFilterContainer img:hover {
	border:1px solid #003300;
}

.pictureFilterContainer a {
	font-family: bernard; 
	text-decoration: none; 
	font-size: 1.8rem;
}

.pictureFilterContainer {
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
	padding: 0 10px;
}

.pictureFilterContainer h2 {
	font-family: bernard;
	font-size: 18px;
	font-weight: normal;
}

.pictureFilterContainer div {
	height: 38px;
	width: 38px;	
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 10px; 
	border:1px solid #ffffff;
	box-shadow: 3px 3px 3px #888888;
	padding: 5px; 
	transition: 0.3s; 
}

.pictureFilterContainer div:hover {
	border: 1px solid #003300;
}

.pictureFilterContainer img {
	height: 35px;
	align: center; 
	margin: 1px;
}

.colorFilterContainer {
	padding-top: 10px;
	width: 85%;
	display: none;
}

.colorFilterContainer img {
	box-sizing: border-box;
	height: 25px;
	align: center; 
	margin: 7px auto;
}


/* egyedi title megjelenites hoverre */
.custom-title {
	position: relative;
}

.custom-title:hover:after{
  background: rgba(86,127,45, 0.9);
  border-radius: 5px;
  bottom: -25px;
  color: #fff;
  content: attr(custom-title);
  left: 0;
  padding: 5px 15px;
  position: absolute;
  z-index: 2;
  font-family: bernard;
  font-size: 16px;
}

.floorBackground {
	background-image: url('images/productTableBack.jpg');
	background-size: 50%;
}

@media (max-width: 600px) { 
	.floorBackground {
		background-size: 80%;
	}	
}


.big-picture-menu {
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
	padding: 1em 3em 0;
}

.big-picture-menu-item {
	position: relative; 
	width: 285px; 
	padding-top: calc(184 / 255 * 100% - 2em); /* a hatterkep eredeti aranya minusz a ketoldali margin */
	margin: 0 1em 2em;
	background-size: cover;
}

.big-picture-menu-item h2 {
	box-sizing: border-box;
	padding: 0 1em 0;
	margin: 0 auto 0; 
	position: absolute;               
	top: 50%;                         
	-webkit-transform: translate(0, -50%);                         
	    -ms-transform: translate(0, -50%);                         
	        transform: translate(0, -50%); 
	text-align: center;  	
	width: 100%;
	text-shadow: 2px 2px #000000;
	font-weight: bold;
	font-family: papy;
	color: #ffffff; 
	font-size: 2.2rem;;
	-webkit-transition: .2s;;
	-o-transition: .2s;;
	transition: .2s;  	
}

.big-picture-menu-item:hover h2 {
	-webkit-transform: translate(0, -50%) scale(1.15);
	    -ms-transform: translate(0, -50%) scale(1.15);
	        transform: translate(0, -50%) scale(1.15);
}
.big-picture-menu-item:hover {
	opacity: 0.9;
}


div.kiskepes-menu{
	width: 500px;
}

div.kiskepes-menu div.item { 
	width: 100px; 
	height: 66px; 
	position: relative; 
	float: left;
	margin: 5px;
}

div.kiskepes-menu div.item div.title{
	background-color: rgba(255, 255, 255, 0.5); 
	position: absolute; 
	bottom: 0; 
	width: 100%;
	font-size: 1.5em;
}

.clear {
	clear: both;
}

.transparent {
	background-color: rgba(255, 255, 255, 0.5);
}

.seasonal-banner {
	width: 960px; 
	height: 173px; 
	position: relative;
	margin-top: 0px;
	margin-bottom: 0px;
}
.seasonal-banner div {
	float: left;
	width: 50%;
	height: 100%;
	vertical-align: middle;
	color: #E9F2CE;
	font-size: 4.0em;
	font-family: "bernard", "impact";
	text-shadow: 1px 1px #222222;
	text-align:center;
	line-height: 173px;
}

.productTableBlock {
	width: 960px;  
}

.productTableBlock h1 {
	font-family: papy; 
	color: #8a4668; 
	font-weight: normal; 
	font-size: 25px; 
	margin-top: 0px; 
	padding-top: 10px;	
}

.main-block-1 {
	background-color: rgba(105, 13, 85, 0.5);
	background-size: cover;
	width: 100%;
	height: 400px;
}

.main-block-2 {
	background-color: rgba(39,110, 110, 0.5);
	background-size: cover;
	width: 100%;
	height: 400px;
}

.main-block-3 {
	background-color: rgba(255, 191, 0, 0.5);
	background-size: cover;
	width: 100%;
	height: 400px;
}

.main-block-4 {
	background-color: rgba(163, 208, 74, 0.5);
	background-size: cover;
	width: 100%;
	height: 400px;
}
.main-block-4 p {
	padding-left: 30px; 
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0.3em;	
}

.main-block-5 {
	background-image: url('images/main_block_background_5.png');
	width: 100%;
	height: 458px;
}

.main-block-text-box p {
	margin-top: 0px;
}

.main-block-text-box {
	width: 90%; 
	height: 90%; 
	background-color: rgba(255,255,255,0.7); 
	text-align: left;
}

.center-vertical {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wedding-banner {
	width: 920px; 
	height: 151px; 
}

.wedding-banner div {
	float: left;
	width: 50%;
	height: 100%;
	vertical-align: middle;
	color: #E9F2CE;
	font-size: 3.0em;
	font-family: "bernard", "impact";
	text-shadow: 1px 1px #666666;
	text-align:center;
	line-height: 151px;
}

.rendeles-pottyok {
	margin-bottom: 0px;
} 
.rendeles-pottyok h2 {
	font-size: 4.5em;
	margin-bottom: 0px;
	font-family: "bernard", "impact";
	font-weight: normal;
	line-height: normal;
	margin-top: 0px;
	color: #3bab71;
}

.rendeles-pottyok img {
	width: 100px;
	padding: 40px;
	padding-top: 20px;
	padding-bottom: 0px;
}

.rendeles-pottyok p {
	color: #a3d04a;
	margin-left: 10px;
	margin-bottom: 0px;
}

.bernard-text {
	font-family: bernard; 
	font-size: 2.3em;
}

.bernard-text a {
	font-family: inherit !important;
	color: inherit !important;
	font-size: inherit !important;
	text-decoration: none;
}

.papyrus-text {
	font-family: papy; 
	font-size: 1.5em;
	color: #000000;
}

.papyrus-text a {
	font-family: inherit !important;
	color: inherit !important;
	font-size: inherit !important;
}

.papyrus-text-no-underline {
	font-family: papy; 
	font-size: 1.5em;
	color: #000000;
}

.papyrus-text-no-underline a {
	font-family: inherit !important;
	color: inherit !important;
	font-size: inherit !important;
	text-decoration: none;
}


h1.papyrus {
	font-family: bernard; 
	color: #7d953d; 
	font-weight: normal; 
	font-size: clamp(1rem, 0.4rem + 4vw, 3rem);
	margin-bottom: 0px;
	margin-top: 0.3em;
	letter-spacing: 0.1em;
}

#main-link-table {
	width: 90%; 
	padding: 20px;
}

#main-link-table td {
	padding: 10px;
}

#main-link-table td a{
	text-decoration: none;
}

.swiper-slide:hover .swiper-slide-title, slide:active .swiper-slide-title{
	background-color: rgba(255,255,255,1);
}

.swiper-header {
	background-color: rgba(163, 208, 74, 0.5); 
	width: 100%; 
	text-align: center; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	font-size: clamp(2rem, 2rem + 1vw, 3rem);
	font-family: bernard, impact;
	color: #ffffff;
}

.swiper-header a {
	font-size: 1em;
	text-decoration: none;
	font-family: bernard, impact;
	color: #ffffff;
	transition: .5s ease;
}

.swiper-header a:hover {
	letter-spacing: 10px;
}

.swiper {
	width: 100%;
}

.swiper-slide:hover .swiper-slide-title {
	transform: translate(0, -5px);
}

.swiper-slide {
	text-align: center;
	background: #fff;
	/* Center slide text vertically */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide, .swiper-slide a {
	font-size: 18px;
	text-decoration: none;
}

.swiper-slide .sale{
	position: absolute; 
	left: 0; 
	top: 0; 
	height: 80px; 
}

.swiper-slide .new{
	position: absolute; 
	right: 0; 
	top: 0; 
	height: 80px; 
}


.swiper-slide-title {
	font-family: papy;
	position: absolute;
	bottom: 0px; 
	left: 0px; 
	width: 100%; 
	background-color: rgba(255,255,255,0.5);
	transition: .5s ease;
}

.swiper-slide-title-desc {
	max-height: 1.5em; 
	overflow: hidden; 
	white-space: nowrap; 
	text-overflow: ellipsis; 
	margin-left: 5px; 
	margin-right: 5px;
}

.swiper-end-slide {
	width: 200px;
	display: flex;
	align-items: center;
	height: 100%;
	line-height: 32px;
}

.swiper-end-slide, .swiper-end-slide a {
	font-size: 23px;
	font-family: bernard; 
	color: white;
	text-decoration: none;
}

.swiper-button-next.swiper-button-white-filled {
	background-image: url('/images/icons/next.svg') !important;
	opacity: 0.9;
}

.swiper-button-prev.swiper-button-white-filled {
	background-image: url('/images/icons/next.svg') !important;
	transform: rotate(180deg);
	opacity: 0.9;
}

.swiper-button-next::after,.swiper-button-prev::after {
    content: "" !important; 
 }

.first-swiper {
	height: 100%; 
	color: #f9fde5;
}

.first-swiper a {
	color: inherit;
	font-size: inherit;
}

.first-swiper .swiper-pagination-bullet-active {
	background: #f9fde5; 
	height: 20px;
	width: 20px;
}

.first-swiper .swiper-pagination-bullet {
	height: 20px;
	width: 20px;
}

.first-swiper .swiper-slide > div {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%,-50%);	
}

 
.first-swiper-content .big-text 
{
	font-size: clamp(3rem, 0.9rem + 9vw, 9rem); 
	line-height: clamp(3rem, 0.9rem + 10vw, 10rem); 
}

.first-swiper-buttons {
	position: absolute; 
	bottom: 0; 
	right: 1em;
	width: 100%; 
	font-size: clamp(1rem, 0.4rem + 2.5vw, 2rem); 
	height: 2em; 
	text-align: right;
}

.first-swiper-buttons a {
	border:2px solid #f9fde5; 
	padding: 0.5em; 
	box-sizing: border-box; 
	color: #f9fde5;
	cursor: pointer;
}

.first-swiper-buttons a:hover {
	background-color: #9cbd4c;
	border:2px solid #9cbd4c;
}

.first-swiper-content > div {
        height: 100%; 
        width: 100%; 
        margin: auto; 
        padding: 60px 0px;
        font-family: bernard;
        text-align: center;
        background-size: cover;	
        text-transform: capitalize;
}

.first-swiper-content-inverse {
	background-color: #f9fde5;	
}

.first-swiper-content-inverse > div {
        background-size: contain; 
        background-clip: text; 
        -webkit-background-clip: text; 
        color: transparent; 
}

.shop-swiper-container {
	height: clamp(300px, 1350px - 200vw, 400px) !important;
	padding-bottom: 2em; 
} 

.shop-swiper-slide {
	background-color: rgba(163, 208, 74, 1);
}

.shop-swiper-content {
	display: flex;
	padding: 0 2.5em;
	contain: size; 
	box-sizing: border-box; 	
}

@media (max-width: 600px) {
	.shop-swiper-content {
		display: block;
		padding: 0;
	}
	.shop-swiper-content img {
		max-height: 60% !important;
	}
}

.shop-swiper-content h2 {
	font-size: clamp(21px, 18px + 1vw, 30px);
	padding: 0 0 0.5em 0;
	margin: 0.3em;
}

.shop-swiper-content img {
	max-height: 100%;
}

.shop-swiper-content > img:nth-child(3) {
	margin-left: 0.6em;
}

.shop-swiper-content > div {
		height: 100%;
        width: 100%; 
		background-color: rgba(163, 208, 74, 0.3); 
		font-family: papy;
		font-size: var(--small-text);        
}

.shop-swiper-content A:link { font-weight: bold;}
.shop-swiper-content A:visited {font-weight: bold;}
.shop-swiper-content A:active {font-weight: bold;}


.review-swiper-container {
	height: 300px;
}

.review-slide div:first-child img {
	height: 1.5em;
	margin-top: 0.5em; 
}

.review-slide p {
	margin: 0.5em;
}

.review-swiper-content {
	box-sizing: border-box;
	display: flex;
	height: 100%;
	padding: 0.5em clamp(10px, 5vw, 45px);
	background-color: rgba(163, 208, 74, 0.2) !important;
}

.review-swiper-content h2 {
	font-size: clamp(21px, 18px + 1vw, 30px);
	padding: 0 0 0.5em 0;
	margin: 0.3em;
}

.review-swiper-content > div {
		height: 100%;
        width: 100%; 
		background-color: rgba(163, 208, 74, 0.3); 
		font-family: papy;
		font-size: var(--small-text);
    	overflow-y: auto; 	
		overflow-x: hidden; 	
}

.review-swiper-content A:link { font-weight: bold;}
.review-swiper-content A:visited {font-weight: bold;}
.review-swiper-content A:active {font-weight: bold;}


.review-swiper {
	height: 100%;
}


.first-swiper-content-inverse A:link { color: transparent !important;}
.first-swiper-content-inverse A:visited { color: transparent !important; }
.first-swiper-content-inverse A:active { color: transparent !important; }

.first-swiper-content > div .smaller {
        font-size: 0.8em; 
}

.first-swiper-content > div .smallest {
        font-size: 0.6em; 
}


.main-swiper {
	height: 100%; 
	font-family: papy;
}

.main-swiper .swiper-slide{
	background-color: rgba(255,255,255,0);
}

.main-swiper .swiper-slide div{
	box-sizing: border-box;
	width: clamp(100% - 5vw, 100% - 5vw, 100%);
	height: clamp(100% - 5vw, 100% - 5vw, 100%);
	background-color: rgba(255,255,255,0.8);
	text-align: left;
	padding: 20px;
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%,-50%);	
	overflow-y: auto;
}

.main-swiper h2 {
	font-family: bernard;
	font-weight: normal;
	font-size: clamp(21px, 18px + 1vw,30px);
	margin-top: 0px;
	margin-bottom: 10px;
}

.main-swiper .swiper-slide, .main-swiper .swiper-slide a {
	font-size: var(--small-text);
	text-decoration: none;
}

.main-swiper .swiper-slide a {
	font-weight: bold;
}

.product-swiper {
	padding-bottom: 30px;	
}

.product-swiper .swiper {
	height: 315px;
}

.product-swiper .swiper-slide{
	font-size: 18px;
	width: auto !important;
}

.blog-swiper {
	padding-bottom: 30px;
	font-family: bernard;	
}

.blog-swiper .swiper {
	height: 290px;
}

.blog-swiper .swiper-slide {
	width: auto !important;
}

.blog-swiper .swiper-slide a {
	font-size: 1.2em;
}

.blog-swiper .blog-title {
	overflow: hidden; 
	width: 384px; 
	white-space: nowrap; 
	text-overflow: ellipsis;
}

.swiper-lead {
	cursor: pointer;
}

.swiper-lead div:nth-child(1) img{
	height: 3em;
}

.swiper-lead-text p {
	margin-bottom: 1em;
	font-size: 1.2rem;
}


@media (max-width: 400px) {
	.swiper-slide-title {
		font-size: 16px !important;
	}
	
	.product-swiper .swiper {
		height: 200px;
	}
	
	.product-swiper .swiper-slide img:first-child{
		max-height: 150px;
	}
	
	.swiper-slide .new {
		height: 60px; 
	}
	
	.swiper-slide .sale {
		height: 60px; 
	}
	
	.product-swiper .swiper-slide {
		background-color: transparent;
	}
	
	.swiper-lead div:nth-child(1) img {
 	   height: 2em;
	}
	
	.swiper-slide-title .price {
		display: flex;
		text-align: center;
		overflow: hidden;
	}
	
	.swiper-slide-title .delivery-icon {
		position: relative !important;
		margin: 3px !important;
	}
	
	.swiper-slide-title .delivery-icon img {
		height: 18px;
		width: 18px;
	}
	
	.swiper-slide-title .price >div:first-child {
		flex-grow: 1;
	}
}

.product-swiper .delivery-icon {
	position: absolute; 
	right: 0; 
	bottom: 0; 
	margin: 5px;
	height: 20px; 
	width: 20px; 
}

.product-swiper .delivery-icon img {
	height: 20px; 
	width: 20px; 
}

.history-swiper {
	background-image: url('images/productTableBack.jpg');
	padding-bottom: 30px;
}

.history-swiper .swiper {
	height: 150px;
}

.history-swiper .swiper-slide img{
	max-height: 154px;
}

.history-swiper .swiper-slide{
	font-size: 18px;
	width: auto !important;
}

.history-swiper .swiper-header {
	font-size: 3em;
	margin-bottom: 5px;
}

.productTable-swiper {
	padding: 0 2%;
}

.transparent-swiper .swiper-slide {
	background-color: rgba(255,255,255,0);
}

.one-image-swiper {
	height: 400px;
	width: 95%;
}

.one-image-swiper .swiper {
	height: 100%;
}

.one-image-swiper .swiper-slide img{
	max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;	
}

.one-image-swiper .swiper-slide{
	background-color: rgba(255, 255, 255, 0.5);
}

.one-image-swiper .swiper-header {
	font-size: 3em;
	margin-bottom: 5px;
}


.delivery-popup {
	display: none; 
	position: fixed; 
	background-color: #eeeeee; 
	opacity: 0.8; 
	z-index: 2; 
	box-shadow: 5px 5px 5px #888888; 
	border:1px solid #003300; 
	padding: 5px;
	border-radius: 5px;
}

.delivery-popup-grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.delivery-popup-grid div{
	padding: 3px;
}

.delivery-popup-grid .icon{
	grid-column: 1;
    grid-row: 1 / 5;
}
.delivery-popup-grid .icon img{
	height: 100%;
	width: auto;
	max-width: 60px;
	max-height: 60px;
}

.about-us {
	margin: 1em;
}

.about-us div {
	width: 100%;
	display: flex;
}

.about-us img {
	height: 15em;
	margin: 0.5em;
	align-self: center;
}

.about-us p {
	margin: 0.5em;
}

.about-us {
	font-family: papy;
	font-size: 20px;
}

/* Buttons */
.szirom-button, .szirom-button:visited, .szirom-button:hover, .szirom-button:link, .szirom-button:active{
	-webkit-appearance: none !important;
	display: inline-block;
	padding: 7px; 
	font-family: bernard !important; 
	letter-spacing: 1px;
	text-align: center;
	box-shadow: 4px 4px 4px #CCCCCC;
	color: white !important; 
	text-decoration: none; 
	font-size: var(--normal-text);
	border-width: 0px;
	cursor: pointer;
	border-radius: 2px;
}

.szirom-button:active{
	transform: translate(2px, 2px); 
	box-shadow: 1px 1px 1px #888888;
}

.green-button {
	background-color: rgba(126, 155, 50, 1);
}


.green-button:active{
	background-color: rgba(110, 135, 45, 1);
}

.light-green-button {
	background-color: rgba(156, 189, 76, 1);
}

.light-green-button:active {
	background-color: rgba(136, 179, 66, 1);
}

.large-button {
	font-size: clamp(1.5rem, 1.5rem + 1vw, 2rem) !important;
}

.cart-button img{
	transition: .5s ease;
	height: 20px;
}

.cart-button:hover img{
	transform: rotate(360deg); 
}

.tag-button {
	padding: 1px 4px !important;
	font-size: 24px !important;
	box-shadow: 0px 0px 0px #888888 !important;
	margin: 10px 0px;
	line-height: 40px; 
}

.secondary-action {
	opacity: 0.7;
	box-shadow: none !important;
}

/* template*/
.template-main-grid {
	max-width: 1260px;
	margin:0 auto; 
	background-color:#E9F2CE;
	display: grid;
	grid-gap: 0; 
	grid-template-columns: 260px 1fr;
	    grid-template-areas:
	   	"header header"
	   	"menu content"
	   	"footer footer";
	grid-template-rows: 260px auto auto;
}

.template-main-grid-main {
	max-width: 1260px; 
	margin:0 auto; 
	background-color:#E9F2CE;
	display: grid;
	grid-gap: 0; 
	grid-template-columns: 260px minmax(700px, 1000px);
	    grid-template-areas:
	   	"header header"
	   	"menu contentTop"
	   	"content content"
	   	"footer footer";
	grid-template-rows: 260px auto auto auto;
}

.sticky-navbar {
	position: fixed; 
	top: 0.5rem; 
	left: 0;
	z-index: 9;
	display: none; 
	opacity: 0.9; 
}

.circle-button {
	display: flex; 
	place-items: center; 
	background-color: rgba(156, 189, 76, 1); 
	border-radius: 50%; 
	width: 2.5rem; 
	aspect-ratio: 1 / 1; 
	shape-outside: circle(50%);
	margin: 0.2rem;
	opacity: 0.9;;
}

.circle-button:hover, .circle-button:focus {
	opacity: 1;
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}



.circle-button img {
	width: 60%;
}

.template-header .header-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-self: end; 
}

.mobile-menu {
	display: none;
	position: fixed;
	background-image: url('images/template/feher_menu.png');
	top: 60px;
	width: 261px;
	height: 492px;
	z-index: 10;
	filter: drop-shadow(3px 3px 3px #888888);
}

@media (max-width: 500px) or (max-height: 500px) {
	.mobile-menu {
		top: -10px;
		left: -50px;
		transform: scale(0.7);
	}
	
	.mobile-scroll-max-200 {
		max-height: 200px;
		overflow-y: auto; 
		box-sizing: border-box;
	}
}

@media (max-width: 960px) {
	.template-main-grid {
		grid-template-columns: auto;
		grid-template-rows: auto;
	    grid-template-areas:
		   	"header"
		   	"content"
		   	"footer";
	}
	
	.template-main-grid-main {
		grid-template-columns: auto;
		grid-template-rows: auto;
		grid-template-areas:
			"header"
		   	"contentTop"
		   	"content"
		   	"footer";
	}
	
	.template-menu {
		display: none;
	}
	
	.template-contentTop {
		min-height: initial !important;
	}

	.sticky-navbar {
		display: flex;
	}
	
	.template-header .header-icons {
		display: none;
	}
}

.template-header {
	grid-area: header;
}
.template-menu {
	grid-area: menu;
}
.template-content {
	grid-area: content;
	min-height: 450px;
	min-width: 100%; /*swiper bug miatt kell*/
}
.template-content-2 {
	grid-area: content;
	min-width: 100%; /*swiper bug miatt kell*/
}
.template-contentTop {
	grid-area: contentTop;
	min-height: 460px;
}

.template-footer {
	grid-area: footer;
}

/* Footer */
.template-footer {
	min-width: 100%; /*swiper bug miatt kell*/
	margin-top: 20px;
}

.template-footer .footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	flex-flow: wrap;
	-ms-flex-pack: distribute; 
	justify-content: space-around; 
	margin: 1em;
	font-family: papy; 
	font-size: 16px;
	text-align: center;
	gap: 0.5em; 
}

.template-footer .footer p a {
	font-size: var(--small-text); 
	text-decoration: none;
}

.template-footer .footer .footer-title {
	font-family: bernard;
	font-weight: normal;
	font-size: 1.4rem; 
}

.template-footer .footer .footer-title a {
	font-family: bernard;
	font-weight: normal;
	font-size: 1.4rem; 
	text-decoration: none;
}

.template-footer .footer-note{
	display: flex;
	font-size: 16px;
	width: 100%;
	justify-content: center;
	text-align: center;
	font-family: papy; 
}

/* Header */
.template-header {
	background-image: url('/images/template/header_6.jpg');
	background-size: cover;
	text-align: center;
}

.template-header-grid {
	display: grid;
	grid-template-rows: 60px 140px 60px;
	align-items: center;
}
	
.template-header .main-title{
	font-family: bernard;
	letter-spacing: 0.15em;
	font-size: clamp(20px, 9vw, 80px);
	color: white;
	font-weight: normal;
	text-decoration: none;
	text-shadow: 2px 2px #777777;
}

.template-header a {
	text-decoration: none;
}

.open-box {
    background: rgba(156, 189, 76, 1);
    border-radius: 28px;
    padding: 10px;
    margin: auto;
    font-size: 1.3em;
    color: #eeeeee;
	position: absolute;
	top: 0px;
	right: 45px;	
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.2s linear;
}
.open-box a {
	color: #eeeeee;
}

.open-icon {
	position: absolute; 
	top: 50px; 
	right: 0; 
	margin: 10px; 
	z-index: 2;
}
.open-icon:hover .open-box {
	visibility: visible;
	opacity: 1;
}
.open-box div:first-child {
	margin-top: 0px; 
	font-size: 1.5em;
}

@media (max-width: 600px) {
	.template-header-grid {
		grid-template-rows: 50px 140px;
	}
	
	.open-icon {
		top: 40px;
	}
}

@media (max-width: 400px) {
	.template-header-grid {
		grid-template-rows: 50px 120px;
	}
}

.search-box{
    background: rgba(156, 189, 76, 1);
    height: 27px;
    border-radius: 27px;
    padding: 9px;
    margin: auto;

}

.search-box:hover .search-txt{
    width: 240px;
    padding: 0 6px;
    top: 50px;
}

.search-txt:focus {
    width: 240px;
    padding: 0 6px;
    top: 50px;
}

.search-btn{
    float: right;
    width: 28px;
    height: 28px;
    background: rgba(156, 189, 76, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    text-decoration: none;
}

.search-txt{
 border: none;
 background: none;
 outline: none;
 float: left;
 padding: 0;
 color: white;
 font-size: 16px;
 transition: 0.4s;   
 line-height: 30px;
 width: 0px;
}

.search {
	font-size: 1.5rem;
	font-family: bernard;
	margin-top: 2rem;
}

.search input[type=checkbox] {
	height: 1.6rem;
	width: 1.6rem;
	vertical-align: middle;
  	position: relative;
  	bottom: 1px;
}

.template-header .header-icons .header-icon-set {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}


@media only screen and (max-width: 800px) {
}

.basket-size {
	position: absolute; 
	left: -5px; bottom: -5px; 
	background-color: white; 
	border-radius: 50%; 
	width: 20px; 
	height: 20px; 
	line-height: 20px; 
	opacity: 0.9;
	font-size: 12px; 
}	

.template-header .flags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	justify-self: end;
}

.template-header .flags > div {
	margin: 0.5em;
}

.template-header .flags .flag {
	padding: 5px 10px 5px 0px;
}

.template-header .flags .flag img {
	height: 40px;
	box-shadow: 3px 3px 3px #888888;
}

.template-header .flags .flag:hover {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.template-header .flags a{
	color: white;
}

/* Menu */
.template-menu {
	position: relative;
}

.template-menu .menu{
	position: absolute;
	background-image: url('images/template/feher_menu.png');
	top: -31px;
	left: 0px;
	width: 261px;
	height: 492px;
}

.menu-item {
	width: 130px;
}

.menu-item a {
	color: #444444;
	font-family: bernard;
	font-size: 22px;
	text-decoration: none;
	text-shadow: 0 -3px 3px rgba(255,255,255,1);
	-webkit-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
.menu-item:hover a {
	color: #111111;
	text-shadow: 0 3px 3px rgba(0,0,0,0.1);
}

.menu-item-1 {
	-webkit-transform: rotate(-68deg) translate(36px, -18px);
	    -ms-transform: rotate(-68deg) translate(36px, -18px);
	transform: rotate(-68deg) translate(-36px, 18px);
	animation: menu-animation-1 0.5s reverse;
}
.menu-item-2 {
	-webkit-transform: rotate(-50deg) translate(2px, 64px);
	    -ms-transform: rotate(-50deg) translate(2px, 64px);
	transform: rotate(-50deg) translate(2px, 64px);
	animation: menu-animation-2 0.6s reverse;
}
.menu-item-3 {
	-webkit-transform: rotate(-36deg) translate(50px, 111px);
	    -ms-transform: rotate(-36deg) translate(50px, 111px);
	transform: rotate(-36deg) translate(50px, 111px);
	animation: menu-animation-3 0.7s reverse;
}
.menu-item-4 {
	-webkit-transform: rotate(-14deg) translate(108px, 127px);
	    -ms-transform: rotate(-14deg) translate(108px, 127px);
	transform: rotate(-14deg) translate(108px, 127px);
	animation: menu-animation-4 0.8s reverse;
}
.menu-item-5 {
	-webkit-transform: rotate(5deg) translate(155px, 126px);
	    -ms-transform: rotate(5deg) translate(155px, 126px);
	transform: rotate(5deg) translate(155px, 126px);
	animation: menu-animation-5 0.9s reverse;
}
.menu-item-6 {
	-webkit-transform: rotate(21deg) translate(171px, 122px);
	    -ms-transform: rotate(21deg) translate(171px, 122px);
	transform: rotate(21deg) translate(171px, 122px);
	animation: menu-animation-6 1s reverse;
}
.menu-item-7 {
	-webkit-transform: rotate(45deg) translate(211px, 99px);
	    -ms-transform: rotate(45deg) translate(211px, 99px);
	transform: rotate(45deg) translate(200px, 99px);
	animation: menu-animation-7 1.1s reverse;
}

/* Content */
.template-content {
}

/* Product list*/
.product-list {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, clamp(150px, 30%, 300px));
	grid-gap: 10px 20px;
	justify-items: center;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0px;
}
.product-list .product-list-item:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}
.product-list .product-list-item:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
}
.product-list .product-list-item:nth-child(3) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}
.product-list .product-list-item:nth-child(4) {
  -ms-grid-column: 1;
  -ms-grid-row: 2;
}
.product-list .product-list-item:nth-child(5) {
  -ms-grid-column: 2;
  -ms-grid-row: 2;
}
.product-list .product-list-item:nth-child(6) {
  -ms-grid-column: 3;
  -ms-grid-row: 2;
}
.product-list .product-list-item:nth-child(7) {
  -ms-grid-column: 1;
  -ms-grid-row: 3;
}
.product-list .product-list-item:nth-child(8) {
  -ms-grid-column: 2;
  -ms-grid-row: 3;
}
.product-list .product-list-item:nth-child(9) {
  -ms-grid-column: 3;
  -ms-grid-row: 3;
}
.product-list .product-list-item:nth-child(10) {
  -ms-grid-column: 1;
  -ms-grid-row: 4;
}
.product-list .product-list-item:nth-child(11) {
  -ms-grid-column: 2;
  -ms-grid-row: 4;
}
.product-list .product-list-item:nth-child(12) {
  -ms-grid-column: 3;
  -ms-grid-row: 4;
}

.product-list a {
	text-decoration: none;
}

.product-list-item {
	width: 100%;
	background-color: rgba(255,255,255,0.8);
	height: 100%;
	min-height: 200px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 3fr 1fr;
	grid-template-columns: 1fr 3fr 1fr;
	        grid-template-areas:
	   	"img img img"
	   	"txt txt txt"
	   	"del non car";
	-ms-grid-rows: auto auto 30px;
	grid-template-rows: auto auto 30px;
	justify-items: center;
}

.product-list-item-img {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 3;
	grid-area: img;
	position: relative;
}
.product-list-item-text {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 3;
	grid-area: txt;
	-ms-grid-row-align: end;
	    align-self: end;
}
.product-list-item-del {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	grid-area: del;
	-ms-grid-row-align: end;
	    align-self: end;
}
.product-list-item-car {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
	grid-area: car;
	-ms-grid-row-align: end;
	    align-self: end;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.product-list-item-car img {
	height: 25px;
}

.product-list-item-img .product-img{
	width: 100%;
	min-height: 150px;
	max-height: 270px;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.product-list-item-img .sale{
	position: absolute; 
	right: 0; 
	top: 0; 
	height: 30px; 
	margin: 15px;
	-webkit-transform: rotate(50deg) translateX(5px);
	    -ms-transform: rotate(50deg) translateX(5px);
	        transform: rotate(50deg) translateX(5px);
	animation: fade 2s ease-out reverse; 
}

.product-list-item-img .new{
	position: absolute; 
	right: 0; 
	top: 0; 
	height: 50px; 
	margin: 20px;
	-webkit-transform: rotate(-50deg) translate(15px, 5px);
	    -ms-transform: rotate(-50deg) translate(15px, 5px);
	        transform: rotate(-50deg) translate(15px, 5px);
	animation: fade 2s ease-out reverse; 
}

.product-list-item-text {
	animation: product-text-fade 0.7s ease-out reverse;
}

.product-list-item-text p {
	font-family: papy;
	font-size: 18px;
	margin: 5px;
	max-height: 60px;
	overflow: hidden; 
	-o-text-overflow: ellipsis; 
	   text-overflow: ellipsis; 
}

.product-list-item-text p.price {
	font-family: bernard;
	font-size: 18px;
	margin: 5px;
}

.product-list-item-car a {
	font-size: 22px;
}

.product-list-item-car:hover {
	-webkit-transform: rotate(360deg);
	    -ms-transform: rotate(360deg);
	        transform: rotate(360deg);
}

.product-list-pager {
	width: 60%;
	margin-top: 20px;
	font-family: bernard;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.product-list-pager img {
	height: 40px;
}

.product-list-pager div:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}
.product-list-pager div:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
}
.product-list-pager div:nth-child(3) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.product-list-pager select {
	height: 30px;
	font-size: 20px;
	font-family: bernard;
}

.product-list-pager a{
	font-size: 40px;
	color: rgba(156, 189, 76, 1);
}

/* Common */
.main-block {
	margin: 0px 10px 0px 10px;
	font-family: papy;
	font-size: 18px;
}

.main-block a {
	font-family: papy;
	font-size: 18px;
}

.main-block h1, h2, h3 {
	font-family: bernard;
	font-weight: normal;
}

.main-block h1 {
	font-size: 30px;
}

.main-block h2, h3 {
	font-size: 20px;
}

.footer-card {
	width: 95%;
	margin: auto;
	margin-top: 10px; 
	text-align: justify; 
	margin-bottom: 10px; 
	background-color: rgba(255, 255, 255, 0.6); 
	font-family: papy; 
	font-size: 18px; 
	padding: 10px;
	line-height: 2em;
	box-sizing: border-box;
}

.footer-card a {
	font-size: 18px;
}

.footer-card-big {
	font-size: 22px;
}
.footer-card-big a{
	font-size: 22px;
}

.footer-card p {
	margin-top: 0px;
}

.capitalized:first-letter {
    text-transform: uppercase;
}

.green-title {
	margin: 10px 0px 10px 0px;
	padding: 5px 5% 5px 5%; 
	font-family: bernard;
	font-weight: normal;  
	font-size: clamp(1.5rem, 1.5rem + 1vw, 2rem); 
	text-align: center; 
	color: white; 
	background-image: linear-gradient(to right, rgba(156, 189, 76, 0) 0%, rgba(156, 189, 76, 0.6) 10%, rgba(156, 189, 76, 0.6) 90%, rgba(156, 189, 76, 0) 100%); 
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.translucent {
	background-color: rgba(255, 255, 255, 0.6);
	padding: 0.5em;
}

.title-lead {
	overflow: auto; 
	background-color: rgba(163, 208, 74, 0.2);	
}
	
.title-lead, .title-lead a {
	font-family: papy;
	font-size: 1.2rem;
	text-align: center;
}

.red {
	color: #bb0000;
}

select.designed {
	font-size: 18px;
	font-family: bernard;
	height: 30px;
}


.hasBubble {
	position: relative;
}

.bubble {
	position: absolute;
	bottom: 30%;
	left: 40%;
	border-radius: .4em;
	font-family: papy;
	font-size: 20px;
	display: inline-block;
	margin: 10px;
	padding: 5px;
	color: #ffffff;
	background-color: rgba(15, 65, 14, 0.8);
	width: 300px;
	z-index: 10;
}

.bubble:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-top-color: rgba(15, 65, 14, 0.8);
	border-bottom: 0;
	margin-left: -15px;
	margin-bottom: -15px;
}

.bubble a {
	font-family: papy;
	font-size: 16px;
	color: #ffffff;
	text-decoration: underline;
	font-weight: bold;
}

.pickup-hover:hover {
	transition: 0.1s ease;
	-webkit-box-shadow: 2px 2px 2px #888888;
	        box-shadow: 2px 2px 2px #888888;
	-webkit-transform: translate(-2px, -2px);
	    -ms-transform: translate(-2px, -2px);
	        transform: translate(-2px, -2px);
}

.papy {
	font-family: papy;
	font-size: 20px;
}

.papy a:link, .papy a:hover, .papy a:active, .papy a:visited{
	font-family: papy;
	font-size: 20px;
}

.popup-menu {
	overflow: visible;
	background-color: rgba(156, 189, 76, 1);
	position: absolute;
	top: 60px;
	left: -55px;
	color: white;
	font-family: bernard;
	font-size: 16px;
	font-weight: normal;
	display: none;
}

.popup-menu a {
	font-family: bernard;
	font-size: 18px;
	color: white;
}

.popup-menu .popup-menu-item {
	margin: 10px;
	text-align: left;
	display: flex;
}

.popup-menu .popup-menu-item  p {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}


.popup-menu .popup-menu-icon {
	display: inline-block;
	width: 25px;
}

.popup-menu .popup-menu-icon img {
	height: 18px;
}

.modal {
	position: fixed; /* Stay in place */
	z-index: 100; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: none;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
}

.modal .modal-window {
	background-color: #f1f5de;
	padding-bottom: 1em;
	border: 1px solid #888;
	width: 20em;
	max-width: 90%;	
	text-align: center;
	font-family: papy;
	font-size: 22px;
	border-radius: 5px; 		
}

.modal .title {
	margin: 0px 0px 10px 0px;
	padding: 5px 5% 5px 5%; 
	font-family: bernard;
	font-weight: normal;  
	font-size: clamp(1.5rem, 1.5rem + 1vw, 2rem); 
	text-align: center; 
	color: white; 
	background-color: rgba(156, 189, 76, 0.8); 
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
}

.modal .button-bar {
	display: flex; 
	justify-content: space-around;
	flex-wrap: wrap;
	row-gap: 0.5em;
}

.modal .title .close-button {
	position: absolute;
	right: 0;
	max-height: 80%;
	cursor: pointer;
}

.fade-stretch {
	animation: fade-stretch 0.7s ease-out reverse;
}
.fade-stretch-fast {
	animation: fade-stretch 0.3s ease-out reverse;
}
.fade-stretch-x {
	animation: fade-stretch-x 0.7s ease-out reverse;
}
.anim-spin {
	animation: anim-spin 0.7s reverse;
}
.anim-pulsate {
	animation-name: pulsate;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}

.bigPictureContainer {
	position: fixed; 
	left: 50%; 
	top: 10px; 
	transform: translate(-50%, 0); 
	display: none; 
	z-index: 5;
}

.bigPictureContainer img:first-child {
	max-height: 95vh; 
	max-width: 100vw; 
	cursor: pointer;
}

.bigPictureContainer img:last-child {
	position: absolute; 
	top: 0; 
	right: 0; 
	height: 60px; 
	margin-right: 10px; 
	cursor: pointer;
}

.bottom-bar {
	position: fixed; 
	bottom: 0px;
	left: 0px; 
	font-family: papy; 
	font-size: 1.5em; 
	background-color: rgba(233, 242, 206, 0.8); 
	z-index: 10; 
	width: 100%;
	text-align: center;
	display: none;
}

.wedding-places {
	padding: 0 10px;
	font-family: bernard;
	font-size: 2em;
	opacity: 0.8;
	justify-items: center;
}

.wedding-places div {

}

.wedding-places a {
	font-size: 1em;
	text-decoration: none;
}

.wedding-places p {
	margin: 0.5em;
}

.wedding-slider p {
	margin: 0.5em;
}

.flex-photos {
	display: flex;
	justify-content: space-around;
	margin: auto;
	text-align: center;
}

.flex-photos > img{
	height: 300px;
}

.submenu {
	margin: 0.5rem;
	margin-right: 1rem;
	font-family: bernard; 
	background-color: rgba(255,255,255,0.9);
	text-align: left;
	font-size: 1.4rem;
	color: #666666;
}

.submenu div {
	margin-left: 0.4em;
	margin-right: 0.4em;
	line-height: 1.5em;
}


.submenu .submenu-title a{
	font-size: 1.4rem !important;
}

.submenu hr {
	margin: 0;
	color: #444444;
}

.submenu A:link { color: #666666; font-size: 1.0rem; text-decoration: none;}
.submenu A:visited { color: #666666; font-size: 1.0rem; text-decoration: none;}
.submenu A:active { color: #666666; font-size: 1.0rem; text-decoration: none;}

.smallPicture {
	cursor: pointer;
}

.hover-shift:hover {
	transform: translateX(0.2em);
	transition: 0.2s ease;
}

.hover-zoom:hover {
	transform: scale(1.3);
	transition: 1.9s ease;
}

.div-link {
	cursor: pointer;
}

.google-maps {
	position: relative;
	padding-bottom: 75%; 
	height: 0;
	overflow: hidden;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


@media only screen and (max-width: 800px) {
	.bottom-bar {
		font-size: 4em;
	}
	
	.bottom-bar .szirom-button {
		font-size: 1em;
	}
}

.cart-list-item {
    box-sizing: border-box; 
    display: grid; 
    align-items: center; 
    font-family: papy; 
    padding: 0.5em; 
    grid-template-columns: 200px 1fr 140px auto 40px;
    gap: 0.5em;
    background-color: rgba(163, 208, 74, 0.05);
}
.cart-list-item .description {
    margin: 1em;
}

.cart-list-item .image {
    justify-self: center;
}

.cart-list-item .image img {
	max-width: 100%;
}

.cart-list-item .delete img {
	max-width: 32px;
	width: 1.2em;
	display: flex;
	align-items: center;
}

@media (max-width: 700px) {
    .cart-list-item {
        box-sizing: border-box; 
        display: grid; 
        align-items: center; 
        font-family: papy; 
        padding: 0.5em; 
        grid-template-columns: 1fr 2fr 3fr;
        grid-template-areas: 
            "image image image"
            "description description description"
            "delete quantity price";
        margin-bottom: 1em;
    }
    
    .cart-list-item .image {
        grid-area: image;
    }
    .cart-list-item .image img {
		max-width: 100%;
	}
	
    .cart-list-item .description {
        grid-area: description;
        margin: 0em;
    }
    .cart-list-item .price {
        grid-area: price;
        justify-self: end;
    }
    .cart-list-item .quantity {
        grid-area: quantity;
    }
    .cart-list-item .delete {
        grid-area: delete;
        justify-self: start;
    }
}

table.main-table {
	width: 90%;
	border-spacing: 0; 
	border-collapse: separate;
}

table.main-table td {
	padding: 0;
}


/* Amimations */
@webkit-keyframes pulsate {
  0% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
  45% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}    
  55% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
  100% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
}

@keyframes pulsate {
  0% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
  45% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
  50% {-webkit-transform: scale(1.1);transform: scale(1.1);}    
  55% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
  100% {-webkit-transform: scale(1.0);transform: scale(1.0);}    
}

@-webkit-keyframes anim-spin {
  100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}    
}
@keyframes anim-spin {
  100% {-webkit-transform: rotate(360deg);transform: rotate(360deg);}    
}
@-webkit-keyframes fade {
  100% {opacity: 0}    
}
@keyframes fade {
  100% {opacity: 0}    
}
@-webkit-keyframes fade-stretch-x {
  100% {-webkit-transform: scaleX(0);transform: scaleX(0); opacity: 0}    
}
@keyframes fade-stretch-x {
  100% {-webkit-transform: scaleX(0);transform: scaleX(0); opacity: 0}    
}
@-webkit-keyframes fade-stretch {
  100% {-webkit-transform: scale(0);transform: scale(0); opacity: 0;}    
}
@keyframes fade-stretch {
  100% {-webkit-transform: scale(0);transform: scale(0); opacity: 0;}    
}
@-webkit-keyframes product-text-fade {
  100% {-webkit-transform: translateY(-50px);transform: translateY(-50px); opacity: 0;}    
}
@keyframes product-text-fade {
  100% {-webkit-transform: translateY(-50px);transform: translateY(-50px); opacity: 0;}    
}
@-webkit-keyframes rotateIn {
  100% {-webkit-transform: rotate(0) translateX(0);transform: rotate(0) translateX(0); opacity: 1;}    
}
@keyframes rotateIn {
  100% {-webkit-transform: rotate(0) translateX(0);transform: rotate(0) translateX(0); opacity: 1;}    
}
@-webkit-keyframes menu-animation-1 {
  100% {-webkit-transform: rotate(-68deg) translate(-50px, -43px);transform: rotate(-68deg) translate(-50px, -43px); opacity: 0;}    
}
@keyframes menu-animation-1 {
  100% {-webkit-transform: rotate(-68deg) translate(-50px, -43px);transform: rotate(-68deg) translate(-50px, -43px); opacity: 0;}    
}
@-webkit-keyframes menu-animation-2 {
  100% {-webkit-transform: rotate(-50deg) translate(-25px, 14px);transform: rotate(-50deg) translate(-25px, 14px); opacity: 0;}    
}
@keyframes menu-animation-2 {
  100% {-webkit-transform: rotate(-50deg) translate(-25px, 14px);transform: rotate(-50deg) translate(-25px, 14px); opacity: 0;}    
}
@-webkit-keyframes menu-animation-3 {
  100% {-webkit-transform: rotate(-36deg) translate(-10px, 73px);transform: rotate(-36deg) translate(-10px, 73px); opacity: 0;}    
}
@keyframes menu-animation-3 {
  100% {-webkit-transform: rotate(-36deg) translate(-10px, 73px);transform: rotate(-36deg) translate(-10px, 73px); opacity: 0;}    
}
@-webkit-keyframes menu-animation-4 {
  100% {-webkit-transform: rotate(-14deg) translate(60px, 110px);transform: rotate(-14deg) translate(60px, 110px); opacity: 0;}    
}
@keyframes menu-animation-4 {
  100% {-webkit-transform: rotate(-14deg) translate(60px, 110px);transform: rotate(-14deg) translate(60px, 110px); opacity: 0;}    
}
@-webkit-keyframes menu-animation-5 {
  100% {-webkit-transform: rotate(5deg) translate(100px, 132px);transform: rotate(5deg) translate(100px, 132px); opacity: 0;}    
}
@keyframes menu-animation-5 {
  100% {-webkit-transform: rotate(5deg) translate(100px, 132px);transform: rotate(5deg) translate(100px, 132px); opacity: 0;}    
}
@-webkit-keyframes menu-animation-6 {
  100% {-webkit-transform: rotate(21deg) translate(125px, 145px);transform: rotate(21deg) translate(125px, 145px); opacity: 0;}    
}
@keyframes menu-animation-6 {
  100% {-webkit-transform: rotate(21deg) translate(125px, 145px);transform: rotate(21deg) translate(125px, 145px); opacity: 0;}    
}
@-webkit-keyframes menu-animation-7 {
  100% {-webkit-transform: rotate(45deg) translate(180px, 145px);transform: rotate(45deg) translate(180px, 145px); opacity: 0;}    
}
@keyframes menu-animation-7 {
  100% {-webkit-transform: rotate(45deg) translate(180px, 145px);transform: rotate(45deg) translate(180px, 145px); opacity: 0;}    
}