    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #212529;
      text-align: left;
      background-color: #fff;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    .toast {
      max-width: 350px;
      overflow: hidden;
      font-size: 0.875rem;
      background-color: rgba(255, 255, 255, 0.5);
      background-clip: padding-box;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 0.25rem;
      box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      display: none;
    }

    .toast:not(:last-child) {
      margin-bottom: 0.75rem;
    }

    .toast_show {
      display: block;
    }

    .toast__header {
      display: flex;
      align-items: center;
      padding: 0.25rem 2rem 0.25rem 0.75rem;
      color: #212529;
      background-color: rgba(255, 255, 255, 0.5);
      background-clip: padding-box;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
    }

    .toast__close {
      position: absolute;
      top: 0;
      right: 10px;
      padding: 0;
      background-color: transparent;
      border: 0;
      cursor: pointer;
      float: right;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: 0.6;
      margin: 0;
      font-family: inherit;
      border-radius: 0;
    }

    .toast__body {
      padding: 0.75rem;
    }

    input:not([type="checkbox"]) {
      display: block;
      font-size: 1rem;
      margin-bottom: .5rem;
    }

.toasts {
	z-index: 999999999;
}