/*
Theme Name: Unicon Child Theme
Description: Unicon Child Theme for your Customizations
Author: minti
Template: unicon
Version: 1.0
*/

@import url("../unicon/style.css");


ul.inlineList {
  list-style: none !important;
  display: flex;
  flex-wrap: nowrap; /* ❗️Forza la riga unica */
  overflow-x: auto;   /* ❗️Permette lo scroll su mobile */
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 8px; /* Ridotto da 12 */
  font-size: 15px; /* Ridotto da default browser */
  white-space: nowrap; /* ❗️Evita la rottura delle voci */
}

ul.inlineList li {
  display: inline-block;
  position: relative;
}

/* SEPARATORE AUTOMATICO | TRA LE VOCI, ESCLUSO L'ULTIMO */
ul.inlineList li:not(:last-child)::after {
  content: "|";
  margin-left: 6px;
  color: #999;
  font-weight: normal;
}

/* LINK BASE */
ul.inlineList a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
}

/* LINK ATTIVO */
ul.inlineList a.current {
  color: #0088cc; /* Azzurro Alluser */
  font-weight: bold;
}

.distributor-card {
  background: #f9f9f9;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 5px solid #009fe3;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: none;
}
.distributor-card.active {
  display: block;
}
.distributor-card img {
  max-width: 180px;
  margin-bottom: 1rem;
  display: block;
}
.distributor-card i {
  color: #888;
  margin-right: 6px;
}




