#rd-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    pointer-events: none;
    overflow: hidden;
}

#rd-loading-spinner::before {
    content: "";
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 5px solid #ccc;
    border-top-color: #000;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}
