#wacv-unsubscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;

  .wacv-modal-relative-layer {
    position: relative;
    height: 100%;
  }

  .wacv-modal-absolute-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    transform: translate(-50%, -50%);
    max-width: 100%;
    padding: 20px;
  }

  .wacv-unsub-content-layer {
    position: relative;
    background-color: white;
    padding: 20px;
    box-shadow: inset 0 4px 7px 1px #fff, inset 0 -5px 20px rgba(173, 186, 204, .25), 0 2px 6px rgba(43, 43, 43, 0.24), 0 10px 20px rgba(0, 21, 64, .15);
    border-radius: 3px;
    text-align: center;
  }

  .wacv-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 28px;
    width: 28px;
    height: 28px;

    &:hover {
      cursor: pointer;
      color: black;
    }
  }

  h2.wacv-unsub-title {
    font-weight: 600;
    margin-bottom: 20px;
  }

  .wacv-unsub-redirect-button {
    display: block;
    padding: 10px 20px;
    width: fit-content;
    margin: auto;
    border-radius: 3px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .wacv-unsub-message {
    font-size: 18px;
  }
}