
/* LABEL QUE MOSTRA O PRODUTOR/EXPOSITOR/OUTROS QUE FOI SELECIONADO (SELEÇÃO ATIVA) */
#active-item {
  position: fixed;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12000;
}

.active-container {
  display: flex;
  align-items: center;
  gap: 8px; /* espaço entre pill e X */
}

.active-pill {
  padding: 16px 190px;
  border-radius: 50px;

  background: #ff6602;
  border: 1px solid rgba(0,0,0,0.1);

  font-size: 12px;
}

#active-clear {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px; /* não é círculo */
  border: 1px solid rgba(0,0,0,0.2);
  background: white;

  cursor: pointer;
}

.hidden {
  display: none !important;
}


@media (max-width: 768px) {

  #active-item {
    bottom: 65px;
  }

  .active-pill {
    padding: 10px 29vw; /* 🔥 baseado na largura da tela */
    font-size: 17px;
    
    white-space: nowrap;
  }

  #active-clear {
    width: 45px;
    height: 45px;
  }
}