﻿.sys-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  display: none;
}
.sys-alert .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
  z-index: -1;
}
.sys-alert .wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.sys-alert .wrapper .banner {
  min-height: 130px;
  background-color: #930f21;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  color: #fff;
  justify-content: center;
  box-shadow: 0 0 20px #393939;
  padding: 20px;
}
.sys-alert .wrapper .banner .message {
  max-width: 300px;
  color: #fff;
  text-align: center;
  padding: 5px;
  margin-bottom: 10px;
}
.sys-alert .wrapper .banner .dismiss {
  padding: 7px 50px;
  border: 1px solid #fff;
  border-radius: 3px;
  cursor: pointer;
}
.sys-alert .wrapper .banner .dismiss:hover {
  box-shadow: 0 0 5px #fff;
}
