@charset "UTF-8";


/* colors */

:root {

 /* green */
  --green: #78B82B;
  --greenlight: #C9E3AA;
  --greenlightlight: #E4EFD3;
  --greendark: #4F9000;
  --greenwashed: #93C655;
  --greenwashedlight: #AED480;
  
 /* yellow */ 
  --yellow: #FDB813;
  --yellowwashed: #FDD161;
  --yellowlight: #2E2E2E;
  
  /* red */
  --red: #EB5757;
  --lightred: #f0c7c7;

 /* text */   
  --dark: #2C2C2C;
  --light: #8C8C8C;
  --white: #FFFFFF;

 /* bg */   
  --bg: #FFFFF5;
  
  /* orange */
  --orange: #fe5909;

	/* pink */
  --pink: #ec6467;
}



/* TEXTS */


body {
	color: var(--dark);
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	font-family: 'Quicksand', sans-serif;
}



h1, h2, h3, p {
	display: block;
	padding: 0;
	margin: 0;
}

p { margin: 12px 0 }
a, a:hover, a:active { color: var(--green) }
.inv a { color: var(--dark); font-weight: 600 }
.inv a:hover { color: var(--white) }

h1, .h1  { font-size: 36px; line-height: 44px; font-weight: 600;  }
h2, .h2  { font-size: 24px; line-height: 32px; font-weight: 600; margin: 0 0 24px; }
h3, .h3  { font-size: 18px; line-height: 26px; font-weight: 600; margin: 0 0 16px; }
.caption { font-size: 14px; line-height: 18px; font-weight: 400 }

.h2.marg, .h3.marg { margin: 24px 0 }
.h1.marg { margin: 12px 0 48px }
.h1.bigmarg { margin: 64px 0 }
.h2.bigmarg { margin: 48px 0 }

h1.xl, .h1.xl { font-size: 48px; line-height: 56px; font-weight: 700; }
h1.xxl, .h1.xxl { font-size: 64px; line-height: 72px; font-weight: 700; }

.highlight { color: var(--green); font-weight: 600 }
.inv .highlight { color: var(--white) }
.lead { font-size: 20px; line-height: 30px; font-weight: 600; }
.lead.inv { color: var(--white) } 

.inverse-text, .inverse-text a {
	color: var(--white);
}
.small-text { font-size: 0.8rem; }

.pink { color: var(--pink); }
.light { color: var(--light); }

.hyphen-manual {
	-webkit-hyphens: manual;
	-ms-hyphens: manual;
	hyphens: manual;
}


@media only screen and (min-width: 1420px) {
	
	body     { font-size: 18px; line-height: 30px; }
	h1, .h1  { font-size: 48px; line-height: 60px; }
	h2, .h2  { font-size: 30px; line-height: 44px; }
	h3, .h3  { font-size: 20px; line-height: 28px; }
	.caption { font-size: 14px; line-height: 18px; }
	.caption-as-subheadline .caption { font-size: 18px; line-height: 24px; font-weight: 400 }
}


@media only screen and (max-width: 919px) {
	
	h1.xl, .h1.xl { font-size: 36px; line-height: 42px; }
	h1.xxl, .h1.xxl { font-size: 48px; line-height: 56px; }
}



/* BUTTONS */

.row-button {
	margin-top: 12px;
	text-align: center;
}


.button {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 24px;
	background: var(--green);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	box-shadow: 0px 6px 16px rgba(120, 184, 43, 0.45);
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}

.button:hover { 
	background: var(--greenwashed);
	color: var(--white);
}

.button.light {
	background: var(--greenwashedlight);
	color: var(--dark);
}

.button.dark {
	background: var(--greendark);
	color: var(--white);
}

.button.light:hover { 
	background: var(--greenwashed) 
}

.button.white, .inv form .button {
	background: var(--white);
	color: var(--green);
	box-shadow: none;
}

.button.white-orange {
	background: var(--white);
	color: var(--orange);
	box-shadow: none;
}

