html{
    font-size: 16px;
}

/*a.nav-link.icon-link{
    color: white;
    vertical-align: text-top !important;
}

.form-control:focus{
    box-shadow: none;
}

.metaAlcanzadaBG{
    background-color: #dbf2e1 !important;
}

.jnotification-container a{
    text-decoration: none;
    color: inherit;
}*/

/* The element BEFORE swap  */
.htmx-swapping {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* The element AFTER swap */
.htmx-added {
    opacity: 0;
    transform: translateY(6px);
}

.htmx-settling .htmx-added {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

:root{
    --app-primary: #01869B;
}

/* Primary button */
.ui.primary.button,
.ui.primary.buttons .button {
  background-color: var(--app-primary) !important;
  color: #fff !important;
}

/* Hover */
.ui.primary.button:hover,
.ui.primary.buttons .button:hover {
  background-color: color-mix(in srgb, var(--app-primary) 85%, black) !important;
}

/* Active / pressed */
.ui.primary.button:active,
.ui.primary.buttons .button:active {
  background-color: color-mix(in srgb, var(--app-primary) 70%, black) !important;
}

/* Focus */
.ui.primary.button:focus {
  background-color: var(--app-primary) !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) !important;
}

.ui.primary.disabled.button,
.ui.primary.button:disabled {
  background-color: var(--app-primary) !important;
  opacity: .45;
}

.ui.primary.basic.button {
  box-shadow: 0 0 0 1px var(--app-primary) inset !important;
  color: var(--app-primary) !important;
}

.ui.primary.basic.button:hover {
  background: rgba(31, 111, 255, .05) !important;
}

@media screen and (max-width: 768px) {
    .mobile.only {
        display: block !important;
    }
}

@media screen and (min-width: 769px) {
    .mobile.only {
        display: none !important;
    }
}