a.dropdown-item.active-custom{
	color: var(--primary) !important;
	font-weight:bold !important;
}

/* CSS Aggiuntivo */
.order-level-1 a {
    position: relative; /* Necessario per far funzionare z-index */
    z-index: 100;     /* Scegli un numero alto per metterlo in primo piano */
}

/* Definisce una larghezza massima per l'immagine solo su schermi piccoli (max 575.98px è la dimensione "extra small" di Bootstrap) */
@media (max-width: 575.98px) {
    .logo-sm {
        /* Imposta la larghezza massima a 40px o quella desiderata */
        max-width: 100px !important; 
        height: auto;
    }
}


/* Seleziona il link all'interno del tab che ha la classe 'active' */
.tabs-navigation .nav-link.active {
    /* Usa il codice HEX desiderato */
    color: #8F8FB4 !important; 
    
    /* Il bordo deve corrispondere al codice HEX */
    border-bottom: 2px solid #8F8FB4;
    background-color: transparent !important;
}

/* Seleziona anche lo stato hover del tab attivo */
.tabs-navigation .nav-link.active:hover {
    color: #8F8FB4 !important; 
}

.thumb-info.thumb-info-primary .thumb-info-wrapper:after {
	background: rgba(49, 60, 144, 0.55);
}

/* Dividers */
.wrapper
{
	padding-bottom: 20px;
}

.divider
{
	position: relative;
	margin-top: 20px;
	height: 1px;
}

.div-transparent:before
{
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-arrow-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -7px;
	left: calc(50% - 7px);
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	background-color: white;
	border-bottom: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
}

.div-tab-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: calc(50% - 10px);
	width: 20px;
	height: 14px;
	background-color: white;
	border-bottom: 1px solid rgb(48,49,51);
	border-left: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
	border-radius: 0 0 8px 8px;
}

.div-stopper:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -6px;
	left: calc(50% - 7px);
	width: 14px;
	height: 12px;
	background-color: white;
	border-left: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
}

.div-dot:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -9px;
	left: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-color: goldenrod;
	border: 1px solid rgb(48,49,51);
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px white,
					0 0 0 4px white;
}

.text-shadow {
  /* Ombra nera, poco spostamento, media sfocatura */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

