/* 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,
input[type="submit"],
input[type="button"] {
	cursor:pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
}
/* 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
*/

body {
    font: 400 16px/25px "Barlow", sans-serif;
	color: #232425;
    -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: #2A3B58;
    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;
}

b,
strong{
	font-weight: 700;
}

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

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

.sal-icon {
	font-size:0;
	-webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    height: 30px;
	width: 30px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sal-icon use {
	-webkit-transform-origin:center;
	        -ms-transform-origin:center;
	    transform-origin:center;
}

.sal-icon svg {
	width:100%;
	margin: 0;
    padding: 0;
}

/* 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;
	outline: 1px solid #ECEEF1;
}

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

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

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

.sal-header{
    position: relative;
	background-color: #FFFFFF;
	width: 100vw;
	height: 70px;
	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;
}

/* hamburger */
.sal-header-hamburger.sal-header-icon{
	width: 24px;
}

.sal-header-hamburger{
	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;
}

.sal-header-hamburger:before,
.sal-header-hamburger:after,
.sal-header-hamburger span:after{
	position: absolute;
	content: '';
	height: 3px;
	width: 100%;
	border-radius: 1.5px;
	display: block;
	background-color: #2A3b58;
}

.sal-header-hamburger:before,
.sal-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;
	-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;
	-o-transition: transform .3s ease-in-out, top .3s ease-in-out .3s;
	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;
}

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

.sal-header-hamburger:after{
	top: 16px;
}

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

.sal-header-container{
    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 */
.sal-header-logo{
    width: 160px;
	height: 38px;
	background: url('images/logo-mypersonaltrainer.svg') 0 0 no-repeat;
    background-size:100% 100%;
}

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

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

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

.sal-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;
}

.sal-header-nav{
	font-size: 0.875rem; /* 14px */
}
/* end navigation */

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

.sal-header-search-container{
    position: absolute;
	background-color: #FFFFFF;
    top: -70px;
	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;
}

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

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

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

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

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

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

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

.sal-header-search-input{
	background: transparent;
    font: 500 17px/40px "Barlow", sans-serif;
	color: #2a3b58;
    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);
}

.sal-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;
}

.sal-header-search-input::-webkit-input-placeholder {
	color: #B3B8C3;
}

.sal-header-search-input:-ms-input-placeholder {
	color: #B3B8C3;
}

.sal-header-search-input::-ms-input-placeholder {
	color: #B3B8C3;
}

.sal-header-search-input::placeholder {
	color: #B3B8C3;
}

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

.sal-header-search-container .sal-header-search{
	background-color: transparent;
    margin-top: 0;
	border: 0;
	display: none;
	cursor: pointer;
}

.sal-header-search-container.sal-header-search-active .sal-header-search-input{
	font-weight: 700;
}

.sal-header-search-container.sal-header-search-active .sal-header-search-input,
.sal-header-search-container.sal-header-search-active .sal-header-search{
	position: relative;
	z-index: 1;
}
/* end search container */

/* header actions (icons) */
.sal-header-actions{
    margin-right: 5vw;
    height: 100%;
    overflow: hidden;
}

/* header search icon */
.sal-header-search{
    background-color: transparent;
    margin-top: 20px;
	padding: 0;
	width: 30px;
}

.sal-header-search > .sal-icon{
	width: 24px;
}
/* end header search icon */

/* close icon */
.sal-header-search-close{
	position: relative;
	cursor: pointer;
	width: 30px;
}

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

.sal-social{
	font-family: "Barlow Condensed", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.sal-social-channel{
	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;
	min-height: 65px;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 18px;
}

.sal-social .sal-icon{
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40px;
	        flex: 0 0 40px;
	width: 40px;
	margin-bottom: auto;
}


.sal-crosslinks{
	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-wrap: wrap;
	    flex-wrap: wrap;
}

[class^="sal-crosslinks-logo"]{
	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;
	height: 80px;
	border-bottom: 1px solid #ECEEF1;
}

[class^="sal-crosslinks-logo"]:last-child{
	border-bottom: 0 none;
}

[class^="sal-crosslinks-logo"] a{
	height: 35px;
	text-indent: -9999px;
}

.sal-crosslinks-logo-myp a{
	width: 144px;
	background: url('images/logo-mypersonaltrainer.svg') 0 0 no-repeat;
	background-size:100% 100%;
}

.sal-crosslinks-logo-farmacoecura a{
	width: 108px;
	background: url('images/logo-farmacoecura.svg') 0 0 no-repeat;
	background-size:100% 100%;
}

.sal-crosslinks-logo-starbene a{
	width: 100px;
	height: 28px;
	background: url('images/logo-starbene.svg') 0 0 no-repeat;
	background-size:100% 100%;
}

/* header overlay */
.sal-header-overlay{
	background-color: rgba(0, 218, 214, 0.95);
	font-weight: 400;
	opacity: 0;
	overflow: hidden;
	position: fixed;
	top: 70px;
	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;
}

.sal-header-overlay-close{
	display: none;
}

.sal-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;
}

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

