.toasts {
  position: fixed;
  max-height: 100vh;
  padding: 10px;
  top: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden; }
  .toasts > .toast {
    box-shadow: 0 0 6px 1px #8884;
    border-radius: 6px;
    border: 1px solid #8884;
    width: 350px;
    padding-top: 10px;
    margin-top: 10px;
    transition: 0.2s;
    opacity: 0;
    transform: scale(0.7);
    position: relative; }
    .toasts > .toast > * {
      color: inherit;
      cursor: default; }
    .toasts > .toast * {
      user-select: none; }
    .toasts > .toast.loader {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      padding: 8px 16px; }
      .toasts > .toast.loader > .message {
        margin: 0 0 0 16px; }
      .toasts > .toast.loader > .spin {
        border: 5px solid #8888;
        border-radius: 50%;
        border-top: 5px solid #0066ff;
        width: 40px;
        height: 40px;
        animation: spin 1.5s cubic-bezier(0.75, 0.25, 0.25, 0.75) infinite; }
    .toasts > .toast > .title {
      font-size: 16px;
      padding: 0 10px 2px;
      font-weight: bold; }
    .toasts > .toast > .message {
      margin: 0 10px 6px; }
    .toasts > .toast > .buttons {
      display: flex; }
      .toasts > .toast > .buttons > .button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        cursor: pointer;
        transition: 0.2s; }
    .toasts > .toast > .progress {
      position: absolute;
      height: 4px;
      background: linear-gradient(to right, #0003 100%, #0000 0%);
      width: 100%;
      left: 0;
      top: 0;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

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