/* =Elements style
  ---------------------- */
.load-wrapp {
    border-radius: 5px;
    text-align: center;
    background-color: rgba(213, 213, 213, .5);
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    z-index: -1;
    transition: ease-in-out .3s;
}

.load-wrapp--active{
    z-index: 3;
}

.load-wrapp:last-child {
    margin-right: 0;
}

.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #6C2B87;
}

.load .line:nth-last-child(1) {
    animation: loading 0.6s 0.1s linear infinite;
}

.load .line:nth-last-child(2) {
    animation: loading 0.6s 0.2s linear infinite;
}

.load .line:nth-last-child(3) {
    animation: loading 0.6s 0.3s linear infinite;
}


@keyframes loading {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 991px) {
    .load-wrapp {
        width: 95%;
    }
}