@charset "utf-8";

*{
	margin:0;
	/*-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;*/
}    
@font-face {
	font-family: calibri;
	src: url(../font/calibri.ttf) format('truetype');
}
body{
	font-family: calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}

*[data-loading="ajax-bg"], *[data-loading="position-bg"], *[data-loading="pagepush-bg"], *[data-loading="pagepop-bg"], *[data-loading="pagereplace-bg"]{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#333;
	opacity:0.5;
}
*[data-loading="ajax"], *[data-loading="position"], *[data-loading="pagepush"], *[data-loading="pagepop"], *[data-loading="pagereplace"]{
	position:absolute;
	top:50%;
	left:50%;
	width:50%;
	margin-top:-25%;
	margin-left:-25%;
	/*background-color:#fff;*/
	background-color:transparent;
	background-image:url(../img/book.png);
	opacity:1;
	background-repeat:no-repeat;
	background-size: 50%;
	background-position: center;
	border-radius:1em;
}

@keyframes animationrotate{
    0% {
        transform:rotate(0deg);
    }
    90%{
        transform:rotate(360deg);
    }
    100% {
        transform:rotate(360deg);
    }
}

*[data-loading="ajax"], *[data-loading="position"], *[data-loading="pagepush"], *[data-loading="pagepop"], *[data-loading="pagereplace"]{
    animation-name:animationrotate;
    animation-duration:2s;
    animation-delay:0s;
    animation-iteration-count:999999;
    animation-direction:normal;
    animation-timing-function:linear;
    transform:rotate(0deg);
}

/*.loadingQuiz {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
    background-color: transparent;
    background-image: url(../img/book.png);
    opacity: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 1em;
    animation-name: animationrotate;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-iteration-count: 999999;
    animation-direction: normal;
    animation-timing-function: linear;
    z-index: 1000;
    height: 200px;
}*/

.bg_loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
}

.checkbox_checked, .checkbox_unchecked, .checkbox_undefined{
	background-color:transparent;
	border:0;
	background-size:25px;
	background-repeat:no-repeat;
	background-position: center left;
	height:1.5em;
	padding-left: 30px;
	height: 25px;
	margin: 8px 0;
}
.checkbox_unchecked{
	background-image:url(../img/checkbox_unchecked.png);
}
.checkbox_checked{
	background-image:url(../img/checkbox_checked.png);
}
.checkbox_undefined{
	background-image:url(../img/checkbox_undefined.png);
}
[data-page]{
	height: 100vh;
}
section {
	overflow-y: auto;
	overflow-x:hidden;
	max-width: 100vw;
}
	/* TOASTER */
	.toaster{
		visibility: hidden;
		position: fixed;
		min-width: 24%;
		margin-left: -12%; /* Divide value of min-width by 2 */
		text-align: center; /* Centered text */
		border-radius: 2px; /* Rounded borders */
		padding: 50px 15px;
		z-index: 999;
		left: 50%;
		top:30vh;
		border:2px solid white;
		background-color: #26368d;
		font-size: 1.5em;
        color: white;
	}
	.toaster.toastererror{
		color:red;
        background-color: white;
        border: 2px solid red;
	}
	/* Show the snackbar when clicking on a button (class added with JavaScript) */
	.toaster_show {
		visibility: visible; /* Show the snackbar */
		/* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
		However, delay the fade out process for 2.5 seconds */
		-webkit-animation: toaster_fadein 0.5s, toaster_fadeout 0.5s 2.5s;
		animation: toaster_fadein 0.5s, toaster_fadeout 0.5s 2.5s;
	}
	
	/* Animations to fade the snackbar in and out */
	@-webkit-keyframes toaster_fadein {
		from {top: 0; opacity: 0;} 
		to {top: 100px; opacity: 1;}
	}
	
	@keyframes toaster_fadein {
		from {top: 0; opacity: 0;}
		to {top: 100px; opacity: 1;}
	}
	
	@-webkit-keyframes toaster_fadeout {
		from {top: 100px; opacity: 1;} 
		to {top: 0; opacity: 0;}
	}
	
	@keyframes toaster_fadeout {
		from {top: 100px; opacity: 1;}
		to {top: 0; opacity: 0;}
	}
	/* /TOASTER */


