/* ========================================================
   NOVO TEMA PARA LABEL
   ======================================================== */


@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700;900&display=swap');


.Label {
  
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  
  
  text-shadow: none;
  
  
  color: var(--text-light);
  color: black;
  
  
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px; 
}


.Label.label-xs {
  font-size: 10px;
}
.Label.label-sm {
  font-size: 12px;
}
.Label.label-md {
  font-size: 14px;
}
.Label.label-lg {
  font-size: 16px;
}
.Label.label-xl {
  font-size: 18px;
}


.Label.LabelRequired {
  font-weight: 700; 
}

.Label.LabelRequired::after {
  content: ' *';
  color: var(--accent-yellow);
}



.Label .Icon {
  cursor: pointer;
  margin-left: 8px;
  font-size: 12px;
  opacity: 0.65;
  outline: none;
  transition: all linear 100ms;
}
.Label .Icon:hover, .Label .Icon:focus {
  opacity: 1;
}


.Label .ListGroup {
  display: none;
}

/*# sourceMappingURL=Label.css.map */