.c2-notification-top-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.3em;
}
.c2-notification-top-bar__element {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.3em 1em;
  background-color: #fcf7b6;
  text-align: center;
}
.c2-area-notification-toast {
  z-index: 99999;
  height: 100%;
  position: fixed;
  pointer-events: none;
  display: flex;
  flex-direction: column-reverse;
  justify-items: flex-end;
  width: 350px;
  margin-inline: 25px;
  padding-bottom: 25px;
  gap: 10px;
}
.c2-notification-toast {
  display: flex;
  flex: 0;
  pointer-events: all;
  z-index: 99999;
  border: solid 1px #dfdfdf;
  border-radius: 0.5em;
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.3);
  padding-left: 1em;
  border-left: 6px solid;
  background-color: white;
  color: #000000;
}
.c2-notification-toast__btn-dismiss {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  padding: 0.5em 1em 0.5em 0.5em;
  height: fit-content;
}
.c2-notification-toast__content {
  display: flex;
  flex-direction: column;
  max-width: 19rem;
  word-wrap: break-word;
  margin-top: 1em;
}
.c2-notification-toast__content__header {
  font-weight: bold;
}
.c2-actionable-message {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.c2-notifications-pane.c2-side-dialog {
  width: 450px;
  display: flex;
  flex-direction: column;
}
.c2-notifications-pane.c2-side-dialog .c2-side-dialog__header {
  margin-left: calc(1em + 5px);
}
.c2-notifications-list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  padding-bottom: 0.5em;
}
.c2-notifications-list--empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  flex-grow: 1;
}
.c2-notifications-list__empty-placeholder {
  font-size: 1.17em;
  margin-block: 1em;
  margin-inline: 0px;
  font-weight: bold;
}
.c2-notification {
  padding: 1em;
  border-bottom: solid 1px #dfdfdf;
  border-left: 5px solid;
  font-size: 14px;
}
.c2-notification__header {
  display: flex;
  align-items: center;
}
.c2-notification__header--expandable {
  cursor: pointer;
}
.c2-notification__header__title {
  font-weight: bold;
  position: relative;
}
.c2-notification__header__title > img {
  position: absolute;
  margin-top: 0.2em;
}
.c2-notification__context,
.c2-notification-toast__context {
  font-weight: bold;
  color: #7e7e7e;
}
.c2-notification__context--toast {
  padding-bottom: 0.5em;
}
.c2-notification__message {
  margin-top: 1em;
}
.c2-notification-toast__message {
  margin-top: 1em;
  margin-bottom: 1em;
}
.c2-notification.c2-notification--success,
.c2-notification-toast.c2-notification--success {
  border-left-color: #5cb85c;
}
.c2-notification.c2-notification--info,
.c2-notification-toast.c2-notification--info {
  border-left-color: #3695ff;
}
.c2-notification.c2-notification--warning,
.c2-notification-toast.c2-notification--warning {
  border-left-color: #efac4e;
}
.c2-notification.c2-notification--error,
.c2-notification-toast.c2-notification--error {
  border-left-color: #d63c00;
}
.c2-notifications-bell {
  display: flex;
  position: relative;
}
.c2-notifications-bell .c2-notifications-bell__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: #d63c00;
  font-size: 10px;
  width: 1.6em;
  height: 1.6em;
  border-radius: 100%;
  margin-top: 14px;
  margin-left: 10px;
}
.c2-side-dialog {
  height: calc(100% - 60px);
  width: 100%;
  position: absolute;
  right: 0;
  top: 60px;
  background-color: #ffffff;
  z-index: 400;
  max-width: 100%;
  opacity: 0;
}
.c2-side-dialog.c2-dialog--show {
  opacity: 1;
}
.c2-side-dialog__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  line-height: 50px;
}
.c2-side-dialog__header__text {
  display: inline;
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}
.c2-button.c2-side-dialog__header__btn-close {
  padding: 10px;
  margin-inline: 10px;
  flex-shrink: 0;
}
.c2-button.c2-side-dialog__header__btn-close img {
  vertical-align: middle;
}
