.notification_wrapper {
  position: fixed;
  right: 10px;
  top: 10px;
}

.notification {
  display: flex;
  background: white;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 2px solid;
  overflow: hidden;
}

.notification .icon {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification .text {
  width: 300px;
  padding: 10px 15px;
  box-sizing: border-box;
}

.notification .text .headline {
  font-size: 20px;
  margin-bottom: 7px;
}

.notification .close_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
  box-sizing: border-box;
  border-left: 1px solid;
  cursor: pointer;
}

.notification .icon i {
  font-size: 33px;
  color: white;
}

.notification.success .icon {
  background: #20bf6b;
}

.notification.success, .notification.success .close_button {
  border-color: #20bf6b;
}

.notification.success .text .headline {
  color: #20bf6b;
}

.notification.warn .icon {
  background: #f7b731;
}

.notification.warn, .notification.warn .close_button {
  border-color: #f7b731;
}

.notification.warn .text .headline {
  color: #f7b731;
}

.notification.info .icon {
  background: #2d98da;
}

.notification.info, .notification.info .close_button {
  border-color: #2d98da;
}

.notification.info .text .headline {
  color: #2d98da;
}

.notification.error .icon {
  background: #eb3b5a;
}

.notification.error, .notification.error .close_button {
  border-color: #eb3b5a;
}

.notification.error .text .headline {
  color: #eb3b5a;
}

.dialog_popup_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog_popup {
  width: 400px;
  background: white;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  box-sizing: border-box;
  padding: 35px;
  text-align: center;
  border-radius: 15px;
  position: relative;
  top: -150px;
  opacity: 0;
  left: -150px;
}

.dialog_popup .title {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.dialog_popup .description {
  font-size: 18px;
  line-height: 28px;
}

.dialog_popup .buttons {
  display: flex;
  width: 100%;
  margin-top: 30px;
}

.dialog_popup .buttons .dialog_button {
  box-sizing: border-box;
  padding: 15px 25px;
  cursor: pointer;
  display: inline-block;
}

.dialog_popup .buttons .dialog_button_wrapper {
  width: 100%;
}

.dialog_button.accept {
  background: #2c3e50;
  color: white;
  border-radius: 25px;
}
