.mrn-1 {
  background-color: #8960e8;
  box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.4);
  display: block;
  color: white;
  padding: 10px 20px;
  width: 250px;
  height: 150px;
  position: fixed;
  top: -300px;
  right: 30px;
  z-index: 2;
}

.mrn-1.displayed {
  animation: notif1 cubic-bezier(0.17, 0.67, 0.35, 1.16) 400ms forwards;
}

.mrn-1.displayed.hidding {
  animation: notif1Dismiss ease-out 400ms forwards;
}

.mrn-1 .notification__body {
  height: 100%;
  position: relative;
}

.mrn-1 .notification__title {
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  text-align: center;
  background-color: #ffffff;
  color: #8960e8;
  width: calc(100% + 40px);
  padding: 10px 0;
  transform: translate(-20px, -10px);
}

.mrn-1 .notification__message {
  padding-top: 5px;
}

@keyframes notif1 {
  100% {
    transform: translateY(330px);
  }
}

@keyframes notif1Dismiss {
  0% {
    transform: translateY(330px);
  }
  100% {
    transform: translateY(0);
  }
}

.mrn-1 button.dismiss {
  position: absolute;
  bottom: 0;
  margin: 0;
  top: auto;
  width: 100%;
}

.mrn-1 button.dismiss:hover {
  color: #ffffff;
  background-color: #8960e8;
  border: 1px solid #ffffff;
  box-shadow: none;
  margin: 0;
}

.mrn-1 .notification__btns {
  bottom: -5px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
}

.mrn-1 .notification__btns .go-page {
  box-shadow: none;
  margin: 0;
  position: relative;
  transition: 200ms;
  width: 49%;
}

.mrn-1 .notification__btns .go-page:hover {
  background-color: #8960e8;
  color: #ffffff;
}
