.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.2);
    z-index: 999;  /* modal has 1060 */
    opacity: 1;
    transition: all 0.5s;
}

.spinner {
  display: block;
  position: fixed;
  z-index: 1031;  /* modal has 1060 */
  top: 50%;
  right: 50%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.2);
    z-index: 1090;  /* modal has 1060 */
    opacity: 1;
    transition: all 0.5s;
}

.modal-spinner {
  display: block;
  position: absolute;
  /* z-index: 1090;   modal has 1060 */
  top: 50%;
  right: 50%;
}

.link {
    color: #000000;
    text-decoration: none;
}

.link:hover {
    color: #007BFF;
    text-decoration: underline;
}
