.spinner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, .75);
}

.spinner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

.spinner-icon-svg {
    animation: 1s cubic-bezier(.1, .5, .9, .5) infinite spinner;
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 10;
}
