.loadingAccess {
    margin: 120px auto 0;
    width: 120px;
    height: 100px;
}


.divAccessLoading {
    margin: 5px 0;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    color: antiquewhite;
    width: 100%;
    /*display: flex;*/
    top: 40%;
    position: relative;
    /*font-size: 10px;*/
    /*width: 100px;
    height: 100px;*/
}

.loadingAccess .lineAccess {
    width: 5px;
    height: 12px;
    margin: 0 0px;
    display: inline-block;
    animation: opacity-2 1000ms infinite ease-in-out;
    background-color: chocolate;
}

.loadingAccess .lineAccess1 {
    animation-delay: 300ms;
}

.loadingAccess .lineAccess2 {
    animation-delay: 200ms;
}

.loadingAccess .lineAccess3 {
    animation-delay: 300ms;
}

.loadingAccess .lineAccess4 {
    animation-delay: 200ms;
}

.loadingAccess .lineAccess5 {
    animation-delay: 200ms;
}

.loadingAccess .lineAccess6 {
    animation-delay: 400ms;
}

.loadingAccess .lineAccess7 {
    animation-delay: 600ms;
}

.loadingAccess .lineAccess8 {
    animation-delay: 800ms;
}

.backdropInitAccess {
    opacity: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: none;
}

.backdropAccess {
    display: block;
}


@keyframes opacity-1 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity-2 {
    0% {
        opacity: 1;
        height: 15px;
    }

    50% {
        opacity: 0.5;
        height: 12px;
    }

    100% {
        opacity: 1;
        height: 15px;
    }
}