[data-page="login"], [data-page="register"], [data-page="terms"], [data-page="passwordrecovery"]{
	background-image: url("../img/background_login.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
	/*[data-page="login"]>header{
		display:none;
	}*/
	/*[data-page="login"]>footer, [data-page="register"]>footer, [data-page="terms"]>footer{
		display:none;
	}*/
	[data-page="login"] .fe_login_form_box  {
		background: rgba(25, 32, 87, 0.541);
		border-radius: 30px;
		padding: 6% 2%;
    }

    .fe_box, [data-page="passwordrecovery"] .fe_login_form_box {
        background: rgba(25, 32, 87, 0.541);
		border-radius: 30px;
		padding: 3% 2%;
    }
    
    [data-page="register"] .fe_register_form_box {
        background: rgba(25, 32, 87, 0.541);
		border-radius: 30px;
		padding: 0% 2%;
    }

	.fe_box>h1, .fe_box>p{
		color: white;
		text-decoration: none;
		margin-bottom: 15%;
	}
	.fe_box>p{
		font-size: 1rem;
	}
	
	[data-page="login"] .fe_login_bottone_login, [data-page="register"] .fe_register_form_box input[type="submit"], [data-page="passwordrecovery"] .fe_login_bottone_login {
		display: block;
		margin: auto;
		background-color: rgb(255, 255, 255);
		width: 60%;
		margin-bottom: 5%;
		color: #232e7f;
		font-weight: bold;
	}
	
	[data-page="login"] .fe_login_bottone_login:hover, [data-page="register"] .fe_register_form_box input[type="submit"]:hover, [data-page="passwordrecovery"] .fe_login_bottone_login:hover{
		opacity: 0.6;
	}
	
	[data-page="login"] .fe_login_bottone_login:active, [data-page="register"] .fe_register_form_box input[type="submit"]:active, [data-page="passwordrecovery"] .fe_login_bottone_login:active {
		opacity: 1.0;
		color: #232e7f;
	}
	
	[data-page="login"] .fe_login_bottone_registrati {
		display: block;
		margin: auto;
		background-color: rgba(255, 255, 255, 0.493);
		width: 60%;
		color: white;
	}
	
	[data-page="login"] .fe_login_bottone_registrati:hover {
		opacity: 0.6;
		color: white;
	}
	
	[data-page="login"] .fe_login_bottone_registrati:active {
		opacity: 1.0;
		color: white;
	}
	
	[data-page="login"] .fe_login_logo, [data-page="register"] .fe_login_logo, [data-page="terms"] .fe_login_logo, [data-page="passwordrecovery"] .fe_login_logo {
		display: block;
		margin: auto;
		margin-top: 5%;
		margin-bottom: 5%;
	}
	
	[data-page="login"] .fe_login_link {
		color: white;
		text-decoration: none;
		margin-bottom: 15%;
		font-size: 1rem;
    }
    
    [data-page="register"] .fe_register_link {
		color: white;
		text-decoration: none;
		font-size: 1rem;
    }
	
	[data-page="login"] .fe_login_link:hover {
		color: white;
		text-decoration: none;
	}
	
	[data-page="login"] .fe_login_input_icona_utente, [data-page="passwordrecovery"] .fe_login_input_icona_utente {
		background-image: url("../img/icona_utente.png");
		background-position: 5% 50%;
		background-size: 10%;
		background-repeat: no-repeat;
		background-color: rgba(255, 255, 255, 0);
		padding-left: 18%;
	}
	
	[data-page="login"] .fe_login_input_icona_password {
		background-image: url("../img/icona_password.png");
		background-position: 5% 50%;
		background-size: 10%;
		background-repeat: no-repeat;
		background-color: rgba(255, 255, 255, 0);
		padding-left: 18%;
	}
	
	[data-page="login"] .fe_login_input, [data-page="register"] .fe_register_form_box input[type="password"], .fe_register_form_box input[name="username"]{
		width: 100%;
		color: white;
		height: 15%;
		height: calc(1.5em + .75rem + 2px);
		border-radius: 5px;
		border: 2px solid rgba(255, 255, 255, 0.534);
		padding-bottom: 1.5rem;
		padding-top: 1.5rem;
	}
	[data-page="register"] .fe_register_form_box input[type="text"], [data-page="register"] .fe_register_form_box input[type="email"], [data-page="register"] .fe_register_form_box input[type="email"], [data-page="register"] .fe_register_form_box input[type="phone"], [data-page="register"] .fe_register_form_box input[type="password"]{
		width: 100%;
		height: 15%;
		height: calc(1.5em + .75rem + 2px);
		border-radius: 5px;
		border: 2px solid rgba(255, 255, 255, 0.534);
		padding-bottom: 1.5rem;
		padding-top: 1.5rem;
	}
	
[data-page="profile"] .fe_profile_form_box>form .fe_profile_avatar{
	width:100px;
	height:100px;
	background-size:contain;
	background-repeat:no-repeat;
}

[data-page="profile_edit"] .fe_imieilibri_header {
    background-image: none;
    padding-top: 25px;
    padding-bottom: 200px;
    background-size: cover;
}

[data-page="insertotp"] .fe_login_form_box, [data-page="askotp"] .fe_login_form_box, [data-page="book_request"] .fe_login_form_box {
    border-radius: 30px;
    padding: 6% 2%;
    background-image: url('../img/background_login.png');
    background-size: cover;
    border: 2px solid white;
    margin-top: -5%;
}

[data-page="insertotp"] .fe_footer, [data-page="askotp"] .fe_footer, [data-page="book_request"] .fe_footer {
    display: none;
}



.fe_bg {
    background-color: #d3e1e5;
}

.white {
    color: white;
}

.fe_p_text {
    font-size: 1.2em;
}

.fe_imieilibri_header {
    background-image: url("../img/header-blu.png");
    padding-top: 50px;
    padding-bottom: 200px;
    background-size: cover;

}

.fe_imieilibri_searchmateria {
    /*max-width: calc(50% - 0.5rem);*/
	width:100%;
 /*   opacity: 0.5;*/
   /* height: 30%;*/
    margin: auto;
    display: inline-block;
}
.fe_imieilibri_search {
    max-width: 100%;
   /* opacity: 0.5;*/
    height: 30%;
    margin: auto;
    display: inline-block;
}
.fe_imieilibri_search[readonly]{
	opacity:0.1;
}
.fe_imieilibri_data_libro_elenco{
	font-size:1rem;
	cursor:pointer;
}
.fe_book_isbn{
	font-size:1rem;
	line-height:1.2;
	cursor:pointer;
}
.fe_materia{
	color: #063d86;
	font-weight:bold;
	cursor:pointer;
}
.fe_imieilibri_titolo_libro_card{
	font-size:1.5rem !important;
	height: 3.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
	.advsearchspan{
		color:white;
		cursor:pointer;
        	/*opacity: 0.5;*/
		display:block;
	}
	.advsearchspan>input[type="checkbox"]{
		height:2rem;
		width:2rem;
	}
	.advsearchspan>span{
		line-height:2rem;
		vertical-align:top;
		margin-left:15px;
	}

.fe_imieilibri_logo {
    width: 40%;
    margin: auto;
    display: block;
    cursor: pointer;
}

.fe_imieilibri_icona_utente {
    width: 13%;
    margin: auto;
    display: inline-block;
    cursor: pointer;
}

.fe_imieilibri_nome_utente {
    margin: auto;
    display: inline-block;
    color: white;
    margin-right: 1rem;
    font-size: 1rem;
}

.fe_imieilibri_link {
    text-decoration: none;
    color: white;
    font-size: 1vw;
    cursor: pointer;
}

.fe_imieilibri_link:hover {
    color: white;
    opacity: 0.5;
    text-decoration: none;
}

.fe_imieilibri_link:active, :focus {
    color: aqua;
}


.fe_imieilibri_bg_body {
    background-image: url("../img/bg_body.png");
    background-size: cover;
}

.fe_imieilibri_box_contenuti {
    background-color: white;
    border-radius: 10px;
    margin-top: -150px;
    padding: 5em 0em;
    min-height: 600px;
}

.fe_imieilibri_ctr>div{
    min-height: 175px;
}
.fe_imieilibri_img_libro {
    display: inline;
    max-height: 175px;
    border-radius: 10px;
    cursor: pointer;
    width: auto;
    max-width: 100%;
}

.fe_book_preview_img {
    max-width: 230px;
    height: auto;
    max-height: 250px;
}

[data-page='homepage'] .fe_imieilibri_titolo_libro, [data-page='homepage'] .fe_imieilibri_autore,
[data-page='homepage'] .fe_imieilibri_data_libro {
    cursor: pointer;
}

.fe_imieilibri_titolo_libro {
    font-weight: bold;
    font-size: 1.5vw;
    cursor: pointer;
}

.fe_imieilibri_autore {
    font-size: 1.2em;
    font-style: italic;
	overflow:hidden;
	white-space:nowrap;
	text-overflow: ellipsis;
}
    .fe_imieilibri_searchmateria, .fe_imieilibri_advsearchfield{
	width:100%;
       /* opacity: 0.5;*/
    }


.fe_imieilibri_percentuale {
    display: inline;
    font-weight: bold;
    font-size: 1.5vw;
    margin: auto; 
    display:inline-block;

}

.fe_imieilibri_div_percentuale {
    display: flex;
}

.fe_imieilibri_descrizione_libro {
    font-size: 1.3em;
    margin-top: 2em;
}

.fe_imieilibri_data_libro {
    font-size: 1.2em;
    font-weight: bold;
}

.fe_imieilibri_bottone {
    margin: auto;
    display: block;
    background-color: #26368d;
    color: white;
}
.fe_quiz_refuse{
	background-color: #dc3545;
}
.fe_quiz_accept{
	background-color: #28a745;
}
.fe_quiz_isexam{
	padding-left: 3rem;
	background-image:url(../img/exam.svg);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:left top;
}
.fe_exam_score>.fe_quiz_score{
	margin-left:auto;
}
.fe_exam_score>.fe_quiz_scorevalue{
	font-size:2.5rem;
}

.fe_home_btn {
    margin: auto;
    display: block;
    background-color: #26368d;
    color: white;
}

.fe_home_btn:hover {
    background-color: #3951d4;
    color: white;
}

.fe_home_btn_2 {
    margin: auto;
    display: block;
    background-color: #26368d;
    color: white;
}

.fe_home_btn_2:hover {
    background-color: #3951d4;
    color: white;
}

.fe_home_btn_2::after {
    content: 'Tutti i volumi adottati dalla tua facoltà';
}

.fe_imieilibri_bottone:hover {
    background-color: #3951d4;
    color: white;
}
.fe_quiz_refuse:hover{
	background-color: #ef508c;
}
.fe_quiz_accept:hover{
	background-color: #3bc28c;
}

.fe_imieilibri_address {
    opacity: 0.8;
    font-size: 0.8rem;
    margin-top: 3em;
}

.fe_imieilibri_padding_righe {
    padding: 3rem 0rem;
}

.fe_imieilibri_div_bottone {
    display: flex;
}

.fe_imieilibri_box_utente {
    padding-top: 1rem;
    padding-right: 3rem;
}

.fe_imieilibri_barra {
    width: 70%;
    background-color:#cecece;
    border-radius: 5px;
    height: 10px;
    margin: auto;
    display: inline-block;
}

.fe_imieilibri_completamento_barra {
    background-color: #434654;
    width: 70%;
    height: 10px;
    border-radius: 5px;
    
}

.imieilibri_back {
    font-size: 40px;
    color: white;
    display: block;
    cursor: pointer;
}


/*  CSS LOGIN DESKTOP */

.fe_login_background {
    background-image: url("../img/background_login.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
}

.fe_login_form_box {
    background: rgba(25, 32, 87, 0.541);
    border-radius: 30px;
    padding: 6% 2%;
    margin-top: 0%;
}

.fe_login_bottone_login {
    display: block;
    margin: auto;
    background-color: rgb(255, 255, 255);
    width: 60%;
    margin-bottom: 5%;
    color: #232e7f;
    font-weight: bold;
}

.fe_login_bottone_login:hover {
    opacity: 0.6;
}

.fe_login_bottone_login:active {
    opacity: 1.0;
    color: #232e7f;
}

.fe_login_bottone_registrati {
    display: block;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.493);
    width: 60%;
    color: white;
}

.fe_login_bottone_registrati:hover {
    opacity: 0.6;
    color: white;
}

.fe_login_bottone_registrati:active {
    opacity: 1.0;
    color: white;
}

.fe_login_logo {
    display: block;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 150px;
    cursor: pointer;
}

.fe_login_link {
    color: white;
    text-decoration: none;
    margin-bottom: 15%;
    font-size: 1rem;
}

.fe_login_link:hover {
    color: white;
    text-decoration: none;
}

.fe_login_input_icona_utente {
    background-image: url("../img/icona_utente.png");
    background-position: 5% 50%;
    background-size: 10%;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0);
    padding-left: 18%;
}

.fe_login_input_icona_password {
    background-image: url("../img/icona_password.png");
    background-position: 5% 50%;
    background-size: 10%;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0);
    padding-left: 18%;
}

.fe_login_input {
    width: 100%;
    color: white;
    height: 15%;
    height: calc(1.5em + .75rem + 2px);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.534);
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;

}

