.spinnerDiv {
    width: 100%;
    height: 40%;
    align-items: center;
    justify-content: center;
    display: none;
    position: fixed;
}

/* LOADING SPINNER */
.spinner {
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    padding: 3px;
    overflow: visible;
    color: var(--custom1-color);
}

.spinner>circle {
    fill: none;
    stroke: currentColor;
    cx: 50%;
    cy: 50%;
    r: 50%;
    stroke-width: 6px;
    stroke-linecap: round;
    transform-origin: center;
}