

body {
	font-size: 100%;
	font-family: 'Open Sans', sans-serif;
	color: #333333;
	background-color: #f4f3f5;
	margin: 0px;
}
a {text-decoration: none;}
a img{border: 0px;}
ol, ul {list-style: none; margin: 0px; padding: 0px;}
/* Modulo - di parti riutilizzabili nel designe */
.cd-img-replace {
	/* sostituire il testo con un background-image */
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.overflow-hidden {
	/*overflow: hidden;*/
}
/* Header */
#header {
	position: absolute;
	top: 0;
	left: 0;
	height: 120px;
	width: 100%;
	background-color: #E1E1E1;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
#header.lateral-menu-is-open {
	/* visualizzare il menu laterale */
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
}
#header.is-fixed {
	position: fixed;
}
@media only screen and (max-width: 760px) {
	#header {
		position: fixed;
	}
}
@media only screen and (max-width: 550px) {
	#header {
		height: 70px;
	}
}
#cd-logo {
	display: block;
	float: left;
	margin: 10px 0 0 10px;
}
#cd-logo img {
	display: block;
}
@media only screen and (max-width: 550px) {
	#cd-logo {
		margin: 10px 0 0 10px;
		width: 160px;
		height: auto;
	}
	#cd-logo img {
		max-width: 100%;
		height: auto;
	}
}
#cd-top-nav {
	float: right;
	height: 100%;
	display: block;
}
#cd-top-nav ul {
	height: auto;
	padding-top: 1em;
	margin-right: 1em;
}
#cd-top-nav li {
	font-size: 12px;
	display: block;
	float: left;
}
#cd-top-nav a {
	display: inline-block;
	padding: .5em;
	color: #000;
	text-transform: uppercase;
	font-weight: normal;
}
#cd-top-nav .accedi{
	border-right: 1px solid #e6e6e6;
}
#cd-top-nav a.current {
	background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
	color: #AD0000;
}
@media only screen and (max-width: 790px) {
	#cd-top-nav {
		display: none;
	}
}
#cd-menu-trigger {
	display:none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}
#cd-menu-trigger .cd-menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
	display: inline-block;
	line-height: 200px;
}
#cd-menu-trigger .cd-menu-icon {
	/* linea centrale del menù */
	display: inline-block;
	position: absolute;
	top: 50%;
	bottom: auto;
	left: auto;
	right: 1.25em;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	width: 18px;
	height: 2px;
	background-color: #000;
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
	bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
	top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
	background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
	background-color: #000;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media only screen and (max-width: 790px) {
	#cd-menu-trigger {
		display:block;
		width: 110px;
		padding-left: 1.25em;
	}
}
@media only screen and (max-width: 550px) {
	#cd-menu-trigger {
		width: 50px;
	}
	#cd-menu-trigger .cd-menu-text {
		display: none;
	}
	#cd-menu-trigger .cd-menu-icon {
		left: 50%;
		right: auto;
		-webkit-transform: translateX(-50%) translateY(-50%);
		-moz-transform: translateX(-50%) translateY(-50%);
		-ms-transform: translateX(-50%) translateY(-50%);
		-o-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
	}
}
/* Menù laterale */
#cd-lateral-nav {
	position: fixed;
	height: 100%;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 260px;
	background-color: #fe9900;
	overflow-y: auto;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
	transition: transform .4s 0s, visibility 0s .4s;
	-webkit-transform: translateX(80px);
	-moz-transform: translateX(80px);
	-ms-transform: translateX(80px);
	-o-transform: translateX(80px);
	transform: translateX(80px);
}
#cd-lateral-nav .cd-navigation {
	margin: 200px 0 0px;
}
#cd-lateral-nav .sub-menu {
	padding: 0 10px 20px 15px;
	display: none;
}
#cd-lateral-nav a {
	display: block;
	line-height: 2em;
	padding: 0 16px 0 32px;
	color: #fff;
}
#cd-lateral-nav a.current {
	background-color: #012d96;
	color: #FFF;
	font-weight: bold;
}
.no-touch #cd-lateral-nav a.current:hover {
	color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
	color: #012d96;
}
@media only screen and (max-width: 550px) {
	#cd-lateral-nav .cd-navigation {
		margin: 100px 0 15px;
	}
}
#cd-lateral-nav.lateral-menu-is-open {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
	transition: transform .4s 0s, visibility 0s 0s;
	-webkit-overflow-scrolling: touch;
}
#cd-lateral-nav .campo-ricerca{
	text-align: center;
}
#cd-lateral-nav .campo-ricerca #testo{
	border: 1px solid #e6e6e6;
	width: 250px;
	height:30px;
	color: #7f7f7f;
	padding-left: 5px;
}
#cd-lateral-nav .campo-ricerca #ricerca-testo{
	width: 50px;
	height: 34px;
	background-color: #012D96;
	position: relative;
	right: 6px;
	top: 12px;
	border: 0px;
	cursor: pointer;
	background-image: url("../immagini/lente.png");
	background-repeat: no-repeat;
	background-position: center;
}
/* css condizione solo per firefox */
@-moz-document url-prefix() {
	#cd-lateral-nav .campo-ricerca #ricerca-testo{top: 0px;}
}
@media only screen and (max-width: 1000px) {
	#cd-lateral-nav .campo-ricerca #testo{
		width: 150px;
		margin: 10px auto;
	}
}
/* Main components  */
.cd-main-content {
	min-height: 100%;
	position: relative;
	background: #f4f3f5;
	top: 120px;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	padding-bottom: 20px;
}
.cd-main-content.lateral-menu-is-open {
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
}
@media only screen and (max-width: 550px) {
	.cd-main-content {
		top: 70px;
	}
}
/* Div che racchiude i contenuti dell'header */
.barra-superiore{
	width:100%;
	max-width:1024px;
	height:100%;
	margin-left:auto;
	margin-right:auto;
}
/* Style input di ricerca */
#cd-top-nav .campo-ricerca{
	margin-right: 0px;
}
#cd-top-nav .campo-ricerca #testo{
	border: 1px solid #e6e6e6;
	width: 250px;
	height:30px;
	color: #7f7f7f;
	padding-left: 5px;
}
#cd-top-nav .campo-ricerca #ricerca-testo{
	width: 50px;
	height: 34px;
	background-color: #AD0000;
	position: relative;
	right: 50px;
	top: 12px;
	border: 0px;
	cursor: pointer;
	background-image: url("../immagini/lente.png");
	background-repeat: no-repeat;
	background-position: center;
}
/* css condizione solo per firefox */
@-moz-document url-prefix() {
	#cd-top-nav .campo-ricerca #ricerca-testo{top: 0px;}
}
@media only screen and (max-width: 1000px) {
	#cd-top-nav .campo-ricerca{
		margin-right: -25px;
	}
	#cd-top-nav .campo-ricerca #testo{
		width: 150px;
	}
}
.divlogo{
	float: left;
	width: 500px;
}
/* Div quando sei loggato */
#boxlogin{
	float: left;
	margin-top: 20px;
	width: 190px;
}
#boxlogin .textformtitle{
	color: #AD0000;
	font-size: 12px;
}
#boxlogin .textformtitle label{
	font-weight: bold;
}
#boxlogin .esci{
	margin-top: 10px;
	color: #AD0000;
	font-size: 12px;
}
#boxlogin .esci a{
	padding: 0px;
	display: inline;
}
#cd-lateral-nav #boxlogin{
	padding-left: 32px;
	width: auto;
	margin-top: 50px;
}
/* Div generale per centrare i contenuti */
.container-generale{
	width: 100%;
	height: auto;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}
