
/*notify*/
.aiz-notify {
  min-width: 350px;
  max-width: 350px;
  padding-right: 50px;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 0;
  color: var(--white);
  box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
  -webkit-box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
  padding: 1.25rem 1.25rem;
  font-size: 0.875rem;
  z-index: 1060 !important;
}
[dir="rtl"] .aiz-notify {
  text-align: right !important;
}
.aiz-notify .close {
  top: 50% !important;
  height: 20px;
  width: 20px;
  margin-top: -10px;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  opacity: 0.7;
  right: 15px !important;
  text-shadow: none;
}
[dir="rtl"] .aiz-notify .close {
  right: auto !important;
  left: 15px !important;
}
.aiz-notify .close:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.aiz-notify .close:hover {
  color: var(--dark);
  opacity: 1;
}
.aiz-notify .close:hover:before {
  opacity: 1;
  background-color: #fff;
  width: 170%;
  height: 170%;
  top: -35%;
  left: -35%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.aiz-notify .progress {
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
}
.aiz-notify .progress-bar {
  background-color: var(--white);
}
.aiz-notify.alert-success {
  background-color: var(--success);
}
.aiz-notify.alert-danger {
  background-color: var(--danger);
}
.aiz-notify.alert-primary {
  background-color: var(--primary);
}
.aiz-notify.alert-warning {
  background-color: var(--warning);
}
.aiz-notify.alert-info {
  background-color: var(--info);
}
.aiz-notify.alert-dark {
  background-color: var(--dark);
}
.aiz-notify.alert-secondary {
  background-color: var(--secondary);
}
.aiz-notify.alert-light,
.aiz-notify.alert-light .close {
  background-color: var(--light);
  color: var(--dark);
}
.aiz-notify.alert-light .progress-bar {
  background-color: var(--primary);
}
@media (max-width: 575px) {
  .aiz-notify {
      width: calc(100% - 40px);
      min-width: auto;
  }
}