.message-debug {
    border: solid 1px;
    background: #EFEFEF;
    color: #222222;
    padding: 4px;
    text-align: center;
}

.message-info {
    border: solid 1px;
    background: #CDE7F0;
    color: #046088;
    padding: 4px;
    text-align: center;
}

.message-success {
    border: solid 1px;
    background: #CDE7F0;
    color: #04880;
    padding: 4px;
    text-align: center;
}

.message-warning {
    border: solid 1px;
    background: #F0EFCD;
    color: #E7E401;
    padding: 4px;
    text-align: center;
}

.message-error {
    border: solid 1px;
    background-color: #fff3f3;
    color: #E70801;
    padding: 4px;
    text-align: center;
    font-family: Montserrat;

    >.container>.row {}
}


.message-icon-django {
    justify-content: center;
    align-items: center;
}

.message-error h4.alert {
    margin-bottom: 0;
}




#contenedor_carga {
    background-color: rgba(250, 240, 245, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
    z-index: 10000;
}

#carga {
    border: 15px solid #ccc;
    border-top-color: #F4266A;
    border-top-style: groove;
    height: 100px;
    width: 100px;
    border-radius: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: girar 1.5s linear infinite;
    -o-animation: girar 1.5s linear infinite;
    animation: girar 1.5s linear infinite;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.color_parapadea {
    font-family: helvetica;
    font-weight: bold;
    color: #71d90b;
    text-transform: uppercase;
}

.parpadea {

    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}