/**
 * Customization
 */

/**
 * Include Web Font
 */

@import "fonts/index.css";
/*@import "fonts/stylesheet.css";*/
@Import "Smartphone.css";
/**
 * Custom CSS
 */



body {
	background-image: url("img/apertura.png");
}

#header .menu .logo a{
	 background: url("img/logo.png") no-repeat; 
}

/**
 * Nasconde il bottone header opacità
 */
@-webkit-keyframes hideAlpha2 {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0.6;
	}
}

@-moz-keyframes hideAlpha2 {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0.6;
	}
}

@-o-keyframes hideAlpha2 {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0.6;
	}
}

@keyframes hideAlpha2 {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0.6;
	}
}

/**
 * Visualizza il bottone header opacità
 */
@-webkit-keyframes showAlpha2 {
	0% {
		opacity: 0.6;
	}
	
	100% {
		opacity: 1;
		
	}
}

@-moz-keyframes showAlpha2 {
	0% {
		opacity: 0.6;
	}
	
	100% {
		opacity: 1;
	}
}

@-o-keyframes showAlpha2 {
	0% {
		opacity: 0.6;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes showAlpha2 {
	0% {
		opacity: 0.6;
	}
	
	100% {
		opacity: 1;
	}
}


/** forzo sovrascrittura style.css **/
#header .menu .button.print{
	display: block;
}
#header .menu .button.download{
	display: block;
}

/*Colore Bakground*/
.flippage{
	background-color: rgb(0,0,0);
	background-image: none;
}

/*HEADER*/
#header{
	height: auto;
	width: 100%;
	border: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	z-index: 999;
}
.contentTableView .content .thumbs .title {
    clear: both;
    font-size: 18px;
    height: 35px;
    line-height: 44px;
    border-bottom: 2px solid #7f0941;
    margin-bottom: 20px;
    color: #616161;
}  

.no-touch .contentTableView .content .menu a:hover, .contentTableView .content .menu a:active, .contentTableView .contenttablet .menu a.active {
    color: #baa47a;
}  
.no-touch .contentTableView .content .thumbs .thumb:hover, .contentTableView .content .thumbs .thumb:active {
    border-bottom-color: #baa47a
}

.dynamicLayer .trigger i {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0;
    padding: 0;
    font-size: 60px;
    color: rgba(0,0,0,0);
    text-align: center;
    background: rgba(0, 129, 206, 0);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}    

.no-touch .dynamicLayer .trigger:hover i, .dynamicLayer .trigger:active i {
    background: rgba(0, 87, 139, 0);
    color: rgba(137, 157, 170, 0);
}
/*html.touch .dynamicLayer .trigger i {
    background: rgba(127, 9, 65, 1);
    color: rgba(255, 255, 255, 1);
}*/

.dynamicLayer .popup .close {
    display: block;
    position: absolute;
    top: -40px;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: #7F0941;
    z-index: 502;
    cursor: pointer;

}

.no-touch .dynamicLayer .popup .close:hover, .dynamicLayer .popup .close:active {
    background: #660734;
    
}

#header .menu {
height: 40px;
overflow: hidden;
background-color: rgb(255,255,255);
background-image: linear-gradient(bottom, rgb(255,255,255) 0%, rgb(255,255,255) 83%);
background-image: -o-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(255,255,255) 83%);
background-image: -moz-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(255,255,255) 83%);
background-image: -webkit-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(255,255,255) 83%);
background-image: -ms-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(255,255,255) 83%);
background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255, 255, 255)), color-stop(0.83, rgb(255, 255, 255)) );
border-bottom: 2px solid #000;
}

#header .navigationBar{
	height: 39px;
	background: #7f0941;
	border-bottom: 1px solid #FFF;
}

/*Pulsante apertura header*/
#header .openMenu .inner{
	display: block;
	margin-top: -170px;
	height: 200px;
	width: 200px;
	
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;

	background-color: #7f0941;

	line-height: 370px;
	text-align: center;
	color: #FFF;
	font-size: 24px;

	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-ms-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
	
}

.no-touch #header .openMenu .inner:hover,
	#header .openMenu .inner:active{
		background-color: #7f0941;
		color: #baa47a;
	}


#header .openMenu .inner.hide{
	-webkit-animation-name: hideAlpha2;
	-moz-animation-name: hideAlpha2;
	-o-animation-name: hideAlpha2;
	animation-name: hideAlpha2;
}
#header .openMenu .inner.show{
	-webkit-animation-name: showAlpha2;
	-moz-animation-name: showAlpha2;
	-o-animation-name: showAlpha2;
	animation-name: showAlpha2;
}



/*Pilsante cambio pagina*/

.flippage a.navigation.button i{
	background: #7f0941;
	-webkit-border-radius: 110px;
	-moz-border-radius: 110px;
	border-radius: 110px;
	width: 110px;
	height: 110px;
	text-align: left;
	font-size: 35px;

	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-ms-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;

}

