/* Declaración de variables */
:root {
  --dame-verde-claro: #4FAD47;
  --dame-verde-oscuro: #466c70;
  --fondo-verde-claro: #4fad4760;
  --fondo-verde-oscuro: #466c7060;
  --gris-claro: #a9a9a9;
  --gris-oscuro: #696969;
}

/* Paleta de colores */
.w3-theme-l5 {color:#000 !important; background-color:#f3f7f7 !important}
.w3-theme-l4 {color:#000 !important; background-color:#d7e4e6 !important}
.w3-theme-l3 {color:#000 !important; background-color:#afcacd !important}
.w3-theme-l2 {color:#fff !important; background-color:#87afb4 !important}
.w3-theme-l1 {color:#fff !important; background-color:#609399 !important}
.w3-theme-d1 {color:#fff !important; background-color:#406266 !important}
.w3-theme-d2 {color:#fff !important; background-color:#39575a !important}
.w3-theme-d3 {color:#fff !important; background-color:#314c4f !important}
.w3-theme-d4 {color:#fff !important; background-color:#2a4144 !important}
.w3-theme-d5 {color:#fff !important; background-color:#233638 !important}

.w3-theme-light {color:#000 !important; background-color:#4FAD47 !important}
.w3-theme-dark {color:#fff !important; background-color:#2A4748 !important}
.w3-theme-action {color:#fff !important; background-color:#233638 !important}

.w3-theme {color:#fff !important; background-color:#466c70 !important}
.w3-text-theme {color:#466c70 !important}
.w3-text-theme-light {color: #4fad47; !important}
.w3-border-theme {border-color:#466c70 !important}

.w3-theme-alfa-light {color:#000 !important; background-color: var(--fondo-verde-claro) !important}
.w3-theme-alfa-dark {color:#000 !important; background-color: var(--fondo-verde-oscuro) !important}

/* Chrome specific input hacks */
input:focus, textarea:focus, select:focus{
  /* Chrome outline focus */
  outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active  {
  /* Chrome input autocomplete off remove background color */
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
}
/* Chrome, Safari, Edge, Opera, numeric spin button off*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox, numeric spin button off */
input[type=number] {
  -moz-appearance: textfield;
}

/* Tool Tip */
.tooltip {
  position: relative;
  background: var(--dame-verde-claro);
  margin-top: 20px;
}

.tooltip:before,
.tooltip:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 19px;
  border: 11px solid transparent;
  border-bottom-color: var(--dame-verde-claro);
}

.tooltip:after {
  left: 20px;
  border: 10px solid transparent;
  border-bottom-color: var(--dame-verde-claro);
}

/* Relativo a formularios */
.etiqueta {
  color: var(--gris-oscuro);
  margin-top: 50px;
}
.icon {
  color: var(--gris-claro);
  margin-left: 8px!important;
  margin-right: 8px!important;
}

