
.est_alerta
{
    z-index: 10002;
    display: flex;
    position: fixed;

    top:50%;
    left: 50%;
    width: 50%;
    height: auto;

    transform: translate(-50%, -63%);
    border: 3px outset;
    background: white;
    border-radius: 2px;
    padding: 0px 15px; /* top, right, bottom, left */

    flex-direction: column;
}

.est_alerta_msg_sector
{
    display: flex;
    
    margin: 30px 0px 40px 0px; /* top, right, bottom, left */
    font-weight: bold;

    justify-content: center;
    text-align: center;
    flex-direction: row;
}

.est_alerta_btns_sector
{
    display: flex;
    
    margin: 0px 0px 20px 0px; /* top, right, bottom, left */

    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.est_alerta_btns_sector > .myButton
{
    width: 100px;
}

.est_alerta_capaOscura
{
    z-index: 10001;
    display: block;
    position: fixed;
    top:0;
    left:0;

    width: 100%;
    height: 100%;

    background: black;
    opacity: 0.5;
}

.est_alerta_load_bar
{
    display: block;
    width: 70%;
    top: -8px;
    position: relative;
}





.myButton_est_alert {
    display: block;
    position: relative;
    color: #FAF9FD;
    background: #038C3E;
    text-align: center;
    padding: 14px;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    font-family: Nunito-SemiBold;
    font-size: 16px;
}

.myButton_est_alert:active {
    transform: scale(0.98);
}

.myButton_est_alert:hover {
    background: #229C56;
}


/*==================================================================================================*/
/*==================================================================================================*/
/*==================================================================================================*/
/* Animacion load bar*/
.anim_load_bar
{
    display: flex;
    position: relative;
    width: 100%;
    height: 25px;
    border: 2px solid rgb(8, 8, 8);
    justify-content: space-around;
    align-items: center;
    padding: 6px;
    box-sizing: border-box;
}

.anim_load_bar > div
{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.anim_load_bar > div > div
{
    display: block;
    width: 5px;
    height: 5px;
    background: #000;
    
    animation-name: load_bar;
    animation-iteration-count: infinite;
}

@keyframes load_bar
{
    0%   {width: 5px;height: 5px; background: #000;border-radius: 0%;}
    15%, 40% {width: 10px;height: 10px;background: #038C3E;border-radius: 50%;}
    40%, 45% {width: 5px;height: 5px;}
    45%, 100% {width: 5px;height: 5px; background: #000; border-radius: 0%;}
}