#loading-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}
.loadspinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #e4d298;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: loadspin 2s linear infinite;
}