.button.white-orange.ghost {
	border: 2px solid var(--orange);
	padding: 8px 32px;
}


.inv.btn-style-yellow form .button {
	background: var(--yellow);
	color: var(--dark);
}

.button.orange {
	background: var(--orange);
}

.button.pink {
	background: var(--pink);
}

.button.white:hover, .inv form .button:hover {
	background: var(--bg);
	color: var(--dark);
}


.btnhold {
	margin: 32px 0;
}

.packdisp {
	width: 74px;
	border-radius: 6px;
	padding: 4px 8px;
	margin-bottom: 6px;
}


@media only screen and (min-width: 520px) and (max-width: 1419px) {
	
	.button {
		padding-top: 10px;
		padding-bottom: 8px;
	}
}



/* LISTS */

.ordered-list {
  counter-reset: section;
  margin: 32px 0;
  padding: 0;
  list-style: none;                  
}

.ordered-list li {
	margin: 18px 0;
	position: relative;
	padding-left: 32px;
}

.ordered-list li:before {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 600;
    counter-increment: section;                   
    content: counter(section) ".";
}




/* ARROW */


.arrow {
	display: inline-block;
	width: 40px;
	height: 32px;
}

.arrow.right { background: url(/hu/images/web/arrow-right.png) no-repeat center; background-size: 32px auto; }
.arrow.left  { background: url(/hu/images/web/arrow-left.png) no-repeat center; background-size: 32px auto; }

.arrow.right.inact { background: url(/hu/images/web/arrow-right-green.png) no-repeat center; background-size: 32px auto; }
.arrow.left.inact  { background: url(/hu/images/web/arrow-left-green.png) no-repeat center; background-size: 32px auto; }




/* SIDENAV */


.sidenav nav > div {
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 20px;
}

.sidenav nav  > div:before,
.sidenav nav  > div:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	content: '';
	border-radius: 10px;
}

.sidenav nav  > div:before {
	width: 6px;
	height: 6px;
	background: var(--green);
}

.sidenav nav  > div.active:after {
	width: 14px;
	height: 14px;
	border: 2px solid var(--green);
}



.submenu {
	display: none;
}

.submenu.tabber {
	display: block;
}










