/* AJAX LOAD */
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
}

.ajax_load_box {
    text-align: center;
}

.win10-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.win10-spinner .dot {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotate(225deg);
    animation: win10-spinner-animation 5.5s infinite;
}

.win10-spinner .dot:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.win10-spinner .dot:nth-child(2) { animation-delay: 240ms; }
.win10-spinner .dot:nth-child(3) { animation-delay: 480ms; }
.win10-spinner .dot:nth-child(4) { animation-delay: 720ms; }
.win10-spinner .dot:nth-child(5) { animation-delay: 960ms; }
.win10-spinner .dot:nth-child(6) { animation-delay: 1200ms; }

@keyframes win10-spinner-animation {
    0% { transform: rotate(225deg); opacity: 1; animation-timing-function: ease-out; }
    7% { transform: rotate(345deg); animation-timing-function: linear; }
    30% { transform: rotate(455deg); animation-timing-function: ease-in-out; }
    39% { transform: rotate(570deg); animation-timing-function: linear; }
    70% { transform: rotate(815deg); opacity: 1; animation-timing-function: ease-out; }
    75% { transform: rotate(945deg); animation-timing-function: ease-out; }
    76% { transform: rotate(945deg); opacity: 0; }
    100% { transform: rotate(945deg); opacity: 0; }
}

.ajax_load_box_title {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: .05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
