.loading-buttons {
    display: inline-flex;
    flex-direction: column;
    margin-top: 1em;
    
    button {
      border-color: darken(green, 10%);
      background: green;
      margin: .25em 1em;
      &:active,
      &:focus,
      &:hover, 
      &.disabled {
        background: darken(green, 10%) !important;
        border-color: darken(green, 10%);   
      }
      
      i.fa-file-word {
        padding-right: .5em;
      }
    }
  }

  #spinner-div {
    position: fixed;
    display: none;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
  }