#confirmation {
  display: none;
  background-color: #fff;
  max-width: 400px;
  min-width: 400px;
  margin-left: -125px;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  padding: 16px;
  position: fixed;
  z-index: 999;
  top: 78px;
  right: 12px;
  opacity: .98;
}

#confirmation.show-success {
  background-color: #212529;
}

#confirmation.show-error {
  background-color: #b1323e;
}

@keyframes fadein {
  from {opacity: 0;}
  to {opacity: .95;}
}

@keyframes fadeout {
  from {opacity: .95;}
  to {opacity: 0;}
}