div.team-liste-container div.team-loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1148627f;
    z-index: 100000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50%{
        opacity: 0.2;
    }
}

div.team-liste-container div.team-loader img.loader{
    width: 96px;
    animation: fadeInOut 3s infinite;
}

div.team-liste-container div.team-loader.hidden{
    visibility: hidden;
}