/*
Theme Name: Rivista AIP
Author: KMSTUDIO
Version: 1.0
*/

body {
	background-color: #fff;
	color: #333;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 0;
	margin: 0;
}

a { color: #008ba2; text-decoration: none; cursor: pointer; }
a:hover {  }
a:hover, a:active, a:focus { outline: 0; }

a.download-pdf {
	font-weight: 400;
	color: #333;
	transition: color .25s;
	text-transform: uppercase;
}
a.download-pdf:hover {
	color: #666;
}

figure.in-text {
	margin: 0 0 30px 0;
}

.button {
	display: inline-block;
	color: #fff;
	font-size: 90%;
	font-weight: 600;
	padding: 10px 25px;
	text-transform: uppercase;
	background: #d73347;
	border: none;
	border-radius: 50px;
	transition: color .25s, background .25s;
	position: relative;
	outline: none;
}
.button:hover:not(.loading) { background: #a70317; color: #fff; }
.button.loading:hover { cursor: default; }
.button-white { color: #d73347; background: #fff; }
.button-white:hover { background: #ddd; }
.button.loading { color: #d73347; }
.button.loading:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	color: #fff;
	border: 3px solid;
	border-radius: 50%;
    border-bottom-color: transparent;
	border-left-color: transparent;
    animation: spin linear .4s infinite;
}

h1, h2, h3, h4, h5, h6 { margin-top: 0; }

h2 { color: #008ba2; }

p:not(:last-child) { margin: 0 0 30px 0; }
p:last-child { margin-bottom: 0; }

hr { border: 0; border-bottom: 1px solid #eee; margin: 4% 0; }

nav {  }
nav ul { margin: 0; padding: 0; list-style-type: none; }

article.hentry p { line-height: 1.5; }
article img {
	display: block;
	max-width: 100%;
	height: auto;
}

blockquote {
	text-align: center;
	margin: 120px 0;
	padding: 0 60px;
	font-size: 120%;
	color: #008ba2;
	position: relative;
}
blockquote:before,
blockquote:after  {
	font-family: sans-serif;
	font-size: 1180%;
	position: absolute;
	color: #008ba2;
	left: 47%;
}
blockquote:before { content: '“'; top: -115px; }
blockquote:after { content: '”'; bottom: -235px; }

.checkbox-label {
	display: inline-block;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkbox-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	transition: background .25s;
	background-color: #eee;
	border-radius: 50%;
}
.checkbox-label:hover input ~ .checkmark {
	background-color: #ccc;
}
.checkbox-label input:checked ~ .checkmark {
	background-color: #008ba2;
}
.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}
.checkbox-label input:checked ~ .checkmark:after {
	display: block;
}
.checkbox-label .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.alert {
	padding: 10px 25px;
	border-radius: 15px;
	background: #eee;
	margin-bottom: 10px;
}
.alert-error {
	color: #fff;
	background: #762e2e;
}
.alert-success {
	color: #fff;
	background: #5d8e61;
}
.alert-field {
	padding: 5px 0 0 0;
	font-weight: 600;
	border-radius: 0;
	background: transparent;
}
.alert-error.alert-field { color: #762e2e; }

form .row { margin-bottom: 20px; }
form .form-row { margin-bottom: 7px; }
form .form-row .label {
	display: inline-block;
	width: 20%;
	vertical-align: top;
	padding: 11px 0;
}
form .form-row .input { display: inline-block; width: 79%; }
form .form-row input[type="text"],
form .form-row input[type="password"],
form .form-row input[type="email"],
form .form-row textarea {
	padding: 15px;
	border: 1px solid #ccc;
	background: rgba(255,255,255,.05);
}
form .form-row input[type="file"] { padding: 10px 0; }
form .form-row input::placeholder { color: #999; opacity: 1; }
form .form-actions { margin-top: 20px; }
form .form-separator { margin: 20px 0; border-top: 1px solid #eee; }
form .form-row .sections .section {
	width: calc(33.3333% - 10px);
	margin: 5px;
	padding: 15px;
	color: #333;
	background: #f8f8f8;
	cursor: pointer;
	transition: color .25s, background .25s;
}
form .form-row .sections .section:hover,
form .form-row .sections .section.selected { color: #fff; }
form .form-row .sections .section label { cursor: pointer; }
form .form-row .sections .section h4 {
	font-size: 100%;
	text-transform: uppercase;
	height: 60px;
	line-height: 1.2;
}
form .form-row .sections .section h4,
form .form-row .sections .section p { margin: 0; }
form .form-row .sections .section p { opacity: .8; font-size: 80%; }
form .form-row .sections .section input { position: absolute; opacity: 0; }
form p.help { font-size: 90%; }
form .field-error input,
form .field-error textarea { border-color: #762e2e !important; }
form .field-error input[type="file"] { border: 2px solid #762e2e; padding: 10px; }
form .field-error.checkbox-label { color: #762e2e; }
form .field-error .checkmark { background-color: #762e2e; }
form .field-error.checkbox-label:hover input ~ .checkmark { background-color: #af4444; }
form.vertical .checkbox-label { margin-top: 10px; margin-bottom: 10px; }
.popup-login .form-actions { margin-top: 20px; }

.contributo-esperti-color { color: #7ab51d; }
form .sections .section.contributo-esperti-color:hover,
form .sections .section.contributo-esperti-color.selected,
h2.contributo-esperti-color:after { background: #7ab51d; }

.aggiornamenti-letteratura-color { color: #0085c5; }
form .sections .section.aggiornamenti-letteratura-color:hover,
form .sections .section.aggiornamenti-letteratura-color.selected,
h2.aggiornamenti-letteratura-color:after { background: #0085c5; }

.assistenza-al-paziente-color { color: #885ea0; }
form .sections .section.assistenza-al-paziente-color:hover,
form .sections .section.assistenza-al-paziente-color.selected,
h2.assistenza-al-paziente-color:after { background: #885ea0; }

.scienze-integrate-color { color: #5d8e61; }
form .sections .section.scienze-integrate-color:hover,
form .sections .section.scienze-integrate-color.selected,
h2.scienze-integrate-color:after { background: #5d8e61; }

.rubriche-color { color: #a10d59; }
form .sections .section.rubriche-color:hover,
form .sections .section.rubriche-color.selected,
h2.rubriche-color:after { background: #a10d59; }

.casi-clinici-color { color: #222; }
form .sections .section.casi-clinici-color:hover,
form .sections .section.casi-clinici-color.selected,
h2.casi-clinici-color:after { background: #222; }

/* <HAMBURGER BUTTON> */
.hamburger-btn {
	display: none;
	width: 25px;
	padding: 15px;
	position: relative;
	cursor: pointer;
}
.hamburger-bar {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #005C87;
	margin: 0 0 4px;
}
/* </HAMBURGER BUTTON> */

.popup {
	max-width: 1024px;
	box-shadow: 0 0 75px #000;
}

.popup-main-nav {
	width: 100%;
	height: 100%;
	color: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
	box-shadow: none;
	background: rgba(0,0,0,.6);
}
.popup-main-nav hr { border-bottom: 1px solid #222; }
.popup-main-nav nav {
	text-align: center;
}
.popup-main-nav nav li {
	margin-bottom: 20px;
}
.popup-main-nav nav a {
	font-size: 200%;
	color: #fff;
	text-transform: uppercase;
}
.popup-main-nav .search .button {
	padding: 7px 10px;
	color: #999;
	background-color: #333;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.popup-main-nav .search input {
	color: #fff;
	padding: 7px 10px 7px 45px;
	border: 1px solid #333;
	background: rgba(255,255,255,.05);
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}
.popup-main-nav .search-field { position: relative; flex-basis: 100%; }
.popup-main-nav .search-field:before {
	position: absolute;
	color: #666;
	font-family: "fob";
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	content: '\e803';
	top: 8px;
	left: 12px;
}
.popup-main-nav .login-info {
	font-size: 120%;
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 30px;
}

.popup-login {
	background: url('assets/img/popup-login-bg.png') no-repeat;
	background-size: contain;
	background-position: top left;
	background-color: #008ba2;
	color: #fff;
}
.popup-login h2, 
.popup-login h3,
.popup-login .form-row input,
.popup-login .fancybox-close-small:after { color: #fff; }
.popup-login .fancybox-close-small:hover:after { color: #008ba2; }
.popup-login h2 {
	font-weight: 400;
	font-size: 170%;
	text-transform: uppercase;
	padding-right: 50px;
}
.popup-login h3 { font-size: 100%; font-weight: 400; }
.popup-login h3 span { font-size: 130%; }
.popup-login hr { border-bottom-color: #21749A; }
.popup-login form { /*width: 80%;*/ }
.popup-login .form-row { margin-bottom: 5px; }
.popup-login .form-row input {
	padding: 7px 25px;
	border: 1px solid #51A4CA;
	border-radius: 50px;
	background: rgba(255,255,255,.05);
}
.popup-login .form-row input::placeholder {
	color: rgba(255,255,255,.5);
	opacity: 1;
}
.popup-login .form-actions { margin-top: 10px; }
.popup-login .form-actions .checkbox-label { float: right; margin-top: 10px; }
.popup-login .form-actions .checkmark { background-color: rgba(255,255,255,.1); }
.popup-login .form-actions .checkbox-label:hover input ~ .checkmark { background-color: rgba(255,255,255,.2); }
.popup-login .form-actions .checkbox-label input:checked ~ .checkmark { background-color: #fff; }
.popup-login .form-actions .checkbox-label .checkmark:after { border-color: #008ba2; }
.popup-login h3 a {
	padding-left: 5px;
	color: rgba(255,255,255,.5);
}
.popup-login .creative-commons {
	opacity: .5;
	font-size: 80%;
	max-width: 400px;
}
.popup-login .creative-commons svg path { fill: #fff; stroke-color: #fff; }

.popup-toc { padding: 0; }
.popup-toc .meta {
	flex-basis: 330px;
	flex-shrink: 0;
	min-height: 500px;
	background: #f8f8f8;
}
.popup-toc .meta figure img {
	display: block;
	max-width: 100%;
	height: auto;
}
.popup-toc .meta header { padding: 1em; }
.popup-toc .meta header h2 {
	color: #333;
	font-size: 180%;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}
.popup-toc .meta header h3 {
	font-size: 90%;
	color: #666;
	font-weight: 400;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.popup-toc .meta header h3 b {
	font-weight: 400;
	padding-right: 12px;
	margin-right: 7px;
	border-right: 1px solid #ccc;
}
.popup-toc .meta p { padding-left: 1em; }
.popup-toc .meta p a {
	color: #666;
	text-transform: uppercase;
	font-size: 85%;
}
.popup-toc .toc { padding: 1.5em 2.5em 1.5em 2em; }
.popup-toc .toc ul > li { margin-bottom: 1.2em; color: #999; }
.popup-toc .toc ul > li > a {
	display: block;
	font-size: 120%;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	position: relative;
}
.popup-toc .toc .chapters { margin-top: .5em; }
.popup-toc .toc .chapters li { margin-bottom: .5em; line-height: 1.2; }
.popup-toc .toc .chapters li.current { font-weight: 600; }
.popup-toc .toc .chapters a { color: #555; transition: color .25s; }
.popup-toc .toc .chapters a:hover { color: #000; }

.board { margin-top: 75px; padding: 0; }
.board h4 { margin: 0 0 5px; }
.board .comitato-scientifico { margin: 1em 0; }
.board h4 { font-size: 120%; font-weight: 600; color: #d73347; }
.board p { margin: 0 0 20px; color: #000; line-height: 1.7 !important; }

.layout-row.search > .wrapper { padding-bottom: 0; }
.layout-row.search form { position: relative; }
.layout-row.search input {
	width: 100%;
	padding-left: 15px;
	border: 2px solid #3d81af;
	border-radius: 50px;
	color: #3d81af;
}
.layout-row.search button {
	position: absolute;
	top: 0; right: 0;
}
.layout-row.search p {
	color: #666;
	text-align: center;
	font-size: 90%;
	text-transform: uppercase;
}

.layout-row.supheader > .wrapper,
header.layout-row > .wrapper,
.layout-row.subheader > .wrapper {
	justify-content: space-between;
}

.layout-row-title {
	text-align: center;
	font-weight: 600;
	font-size: 230%;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 75px;
}

.layout-row {  }
.layout-row > .wrapper { 
	width: 1024px;
	margin: 0 auto;
	padding: 100px 0;
	position: relative;
	box-sizing: border-box;
}

.layout-row.supheader {
	background: #ececec;
	font-size: 85%;
	color: #333;
	text-transform: uppercase;
}
.layout-row.supheader > .wrapper { padding-top: 10px; padding-bottom: 10px; }
.layout-row.supheader a { color: #333; }
.layout-row.supheader a.button {
	display: inline-block;
	padding: 5px 10px;
	color: #000;
	margin-left: 1em;
	background: transparent;
	border: 1px solid #333;
}
.layout-row.supheader .icon-login {
	display: inline-block;
	-webkit-transform: scale(1.3) translateY(-1px);
	transform: scale(1.3) translateY(-1px);
	padding-right: 5px;
}

header.layout-row > .wrapper { padding-top: 20px; padding-bottom: 20px; }
header.layout-row h1 { display: none; }
header.layout-row .logo {
	flex-grow: 1;
	background: url('assets/img/aip-logo.png') left center no-repeat;
	background-size: contain;
	position: relative;
}
header.layout-row .logo a {
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
}
header.layout-row nav ul li {
	display: inline-block;
	line-height: 75px;
	padding-left: 24px;
	text-transform: uppercase;
	font-size: 90%;
	font-weight: 600;
	letter-spacing: .02rem;
}
header.layout-row nav ul li:first-child { padding: 0; }
header.layout-row nav ul li a { color: #333; }

.layout-row.subheader,
.layout-row.subheader input { font-family: 'Open Sans Condensed', sans-serif; }
.layout-row.subheader > .wrapper { padding-top: 20px; padding-bottom: 20px; }
.layout-row.subheader .left {
	flex-grow: 1;
	padding-right: 50px;
}
.single-post .layout-row.subheader { border-bottom: 1px solid #eee; }
.layout-row.subheader input {
	width: 100%;
	padding-left: 45px;
	border: 2px solid #3d81af;
	border-radius: 50px;
}
.layout-row.subheader input,
.layout-row.subheader input::placeholder {
	color: #3d81af;
	font-weight: 600;
	text-transform: uppercase;
	opacity: 1;
}
.layout-row.subheader .search-field { position: relative; }
.layout-row.subheader .search-field:before {
	position: absolute;
	color: #3d81af;
	font-family: "fob";
	font-size: 25px;
	font-style: normal;
	font-weight: normal;
	content: '\e803';
	top: 8px; left: 12px;
}
.layout-row.subheader h2 {
	font-size: 140%;
	font-weight: 300;
	line-height: 40px;
	margin: 0;
}

.layout-row.the-project {
	font-size: 130%;
	text-align: center;
}
.layout-row.the-project p { margin-bottom: 50px; }
.layout-row.the-project p strong { color: #008ba2; }
.layout-row.the-project .intro { font-size: 110%; max-width: 900px; margin-right: auto; margin-left: auto; }
.layout-row.the-project .call-to-action { margin-bottom: 0; }

.layout-row.the-project .issues-slider { margin-top: 50px; }

.layout-row.latest-news {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.layout-row.latest-news h2.header {
	text-transform: uppercase;
	font-size: 180%;
}

.layout-row.sticky-articles {
	background-color: #f5f5f5;
}

.layout-row.tag-search {
	background-color: #222;
}
.layout-row.tag-search .layout-row-title { color: #fff; }
.layout-row.tag-search .layout-row-title:after { background-color: #fff; }
.layout-row.tag-search .tag-list {
	text-align: center;
	padding: 0;
}
.layout-row.tag-search .tag-list li,
.layout-row.tag-search .tag-list li a { display: inline-block; }
.layout-row.tag-search .tag-list li a {
	padding: 7px 15px;
	color: #fff;
	background-color: rgba(0,0,0,.3);
	border: 1px solid #fff;
	border-radius: 50px;
	margin: 0 2px 10px 2px;
	transition: background-color .25s, color .25s;
}
.layout-row.tag-search .tag-list li a:hover {
	color: #111;
	background-color: #fff;
}

.layout-row.page-title {
	text-align: center;
	background: url('assets/img/page-title-bg.png') center no-repeat;
	background-size: cover;
	background-color: #008ba2;
}
.layout-row.page-title > .wrapper { padding: 50px 0; }
.layout-row.page-title h2 {
	color: #fff;
	font-size: 250%;
	text-transform: uppercase;
	margin: 0;
	padding: 0 20px;
}
.layout-row.page-title h2 a { color: #fff; }
.layout-row.page-title h3 {
	color: rgba(255,255,255,.75);
	text-transform: uppercase;
	margin: 0;
	font-size: 150%;
	font-weight: 400;
}

.layout-row.article-header {
	text-align: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #f8f8f8;
	position: relative;
}
.layout-row.article-header:before {
	content: '';
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	background: rgba(0,0,0,.25);
	background-attachment: fixed;
}
.layout-row.article-header > .wrapper { padding-top: 150px; padding-bottom: 150px; }
.layout-row.article-header h3 { margin: 0; }
.layout-row.article-header h3 span {
	display: inline-block;
	font-size: 120%;
	font-weight: 400;
	color: #fff;
	background-color: #d73347;
	padding: 10px 20px;
	text-transform: uppercase;
}
.layout-row.article-header h3 span b {
	font-weight: 400;
	border-right: 2px solid rgba(255,255,255,.2);
	padding-right: 17px;
	margin-right: 10px;
}
.layout-row.article-header h2 {
	display: inline-block;
	color: #008ba2;
	background-color: #fff;
	font-size: 300%;
	text-transform: uppercase;
	padding: 25px 30px;
	line-height: 1;
	margin: 0;
}

footer.layout-row { text-align: center; border-top: 1px solid #ddd; }
footer.layout-row > .wrapper { padding-top: 50px; padding-bottom: 50px; }
footer.layout-row .logo { margin-bottom: 40px; }
footer.layout-row .logo figure { flex-basis: 20%; margin-right: 50px; }
footer.layout-row .logo p { font-size: 90%; text-align: left; line-height: 1.5; }
footer.layout-row .socials { margin-bottom: 40px; }
footer.layout-row .socials a {
	font-size: 175%;
	padding: 3px;
	margin: 0 7px;
	color: #333;
	opacity: .25;
	transition: opacity .25s;
}
footer.layout-row .socials a:hover { opacity: 1; }
footer.layout-row .socials span {
	display: none;
}
footer.layout-row .edition { margin-bottom: 40px; }
footer.layout-row .copyright { margin-bottom: 40px; }
footer.layout-row .copyright h6 { font-size: 85%; margin: 0 0 5px; }
footer.layout-row .copyright p {
	font-size: 95%;
	margin: 0;
	line-height: 1.5;
}
footer.layout-row .copyright p span {
	padding: 0 12px;
	border-right: 1px solid #ccc;
}
footer.layout-row .copyright p span:last-child { border: none; }
footer.layout-row .creative-commons p {
	padding: 0 10em;
	margin: 0 0 2em;
	font-size: 90%;
	color: #666;
}
footer.layout-row .legal a {
	padding: 0 15px;
	text-transform: uppercase;
	font-size: 80%;
	font-weight: 600;
}
footer.layout-row .color-squares { font-size: 0; }
footer.layout-row .color-squares b {
	display: inline-block;
	width: 95px;
	height: 10px;
	margin: 0 10px;
}
footer.layout-row .color-squares b:first-child { background: #7ab51d; }
footer.layout-row .color-squares b:nth-child(2) { background: #0085c5; }
footer.layout-row .color-squares b:nth-child(3) { background: #885ea0; }
footer.layout-row .color-squares b:nth-child(4) { background: #5d8e61; }
footer.layout-row .color-squares b:last-child { background: #a10d59; }

.page:not(.home) article > h3 {
	color: #008ba2;
	font-size: 150%;
	font-weight: 400;
}

#homeSlider { margin: 0; height: 550px; overflow: hidden; }
#homeSlider .slide,
#issuesSlider .slide { display: none; }
#homeSlider .slick-arrow {
	width: 100px;
	height: 100px;
	background: #fff;
	z-index: 99;
}
#homeSlider .slick-arrow:before,
#issuesSlider .slick-arrow:before {
	display: block;
	font-family: "fob";
	font-style: normal;
	font-weight: normal;
	font-size: 70px;
	content: '\e804';
	color: #008ba2;
	text-indent: -15px;
}
#homeSlider .slick-next:before,
#issuesSlider .slick-next:before {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
#homeSlider .slick-prev { left: 0; }
#homeSlider .slick-next { right: 0; }
#homeSlider .slide {
	position: relative;
	height: 550px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #eee;
}
#homeSlider .slide:not(.slide-products):before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,.5);
}
#homeSlider .slide .meta {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #fff;
	padding: 0 20%;
	box-sizing: border-box;
	z-index: 99;
}
#homeSlider .slide .meta h2 {
	display: inline-block;
	color: #008ba2;
	padding: 25px 30px;
	background: #fff;
	font-size: 300%;
	margin: 0;
	line-height: 1;
	text-transform: uppercase;
}
#homeSlider .slide .meta h2 a {
	color: #008ba2;
}
#homeSlider .slide .meta p {
	font-size: 200%;
	margin: 20px 0 0;
	line-height: 1.1;
}
#homeSlider .slide .meta p a {
	color: #fff;
	border-bottom: 1px dashed #fff;
	padding-bottom: 3px;
	transition: color .25s, border-bottom-color .25s;
}
#homeSlider .slide .meta p a:hover {
	color: #ccc;
	border-bottom-color: #ccc;
}

#issuesSlider .slick-arrow {
	width: 75px;
	height: 75px;
	z-index: 99;
}
#issuesSlider .slick-arrow:before { font-size: 50px; color: #333; }
#issuesSlider .slick-arrow.slick-disabled:before { opacity: .1; }
#issuesSlider .slick-prev { left: -75px; }
#issuesSlider .slick-next { right: -75px; }
#issuesSlider .slick-dots { bottom: -55px; }
#issuesSlider .slick-dots li { margin: 0; }
#issuesSlider .slick-dots li button:before { font-size: 50px; color: #333; opacity: .1; }
#issuesSlider .slick-dots li.slick-active button:before { opacity: 1; }

.issues-slider .issue-item {
	height: 215px;
	text-align: left;
	background-color: #999;
	background-size: cover;
	background-position: center;
	text-transform: uppercase;
	cursor: default;
}
.issues-slider .issue-item a {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	z-index: 1;
}
.issues-slider .issue-item .meta {
	position: absolute;
	display: block;
	width: 100%;
	height: 100px;
	bottom: 0;
	color: #fff;
	padding: 10px 15px;
	background: rgba(0,0,0,.7);
	box-sizing: border-box;
}
.issues-slider .issue-item .meta h3 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 80%;
	color: #ccc;
	margin: 0;
}
.issues-slider .issue-item .meta h3 span {
	padding-right: 12px;
	margin-right: 7px;
	border-right: 1px solid #666;
}
.issues-slider .issue-item .meta h2 {
	font-size: 110%;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.block-text {
	margin: 60px 0;
	position: relative;
}
.block-text figure img { max-width: 70%; }
.block-text:before, .block-text:after { content: ''; display: table; clear: both; }
.block-text-left figure {
	float: left;
	min-height: 210px;
}
.block-text-left p {
	position: absolute;
	left: 310px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: 0;
}
.block-text-right figure { float: right; }
.block-text-right p {
	position: absolute;
	padding-right: 400px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.news-item,
.fad-area,
.online-first-item {
	height: 400px;
	background: #f8f8f8;
	transition: background-color .25s;
}
.fad-area a.overlay,
.news-item a.overlay,
.article-item a.overlay,
.fad-item a.overlay,
.online-first-item a.overlay,
.page-template-la-rivista .issue-item a.overlay,
#homeSlider .slide a.overlay {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	z-index: 1;
}
.layout-row.news .news-item { margin-bottom: 20px; }
.news-item:hover,
.online-first-item:hover {
	background: #eee;
}
.news-item figure,
.online-first-item figure {
	height: 200px;
	background-position: center;
	background-color: #999;
	background-size: cover;
}
.news-item .meta,
.online-first-item .meta {
	padding: 15px 20px;
}
.news-item .meta h3,
.online-first-item h3 {
	font-size: 100%;
	color: #666;
	font-weight: 400;
	margin-bottom: 5px;
}
.news-item .meta h2,
.online-first-item .meta h2 {
	color: #333;
	font-size: 120%;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0;
}
.news-item .read-more,
.online-first-item .read-more {
	position: absolute;
	bottom: 15px;
	left: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.online-first-item figure { background-color: #ddd; }
.online-first-item .meta h2 { margin-bottom: 10px; }

.online-first-home-wrapper { border-top: 3px solid #008ba2; padding-top: 1em; }
.online-first-home-item { border-bottom: 1px solid #ddd; margin-bottom: 1em; }
.online-first-home-item:last-child { border-bottom: none; margin: 0; }
.online-first-home-item h2 {
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: .25em;
}
.online-first-home-item h3 { font-weight: 400; color: #666; }

.page-template-la-rivista .issue-item {
	height: 400px;
	background: #f8f8f8;
	margin-bottom: 15px;
	transition: background-color .25s;
}
.page-template-la-rivista .issue-item:hover {
	background: #eee;
}
.page-template-la-rivista .issue-item figure {
	height: 220px;
	background-color: #999;
	background-size: cover;
	background-position: center;
}
.page-template-la-rivista .issue-item .meta {
	padding: 15px 20px;
}
.page-template-la-rivista .issue-item .meta h3 {
	font-size: 90%;
	color: #666;
	font-weight: 400;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.page-template-la-rivista .issue-item .meta h3 b {
	font-weight: 400;
	padding-right: 12px;
	margin-right: 7px;
	border-right: 1px solid #ccc;
}
.page-template-la-rivista .issue-item .meta h2 {
	color: #333;
	font-size: 150%;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}
.page-template-la-rivista .issue-item .actions {
	position: absolute;
	width: 100%;
	justify-content: space-between;
	align-items: baseline;
	bottom: 15px;
	left: 0;
	font-weight: 600;
	text-transform: uppercase;
}
.page-template-la-rivista .issue-item .actions a { padding: 0 20px; }
.page-template-la-rivista .issue-item .actions a.download-pdf { font-size: 80%; z-index: 9; }

.fad-area {
	background: url('assets/img/fad-area.jpg?v=2') no-repeat;
	background-size: cover;
	max-width: 330px;
	margin: 0 auto;
}

.page article > h3.fad {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 200%;
	margin-bottom: 10px;
}

.fad-item {
	height: 180px;
	background: #8fbcdb;
	transition: background-color .25s;
	border-bottom: 10px solid #008ba2;
}
.fad-item:hover {
	background: #7faccb;
}
.fad-item .meta {
	padding: 15px 20px;
}
.fad-item .meta h3 {
	color: #fff;
	font-size: 180%;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}
.fad-item .goto {
	position: absolute;
	color: #fff;
	bottom: 15px;
	left: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.article-item {
	height: 250px;
	background: #fff;
	outline-width: 2px;
	outline-style: solid;
	outline-color: transparent;
	transition: outline-color .25s;
}
.article-item header,
.article-item .cover,
.article-item .meta {
	padding-left: 20px;
	padding-right: 20px;
}
.article-item header {
	display: none;
	color: #fff;
	justify-content: space-between;
	font-size: 90%;
	padding-top: 10px;
	padding-bottom: 10px;
	text-transform: uppercase;
}
.article-item .cover {
	color: #fff;
	position: relative;
	background-repeat: no-repeat;
	background-color: #008ba2;
	background-size: cover;
}
.article-item .cover h3 {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 0;
	text-transform: uppercase;
}
.article-item .meta h2 {
	color: #333;
	font-size: 130%;
	font-weight: 400;
	line-height: 1.2;
	padding-top: 20px;
	margin-bottom: 0;
}
.article-item .read-more {
	position: absolute;
	bottom: 15px;
	left: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.contacts-form-wrapper { padding-right: 3em; }
.contacts-form-wrapper .form-actions,
.contacts-form-wrapper .form-row.privacy { margin: 2em 0; }

.single-article .layout-row.article-content nav {
	flex-basis: 35%;
	background-color: #eee;
	position: relative;
}
.single-article .layout-row.article-content nav .nav-wrapper {
	position: sticky;
	top: 0;
}
.single-article .layout-row.article-content nav .nav-wrapper > ul {
	padding: 3em;
	box-sizing: border-box;
	overflow-y: auto;
}
.single-article .layout-row.article-content nav li.main { margin-bottom: 1.5em; }
.single-article .layout-row.article-content nav li.main > a {
	display: block;
	padding-right: 23px;
	font-size: 120%;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	position: relative;
}
.single-article .layout-row.article-content nav li.main > a:not(.no-chapters):after {
	content: '+';
	position: absolute;
	top: -3px;
	right: 0;
	color: #999;
	font-weight: 400;
	font-size: 27px;
	font-family: "Lucida Console", Monaco, monospace;
}
.single-article .layout-row.article-content nav li.main.expanded > a:not(.no-chapters):after { content: '-'; }
.single-article .layout-row.article-content nav li.main a.editoriale-color { color: #d73347; }
.single-article .layout-row.article-content nav ol.chapters {
	display: none;
	margin: 1.5em 0 1em 2.5em;
	padding: 0;
}
.single-article .layout-row.article-content nav li.main.expanded ol.chapters { display: block; }
.single-article .layout-row.article-content nav ol.chapters li {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #dedede;
	color: #666;
	line-height: 1.1;
}
.single-article .layout-row.article-content nav ol.chapters li:last-child { border: none; }
.single-article .layout-row.article-content nav ol.chapters a {	color: #333; }
.single-article .layout-row.article-content nav ol.chapters li.current { color: #333; font-weight: 600; }

.single-article .layout-row.article-content article { flex-basis: 65%; padding: 3em 4em; }
.single-article .layout-row.article-content article h2 {
	font-size: 240%;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1.2em;
	max-width: 900px;
	position: relative;
}
.single-article .layout-row.article-content article header h3 {	margin-bottom: .5em; line-height: 1.5; }

.single-article .layout-row.article-content article header h2.editoriale-color { color: #d73347; }

.single-article .layout-row.article-content article.article_section-poesia header h2 { margin-bottom: .5em; }

.single-article .layout-row.article-content article.article_section-recensioni header h2 { margin-bottom: .25em; }
.single-article .layout-row.article-content article.article_section-recensioni header .book-authors { font-size: 130%; font-weight: 700; color: #008ba2; margin-bottom: 0; line-height: 1; }
.single-article .layout-row.article-content article.article_section-recensioni header .book-edition { font-size: 120%; color: #999; }

.single-article .layout-row.article-content article.article_section-editoriale header h3,
.single-article .layout-row.article-content article.article_section-recensioni header h3 { margin-bottom: 0; }
.single-article .layout-row.article-content article.article_section-poesia header h3 { margin-bottom: 2em; }

.single-article .layout-row.article-content article h3 {
	font-size: 150%;
	color: #666;
	text-align: left;
	margin-bottom: 1em;
	line-height: 1.2;
}
.single-article .layout-row.article-content article h4 {
	color: #999;
	font-weight: 400;
	text-align: left;
	line-height: 1.5;
	margin-bottom: 2em;
}
.single-article .layout-row.article-content article blockquote { text-align: left; color: #d73347; padding: 0 0 0 75px;	margin-bottom: 50px; }
.single-article .layout-row.article-content article blockquote:first-child { margin-top: 0; }
.single-article .layout-row.article-content article blockquote:before { font-size: 900%; color: #d73347; left: 0; top: 0; line-height: 150px; }
.single-article .layout-row.article-content article blockquote:after { content: none; }
.single-article .layout-row.article-content article blockquote p:first-child { font-weight: 700; }
.single-article .layout-row.article-content article .content-wrapper {
	columns: 2;
	column-gap: 3em;
	text-align: justify;
	line-height: 1.5;
}
.single-article .layout-row.article-content article .highlight {
	padding: 1.5em;
	margin-bottom: 30px;
	background: #eee;
}
.single-article .layout-row.article-content article .highlight h3 { color: #444; }
.single-article .layout-row.article-content article .highlight h4 { color: #666; margin-bottom: .5em; }
.single-article .layout-row.article-content article .content-wrapper h4 { font-size: 120%; }
.single-article .layout-row.article-content article .wp-caption { margin: 0 auto; }
.single-article .layout-row.article-content article .wp-caption-text {
	font-size: 90%;
	color: #666;
	font-style: italic;
	margin: 0 0 2em;
	padding: 0 1em;
}
.single-article .layout-row.article-content article .notes {
	max-height: 500px;
	overflow-y: auto;
	padding-top: 1em;
	border-top: 1px solid #ddd;
	margin-top: 1em;
	font-size: 90%;
	color: #666;
}
.single-article .layout-row.article-content article .notes ul {
	list-style-type: square;
	padding: 1em 2em 0;
	margin: 0;
}
.single-article .layout-row.article-content article .download { text-align: center;	margin: 4em 0 2em; }
.single-article .layout-row.article-content article .download span { display: block; font-weight: 700; }
.single-article .layout-row.article-content .article-wrapper .download a { padding: 10px 20px; border: 1px solid #666; border-radius: 50px; }
.single-article .layout-row.article-content .article-wrapper .download .icon-download {
	-webkit-transform: scale(1.2) translateY(-1px);
			transform: scale(1.2) translateY(-1px);
	padding-right: 5px;
}

.single-post article header { margin-bottom: 2em; background: #f8f8f8; }
.single-post article header figure { margin-right: 2em; }
.single-post article header h3 {
	padding-top: 1.5em;
	margin-bottom: .25em;
	font-size: 110%;
	font-weight: 400;
	text-transform: uppercase;
	color: #666;
}
.single-post article header h2 {
	font-size: 200%;
	font-weight: 400;
	line-height: 1.2;
}

.serp section {
	padding-bottom: 2em;
	margin-bottom: 2em;
}
.serp section h2 { line-height: 1.2; font-weight: 400; }
.serp section h3,
.serp section h4 {
	margin: 0;
	text-transform: uppercase;
}
.serp section h3 { font-size: 110%; }
.serp section h4 {
	color: #666;
	font-weight: 400;
}
.serp section h4 .authors {
	margin-right: 5px;
	padding-right: 10px;
	border-right: 1px solid #ccc;
}
.serp section a {
	color: #333;
	transition: color .25s;
}
.serp section a:hover { color: #555; }
.serp section .color {
	height: 100px;
	margin-right: 1.5em;
	flex-basis: 100px;
	flex-shrink: 0;
	border-radius: 50%;
	box-sizing: border-box;
	background: #eee;
	background-repeat: no-repeat;
	background-size: cover;
}
