.notify-card {
  position: absolute;
  z-index: 3060;
  right: 10px;
  bottom: 10px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;

  width: 460px;
  height: 230px;
  padding: 25px;

  border: 1px solid #cecece;
  border-radius: 10px;

  animation: show 1.75s ease-in-out;

  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .card-title {
      display: block;

      margin: 0;

      font-size: 19px;
      font-weight: 400;
      line-height: 29px;
    }
  }

  .buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;

    button:first-child {
      width: 120px;
      margin-right: 15px;
      font-size: 14px;
      font-weight: 500;
    }

    button:last-child {
      width: 150px;

      font-size: 14px;
      font-weight: 500;
      color: #fff;

      background-color: #49ce46;
    }
  }
}
