.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999999;
  display: none;
  float: none;
  margin: 0;
  padding: 34px 46px;
  min-height: 0;
  max-height: auto;
  min-width: 0;
  max-width: 100%;
  width: auto;
  height: auto;
  text-align: center;
  font-size: 26px;
  opacity: 0;
  border-radius: 20px;
  background-color: rgba(0,0,0,.8);
  box-shadow: none;
  color: #fff;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
  transition: all 500ms ease-in-out;

  &.in {
    display: block;
  }

  &.fade {
    opacity: 1;
  }
}
