/* 通信中のダイアログ */
.loader-container {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0d000024;
}

/* 回転スピナー */
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid gray;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* 回転アニメーション */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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