#spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.spinner-img {
    width: 60px;
    height: 60px;
    top: calc(50vh - 60px);
    left: calc(50vw - 30px);
    position: fixed;
    animation: spin 1s linear infinite;
    animation-direction: reverse;
}

.spinner-border {
    position: absolute;
    top: calc(50vh - 60px);
    left: calc(50vw - 30px);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #9c8;
    border-bottom-color: #9c8;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.upsubmit {
    width: 100%;
    padding: 10px;
    visibility: visible;
    margin-right: 25px;
    margin-bottom: 10px;
    display: block;
    background-color: #38b673;
    border: 0;
    font-weight: bold;
    font-size: 14px;
    color: white;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;
    box-shadow: 4px 4px 8px 0 #000;
}

.upsubmit:active {
    box-shadow: 0px 0px 2px 0 #000;
}

.upcancel {
    height: 35px;
    background-color: brown;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid brown;
    box-shadow: 4px 4px 8px 0 #000;
}

.upcancel:active {
    box-shadow: 0px 0px 2px 0 #000;
}

.spin_text {
    position: absolute;
    top: 50vh;
    left: calc(50vw - 96px);
    font-size: 24px;
    color: white;
}