.no-touch .flippage a.navigation.button:hover i,
.flippage a.navigation.button:active i{
	background-color: #7f0941;
	color: #baa47a;
}

/*Colore pulsanti Header*/
#header .menu a i{
	display: block;
	width: 100%;
	width: 100%;
	color: #7f0941;
}

.no-touch #header .menu .button a:hover,
#header .menu .button a:active{
	background: #baa47a;

}

/*colore filetto campo ricerca*/
#header .menu .search {
width: 200px;
height: 100%;
text-align: center;
border-left: 1px solid #7f0941;
box-sizing: border-box;
}

/*colore filetti pulsanti header*/
#header .menu .button {
height: 40px;
width: 50px;
line-height: 40px;
margin: 0;
padding: 0;
text-align: center;
font-size: 18px;
font-weight: normal;
color: #FFF;
border-left: 1px solid #7f0941;
border-right:1px solid #7f0941;
box-sizing: border-box;
}

/*Campo inserimento numero pagina*/
#header .navigationBar .navinput input.goToPage {
width: 90px;
border: none;
padding: 4px;
margin-top: 8px;
font-weight: normal;
font-family: verdana;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
color: #7f0941;
text-align: center;
}

/*X di chiusura tabelle*/
.modalView .headerbar a.close i {
height: 50px;
width: 50px;
display: block;
line-height: 50px;
text-align: center;
font-size: 20px;
color: #7f0941;
}

.no-touch .modalView .headerbar a.close:hover i, .modalView .headerbar a.close:active i {
color: #bdf6c1;
}

/*Header tabelle*/
.modalView .headerbar h1 {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
text-align: center;
line-height: 50px;
color: #7f0941;
font-weight: normal;
font-family: verdana;
font-size: 20px;
}

/*Pulsante check out ecommerce*/
.cartView .totalsContainer .actions a {
width: 100px;
height: 40px;
line-height: 40px;
margin: 5px 20px;
text-align: center;
display: block;
color: #fff;
background-color: #7f0941;
border-color: #7f0941;
border-radius: 4px;
}

.touch .cartView .totalsContainer .actions a:active, .no-touch .cartView .totalsContainer .actions a:hover {
color: #fff;
background-color: #baa47a;
border-color: #7f0941;
}

/*Pulsante add bookmark*/
.bookmarkView .content .addpage .data button[type="submit"] {
display: block;
width: 40%;
background: #7f0941;
border: none;
color: #FFF;
font-family: verdana;
font-size: 12px;
cursor: pointer;
height: 40px;
}

/*pulsante di chiusura thumb bookmark*/
.bookmarkView .content .bookmark span.close {
position: absolute;
right: 0;
top: 0;
width: 22px;
height: 22px;
margin-right: -11px;
margin-top: -11px;
text-align: center;
line-height: 22px;
font-size: 10px;
color: #FFF;
background: #7f0941;
-webkit-border-radius: 11px;
-moz-border-radius: 11px;
border-radius: 11px;
}

.bookmarkView .content .bookmark span.close i:before {
width: 19px;
height: 22px;
line-height: 22px;
font-size: 8px;
}

.no-touch .bookmarkView .content a.bookmark:hover, .bookmarkView .content a.bookmark:active {
border-bottom: 4px solid #7f0941;
}

.no-touch .bookmarkView .content span.close:hover,
.bookmarkView .content span.close:active{
	background: #7f0941;
}


/*Pulsante submit share */
.shareView .content .formsendmail button[type="submit"] {
display: block;
width: 50%;
background: #7f0941;
border: none;
color: #FFF;
font-family: verdana;
font-size: 12px;
cursor: pointer;
height: 40px;
}
/*tabella ricerca colore evidenza*/
.searchView .content .title span.word {
color: #7f0941;
}

.searchView .content .wrapper .item span.highlight {
color: #7f0941;
font-weight: bold;
}

