﻿* {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.capa0 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(0, 0, 0, .5);
    z-index: 9;
}

.capa_principal {
    width: 90%;
    max-width: 500px;
    height: 220px;
    background-color: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .75);
    z-index: 1000;
    margin: 15% auto;
}

.cabecera {
    width: 100%;
    height: 40px;
    padding: .5em;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /*box-shadow: 0px 1px 3px rgba(0, 0, 0, .35);*/
    font-size: 18px;
    font-weight: bold;
    color: #8F4899;
    /*text-shadow: 0px 1px 2px rgba(0, 0, 0, .75);*/
    box-sizing: border-box;
}

    .cabecera.roja {
        /*background-color: rgba(255, 0, 0, .75);*/
    }

    .cabecera.azul {
        /*background-color: #428bca;*/
    }

    .cabecera.amarillo {
        /*background-color: rgba(255, 153, 0, .75);*/
    }

    .cabecera.verde {
        /*background-color: rgba(0, 153, 0, .75);*/
    }

    .cabecera span {
        float: right;
        right: 40px;
        font-size: 16px;
        cursor: pointer;
    }

    .cabecera a {
        float: right;
        margin: 0px 10px;
        color: white;
        cursor: pointer;
    }

.mensaje {
    width: 100%;
    height: 140px;
    padding: 0em 2em 1em 2em;
    overflow: auto;
    color: #8F4899;
    font-size: 1.5em;
    overflow-wrap: break-word;
    scrollbar-track-color: red;
    box-sizing: border-box;
}

.pie {
    width: 100%;
    height: 40px;
    padding: 10px 20px 10px 20px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
}

    .pie img {
        width: 2.5em;
        margin-top: -10px;
        box-sizing: border-box;
    }

/*--------------------------------------------------------------------------------------------------------------------------------------------*/

.capa_carga {
    width: 300px;
    margin: 20% auto;
    padding: 15px 20px;
    /*background-color: rgba(0, 0, 0, .5);*/
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-align: center;
    /*box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, .35);*/
}

    .capa_carga label {
        display: block;
    }

.contenedor_animado {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 10px auto;
    border-top: 2px #fff dashed;
    border-radius: 100%;
    animation: cargando 1.5s infinite linear;
}

.img_animada {
    width: 75px;
    animation: cargando 1.5s infinite linear;
    box-sizing: border-box;
}

@keyframes cargando {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cnt_notificacion_emergente {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px;
    background-color: rgb(151, 215, 0);
    color: white;
    text-align: center;
    z-index: 9;
    box-sizing: border-box;
}
