#block-colocated {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

@media screen and (min-width: 1280px) {
  #block-colocated {
    bottom: 80px;
    right: 30px;
  }
}

#block-colocated .notification {
  width: 300px;
  background: #000;
  border: solid 2px;
  border-color: #8862aa;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  transform-origin: bottom right;
  transition: all ease-in-out .2s;
}

#block-colocated .notification::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid #8862aa;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  bottom: -20px;
  right: 1.5%;
  transform: translate(-50%, 0);
}

#block-colocated .notification.is-active {
  transform: scale(1);
}

#block-colocated .notification.is-not-active {
  transform: scale(0);
}

#block-colocated .notification > p,
#block-colocated .notification__body {
  margin: 0;
}

#block-colocated .notification__exit {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 1.75em;
  transform: rotate(45deg);
  cursor: pointer;
}

#block-colocated .notification__footer {
  position: relative;
}

#block-colocated .notification__btn {
  background-color: #8862aa;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  float: right;
  position: relative;
  cursor: pointer;
}

#block-colocated .notification__btn img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*** States ***/

/*# sourceMappingURL=notification.css.map */
