/*
* Variabili globali
*/
:root{

	/*Colore principale usato per titoli*/
  --primary-color: #ed4f50;
  
	/*Gradazione più chiara del colore principale usato ad es. per etichetta sconto */
  --light-color: #ed4f50;
  --light-bg-color: #ed4f50;
  --light-txt-color:#ffffff;

	/*Gradazione più scura del colore principale usato ad es. per il prezzo di vendita su elenchi e scheda*/
	--dark-color: #971f20;
  --dark-bg-color: #971f20;
  --dark-txt-color:#ffffff;

	/*Promo banner, cookie bar, menu*/
	--highlight-bg-color: #ed4f50;
	--highlight-txt-color:#ffffff;
	
	/*Bottoni principali, es. Scheda, Aggiungi al carrello...*/
	--btn-primary-bg-color: #ed4f50;
	--btn-primary-txt-color:#ffffff;
	--btn-primary-hover-bg-color: #971f20;
	--btn-primary-hover-txt-color:#ffffff;
	
	/*Bottoni secondary, es. registrati, logout...*/
	--btn-secondary-bg-color:#333333;
	--btn-secondary-txt-color:#ffffff;
	--btn-secondary-hover-bg-color: #971f20;
	--btn-secondary-hover-txt-color:#ffffff;
	
	/*Bottoni light, es. Aggiungi ai preferiti o al confronto*/
	--btn-light-bg-color:#dddddd;
	--btn-light-txt-color: #ed4f50;
	--btn-light-hover-bg-color: #ed4f50;
  --btn-light-hover-txt-color:#ffffff;
  
  /*Bottoni su classi dark */
	--btn-dark-primary-bg-color: #ed4f50;
	--btn-dark-primary-txt-color:#ffffff;
	--btn-dark-primary-hover-bg-color:#ffffff;
	--btn-dark-primary-hover-txt-color: #ed4f50;

}
.menu-bar .menuview_horizontal a, .menu-bar .menuview_flat a{
	border-bottom: 5px solid transparent;
	padding-bottom: 20px;
}

.menu-bar .menuview_horizontal a:hover, .menu-bar .menuview_flat a:hover{
	color:inherit;
	border-bottom: 5px solid var(--btn-primary-bg-color);
	background-color: inherit;
}

.menu-bar .menuview_horizontal a.parent:hover::after, .menu-bar .menuview_flat a.parent:hover::after{
	border-color: #333333;	
}