.red {
    color: red;
}

.form-errors ul{
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.198);
    border: 1px solid rgba(255, 0, 0, 0.198);
}

.form-errors ul li{
    margin-left: -20px;
    list-style: none !important;
}

#removeError{
    padding: 20px;
    border-radius: 15px;
    border: 1px solid tomato;
    color: tomato;
    background: pink;
}
.hasError{
    border: 1px solid red !important;
    border-radius: 5px;
}
.success{
    border: 1px solid green !important;
    border-radius: 5px;
}
[data-href]{
    cursor: pointer;
    color: blue;
}
.bold{
    font-weight: bold;
}
#loadingBg{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: black;
    color: whitesmoke;
    display: none;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

span#loading:before{
    content: '';
    animation: animate infinite 5s;
}

@keyframes animate {
    0%{
        content: '.';
    }
    20%{
        content: '..';
    }
    40%{
        content: '...';
    }
    60%{
        content: '....';
    }
    80%{
        content: '.....';
    }
    100% {
        content: '';
    }
}