.sal-header-overlay-container [class^="sal-crosslinks-logo"]{
	border-bottom: 0 none;
	height: 70px;
}

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

/* header overlay navigation */
.sal-header-overlay-nav ul{
	font-family: "Barlow Condensed", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.sal-header-overlay-nav li{
	font-size: 1.375rem;
	font-weight: 700;
	padding: 0 5vw;
}

.sal-header-overlay-nav li .sal-section-name{
	position: relative;
	line-height: 40px;
	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;
}

.sal-header-overlay-nav li .sal-section-name{
	font-style: normal;
	font-weight: 700;
	color: #2A3B58;
}

.sal-header-overlay-nav li .sal-section-name:after{
	content:"";
	opacity: 0;
	position: absolute;
	height: 3px;
	border-radius: 1.5px;
	left: 0;
	right: 100%;
	bottom: -5px;
	transition: opacity .15s ease-in-out, right .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out, right .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out, right .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out, right .15s ease-in-out;
}

.sal-header-overlay-nav li .sal-section-name:hover:after,
.sal-header-overlay-nav li.selected .sal-section-name:after{
	opacity: 1;
	right: 0;
}
/* end header overlay navigation */

.sal-header-overlay-container .sal-social{
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
}

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

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

.sal-header-overlay-opened .sal-header-hamburger:before,
.sal-header-overlay-opened .sal-header-hamburger:after{
	-webkit-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;
	-o-transition: top .3s ease-in-out, 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;
}

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

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

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

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

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

.sal-header-overlay-opened .sal-header-overlay-container{
	right: 0;
}
/* end header overlay opened styles */
/* end header overlay */
.sal-tendina {
    position: absolute;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
    left: -1px;
    top: calc(100% - 70px);
    background: #FFFFFF;
    width: calc(100% + 2px);
    display: none;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	-webkit-box-shadow: 0 5px 10px rgba(42, 59, 88, 0.18);
	        box-shadow: 0 5px 10px rgba(42, 59, 88, 0.18);
}

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

.sal-tendina ul {
	padding: 70px 0 10px;
    list-style-type: none;
    border: 1px solid #e6e8ed;
    border-top: none;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

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

.sal-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;
    max-height: 40px;
	min-height: 20px;
	padding: 8px 0;
    width: 100%;
	font-size: 1rem;
}

.sal-tendina ul li:first-child{
	padding-top: 15px;
}

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

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

/* home override */
.sal-index .sal-header,
.sal-leaf .sal-header{
    height: 120px;
}

.sal-index .sal-header > .sal-header-container,
.sal-leaf .sal-header > .sal-header-container{
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 16px;
}

.sal-index .sal-header-hamburger,
.sal-leaf .sal-header-hamburger{
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 25px;
}

.sal-index .sal-header-search,
.sal-leaf .sal-header-search{
    margin-top: -30px;
}

.sal-index .sal-header-search-container,
.sal-leaf .sal-header-search-container{
    color: #2a3b58;
	background-color: #F1F3F5;
    top: 70px;
    width: 90vw;
    left: 5vw;
    opacity: 1;
    height: 40px;
    border-radius: 20px;
	-webkit-transition: top 0s, opacity 0s;
    -o-transition: top 0s, opacity 0s;
    transition: top 0s, opacity 0s;
}

.sal-index .sal-header-search-container .sal-header-search,
.sal-leaf .sal-header-search-container .sal-header-search{
	margin-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px;
	width: 30px;
}

.sal-index .sal-header-search-container .sal-header-search > .sal-icon,
.sal-leaf .sal-header-search-container .sal-header-search > .sal-icon{
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 18px;
	        flex: 0 0 18px;
	width: 18px;
}

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

.sal-index .sal-header-search-input::-webkit-input-placeholder,
.sal-leaf .sal-header-search-input::-webkit-input-placeholder {
	color: #B3B8C3;
}

.sal-index .sal-header-search-input:-ms-input-placeholder,
.sal-leaf .sal-header-search-input:-ms-input-placeholder {
	color: #B3B8C3;
}

.sal-index .sal-header-search-input::-ms-input-placeholder,
.sal-leaf .sal-header-search-input::-ms-input-placeholder {
	color: #B3B8C3;
}

.sal-index .sal-header-search-input::placeholder,
.sal-leaf .sal-header-search-input::placeholder {
	color: #B3B8C3;
}

.sal-index .sal-tendina,
.sal-leaf .sal-tendina{
	top: calc(100% - 40px);
}

.sal-index .sal-tendina,
.sal-leaf .sal-tendina,
.sal-index .sal-tendina ul,
.sal-leaf .sal-tendina ul{
	border-radius: 20px;
}

.sal-index .sal-tendina ul,
.sal-leaf .sal-tendina ul{
	padding-top: 40px;
	border-top: 1px solid #e6e8ed;
}

.sal-index .sal-tendina ul:before,
.sal-leaf .sal-tendina ul:before{
	top: 40px;
	height: 1px;
	width: 80vw;
	left: 5vw;
}

.sal-index .sal-header-search-container.sal-header-search-active,
.sal-leaf .sal-header-search-container.sal-header-search-active{
	background-color: #FFFFFF;
	border: 1px solid #e6e8ed;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.sal-index .sal-header-search-container.sal-header-search-active .sal-header-container,
.sal-leaf .sal-header-search-container.sal-header-search-active .sal-header-container{
	margin: 0 calc(5vw - 1px);
}
/* end home override */

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

/* layout structure */
.sal-page{
    background-color: #FFFFFF;
	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;
}

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

.sal-wrapper,
.sal-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;
}

.sal-innerwrapper{
	width: 100%;
}

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

.sal-header-overlay-opened .sal-wrapper{
	padding-top: 120px;
}

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

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

.sal-fullwidth{
	width: 100%;
}

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

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

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

/* IMAGE CREDITS */
.sal-image-credits:before {
    content: attr(data-credits-label);
}

.sal-image-credits {
    text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: rgba(35, 36, 37, 0.6);
    font-size: 0.75rem;
    line-height: 14px;
    position: absolute;
    bottom: 10px;
    right: 5vw;
}

.sal-image-credits.sal-rotate90 {
    -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    bottom: 50px;
    right: -20px;
}
/* END IMAGE CREDITS */

/* CONTAINER VIDEO */
.sal-content .sal-container-video{
    width: 90vw;
    height: calc((90vw * 9) / 16);
}

.sal-container-video img,
.sal-container-video video,
.sal-container-video iframe{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sal-container-video .youtube{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.sal-container-video .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    max-width:none;
    max-height:none;
    display:block;
    border: 0;
}
/* END CONTAINER VIDEO */

.sal-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;
}

.sal-elevator{
	width: 300px;
}

.sal-adv-slot{
	clear: both;
	width: 100vw;
	margin-left: -5vw;
	margin-right: -5vw;
}

.sal-inner .sal-adv-slot{
	margin-left: -10vw;
	margin-right: -10vw;
}

.sal-adv-slot .sal-adv-promobox,
.sal-adv-slot .sal-adv-gpt,
.sal-adv-slot .sal-adv-adsense,
.sal-adv-slot .sal-adv-outbrain,
.sal-adv-slot .sal-adv-native-sidebar,
.sal-sidebar .sal-adv-slot{
	width: 300px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.sal-adv-slot.sal-adv-slot-full{
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 100%;
	        flex: 1 1 100%;
}

.sal-adv-slot.sal-adv-slot-full .sal-adv-adsense{
	width: 100%;
	max-width: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.sal-adv-slot.sal-honcode > [class^="sal-adv"]{
	position: relative;
	border: 1px solid #ECEEF1;
	background-color: #FFFFFF;
}

.sal-adv-slot.sal-honcode > [class^="sal-adv"]:before{
	content: "Pubblicità";
	display: block;
	color: #B3B8C3;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 35px;
	text-align: center;
}

.sal-adv-slot.sal-honcode.sal-adv-slot-full > [class^="sal-adv"]{
	border-left: 0 none;
	border-right: 0 none;
}

.sal-adv-slot .sal-adv-inread,
.sal-adv-slot .sal-adv-native{
	width: 90vw;
	margin-left: auto;
	margin-right: auto;
}

.sal-inner .sal-adv-slot .sal-adv-inread{
	width: 80vw;
}

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

.sal-adv-slot .sal-adv-outbrain a{
	border-bottom: 0 none;
}

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

.sal-disclaimer{
	font-size: 0.875em;
    line-height: 1.5em;
	color: #2A3B58;
	position: relative;
	overflow: hidden;
	background-color: #F7F8FA;
	padding: 50px 5vw 15px;
}

.sal-disclaimer:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -10px;
    width: calc(120px + 5vw);
    height: 40px;
    border-radius: 0 0 10px 0;
    -webkit-transform: skew(-25deg);
            -ms-transform: skew(-25deg);
        transform: skew(-25deg);
	background-color: #ECEEF1;
}

.sal-disclaimer:after{
	content: attr(data-alert);
	font-family: "Barlow Condensed", sans-serif;
	display: block;
	position: absolute;
	top: 0;
	left: 5vw;
	line-height: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	text-transform: uppercase;
}

.sal-footer-copy{
	text-align: center;
	font-size: 0.938rem;
}

.sal-footer-menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-size: 0.938rem;
}

.sal-footer-menu li{
	padding: 0 5px;
}

.sal-footer-menu a{
	text-decoration: underline;
}
/* end layout structure */

/* UTILS */
.advCollapse {
    height: 0;
    overflow: hidden;
}

.av-pushdown-wrapper {
    background-color: #000000;
}

.barlow {
	font-family: 'Barlow', sans-serif;
}

.barlow-cond {
	font-family: 'Barlow Condensed', sans-serif;
}

/* section colors */
.sal-section-name,
.sal-section-name a{
	color: #00DAD6;
}

.sal-fitness .sal-section-name,
.sal-fitness .sal-section-name a{
	color: #98F00F;
}

.sal-yoga .sal-section-name,
.sal-yoga .sal-section-name a{
	color: #A8A4D4;
}

.sal-alimentazione .sal-section-name,
.sal-alimentazione .sal-section-name a{
	color: #FD6E5F;
}

.sal-special .sal-section-name,
.sal-special .sal-section-name a {
	font-weight: 400;
}

.sal-section-name:after{
	background-color: #00DAD6;
}

.sal-fitness .sal-section-name:after{
	background-color: #98F00F;
}

.sal-yoga .sal-section-name:after{
	background-color: #A8A4D4;
}

.sal-alimentazione .sal-section-name:after{
	background-color: #FD6E5F;
}

.sal-heading-content,
.sal-heading-content:before,
.sal-heading-content:after{
	background-color: #00DAD6;
}

.sal-alimentazione .sal-heading-content,
.sal-alimentazione .sal-heading-content:before,
.sal-alimentazione .sal-heading-content:after{
	background-color: #FD6E5F;
}

.sal-fitness .sal-heading-content,
.sal-fitness .sal-heading-content:before,
.sal-fitness .sal-heading-content:after{
	background-color: #98F00F;
}

.sal-yoga .sal-heading-content,
.sal-yoga .sal-heading-content:before,
.sal-yoga .sal-heading-content:after{
	background-color: #A8A4D4;
}
/* end section colors */

.sal-section-subheading {
    font-size: 1.313rem;
    font-weight: 700;
    color: #2A3B58;
    line-height: 25px;
}

.sal-line-clamp {
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* separator and view more */
.sal-list-separator {
	position: relative;
	color: #B3B8C3;
	font-size: 1.375rem;
	font-weight: 500;
	text-transform: uppercase;
	width: 100%;
	min-height: 30px;
	line-height: 1.1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	        flex-flow: column nowrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.sal-list-separator:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ECEEF1;
}

/* .sal-list-heading span { */
.sal-list-heading .sal-list-heading-content {
	text-align: center;
	background: #FFFFFF;
	padding-right: 5vw;
	padding-left: 5vw;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1  auto;
	        flex: 1 1  auto;
	position: relative;
	z-index: 2;
}

.sal-list-viewmore {
	height: 50px;
	text-align: center;
}

.sal-list-viewmore-button {
	width: 260px;
	height: 40px;
	border-radius: 20px;
	border: none;
	background-color: #00dad6;
	color: #ffffff;
	font-family: "Barlow Condensed";
	font-size: 19px;
	font-weight: 600;
	line-height: 38px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 8px 8px 15px rgba(253, 110, 95, 0);
	      box-shadow: 8px 8px 15px rgba(253, 110, 95, 0);
	-webkit-transition: color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
	transition: color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
	-o-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
	transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
	transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
}

.sal-list-viewmore-button:hover {
	-webkit-box-shadow: 0px 0px 15px rgba(253, 110, 95, 0.15);
	      box-shadow: 0px 0px 15px rgba(253, 110, 95, 0.15);
	color: rgba(255,255,255,.85);
}
/* end separator and view more */
.sal-blurredbg{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5px;
	-webkit-filter: blur(5px);
    filter: blur(5px) opacity(0.5);
	background: no-repeat center center;
	background-size: 100%;
}

.sal-section-name {
	font-weight: 600;
    font-style: italic;
}

.sal-author-container{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.sal-author-pictorial,
.sal-author-pictorial picture{
	position: relative;
}

.sal-author-pictorial picture,
.sal-author-pictorial img{
	display: block;
	width: 100%;
	height: 100%;
}

.sal-author-pictorial img{
	position: relative;
	z-index: 1;
	border-radius: 15px;
}

.sal-author-pictorial .sal-blurredbg{
	border-radius: 15px;
}

.sal-author-name a{
	font-weight: 700;
}

.sal-author-name:before{
    content: attr(data-authorattribute);
    font-weight: 400;
}

.sal-heading{
	overflow: hidden;
	width: 100vw;
	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;
}

.sal-heading-content-wrapper{
	position: relative;
	z-index: 1;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.sal-heading-content:before{
	content: "";
	display: block;
    position: absolute;
	z-index: 0;
	top: 0;
    left: -45px;
    width: 100%;
    height: 45px;
	border-top-right-radius: 10px;
    -webkit-transform-origin: top right;
            -ms-transform-origin: top right;
        transform-origin: top right;
    -webkit-transform: skew(45deg, 0deg);
    -ms-transform: skew(45deg, 0deg);
        transform: skew(45deg, 0deg);
}

.sal-heading-content:after{
	display: none;
}

.sal-heading-content{
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #2A3B58;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-top: 45px;
	height: 100%;
	font-size: 2rem;
    line-height: 35px;
    font-weight: 700;
	padding: 0 10vw;
}

.sal-heading-image{
	position: relative;
	z-index: 0;
}

.sal-heading-image img{
    width: 100vw;
    height: auto;
    display: block;
}

.sal-heading-content-wrapper .sal-heading-content > *{
    position: relative;
    z-index: 1;
	top: -15px;
}

.sal-heading-breadcrumb{
	-webkit-box-ordinal-group: 1;
	    -ms-flex-order: 0;
	        order: 0;
}

.sal-heading-tag{
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}

.sal-heading .sal-section-name{
	color: #FFFFFF;
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}

.sal-heading-title{
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
	padding-bottom: 15px;
}

.sal-heading .sal-author-container{
	margin-top: auto;
	-webkit-box-ordinal-group: 5;
	    -ms-flex-order: 4;
	        order: 4;
}

.sal-heading .sal-container-video{
    width: 100vw;
    height: calc((100vw * 9) / 16);
}

.sal-videobtn:before {
	content: '';
	background-color: rgba(42, 59, 88, 0.4);
	border-radius: 50%;
	border: 2px solid #fff;
	width: 30px;
	height: 30px;
	position: absolute;
	z-index: 2;
	right: 10px;
	bottom: 10px;
}

.sal-videobtn:after {
	content: '';
	background: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' width='12' height='14' viewBox='0 0 12 14'><g><g><path fill='white' d='M.5 0l11.05 7L.5 14z'/></g></g></svg>") no-repeat center center;
	width: 30px;
	height: 30px;
	position: absolute;
	z-index: 3;
	right: 10px;
	bottom: 12px;
}

.sal-generic-searchform {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.sal-generic-searchform input[type="button"],
.sal-generic-searchform input[type="submit"],
.sal-generic-searchform button[type="submit"] {
    height: 40px;
    color: #ffffff;
    border-radius: 20px;
    background-color: #00DAD6 !important;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 38px;
	padding: 0 20px;
}

.sal-generic-searchform input[type="submit"],
.sal-generic-searchform button[type="submit"] {
    border: 1px solid #00DAD6;
	background-color: #FFFFFF;
}

.sal-generic-searchform input[type="text"] {
    border: none;
    border-radius: 20px;
    height: 40px;
    padding: 0 20px;
	margin: 0 0 10px;
}

.sal-generic-searchform input {
    border: 1px solid #E6E8ED;
    background-color: #F1F3F5;
    height: 40px;
    border-radius: 3px;
    color: #232425;
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 38px;
	margin: 0 0 10px;
}

/* sal-list-item */
.sal-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: flex-start;
}

.sal-list-item > a {
	text-decoration: none;
}

.sal-list-item-pictorial {
	-webkit-box-flex: 0;
	  -ms-flex: 0 0 80px;
	      flex: 0 0 80px;
	max-width: 80px;
	margin-right: 5vw;
	position: relative;
	padding-bottom: calc((80px * 5) / 6);
}

.sal-list-item-pictorial picture{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.sal-list-item-pictorial picture img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	-o-object-fit: cover;
	   object-fit: cover;
}

.sal-list-item-text{
	margin-top: -5px;
	font-size: 1rem;
	line-height: 20px;
	font-weight: 400;
	-webkit-box-flex: 1;
	  -ms-flex: 1 1 100%;
	      flex: 1 1 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	  -ms-flex-flow: row wrap;
	      flex-flow: row wrap;
}

.sal-list-item .sal-section,
.sal-list-item-title{
	font-size: 1.25rem;
	line-height: 25px;
}

.sal-list-item .sal-section {
	-webkit-box-ordinal-group: 1;
	  -ms-flex-order: 0;
	      order: 0;
}

.sal-list-item-title {
	width: 100%;
	font-weight: 700;
	margin-bottom: 5px;
	-webkit-line-clamp: 2;
	-webkit-box-ordinal-group: 2;
	  -ms-flex-order: 1;
	      order: 1;
}

.sal-list-item-summary {
	-webkit-line-clamp: 3;
	-webkit-box-ordinal-group: 3;
	  -ms-flex-order: 2;
	      order: 2;
	position: relative;
}

.sal-list-item-summary a{
	color: #232425;
}


.sal-list-item-summary .sal-list-item-summary-more {
	border-bottom: 2px solid #f7e323;
	color: #0076FF;
	font-weight: 500;
	position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    line-height: 1em;
}
.sal-list-item-summary .sal-list-item-summary-more:before {
	content: '';
	display: block;
	position: absolute;
	transform: translateX(-100%);
	height: 100%;
	width: 100px;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.sal-list-item-summary .sal-list-item-summary-more:after {
	content: ' >';
	font-size: 0.8em;
}

.sal-list-item-di {
	font-size: 0.813rem;
	-webkit-box-ordinal-group: 1;
	  -ms-flex-order: 0;
	      order: 0;
}

.sal-list-item-di:after {
	content: " â€“ ";
	font-size: 0.813rem;
}

.sal-list-item-info,
.sal-list-item-related-info {
	-webkit-box-ordinal-group: 4;
	  -ms-flex-order: 3;
	      order: 3;
	color: #b3b8c3;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 20px;
	position: relative;
	width: auto;
	-webkit-line-clamp: 1;
	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;
}
.sal-list-item-related-info-text:before {
    content: "da ";
    font-weight: 500;
}
.sal-list-item-related-info.sal-related-link {
	width: 100%;
}
.sal-approved > .sal-list-item-info-text:before{
	content: "revisionato da ";
}

.sal-approved[data-icon="comitato-scientifico"] .sal-icon svg{
	width: 32px;
	height: 32px;
}

.sal-list-item-info .sal-icon {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
	width: 32px;
	height: 32px;
	background-color: #00dad6;
	border-radius: 50%;
	margin-left: 10px;
}

.sal-list-item-info-text:before{
	font-weight: 500;
}

.sal-list-item-related-info .sal-icon {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
	width: 20px;
	height: 22px;
	background-color: transparent;
	margin-left: 10px;
}

.sal-list-item-data {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}
.sal-list-item-summary.sal-list-item-recipe,
.sal-related-recipes .sal-list-item-summary .sal-line-clamp {
    -webkit-line-clamp: 1;
}

.sal-list-item-datavalues,
.sal-list-item-datavalues li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.sal-list-item-datavalues li {
    margin-right: 15px;
}

.sal-list-item-datavalues .sal-icon {
    width: 18px;
    height: 18px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
    margin-right: 5px;
}

.sal-list-item-datavalue {
    color: #b3b8c3;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.56px;
    line-height: 18px;
}
/* end sal-list-item */

/* sal-anchor-list: lista di link */
.sal-anchor-list,
.sal-supertags-anchor-list #suptag h2 + ul,
.sal-supertags-anchor-list #suptag h2 + p + ul,
.sal-supertags-anchor-list #suptag h4 + ul{
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.sal-anchor-list{
	padding: 0;
}

.sal-anchor-list-item,
.sal-supertags-anchor-list #suptag h2 + ul li,
.sal-supertags-anchor-list #suptag h2 + p + ul li,
.sal-supertags-anchor-list #suptag h4 + ul li{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
}

.sal-supertags-anchor-list #suptag h2 + ul li,
.sal-supertags-anchor-list #suptag h2 + p + ul li,
.sal-supertags-anchor-list #suptag h4 + ul li{
	margin-bottom: 20px;
}

.sal-anchor-list-item a,
.sal-supertags-anchor-list #suptag h2 + ul li a,
.sal-supertags-anchor-list #suptag h2 + p + ul li a,
.sal-supertags-anchor-list #suptag h4 + ul li a{
    border-radius: 3px;
    background-color: rgba(0, 218, 214, 0.05);
    font-size: 1rem;
    font-weight: 700;
    line-height: 20px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
    margin-bottom: 20px;
    padding: 15px 20px;
    color: #263653;
    text-decoration: none;
    display: block;
}

.sal-supertags-anchor-list #suptag h2 + ul li a,
.sal-supertags-anchor-list #suptag h2 + p + ul li a,
.sal-supertags-anchor-list #suptag h4 + ul li a{
	margin-bottom: 0;
}

.sal-anchor-list-item:hover a,
.sal-supertags-anchor-list #suptag h2 + ul li a:hover,
.sal-supertags-anchor-list #suptag h2 + p + ul li a:hover,
.sal-supertags-anchor-list #suptag h4 + ul li a:hover{
    background-color: #00dad6;
    color: #263653;
    text-decoration: none;
}
/* end sal-anchor-list: lista di link */