/*cookie*/
.cookieMessage .igree{
	background-color: #7f0941;

}
.cookieMessage .igree:active{
	background: #7f0941
}
.no-touch .searchView .content .wrapper .item:hover, .searchView .content .wrapper .item:active {
    border-bottom-color: #7f0941;
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    
    #header .menu .logo a{
    	
		background: url("img/logo@2x.png") no-repeat;
		background-size: 109px auto;
		
	}

}
@media only screen and (max-width: 764px) and (orientation : portrait) {
	nav#header {
		height:142px;/*259*/
	}
	nav#header .menu .button {
		border: 0px;
	}
	nav#header > div.headerWrapper.open > div.menu > div.menuWrapper[dir="ltr"] > div.button {
		width:10% !important;
		float:left !important;
	}
	/* per evitare barra di scorrimento sotto i bottoni*/
	nav#header .menu .menuWrapper[dir="ltr"] .logo {
		margin-left:0px;
		margin-right:0px;
	}
	#header .menu .menuWrapper {
		overflow:hidden;
	}
	nav#header .navigationBar .chapters .chapter { 
		width:23%;
	}
	nav#header .menu {
		height:100px;
	}
	nav#header .menu .search {
		height: 40px;
		width:10%;
		float:right;
		padding:0px;
		border-bottom:0px;
		border-left: none;

	}
	
	nav#header .menu .search input{
		line-height:28px;
		background-image: none;
		background-size:18px 18px;
		background-repeat:no-repeat;
		background-position: 10px center;
		cursor:pointer;
		color:#fff;
		/*padding-left:40px;
		overflow:hidden;
		width:1px;*/
	}

	nav#header .menu .search input::-webkit-input-placeholder {
   		display:none;
   		color: transparent;
	}

	nav#header .menu .search input:-moz-placeholder { /* Firefox 18- */
	   display:none;  
	   color: transparent;
	}

	nav#header .menu .search input::-moz-placeholder {  /* Firefox 19+ */
	   display:none;  
	   color: transparent;
	}

	nav#header .menu .search input:-ms-input-placeholder {  
	   display:none;  
	   color: transparent;
	}
	
	/*div.chapters:after{
		content:">>";
		position:relative;
		right:50px;
	}*/
}
@media only screen and (max-width: 764px) and (orientation : landscape) {
	nav#header {
		height:142px;/*195*/
	}
	nav#header .menu .button {
		border: 0px;
	}
	/** modifiche per menu header per dispositivi con width piccola **/
	nav#header > div.headerWrapper.open > div.menu > div.menuWrapper[dir="ltr"] > div.button {
		width:10%; /*era 24*/
		float:left;
	}
	nav#header .menu {
		height:100px;
	}
	nav#header .menu .search {
		height: 40px;
		width:10%;
		float:right;
		padding:0px;
		border-bottom:0px;
		border-left: none;

	}
	nav#header .menu .search input{
		line-height:28px;
		background-image: none;
		background-size:18px 18px;
		background-repeat:no-repeat;
		background-position: 10px center;
		cursor:pointer;
		color:#fff;
		/*padding-left:40px;
		overflow:hidden;
		width:1px;*/
	}

	nav#header .menu .search input::-webkit-input-placeholder {
   		display:none;
   		color: transparent;
	}

	nav#header .menu .search input:-moz-placeholder { /* Firefox 18- */
	   display:none;  
	   color: transparent;
	}

	nav#header .menu .search input::-moz-placeholder {  /* Firefox 19+ */
	   display:none;  
	   color: transparent;
	}

	nav#header .menu .search input:-ms-input-placeholder {  
	   display:none;  
	   color: transparent;
	}
	/* per evitare barra di scorrimento sotto i bottoni*/
	nav#header .menu .menuWrapper[dir="ltr"] .logo {
		margin-left:0px;
		margin-right:0px;
	}
	nav#header .navigationBar .chapters .chapter { 
		width:23%;
	}
}

@media only screen and (min-width: 765px)  {
	nav#header {
		height:82px;
	}
}

@media only screen and (max-width: 560px)  {
	.shareView .content {

		height: auto;
		margin-top: 65px;
		width: 90%
		
	}
}	


@media only screen and (max-width: 520px)  {
	.shareView .content {
		width: 100%;
		padding-left:0px;
		padding-right:0px;
		
	}
}
/*
@media only screen and (min-width: 788px) and (max-width: 1224px )  {
	.contentTableView .content {
	margin: 30px 5px 0 10px;
	}

	.contentTableView .content .menu {
	width: 28%;
	}
}	
*/

/*** disbilitiamo i tasti di stampa e download per i device "mobile" ***/
/** (max-device-width : 768px) **/
@media only screen and handheld  {
	#header .menu .button.print,
	#header .menu .button.download {
		display: none;
	}
	
	#header .menu .button.print{
		display: none;
	}
	#header .menu .button.download{
		display: none;
	}
}

/*Disabilito la sovrapposizione delle scritte nella tab indice*/
@media only screen and (max-width: 1222px) {
    .contentTableView .content .menu {
        width: 40%;
    }
}

/*
MANPOST098/20
 */
.flippage a.navigation.button.left.hidemiddle i,
.flippage a.navigation.button.left.showmiddle i,
.flippage a.navigation.button.right.hidemiddle i,
.flippage a.navigation.button.right.showmiddle i {
    -webkit-animation-name: none;
    -moz-animation-name: none;
    -o-animation-name: none;
    animation-name: none;
}

.flippage a.navigation.button.left.show i,
.flippage a.navigation.button.right.show i{
    -webkit-animation-duration:500ms;
    -moz-animation-duration:500ms;
    -ms-animation-duration:500ms;
    -o-animation-duration:500ms;
    animation-duration:500ms;
    -webkit-animation-name: showAlpha;
    -moz-animation-name: showAlpha;
    -o-animation-name: showAlpha;
    animation-name: showAlpha;
}


	div#full-screen {
		background-color: rgb(127, 9, 65)	;
}	

#header .navigationBar .chapters .chapter {
    min-width: 145px;
}
#header .navigationBar .chapters .chapter {
	font-size: 11px;
}