.dt-toaster {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
}
.dt-toaster .dt-toast:not(:first-child) {
  margin-top: 1rem;
}
.dt-toaster .dt-toast:not(:first-child).dt-toast--hidden {
  margin-top: 0;
}
body.pixel .dt-toaster {
  bottom: 10px;
  right: 10px;
}
body.pixel .dt-toaster .dt-toast:not(:first-child) {
  margin-top: 10px;
}
body.pixel .dt-toaster .dt-toast:not(:first-child).dt-toast--hidden {
  margin-top: 0;
}

.dt-toast {
  background-color: #8da5e0;
  max-height: 14rem;
  border-radius: 0.4rem;
  width: 30rem;
  color: #0d0d0d;
  text-align: start;
  display: flex;
  align-items: center;
  box-shadow: 0 0.3rem 0.8rem 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease-in-out, opacity 0.5s ease-in-out, max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}
.dt-toast button.dt-toast__content:focus-visible, .dt-toast .dt-toast__content[tabindex="0"]:focus-visible {
  box-shadow: 0 0 0.1rem 0.1rem rgba(255, 255, 255, 0.8), 0 0 0.4rem 0.3rem #8da5e0;
}
body.pixel .dt-toast .dt-toast__content[tabindex="0"]:focus-visible, body.pixel .dt-toast button.dt-toast__content:focus-visible {
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8), 0 0 4px 3px #8da5e0;
}

body.accessible .dt-toast .dt-toast__content[tabindex="0"]:focus, body.accessible .dt-toast button.dt-toast__content:focus {
  box-shadow: 0 0 0.1rem 0.1rem rgba(255, 255, 255, 0.8), 0 0 0.4rem 0.3rem #8da5e0;
}
body.pixel.accessible .dt-toast button.dt-toast__content:focus, body.pixel.accessible .dt-toast .dt-toast__content[tabindex="0"]:focus {
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8), 0 0 4px 3px #8da5e0;
}

.dt-toast button.dt-toast__content:hover, .dt-toast button.dt-toast__content:focus, .dt-toast .dt-toast__content[tabindex="0"]:hover, .dt-toast .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(255, 255, 255, 0.14);
}
.dt-toast .dt-toast__content {
  position: relative;
  padding-left: 3.5rem;
  padding-right: 0.8rem;
  width: 100%;
  border-radius: 0.4rem;
  transition: box-shadow 0.1s ease-in-out, background-color 0.1s ease-in-out;
}
.dt-toast .dt-toast__content::after {
  content: "\f05a";
  font-family: "Font Awesome 6 Pro";
  display: block;
  position: absolute;
  top: 1.3rem;
  left: 1.2rem;
  color: inherit;
  font-size: 1.4rem;
  font-weight: 400;
  width: 1.4rem;
  height: 1.4rem;
  line-height: 1.4rem;
  transition: filter 0.2s ease-in-out;
}
.dt-toast .dt-toast__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4rem;
  margin: 1.3rem 0 0.6rem 0;
}
.dt-toast .dt-toast__title ~ .dt-toast__text {
  font-size: 1rem;
  margin-top: 0.6rem;
  line-height: 1.2rem;
}
.dt-toast .dt-toast__text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4rem;
  margin: 1.3rem 0;
}
.dt-toast .dt-toast__action-button {
  align-self: flex-start;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.4rem;
  margin: 0.6rem;
  text-align: center;
  transition: box-shadow 0.1s ease-in-out, background-color 0.1s ease-in-out;
}
.dt-toast .dt-toast__action-button:focus-visible {
  box-shadow: 0 0 0.1rem 0.1rem rgba(255, 255, 255, 0.8), 0 0 0.4rem 0.3rem #8da5e0;
}
body.pixel .dt-toast .dt-toast__action-button:focus-visible {
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8), 0 0 4px 3px #8da5e0;
}

body.accessible .dt-toast .dt-toast__action-button:focus {
  box-shadow: 0 0 0.1rem 0.1rem rgba(255, 255, 255, 0.8), 0 0 0.4rem 0.3rem #8da5e0;
}
body.pixel.accessible .dt-toast .dt-toast__action-button:focus {
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8), 0 0 4px 3px #8da5e0;
}

