.loyalty-suite-notification-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 350px;
  background: var(--loyalty-suite-light);
  z-index: 999999999;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  border: 1px solid var(--loyalty-suite-borders-60);
  border-top-left-radius: 8px;
  border-right: none;
  border-bottom: none;
  padding: 20px;
  box-sizing: border-box;

  &__header {
    display: flex;
    color: var(--loyalty-suite-primary);
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
  }

  &__title {
    display: flex;
    width: 100%;
  }

  &__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 20px;
    color: var(--loyalty-suite-dark);
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
  }

  &__action {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }

  a.loyalty-suite-notification-popup__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 15px;
    background: var(--loyalty-suite-primary);
    border-radius: 4px;
    color: var(--loyalty-suite-light);
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    transition: 0.3s;
    margin-right: 5px;

    &:hover {
      background: var(--loyalty-suite-primary-90);
    }
  }

  &__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 15px;
    background: var(--loyalty-suite-negative);
    border-radius: 4px;
    color: var(--loyalty-suite-light);
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    transition: 0.3s;
    margin-left: 5px;

    &:hover {
      cursor: pointer;
      background: var(--loyalty-suite-negative-90);
    }
  }
}

@media (max-width: 576px) {
  .loyalty-suite-notification-popup {
    border-top-left-radius: 0;
    width: 100%;
  }
}
