.notice {
  position: fixed;
  top: 25px;
  left: 50%;
  width: 300px;
  min-height: 1px;
  margin-left: -150px;
  background-color: #fff;
  z-index: 1040;
  border-radius: 3px;
  box-shadow: 0px 0px 1.68px 0.32px rgba(0, 0, 0, 0.2);
}

.notification-enter {
  opacity: 0.1;
  max-height: 0;
  overflow: hidden;
}

.notification-enter.notification-enter-active {
  opacity: 1;
  max-height: 1000px;
  transition: opacity 200ms ease-ou, max-height 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -moz-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -ms-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -o-transition: opacity 200ms ease-ou, max-height 200ms ease-out;
}

.notification-leave {
  opacity: 1;
  max-height: 1000px;
  overflow: hidden;
}

.notification-leave.notification-leave-active {
  opacity: 0.1;
  max-height: 0;
  transition: opacity 200ms ease-ou, max-height 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -moz-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -ms-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -o-transition: opacity 200ms ease-ou, max-height 200ms ease-out;
}

.notification-appear {
  opacity: 0.1;
  max-height: 0;
  overflow: hidden;
}

.notification-appear.example-appear-active {
  opacity: 1;
  max-height: 1000px;
  transition: opacity 200ms ease-ou, max-height 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -moz-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -ms-transition: opacity 200ms ease-out, max-height 200ms ease-out;
  -o-transition: opacity 200ms ease-ou, max-height 200ms ease-out;
}

.notice-type-marker {
  display: inline-block;
  padding: 30px 30px;
  border-radius: 3px 0 0 3px;
}

.notice-type-marker.success {
  background-color: #18bc9c;
}

.notice-icon {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.notice-content {
  display: inline-block;
  padding: 0 20px;
  font-size: 14px;
}

.notice-header {
}

.notice-body {
}

.notice-footer {
}

.close-notice {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;

  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  color: #bac4c5;

  font-size: 16px;
}

/* alerts */

.alerts-menu {
  width: 360px;
  padding: 10px 15px;
}

.alerts-count {
  padding: 3px 10px;
  border-radius: 3px;
  background-color: #212e3b;
}

.alerts-icon {
  position: absolute;
  top: 13px;
  right: 9px;
  color: #e74c3c;
  font-size: 0.8em;
}

/* grievance record alert */
.record-alert {
  list-style: none;
  line-height: 1;
  font-size: 14px;

  padding: 13px 0;
  margin: 0px;

  border-bottom: 1px solid #ecf0f1;
}

.record-alert:first-child {
  padding-top: 0px;
}

.record-alert:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.record-alert li {
  line-height: 1.3;
  text-indent: 0px;
  padding: 0px;
  margin: 0px;
}

.grievance-record-alert-last-updated {
  color: #95a5a6;
  font-style: italic;
  font-size: 0.9em;
  float: right;
}

/* record alert popover */

.record-alerts-popover-container {
  position: relative;
  float: left;
}

#record-alerts-popover .popover-content {
  min-height: 58px;
}

.record-alerts-popover-container .popover.right > .arrow {
  top: 30px;
}

.alert-popover-btn {
  cursor: pointer;
  color: #f39c12;
  display: block;
  padding: 10px 15px;
}

.record-alert-popover-item {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
}

.record-alert-popover-item:first-child {
  padding-top: 0;
}

.record-alert-popover-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* PNotify inbound file-download-ready */

.ui-pnotify.file-download-ready .ui-pnotify-container {
  height: 80px;
  padding: 0px;
  background-color: #fff !important;
  background-image: none !important;
  border: none !important;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0px 0px 4.2px 0.8px rgba(0, 0, 0, 0.2);
}

.ui-pnotify.file-download-ready .ui-pnotify-closer {
  float: none;
  position: absolute;
  top: 10px;
  right: 15px;
  color: #bac4c5 !important;
  visibility: visible !important;
}

.ui-pnotify.file-download-ready .ui-pnotify-title {
  display: none;
}

.ui-pnotify.file-download-ready .ui-pnotify-text {
  display: inline-block;
  padding: 0;
  margin: 15px 0 15px 15px;
  width: 294px;
  height: 90px;
  color: #2c3e50 !important;
  background-color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 12px !important;
  vertical-align: top;
}

.ui-pnotify.file-download-ready .ui-pnotify-text h5 {
  margin-top: 0;
}

.ui-pnotify.file-download-ready .ui-pnotify-text a {
  color: #3498db;
  text-decoration: none;
}

.ui-pnotify.file-download-ready
  .ui-pnotify-text
  .file-download-ready-notice-body,
.ui-pnotify.file-download-ready .ui-pnotify-text p {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.5em;
}

.ui-pnotify.file-download-ready
  .ui-pnotify-text
  .file-download-ready-notice-subject {
  font-weight: bold;
  font-size: 13px;
  line-height: 1.5em;
  margin: 15px 0 0 0;
}

.ui-pnotify.file-download-ready .ui-pnotify-text p:first-child {
  margin: 0;
}

.ui-pnotify.file-download-ready .ui-pnotify-icon {
  float: none;
  display: inline-block;
  padding: 34px 32px;
  background-color: #3498db;
}

.ui-pnotify.file-download-ready .fa {
  width: 0.8em;
  height: 0.8em;
  font-size: 1.2em;
  color: #fff;
}

.notifications-count {
  padding: 3px 10px;
  border-radius: 3px;
  background-color: #212e3b;
}

.notifications-count-icon {
  position: absolute;
  top: 13px;
  right: 9px;
  color: #e74c3c;
  font-size: 0.8em;
}

.notification-row.unread {
  font-weight: bold;
}

.notification-row.read {
  background-color: #fafafa;
}

.notification-details {
  margin-bottom: 8px;
}

.notification-details .btn-link {
  border: 0;
  vertical-align: baseline;
}

.notification-details .notification-timestamp {
  display: inline-block;
  padding: 2px;
  margin-left: 8px;
  background-color: #fafafa;
  border-radius: 2px;
}

.notification-message {
  cursor: pointer;
  border-top: 1px solid #ecf0f1;
  padding: 8px;
}

.notification-message:hover {
  background-color: #fafafa;
}

.notification-message.closed {
  max-height: 36px;
  overflow: hidden;
}

.notification-message.open {
  padding: 12px 14px;
  line-height: 1.5;
  background-color: #fafafa;
}

.notification-message.open .notification-message-body {
  padding: 8px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #dce4ec;
}
