
@keyframes interactive-spinner-border {
  to { transform: rotate(360deg); }
}

.interactive {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.3s linear;
}

.interactive-header {
    box-shadow: 0 0.125rem 1.25rem 0 rgba(169, 181, 194, 0.2);
    text-align: center;
    padding: 1.657rem 0;
    background: #fff;
    height: auto;
}

.interactive-body {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.interactive-spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    color: #E52026;
    -webkit-animation: interactive-spinner-border .75s linear infinite;
    animation: interactive-spinner-border .75s linear infinite;    
}

.interactive-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}