/* GLOBAL SECTION SETTINGS */
.sal-widget-section p {
	margin-bottom: 20px;
}

.sal-widget-section a {
	color: #0076FF;
    font-weight: 500;
}

.sal-widget-section.sal-legacy h2 a,
.sal-widget-section.sal-legacy h3 a,
.sal-widget-section.sal-legacy h4 a,
.sal-widget-section.sal-legacy h5 a,
.sal-widget-section.sal-legacy h6 a,
.sal-widget-section h2 a,
.sal-widget-section h3 a,
.sal-widget-section h4 a,
.sal-widget-section h5 a,
.sal-widget-section h6 a{
	font-weight: 700;
}

.sal-widget-section.sal-legacy h2,
.sal-widget-section.sal-legacy h3,
.sal-widget-section.sal-legacy h4,
.sal-widget-section.sal-legacy h5,
.sal-widget-section.sal-legacy h6,
.sal-widget-section h2,
.sal-widget-section h3,
.sal-widget-section h4,
.sal-widget-section h5,
.sal-widget-section h6 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #2A3B58;
    line-height: 25px;
}

.sal-widget-section.sal-legacy h2:first-letter,
.sal-widget-section.sal-legacy h3:first-letter,
.sal-widget-section.sal-legacy h4:first-letter,
.sal-widget-section.sal-legacy h5:first-letter,
.sal-widget-section.sal-legacy h6:first-letter,
.sal-widget-section h2:first-letter,
.sal-widget-section h3:first-letter,
.sal-widget-section h4:first-letter,
.sal-widget-section h5:first-letter,
.sal-widget-section h6:first-letter{
    text-transform: capitalize;
}