.dt-toast .dt-toast__action-button:hover, .dt-toast .dt-toast__action-button:focus {
  background-color: rgba(255, 255, 255, 0.14);
}
.dt-toast .dt-toast__action-button .dt-toast__action-button-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  font-size: 1.4rem;
  padding: 0.2rem;
}
.dt-toast.dt-toast--opacity-low {
  background-color: rgba(141, 165, 224, 0.1);
  color: #8da5e0;
}
.dt-toast.dt-toast--opacity-low button.dt-toast__content:hover, .dt-toast.dt-toast--opacity-low button.dt-toast__content:focus, .dt-toast.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(141, 165, 224, 0.1);
}
.dt-toast.dt-toast--opacity-low .dt-toast__action-button:hover, .dt-toast.dt-toast--opacity-low .dt-toast__action-button:focus {
  background-color: rgba(141, 165, 224, 0.1);
}
.dt-toast.dt-toast--outlined {
  background-color: transparent;
  border: 0.1rem solid;
  border-color: #8da5e0;
  color: #8da5e0;
}
.dt-toast.dt-toast--outlined button.dt-toast__content:hover, .dt-toast.dt-toast--outlined button.dt-toast__content:focus, .dt-toast.dt-toast--outlined .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--outlined .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(141, 165, 224, 0.1);
}
.dt-toast.dt-toast--outlined .dt-toast__title {
  margin-top: 1.2rem;
}
.dt-toast.dt-toast--outlined .dt-toast__title ~ .dt-toast__text {
  margin-top: 0.6rem;
}
.dt-toast.dt-toast--outlined .dt-toast__text {
  margin: 1.2rem 0;
}
.dt-toast.dt-toast--outlined .dt-toast__action-button:hover, .dt-toast.dt-toast--outlined .dt-toast__action-button:focus {
  background-color: rgba(141, 165, 224, 0.1);
}
.dt-toast.dt-toast--success {
  background-color: #91ca71;
}
.dt-toast.dt-toast--success .dt-toast__content::after {
  content: "\f058";
}
.dt-toast.dt-toast--success.dt-toast--opacity-low {
  background-color: rgba(145, 202, 113, 0.1);
  color: #91ca71;
}
.dt-toast.dt-toast--success.dt-toast--opacity-low button.dt-toast__content:hover, .dt-toast.dt-toast--success.dt-toast--opacity-low button.dt-toast__content:focus, .dt-toast.dt-toast--success.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--success.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(145, 202, 113, 0.1);
}
.dt-toast.dt-toast--success.dt-toast--opacity-low .dt-toast__action-button:hover, .dt-toast.dt-toast--success.dt-toast--opacity-low .dt-toast__action-button:focus {
  background-color: rgba(145, 202, 113, 0.1);
}
.dt-toast.dt-toast--success.dt-toast--outlined {
  background-color: transparent;
  border-color: #91ca71;
  color: #91ca71;
}
.dt-toast.dt-toast--success.dt-toast--outlined button.dt-toast__content:hover, .dt-toast.dt-toast--success.dt-toast--outlined button.dt-toast__content:focus, .dt-toast.dt-toast--success.dt-toast--outlined .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--success.dt-toast--outlined .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(145, 202, 113, 0.1);
}
.dt-toast.dt-toast--success.dt-toast--outlined .dt-toast__action-button:hover, .dt-toast.dt-toast--success.dt-toast--outlined .dt-toast__action-button:focus {
  background-color: rgba(145, 202, 113, 0.1);
}
.dt-toast.dt-toast--error {
  background-color: #e66666;
}
.dt-toast.dt-toast--error .dt-toast__content::after {
  content: "\f06a";
}
.dt-toast.dt-toast--error.dt-toast--opacity-low {
  background-color: rgba(230, 102, 102, 0.1);
  color: #e66666;
}
.dt-toast.dt-toast--error.dt-toast--opacity-low button.dt-toast__content:hover, .dt-toast.dt-toast--error.dt-toast--opacity-low button.dt-toast__content:focus, .dt-toast.dt-toast--error.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--error.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(230, 102, 102, 0.1);
}
.dt-toast.dt-toast--error.dt-toast--opacity-low .dt-toast__action-button:hover, .dt-toast.dt-toast--error.dt-toast--opacity-low .dt-toast__action-button:focus {
  background-color: rgba(230, 102, 102, 0.1);
}
.dt-toast.dt-toast--error.dt-toast--outlined {
  background-color: transparent;
  border-color: #e66666;
  color: #e66666;
}
.dt-toast.dt-toast--error.dt-toast--outlined button.dt-toast__content:hover, .dt-toast.dt-toast--error.dt-toast--outlined button.dt-toast__content:focus, .dt-toast.dt-toast--error.dt-toast--outlined .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--error.dt-toast--outlined .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(230, 102, 102, 0.1);
}
.dt-toast.dt-toast--error.dt-toast--outlined .dt-toast__action-button:hover, .dt-toast.dt-toast--error.dt-toast--outlined .dt-toast__action-button:focus {
  background-color: rgba(230, 102, 102, 0.1);
}
.dt-toast.dt-toast--warning {
  background-color: #ff9900;
}
.dt-toast.dt-toast--warning .dt-toast__content::after {
  content: "\f06a";
}
.dt-toast.dt-toast--warning.dt-toast--opacity-low {
  background-color: rgba(255, 153, 0, 0.1);
  color: #ff9900;
}
.dt-toast.dt-toast--warning.dt-toast--opacity-low button.dt-toast__content:hover, .dt-toast.dt-toast--warning.dt-toast--opacity-low button.dt-toast__content:focus, .dt-toast.dt-toast--warning.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--warning.dt-toast--opacity-low .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(255, 153, 0, 0.1);
}
.dt-toast.dt-toast--warning.dt-toast--opacity-low .dt-toast__action-button:hover, .dt-toast.dt-toast--warning.dt-toast--opacity-low .dt-toast__action-button:focus {
  background-color: rgba(255, 153, 0, 0.1);
}
.dt-toast.dt-toast--warning.dt-toast--outlined {
  background-color: transparent;
  border-color: #ff9900;
  color: #ff9900;
}
.dt-toast.dt-toast--warning.dt-toast--outlined button.dt-toast__content:hover, .dt-toast.dt-toast--warning.dt-toast--outlined button.dt-toast__content:focus, .dt-toast.dt-toast--warning.dt-toast--outlined .dt-toast__content[tabindex="0"]:hover, .dt-toast.dt-toast--warning.dt-toast--outlined .dt-toast__content[tabindex="0"]:focus {
  background-color: rgba(255, 153, 0, 0.1);
}
.dt-toast.dt-toast--warning.dt-toast--outlined .dt-toast__action-button:hover, .dt-toast.dt-toast--warning.dt-toast--outlined .dt-toast__action-button:focus {
  background-color: rgba(255, 153, 0, 0.1);
}
.dt-toast.dt-toast--hidden {
  transform: translate3d(0, 70%, 0);
  opacity: 0;
  max-height: 0;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, max-height 0.4s ease-in-out, margin-top 0.3s ease-in-out;
}
body.pixel .dt-toast {
  max-height: 140px;
  border-radius: 4px;
  width: 300px;
}
body.pixel .dt-toast .dt-toast__content {
  padding-left: 35px;
  padding-right: 8px;
  border-radius: 4px;
}
body.pixel .dt-toast .dt-toast__content::after {
  top: 13px;
  left: 12px;
  font-size: 14px;
  width: 14px;
  height: 14px;
  line-height: 14px;
}
body.pixel .dt-toast .dt-toast__title {
  font-size: 12px;
  line-height: 14px;
  margin: 13px 0 6px 0;
}
body.pixel .dt-toast .dt-toast__title ~ .dt-toast__text {
  font-size: 10px;
  margin-top: 6px;
  line-height: 12px;
}
body.pixel .dt-toast .dt-toast__text {
  font-size: 12px;
  line-height: 14px;
  margin: 13px 0;
}
body.pixel .dt-toast .dt-toast__action-button {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  margin: 6px;
}
body.pixel .dt-toast .dt-toast__action-button .dt-toast__action-button-icon {
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  padding: 2px;
}
body.pixel .dt-toast.dt-toast--outlined {
  border-width: 1px;
}
body.pixel .dt-toast.dt-toast--outlined .dt-toast__title {
  margin-top: 12px;
}
body.pixel .dt-toast.dt-toast--outlined .dt-toast__title ~ .dt-toast__text {
  margin-top: 6px;
}
body.pixel .dt-toast.dt-toast--outlined .dt-toast__text {
  margin: 12px 0;
}
body.pixel .dt-toast.dt-toast--hidden {
  max-height: 0;
}