.container-generale .current{
	color: #fff;
	font-weight: bold;
}
/* Menù delle pagine */
.menu-pagine{
	width: 100%;
	height: 60px;
	float: left;
	background-color: #AD0000;
}
.menu-pagine ul{
	float: left;
	height:auto;
	margin-left: 10px;
	margin-top: 7px;
}
.menu-pagine ul li{
	display: inline-block;
	position: relative;
}
.menu-pagine ul li a{
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
	padding: 0px 0px 0px 0px;
	color: #fff;
	text-align: center;
	padding:15px 10px;
	display: block;
}
.menu-pagine ul li a:hover{
	color: #fff;
	text-decoration: underline;
}
.menu-pagine ul .finelista{
	border: 0px;
}
/* Sotto menù */
.menu-pagine ul #sottomenu:hover ul {
	visibility: visible;
}
.menu-pagine ul #sottomenu .pag-prodotti{
	height: auto;
	float: left;
	position: absolute;
	top: 48px;
	visibility: hidden;
	z-index: 10;
	width: 250px;
	background-color: #fc8628;
	margin: 0px;
	padding: 15px 0px;
}
.menu-pagine ul #sottomenu .pag-prodotti li{
	width: 100%;
	border: 0px;
}
.menu-pagine ul #sottomenu .pag-prodotti #sottomenu{
	background-image: url("../immagini/frecciamenu.png");
	background-repeat: no-repeat;
	background-position: center right;
}
.menu-pagine ul #sottomenu .pag-prodotti a{
	color: #ffffff;
	font-size: 14px;
	display: inline-block;
	text-align: left;
	padding: 5px 0px 5px 10px;
}
.menu-pagine ul #sottomenu .pag-prodotti a:hover{
	color: #012d96;
	font-weight: bold;
}
/* Sotto categorie del sotto menù */
.menu-pagine ul #sottomenu ul li:hover ul{
	visibility: visible;
}
.menu-pagine ul #sottomenu .pag-prodotti ul{
	height: auto;
	float: left;
	position: absolute;
	top: -15px;
	visibility: hidden;
	z-index: 10;
	width: 350px;
	background-color: #fc8628;
	margin-left: 250px;
	padding: 15px 0px;
}
.menu-pagine ul #sottomenu .pag-prodotti ul #sottomenu{
	width: 100%;
	border: 0px;
	background-image: none;
}
.menu-pagine ul #sottomenu .pag-prodotti ul li a{
	color: #ffffff;
	font-size: 14px;
	display: inline-block;
	text-align: left;
	padding: 5px 0px 5px 10px;
}
.menu-pagine ul #sottomenu .pag-prodotti ul li a:hover{
	color: #012d96;
	font-weight: bold;
}
@media only screen and (max-width: 790px) {
	.menu-pagine{display: none;}
}
/* Div promozioni */
.box-promozioni{
	width: 100%;
	height: auto;
	float: left;
	margin-top: 20px;
	background-color: #ffffff;
}
.box-promozioni .promozioni{
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin: 10px auto;
	overflow: hidden;
}
.box-promozioni .promozioni img{
	max-width: 100%;
	height:auto;
}
/* Div titolo degli ultimi prodotti aggiunti */
.box-marche{
	float: left;
	width: 69%;
}	
.box-titleprodotti{
	float: left;
	width: 100%;
	height: auto;
	background-color: #ffffff;
}
.titleprodotti{
	width: 100%;
/*  max-width: 1024px; */
	height: auto;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #9b9b9c;
}
.titleprodotti h2{
	margin: 0px;
	padding: 80px 0px 20px 0px;
	text-align: center;
	font-size: 25px;
	color: #AD0000;
	font-weight: bold;
	text-transform: uppercase;
}


.titlepromo{
	width: 100%;
/*  max-width: 1024px; */
	height: auto;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #9b9b9c;
}
.titlepromo h2{
	margin: 20px 0px 10px 0px;
	padding: 40px 0px 20px 0px;
	margin: 0px;
	padding: 15px 0px;
	text-align: center;
	font-size: 25px;
	color: #fa9301;
	font-weight: bold;
	text-transform: uppercase;
	background: url(../immagini/promo.png) no-repeat center; 
}

.titlepromo span{
	display: none;
}