.sal-widget-section.sal-legacy p ~ h2,
.sal-widget-section.sal-legacy ul ~ h2,
.sal-widget-section.sal-legacy ol ~ h2,
.sal-widget-section.sal-legacy blockquote ~ h2,
.sal-widget-section.sal-legacy table ~ h2{
    margin-top: 25px;
}

.sal-widget-section.sal-legacy h2,
.sal-widget-section h2{
    font-size: 1.5625rem;
    line-height: 30px;
	font-weight: 700;
}

.sal-widget-section.sal-legacy h3,
.sal-widget-section h3{
    font-size: 1.313rem;
}

.sal-widget-section.sal-legacy h4,
.sal-widget-section h4 {
	font-size: 1.125rem;
}

.sal-widget-section.sal-legacy h5,
.sal-widget-section.sal-legacy h6,
.sal-widget-section h5,
.sal-widget-section h6 {
	font-size: 1rem;
}

.sal-widget-section b,
.sal-widget-section strong {
	font-weight: 700;
}

.sal-widget-section cite,
.sal-widget-section em,
.sal-widget-section i {
	font-style: italic;
}

.sal-widget-section .sal-widget-disclaimer cite,
.sal-widget-section .sal-widget-disclaimer  em,
.sal-widget-section .sal-widget-disclaimer  i{
	font-style: normal;
}