.register_back {
    font-size: 40px;
    color: white;
    position: absolute;
    left: 0;    
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
}


/* CSS PROFILO DESKTOP */

.fe_profilo_input_icona_cerca {
    background-image: url("../img/cerca.png");
    background-position: 5% 50%;
    background-size: 10%;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.247);
    padding-left: 18%;
}

.fe_profilo_input_cerca {
    color: white;
    border-radius: 3px;
    border: 0px;
    max-width: 100%;
    margin: auto;
    display: inline-block;
}

.fe_profilo_header {
    padding-top: 20px;
}

.fe_profilo_box_utente {
    border-radius: 10px;
}

.fe_profilo_box_contatti {
    background-color: rgba(255, 255, 255, 0.479);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-bottom: 20px;
}

.fe_profilo_box_descrizione {
    background-color: white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.fe_profilo_ilmioprofilo {
    color: #26368D;
    font-weight: bold;
    padding-left: 2rem;
    font-size: 2rem;
    display: inline-block;
}

.fe_profilo_istituto {
    color: #434654;
    font-size: 1.3rem;
    font-weight: bold;
    padding-left: 2rem;
    padding-top: 5%;
}

.fe_profilo_riga_ilmioprofilo {
    padding-top: 10%;
}

.fe_profilo_link_modifica, .fe_profilo_link_modifica:hover {
    text-decoration: none;
    color: #434654;
    font-size: 1rem;
}
.fe_profilo_logout, .fe_profilo_logout:hover {
    text-decoration: none;
    color: #434654;
    font-size: 1rem;
}

.fe_profilo_corso {
    color: #434654;
    font-style: italic;
    padding-left: 2rem;
    font-size: 1.3rem;
}

.fe_profilo_anno_iscrizione {
    color: #434654;
    font-weight: bold;
    padding-left: 2rem;
    font-size: 1rem;
}

.fe_profilo_utente_descrizione {
    color: #434654;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    font-size: 1rem;
}

.fe_profilo_nome_utente {
    color: white;
    font-weight: bold;
    font-size: 2rem;
    padding-top: 5%;
}

.fe_profilo_username {
    color: white;
    font-style: italic;
    font-size: 1.3rem;
    padding-bottom: 10%;
}

.fe_profilo_caricamento_foto {
    border-width: 0; 
    margin-right: -8%; 
    padding: 0;
    position: absolute; 
    bottom: 0; 
    right: 0;
    max-width: 100%;
    z-index:2;
    cursor: pointer;
}

.fe_profilo_div_foto {
    position: relative; 
    border-radius: 50%;
    background-position: center;
    background-size: 100% 100%;
    margin: auto;
    margin-top: 20%;
    border: 5px solid white;
    width: 12vw;
    height: 12vw;

}

.fe_profilo_email, .fe_profilo_phone, .fe_profilo_address {
    color: white;
    font-size: 1.4em;
    padding-left: 2%;
}

.fe_profilo_icona_email {
    padding-top: 5%;
    margin: auto;
    display: inline-block;
}

.fe_profilo_div_icona {
    display: flex;
    padding: 0% 0%;
}

.fe_profilo_icona_numero {
    padding-top: 5%;
    margin: auto;
    display: inline-block;
}

.fe_profilo_icona_posizione {
    padding-top: 0%;
    margin: auto;
    display: inline-block;
}

.fe_profilo_padding  {
    padding-left: 0px;
    padding-right: 0px;
}

.fe_profile_edit {
    color: #26368D;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
}

.fe_profile_edit:hover {
    color: #26368D;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    opacity: 0.7;
}

.fe_profilo_btn {
    margin: auto;
    display: block;
    background-color: #26368d;
    color: white;
}

.fe_profilo_btn:hover {
    background-color: #3951d4;
    color: white;
}

.fe_profilo_edit_hidden > div > input {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


/* desktop dettaglio libro*/

.fe_dettagliolibro_titolo {
    color: #434654;
    font-size: 2.0vw;
    font-weight: bold;
    padding-bottom: 20%;
    margin-top: 10%;
}

.fe_dettagliolibro_padding_elenco {
    padding-top: 10%;
}

.fe_dettagliolibro_riga_verticale {
    border-right: 2px solid #707070;
}

.fe_dettagliolibro_padding_anteprima {
    padding-top: 1%;
}

.fe_dettagliolibro_padding_bibliografia {
    margin-top: 3rem;
}

.fe_dettagliolibro_img_input {
    position: relative; 
    z-index: 1;
    opacity: 0.0;
    height: 100%;
    width: 110%;
    border-radius: 50%;
}

.fe_dettaglio_libro_barra {
        width: 70%;
        background-color:#cecece;
        border-radius: 5px;
        height: 10px;
        display: inline-block;
}

.fe_dettagliolibro_titolo_libro {
    font-weight: bold;
    font-size: 1.5vw;
}

.fe_dettagliolibro_autore {
    font-size: 1.3em;
    font-style: italic;
}

.fe_dettagliolibro_data {
    font-size: 1.3em;
    font-weight: bold;
}

.fe_dettagliolibro_percentuale {
    font-size: 1.5vw;
    font-weight: bold;
    display: inline;
    font-weight: bold;
    margin: auto; 
    display:inline-block;
}

.fe_dettagliolibro_anteprima_titolo {
    font-size: 2vw;
    font-weight: bold;
}

.fe_dettagliolibro_anteprima_autore {
    font-size: 1.2em;
    font-style: italic;
}

.fe_dettagliolibro_anteprima_data {
    font-size: 1.5vw;
    font-weight: bold;
}

/* CSS DESKTOP INDICE LIBRO */

.fe_indice_numero_capitolo {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 4em;
    color: #434654;
    padding-left: 5%;
    margin-top: 30px;
}

.fe_indice_capitolo {
    font-size: 2em;
    color: #434654;
    padding-left: 3%;
}

.fe_indice_sottocapitolo {
    font-size: 1.5vw;
    color: #434654;
}

.fe_indice_bibliografia {
    font-size: 1.5vw;
    color: #434654;
    margin-top: 20%;
}

.fe_indice_link_capitolo {
    text-decoration: none;
    color: #434654;
    cursor: pointer;
}

.fe_indice_link_capitolo:hover {
    opacity: 0.5;
    text-decoration: none;
    color: #434654;
}

.fe_indice_link_sottocapitolo {
    text-decoration: none;
}

.fe_indice_link_sottocapitolo:hover {
    opacity: 0.5;
    text-decoration: none;
}

.fe_indice_collapse {
    margin-left: 35%;
}

.fe_indice_collapse_active {
    margin-left: 2%;
}

.fe_indice_img_libro {
    max-width: 60%;
    border-radius: 10px;
    margin: auto;
}

.fe_indice_box_contenuti {
    background-color: white;
    border-radius: 10px;
    margin-top: -150px;
    padding: 1.5em 0em;
}

.fe_cursor {
    cursor: pointer;
}

/*  CSS DESKTOP CONTENUTO LIBRO */

.fe_contenuto_capitolo {
    display: inline;
    padding: 0% 5%;
    font-size: 1.5vw;
    font-style: italic;
    margin-bottom: 0;
}

.fe_padding_capitolo {
    padding-top: 5%;
}

.fe_contenuto_testo_colorato {
    color: #FF7700;
}

.fe_contenuto_box_indicatore {
    margin-left: -15%;
    position: absolute;
}

.fe_contenuto_indicatore {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    display: inline-block;
    background-color: rgb(0, 228, 228);
}

.fe_contenuto_indicatore_2 {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    display: inline-block;
    background-color: rgb(31, 133, 0);
}

.fe_contenuto_indicatore_3 {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    display: inline-block;
    background-color: rgb(194, 0, 0);
}

.fe_contenuto_aggiungi_appunto {
   margin-left: 100%;
   position: absolute;
   text-decoration: none;
   color: #434654;
}

.fe_contenuto_aggiungi_appunto:hover {
    opacity: 0.5;
    text-decoration: none;
    color: #434654;
 }

.fe_contenuto_box_appunti {
    background-color: white;
    border-radius: 20px;
    position: absolute;
    margin-left: 150%;
}

.fe_contenuto_box_appunti_titolo {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #5DBBC1;
    color: white;
}

.fe_contenuto_titolo_appunto {
    font-size: 1.5vw;
    display: inline;
}

.fe_contenuto_form_padding {
    padding: 10% 0%;
}

.fe_contenuto_button_padding {
    padding-bottom: 10%;
}

.fe_contenuto_appunti_bottone {
    background-color: #26368D;
    color: white;
    padding: 0% 20%;
    font-size: 1.3vw;
}

 .fe_contenuto_appunti_bottone:hover {
    background-color: #3951d4;
    color: white;
}

.fe_contenuto_titolo_1 {
    font-family: initial;
    font-size: 2em;
    font-weight: bold;
    color: #434654;
    margin-top: 5%;
}

.fe_contenuto_titolo_2 {
    font-family: initial;
    font-size: 1.8em;
    font-weight: bold;
    color: #434654;
    margin-top: 5%;
}

.fe_contenuto_titolo_3 {
    font-family: initial;
    font-size: 1.6em;
    color: #434654;
    font-weight: bold;
    margin-top: 5%;
}

.fe_contenuto_titolo_4 {
    font-family: initial;
    font-size: 1.4em;
    color: #434654;
    font-weight: bold;
    margin-top: 5%;
}

.fe_contenuto_titolo_5 {
    font-family: initial;
    font-size: 1.3em;
    color: #434654;
    font-weight: bold;
    margin-top: 5%;
}

.fe_contenuto_titolo_6 {
    font-family: initial;
    font-size: 1.2em;
    color: #434654;
    font-weight: bold;
    margin-top: 5%;
}

.fe_contenuto_testo {
    font-size: 1.2em;
    color: #434654;
    text-align: justify;
    margin-top: 2%;
}

.fe_contenuto_link {
    font-size: 1.2em;
    color: #434654;
    text-align: justify;
    margin-top: 2%;
}
.fe_contenuto_moodle{
    font-size: 1.2em;
    color: #434654;
    text-align: justify;
    margin-top: 2%;
}
.fe_contenuto_xmind>iframe{
	width:100%;
	min-height:60vh;
	border:0;
}


.fe_contenuto_audio {
    width: 80%;
    display: block;
    margin: auto;
}

.fe_contenuto_blocchi_padding {
    padding: 5% 0%;
}

.fe_contenuto_immagine {
    margin: auto;
    display: block;
    width: 80%;
}

.fe_contenuto_video {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.fe_contenuto_box_video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: auto;
    display: block;
    width: 80%;
}

.fe_cotenuto_formula {
    font-weight: bold;
    text-align: center;
    font-size: 1.3vw;
    color: #434654;
}

.fe_contenuto_allegato {
    font-size: 1.3vw;
    color: #434654;
    text-decoration: none;
}

.fe_contenuto_allegato:hover {
    opacity: 0.5;
    color: #434654;
    text-decoration: none;
}

.fe_contenuto_allegato_immagine {
    padding-right: 5%;
}
.fe_contenuto_allegato>img {
	max-height:50px;
}

.fe_cotenuto_titolo_libro {
    font-size: 2vw;
    color: #434654;
    font-weight: bold;
    text-align: center;
}

.fe_contenuto_autore {
    font-size: 1.3em;
    font-style: italic;
    color: #434654;
    text-align: center;
}

.fe_contenuto_appunti_salvati_box {
    background-color: white;
    border-radius: 20px;
    position: absolute;
    margin-left: 150%;
    z-index: 1;
}

.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #5DBBC1 rgb(206, 211, 214);
  }

.scrollbar::-webkit-scrollbar {
    width: 8px;
  }

.scrollbar::-webkit-scrollbar-track {
    background: rgb(206, 211, 214);
  }

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #5DBBC1;
    border: 1px solid rgb(206, 211, 214);
  }

  .fe_contenuto_elenco_appunti {
      height: 15rem;
  }

  .fe_contenuto_bottone_condividi_appunto {
      background-color: #26368D ;
      color: white;
      margin-bottom: 10%;
      line-height: 0.8 !important;
      font-size: 1.2vw;
  }

  .fe_contenuto_bottone_condividi_appunto:hover {
    background-color: #3951d4 ;
    color: white;
}

