#spotlight {
    z-index: 999999;
    pointer-events: none;
    width: 10rem;
    height: 10rem;
    background: rgba(0,0,0,0);
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    right: -50px;
    box-shadow:
      1em 1em 0 5000px rgba(0,0,0,0.2),
      1em -1em 0 5000px rgba(0,0,0,0.2),
      -1em 1em 0 5000px rgba(0,0,0,0.2),
      -1em -1em 0 5000px rgba(0,0,0,0.2);
    -webkit-transition:opacity 0.5s linear;
    -o-transition:opacity 0.5s linear;
    transition:opacity 0.5s linear;
}

#spotlight.spotlight-off  {
    opacity: 0;
}

#toggle-spotlight-button {
    z-index: 999999;
    color: #ffffff;
    background: #5a5fe0;
    border: none;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: fixed;
    bottom: 120px;
    right: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