.sal-widget-section.sal-legacy > br,
.sal-widget-section.sal-legacy > p:empty{
	display: none;
}

.sal-widget-section.sal-legacy img,
.sal-widget-section img.imgleft,
.sal-widget-section img.imgright,
.sal-widget-section img.imgcenter{
	border-radius: 3px;
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 20px auto;
	display: block;
}

.sal-widget-section blockquote,
.sal-widget-section q {
	quotes: none;
}

.sal-widget-section blockquote:before,
.sal-widget-section blockquote:after,
.sal-widget-section q:before,
.sal-widget-section q:after {
	content: "";
}

.sal-widget-section blockquote cite,
.sal-widget-section blockquote small {
	display: block;
	font-size: 1rem;
}

.sal-widget-section blockquote cite:before,
.sal-widget-section blockquote small:before {
	content: "\2014\00a0";
}

.sal-widget-section blockquote em,
.sal-widget-section blockquote i,
.sal-widget-section blockquote cite {
	font-style: normal;
}

.sal-widget-section blockquote > :last-child {
	margin-bottom: 0;
}

.sal-widget-section ul,
.sal-widget-section ol {
    margin: 20px 0;
}
.sal-widget-section ul ul, 
.sal-widget-section ol ol {
    margin: 20px;
}
.sal-widget-section ul ul ul, 
.sal-widget-section ol ol ol {
    margin: 20px 40px;
}

