﻿#maku {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: not-allowed;
    background-color: rgba(10, 10, 10, .4);
}
.loader {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 16px;
    position: relative;
    text-indent: -9999em;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(255,255,255,.7) rgba(255,255,255,.7) rgba(0,0,0,.6);
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
