/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:focus {
	outline: 0;
}
button {
	cursor:pointer;
}
/* end CSS reset */

/*
calcolo em da base 16px

pixels 		em
8px			0.5em
9px			0.563em
10px		0.625em
11px		0.688em
12px		0.75em
13px		0.813em
14px		0.875em
15px		0.938em
16px		1em
17px		1.063em
18px		1.125em
19px		1.188em
20px		1.25em
21px		1.313em
22px		1.375em
23px		1.438em
24px		1.5em
25px		1.5625em
26px		1.625em
27px		1.6875em
28px		1.75em
29px		1.8125em
30px		1.875em
31px		1.9375em
32px		2em
*/

#develop{
	overflow: hidden;
}

#develop-select{
	max-width: 300px;
	overflow: hidden;
}

body{
	font: 400 16px/25px "Montserrat", sans-serif;
    color: #171C2A;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: antialiased;
    	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a{
	color: #171C2A;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
}

a:hover{
    opacity: .8;
}

.gz-relative{
	position: relative;
}

.gz-img-lazyload,
.gz-img-loading{
    opacity: 0;
}

.gz-img-loaded {
    opacity: 1;
    -webkit-transition: opacity .05s ease-in;
    -o-transition: opacity .05s ease-in;
    transition: opacity .05s ease-in;
}

/* layout structure styles */
.gz-page{
    background-color: #F6F5F3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
	max-width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.gz-sitewidth{
    max-width: 90vw;
	margin: 0 auto;
}

/* header styles */
.static-container{
	position:relative;
	z-index:100000;
}

.flying-container{
	width:100%;
	opacity:1;
	text-align: center;
}

.expanding{
	background-color: #000000;
	position: relative;
	z-index: 13;
}

.pushing .flying-container{
	position: fixed;
	top:0;
	left:0;
	z-index:100000000000000;
}

.hiding .flying-container{
	position:fixed;
	opacity:0;
}

/* header icons */
/********** SAMPLE **********/
.gz-header-icon{
	width: 30px;
    height: 30px;
	text-align: center;
	text-transform: uppercase;
}

.gz-header-hamburger.gz-header-icon{
	background-color: #FFFFFF;
}
/********** SAMPLE **********/
/* end header icons */

.gz-header{
    position: relative;
	background-color: #FFFFFF;
	width: 100vw;
	height: 50px;
	z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	outline: 1px solid #e3e3e3;
}

/* hamburger */
.gz-header-hamburger.gz-header-icon{
	width: 28px;
}

.gz-header-hamburger{
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	position: relative;
	z-index: 20;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	height: 20px;
	margin-right: 5vw;
	cursor: pointer;
	transition: top .3s ease-out .1s, opacity .2s ease-out .2s;
	-o-transition: top .3s ease-out .1s, opacity .2s ease-out .2s;
	-moz-transition: top .3s ease-out .1s, opacity .2s ease-out .2s;
	-webkit-transition: top .3s ease-out .1s, opacity .2s ease-out .2s;
}

.gz-header-hamburger:before,
.gz-header-hamburger:after,
.gz-header-hamburger span:after{
	position: absolute;
	content: '';
	height: 2px;
	width: 100%;
	border-radius: 1px;
	display: block;
	background-color: #171C2A;
}

.gz-header-hamburger:before,
.gz-header-hamburger:after{
	-webkit-transform: rotate(0deg);
  	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	    transform-origin: center center;
	-webkit-transition: transform .3s ease-in-out, top .3s ease-in-out .3s;
	-o-transition: transform .3s ease-in-out, top .3s ease-in-out .3s;
	-webkit-transition: top .3s ease-in-out .3s, -webkit-transform .3s ease-in-out;
	transition: top .3s ease-in-out .3s, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, top .3s ease-in-out .3s;
	transition: transform .3s ease-in-out, top .3s ease-in-out .3s, -webkit-transform .3s ease-in-out;
}

.gz-header-hamburger:before{
	top: 0;
}

.gz-header-hamburger:after{
	top: 18px;
}

.gz-header-hamburger span:after{
	top: 9px;
	-webkit-transition: opacity .3s ease-in-out .3s;
	-o-transition: opacity .3s ease-in-out .3s;
	transition: opacity .3s ease-in-out .3s;
}

.gz-header-container{
	-webkit-box-ordinal-group: 1;
	    -ms-flex-order: 0;
	        order: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
	margin-left: 5vw;
}
/* end hamburger */

/* logo */
.gz-header-logo{
    width: 190px;
	height: 34px;
	background: url('/style/images/logo-giallozafferano.svg') 0 0 no-repeat;
    background-size:100% 100%;
}

.gz-header-logo a{
    display:block;
    width:100%;
    height:100%;
    text-indent:-9999em;
}

.gz-header-logo a:hover{
	opacity: 1;
}
/* end logo */

/* navigation */
.gz-header-nav{
	display: none;
	font-weight: 500;
}

.gz-header-nav ul li a{
	transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
}

.gz-header-nav,
[class$='-nav'] > ul li > ul li{
	font-size: 0.875rem; /* 14px */
}

[class$='-nav'] > ul li a{
	text-transform: uppercase;
	text-decoration: none;
	line-height: 40px;
}

.gz-header-nav > ul > li > a[href*="/benessere"] {
	color: #88ba35;
	font-weight: 600;
}

[class$='-nav'] > ul li > ul{
	position: relative;
	left: -10px;
	opacity: 0;
	min-width: 200px;
	max-height: 0;
	overflow: hidden;
}

[class$='-nav'] > ul li > ul li{
	float: none;
	display: block;
	text-align: left;
	min-height: 25px;
	line-height: 21px;
}

.gz-header-nav > ul li > ul{
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.07), 0 0px 8px rgba(0,0,0,0.2);
			box-shadow: 0 0 20px rgba(0,0,0,0.07), 0 0px 8px rgba(0,0,0,0.2);
	padding: 10px 0 5px;
}

.gz-header-nav > ul li > ul li{
	margin-left: 24px;
	padding: 7px 0;
}

.gz-header-has-children{
	cursor: pointer;
}

.gz-header-has-children > :not(a){
	cursor: default;
}

.gz-header-has-children:before,
.gz-header-nav > ul > li.gz-header-has-children.opened:before{
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform: rotate(45deg);
}

.gz-header-has-children:after,
.gz-header-nav > ul > li.gz-header-has-children.opened:after{
	-webkit-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	transform: rotate(-45deg);
}

.gz-header-has-children:before,
.gz-header-has-children:after{
	content: '';
	background-color: #A8A7A6;
	position: absolute;
	height: 1px;
	width: 6px;
	top: 50%;
	top: 19px;
    cursor: pointer;
}

.gz-header-has-children:before{
	left: 9px;
	z-index: 1;
}

.gz-header-has-children:after{
	left: 13px;
	z-index: 1;
}

.gz-header-nav > ul > li.gz-header-has-children:before,
.gz-header-nav > ul > li.gz-header-has-children.opened:before{
	left: inherit;
	right: 4px;
}

.gz-header-nav > ul > li.gz-header-has-children:after,
.gz-header-nav > ul > li.gz-header-has-children.opened:after{
	left: inherit;
	right: 0;
}

.gz-header-has-children.opened:before{
	right: 0;
	-webkit-transform:rotate(0deg);
	-ms-transform:rotate(0deg);
	transform:rotate(0deg);
}

.gz-header-has-children.opened:after{
	right: 4px;
	-webkit-transform:rotate(0deg);
	-ms-transform:rotate(0deg);
	transform:rotate(0deg);
}
/* end navigation */

/* search container */
.gz-header-search-container > .gz-icon{
    width: 22px;
    margin-left: 5vw;
}

.gz-header-search-container{
    position: absolute;
	background-color: #FFFFFF;
    top: -50px;
	left: 0;
    width: 100vw;
    height: 100%;
    z-index: 10;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	-webkit-transition: top .15s, opacity .15s;
    -o-transition: top .15s, opacity .15s;
    transition: top .15s, opacity .15s;
}

.gz-header-search-container.gz-tendina-show{
	-webkit-box-shadow: 0 7px 7px rgba(68, 68, 68, 0.3);
	        box-shadow: 0 7px 7px rgba(68, 68, 68, 0.3);
}

.gz-header-search-container .gz-header-container{
    margin: 0 5vw;
    height: 40px;
    background: none;
}

body:not(.gz-index) .gz-header-search-container{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

body:not(.gz-index) .gz-header-search-container .gz-header-container{
	max-width: calc(100vw - 20vw - 58px);
}

body:not(.gz-index) .gz-header-search-container.gz-header-search-active .gz-header-container{
	max-width: calc(100vw - 15vw - 28px);
}

body:not(.gz-index) .gz-header-search-container.gz-header-search-active .gz-header-search{
	display: block;
}

body:not(.gz-index) .gz-header-search-container.gz-header-search-active .gz-header-search-close{
	display: none;
}

body:not(.gz-index) .gz-header-search-opened .gz-header-search-container{
    top: 0;
    opacity: 1;
}

.gz-header-search-input{
	background: transparent;
    font: 600 16px/25px "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
	color: #171C2A;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
	padding: 0;
	width: calc(100% - 30px);
}

.gz-header-search-input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

.gz-header-search-input::-webkit-input-placeholder {
	color: #A8A7A6;
}

.gz-header-search-input:-ms-input-placeholder {
	color: #A8A7A6;
}

.gz-header-search-input::-ms-input-placeholder {
	color: #A8A7A6;
}

.gz-header-search-input::placeholder {
	color: #A8A7A6;
}

.gz-header-search-container .gz-header-search-close{
    margin-right: 5vw;
}

.gz-header-search-container .gz-header-search{
	background: transparent;
    margin-top: 0;
	border: 0;
	display: none;
	cursor: pointer;
}
/* end search container */

/* header actions (icons) */
.gz-header-actions{
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
    margin-right: 5vw;
    height: 100%;
    overflow: hidden;
}

.gz-header-actions .gz-header-icon{
    transition: margin-top .15s;
	-o-transition: margin-top .15s;
	-moz-transition: margin-top .15s;
	-webkit-transition: margin-top .15s;
}

/* user login */
.gz-header-user-login{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	line-height: 30px;
    margin-top: 10px;
	width: 30px;
	height: 30px;
	overflow: hidden;
}

.gz-header-user-login a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.gz-header-user-login a .gz-icon{
	text-align: center;
	text-transform: uppercase;
	display: block;
	width: 30px;
	margin-top: 2px;
}

.gz-header-user-info{
	display: none;
}
/* end user login */

/* header search icon */
.gz-header-search{
    margin-top: 11px;
	padding: 0;
	width: 30px;
}

.gz-header-search > .gz-icon{
	width: 22px;
}
/* end header search icon */

/* close icon */
.gz-header-search-close{
	position: relative;
	cursor: pointer;
	width: 30px;
	margin-top: 2px;
}

.gz-header-search-close > .gz-icon{
	width: 22px;
}
/* end close icon */
/* end header actions (icons) */


/* header overlay */
.gz-header-overlay{
	background-color: rgba(0,0,0,0.7);
	font-weight: 400;
	opacity: 0;
	overflow: hidden;
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
}

.gz-header-overlay-close{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding-left: 30px;
	padding-right: 15px;
	width: 320px;
	height: 70px;
	cursor: pointer;
	z-index: 214748362;
	background-color: transparent;
	-webkit-transition: background-color 0s linear 0s;
	-o-transition: background-color 0s linear 0s;
	transition: background-color 0s linear 0s;
}

.gz-header-overlay-close:before,
.gz-header-overlay-close:after{
	content: '';
	background-color: #A8A7A6;
	height: 2px;
	width: 30px;
	position: absolute;
	top: 35px;
	left: 24px;
}

.gz-header-overlay-container{
	position: relative;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.10);
	        box-shadow: 0 0 20px rgba(0,0,0,0.10);
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	width: 100vw;
	height: 100%;
	right: 100%;
	opacity: 0;
	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-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
}

.gz-header-overlay-container > *{
	margin-top: 20px;
	width: 90vw;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}

.gz-header-overlay-close-panel{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 320px;
}

/* header overlay navigation */
.gz-header-overlay-nav{
	margin-top: 20px;
}

.gz-header-overlay-nav > ul{
	position: relative;
}

.gz-header-overlay-nav > ul li{
	position: relative;
	display: block;
	padding-left: 5vw;
}

.gz-header-overlay-nav ul li a{
	transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
}

.gz-header-overlay-nav ul li a[href*="/benessere"]{
	color: #88ba35;
	font-weight: 600;
}

.gz-header-overlay-nav > ul li.selected > a{
	color: #F7972F;
	font-weight: 600;
}

.gz-header-overlay-nav > ul li > ul:before{
	content: '';
	background-color: #F7972F;
    position: absolute;
    left: 0;
	width: 1px;
    height: calc(100% + 20px);
    top: -27px;
}

.gz-header-overlay-nav > ul li > ul{
	left: -37px;
	width: calc(100% + 29px);
	transition: all .3s ease-out .1s;
	-o-transition: all .3s ease-out .1s;
	-moz-transition: all .3s ease-out .1s;
	-webkit-transition: all .3s ease-out .1s;
}

.gz-header-overlay-nav > ul li > ul li{
	margin-left: 29px;
	padding: 2px 0;
}

.gz-header-overlay-nav > ul li > ul li a{
	vertical-align: middle;
	line-height: inherit;
}

.gz-header-overlay-nav > ul li > ul li:first-child{
	padding-top: 10px;
}

.gz-header-overlay-nav > ul li > ul li:last-child{
	padding-bottom: 20px;
}

.gz-header-overlay-nav > ul li.opened > ul,
.gz-header-overlay-nav > ul li.opened:hover > ul{
	max-height: 999px;
	overflow: visible;
	left: -29px;
	opacity: 1;
}

.gz-header-overlay-nav .gz-header-has-children:before,
.gz-header-overlay-nav .gz-header-has-children:after{
	height: 1px;
	width: 6px;
	opacity: 1;
}

.gz-header-overlay-nav .gz-header-has-children.opened:before,
.gz-header-overlay-nav .gz-header-has-children.opened:after{
	opacity: 0;
}

.gz-header-overlay-nav > ul li.gz-header-has-children > a:before{
	position: absolute;
	background-color: #F6F5F3;
	left: 4px;
	top: 12px;
	content: '';
	display: block;
	width: 20px;
	height: 16px;
	border-radius: 2px;
	pointer-events: none;
	opacity: 1;
}

.gz-header-overlay-nav > ul li.gz-header-has-children.opened > a:before{
	opacity: 0;
}
/* end header overlay navigation */

/* header login overlay panel */
.gz-header-overlay-login{
	padding: 20px 0;
	border-top-width: 1px;
	border-style: solid;
	border-color: #E4E4E4;
	font-size: 0.938rem;
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-transform: uppercase;
}

.gz-index .gz-header-overlay-login .gz-header-user-login,
.gz-header-overlay-login .gz-header-user-login{
	margin-top: 0;
}

.gz-header-overlay-login .gz-header-user-login a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.gz-header-overlay-login .gz-header-user-login a .gz-icon{
	margin-top: 0;
	margin-right: 20px;
	text-align: center;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #F7972E;
}

.gz-header-overlay-login .gz-header-user-login a .gz-icon svg{
	width: 25px;
}

.gz-header-overlay-login .gz-header-user-info{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.gz-header-overlay-login .gz-header-user-login,
.gz-header-overlay-login .gz-header-user-info{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 50%;
	height: 50px;
}

.gz-header-overlay-login .gz-header-user-info a{
	margin-left: 35px;
}

.gz-header-overlay-login .gz-header-user-info:before{
	content: "";
	background-color: #E4E4E4;
	display: block;
	position: absolute;
	width: 1px;
	height: 50px;
	left: 0;
}
/* end header login overlay panel */

/* header social overlay panel */
.gz-header-overlay-social{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: 0;
	padding: 10px 0 20px;
	border-top-style: solid;
	border-top-width: 1px;
	border-color: #E4E4E4;
}

.gz-header-overlay-social:before{
	content: 'SEGUICI';
	font-size: 0.938rem;
	color: #A8A7A6;
	text-align: center;
	margin-bottom: 10px;
	display: block;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 100%;
	        flex: 1 1 100%
}

.gz-header-social-channel{
	position: relative;
	margin-bottom: 19px;
    width: 42px;
    height: 42px;
	border-color:transparent;
    border-radius: 42px;
    overflow: hidden;
    text-indent: -300px;
    background-color: #F6F5F3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.gz-header-facebook .gz-icon{
	width: 10px;
}

.gz-header-blog .gz-icon{
	width: 20px;
}

.gz-header-pinterest .gz-icon{
	width: 18px;
}

.gz-header-twitter .gz-icon{
	width: 22px;
}

.gz-header-youtube .gz-icon{
	width: 20px;
}

.gz-header-instagram .gz-icon{
	width: 22px;
}
/* end header social overlay panel */

/* header overlay opened styles */
body.gz-header-overlay-opened{
	position: absolute;
	width: 100%;
	max-height: 100%;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

.gz-header-overlay-opened .gz-header{
	position: fixed;
	top: 0;
	z-index: 100;
}

.gz-header-overlay-opened .gz-header-hamburger:before,
.gz-header-overlay-opened .gz-header-hamburger:after{
	-webkit-transition: top .3s ease-in-out, transform .3s ease-in-out .3s;
	-o-transition: top .3s ease-in-out, transform .3s ease-in-out .3s;
	-webkit-transition: top .3s ease-in-out, -webkit-transform .3s ease-in-out .3s;
	transition: top .3s ease-in-out, -webkit-transform .3s ease-in-out .3s;
	transition: top .3s ease-in-out, transform .3s ease-in-out .3s;
	transition: top .3s ease-in-out, transform .3s ease-in-out .3s, -webkit-transform .3s ease-in-out .3s;
}

.gz-header-overlay-opened .gz-header-hamburger:before{
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	    transform: rotate(-135deg);
	top: 9px;
}

.gz-header-overlay-opened .gz-header-hamburger:after{
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
	top: 9px;
}

.gz-header-overlay-opened .gz-header-hamburger span:after{
	top: 0;
	opacity: 0;
	-webkit-transition-delay: 0s;
	     -o-transition-delay: 0s;
	        transition-delay: 0s;
}

.gz-header-overlay-opened .gz-header-overlay-close{
	background-color: #FFFFFF;
	-webkit-transition-delay: .3s;
	     -o-transition-delay: .3s;
	        transition-delay: .3s;
}

.gz-header-overlay-opened .gz-header-overlay,
.gz-header-overlay-opened .gz-header-overlay-container{
	z-index: 214748361;
	opacity: 1;
}

.gz-header-overlay-opened .gz-header-overlay-container{
	right: 0;
}
/* end header overlay opened styles */
/* end header overlay */

/* tendina styles */
.gz-tendina {
    position: absolute;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
    left: -1px;
    top: calc(100% - 3px);
    background: #FFFFFF;
	border-radius: 3px;
    width: calc(100% + 2px);
    display: none;
	-webkit-box-shadow: 0 7px 7px rgba(68, 68, 68, 0.3);
	        box-shadow: 0 7px 7px rgba(68, 68, 68, 0.3);
}

.gz-tendina ul:empty {
    display: none;
}

.gz-tendina ul {
	padding: 10px 0;
    list-style-type: none;
    border: 1px solid #e3e3e3;
    border-top: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.gz-tendina ul:before{
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	top: 3px;
	left: 0;
	background-color: #e3e3e3;
}

.gz-tendina ul li {
    list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    height: 50px;
    width: 100%;
}

.gz-tendina ul li a {
    display: inline-block;
    text-decoration: none;
	line-height: 20px;
    padding: 0 calc(5vw + 1px);
	text-align: left;
    color: #000;
	max-height: 40px;
	overflow: hidden;
}

.gz-tendina ul li a b,
.gz-tendina ul li a span {
    font-weight: 600;
}
/* end tendina styles */

/* home override */
.gz-index .gz-header{
	outline: none;
}

.gz-index .gz-header-search{
    margin-top: -30px;
}

.gz-index .gz-header-search-container{
	background-color: #FFFFFF;
    border: 1px solid #CAC9C9;
    top: 70px;
    width: calc(90vw - 2px);
    left: 5vw;
    opacity: 1;
    height: 38px;
    border-radius: 3px;
	-webkit-transition: top 0s, opacity 0s;
    -o-transition: top 0s, opacity 0s;
    transition: top 0s, opacity 0s;
}

.gz-index .gz-header-search-container .gz-header-search{
	margin-top: 0;
	display: block;
}

.gz-index .gz-header-search-container > .gz-icon,
.gz-index .gz-header-search-container .gz-header-search-close{
    display: none;
}

.gz-index .gz-header-search-input::-webkit-input-placeholder {
	color: #171C2A;
}

.gz-index .gz-header-search-input:-ms-input-placeholder {
	color: #171C2A;
}

.gz-index .gz-header-search-input::-ms-input-placeholder {
	color: #171C2A;
}

.gz-index .gz-header-search-input::placeholder {
	color: #171C2A;
}

.gz-index .gz-tendina ul {
    border-color: #CAC9C9;
}

.gz-index .gz-tendina ul:before{
	height: 1px;
	width: 90%;
	left: 5%;
}
/* end home override */

/* logged user override */
.gz-logged .gz-header-overlay-social{
	margin-top: 80px;
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2
}

.gz-logged .gz-header-overlay-nav{
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}

.gz-logged .gz-header-overlay-login{
	position: relative;
	text-transform: inherit;
	margin: 0 -5vw;
	padding: 15px 5vw 25px;
	background-color: #F6F5F3;
	font-weight: 500;
	border-bottom: none;
	-webkit-box-ordinal-group: 1;
	    -ms-flex-order: 0;
	        order: 0;
	border-top: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login,
.gz-logged .gz-header-overlay-login .gz-header-user-info{
	height: auto;
	width: auto;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login a,
.gz-logged .gz-header-overlay-login .gz-header-user-info a{
	margin: 0;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login a:before,
.gz-logged .gz-header-overlay-login .gz-header-user-info:before{
	display: none;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login{
	margin-bottom: 20px;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login:before{
	content: "Benvenuto,";
	margin-right: 4px;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login a{
	color: #F7972F;
}

.gz-logged .gz-header-overlay-login .gz-header-user-login a .gz-icon{
	display: none;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout){
	width: calc(25% - 6px);
	font-size: 0.563rem; /* 9px */
	line-height: 1;
	text-transform: uppercase;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout) a{
	display: block;
	text-align: center;
	background-color: #FFFFFF;
	border: 1px solid #e4e4e4;
	border-radius: 3px;
	width: 100%;
	height: 80px;
	padding: 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout) a .gz-icon{
	width: 30px;
    margin-top: auto;
    margin-bottom: auto;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout) a.gz-ricettari .gz-icon{
	width: 26px;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout) a.gz-spesa .gz-icon{
	width: 27px;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout) a.gz-fattedame .gz-icon{
	width: 24px;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li:not(.gz-logout) a.gz-modifica .gz-icon{
	width: 22px;
}

.gz-logged .gz-header-overlay-login .gz-header-user-info li.gz-logout{
	position: absolute;
	top: -48px;
	right: 0;
}
/* end logged user override */

.gz-header-hidden{
	display: none;
}
/* end header styles */

.gz-wrapper,
.gz-innerwrapper{
	position: relative;
	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-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.gz-innerwrapper{
	width: 100%;
}

.gz-wrapper{
	background-color: #F6F5F3;
	width: 100%;
	position: relative;
	-webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.gz-header-overlay-opened .gz-wrapper{
	padding-top: 50px;
}

body:not([class^="gz-index"]) .gz-wrapper{
	padding-top: 20px;
}

body:not([class^="gz-index"]).gz-header-overlay-opened .gz-wrapper{
	padding-top: 70px;
}

.gz-content,
.gz-column{
    width: 90vw;
}

.gz-fullwidth{
	width: 100%;
}

.gz-outerwrapper{
    width: 100vw;
    margin: 0 -5vw;
}

.gz-fullbg{
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
}

.gz-fullbg:before{
    content: "";
	background-color: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    z-index: -1;
}

.gz-inner{
	margin: 0 5vw;
}

.gz-outer{
	margin: 0 -5vw;
}

.gz-sidebar{
	z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.gz-footer{
    background-color: #FFFFFF;
	position: relative;
	z-index: 1;
}

.gz-elevator{
	width: 300px;
}

.gz-adv-slot{
	width: 100vw;
	margin-left: -5vw;
	margin-right: -5vw;
}

/*
.gz-adv-slot.gz-adv-mobile{
	width: 300px;
}
*/

.gz-adv-slot .gz-adv-promobox,
.gz-adv-slot .gz-adv-gpt,
.gz-adv-slot .gz-adv-adsense,
.gz-sidebar .gz-adv-slot{
	width: 300px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.gz-adv-slot .gz-adv-adsense{
	max-height: 250px;
}

.gz-adv-slot .gz-adv-adsense{
	background-color: #FFFFFF;
}

/* elevator */
.gz-cabin-elevator-container{
	z-index: 10;
}

.gz-cabin-elevator-obstacle {
	width: 300px;
	z-index: 1;
	position: relative;
}

.gz-cabin-elevator-wrapper{
	width: 300px;
	min-height: 10px;
	background: rgba(0,0,0,0);
	top: 30px;
}

.gz-cabin-elevator {
	top: 10px;
	width: 300px;
	opacity: 1;
	-webkit-transition: opacity 150ms ease-in-out;
	-o-transition: opacity 150ms ease-in-out;
	transition: opacity 150ms ease-in-out;
}

.gz-cabin-elevator-hide {
	opacity: 0;
}

.gz-elevator-ame-fixed {
	position: fixed;
}

.gz-elevator-ame-fixed .gz-cabin-elevator {
	position: fixed;
}
/* end elevator */

.gz-label {
	border-radius: 3px;
	padding:6px 12px;
	color: #ffffff;
	font-size: 0.6875rem;
	font-weight: 800;
	line-height:1em;
	text-transform: uppercase;
	letter-spacing: 1.1px;
}

.gz-label.gz-benessere {
	background-color: #88ba35;
}

/* IMMAGINE RICETTE (.gz-card) */
.gz-image-recipe {
	position:relative;
	width:100%;
	overflow:hidden;
}
.gz-image-recipe.gz-video:before {
	content:"";
	pointer-events: none;
	position:absolute;
	top:50%;
	left:50%;
	margin:-25px 0 0 -25px;
	width: 50px;
	height: 50px;
	background-color: #2d233b;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAASCAYAAABvqT8MAAAAo0lEQVQ4T5XSURHCQAyE4f0dIAUHWAAH4KB10jrAAZVQCeAACaAgTB7ClHJHjnvrzH2ze0kxsw3wUOPBzGZJF2BsMQF2kiZJpyxtCTzgLukAXGtpaxD3ulrFGnBYrPgLFCtmwJGPvAfO/tEC4l0O+n+Aw2bwlHQEppaEm6Q94DtK3zAC3XKJtYR3hfXGS+CjQga+KtTANqaQ/eJeaZA0xBQy8AIz+2GNwtVq/gAAAABJRU5ErkJggg==");
	background-position:center center;
	background-repeat:no-repeat;
	opacity: 0.6;
	border-radius:50%;
}
.gz-image-recipe .gz-label {
	position:absolute;
	bottom:0;
	left:0;
	pointer-events: none;
	border-radius: 0 3px 0 0;
}
.gz-card.gz-card-horizontal .gz-label {
	border-bottom-left-radius:3px;
}
.gz-image-recipe .gz-in-collection {
	position:absolute;
	top:12px;
	right:12px;
	width:24px;
	height:20px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAUCAYAAACXtf2DAAABkklEQVRIS7VVgU3DQBCzJwA2aDeACSgTUCYgI5QN2gmACWAD6ASUCcoGsAHdwMjRfZR+8mko4qRIyevfvvO9L0QWkk4BXAOYANgBeCf5ke/zt6RzAJcAfOYLwJqkzzTB9oekJYAFAAMm0BmAEwA3iSiAnwBMAWwC3GR+7kmuEm5DIMkbHRVJZ9OEJJO8ApjH4ksQpjP1siRX/exXkldeqwki8xlJA/VGkBjYEqxIGqi018QbkkuG5p8ALvLMe/pTV0DS1RQjKtmSPDOBs14OZT8ENlCFe7gwgZtqeZK+x+B1zkhylZv/rMB9qHvgzm995fI7fGwprb5O0y3yjdiRtFx/DkkPNh/JKhEkJ9oDgzfkELukCoAJJlakbTS7cO0xURoNI8A7GPmoOJokxkcnwT2CcPWvSUrgzajocWwiuSW5N28K7n4sSdupIAFEVgZflOZOq6E2au9ILxK05OolGQNelKgtQ5jGJG8k74LYvrGMznzvB5NLOFhBSy77xP74jr+Xz80PgY+qIKvGBvK4Hu34H2OjywnkrQNIAAAAAElFTkSuQmCC");
	pointer-events: none;
}
.gz-image-recipe img {
	display: block;
	width:calc(100% + 1px);
	height:auto;
}

/* TITLE SECTION */
.gz-title-section {
	color: #171c2a;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.22px;
	line-height: 1em;
	padding:0;
}
.gz-title-section.gz-underline:after {
	content:"";
	display:block;
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background-color: #f7972e;
	margin-top:10px;
}
.gz-title-section.gz-underline.gz-text-center:after{
	position: relative;
	left: 50%;
	margin-left: -25px;
}
.gz-title-section small {
	color: #171c2a;
	font-size: 0.875rem;
	font-weight: 400;
}
.gz-title-section strong {
	font-weight: 600;
}
.gz-title-section span {
	color:#f7972e;
	text-transform:initial;
}

/* CARD RECIPE */
.gz-card {
	-webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
	      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
	border-radius: 3px;
	background-color: #ffffff;
}
.gz-card .gz-icon {
	height:18px;
	margin-right:4px;
}
.gz-card .gz-icon svg {
	height:100%;
	width:auto;
}
.gz-card a {
	text-decoration:none;
}
.gz-card:not(.gz-card-horizontal),
.gz-card:not(.gz-card-horizontal) > a {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	  -ms-flex-direction: column;
	      flex-direction: column;
}
.gz-card:not(.gz-card-horizontal) > a {
	height:100%;
}
.gz-card.gz-card-horizontal {
	-webkit-transition: box-shadow 0.3s ease-in-out;
	-o-transition: box-shadow 0.3s ease-in-out;
	-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
	transition: -webkit-box-shadow 0.3s ease-in-out;
	transition: box-shadow 0.3s ease-in-out;
	transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.gz-card.gz-card-horizontal:hover {
	-webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.gz-card.gz-card-horizontal,
.gz-card.gz-card-horizontal > a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
.gz-card.gz-card-horizontal > a {
	width:100%;
}
/** CARD RICETTE VERTICALI **/
.gz-card:not(.gz-card-horizontal) .gz-image-recipe img {
	border-radius: 3px 3px 0 0;
}
.gz-content-recipe-card {
	position:relative;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	  -ms-flex-direction:column;
	      flex-direction:column;
 -ms-flex: 1 1 auto;
 -webkit-box-flex: 1;
         flex: 1 1 auto;
	padding:10px 5vw;
}
.gz-content-recipe-card .gz-title {
	color: #171c2a;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25em;
}
.gz-content-recipe-card .gz-description {
	color: #615c5c;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.8em;
	padding-top:5px;
}
.gz-content-recipe-card .gz-description .cta-orange {
	color: #f7972e;
	font-weight: 600;
	text-decoration: underline;
}
.gz-content-recipe-card .gz-data-recipe {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background:white;
    position: absolute;
    bottom: 0;
    left: 5vw;
    right: 5vw;
    padding:0;
}
.gz-card:not(.gz-card-horizontal) .gz-content-recipe-card .gz-data-recipe {
	padding: 10px 0;
}

.gz-content-recipe-card .gz-data-recipe .gz-single-data-recipe {
	position:relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	  -ms-flex-align: center;
	      align-items: center;
	color: #978fa1;
	font-size: 0.75rem;
	font-weight: 500;
    height: 24px;
	line-height: 2.2rem;
	margin-left:5px;
}
.gz-content-recipe-card .gz-data-recipe .gz-single-data-recipe:first-child {
	margin-left:0;
}
.gz-content-recipe-card .gz-data-recipe .gz-single-data-recipe.gz-blue {
	color: #528aff;
}
.gz-content-recipe-card .gz-data-recipe .gz-single-data-recipe.gz-orange {
	color: #f7972e;
}

/** CARD RICETTE ORIZZONTALI **/
.gz-card.gz-card-horizontal .gz-image-recipe {
	width:138px;
}
.gz-card.gz-card-horizontal .gz-image-recipe:after,
.gz-card.gz-card-horizontal .gz-image-recipe img {
	border-radius:3px 0 0 3px;
}
.gz-content-recipe-horizontal {
	position:relative;
	width:calc(100% - 168px);
	padding: 5px 15px 0;
    max-height: 110px;
    overflow: hidden;
}
.gz-content-recipe-horizontal .gz-category {
	color: #f7972e;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 21px;
	text-transform: uppercase;
	letter-spacing: 1.15px;
}
.gz-content-recipe-horizontal .gz-category a {
	color: #f7972e;
}
.gz-content-recipe-horizontal .gz-title {
	color: #171c2a;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.1em;
	padding-top: 5px;
	max-height: 95px;
	overflow: hidden;
}
.gz-content-recipe-horizontal .gz-description {
	color: #615c5c;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.4em;
}
.gz-content-recipe-horizontal .gz-description a {
	color: #615c5c;
}
.gz-content-recipe-horizontal .gz-data-recipe {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background:white;
	padding:10px 0 5px;
}
.gz-content-recipe-horizontal .gz-wrap-recipe-top .gz-data-recipe {
	position:absolute;
	bottom:0;
	left:15px;
	right:0;
}
.gz-content-recipe-horizontal .gz-data-recipe .gz-single-data-recipe {
	position:relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	  -ms-flex-align: center;
	      align-items: center;
	color: #444444;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: 0.5px;
	margin-left:10px;
}
.gz-content-recipe-horizontal .gz-data-recipe .gz-single-data-recipe:first-child {
	margin:0;
}
.gz-content-recipe-horizontal .gz-wrap-recipe-top {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	  -ms-flex-flow:column;
	      flex-flow:column;
  	height:100%;
}
.gz-content-recipe-horizontal .gz-link-more-recipe {
	display:none;
}

/* AUTHOR CARD */
.gz-author-card {
	text-align: center;
}

.gz-author-card a {
	text-decoration:none;
}

.gz-author-card,
.gz-author-card > a {
	overflow: hidden;
	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;
}

.gz-author-card > a {
	height:100%;
}

@supports (-webkit-overflow-scrolling: touch) {
  .gz-author-card > a {
		overflow: visible;
		display: block;
	}
}

.gz-author-card-content {
	position:relative;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	  -ms-flex-direction:column;
	      flex-direction:column;
	height: 100%;
	padding: 10px 0;
}

.gz-author-card-content .gz-title {
	color: #171c2a;
    overflow: visible;
	font-size: 0.875rem;
    font-weight: 800;
	line-height: 1.25em;
}

.gz-author-card-content .gz-description {
	color: #615c5c;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6em;
	padding: 5px 10px 0;
}

.gz-author-image {
	position:relative;
}

.gz-author-card .gz-author-image{
	max-width: 140px;
}

.gz-author-image picture img {
	display: block;
	width:100%;
	border-radius: 50%;
	height:auto;
}
/* END AUTHOR CARD */

/* RIGA CON DUE O TRE COLONNE (desk e mobile) */
.gz-row {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	      justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	  -ms-flex-direction: row;
	      flex-direction: row;
	-ms-flex-wrap: wrap;
	  flex-wrap: wrap;
}
.gz-row-center-vertical {
	-webkit-box-align: center;
	  -ms-flex-align: center;
	      align-items: center;
}
.gz-row-center-horizontal{
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.gz-row.gz-1col .gz-col {
	/*-webkit-box-flex: 0;
	  -ms-flex: 0 0 100%;
	      flex: 0 0 100%;*/
  	width:100%;
}
.gz-row.gz-2col .gz-col {
	/*-webkit-box-flex: 0;
	  -ms-flex: 0 0 48%;
	      flex: 0 0 48%;*/
	width:48%;
}
.gz-row.gz-3col .gz-col {
	/*-webkit-box-flex: 0;
	  -ms-flex: 0 0 31%;
	      flex: 0 0 31%;*/
	width:31%;
}
@media screen and (max-width: 999px) {
	.gz-row.gz-1col-mobile .gz-col {
		width:100%;
	}
}
@media screen and (max-width: 480px) {
	.gz-row.gz-2col-mobile .gz-col {
		width:48%;
	}
}


/* BUTTONS */
.gz-button {
	display:inline-block;
	padding:10px 20px;
	border-radius: 25px;
	border: 1px solid #d3cbc3;
	background-color: #ffffff;
	text-align:center;
	color: #444444;
	font-size: 0.75rem;
	font-weight: 600;
	line-height:1em;
	letter-spacing: 0.92px;
	text-decoration:none;
}
.gz-button.disabled {
	background-color: #a4a4a4;
	color:white;
	border-color:#a4a4a4;
}
.gz-button.gz-button-full {
	width:calc(100% - 42px);
}
.gz-button-light {
	font-weight: 500;
}
.gz-button-orange {
	background-color: #f7972e;
	border-color:#f7972e;
	color:white;
}
.gz-button-grey {
	border:none;
	background-color: #f6f5f3;
	color: #171c2a;
}
.gz-button-with-icon {
	padding:10px 20px;
}
.gz-button-with-icon span {
	vertical-align: middle;
}
.gz-button-with-icon .gz-icon {
	height:20px;
	margin-right:5px;
}
.gz-button-with-icon .gz-icon svg {
	height:100%;
	width:auto;
}
.gz-button-with-arrow {
	white-space: nowrap;
}
.gz-button-with-arrow:after {
    content: "";
    display: inline-block;
    position: relative;
    border: solid #f7972e;
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 5px;
}
@media screen and (min-width: 1000px) {
	.gz-button {
		font-size: 0.8125rem;
		letter-spacing: 1px;
	}
	.gz-button-with-arrow-mobile:after {
		display:none;
	}
}

/* ICONS */
.gz-icon {
	position:relative;
	font-size:0;
	display:inline-block;
	vertical-align:middle;
}
.gz-icon use {
	-webkit-transform-origin:center;
	    -ms-transform-origin:center;
	        transform-origin:center;
}
.gz-icon svg {
	display:block;
	width:100%;
}
[class^='gz-icon-arrow'],
[class*=' gz-icon-arrow'] {
	border: solid black;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 12%;
}
.gz-icon-arrow-orange {
	border-color:#f7972e;
}
.gz-icon-arrow-green{
	border-color:#88ba35;
}
.gz-icon-arrow-white{
    border-color:#ffffff;
}
.gz-icon-arrow-right {
	right:2px;
	-ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.gz-icon-arrow-left {
	left:2px;
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.gz-icon-close {
	width:100%;
	height:100%;
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
.gz-icon-close:before,
.gz-icon-close:after {
  content: "";
  position: absolute;
  background-color: #000000;
  top: 50%;
}
.gz-icon-close-white:before,
.gz-icon-close-white:after {
  background-color: #ffffff;
}
.gz-icon-close-grey:before,
.gz-icon-close-grey:after {
	background-color: #171c2a;
}
.gz-icon-close:before {
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  margin-top:-50%;
}
.gz-icon-close:after {
  left: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  margin-left:-50%;
}
.gz-icon-preparazione {
  -webkit-transform:rotate(-45deg);
      -ms-transform:rotate(-45deg);
          transform:rotate(-45deg);
}

/*** ***** ***/
/*** UTILS ***/
/*** ***** ***/
.gz-uppercase {
	text-transform: uppercase;
}
.gz-text-center {
	text-align:center;
}

/* FOOTER */
.gz-footer {
	background:white;
	padding:50px 0;
	border-top: 1px solid #e3e3e3;
}
.gz-footer .gz-logo-footer{
	width:166px;
	height:28px;
	text-indent:-9999em;
	background:url('/style/images/logo-giallozafferano.svg') 0 0 no-repeat;
	background-size: 100% auto;
	margin:0 auto 10px;
	text-indent:-9999em;
}
.gz-footer .gz-text-footer {
	font-size:0.75rem;
	font-weight: 300;
	line-height: 1.35em;
	color: #171c2a;
	text-align:center;
}
.gz-footer .gz-text-footer strong{
	color:#7B69A2;
	font-weight:600;
}
.gz-footer .gz-text-footer a {
	color:inherit;
}
.gz-footer .gz-text-footer ul {
	margin:5px 0 0;
}
.gz-footer .gz-text-footer ul li {
	display:inline-block;
	margin:0 5px;
}

.gz-stripmobile{
	position: fixed;
	bottom: -50px;
	width: 100%;
	height: 50px;
	background: #FFFFFF;
	z-index:1000;
	text-align: center;
	-webkit-transition: bottom .3s ease-in-out;
	-o-transition: bottom .3s ease-in-out;
	transition: bottom .3s ease-in-out;
}

.gz-stripmobile.gpt-stripmobile-rendered{
	bottom: 0;
	height: auto;
}

.gz-footer.gpt-stripmobile-rendered{
	padding-bottom: 100px;
}

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

	/****** CARD RICETTE VERTICALI ******/
	/** MA CON STILE DIVERSO IN MOBILE **/
	.gz-row .gz-card-small-mobile {
		-webkit-box-shadow: none;
		box-shadow: none;
		margin-top:10px;
	}
	.gz-row .gz-card-small-mobile:first-child {
		margin-top:0;
	}
	.gz-card.gz-card-small-mobile > a {
		height:auto;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-shadow: none;
		        box-shadow: none;
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-orient:horizontal;
		-webkit-box-direction:normal;
		    -ms-flex-direction:row;
		        flex-direction:row;
	}
	.gz-card-small-mobile .gz-label,
	.gz-card-small-mobile .gz-image-recipe.gz-video:before {
		display:none;
	}
	.gz-card-small-mobile .gz-image-recipe {
		width:70px;
	}
	.gz-card-small-mobile .gz-content-recipe-card {
		position:relative;
		width:calc(100% - 70px - 30px);
		padding:0 15px;
	}

	/* RIGA CON DUE O TRE COLONNE (desk e mobile) */
	.gz-row.gz-1col-mobile .gz-col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}

}

@media only screen and (min-width: 375px) {
    .gz-content-recipe-horizontal .gz-link-more-recipe {
        -webkit-box-ordinal-group:7;
            -ms-flex-order:6;
                order:6;
        height:18px;
        line-height:16px;
        background:white;
        padding:10px 0 6px;
        width:60px;
        position:absolute;
        bottom:0;
        right:15px;
        text-align:right;
        display:block;
    }
    .gz-content-recipe-horizontal .gz-link-more-recipe a {
        color: #f7972e;
        font-size: 0.6875rem;
        font-weight: 600;
        text-decoration: underline;
        display:inline-block;
        padding-right:12px;
        position:relative;
    }
    .gz-content-recipe-horizontal .gz-link-more-recipe a span {
        display:none;
    }
    .gz-content-recipe-horizontal .gz-link-more-recipe a:after {
        content:"";
        display:inline-block;
        position:absolute;
        right:0;
        top:5px;
        border: solid #a8a7a6;
        border-width: 0 2px 2px 0;
        width:6px;
        height:6px;
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
}

@media only screen and (min-width: 768px){
	.gz-content-recipe-card{
		padding: 10px 25px;
	}
	.gz-content-recipe-card .gz-data-recipe {
	    left: 25px;
	    right: 25px;
	}
}

@media only screen and (min-width: 1000px){
	.gz-title-section.gz-underline.gz-text-center-desktop{
		text-align: center;
	}

	.gz-title-section.gz-underline.gz-text-center-desktop:after{
		position: relative;
		left: 50%;
		margin-left: -25px;
	}

	/* layout structure styles from 1000px breakpoint */
	/* header styles */
    .gz-header{
		top: 0;
		width: 100%;
        height: 70px;
		transition: height .15s;
		-o-transition: height .15s;
		-moz-transition: height .15s;
		-webkit-transition: height .15s;
    }

	.gz-header-overlay-opened .gz-header{
		position: relative;
		top: 0;
		z-index: 1;
	}

	.gz-header.gz-header-sticky{
		position: fixed;
	}

	.hiding .gz-header.gz-header-sticky,
	.pushing .gz-header.gz-header-sticky{
		position: relative;
	}

	/* header container */
	.gz-header-container{
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
        margin: 0 10px 0 40px;
		max-width: calc(100% - 160px);
    }

	/* hamburger */
	.gz-header-hamburger{
		-webkit-box-ordinal-group: 1;
		    -ms-flex-order: 0;
		        order: 0;
        margin-left: 25px;
		margin-right: 0;
    }
	/* end hamburger */

	/* header logo */
	.gz-header-logo{
		margin-top: -15px;
		width: 260px;
		height: 46px;
	}
	/* end header logo */

	/* header navigation */
	.gz-header-nav{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        height: 40px;
		max-width: calc(100% - 592px);
		margin: 0 10px;
		overflow-y: visible;
		position: relative;
    }

	.gz-header-nav > ul{
		white-space: nowrap;
		text-align: left;
		float: left;
		overflow-x: hidden;
		width: auto;
		max-width: calc(100% - 60px);
	}

	.gz-header-nav > ul li{
		display: inline-block;
		position: relative;
		margin: 0 10px;
	}

	.gz-header-nav > ul .gz-header-has-children{
		padding-right: 15px;
	}

	.gz-header-nav > ul > li.gz-header-has-children,
	.gz-header-nav > ul > li.gz-header-has-children:before,
	.gz-header-nav > ul > li.gz-header-has-children:after{
		cursor: default;
	}

	.gz-header-nav > ul li > ul li.gz-header-has-children:after,
	.gz-header-nav > ul li > ul li.gz-header-has-children:before{
		top: 16px;
	}

	.gz-header-nav > ul li.selected > a:after{
		content: '';
	    position: absolute;
	    height: 2px;
	    width: 50%;
	    bottom: 0px;
	    left: 25%;
	    z-index: 1;
    }

	.gz-header-nav > ul li.gz-header-has-children.selected > a:after{
		width: calc((100% - 15px) / 2);
		left: calc((100% - 15px) / 4);
	}

	.gz-header-nav > ul li > ul{
		position: fixed;
		top: auto;
		left: auto;
		-webkit-transform: translateX(-15px);
		-ms-transform: translateX(-15px);
		transform: translateX(-15px);
		border-radius: 3px;
		max-height: 0;
	}

	.gz-header-nav > ul li > ul li:hover > ul{
		max-height: 0;
		overflow: hidden;
		left: -15px;
		opacity: 0;
	}

	.gz-header-nav > ul li:hover > ul,
	.gz-header-nav > ul li > ul li.opened > ul{
		max-height: 9999px;
		overflow: visible;
		left: auto;
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	.gz-header-nav > ul li > ul li > ul:before{
		height: calc(100% - 25px);
	}

	.gz-header-nav > ul li > ul li{
		width: 200px;
		line-height: 20px;
	}

	.gz-header-nav > ul li > ul li a{
		white-space: normal;
		line-height: inherit;
	}

	.gz-header-nav > ul li:hover > ul{
		max-height: calc(90vh - 160px);
		overflow-x: hidden;
		overflow-y: auto;
		transition: all .3s ease-out .1s, top .01s;
		-o-transition: all .3s ease-out .1s, top .01s;
		-moz-transition: all .3s ease-out .1s, top .01s;
		-webkit-transition: all .3s ease-out .1s, top .01s;
	}

	.gz-header-nav-overflow{
		position: absolute;
		right: 0;
		height: 50px;
		z-index: 15;
	}

	.gz-header-nav-overflow .gz-header-nav-overflow-menu{
		width: 50px;
		height: 40px;
		margin-left: -50px;
		position: relative;
		cursor: pointer;
		background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 15px);
		background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 15px);
		background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 15px);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF',GradientType=1 );
	}

	.gz-header-nav-overflow .gz-header-nav-overflow-menu span,
	.gz-header-nav-overflow .gz-header-nav-overflow-menu span:before,
	.gz-header-nav-overflow .gz-header-nav-overflow-menu span:after{
		height:4px;
		width:4px;
		position: absolute;
		border-radius: 50%;
		top: 17px;
		left: 27px;
		background-color: #171C2A;
        -webkit-box-shadow: 0 0 1px 0 #171C2A inset, 0 0 1px 0 #171C2A;
                box-shadow: 0 0 1px 0 #171C2A inset, 0 0 1px 0 #171C2A;
	}

	.gz-header-nav-overflow .gz-header-nav-overflow-menu span:after{
		content: '';
		left: 9px;
		top: 0;
	}

	.gz-header-nav-overflow .gz-header-nav-overflow-menu span:before{
		content: '';
		left: 18px;
		top: 0;
	}
	/* end header navigation */

	/* header search container */
	.gz-header-search-container .gz-header-container{
		margin: 0 15px 0 20px;
		max-width: none;
	}

	.gz-header-search-container,
    .gz-index .gz-header-search-container{
        position: relative;
        top: auto;
        left: auto;
        opacity: 1;
        width: 323px;
		border-radius: 3px;
		/*
        height: 38px;
        background-color: #F6F5F3;
        border: 1px solid #E3E3E3;
		*/
		height: 38px;
        background-color: #FFFFFF;
        border: 1px solid #F7972E;

        -webkit-transition: top 0s, opacity 0s;
        -o-transition: top 0s, opacity 0s;
        transition: top 0s, opacity 0s;
    }

	.gz-header-search-container .gz-header-search{
		display: block;
	}

    .gz-header-search-container > .gz-icon,
    .gz-header-search-container .gz-header-search-close{
        display: none;
    }

	.gz-header-search-close{
		position: relative;
		cursor: pointer;
		width: auto;
		margin-top: 0;
	}

	.gz-header-search-close:before,
	.gz-header-search-close:after{
		position: absolute;
		content: "";
		height: 2px;
		width: 100%;
		top: 14px;
		display: block;
		background-color: #A8A7A6;
	}

	.gz-header-search-close:before,
	.gz-header-overlay-close:before{
		-webkit-transform:rotate(45deg);
		-ms-transform:rotate(45deg);
		transform: rotate(45deg);
	}

	.gz-header-search-close:after,
	.gz-header-overlay-close:after{
		-webkit-transform:rotate(-45deg);
		-ms-transform:rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* end header search container */

	/* header actions */
	.gz-header-actions{
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
        margin-right: 25px;
    }

	.gz-header-actions .gz-header-icon{
	    transition: margin-top 0s;
		-o-transition: margin-top 0s;
		-moz-transition: margin-top 0s;
		-webkit-transition: margin-top 0s;
	}

    .gz-header-user-login{
        margin-top: 20px;
    }

    .gz-header-search{
        margin-top: -30px;
    }

	.gz-index .gz-tendina ul,
	.gz-tendina ul {
	    border-color: #F7972E;
	}

	.gz-tendina ul:before{
		width: 90%;
		left: calc(5% + 1px);
	}

	.gz-tendina ul li a{
		padding: 0 20px;
	}
	/* end header actions */
	/* end header container */

	/* header overlay */
	.gz-header-overlay{
		top: 0;
        left: 0;
	}

	.gz-header-overlay-container{
		right: 30px;
		width: 320px;
		padding: 0 30px;
	}

	.gz-header-overlay-container > *{
		margin-left: 0;
		width: 100%;
	}

	.gz-header-overlay-close{
		display: block;
	}

	.gz-header-overlay-nav{
		margin-top: 75px;
	}

	.gz-header-overlay-nav > ul li{
		padding-left: 25px;
	}
	/* end header overlay */

	/* home override */
	.gz-index .gz-header.gz-header-sticky{
		outline: 1px solid #e3e3e3;
	}

	.gz-index .gz-header-search-input::-webkit-input-placeholder {
		color: #A8A7A6;
	}

	.gz-index .gz-header-search-input:-ms-input-placeholder {
		color: #A8A7A6;
	}

	.gz-index .gz-header-search-input::-ms-input-placeholder {
		color: #A8A7A6;
	}

	.gz-index .gz-header-search-input::placeholder {
		color: #A8A7A6;
	}
	/* end home override */

	/* logged user override */
	.gz-logged .gz-header-overlay-nav{
		margin-top: 20px;
	}

	.gz-logged .gz-header-overlay-login{
		margin: 70px -30px 0;
		padding-left: 30px;
		padding-right: 30px;
	}
	/* end logged user override */
	/* end header styles */

	.gz-skin-visible .gz-page{
		background: none;
	}

	.gz-innerwrapper,
	.gz-content,
    .gz-column,
	.gz-footer{
		-webkit-transition: width .3s;
		-o-transition: width .3s;
		transition: width .3s;
	}

	.gz-content,
    .gz-column,
	.gz-footer{
		-webkit-transform-origin: center;
		    -ms-transform-origin: center;
		    transform-origin: center;
	}

    .gz-footer .gz-sitewidth,
    .gz-sitewidth{
		max-width: 950px;
	}

	.gz-wrapper,
	.gz-innerwrapper{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-ms-flex-line-pack: start;
		    align-content: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
        -webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: inherit;
		    -ms-flex-align: inherit;
		        align-items: inherit;
	}

	.gz-wrapper{
		padding: 0 25px;
		-webkit-transition: max-width .3s, margin-top 0s;
		-o-transition: max-width .3s, margin-top 0s;
		transition: max-width .3s, margin-top 0s;
	}

	.gz-skin-visible .gz-wrapper{
		z-index: 2;
	}

	body:not([class^="gz-index"]) .gz-wrapper,
	body:not([class^="gz-index"]).gz-header-overlay-opened .gz-wrapper,
	body:not([class^="gz-index"]).gz-skin-visible .gz-wrapper,
	body:not([class^="gz-index"]).gz-skin-visible.gz-header-overlay-opened .gz-wrapper{
		padding-top: 25px;
	}

    .gz-header-overlay-opened .gz-wrapper{
		margin-top: 0;
		padding-top: 0;
	}

	.gz-sticky .gz-wrapper,
	.gz-header-overlay-opened .gz-sticky .gz-wrapper{
		margin-top: 70px;
	}

    .gz-column{
        width: 300px;
    }

	.gz-content{
        width: 625px;
	}

	.gz-content.gz-contentwrapper{
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
        display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
        -ms-flex-line-pack: start;
            align-content: flex-start;
        -webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
	}

	.gz-content + .gz-sidebar.gz-column{
		margin: 0;
	}

	/* elevator */
	.gz-cabin-elevator-obstacle {
		margin-top: 1400px;
	}
	/* end elevator */

	.gz-skin-visible .gz-outerwrapper{
		margin-left: 0;
		margin-right: 0;
	}

	.gz-elevator{
		position: -webkit-sticky;
		position: sticky;
		top: 95px;
	}

    .gz-outerwrapper{
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .gz-skin-visible .gz-outerwrapper{
		margin-left: 0;
		margin-right: 0;
	}

    .gz-inner,
	.gz-innerdesktop{
	    margin: 0 25px;
	}

	.gz-outer{
		margin: 0 -25px;
	}

    .gz-skin-visible .gz-fullbg:before{
        left: -25px;
        right: -25px;
    }

	.gz-adv-slot{
		width: auto;
		margin-left: 0;
		margin-right: 0;
	}

	.gz-adv-slot.gz-adv-slot-adsense{
		width: 100%;
	}

	.gz-adv-slot .gz-adv-adsense{
		width: 100%;
		max-width: none;
		max-height: none;
		margin-left: 0;
		margin-right: 0;
	}
	/* end layout structure styles from 1000px breakpoint */

	/* TITLE SECTION */
	.gz-title-section {
		font-size: 1.625rem;
		font-weight:500;
		letter-spacing: 0.29px;
	}

	.gz-title-section small {
		font-size: 1rem;
	}

	/* CARD RECIPE */
	.gz-content-recipe-card {
		padding:15px 20px;
	}

	.gz-content-recipe-card .gz-title:not(.gz-title-small) {
		font-size: 1.25rem;
	}

	.gz-content-recipe-card .gz-data-recipe {
	    left: 20px;
	    right: 20px;
	}

	.gz-content-recipe-card .gz-data-recipe .gz-single-data-recipe {
	    height: 30px;
	}

	.gz-card.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-image-recipe {
		width:285px;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal {
		width:calc(100% - 285px - 40px);
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		    -ms-flex-direction:column;
		        flex-direction:column;
		padding:20px 20px;
		position:relative;
		max-height: none;
    	overflow: auto;
    	max-height:198px;
    	overflow:hidden;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-title {
		font-size: 1.75rem;
		line-height:1.1em;
		margin-top:0;
		max-height: none;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-title a:hover {
	    text-decoration:underline;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-category {
		font-weight: 400;
		line-height:1.2em;
		font-size: 0.75rem;
		letter-spacing: 1px;
		height: 30px;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-wrap-recipe-bottom {
	    position: absolute;
	    bottom: 0;
	    left: 20px;
	    right: 20px;
	    padding-bottom: 20px;
	    background: white;
	    height: 106px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-description {
		font-size: 0.9375rem;
		line-height: 1.35em;
		margin-top:auto;
		margin-bottom:10px;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-data-recipe {
		height:30px;
		padding:0;
		position:relative;
		bottom:auto;
		left:auto;
		right:auto;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-data-recipe .gz-single-data-recipe {
		font-weight: 400;
		font-size: 0.75rem;
		line-height: 1em;
		letter-spacing: -0.54px;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-col-flex {
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-col-flex .gz-col {
		margin-left: auto;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-col-flex.gz-double {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-col-flex.gz-double .gz-col {
		margin-left: 0;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-wrap-recipe-top {
		height:auto;
		-ms-flex-flow:wrap;
		    flex-flow:wrap;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-wrap-recipe-top .gz-category {
		-webkit-box-ordinal-group:1;
		    -ms-flex-order:0;
		        order:0;
		-webkit-box-flex:0;
		    -ms-flex:0 0 60%;
		        flex:0 0 60%;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-wrap-recipe-top .gz-data-recipe {
		-webkit-box-ordinal-group:2;
		    -ms-flex-order:1;
		        order:1;
		margin:0 0 0 auto;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}

	.gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-wrap-recipe-top .gz-title {
		-webkit-box-ordinal-group:3;
		    -ms-flex-order:2;
		        order:2;
		-webkit-box-flex:0;
		    -ms-flex:0 0 100%;
		        flex:0 0 100%;
		padding-top: 0;
		max-height: none;
	}

    .gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-link-more-recipe {
    	padding:0;
        height:30px;
        line-height:28px;
        position:relative;
        bottom:auto;
        right:auto;
    }
    .gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-link-more-recipe a {
        font-size: 0.875rem;
        font-weight:600;
    }
    .gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-link-more-recipe a:after {
        top:10px;
        border-width: 0 2px 2px 0;
        width:8px;
        height:8px;
    }

	.gz-card:not(.gz-card-horizontal) .gz-content-recipe-card .gz-data-recipe {
		padding: 5px 0 10px;
	}

	.gz-author-card-content .gz-title{
        font-size: 1rem;
    }

	.gz-author-card-content .gz-description {
		padding: 5px 25px 0;
	}

	/* RIGA CON DUE O TRE COLONNE (desk e mobile) */
	.gz-row.gz-2col-desktop .gz-col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 48%;
		        flex: 0 0 48%;
	}

	.gz-row.gz-3col-desktop .gz-col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 31%;
		        flex: 0 0 31%;
	}

	/* BUTTONS */
	.gz-button {
		padding:15px 40px;
	}
	.gz-button.gz-button-full {
		padding:15px 10px;
		width:calc(100% - 22px);
	}

	/* FOOTER */
	.gz-footer.gpt-stripmobile-rendered{
		padding-bottom: 100px;
	}
	.gz-footer .gz-sitewidth {
		max-width:970px;
	}
	.gz-footer .gz-logo-footer{
		width:166px;
		height:35px;
		margin:0;
	}
	.gz-footer .gz-text-footer {
		font-size: 0.8125rem;
		width:calc(100% - 200px);
		text-align:left;
	}
	.gz-footer .gz-text-footer ul li {
		margin:0 0 0 4px;
	}
	.gz-footer .gz-text-footer ul li:first-child {
		margin:0;
	}
}

@media only screen and (min-width: 1200px){
	/* header container */
	.gz-header-container{
		max-width: calc(100% - 170px);
    }

	/* hamburger */
	.gz-header-hamburger{
        margin-left: 30px;
    }
	/* end hamburger */

	/* header actions */
	.gz-header-actions{
        margin-right: 30px;
    }
	/* end header actions */

	/* layout structure styles from 1200px breakpoint */
	.gz-sitewidth{
		max-width: 1140px;
	}

	.gz-wrapper{
		padding: 0 30px;
	}

	body:not([class^="gz-index"]) .gz-wrapper,
	body:not([class^="gz-index"]).gz-header-overlay-opened .gz-wrapper,
	body:not([class^="gz-index"]).gz-skin-visible .gz-wrapper,
	body:not([class^="gz-index"]).gz-skin-visible.gz-header-overlay-opened .gz-wrapper{
		padding-top: 30px;
	}

    .gz-column{
		width: 360px;
	}

    .gz-column.leaf{
        padding-left: 30px;
    }

	.gz-column.gz-fullwidth{
		margin: 0;
	}

	.gz-content{
		width: 750px;
	}

	.gz-elevator{
		top: 100px;
	}

	.gz-inner,
	.gz-innerdesktop{
	    margin: 0 30px;
	}

	.gz-outer{
		margin: 0 -30px;
	}

    .gz-skin-visible .gz-fullbg:before{
        left: -30px;
        right: -30px;
    }
	/* end layout structure styles from 1200px breakpoint */

	.gz-card:not(.gz-card-horizontal) .gz-content-recipe-card .gz-data-recipe {
		padding: 18px 0 10px;
	}

	.gz-author-card-content .gz-description {
		padding: 5px 30px 0;
	}

    .gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-link-more-recipe {
        width:130px;
    }
    .gz-card-horizontal:not(.gz-card-horizontal-mobile) .gz-content-recipe-horizontal .gz-link-more-recipe a span {
        display:inline;
    }
}



/*** ********** ***/
/*** BENESSERE  ***/
/*** ********** ***/
body.gz-benessere .gz-title-section.gz-underline:after {
  background-color: #92bb42;
}
body.gz-benessere .gz-title-section span {
	color:#92bb42;
}

body.gz-benessere .gz-header-logo{
	background: url('/style/images/logo-giallozafferano-white.svg') 0 0 no-repeat;
	background-size: 100% 100%;
}

body.gz-benessere .gz-header{
	background: #FFFFFF url('/style/images/header-benessere-bg.png') center top no-repeat;
	background-size: cover;
	outline: inherit;
}

body.gz-benessere .gz-header:after{
	content: "";
	z-index: -1;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-image: -webkit-gradient(linear, left top, right top, from(#206320), color-stop(25%, #77a011), color-stop(39%, #40800a), to(#71a63b));
	background-image: -webkit-linear-gradient(left, #206320 0%, #77a011 25%, #40800a 39%, #71a63b 100%);
	background-image: -o-linear-gradient(left, #206320 0%, #77a011 25%, #40800a 39%, #71a63b 100%);
	background-image: linear-gradient(to right, #206320 0%, #77a011 25%, #40800a 39%, #71a63b 100%);
	opacity: .8;
}

body.gz-benessere .gz-header-search-input{
	color: #255921;
}

/*
body.gz-benessere .gz-header-search-input::-webkit-input-placeholder {
	color: #255921;
}

body.gz-benessere .gz-header-search-input:-ms-input-placeholder {
	color: #255921;
}

body.gz-benessere .gz-header-search-input::-ms-input-placeholder {
	color: #255921;
}

body.gz-benessere .gz-header-search-input::placeholder {
	color: #255921;
}
*/

body.gz-benessere .gz-header-hamburger.gz-header-icon{
	background: transparent;
}

body.gz-benessere .gz-header-hamburger:before,
body.gz-benessere .gz-header-hamburger:after,
body.gz-benessere .gz-header-has-children:before,
body.gz-benessere .gz-header-has-children:after,
body.gz-benessere .gz-header-hamburger span:after{
	background-color: #FFFFFF;
}

body.gz-benessere .gz-header-search-opened .gz-header-hamburger:before,
body.gz-benessere .gz-header-search-opened .gz-header-hamburger:after,
body.gz-benessere .gz-header-search-opened .gz-header-hamburger span:after{
	background-color: #255921;
}

body.gz-benessere .gz-header-search-close:before,
body.gz-benessere .gz-header-search-close:after{
	background-color: #255921;
}

body.gz-benessere .gz-header-nav ul li a{
	color: #FFFFFF;
	font-weight: 500;
}

body.gz-benessere .gz-header-nav ul li > ul li a{
	color: #171C2A;
}

body.gz-benessere .gz-header-overlay-nav > ul li > ul:before{
    background-color: #88ba35;
}

body.gz-benessere .gz-header-overlay-nav > ul li.gz-header-has-children:after,
body.gz-benessere .gz-header-overlay-nav > ul li.gz-header-has-children:before{
	background-color: #A8A7A6;
}

body.gz-benessere .gz-header-overlay-nav > ul li.selected > a{
	color: #F7972F;
}

body.gz-benessere .gz-header-overlay-login .gz-header-user-login a .gz-icon{
	background-color: #88ba35;
}

body.gz-benessere .gz-header-nav-overflow .gz-header-nav-overflow-menu{
	background: transparent;
	-webkit-filter: none;
	        filter: none;
}

body.gz-benessere .gz-header-nav-overflow .gz-header-nav-overflow-menu span,
body.gz-benessere .gz-header-nav-overflow .gz-header-nav-overflow-menu span:before,
body.gz-benessere .gz-header-nav-overflow .gz-header-nav-overflow-menu span:after{
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0 1px 0 #FFFFFF inset, 0 0 1px 0 #FFFFFF;
			box-shadow: 0 0 1px 0 #FFFFFF inset, 0 0 1px 0 #FFFFFF;
}

@media only screen and (min-width: 1000px){
	body.gz-benessere .gz-header-search-container{
		height: 38px;
		background-color: #F6F5F3;
		border: 1px solid #E3E3E3;
	}

	body.gz-benessere .gz-tendina ul{
		background-color: #F6F5F3;
		border-color: #E3E3E3;
	}

	body.gz-benessere .gz-header-search-opened .gz-header-hamburger:before,
	body.gz-benessere .gz-header-search-opened .gz-header-hamburger:after,
	body.gz-benessere .gz-header-search-opened .gz-header-hamburger span:after{
		background-color: #FFFFFF;
	}
}



/*** ************ ***/
/*** FLUID MARGIN ***/
/*** ************ ***/
/* base unit desktop: 10px; */
/* base unit mobile 6px */

.gz-mBottom1x {
	margin-bottom:6px;
}
.gz-mBottom2x {
	margin-bottom:12px;
}
.gz-mBottom3x {
	margin-bottom:18px;
}
.gz-mBottom4x {
	margin-bottom:24px;
}
.gz-mBottom5x {
	margin-bottom:30px;
}
.gz-mTop2x {
	margin-top:12px;
}
.gz-mTop3x {
	margin-top:18px;
}
.gz-mTop5x {
	margin-top:30px;
}
.gz-pTop2x {
	padding-top:12px;
}
.gz-pTop3x {
	padding-top:18px;
}
.gz-pTop4x {
	padding-top:24px;
}
.gz-pTop5x {
	padding-top:30px;
}
.gz-pBottom2x {
	padding-bottom:12px;
}
.gz-pBottom3x {
	padding-bottom:18px;
}
.gz-pBottom5x {
	padding-bottom:30px;
}

@media screen and (min-width: 1000px) {
	.gz-mBottom1x {
		margin-bottom:10px;
	}
	.gz-mBottom2x {
		margin-bottom:20px;
	}
	.gz-mBottom3x {
		margin-bottom:30px;
	}
	.gz-mBottom4x {
		margin-bottom:40px;
	}
	.gz-mBottom5x {
		margin-bottom:50px;
	}
	.gz-mTop2x {
		margin-top:20px;
	}
	.gz-mTop3x {
		margin-top:30px;
	}
	.gz-mTop5x {
		margin-top:50px;
	}
	.gz-pTop2x {
		padding-top:20px;
	}
	.gz-pTop3x {
		padding-top:30px;
	}
	.gz-pTop4x {
		padding-top:40px;
	}
	.gz-pTop5x {
		padding-top:50px;
	}
	.gz-pBottom2x {
		padding-bottom:20px;
	}
	.gz-pBottom3x {
		padding-bottom:30px;
	}
	.gz-pBottom5x {
		padding-bottom:50px;
	}
}

.gz-noMargin {
	margin:0;
}

.gz-hide-mobile {
	display:none;
}

@media screen and (min-width: 1000px) {
	.gz-hide-mobile {
		display:inline-block;
	}
}

@media screen and (min-width: 1000px) {
	.gz-hide-desktop {
		display: none!important;
	}
}

.advCollapse {
    height: 0;
    overflow: hidden;
}
.av-pushdown-wrapper {
    background-color: #000000;
}
.av-pushdown-wrapper .av-push-static.active{
	z-index: 100;
}
.av-pushdown-wrapper .av-push-static.active .av-push-flying.inflight {
    bottom: 60px;
}



/* ****** */
/* MODALE */
/* ****** */
body.gz-modal-open {
    position: absolute;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}
.gz-overlay-modal {
    visibility: hidden;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999999;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgb(23, 28, 42);
    background-color: rgba(23, 28, 42, .8);
    -webkit-transition: visibility .4s ease-in-out, opacity .4s ease-in-out;
    -o-transition: visibility .4s ease-in-out, opacity .4s ease-in-out;
    transition: visibility .4s ease-in-out, opacity .4s ease-in-out;
    text-align:center;
}
body.gz-modal-open .gz-overlay-modal {
    visibility: visible;
    opacity: 1;
}
.gz-modal-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
	left: 0;
	height:100%;
    z-index: 1000000;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
body.gz-modal-open .gz-modal-container.gz-open {
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.gz-modal {
    overflow:hidden;
    width:100%;
    height:100%;
    background: white;
    margin: auto;
}
.gz-modal .gz-modal-content {
	position:absolute;
	padding: 60px 15px 50px;
	height: calc(100% - 110px);
	width: calc(100% - 30px);
    overflow: scroll;
}
.gz-modal .gz-modal-header {
    position:absolute;
    top:0;
    width:calc(100% - 20px);
    height:calc(50px - 20px);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    padding:10px 10px;
    background:white;
    z-index:1;
}
.gz-modal .gz-modal-header:after {
    content:"";
    display:block;
    width:100%;
    height:3px;
    position:absolute;
    bottom:0;
    left:0;
    background-color: #f6f5f3;
    border-top: 1px solid #e3e3e3;
}
.gz-modal .gz-modal-footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:50px;
}
.gz-modal .gz-modal-header .gz-title-modal {
    color: #171c2a;
    font-size: 1rem;
    font-weight: 500;
}
.gz-modal .gz-modal-header .gz-title-modal .gz-icon {
    width:24px;
    vertical-align: sub;
}
.gz-modal .gz-modal-header .gz-close-modal {
    margin-left:auto;
    color: #171c2a;
    font-size: 1rem;
    font-weight: 500;
    vertical-align: sub;
}
@media only screen and (min-width: 768px) {
	.gz-modal {
        width:100%;
        max-width: 900px;
        height:auto;
        min-height: 200px;
        max-height:100vh;
        -webkit-box-shadow: 0 5px 10px rgba(45, 34, 60, 0.12);
                box-shadow: 0 5px 10px rgba(45, 34, 60, 0.12);
        border-radius: 3px;
    }
	.gz-modal-big .gz-modal {
		max-width: 1140px;
	}
	.gz-modal-small .gz-modal {
		max-width: 700px;
	}
    .gz-modal .gz-modal-header {
        position:relative;
        width:calc(100% - 80px);
        padding:15px 10px;
        margin:0 auto 10px;
    }
    .gz-modal .gz-modal-content {
		padding:20px 40px;
		position:relative;
		height: auto;
		width:auto;
        overflow: auto;
    }
    .gz-modal .gz-modal-header,
    .gz-modal .gz-modal-footer {
        position:relative;
        top:auto;
        bottom:auto;
        height:auto;
    }
}

/* ********* */
/* NOTIFICHE */
/* ********* */
.gz-notification {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translate(-50%, 100px);
      -ms-transform: translate(-50%, 100px);
          transform: translate(-50%, 100px);
  width: 90%;
  max-width: 700px;
  background: rgb(122, 107, 161);
  z-index: 10000;
  text-align: center;
  border-radius: 2px;
  color: white;
  padding: 25px;
  line-height: 1.2em;
  font-size: 18px;
  -webkit-transition: -webkit-transform 1s cubic-bezier(.91,.8,.54,1.39);
  transition: -webkit-transform 1s cubic-bezier(.91,.8,.54,1.39);
  -o-transition: transform 1s cubic-bezier(.91,.8,.54,1.39);
  transition: transform 1s cubic-bezier(.91,.8,.54,1.39);
  transition: transform 1s cubic-bezier(.91,.8,.54,1.39), -webkit-transform 1s cubic-bezier(.91,.8,.54,1.39);
}
.gz-notification.visible {
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.gz-notification a {
  color: #fff;
}
.gz-notification .gz-close-notification {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  cursor:pointer;
}
.gz-notification .gz-close-notification:hover {
  opacity: 1;
}
.gz-notification .gz-close-notification:before,
.gz-notification .gz-close-notification:after {
  position: absolute;
  left: 10px;
  content: ' ';
  height: 21px;
  width: 1px;
  background-color: #fff;
}
.gz-notification .gz-close-notification:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gz-notification .gz-close-notification:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}



/* ************* */
/* FORM ELEMENTS */
/* ************* */
.gz-input,
.gz-textarea {
	font-family:'Montserrat';
}

/* ********************* */
/* DESCRIPTION WITH MORE */
/* ********************* */
.gz-description-with-more {
    margin: 10px 0 30px;
    padding: 0;
    line-height: 1.4em;
    max-height: 7em;
    overflow: hidden;
    position: relative;
    -webkit-transition: max-height .8s;
    -o-transition: max-height .8s;
    transition: max-height .8s;
}
.gz-description-with-more.collapsible:before {
    content:"";
    position: absolute;
    bottom: 0;
    right: 0;
    height:2.8em;
    width:100%;
    pointer-events: none;
    background:white;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),color-stop(90%, rgba(255,255,255,1)),to(rgba(255,255,255,1)));
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.gz-description-with-more .read-more {
    position: absolute;
    bottom: 0;
    right: 0;
    height:1.4em;
    width:100%;
    text-align:right;
}
.gz-description-with-more .read-more a {
	background: white;
	padding: 0 0 0 10px;
}
.gz-description-with-more.collapsible.opened:before {
    background:none;
}
@media only screen and (min-width: 1000px) {
	.gz-description-with-more {
	    line-height: 1.8em;
	    max-height: 9em;
	}
	.gz-description-with-more.collapsible:before {
	    height:3.6em;
	}
	.gz-description-with-more .read-more {
	    height:1.8em;
	}
}

/* ********* */
/* NOT FOUND */
/* ********* */
.notfound {
	width:100%;
	min-height:400px;
}
.notfound p {
  color: #171c2a;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55em;
}
.notfound a {
  color: #f7972e;
  font-weight: 600;
  text-decoration: underline;
}
.notfound em,
.notfound strong {
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
	.notfound {
		min-height:500px;
	}
	.notfound p {
		font-size: 1.125rem;
		line-height: 1.65em;
	}
}

@supports (-webkit-line-clamp: 3) {

	.gz-card-horizontal:not(.gz-card-generic_adv) .gz-content-recipe-horizontal .gz-title {
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
	}
    @media only screen and (min-width: 1000px) {
    	.gz-card-horizontal:not(.gz-card-generic_adv):not(.gz-card-simple_content) .gz-content-recipe-horizontal .gz-description {	        overflow: hidden;
	        -o-text-overflow: ellipsis;
	           text-overflow: ellipsis;
	        display: -webkit-box;
	        -webkit-line-clamp: 3;
	        -webkit-box-orient: vertical;
    	}
		.gz-card-horizontal:not(.gz-card-generic_adv) .gz-content-recipe-horizontal .gz-title {
	        -webkit-line-clamp: 2;
		}
    }
	
	/* generic class for line-clamp */
	.gz-line-clamp {
		overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
	}
	.gz-line-clamp-3 {
		-webkit-line-clamp: 3;
	}
	.gz-line-clamp-2 {
		-webkit-line-clamp: 2;
	}
	.gz-line-clamp-1 {
		-webkit-line-clamp: 1;
	}
	@media only screen and (min-width: 1000px) {
		.gz-line-clamp-3-desktop {
			-webkit-line-clamp: 3;
		}
		.gz-line-clamp-2-desktop {
			-webkit-line-clamp: 2;
		}		
	}
}
