.validation-error {
    color: red;
}

.required:after {
    content: "*";
    position: relative;
    font-size: inherit;
    color: #f1416c;
    padding-left: .25rem;
    font-weight: 700
}

/*Cargando*/

.loadContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999 !important;
}

.cargando {
    display: flex;
}

.cargando .dot {
    position: relative;
    width: 2em;
    height: 2em;
    margin: 0.8em;
    border-radius: 50%;
}

.cargando .dot::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: wave 2s ease-out infinite;
}

.cargando .dot:nth-child(1) {
    background: #0257FF;
}

.cargando .dot:nth-child(1)::before {
    animation-delay: 0.2s;
}

.cargando .dot:nth-child(2) {
    background: #91B6FF;
}

.cargando .dot:nth-child(2)::before {
    animation-delay: 0.4s;
}

.cargando .dot:nth-child(3) {
    background: #75A2FA;
}

.cargando .dot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.cargando .dot:nth-child(4) {
    background: #91FFD3;
}

.cargando .dot:nth-child(4)::before {
    animation-delay: 0.8s;
}

.cargando .dot:nth-child(5) {
    background: var(--color-primary-400);
}

.cargando .dot:nth-child(5)::before {
    animation-delay: 1s;
}

@keyframes wave {
    50%,
    75% {
        transform: scale(2.5);
    }
    80%,
    100% {
        opacity: 0;
    }
}