.toast {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
  max-width: inherit;
  padding-left: inherit;
  z-index: 2000;

  .toast-header {
    background-color: inherit;
    border-bottom: 0;
    .message {
      color: white;
      font-weight: bold;
      text-align: center;
    }
    .close {
      position: absolute;
      top: 5px;
      right: 10px;
    }
  }
}