.notification-box {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.notification-box .notification {
  position: relative;
  padding: 30px 10px;
  width: 300px;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
}

.notification-box .notification .notification-item {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.notification-box .notification .notification-image {
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.notification-box .notification .notification-image img {
  width: 50%;
}

.addUserInfo {
  padding-top: 10px;
}

.addUserInfo button {
  width: 100%;
  height: 48px;
  font-size: 16px;
  color: #fff;
  background-size: 20px;
  background-color: #3498db;
  letter-spacing: 2px;
  cursor: pointer;
}

.addUserInfo:hover {
  opacity: 0.8;
}