@media only screen and (max-width: 550px) {
	.titleprodotti h2{
		text-align: center;
		margin: 0px;
	}
}
/* box dove ci sono i prodotti */
.contentgenerale{
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
.sidebar{
	width: 30%;
	float: left;
	margin-top: 20px;
}
.sidebar #categorie{
	width: 90%;
	color: #AD0000;
	font-weight: bold;
	border-bottom: 1px solid #AD0000;
	margin-top: 20px;
}
.sidebar #boxaccedi{
	width: 90%;
}
.registratilogin{
	color: #000;
	height: 40px;
}
.registratilogin a{
	color: #000;
}
.submitform{
	background-color: #AD0000;
	color: #FFF;
	border: 0px;
	height: 30px;
	width: 70px;
}
.sidebar #nomecategorie{
	width: 90%;
}
.sidebar #nomecategorie li{
	color: #000000;
	margin-left: 10px;
}
.sidebar #nomecategorie a{
	color: #000000;
}
.sidebar #marche{
	width: 90%;
	color: #AD0000;
	font-weight: bold;
	border-bottom: 1px solid #AD0000;
	margin-top: 20px;
}
.sidebar #nomemarche{
	width: 90%;
}
.sidebar #nomemarche li{
	color: #000000;
	margin-left: 10px;
}
.sidebar #nomemarche a{
	color: #000000;
}
.sidebar #accedisito{
	width: 90%;
	color: #AD0000;
	font-weight: bold;
	border-bottom: 1px solid #AD0000;
}
.box-prodotti{
	width: 69%;
	height: auto;
	float: left;
	background-color: #fff;
}
.box-prodotticarrello{
	width: 100%;
	height: auto;
	float: left;
	background-color: #fff;
}
.container-prodotti{
	width: 69%;
	float: left;
}
.container-prodotti .prodotto{
	float: left;
	width: 100%;
	height: 280px;
	margin: 20px 0px 10px 10px;

}
.container-prodotti .prodotto .imgprodotto{
	width: 50%;
	height: 232px;
	max-width: 90%;
	float: left;
	overflow:hidden;
	text-align: center;
	position: relative;
	border: 1px solid #dddddd;
}
.descrprodotto{
	float: left;
	width: 49%;
}
.container-prodotti .prodotto .imgprodotto a img{
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
}
.container-prodotti .prodotto p{
	width: 100%;
	height: auto;
	margin: 3px 0px;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	padding-left: 10px;
}
@media only screen and (max-width: 790px){
	.sidebar{
		display: none;
	}
	.box-prodotti{
		width: 100%;
	}
	.container-prodotti{
		width: 100%;
	}
}
.container-prodotti .prodotto p a{
	color: #AD0000;
	float: none;
}
.container-prodotti .prodotto p a:hover{
	font-weight: bold;
}
.container-prodotti .prodotto .visualizza-min{
	display: inline-block;
	float: right;
	width: 50px;
	height: 50px;
	margin: 3px 0px;
}
.container-prodotti .prodotto .visualizza-min img{
	max-width: 100%;
	height: auto;
}
@media only screen and (max-width: 1000px) {
	.container-prodotti .prodotto{
		max-width: 48%;
	}
}
@media only screen and (max-width: 550px) {
	.container-prodotti .prodotto{
		max-width: 95%;
		margin: 10px auto;
		float: none;
	}
}
/* Prodotti non disponibile */
.container-prodotti .prodotto .imgprodotto a .nondisponibile{
	left: 10px;
	max-width: 100%;
	height: auto;
	position: absolute;
	left: 10px;
	top: 160px;
}
/* Prodotti in offerta */
.container-prodotti .prodotto .imgprodotto a .offerta{
	position: absolute;
	top: 0px;
	right: 0px;
	max-width: 100%;
	height: auto;
}
/* Footer */
.box-footer{
	float: left;
	width: 100%;
	height: auto;
	padding-bottom: 30px;
	background-color: #E1E1E1;
	border-top: 1px solid #AD0000;
}
.footer{
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
.footer .container{
	float: left;
	width: 95%;
	max-width: 325px;
	height: auto;
	margin: 10px 0px 0px 10px;
	text-align: center;
}
.footer .container-logo{
	max-width:290px;
}
.footer .container-maps{
	max-width: 350px;
}
.footer .container img{
	margin-top: 50px;
	max-width: 100%;
}
.footer .container .info li{
	color: #000;
	font-weight: normal;
	font-size: 15px;
}
.footer .container .info .nome{
	font-size: 17px;
	margin: 50px 0px 0px 0px;
}
.footer .container .info .cognome{
	font-size: 12px;
	margin: 0px 0px 12px 0px;
}

.footer .container .info .dettagli{
	font-size: 12px;
	margin: 0px 0px 2px 0px;
}

.footer .container .info .email{
	
}

.footer .container .info .email a {
	color: #fc8628;
}
.footer .container .maps{
	margin:0px;
	max-width: 100%;
}
@media only screen and (max-width: 1000px) {
	.footer .container{
		width: 31.7%;
	}
}
@media only screen and (max-width: 790px) {
	.footer .container{
		float: none;
		width: 95%;
		margin: 10px auto;
	}
	.footer .container-logo{
		max-width: 90%;
	}	
	.container-prodotti{
		float: left;
	}
}
.realizzazione {
	width: 100%;
	height: auto;
	float: left;
	text-align: right;
	padding: 10px 0px;
	background-color: #ffffff;
}
.realizzazione-inner{
	width: 95%;
	max-width: 1024px;
	height: auto;
	margin: 0px auto;
}
.realizzazione-inner a{
	color: #AD0000;
}
.realizzazione-inner a:hover{
	text-decoration: underline;
}
/* Scheda tecnica dettagli del prodotto */
.box-dettagli {
	width: 100%;
	height: auto;
	float: left;
	padding: 10px 0px;
}
.box-dettagli .anteprima-prodotto{
	width: 50%;
	height: auto;
	float: left;
	overflow: hidden;
}
.box-dettagli .imgprincipale{
	width: 100%;
	height: auto;
	margin-top: 15px;
	text-align: center;
}
.box-dettagli .imgprincipale img{
	width: auto;
	max-width: 92%;
	height: auto;
	margin: 0px;
	border: 1px solid #e5e5e5;
}
.box-dettagli .imgcorrelati{
	float: left;
	width: 100%;
}
.box-dettagli .imgcorrelati a{
	float: left;
    height: 110px;
    text-align: center;
    width: 115px;
	margin: 0px 0px 10px 10px;
}
.box-dettagli .imgcorrelati a img{
	max-width: 100%;
	height: auto;
}
.box-dettagli .dettagli-prodotto{
	width: 49%;
	height: 100%;
	float: right;
	text-align: left;
	color: #7f7f7f;
}
.box-dettagli .dettagli-prodotto p{
	color: #7f7f7f;
	font-size: 12px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
.box-dettagli .dettagli-prodotto p a{
	color: #7f7f7f;
}
.box-dettagli .dettagli-prodotto .marca a{
	color: #012d96;
	font-weight: bold;
}
.box-dettagli .dettagli-prodotto .nome{
	color: #333333;
	font-size: 22px;
	margin-top: 15px;
}
.box-dettagli .dettagli-prodotto .nome a{
	color: #333333;
}
.box-dettagli .dettagli-prodotto .prezzo{
	color: #AD0000;
	margin-top: 5px;
	font-weight: bold;
}
.box-dettagli .dettagli-prodotto .prezzo span{
	font-size: 22px;
}
.box-dettagli .dettagli-prodotto .disp{
	width: 100px;
	text-align: center;
	color: #009900;
	padding: 5px 0px;
	margin-top: 20px;
}
.box-dettagli .dettagli-prodotto .nodisp{
	color: #ff0000;
	padding: 5px 0px;
}
.descr{
	width: 98%;
	float: right;
	margin: 0px 0px 0px 0px;
	font-family: 'Open Sans', sans-serif;
}
.misprod {
	float: left;
	margin: 10px 0px;
	font-size: 12px;
	display: none;
}
.box-dettagli .dettagli-prodotto .altremisure{
	float: left;
	margin: 10px 0px;
	width: 100%
	font-size: 15px;
}
.box-dettagli .dettagli-prodotto .altremisure p{
	margin: 15px 0px 0px 0px;
	font-weight: bold;
}
.box-dettagli .dettagli-prodotto .testo{
	background-color: #fe9900;
	color: #ffffff;
	font-weight: bold;
	text-align: left;
	padding: 5px 0px 5px 5px;
	float: left;
	width: 99%;
	height: auto;
	margin-top: 50px;
	margin-bottom: 15px;
}
.box-dettagli .dettagli-prodotto .box-conferma{
	width: 100%;
	height: auto;
	float: left;
	margin-top: 40px;
	margin-bottom: 10px;
}
.box-dettagli .dettagli-prodotto .richiesta {
	float: left;
	padding: 10px 20px;
	background-color: #AD0000;
	margin-right: 30px;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
	font-size: 15px;
}
.box-dettagli .dettagli-prodotto .richiesta:hover{
	background-color: #E1E1E1;
}
.marca a{
	color: #000000;
}	
@media only screen and (max-width: 790px) {
	.box-dettagli{
		height: auto;
	}
	.box-dettagli .anteprima-prodotto{
		width: 95%;
		float: none;
		margin: 0px auto;
		text-align: center;
	}
	.box-dettagli .anteprima-prodotto img{
		margin: 0px;
	}
	.box-dettagli .dettagli-prodotto{
		width: 95%;
		float: none;
		margin: 0px auto;
	}
	.box-dettagli .dettagli-prodotto .richiesta{
		margin: 10px 0px;
	}
}
/* Dettagli più avanzate */
.hrprod{
	float: left;
	width: 100%;
	height: 2px;
	background-color: #333333;
	border: 0px;
}
.divavanzate{
	width: 100%;
	height: auto;
	float: left;
}
.divavanzate .nomeavanzata{
	width: 35%;
	max-width: 150px;
	height: auto;
	padding: 5px;
	text-align: left;
	color: #333333;
	font-size: 12px;
	font-weight: bold;
	float: left;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #333333;
	background-color: #eeeeee;
}
.divavanzate .descrizioneavanzata{
	width: 59%;
	max-width: 500px;
	height: auto;
	padding: 5px;
	text-align: left;
	color: #333333;
	font-size: 12px;
	float: left;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-right: 1px solid #333333;
	border-left: 1px solid #333333;
	background-color: #ffffff;
}
@media only screen and (max-width: 550px) {
	.divavanzate .nomeavanzata{
		width: 40%;
	}
	.divavanzate .descrizioneavanzata{
		width: 50%;
	}
}
/* Scheda tecnica prodotti correlati*/
.container-prodotti .prodotto-correlati{
	float: left;
	width: 95%;
	max-width: 239px;
	height: 350px;
	margin: 10px 0px 10px 10px;
}
.container-prodotti .prodotto-correlati .imgprodotto{
	width: 100%;
	height: 250px;
	float: left;
	overflow:hidden;
	text-align: center;
	position: relative;
}
.container-prodotti .prodotto-correlati .imgprodotto a img{
	width: auto;
	height: 100%;
}
.container-prodotti .prodotto-correlati p{
	width: 75%;
	height: auto;
	margin: 10px 0px;
	text-align: left;
	font-size: 18px;
	font-weight: normal;
	float: left;
}
.container-prodotti .prodotto-correlati p a{
	color: #333333;
	float: none;
}
.container-prodotti .prodotto-correlati p a:hover{
	text-decoration: underline;
}
.container-prodotti .prodotto-correlati .visualizza-min{
	display: inline-block;
	float: right;
	width: 50px;
	height: 50px;
	margin: 10px 0px;
}
.container-prodotti .prodotto-correlati .visualizza-min img{
	max-width: 100%;
	height: auto;
}
@media only screen and (max-width: 1000px) {
	.container-prodotti .prodotto-correlati{
		max-width: 31.5%;
	}
}
@media only screen and (max-width: 550px) {
	.container-prodotti .prodotto-correlati{
		max-width: 95%;
		margin: 10px auto;
		float: none;
	}
}
/* Prodotti correlati non disponibile */
.container-prodotti .prodotto-correlati .nondisponibile{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0px;
	top: 80px;
	text-align: center;
}
.container-prodotti .prodotto-correlati .nondisponibile img{
	max-width: 100%;
	height: auto;
}
/* Pagina chi siamo */
.box-titlepagina{
	float: left;
	width: 69%;
	height: auto;
	background-color: #ffffff;
}
.titlepagina{
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
.titlepagina h2{
	margin: 0px;
	padding: 80px 0px 20px 0px;
	text-align: center;
	font-size: 25px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
}
.box-prodotti .pagina{
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	text-align: left;  
	background-color: #ffffff;
}
.box-prodotti .pagina .storia{
	float: left;
	text-align: left;
	color: #7f7f7f;
}
.box-prodotti .pagina .storia .azienda{
	max-width: 100%;
	height: auto;
	text-align: left;
	float: left;
	margin: 0px 10px 10px 0px;
}
.box-prodotti .pagina .maps{
	width: 50%;
	height: 300px;
	text-align: left;
	margin-top: 20px;
	float: left;
}
.box-prodotti .pagina .maps iframe{
	width: 95%!important;
}
.box-prodotti .pagina .info-azienda{
	width: 50%;
	height: auto;
	text-align: left;
	float: left;
}
.box-prodotti .pagina .info-azienda .title{
	color: #fe9900;
	font-weight: bold;
	text-transform: uppercase;
	text-align: left;
}
.box-prodotti .pagina .info-azienda ul li{
	color: #7f7f7f;
	font-weight: normal;
	text-align: left;
}
@media only screen and (max-width: 790px) {
	.box-prodotti .pagina .maps{
		width: 100%;
		height: auto;
		text-align: center;
	}
	.box-prodotti .pagina .maps div{
		width: 100%!important;
		margin: 0px auto!important;
		text-align: center;
	}
	.box-prodotti .pagina .info-azienda{
		width: 100%;
	}
	.box-prodotti .pagina .info-azienda ul li{
		text-align: center;
	}
	.box-prodotti .pagina .info-azienda .title{
		text-align: center;
	}
}
/* Pagina 404 */
.box-prodotti .error404 h2{
	margin: 0px;
	padding: 80px 0px 20px 0px;
	text-align: center;
	font-size: 25px;
	color: #333333;
	font-weight: bold;
	text-transform: uppercase;
}
.box-prodotti .error404 p{
	text-align: left;
	width: auto;
	margin-left: 1%;
}
.box-prodotti .error404 p a{
	color: #012d96;
}
.box-prodotti .error404 div{
	text-align: left;
	width: auto;
	margin-left: 1%;
}
.box-prodotti .error404 img{
	max-width: 100%;
	height:auto;
}
/* Pagina login preventivo */
.box-prodotti .error404 .registratiora{
	width: 100%;
	height: auto;
	float: left;
/*	margin-bottom: 10px;   */
	margin-bottom: 16px;
	margin-left: 0px;
	text-align: center;
	margin-top: 10px;
}
.box-prodotti .error404 .registratiora a{
	padding: 10px 20px;
	background-color: #012d96;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
/*	float: left;   */
	margin-left: 1%;
}
.box-prodotti .error404 .registratiora a:hover{
	background-color: #E1E1E1;
	color: #333333;
}
.box-prodotti .error404 .boxcontattaci{
	width: 100%;
	height: auto;
	float: left;
	margin: 0px;
}
.box-prodotti .error404 .boxcontattaci .modulo1{
	width: 50%;
	height: auto;
	margin: 0px auto;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .testo{
	color: #333333;
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .boxxx{
	width: 50%;
	height: auto;
	float: left;
	margin-left: 0px;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .boxxx .campi{
	width: 100%;
	height: auto;
	text-align: right;
	margin: 0px 0px 5px 0px;
	color: #333333;
	font-size: 15px;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .boxxx .campi span{
	color: #ff0000;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .boxxx1{
	width: 50%;
	height: auto;
	float: left;
	margin-left: 0px;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .boxxx1 .input{
	width: 100%;
	height: auto;
	text-align: left;
	margin: 0px 0px 5px 0px;
	color: #333333;
	font-size: 15px;
}
.box-prodotti .error404 .boxcontattaci .modulo1 .boxxx1 .input input{
	width: 100%;
	max-width: 200px;
	height: auto;
	text-align: left;
	color: #333333;
	font-size: 15px;
}
.box-prodotti .error404 .boxcontattaci .accedipreventivo{
	width: 100%;
	height: auto;
	float: left;
	margin: 10px 0px;
	text-align: center;
}
.box-prodotti .error404 .boxcontattaci .accedipreventivo #submit{
	padding: 10px 20px;
	background-color: #012d96;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
}
.box-prodotti .error404 .boxcontattaci .accedipreventivo #submit:hover{
	background-color: #E1E1E1;
	color: #333333;
}
@media only screen and (max-width: 550px) {
	.box-prodotti .error404 .boxcontattaci .modulo1 {
		width: 100%;
	}
}
/* Pagina preventivo */
.boxpreventivi{
	width: 100%;
	height: auto;
	float: left;
}
.boxpreventivi .nomepreventivo {
	width: 60%;
	float: left;
	height: 30px;
	font-weight: bold;
	text-align: center;
	margin-left: 1%;
	background-color: #E1E1E1;
	padding: 5px 0 0 0;
}
.boxpreventivi .eliminapreventivo {
	width: 37%;
	float: right;
	height: 30px;
	text-align: center;
	margin-right: 1%;
	background-color: #E1E1E1;
	padding: 5px 5px 0 0 ;
}
.boxpreventivi .eliminapreventivo a{
	color: #ffffff;
	background-color: #AD0000;
	padding: 2px 8px;
	border-radius: 3px;
	display: inline-block;
}
.boxpreventivi .eliminapreventivo a:hover{
	background-color: #E1E1E1;
	color: #AD0000;
}
.boxpreventivi .informazionipreventivo{
	width: 100%;
	height: auto;
	float: left;
	margin: 10px 0px;
}
.boxpreventivi .informazionipreventivo .immaginepreventivo{
	width: 35%;
	height: auto;
	float: left;
	text-align: center;
}
.boxpreventivi .informazionipreventivo .immaginepreventivo img{
	width: 90%;
	max-width: 300px;
	height: auto;
}
.boxpreventivi .informazionipreventivo .decrizionepreventivo{
	width: 60%;
	height: auto;
	float: left;
	text-align: left;
	color: #333333;
	font-weight: 15px;
}
.richiestapreventivo{
	width: 100%;
	height: auto;
	float: left;
	font-size: 15px;
	margin: 10px auto;
	text-align: center;
	padding: 0;
}
.richiestapreventivo textarea{
	resize: none;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
.confermapreventivo{
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 10px;
	margin-left: 0px;
	text-align: center;
}
.confermapreventivo input{
	padding: 10px 20px;
	background-color: #AD0000;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
}
.confermapreventivo input:hover{
	background-color: #E1E1E1;
	color: #333333;
}
@media only screen and (max-width: 790px) {
	.boxpreventivi .nomepreventivo,
	.boxpreventivi .eliminapreventivo{
		width: 100%;
		float: none;
		text-align: center;
		margin-left: 0;
		margin-right: 0;
		background-color: transparent;
	}
	.boxpreventivi .eliminapreventivo{
		padding-top: 0;
	}
	.boxpreventivi .informazionipreventivo .immaginepreventivo,
	.boxpreventivi .informazionipreventivo .decrizionepreventivo{
		width: 100%;
		float: none;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.boxpreventivi .informazionipreventivo .decrizionepreventivo{
		width: 90%;
		margin: 0 auto;
		padding: 0;
	}
	.boxpreventivi .informazionipreventivo .immaginepreventivo img{
		max-width: 100%;
	}
	.boxpreventivi{
		font-size: 16px;
	}
	.boxpreventivi .nomepreventivo,
	.boxpreventivi .eliminapreventivo{
		font-size: 16px;
		height: auto;
		padding: 8px 0 4px 0;
	}
	.boxpreventivi .informazionipreventivo .decrizionepreventivo{
		font-size: 15px;
	}
	.richiestapreventivo{
		font-size: 16px;
	}
	.richiestapreventivo textarea{
		width: 100%;
		max-width: 100%;
		font-size: 16px;
		min-height: 140px;
	}
	.confermapreventivo input{
		width: 100%;
		font-size: 16px;
	}
}
/* Pagina invia preventivo */
.box-prodotticarrello .error404 .registratiora{
	height: 50px;
}
.box-prodotticarrello .boxxx{
	width: 40%;
	float: left;
}
.box-prodotticarrello .error404 .boxcontattaci .accedipreventivo{
	width: 100%;
	height: auto;
	float: left;
	margin: 10px 0px;
	text-align: center;
}
.box-prodotticarrello .error404 .boxcontattaci .accedipreventivo #submit{
	padding: 10px 20px;
	background-color: #AD0000;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
}
.box-prodotticarrello .error404 .boxcontattaci .accedipreventivo #submit:hover{
	background-color: #E1E1E1;
	color: #333333;
}

.box-prodotticarrello .campi{
	text-align: right;
}
.box-prodotticarrello .error404 .registratiora a{
	padding: 10px 20px;
	background-color: #AD0000;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
/*	float: left;   */
	margin-left: 1%;
}
.box-prodotti .error404 .registratiora a:hover{
	background-color: #E1E1E1;
	color: #333333;
}
.box-prodotticarrello h2{
	text-align: center;
	margin: 0px;
	padding: 80px 0px 20px 0px;
}
.box-prodotticarrello .registratiora{
	text-align: center;
}
.box-prodotti .pagina .mexacquisto{
	width: 90%;
	height: auto;
	margin: 0px auto;
	text-align: center;
	font-size: 14px;
}
.box-prodotti .pagina .mexacquisto span{
	font-weight: bold;
}
/* Pagina carrello */
.form-center{
	float: left;
	margin-right: 10px;
}
.form-center input{
	cursor: pointer;
}
.boxpreventivi .prezzocarrello{
/*	width: 100%; */
	width: 16%;
	height: auto;
	float: left;
	margin-top: 1%;
	font-weight: bold;
	text-align: left;
}
.totalecarrello{
	width: 100%;
	height: auto;
	float: left;
	font-size: 18px;
    margin-bottom: 10px;
	text-align: right;
	color: #000;
}
.confermaordine{
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 10px;
	margin-left: 0px;
	text-align: center;
}
.confermaordine input{
	padding: 10px 20px;
	background-color: #012d96;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
}
.confermaordine input:hover{
	background-color: #E1E1E1;
	color: #333333;
}
/* Pagina pronta consegna */
.box-prodotti .pagina .prontaconsegna{
	width: 95%;
	max-width: 800px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	overflow: hidden;
}
.box-prodotti .pagina .prontaconsegna img{
	max-width: 100%;
	height: auto;
}
.box-prodotti .pagina .prontaconsegna p{
	text-align: left;
	margin: 0px;
	color: #333333;
}
.box-prodotti .pagina .prontaconsegna span{
	font-weight: bold;
	text-transform: uppercase;
}
.box-prodotti .pagina .prontaconsegna .avvertenze{
	font-size:12px;
	margin-top: 30px;
}
.box-prodotti .pagina .prontaconsegna .avvertenze span{
	font-weight: bold;
	text-transform: uppercase;
}
.box-prodotti .pagina .prontaconsegna .avvertenze-desc{
	font-size:12px;
}
/* Pagina promozioni */
.box-prodotti .pagina .promo{
	width: 95%;
	height: auto;
	margin: 0px auto;
	text-align: left;
}
.box-prodotti .pagina .promo h3{
	margin: 0px;
	padding: 80px 0px 20px 0px;
	text-align: center;
	font-size: 18px;
	color: #333333;
	font-weight: bold;
	text-transform: uppercase;
}
.box-prodotti .pagina .promo img{
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}
.box-prodotti .pagina .container{
	float: left;
	width: 50%;
	height: auto;
	margin: 10px 0px 0px;
	text-align: left;
}
.box-prodotti .pagina .container-logo{
	text-align: center;
}
.box-prodotti .pagina .container img{
	margin-top: 50px;
}
.box-prodotti .pagina .container .info li{
	color: #7f7f7f;
	font-weight: normal;
	font-size: 15px;
}
.box-prodotti .pagina .container .info .nome{
	font-weight: bold;
	margin: 15px 0px;
}
.box-prodotti .pagina .container .info .email{
	color: #012d96;
}
.box-prodotti .pagina .container .maps{
	margin:0px;
	max-width: 100%;
}
@media only screen and (max-width: 790px) {
	.box-prodotti .pagina .container{
		float: none;
		width: 95%;
		margin: 10px auto;
		text-align: center;
	}
}
/* Registrati */
.registrazione{
	width: 95%;
	max-width: 600px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	font-size: 15px;
}
.registrazione .obbligatorio{
	color: #ff0000;
	text-align: left;
}
.registrazione .boxreg{
	width: 100%;
	height: auto;
	margin: 15px 0px;
	float: left;
}
.registrazione .boxreg .nome{
	width: 150px;
	height: auto;
	float: left;
	text-align: right;
	color: #333333;
}
.registrazione .boxreg .nome span{
	color: #ff0000;
}
.registrazione .boxreg input{
	width: 100%;
	max-width: 400px;
	height: auto;
	float: left;
	margin-left: 5px;
}
.registrazione #sesso{
	width: auto;
}
.registrazione .sesso{
	width: auto;
	height: auto;
	margin: 0px;
	float: left;
}
.registrazione .sesso .nome{
	width: 150px;
	height: auto;
	float: left;
	text-align: right;
	color: #333333;
}
.registrazione .sesso .nome span{
	color: #ff0000;
	float: none;
}
.registrazione .sesso span{
	float: left;
}
.registrazione .sesso input{
	max-width: 300px;
	height: auto;
	float: left;
	margin-left: 5px;
}
.registrazione .boxreg .input1{
	float: left;
	margin: 0px 5px;
}
.registrazione .boxreg .cap{
	width: 150px;
	height: auto;
	float: left;
	text-align: right;
	color: #333333;
}
.registrazione .boxreg .cap span{
	color: #ff0000;
}
.registrazione .boxreg #cap{
	width: 100%;
	max-width: 50px;
	height: auto;
	float: left;
	margin-left: 5px;
}
.registrazione .boxreg .citta{
	width: 55px;
	height: auto;
	float: left;
	text-align: right;
	color: #333333;
}
.registrazione .boxreg .citta span{
	color: #ff0000;
}
.registrazione .boxreg #citta{
	width: 100%;
	max-width: 158px;
	height: auto;
	float: left;
	margin-left: 5px;
}
.registrazione .boxreg .prov{
	width: 85px;
	height: auto;
	float: left;
	text-align: right;
	color: #333333;
}
.registrazione .boxreg .prov span{
	color: #ff0000;
}
.registrazione .boxreg #provincia{
	width: 100%;
	max-width: 30px;
	height: auto;
	float: left;
	margin-left: 5px;
}
.registrazione .newsletter{
	text-align: center;
	color: #333333;
	width: 100%;
	height:auto;
	float: left;
}
.registrazione .newsletter .nome{
	color: #333333;
}
.registrazione .newsletter .nome span{
	color: #ff0000;
}
.registrazione .newsletter input{
	float: none;
}
.registrazione .newsletter span{
	font-weight: bold;
}
.registrazione .boxreg textarea{
	resize: none;
	float: left;
	width: 100%;
	max-width: 400px;
	height: auto;
	margin-left: 5px;
}
.registrazione .boxreg .check{
	color: #7f7f7f;
    float: left;
    margin-left: 150px;
    text-align: left;
    width: auto;
}
.registrazione .boxreg .check input{
	float: none;
	width: auto;
}
.registrazione .captcha{
	width: 100%;
	height: auto;
	margin: 15px 0px;
	float: left;
	text-align: center;
}
.registrazione .captcha .imgcaptcha{
	float: left;
	margin-left: 5px;
	width: 400px;
	text-align: left;
}
.registrazione .captcha .nome{
	width: 100%;
	max-width: 150px;
	height: auto;
	float: left;
	text-align: right;
	color: #333333;
}
.registrazione .captcha .nome span{
	color: #ff0000;
}
.registrazione .captcha .testocaptcha{
	width: 100%;
	height: auto;
	float: left;
	text-align: center;
	color: #333333;
}
.registrazione .captcha .testocaptcha span{
	color: #ff0000;
}
.registrazione .captcha input{
	width: 100%;
	max-width: 250px;
	height: auto;
	margin: 5px auto;
}
.registrazione .registrazionebutton{
	width: 100%;
	height: auto;
	float: left;
	text-align: right;
	margin-bottom: 10px;
}
.registrazione .registrazionebutton .btn-form{
	padding: 10px 20px;
	background-color: #AD0000;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
	margin-right: 40px;
}
.registrazione .registrazionebutton .btn-form:hover{
	background-color: #E1E1E1;
	color: #333333;
}
@media only screen and (max-width: 760px) {
	.registrazione .boxreg .nome{
		width: 100%;
		text-align: left;
	}
	.registrazione .boxreg .cap{
		width: 100%;
		text-align: left;
	}
	.registrazione .boxreg .citta{
		width: 100%;
		text-align: left;
		margin-top: 15px;
	}
	.registrazione .boxreg .prov{
		width: 100%;
		text-align: left;
		margin-top: 15px;
	}
	.registrazione .newsletter {
		text-align: left;
	}
	.registrazione .boxreg .check {
		margin-left: 0px;
	}
	.registrazione .captcha .nome {
		max-width: 100%;
		text-align: left;
	}
	.registrazione .captcha .testocaptcha {
		text-align: left;
	}
	.registrazione .captcha .imgcaptcha {
		text-align: left;
	}
	.registrazione .captcha input{
		float: left;
	}
	.registrazione .registrazionebutton {
		text-align: left;
	}
	.registrazione .registrazionebutton .btn-form {
		margin-right: 0px;
	}
}
@media only screen and (max-width: 550px) {
	.registrazione .boxreg input{
		margin-left: 0px;
	}
	.registrazione .boxreg .input1 {
		width: 100%;
		float: none;
		margin: 0px;
	}
	.registrazione .boxreg #cap {
		margin-left: 0px;
	}
	.registrazione .boxreg #provincia {
		margin-left: 0px;
	}
	.registrazione .boxreg #citta {
		margin-left: 0px;
	}
	.registrazione .boxreg textarea {
		margin-left: 0px;
	}
	.registrazione .captcha .imgcaptcha {
		margin-left: 0px;
		width: 100%;
	}
}
/* Registrazione conclusa */
.errore{
	width: 95%;
	max-width: 600px;
	height: auto;
	margin: 0px auto;
}
.affianco{
	width: 50%;
	height: 100px;
	float: left;
	text-align: left;
}
.errore .affianco img{
	max-width: 100%;
	height: auto;
}
.affianco1{
	width: 50%;
	height: 100px;
	float: left;
	text-align: left;
}
.affianco1 input{
	width: auto;
	max-width: 350px;
	height: auto;
	margin: 5px auto;
}
.affianco1 #cmd{
	padding: 10px 20px;
	background-color: #AD0000;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
}
.affianco1 #cmd:hover{
	background-color: #E1E1E1;
	color: #333333;
}
.affianco1 a{
	padding: 10px 20px;
	background-color: #AD0000;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
	display: inline-block;
}
.affianco1 a:hover{
	background-color: #E1E1E1;
	color: #333333;
}
@media only screen and (max-width: 550px) {
	.affianco{
		width: 100%;
	}
	.affianco1{
		width: 100%;
	}
}
.noerrore{
	width: 95%;
	max-width: 600px;
	height: auto;
	margin: 0px auto;
}
.noerrore .avviso{
	width: 50%;
	height: auto;
	float: left;
	text-align: center;
}
.noerrore .avviso img{
	max-width: 100%;
	height: auto;
}
.noerrore .avviso .messaggio{
	width: 100%;
	height: auto;
	text-align: center;
}
.noerrore .avviso a{
	padding: 10px 20px;
	background-color: #012d96;
	color: #fff;
	font-weight: normal;
	border: 0px;
	cursor: pointer;
}
.noerrore .avviso a:hover{
	background-color: #AD0000;
	color: #333333;
}
/* Condivisione in pagine */
.pagine {
	width: 69%;
	float: right;
	text-align: center;
	color: #333333;
	font-weight: bold;
	margin-bottom: 50px;
}
@media only screen and (max-width: 790px) {
	.pagine{
		width: 100%;
		float: none;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
.pagine .linkcorrente{
	color: #ffffff;
	font-weight: bold;
	background-color: #AD0000;
	padding: 5px;
	margin-right: 2px;
	margin-bottom: 10px;
	border: 1px solid #AD0000;
}
.pagine .altrilink{
	padding: 5px;
	color: #3433cc;
	font-weight: normal;
	margin-right: 2px;
	border: 1px solid #dddddd;
	margin-bottom: 10px;
	display: inline-block;
}
.pagine .altrilink:hover{
	color: #ffffff;
	background-color: #3433cc;
	border: 1px solid #dddddd;
}
/* Marche */
.divmarca{
	float: left;
	width: 100%;
	height: auto;
}
.divmarca .divimg1{
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin: 0px auto;
	text-align: center;
}
.divmarca .divimg1 img{
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 10px;
}
.divmarca .divimg1 p{
	text-align: left;
	color: #333333;
	font-size: 15px;
	margin: 1%;
}
.container-prodotti .marche .imgprodotto {
    float: left;
    height: 305px;
    overflow: hidden;
    padding-top: 10px;
    position: relative;
    text-align: center;
    width: 100%;
}
.container-prodotti .marche .imgprodotto a .offerta{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 150px;
	height: auto;
}
.container-prodotti .marche .imgprodotto a .nondisponibile{
	left: 10px;
	max-width: 100%;
	height: auto;
}
/* Servizio clienti */
.box-prodotti .container-prodotti .box-mansione{
	width: 100%;
	height: auto;
	float: left;
	margin: 10px auto;
}
.box-prodotti .container-prodotti .box-mansione h2{
	margin: 0px;
	padding: 15px 0px;
	text-align: center;
	font-size: 25px;
	color: #fe9900;
	font-weight: bold;
	text-transform: uppercase;
}
.box-prodotti .container-prodotti .box-mansione .img-mansione{
	width: 50%;
	height: auto;
	float: left;
	text-align: center;
}
.box-prodotti .container-prodotti .box-mansione .img-mansione img{
	max-width: 100%;
	height: auto;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione{
	width: 50%;
	height: auto;
	float: left;
	text-align: left;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione p{
	color: #333333;
	font-size: 12px;
	font-weight: normal;
	margin: 0px 0px 20px 10px;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione p span{
	font-weight: bold;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione .title{
	margin: 0px 0px 0px 10px;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione .avvertenze{
	margin: 0px 0px 0px 10px;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione .avvertenze span{
	color: #ff0000;
}
.box-prodotti .container-prodotti .box-mansione .desc-mansione .avvertenze-desc{
	font-size: 12px;
}
@media only screen and (max-width: 760px) {
	.box-prodotti .container-prodotti .box-mansione .img-mansione{
		width: 100%;
	}
	.box-prodotti .container-prodotti .box-mansione .desc-mansione{
		width: 100%;
	}
}

/* stile div per il messaggio dei cookie e paggina della privacy */
.mex-box{position: fixed;padding: 5px 0px;background-color: #EEF1F4;border-top: 4px solid #172983;bottom: 0px;left: 0px;width: 100%;height: auto;text-align: center;line-height: 20px;font-size: 15pt;}
.mex-box p{cursor: pointer;}
.accetta{background: #FFCC33;background: -moz-linear-gradient(top, #FFE188 0%, #FFCC33 100%); /* FF3.6+ */background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFE188), color-stop(100%,#FFCC33)); /* Chrome,Safari4+ */background: -webkit-linear-gradient(top, #FFE188 0%,#FFCC33 100%); /* Chrome10+,Safari5.1+ */background: -o-linear-gradient(top, #FFE188 0%,#FFCC33 100%); /* Opera 11.10+ */background: -ms-linear-gradient(top, #FFE188 0%,#FFCC33 100%); /* IE10+ */background: linear-gradient(top, #FFE188 0%,#FFCC33 100%); /* W3C */border: 2px solid #eef1f4;border-radius: 5px;color: #000000;margin: 10px auto;width: 50px;padding:3px 5px;cursor:pointer;}
.accetta a{color:#000000!important;text-decoration:none;}
.mex-box a {color:#0000ff;}
.legge-privacy{width: 80%;height: auto;margin: 10px auto;text-align: left;}
.title p{color: #000000;font-size: 18px;font-weight: bold;margin: 0px 0px 0px 28px;}
.title span{color: #ff0000; font-size: 18px;}
hr{width: 100%;height: 2px; background-color: #000000;margin: 5px 0px;}
.box-legge{width: 95%;height:auto;margin:20px auto;}
.box-legge span{font-size: 20px;color: #000000; font-weight: bold; margin:10px 0px;}
.box-legge p{font-size: 18px;color: #626262; margin:10px 0px;}

/*CONTATTACI*/
.campoob{
	color: #FF0000;
}
.divcampi{
	float: left;
	padding-right: 15px;
}
.campi{
	height: 50px;
}
.input{
	height: 50px;
}
.input input{
	width: 290px;
}
.box{
	width: 100%;
	height: 500px;
}
.bottonerichiesta{
	width: 100%;
	padding-left: 235px;
	height: 50px;
}
@media only screen and (max-width: 790px) {
	.registrazione .box{
		height: auto;
	}
	.registrazione .divcampi{
		width: 100%;
		float: none;
		padding-right: 0;
	}
	.registrazione .campi,
	.registrazione .input{
		height: auto;
	}
	.registrazione .campi{
		text-align: left;
		margin-bottom: 6px;
	}
	.registrazione .input{
		margin-bottom: 10px;
	}
	.registrazione .input input,
	.registrazione .input textarea{
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
	.registrazione .bottonerichiesta{
		padding-left: 0;
		text-align: center;
		height: auto;
	}
}
/*CONTATTACI*/