.fe_contenuto_appunti_testo {
    font-size: 1.2vw;
    color: #434654;
    text-align: justify;
}

.fe_contenuto_icona_x {
    margin-top: 4%;
}

.fe_contenuto_icona_x_link {
    text-decoration: none;
    color: white;
}

.fe_contenuto_icona_x_link:hover {
    text-decoration: none;
    color: white;
}

.fe_text_ellipsis {
    height: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tre_puntini {
    font-size: 1.5vw;
}

.fe_reg_text {
    font-size: 1.2em;
    color: white;
    font-family: calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}

.fe_header_search {
    background-image: url("../img/cerca2.png");
    background-size: 10%;
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: center;
}

.fe_home_title {
    color: #434654;
    font-size: 2.0vw;
    font-weight: bold;
}

.fe_profilo_edit {
    color: #26368D;
    margin-left: 10px;
    cursor: pointer;
}

.fe_profilo_box {
    background-color: white;
    border-radius: 10px;
    margin-top: -150px;
    padding: 60px 0px;
    min-height: 600px;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.click_pointer {
    cursor: pointer;
}

.fe_name_user {
    color: white;
    font-size: 1.2em;
}

[data-page='profile_edit'] label {
    color:white;
    font-size: 1.2em;
    font-weight: bold;
}

[data-page='profile_edit'] .form-control {
    border: 2px solid #26368d;
}

.fe_profilo_box {
    background-color: rgba(255, 255, 255, 0.479);
    margin-bottom: 30px;
}

.fe_profile_edit_title {
    color: white;
    font-size: 2.0vw;
    font-weight: bold;
}

.fe_content_arrow {
    width: 20px;
}

.fe_ricerca_none {
    font-size: 2em;
}

.loading_progress {
    margin:0 auto; 
    width:100px;
    height:100px;
    background-image: url("../img/book.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 50%;
    margin-left: -50px;
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
    z-index: 2;
}

.loading_progressbg {
    width:100%;
    height:100%;
    background-color:#333;
    opacity:0.2;
    filter: blur(4px);
    position: absolute;
    z-index: 1;
}

.allcontent_loading {
    min-height: 50vh !important;
    position: relative;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.fe_deadline_book {
    font-weight: bold;
    margin-top: 0;
    padding-left: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.fe_deadline_book_img {
    font-size: 35px;
    display: inline-block;
    margin-left: 10px;
}

.fe_pagine_book {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: auto;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
}

.sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr {
    z-index: 101 !important;
    width: 36vw !important;
    height: 36vh !important;
    margin-top: -18vh !important;
    margin-left: -18vw !important;
    background-color: #d3e1e5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;

}

.sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr > div > div {
    scrollbar-width: thin;
    scrollbar-color: #26368d rgb(206, 211, 214);
    height: auto;
    max-height: 30vh;
    overflow: auto;
    padding-right: 10px;
}

.sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr > div > div::-webkit-scrollbar {
    width: 8px; 
}

.sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr > div > div::-webkit-scrollbar-track {
    background: rgb(206, 211, 214);
}

.sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr > div > div::-webkit-scrollbar-thumb {
    background-color: #26368d;
    border: 1px solid rgb(206, 211, 214);
}

.sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr input {
    color: transparent;
    background-image: url("../img/close.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
}

.footnotereference {
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 0px 2px;
}

.footnotereference:hover {
    color: black;
    opacity: 0.7;
    text-decoration: none;
}

.fe_bookcontent_span {
    color: #434654;
    font-size: 1.2rem;
    font-weight: bold;
}

[data-page='book_content'] .fe_imieilibri_padding_boxbianco {
    padding-top: 30px;
}

.fe_quiz_img {
    font-size: 35px;
    height: auto;
    margin-left: 10px;
}

.fe_bookcontent_quizbox {
    cursor: pointer;
}

.fe_quiz_item {
    color: #434654;
    font-size: 1.8rem;
    margin-bottom: 15px;
    cursor: pointer;
}

.fe_quiz_form {
    width: 100%;
}

.fe_quiz_form > .fe_quiz_row:nth-child(odd){
    background-color: #232e7f29;
}

.fe_quiz_row {
    padding-top: 15px;
    padding-bottom: 15px;
}

.fe_quiz_answer p {
    margin-bottom: 0;
    margin-left: 10px;
}

.fe_quiz_answer  {
    margin-bottom: 0;
}

.fe_quiz_row h5 {
    font-weight: bold;
}

.fe_quiz_question {
    font-size: 1.25rem;
    margin-left: 0;
}

.fe_quiz_score {
    font-weight: bold;
    margin-left: 30px;
    font-size: 1.2rem;
}

.fe_quiz_scorevalue {
    font-weight: bold;
    margin-left: 10px;
    font-size: 1.2rem;
    color: #232e7f;
}

.fe_quix_boxanswer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 20px;
}

.fe_quix_boxanswer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 25px;
    width: 25px;
    left: 0;
    top: 50%;
    z-index: 1;
    margin-top: -12.5px;
  }

.checkmark {
    position: absolute;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    top: 50%;
    margin-top: -12.5px;
}

.checkmark2 {
    position: absolute;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    top: 50%;
    margin-top: -12.5px;
}

.fe_quix_boxanswer:hover input ~ .checkmark {
    background-color: #ccc;
}

.fe_quix_boxanswer:hover input ~ .checkmark2 {
    background-color: #ccc;
}
  
.fe_quix_boxanswer input:checked ~ .checkmark {
    background-color: #26368d;
}

.fe_quix_boxanswer input:checked ~ .checkmark2 {
    background-color: #26368d;
}

.fe_quix_boxanswer input:disabled ~ .checkmark {
    background-color: #cecece;
}

.fe_quix_boxanswer input:disabled ~ .checkmark2 {
    background-color: #cecece;
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkmark2:after {
    position: absolute;
    display: none;
}
  
.fe_quix_boxanswer input:checked ~ .checkmark2:after {
    display: block;
}

.fe_quix_boxanswer input:checked ~ .checkmark:after {
    display: block;
}
  
.fe_quix_boxanswer .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);
}

.fe_quix_boxanswer .checkmark2: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);
}

.answer_right {
    color: green;
}

.answer_wrong {
    color: red;
}

.fe_quiz_title {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 30px;
    margin-bottom: 30px;
    border-top: 6px double #000;
    margin-top: 30px;
}

.fe_home_description {
    font-size: 1.3rem;
}

.book_loadmore{
	width:60%;
	margin:0 auto;
	height:5vh;
	background-image:url('../img/loading.gif');
	background-repeat:no-repeat;
	background-position:top center;
	background-size:contain;
	filter:invert(30%);
}
.book_sessionquiz_timer{
	color: white;
}
.book_sessionquiz_timer>span{
	font-weight: bold;
	font-size: 2rem;
	padding-left:10px;
}
.book_sessionquiz_timer_warn{
	color:yellow;
}
.book_sessionquiz_timer_hwarn{
	color:red;
}


/* MEDIA QUERY IPHONE */
 
@media only screen and (max-width:767px) {

    /*.loadingQuiz {
        width: 150px;
        margin-top: -75px;
        margin-left: -75px;
        border-radius: 1em;
        height: 150px;
    }*/

    .toaster {
        position: fixed;
        width: 60%;
        margin-left: 0;
        left: 20%;
    }

    .fe_quiz_item {
        font-size: 1.2rem;
    }

    .fe_deadline_book {
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 30px;
        font-size: 0.9rem;
    }

    [data-page='book_content'] .fe_deadline_book {
        padding-left: 15px;
    }

    .fe_bookcontent_span {
        font-size: 1rem;
    }

    .fe_quiz_img {
        font-size: 30px;
        margin-left: 5px;
    }

    .sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr {
        width: 90vw !important;
        height: 70vh !important;
        margin-top: -35vh !important;
        margin-left: -45vw !important;
        padding: 25px;
    }

    .sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr input {
        height: 30px;
        width: 30px;
    }

    .sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr > div > div {
        max-height: 55vh;
    }

    .fe_pagine_book {
        font-size: 1em;
    }

    [data-page="insertotp"] .fe_login_form_box, [data-page="askotp"] .fe_login_form_box, [data-page="book_request"] .fe_login_form_box {
        padding: 13% 3%;
        margin-top: -15%;
    }

    .fe_imieilibri_logo {
        width: 30%;
        margin: auto;
        display: block;
    }

    .fe_imieilibri_header {
        background-image: url("../img/header-blu.png");
        padding-top: 20px;
        padding-bottom: 100px;
        background-size: cover;
    
    }
    
    .fe_imieilibri_searchmateria, .fe_imieilibri_advsearchfield{
        height: 2rem;
        /*width: calc(50% - 0.5rem);*/
	width:100%;
        margin: auto;
        display: inline-block;
        margin-top: 15px;
	/*opacity:0.5;*/
    }
    .fe_imieilibri_search {
        height: 2rem;
        width: 100%;
        /*opacity: 0.5;*/
        margin: auto;
        display: inline-block;
        margin-top: 15px;
    }

    .fe_imieilibri_box_contenuti {
        background-color: white;
        border-radius: 10px;
        margin-top: -80px;
        padding: 5em 0em;
    }

    .fe_imieilibri_nome_utente {
        margin: auto;
        display: inline-block;
        color: white;
        margin-right: 0.2rem;
        font-size: 2vw;
    }

    .fe_imieilibri_icona_utente {
        width: 14%;
        margin: auto;
        display: inline-block;
        cursor: pointer;
        margin-left: 5px;
    }

    .fe_imieilibri_link {
        text-decoration: none;
        color: white;
        font-size: 0.8em;
    }

    .fe_imieilibri_padding_boxbianco {
        
        padding: 1rem 1rem;
    }

    .fe_imieilibri_padding_righe {
        padding: 2rem 0rem;
    }

    .fe_imieilibri_titolo_libro, .fe_imieilibri_autore,
    .fe_imieilibri_data_libro, .fe_imieilibri_percentuale, 
    .fe_imieilibri_descrizione_libro {
        font-size: 1em;
    }

    .fe_imieilibri_bottone {
        font-size: 1em;
        margin-top: 1rem;
    }

    .fe_imieilibri_address {
        font-size: 0.8rem;
    }

    .fe_imieilibri_margine_mobile {
        margin-top: 2rem;
    }

    .fe_imieilibri_box_utente {
        padding-top: 0.5rem;
        padding-right: 0rem;
    }

    .fe_imieilibri_user {
        font-size: 1.8em;
    }

    .imieilibri_back {
        font-size: 25px;
    }


    /* MEDIA QUERY IPHONE - LOGIN */

    .fe_login_logo {
        margin-top: 5%;
        margin-bottom: 0;
        max-width: 40% !important;
    }

    .fe_login_form_box {
        background: rgba(25, 32, 87, 0.541);
        border-radius: 30px;
        padding: 5% 1%;
        margin-top: 10%;
    }

    /* MEDIA QUERY IPHONE - PROFILO */

    
    .fe_profile_email_ellissi {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .fe_profilo_username {
        font-size: 1em;
        padding-bottom: 0;
        text-align: center;
    }

    .fe_profilo_box_contatti {
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        padding-bottom: 0;
    }

    .fe_profilo_div_foto {
        width: 22vw;
        height: 22vw;
        margin-top: 5%;
    }

    .fe_profilo_icona_email {
        width: 22px;
        margin-left: 0;
        padding-top: 0;
        height: auto;

    }

    .fe_profilo_email, .fe_profilo_phone, .fe_profilo_address {
        font-size: 1.1em;
        text-align: center;
        margin-left: 10px;
    }    
    
    .fe_profilo_icona_numero {
        display: block;
        width: 18px;
        margin: auto;
        padding-bottom: 5%;
    }

    .fe_profilo_icona_posizione {
        display: block;
        width: 18px;
        margin: auto;
        padding-bottom: 5%;
    }

    .fe_profilo_box_descrizione {
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 0px;
        margin-bottom: 15px;
    }
    
    .fe_profilo_input_cerca {
        max-width: 70%;
        margin: auto;
        display: inline-block;
    }

    .fe_profilo_ilmioprofilo {
        padding-left: 0rem;
        font-size: 1.3rem;
    }

    .fe_profilo_link_modifica, .fe_profilo_link_modifica:hover {
        font-size: 0.7rem;
    }
    .fe_profilo_logout, .fe_profilo_logout:hover {
        font-size: 0.7rem;
    }

    .fe_profilo_corso {
        padding-left: 0rem;
        font-size: 1.0rem;
    }
    
    .fe_profilo_anno_iscrizione {
        padding-left: 0rem;
        font-size: 0.8rem;
    }
    
    .fe_profilo_utente_descrizione {
        padding-bottom: 2rem;
        font-size: 1rem;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .fe_profilo_istituto {
        font-size: 1.0rem;
        padding-left: 0rem;
        padding-top: 5%;
    }

    .fe_profilo_nome_utente {
        font-size: 1.0rem;
        text-align: center;
    }

    .fe_profilo_caricamento_foto {
        margin-right: -20%; 
        max-width: 50%;
    }

  /* MEDIA QUERY IPHONE DETTAGLIO LIBRO */

    .fe_dettagliolibro_titolo {
        font-size: 1.2em;
        text-align: center;
        padding-bottom: 10%;
        margin-top: 0%;
        }

    .fe_dettagliolibro_titolo_libro {
        font-weight: bold;
        font-size: 1em;
    }
    
    .fe_dettagliolibro_autore {
        font-style: italic;
        font-size: 3.2vw;
    }

    .fe_dettagliolibro_data {
        font-size: 1em;
        font-weight: bold;
    }

    .fe_dettagliolibro_percentuale {
        font-size: 3vw;
    }

    .fe_dettagliolibro_anteprima_titolo {
        font-size: 5.5vw;
        font-weight: bold;
    }
    
    .fe_dettagliolibro_anteprima_autore {
        font-size: 4.5vw;
        font-style: italic;
    }
    
    .fe_dettagliolibro_anteprima_data {
        font-size: 4vw;
        font-weight: bold;
    }

    .fe_dettagliolibro_riga_verticale {
        border-right: 0px solid #707070;
    }

    .fe_dettagliolibro_padding_anteprima {
        padding-top: 5%;
    }


    /* MEDIA QUERY IPHONE INDICE LIBRO */


    .fe_indice_capitolo {
        font-size: 1.5em;
        color: #434654;
        padding-left: 5%;
    }
    
    .fe_indice_sottocapitolo {
        font-size: 4vw;
        color: #434654;
    }

    .fe_indice_bibliografia {
        font-size: 4vw;
        color: #434654;
        margin-top: 20%;
    }

    .fe_indice_box_contenuti {
        background-color: white;
        border-radius: 10px;
        margin-top: -80px;
        padding: 1.5em 0em;
    }

    .fe_indice_collapse {
        margin-left: 2%;
    }

    .fe_indice_img_libro {
        max-width: 100%;
        border-radius: 10px;
        padding-top: 10%;
    }

    .fe_indice_numero_capitolo {
        font-size: 2.5em;
        margin-top: 15px;
    }
    
    /* MEDIA QUERY IPHONE CONTENUTO LIBRO */

    .fe_contenuto_capitolo {
        padding: 0% 3%;
        font-size: 1.2rem;
    }
    
    .fe_contenuto_indicatore_appunti {
        margin-left: -14%;
    }

    .fe_contenuto_titolo_appunto {
        font-size: 1rem;
    }
    
    .fe_contenuto_appunti_bottone {
        padding: 0% 20%;
        font-size: 1rem;
    }

    .fe_contenuto_box_appunti {
        margin-left: 0%;
    }

    .fe_contenuto_titolo_1 {
        font-size: 5vw;
    }
    
    .fe_contenuto_titolo_2 {
        font-size: 4.8vw;
    }
    
    .fe_contenuto_titolo_3 {
        font-size: 4.6vw;
    }
    
    .fe_contenuto_titolo_4 {
        font-size: 4.4vw;
    }
    
    .fe_contenuto_titolo_5 {
        font-size: 4.2vw;
    }

    .fe_contenuto_titolo_6 {
        font-size: 4vw;
    }

    .fe_contenuto_testo {
        font-size: 4vw;
    }

    .fe_cotenuto_formula {
        font-size: 4vw;
    }

    .fe_contenuto_allegato {
        font-size: 4vw;
    }

    .fe_contenuto_box_indicatore {
        margin-left: -13%;
    }

    .fe_contenuto_aggiungi_appunto {
        margin-left: 94%;
     }

     .fe_cotenuto_titolo_libro {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .fe_contenuto_autore {
        font-size: 4.4vw;
    }

    .fe_contenuto_appunti_salvati_box {
        margin-left: 0%;
    }

    .fe_contenuto_elenco_appunti {
        height: 10rem;
    }

    .fe_contenuto_appunti_testo {
        font-size: 3.8vw;
    }

    .fe_contenuto_bottone_condividi_appunto {
        line-height: 0.6 !important;
        font-size: 3vw;
    }

    .fe_contenuto_indicatore {
        height:0.6rem;
        width: 0.6rem;
    }
    
    .fe_contenuto_indicatore_2 {
        height:0.6rem;
        width: 0.6rem;
    }

    .fe_contenuto_indicatore_3 {
        height:0.6rem;
        width: 0.6rem;
    }

    [data-page="register"] .fe_register_form_box {
        background: rgba(25, 32, 87, 0.541);
		border-radius: 30px;
		padding: 0% 10%;
    }

    [data-page="register"] .fe_register_form_box input[type="text"] {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

    .fe_register_form_box input[name="username"] {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

    [data-page="register"] .fe_register_form_box input[type="password"] {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

    .fe_home_title {
        font-size: 1.5em;
    }
    
    .fe_name_user {
        font-size: 0.8em;
    }

    .fe_home_btn {
        margin: auto;
        display: block;
        background-color: #26368d;
        color: white;
        font-size: 0.8em;
    }
    
    .fe_home_btn_2 {
        width: 53%;
        font-size: 0.8em;
    }
    
    .fe_home_btn_2::after {
        content: 'Volumi della tua facoltà';
    }

    .fe_dettagliolibro_padding_bibliografia {
        margin-top: 2rem;
    }

    .fe_profilo_edit {
        margin-left: 2px;
        font-size: 18px;
    }

    .fe_profilo_box {
        margin-top: -170px;
        padding: 30px;
    }

    .fe_profile_edit_title {
        font-size: 1.5em;
    }

    .fe_content_arrow {
        width: 10px;
    }

    .fe_book_preview_img {
        max-height: 200px;
    }

    .fe_imieilibri_box_contenuti {
        min-height: 550px;
    }

    .fe_ricerca_none {
        font-size: 1.5em;
        margin-top: 30px;
    }
  
}


  /* MEDIA QUERY TABLET */

  @media only screen and (max-width: 991px) and (min-width: 768px) {

    .fe_quiz_item {
        font-size: 1.5rem;
    }

    .fe_deadline_book {
        padding: 0;
        display: flex;
        align-items: center;
        padding-left: 15px;
    }

    .toaster {
        position: fixed;
        width: 60%;
        margin-left: 0;
        left: 20%;
    }

    .fe_deadline_book_img {
        text-align: left;
        margin-left: 5px;
    }

    [data-page='book_sessionquiz'] .fe_imieilibri_padding_boxbianco {
        padding-left: 15px;
        padding-right: 15px;
    }

    .fe_bookcontent_span {
        font-size: 1.1rem;
    }

    .fe_quiz_img {
        max-height: 45px;
        max-width: 45px;
    }

    .sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr {
        width: 80vw !important;
        height: 70vh !important;
        margin-top: -35vh !important;
        margin-left: -40vw !important;
    }

    .sysbox.sysboxcenter.nsmodalframectr.fe_footnote_ctr > div > div {
        max-height: 45vh;
    }

    [data-page="insertotp"] .fe_login_form_box, [data-page="askotp"] .fe_login_form_box, [data-page="book_request"] .fe_login_form_box {
        padding: 10% 3%;
        margin-top: -15%;
    }

    .fe_imieilibri_header {

        padding-top: 25px;
    }

    .fe_imieilibri_logo {
        width: 20%;
        margin: auto;
        display: block;
    }
     
    .fe_imieilibri_box_contenuti {
            background-color: white;
            border-radius: 10px;
            margin-top: -175px;
            padding: 5em 3em;
        }

    .fe_imieilibri_searchmateria, .fe_imieilibri_advsearchfield {
            height: 2rem;
           /* width: calc(50% - 0.5rem);*/
            margin: auto;
            display: inline-block;
        }
    .fe_imieilibri_search {
            height: 2rem;
            width: 100%;
           /* opacity: 0.5;*/
            margin: auto;
            display: inline-block;
        }

    .fe_imieilibri_nome_utente {
            margin: auto;
            display: inline-block;
            color: white;
            margin-right: 0.2rem;
            font-size: 2vw;
        }
    
    .fe_imieilibri_icona_utente {
            width: 8%;
            margin: auto;
            display: inline-block;
            margin-left: 10px;
        }

    .fe_imieilibri_titolo_libro, .fe_imieilibri_autore,
    .fe_imieilibri_data_libro, .fe_imieilibri_percentuale, 
    .fe_imieilibri_descrizione_libro {
            font-size: 1.5em;
        }

    .fe_imieilibri_margine_mobile {
            margin-top: 2rem;
        }

    .fe_imieilibri_address {
            font-size: 0.8rem;
        }

    .fe_imieilibri_link {
            text-decoration: none;
            color: white;
            font-size: 1.2em;
        
        }
    
    .fe_imieilibri_bottone {
            font-size: 2.0vw;
            margin-top: 2rem;
        }

    .fe_imieilibri_padding_boxbianco {
        
            padding: 2rem 2rem;
        }
    
    .fe_imieilibri_box_utente {
            margin-top: -1.5rem;
            padding-right: 0rem;

        }
    
    .fe_imieilibri_user {
            font-size: 1.2em;
        }
     
/* MEDIA QUERY TABLET - LOGIN */

     .fe_login_form_box {
            background: rgba(25, 32, 87, 0.541);
            border-radius: 30px;
            padding: 5% 1%;
        }

    .fe_login_logo {
            margin-top: 10%;
            margin-bottom: 0;
        }

/* MEDIA QUERY TABLET - PROFILO */
    
    .fe_profilo_input_cerca {
            max-width: 50%;
        }
    
    .fe_profilo_caricamento_foto {
            margin-right: -15%; 
            max-width: 50%;
        }

    .fe_profilo_icona_email {
            display: block;
            width: 22px;
            margin: auto;
            padding-bottom: 5%;
        }
    
    .fe_profilo_icona_numero {
            display: block;
            width: 20px;
            margin: auto;
            padding-bottom: 5%;
        }
    
    .fe_profilo_icona_posizione {
            display: block;
            width: 20px;
            margin: auto;
            padding-bottom: 5%;
        }
    
    .fe_profilo_email, .fe_profilo_phone, .fe_profilo_address {
            font-size: 1.1em;
            text-align: center;
            padding-right: 0%;
            padding-left: 0%;
        }

    .fe_profilo_nome_utente {
            font-size: 1.5rem;
        }
        
    .fe_profilo_username {
            font-size: 1.2rem;
            padding-bottom: 15%;
        }
    
    .fe_profilo_div_foto {
            width: 20vw;
            height: 20vw;
        }
    
    /* MEDIA QUERY TABLET DETTAGLIO LIBRO */

    .fe_dettagliolibro_titolo {
            color: #434654;
            font-size: 3vw;
            font-weight: bold;
            padding-bottom: 30%;
    }

    .fe_dettagliolibro_titolo_libro {
        font-weight: bold;
        font-size: 2.5vw;
    }
    
    .fe_dettagliolibro_autore {
        font-style: italic;
        font-size: 2.3vw;
    }

    .fe_dettagliolibro_data {
        font-size: 2vw;
        font-weight: bold;
    }

    .fe_dettagliolibro_percentuale {
        font-size: 2.5vw;
    }

    .fe_dettagliolibro_anteprima_titolo {
        font-size: 3.5vw;
        font-weight: bold;
    }
    
    .fe_dettagliolibro_anteprima_autore {
        font-size: 3.2vw;
        font-style: italic;
    }
    
    .fe_dettagliolibro_anteprima_data {
        font-size: 3vw;
        font-weight: bold;
    }
    
    
    /* MEDIA QUERY TABLET INDICE LIBRO */

    .fe_indice_capitolo {
        font-size: 3vw;
        color: #434654;
    }
    
    .fe_indice_sottocapitolo {
        font-size: 2.5vw;
        color: #434654;
    }

    .fe_indice_bibliografia {
        font-size: 2.5vw;
        color: #434654;
        margin-top: 20%;
    }

    /* MEDIA QUERY TABLET CONTENUTO LIBRO */

    .fe_contenuto_capitolo {
        padding: 0% 3%;
        font-size: 3.0vw;
    }
    
    .fe_contenuto_indicatore_appunti {
        margin-left: -62%;
        padding-top: 2%;
    
    }

    .fe_contenuto_titolo_appunto {
        font-size: 3vw;
    }
    
    .fe_contenuto_appunti_bottone {
        padding: 0% 20%;
        font-size: 2vw;
    }

    .fe_contenuto_box_appunti {
        margin-top: 0%;
        margin-left: 80%;
    }

    .fe_contenuto_titolo_1 {
        font-size: 1.5rem;
    }
    
    .fe_contenuto_titolo_2 {
        font-size: 3.8vw;
    }
    
    .fe_contenuto_titolo_3 {
        font-size: 3.6vw;
    }
    
    .fe_contenuto_titolo_4 {
        font-size: 3.4vw;
    }
    
    .fe_contenuto_titolo_5 {
        font-size: 3.2vw;
    }
    
    .fe_contenuto_titolo_6 {
        font-size: 3vw;
    }

    .fe_contenuto_testo {
        font-size: 3vw;
    }

    .fe_cotenuto_formula {
        font-size: 3vw;
        width: 80%;
        text-align: center;
    }

    .fe_contenuto_allegato {
        font-size: 3vw;
    }

    .fe_cotenuto_titolo_libro {
        font-size: 2rem;
        text-align: center;
    }
    
    .fe_contenuto_autore {
        font-size: 1.5rem;
    }

    .fe_contenuto_appunti_salvati_box {
        margin-left: 80%;
    }

    .fe_contenuto_elenco_appunti {
        height: 15rem;
    }

    .fe_contenuto_appunti_testo {
        font-size: 2.8vw;
    }

    .fe_contenuto_bottone_condividi_appunto {
        line-height: 0.6 !important;
        font-size: 2.4vw;
    }

    .fe_contenuto_box_indicatore {
        margin-left: -15%;
    }

    .fe_content_arrow {
        width: 18px;
    }

    .fe_home_title {
        font-size: 2em;
    }

    .fe_profile_email_ellissi {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fe_profile_edit_title {
        font-size: 2em;
    }
    
  }
  
/* MEDIA QUERY IPHONE - LANDSCAPE*/

@media only screen and (max-device-width: 813px) and (orientation: landscape){
    .fe_login_logo {
        margin-top: 10%;
        margin-bottom: 10%;
    }

    .fe_login_form_box {
        padding: 5% 2%;
        margin-bottom: 10%;
    }
}

/* MEDIA QUERY SCHERMI GRANDI*/

@media only screen and (min-width: 992px) and (max-width: 1366px)  {
    .fe_profilo_caricamento_foto {
        margin-right: -20px; 
        max-width: 50%;
    }

}

/* MEDIA QUERY IPHONE LANDSCAPE */

@media only screen and (max-device-width: 767px) and (orientation: landscape){
    
    .fe_contenuto_indicatore {
        height:1rem;
        width: 1rem;
    }
    
    .fe_contenuto_indicatore_2 {
        height:1rem;
        width: 1rem;
    }

    .fe_contenuto_indicatore_3 {
        height:1rem;
        width: 1rem;
    }

    .fe_contenuto_box_indicatore {
        margin-left: -17%;
    }
}

.notincluded>div>div>a>img, .notincludeddetail>a>img{
	 filter: grayscale(1);
}
.notincluded>div>div>h4.fe_imieilibri_titolo_libro, .notincluded>div>div>h5.fe_imieilibri_autore, .notincluded>div>div>div>div>h6.fe_imieilibri_data_libro, .notincluded>div>div>div>div>div.fe_book_isbn, .notincluded>div>div>div>div>span.fe_materia{
	color: #888;
}
@media only screen and (min-device-width: 1200px){
.fe_imieifiltri_ctr{
	margin-top:-3rem;
}
}
.fe_imieifiltri_ctr>form>div>input[type="checkbox"]{
	width:2rem;
	height:2rem;
	display:inline-block;
}
.fe_imieifiltri_ctr>form>div>label{
	vertical-align:middle;
	margin-left:5px;
	width: calc(100% - 5px - 2rem);
}
@media only screen and (min-device-width: 1200px){
	.fe_imieifiltri_ctr>form>div>input[type="checkbox"]{
		width:1rem;
		height:1rem;
	}
	.fe_imieifiltri_ctr>form>div>label{
		line-height:1.5rem;
	}
}

/*
.content_loading {
	background-image:url('../img/text_loading.png');
	background-size:contain;
    background-repeat: repeat;
    min-height: 10vh;
}
*/

/* CONTENT PROTECTION */
.fe_imieilibri_box_contenuti{
	/*-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
}
@media print{
	.fe_imieilibri_box_contenuti{
		display:none;
		color:#ffffff;
		opacity:0;
		font-size:0;
	}
}
/* /CONTENT PROTECTION */
.hidden{display:none !important;}



.pdfreader_gctr{
    font-family: Lato, sans-serif;
    font-size: 16px;
    color: #252525;
}
.pdfreader_gctr h1, .pdfreader_gctr h2, .pdfreader_gctr h3, .pdfreader_gctr h4, .pdfreader_gctr h5, .pdfreader_gctr h6{
	color: #252525;
}
.pdfreader_gctr h1{
    font-size: 2em;
    font-weight: 600;
    line-height: 2.35rem;
}
.pdfreader_gctr h2{
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.8rem;
}
.pdfreader_gctr h3{
    font-size: 1.75em;
    font-weight: 600;
    line-height: 2.1rem;
    margin: 0;
}
.pdfreader_gctr h4{
    font-size: 1em;
    font-weight: 600;
    line-height: 1.2rem;
}
.pdfreader_gctr h5{
    font-weight: 600;
    font-size: 1em;
}
.pdfreader_gctr h6{
    font-weight: 700;
    color: #656565;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.03rem;
}
.pdfreader_gctr .pdfreader_header{
    height: 72px;
    width: 100%;
    box-shadow: 0px 1px 4px 0px #12121240;
    padding: 8px 24px;
    position: relative;
    z-index: 10;
    background-color: #fff;
}
.pdfreader_gctr .pdfreader_header img{
	cursor: pointer;
}
.pdfreader_gctr .pdfreader_header .icon-home img{
	margin:0 10px;
}
.pdfreader_gctr .pdfreader_header .icon-home span{
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pdfreader_gctr .pdfreader_header .icon-home:hover span{
    opacity: 1;
}
.pdfreader_gctr .pdfreader_header a, .pdfreader_gctr .pdfreader_header a:hover, .pdfreader_gctr .pdfreader_header a:focus{
    color: #252525;
    text-decoration: none;
}
.pdfreader_gctr .pdfreader_hctr{
    display: flex;
    min-height: calc(100vh - 144px);
	overflow: auto;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.pdfreader_gctr .pdfreader_hctr::-webkit-scrollbar{
	 display: none;/* Hide scrollbar for Chrome, Safari and Opera */
}
.pdfreader_gctr .pdfreader_hctr .pdfreader_ctr{
    background-color: #fff;
    position: relative;
	cursor:grab;
}
.pdfreader_gctr .pdfreader_hctr .pdfreader_ctr{
	height:100%;
	width:100%;
}
.pdfreader_gctr .pdfreader_hctr .pdfreader_ctr>div,
.pdfreader_gctr .pdfreader_hctr .pdfreader_ctr>div>canvas,
.pdfreader_gctr .pdfreader_hctr .pdfreader_ctr>div>.pdfreader_layer_link
{
	height:100%;
	width:100%;
	position:absolute;
}
.pdfreader_gctr .pdfreader_bottomnav{
	height: 72px;
	width: 100%;
	box-shadow: 0px -1px 4px 0px #12121240;
	position: relative;
	z-index: 10;
	padding: 8px 24px;
	background-color: #fff;
}
.pdfreader_gctr .pdfreader_bottomnav .bookmark {
    margin: 0 10px;
}
.pdfreader_gctr .pdfreader_bottomnav .bookmark img{
	cursor: pointer;
	max-height:1em;
}
.pdfreader_gctr .pdfreader_bottomnav .pagination {
    font-weight: 600;
}
.pdfreader_gctr .pdfreader_bottomnav .pagination>div{
	padding: 8px;
}
.pdfreader_gctr .pdfreader_bottomnav .pagination img{
	cursor: pointer;
}
.pdfreader_gctr .pdfreader_bottomnav .pagination input{
    width: 4em;
    text-align: center;
    border: 1px solid #546894;
    border-radius: 4px;
    font-weight: 600;
}
.pdfreader_gctr .pdfreader_bottomnav .progress-container {
    padding: 0 25px;
    position: relative;
}
.pdfreader_gctr .pdfreader_bottomnav .progress-container .progress-bar{
    background-color: #001E60;
    height: 8px;
    align-items: flex-end;
}
.pdfreader_gctr .pdfreader_bottomnav .progress-container .progress-bar span{
    background-color: #fff;
    color: #001E60;
    padding: 2px;
    font-weight: 600;
    cursor: pointer;
}
.pdfreader_gctr .pdfreader_bottomnav .progress-container .progress{
    height: 8px;
    background-color: #B0B9CE;
}
.pdfreader_gctr .pdfreader_bottomnav .progress-container input[type="range"]{
    background: linear-gradient(to right, #001E60 0%, #B0B9CE 1%,#B0B9CE 100%);
    border-radius: 4px;
    height: 8px;
    width: 100%;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}
.pdfreader_gctr .pdfreader_bottomnav .progress-container input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    background-color: #001E60;
    border-radius: 2px;
    height: 24px;
    width: 4px;
    outline: 2px solid #fff;
}
.pdfreader_curpage input:focus, .pdfreader_curpage input:active{
	color: inherit;
}


.pdfloading_icon{
	display:none;
}
.pdfloading>.pdfloading_icon{
	display:block;
	position:absolute;
	top:10%;
	left:10%;
	height:2in !important;
	margin-left:-10%;



	background-color:transparent;
	background-image:url(../img/book.png);
	background-repeat:no-repeat;
	background-size: contain;
	background-position: center;
    animation-name:animationrotate;
    animation-duration:2s;
    animation-delay:0s;
    animation-iteration-count:999999;
    animation-direction:normal;
    animation-timing-function:linear;
    transform:rotate(0deg);
}

.copyprintmenu{
	position:fixed;
	z-index:2;
	width:400px;
	height:160px;
	border:1px solid grey;
	background-color:white;
	box-shadow: 0px 6px 8px 0px #333;
	padding:15px;
	top:0;
	left:50%;
	margin-left:-200px;
}
.copyprintmenu>a{
	display:block;
	width:100%;
	font-size:1.5em;
	cursor:pointer;
}
.copyprintmenubg{
	position:fixed;
	z-index:1;
	width:0vw;
	height:0vh;
	opacity:0;
}
.contenitore_contents>.fe_contenuto_testo,
.contenitore_contents>.fe_contenuto_titolo1,
.contenitore_contents>.fe_contenuto_titolo2,
.contenitore_contents>.fe_contenuto_titolo3,
.contenitore_contents>.fe_contenuto_titolo4,
.contenitore_contents>.fe_contenuto_titolo5,
.contenitore_contents>.fe_contenuto_titolo6,
.contenitore_contents>.fe_contenuto_link{
	cursor:text;
}

.printbg{display:none;}
@media print{
	body{
		height:auto;
	}
	.printbg{
		display:block;
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:100%;
		z-index:-1;
	}
	[data-page]{
		display:none;
	}
	[data-page].syspageactive{
		display:block;
		height:auto;
		position:static;
	}
	.fe_bg{
		background-color:transparent;
	}
	.fe_imieilibri_bg_body{
		background-image:none;
		margin-left:0;
		margin-right:0;
		background-color:transparent;
	}
	.fe_imieilibri_box_contenuti{
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		margin-top:0;
		background-color:transparent;
	}
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent,
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents,
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div{
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		margin-top:0;
	}
	.header, .footer{
		display:none;
	}
	.fe_imieilibri_box_contenuti{
		/*display:none;
		color:#ffffff;
		opacity:0;
		font-size:0;*/
		display:block;
		color: #212529;
		opacity:1;
		font-size:1rem;
	}
	.fe_imieilibri_box_contenuti>div{
		display:none;
		color:#ffffff;
		opacity:0;
		font-size:0;
	}
	.fe_imieilibri_box_contenuti>div.contenitore_contents_parent{
		display:block;
		color: #212529;
		opacity:1;
		font-size:1rem;
	}
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div{
		display:none;
		color:#ffffff;
		opacity:0;
		font-size:0;
	}
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_print,
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_print
	{
		display:block;
		color: #212529;
		opacity:1;
		font-size:1rem;
	}
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div br.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div button.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div time.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div tt.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div var.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div a.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div abbr.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div acronym.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div b.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div cite.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div code.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div dfn.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div em.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div i.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div output.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div q.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div samp.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div script.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div select.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div small.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div span.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div strong.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div sub.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div sup.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div textarea.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div bdo.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div big.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div img.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div input.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div kbd.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div label.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div map.fe_print, 
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div Object.fe_print
	{
		display:inline;
	}
	.footnotereference.fe_print{
		display:none;
		color:#ffffff;
		opacity:0;
		font-size:0;
	}
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_noprint,
	.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_noprint
	{
		display:none;
		color:#ffffff;
		opacity:0;
		font-size:0;
	}

		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_titolo_1.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_titolo_1 .fe_print{
		    font-size: 2em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_titolo_2.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_titolo_2 .fe_print{
		    font-size: 1.8em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_titolo_3.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_titolo_3 .fe_print{
		    font-size: 1.6em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_titolo_4.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_titolo_4 .fe_print{
		    font-size: 1.4em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_titolo_5.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_titolo_5 .fe_print{
		    font-size: 1.3em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_titolo_6.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_titolo_6 .fe_print{
		    font-size: 1.2em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_testo.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_testo .fe_print{
		    font-size: 1.2em;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_link.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_link .fe_print{
		    font-size: 1.2em;
		    color: #434654;
		}
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_cotenuto_formula.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_cotenuto_formula .fe_print{
		    font-size: 1.3vw;
		    color: #434654;
		}
		
		.fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div.fe_contenuto_allegato.fe_print, .fe_imieilibri_box_contenuti>.contenitore_contents_parent>.contenitore_contents>div .fe_contenuto_allegato .fe_print{
		    font-size: 1.3vw;
		    color: #434654;
		}
}
