/* Loading spinner at googlespreadsheet/,  file/, file/googlespreadsheet/, flow/ */
.googlespreadsheet_spinner_container {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.googlespreadsheet_spinner_container.show {
    background: rgba(255, 255, 255, 0.3);
}

.googlespreadsheet_spinner_container.hide {
    background: rgba(255, 255, 255, 0);
}

.googlespreadsheet_spinner {
    z-index: 120;
    position: fixed;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FF7777;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }

@keyframes googlespreadsheet_spinner_container_show {
    0% {
        background: rgba(255, 255, 255, 0);
    }
    100% {
        background: rgba(255, 255, 255, 0.3);
    }
}

@keyframes googlespreadsheet_spinner_container_hide {
    0% {
        background: rgba(255, 255, 255, 0.3);
    }
    100% {
        background: rgba(255, 255, 255, 0);
    }
    
}

  @media (max-width: 660px) {
    .googlespreadsheet_spinner {
        z-index: 120;
        position: fixed;
        top: 50%;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-top: 4px solid #FF7777;
        animation: spin 1s linear infinite;
        margin: 0 auto;
      }
}
