.rs-notification {
  position: fixed;
  right: 32px;
  top: 32px;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  width: 100%;
  max-width: 470px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1920px) {
  .rs-notification {
    right: calc(10px + 22 * (100vw - 320px) / 1600);
    top: calc(10px + 22 * (100vw - 320px) / 1600);
    max-width: calc(300px + 170 * (100vw - 320px) / 1600);
  }
}
.rs-notification._show-notification {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.rs-notification__message {
  background: #47ad29;
  border-radius: 12px;
  padding: 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  width: 100%;
}
@media (max-width: 1920px) {
  .rs-notification__message {
    padding: calc(16px + 4 * (100vw - 320px) / 1600) calc(10px + 6 * (100vw - 320px) / 1600);
  }
}
.rs-notification__message:not(:last-child) {
  margin-bottom: 10px;
}
.rs-notification i.rs-icon-check::before {
  font-size: 24px;
}
.rs-notification .s-semibold-title {
  margin-left: 12px;
}
.rs-notification .rs-notification-close {
  margin: 0px 0px 0px auto;
}