﻿.notification-dialog {
  position: fixed;
  left: 50%;
  width: 420px;
  background-color: #fff;
  color: #000;
  padding: 15px;
  z-index: 20000;
  transform: translate(-50%, 0);
  transition-duration: 0.3s;
  top: -130px;
  display: block;
}
.notification-dialog.show {
  transform: translate(-50%, 130px);
}
.notification-dialog.mobile {
  top: auto;
  width: calc(100% - 2px);
  bottom: -130px;
  display: block;
}
.notification-dialog.mobile.show {
  transform: translate(-50%, -130px);
}
.notification-dialog .content-wrapper {
  display: flex;
}
.notification-dialog .content-wrapper .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #757575;
  font-size: 14px;
}
.notification-dialog .content-wrapper .error-text {
  color: red;
  font-weight: bold;
}
.notification-dialog .content-wrapper .notification-buttons {
  text-align: right;
}
.notification-dialog .content-wrapper .notification-buttons .btn-ok {
  background-color: #4F4F4F;
  color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 12px;
}
.notification-dialog .content-wrapper .notification-buttons .btn-again {
  background-color: #4F4F4F;
  color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 12px;
}
.notification-dialog .content-wrapper .notification-buttons .btn-link {
  color: #4f4f4f;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
.notification-dialog .notification-icon {
  margin-right: 15px;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
