@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;
}

html, body {
    height: 100%;
}

.fe_landing_text1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.fe_landing_text2 {
    font-size: 1.5rem;
    text-align: center;
}

*[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);
}



.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="book_add"] .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="book_add"] .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_search {
    max-width: 100%;
    opacity: 0.5;
    height: 30%;
    margin: auto;
    display: inline-block;
}

.fe_imieilibri_logo {
    max-width: 200px;
    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_img_libro {
    display: inline;
    max-height: 175px;
    border-radius: 10px;
    cursor: pointer;
    width: auto;
}

.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;
}


.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_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_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;
    margin-bottom: 15%;
    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_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_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;
}

.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_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;
}

[data-page='book_add'] .fe_login_form_box {
    margin-bottom: 50px;
}

[data-page='book_add'] .fe_login_input {
    background-color: transparent;
}

/* MEDIA QUERY IPHONE */
 
@media only screen and (max-width:767px) {

    .fe_landing_text1 {
        font-size: 1.3rem;
    }
    
    .fe_landing_text2 {
        font-size: 1.2rem;
    }

    .fe_home_btn_addbook {
        margin-top: 15px !important;
    }
    
    .fe_pagine_book {
        font-size: 1em;
    }

    .fe_imieilibri_logo {
        max-width: 120px;
        margin: auto;
        display: block;
    }

    [data-page="book_add"] .fe_login_form_box {
        padding: 13% 3%;
        margin-top: -15%;
    }

    .fe_imieilibri_header {
        background-image: url("../img/header-blu.png");
        padding-top: 20px;
        padding-bottom: 100px;
        background-size: cover;
    
    }
    
    .fe_imieilibri_search {
        height: 1.3rem;
        width: 70%;
        opacity: 0.5;
        margin: auto;
        display: inline-block;
    }

    .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.6rem;
        margin-top: 10px;
    }

    .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;
        margin-bottom: 7%;
    }


    /* MEDIA QUERY IPHONE - LOGIN */

    .fe_login_logo {
        margin-top: 25%;
        margin-bottom: 25%;
        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: 4vw;
    }
    
    .fe_contenuto_indicatore_appunti {
        margin-left: -14%;
    }

    .fe_contenuto_titolo_appunto {
        font-size: 4vw;
    }
    
    .fe_contenuto_appunti_bottone {
        padding: 0% 20%;
        font-size: 3vw;
    }

    .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: 4.6vw;
        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) {

    [data-page="book_add"] .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_search {
            height: 2rem;
            width: 50%;
            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;
            margin-top: 15px;
        }

    .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: 10%;
        }

/* 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: 4vw;
    }
    
    .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: 3.6vw;
        text-align: center;
    }
    
    .fe_contenuto_autore {
        font-size: 3.4vw;
    }

    .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;
    }

    .imieilibri_back {
        margin-bottom: 5%;
    }
    
  }
  
/* 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%;
    }
}

.content_placeholder{
	background-image:url(../img/content_placeholder.gif);
	background-size:contain;
	width:100%;
	height:4em;
}

/* 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;}
