.spinnerContainer {
    height: 125px;
    width: 125px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
}

.spinnerContainer .ms-Spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 19px;
    height: 100%;
}

.spinnerContainer .ms-Spinner-circle {
    border-color: #89a4d500 #89a4d5 #89a4d5;
    border-width: 5px;
    width: 38px;
    height: 38px;
}

.spinnerContainer .ms-Spinner-label {
    color: #89A4D5;
    font-family: Verdana, sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 17px;
    margin: 0;
}

.spinnerBackground {
    background-color: rgba(0, 0, 0, 0.2);
    inset: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
}