.abdeo-notification-outer {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 20001; /* ovveride modal bootstrap 1000 AND ovveride modal large */
  -webkit-transition: left 0.3s ease;
  -moz-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.hideSidebar .abdeo-notification-outer {
  left: 2rem;
}

.abdeo-notification {
  background: #fff;
  width: 45rem;
  border-radius: 0.4rem;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  box-shadow: 0rem 0.8rem 0.8rem #00000026;
}

.abdeo-notification-type::after {
  position: absolute;
  content: "";
  top: -0.4rem;
  left: 0;
  height: 0.4rem;
  width: 100%;
  border-radius: 0.4rem 0.4rem 0 0;
}

.abdeo-notification.info::after {
  background: #9B9B9B;
}

.abdeo-notification.succes::after,
.abdeo-notification.success::after {
  background: #10A560;
}

.abdeo-notification.warning::after {
  background: #FFA12F;
}

.abdeo-notification.error::after {
  background: #D9000C;
}

.abdeo-notification-info {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.abdeo-notification-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.abdeo-notification-text h4 {
  font-weight: 500;
  margin-bottom: 1.1rem !important;
}

.abdeo-notification-text h3:last-child {
  margin-bottom: 0 !important;
}

.abdeo-notification-text p {
  color: #545454;
  margin-bottom: 1.5rem;
}

.abdeo-notification-text p:last-child {
  margin-bottom: 0;
}

.abdeo-notification-icon {
  width: 3.2rem;
}

.abdeo-notification-icon i {
  font-size: 2rem;
}

.abdeo-notification.info .abdeo-notification-icon i {
  color: #9B9B9B;
}

.abdeo-notification.succes .abdeo-notification-icon i,
.abdeo-notification.success .abdeo-notification-icon i {
  color: #10A560;
}

.abdeo-notification.warning .abdeo-notification-icon i {
  color: #FFA12F;
}

.abdeo-notification.error .abdeo-notification-icon i {
  color: #D9000C;
}

.abdeo-notification-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 1.5rem -0.4rem 0;
  width: 100%;
}

.abdeo-notification-footer:first-child {
  margin-top: 0;
}

.abdeo-notification-footer>* {
  margin: 0 0.4rem;
}

.abdeo-notification-close {
  width: 4rem;
  height: 4rem;
  align-self: flex-start;
  margin-left: 2rem;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abdeo-notification-close::after,
.abdeo-notification-close::before {
  position: absolute;
  content: "";
  width: 0.2rem;
  height: 1.5rem;
  background: #9b9b9b;
  z-index: 1;
}

.abdeo-notification-close::after {
  transform: rotate(-45deg);
}

.abdeo-notification-close::before {
  transform: rotate(45deg);
}

.abdeo-notification-close:hover::after,
.abdeo-notification-close:hover::before {
  background: #111111;
}

.abdeo-notification-close svg {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: relative;
}

.abdeo-notification-circle {
  height: 100%;
  width: 100%;
  stroke-dasharray: 11.3rem;
  stroke-dashoffset: 0rem;
  stroke-linecap: round;
  stroke-width: 0.2rem;
}

.abdeo-notification-circle.bottom {
  fill: #ffffff;
  stroke: #f0f1f2;
}

.abdeo-notification-circle.top {
  fill: transparent;
  stroke: #9B9B9B;
}

.abdeo-notification-close:hover .abdeo-notification-circle.top {
  stroke: #111111;
}

@keyframes closeNofitication {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 11.3rem;
  }
}