@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");


.selector {
  display: flex;
  justify-content: center; /* Centra el contenido horizontalmente */
}

.selector ul {
  display: flex;
  list-style-type: none; /* Elimina los puntos de lista */
  padding: 0;
  margin: 0;
  width: 100%; /* Asegura que el contenedor ul tome el 100% del ancho */
}

  .tabs {
font-size: 12px;
  }
  .tab {
    cursor: pointer;
    padding: 5px;
    padding-left: 35px;
    padding-right: 35px;
    background: #00000070;
    color: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
  }
  .tabs .tab.active,
  .tabs .tab:hover {
    color: rgb(0, 0, 0);
    background-color: #ffffff;
  }
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;

  }
  .ul-tab {
  background: #00000052;
  }
  li.sel {
    color: #ffffff;
    padding-bottom: 10px;
    }
  i.active  {
    font-size: 20px;
    background-color: black;
    color:darkgoldenrod;
  padding: 3px; 
border-radius: 4px; }

i.sel  {
  background-color: black;
  color:rgb(61, 61, 61);
padding: 3px; 
border-radius: 4px; 
}

@media (max-width: 1199px) {
  .tabs .tab {
font-size: 11px;
  }  }