.sal-widget-section ul li:before,
.sal-widget-section ol li:before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    background: #2A3B58;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    top: -4px;
    left: 0;
}


.sal-widget-section ul li,
.sal-widget-section ol li {
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.sal-widget-section ul li a,
.sal-widget-section ol li a {
    border-bottom: 2px solid #f7e323;
}
/* GLOBAL SECTIONS SETTINGS */

.sal-select-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
    -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.sal-select-container label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.sal-content select {
	font-family: "Barlow", sans-serif;
    padding: 1px 30px 1px 5px;
    font-size: 1rem;
    line-height: 1.25rem;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #00dad6;
    background: url('/css/images/ddown-arr-select.svg') no-repeat center right 5px #ffffff !important;
    -webkit-appearance: none;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
}

.sal-mBottom1x { margin-bottom:5px; }
.sal-mBottom2x { margin-bottom:10px; }
.sal-mBottom3x { margin-bottom:15px; }
.sal-mBottom4x { margin-bottom:20px; }
.sal-mBottom5x { margin-bottom:25px; }
.sal-mBottom6x { margin-bottom:30px; }

.sal-mTop1x { margin-top:5px; }
.sal-mTop2x { margin-top:10px; }
.sal-mTop3x { margin-top:15px; }
.sal-mTop4x { margin-top:20px; }
.sal-mTop5x { margin-top:25px; }
.sal-mTop6x { margin-top:30px; }

.sal-pTop1x { padding-top:5px; }
.sal-pTop2x { padding-top:10px; }
.sal-pTop3x { padding-top:15px; }
.sal-pTop4x { padding-top:20px; }
.sal-pTop5x { padding-top:25px; }
.sal-pTop6x { padding-top:30px; }

.sal-pBottom1x { padding-bottom:5px; }
.sal-pBottom2x { padding-bottom:10px; }
.sal-pBottom3x { padding-bottom:15px; }
.sal-pBottom4x { padding-bottom:20px; }
.sal-pBottom5x { padding-bottom:25px; }
.sal-pBottom6x { padding-bottom:30px; }


.sal-noMargin { margin:0; }

.sal-hide-mobile { display:none; }
/* /UTILS */
