.loading {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    background-image: linear-gradient(-45deg, #061827 0%, #103a47 100%);;
    height: 100vh;
    width: 100vw;
    z-index: 11;
}

.loading.loading-disabled {
    display: none;
}

.loading__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading__img > img {
    z-index: 12;
}

.loading__img::before {
    content: url(../../assets/img/loading-2.svg);
    position: absolute;
    display: block;
    height: 160px;
    width: 160px;
    z-index: 11;
    animation: girar 3s linear infinite;
}

@keyframes girar {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}