*{
    margin: 0;
    padding: 0;
}
.loading-page{
    width: 100%;
    height: 100vh;
    background-color: #00A9A2;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
}
.list-itens{
    list-style: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.list-itens li{
    opacity: 0;
    position: absolute;
}
.list-itens li:first-child{
    animation: element-1 10s infinite;
}
.list-itens li:nth-child(2){
    animation: element-2 10s infinite;
}
.list-itens li:last-child{
    animation: element-3 10s infinite;
}
.list-itens li img{
    max-width: 250px;
    max-height: 200px;
}
.line-loading{
    width: 380px;
    margin-top: 120px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.5);
    overflow: hidden;
}
.line-loaded{
    height: 10px;
    background-color: rgba(255,255,255,0.5);
    animation: move-line 10s infinite;
}

@keyframes move-line {
    0%{
        width: 0%;
    }
    50%{
        width: 50%;
    }
    80%{

        width: 70%;
    }
    100%{

        width: 100%;
    }
}

@keyframes element-1 {
    0%
    {
        opacity: 0;
    }
    1%
    {
        opacity: 1;
    }
    32%{
        opacity: 1;
    }
    33%{
        opacity: 0;
    }
    99%
    {
        opacity: 0;
    }
}
@keyframes element-2 {

    32%{
        opacity: 0;
    }
    33%{
        opacity: 1;
    }
    65%
    {
        opacity: 1;
    }
    66%
    {
        opacity: 0;
    }
}
@keyframes element-3 {

    66%
    {
        opacity: 0;
    }
    67%
    {
        opacity: 1;
    }
    99%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