@media only screen and (max-width: 919px) {


	
	.submenu.tabber {
		display: block;
		margin: 24px 0 48px;
		z-index: 100;
		text-align: left;
		cursor: pointer;
		background: url(/hu/images/web/arrow-down.png) no-repeat 94% center;
		background-size: 14px auto;
	}
	
	.submenu.tabber .wrap {
		display: block;
		border-radius: 30px;
		border: 2px solid var(--greenlight);
		margin: 0;
	}
	
	.submenu.tabber a.active { display: block; color: var(--green); }
	.submenu.tabber a {
		display: none;
		padding: 10px 40px 10px 20px;
		color: var(--dark);
		text-decoration: none;
		font-size: 16px;
	}
	
	
	.tabber-panel,
	.tabber-hider {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	.tabber-hider {
		height: 100%;
	}
	
	.tabber-panel {
		box-sizing: border-box;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0px 10px 30px rgba(223, 223, 192, 0.8);
		z-index: 100;
		padding: 10px;
	}
	
	.submenu.tabber .tabber-panel a { display: block; border-bottom: 1px solid #eee; }
	.submenu.tabber .tabber-panel a:last-child { border: none }

	.sidenav { display: none }
	/*.sidenav {
		position: fixed;
		z-index: 100;
		bottom: 0;
		left: 0;
		padding: 10px 0;
		width: 100%;
		text-align: left;
		background: var(--white);
		transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
	}

	.sidenav .panel {
		height: 40px;
		padding: 0 40px;
		max-width: 480px;
		box-sizing: border-box;
		margin: 0 auto;
		position: relative;
	}
	
	.sidenav.hide { transform: translateY(100%) }
	.sidenav .panel nav { padding: 10px 0 }
	.sidenav .stepper { position: absolute; top: 0; right: 20px; }
	.sidenav nav > div { display: inline-block; width: 24px }
	.sidenav .stepper a { width: 40px; height: 40px }
	
	*/
	

	
	
	
	
}

@media only screen and (max-width: 519px) {
	.sidenav .panel { padding: 0 20px }	
}

@media only screen and (min-width: 920px) {
	
	.sidenav {
		position: sticky;
		position: -webkit-sticky;
		top: 270px;
		z-index: 100;
	}
	
	.sidenav nav > div div {
		height: 100%;
	}
	
	.col-sidenav {
		width: 40px;
		margin-left: -40px;
	}
	
	.col-base {
		width: 100%;
	}
	
	.sidenav nav > div { display: block }
	.sidenav .panel { position: relative; top: 40px; left: 80px; height: 220px; }
	.sidenav .stepper { display: none }
	
	
	.submenu {
		margin: -36px 0 72px;
		z-index: 100;
		text-align: center;
		display: block;
	}
	
	.submenu .wrap {
		display: inline-block;
		background: #FFFFFF;
		box-shadow: 0px 10px 30px rgba(223, 223, 192, 0.8);
		border-radius: 12px;
		padding: 0 12px;
		white-space: nowrap;
	}
	
	.submenu a {
		display: inline-block;
		padding: 16px 20px;
		color: var(--light);
		text-decoration: none;
		font-size: 16px;
	}
	
	.submenu a:hover {
		color: var(--green);
	}
	
	.tabber-panel {
		display: none;
	}
	
	.tabber-hider {
		display: none;
	}

	
	
}




/* CAROUSEL */


.carousel, .carousel .displayer, .carousel .mask { position: relative }
.carousel {
	padding: 40px 40px 0;
	background: url(/hu/images/web/carousel-leaf-left.png) no-repeat 10px 10px, 
		        url(/hu/images/web/carousel-leaf-right.png) no-repeat right 0;
}

.carousel .mask, .design-img {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0px 6px 16px rgba(179, 179, 166, 0.45);
}

.carousel.ratio-16-9 .mask { padding-top: 56.25% }
.carousel.ratio-3-2 .mask { padding-top: 66.66% }
.carousel.ratio-1-1 .mask { padding-top: 100% }

.carousel .mask .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

.carousel .mask .img.front {
	opacity: 1;
	z-index: 20;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}

.carousel .mask .img.back {
	opacity: 1;
	z-index: 10;
}

.carousel .handler,
.carousel-handler {
	margin: 24px auto 12px;
	text-align: center;
	display: none;
}



.prev, .next, 
.carousel .btns, .carousel .btns div,
.carousel-handler .btns, .carousel-handler .btns div {
	display: inline-block;
	vertical-align: middle;
}

.prev, .next { width: 40px; height: 32px; cursor: pointer }
.prev.inact, .next.inact { opacity: 0.4; pointer-events: none; }

.carousel .btns, .carousel-handler .btns { margin: 0 24px }
.carousel .btns div, .carousel-handler .btns div {
	background: var(--greenlight);
	width: 8px;
	height: 8px;
	border-radius: 10px;
	margin: 0 6px;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}

.carousel .btns div.active,
.carousel-handler .btns div.active {
	background: var(--green);
	width: 24px;
}

.prev {
	background: url(/hu/images/web/accordion-up-green.png) no-repeat center; background-size: 20px auto;
	transform: rotate(-90deg);
}

.next {
	background: url(/hu/images/web/accordion-up-green.png) no-repeat center; background-size: 20px auto;
	transform: rotate(90deg);
}




.greengo-tip {
	margin-top: 64px;
	position: relative;
}

.greengo-tip h3 {
	position: relative;
	font-size: 24px;
	margin-bottom: 24px;
}

.greengo-tip h3:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin: 4px 0 0 -10px;
	width: 84px;
	height: 102px;
	background: url(/hu/images/web/greengo-tipp.png) no-repeat center top;
	background-size: 100% auto;
	transform: translate(-100%, -50%);
	content: '';
}



.greengo-tip-tongue .circle .handle {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin: 0 0 0 0;
	width: 84px;
	height: 102px;
	background: url(/hu/images/web/greengo-tipp.png) no-repeat center top;
	background-size: 100% auto;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.greengo-tip-tongue .circle {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%,-50%);
	border-radius: 260px;
	height: 100%;
	background: var(--yellowwashed);
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}

.greengo-tip-tongue {
	position: fixed;
	top: 50%;
	right: -10px;
	background: var(--yellowwashed);
	width: 480px;
	z-index: 100;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transform: translate(100%,-50%);
}


.greengo-tip-tongue .wrap {
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	position: relative;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	padding: 28px 0;
}

.greengo-tip-tongue .panel {
	height: 100%;
	overflow: hidden;
}

.greengo-tip-tongue h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.greengo-tip-tongue p {
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
}

.greengo-tip-tongue .button {
	margin-bottom: -10px;
}

.greengo-tip-tongue .highlight {
	color: var(--white);
}


.app-download { display: none }

.app-apple, .app-google { 
	opacity: 0.8;
	width: 80px;
	height: 28px;
	display: inline-block;
}

.app-apple { 
	background: url(/hu/images/web/store-apple.png) no-repeat center;
	background-size: 100% auto;
}

.app-google { 
	background: url(/hu/images/web/store-google.png) no-repeat center;
	background-size: 100% auto;
}

.app-apple:hover, .app-google:hover { opacity: 1 }




.cookie {
	display: none;
	position: fixed;
	z-index: 100000;
	background: rgba(10,10,10,0.2);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cookie .panel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 720px;
	max-width: 100%;
}

.cookie .panel.card .wrap { padding-top: 42px }


@media only screen and (max-width: 919px) {
	
	.app-download {
		display: block;
		margin: 48px 0 24px;
		border-radius: 12px;
		box-shadow: 0px 10px 24px #D7D7BA;
		overflow: hidden;
		padding: 30px 20% 20px 20px;
		background: var(--white) url(/hu/images/web/app-download.png) no-repeat right bottom;
		background-size: 200px auto;
	}
	
	.app-download h2 {
		font-weight: 500;
	}
	
	.greengo-tip {
		background: var(--yellowwashed);
		border-radius: 12px;
		box-shadow: 0px 14px 16px 4px rgba(0, 0, 0, 0.05);
		padding: 40px 20px 20px;
		margin-top: 96px;
	}
	
	.greengo-tip h3 {
		position: relative;
		text-align: center;
	}
	
	.greengo-tip h3:after {
		display: block;
		position: absolute;
		top: -40px;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0 0 0 0;
	}
	
	.greengo-tip p {
		color: var(--dark);
		font-weight: 500;
	}
	
	.greengo-tip .highlight {
		color: var(--dark);
		font-weight: 700;
	}
	
}


@media only screen and (max-width: 719px) {
	
	.greengo-tip-tongue {
		margin-right: 0 !important;
		border-top-left-radius: 12px;
		border-bottom-left-radius: 12px;
		max-width: 320px;
		right: 0;
	}
	
	.greengo-tip-tongue .wrap {
		left: 0 !important;
		max-height: 80vh;
		padding-left: 20px;
		padding-right: 10px;
	}
	
	.greengo-tip-tongue .wrap .panel {
		overflow-y: auto;
	}
	
	.greengo-tip-tongue .circle {
		width: 10px !important;
		height: 40px !important;
		left: 0;
		background: none;
		z-index: 20;
	}
	
}



@media only screen and (max-width: 519px) {
	.carousel {
		padding: 0 20px 20px;
		background: none;
	}
	
	.greengo-tip-tongue { display: none }
}





/* selections  */

::selection { background: #ddd; }
::-moz-selection { background: #ddd; }
::-webkit-selection { background: #ddd; }
::-o-selection { background: #ddd; }
	
