.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: center;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    .mid-wrap {
        top: -100px;
        opacity: 0;
        
        img {
            z-index: 70;
            display: flex;
            position: relative;
            height: 80px;
        }

        .loading {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: block;
            margin: 15px auto;
            position: relative;
            color: #ba9856;
            left: -100px;
            box-sizing: border-box;
            animation: shadowRolling 2s linear infinite;
        }


    }
}

@keyframes shadowRolling {
    0% {
        box-shadow: 0px 0 rgba(186, 152, 86, 0), 0px 0 rgba(186, 152, 86, 0), 0px 0 rgba(186, 152, 86, 0), 0px 0 rgba(186, 152, 86, 0);
    }

    12% {
        box-shadow: 100px 0 #ba9856, 0px 0 rgba(186, 152, 86, 0), 0px 0 rgba(186, 152, 86, 0), 0px 0 rgba(186, 152, 86, 0);
    }

    25% {
        box-shadow: 110px 0 #ba9856, 100px 0 #ba9856, 0px 0 rgba(186, 152, 86, 0), 0px 0 rgba(186, 152, 86, 0);
    }

    36% {
        box-shadow: 120px 0 #ba9856, 110px 0 #ba9856, 100px 0 #ba9856, 0px 0 rgba(186, 152, 86, 0);
    }

    50% {
        box-shadow: 130px 0 #ba9856, 120px 0 #ba9856, 110px 0 #ba9856, 100px 0 #ba9856;
    }

    62% {
        box-shadow: 200px 0 rgba(186, 152, 86, 0), 130px 0 #ba9856, 120px 0 #ba9856, 110px 0 #ba9856;
    }

    75% {
        box-shadow: 200px 0 rgba(186, 152, 86, 0), 200px 0 rgba(186, 152, 86, 0), 130px 0 #ba9856, 120px 0 #ba9856;
    }

    87% {
        box-shadow: 200px 0 rgba(186, 152, 86, 0), 200px 0 rgba(186, 152, 86, 0), 200px 0 rgba(186, 152, 86, 0), 130px 0 #ba9856;
    }

    100% {
        box-shadow: 200px 0 rgba(186, 152, 86, 0), 200px 0 rgba(186, 152, 86, 0), 200px 0 rgba(186, 152, 86, 0), 200px 0 rgba(186, 152, 86, 0);
    }
}


#loader-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #0c0c0c;
    z-index: 0;
}