/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Toast {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  background: var(--colorsSurfaceDefault, white);
  border-radius: 3px;
  border: 1px solid var(--colorsBorderGrey, #dfe0e1);
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.5;
  padding: 24px;
  width: 375px;
  max-width: 100%;
  position: relative;
}

.Toast__title {
  font-weight: 600;
  word-break: break-word;
}
.Toast--info .Toast__title {
  color: var(--colorsTextPrimary, #0265dc);
}
.Toast--critical .Toast__title {
  color: var(--colorsTextCritical, #bf2a00);
}
.Toast--success .Toast__title {
  color: var(--colorsStatusSuccessStrong, #007a4d);
}
.Toast--warning .Toast__title {
  color: var(--colorsTextDefault, #141414);
}

.Toast__icon {
  font-size: 20px;
  margin-right: 16px;
  transform: translateY(2px);
}
.Toast--info .Toast__icon {
  color: var(--colorsStatusInfo, #0265dc);
}
.Toast--critical .Toast__icon {
  color: var(--colorsStatusCritical, #e13212);
}
.Toast--success .Toast__icon {
  color: var(--colorsStatusSuccessStrong, #007a4d);
}
.Toast--warning .Toast__icon {
  color: var(--colorsStatusWarningStrong, #ffbe00);
}

.Toast__description {
  color: var(--colorsTextDefault, #141414);
  font-size: 14px;
  margin-top: 8px;
}

.Toast__text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.Toast__action {
  flex-basis: 100%;
  text-align: right;
  margin-top: 24px;
}

.Toast__close.Button {
  position: absolute;
  right: calc(24px - 4px);
  top: calc(24px - 2px);
}
.Toast__close.Button:hover {
  background-color: transparent;
}

.Toast--floating {
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 1200;
}

.ToastGroup {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
}

.ToastGroup > * {
  margin-bottom: 16px;
}

.ToastGroup > :nth-child(5):not(:last-child) {
  position: relative;
}
.ToastGroup > :nth-child(5):not(:last-child)::after {
  content: "";
  background: #ffffff;
  border-radius: 0 0 3px 3px;
  border: 1px solid #eaeff2;
  bottom: -8px;
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.1);
  height: 8px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 343px;
  z-index: -1;
}

.ToastGroup > :nth-child(n+6) {
  visibility: hidden;
}

.ToastGroup--floating {
  top: 16px;
  right: 16px;
  position: fixed;
  z-index: 1200;
  max-width: calc(100% - 32px);
}

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