.fullscreen-modal {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    height: 100%;
    width: 100%;
    background: rgba(194, 194, 194, .8);
}
.centered-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color:#858585;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    text-align: center;
}
.centered-child {
    padding: 2em 4em;
}
.spinner-message{
    margin-bottom: 0.5em;
}
.spinner{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* Styling for dealing with browsers that don't support animations.  By default don't display the spinner, unless
    we activate it by setting the html class to svg-animation*/
img.spinner { display: none; }
html.svg-animation img.spinner { display: inline; }