#noty_layout__bottomCenter {
  width: auto;
  bottom: 24px;
}

.noty_effects_open {
  transform: translateY(calc(100% + 24px));
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.noty_effects_close {
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.25);
}

@keyframes noty_anim_in {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes noty_anim_out {
  100% {
    transform: translateY(calc(100% + 24px));
    opacity: 1;
  }
}

.noty_theme__rosen {
  font-size: 16px;
  display: flex;
  padding: 24px 80px;
  color: #fff;
  border-radius: 4px;
  background-color: #1e1e1e;
}

.noty_theme__rosen .noty_body {
  display: inline-flex;
  align-items: center;
}

.noty_theme__rosen .noty_icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.noty_theme__rosen .noty_icon__success {
  background-image: url(../images/icons/icon-check-circle-outline.svg);
}

.noty_theme__rosen .noty_icon__error {
  background-image: url(../images/icons/icon-error-outline.svg);
}
