/* INICIO CSS LOADING NOVO */
#loading {
    width: 100%;
    height: 100%;
    background: linear-gradient(133.14deg, #00668F 0%, #002A3B 100%);
    position: fixed; 
    z-index: 99; 
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

#loading.open {
    z-index: 99999;
    display: flex;
}

#loading .center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#loading .center > img{
    width: 53px;
    height: 53px;
    margin: 0 0 50px;
}

#loading .center > p{
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */

    text-align: center;

    color: #FFFFFF;
    margin: 0;

    position: absolute;
    top: 100%;
    width: 300px;
}


#loading .center > p.opacity_top{
    transform: translateY(-25px) !important;
    color: #FFFFFF4d;
    font-size: 11px;
    line-height: 13px;
    transition: all .8s ease-in;  
}

#loading .center > p.mid{
    transform: translateY(0px);
    transition: all .8s ease-in;
}

#loading .center > p.opacity_bottom{
    color: #FFFFFF4d;
    font-size: 11px;
    line-height: 13px;
    transform: translateY(25px) !important;
    transition: all .8s ease-in;
}
/* FIM CSS LOADING NOVO */