/******* COMPONENT TOASTS CSS ******/
.paragraph--type--toasts {
  margin: 2em auto;
  width: 85%;
  max-width: 800px;
}
/* .hcdtoasts {
} */
.hcdtoasts .text-formatted.field--type-text-long {
  margin: inherit;
}
.hcdtoasts .toasts-row {
  border-left: 6px solid var(--HCD--gray);
  border-right: 1px solid var(--HCD--gray);
  border-bottom: 1px solid var(--HCD--gray);
  border-top: 1px solid var(--HCD--gray);
  padding: 2em 5%;
  border-radius: 4px;
}
.hcdtoasts .toasts-row .toast-icon {
  font-size: 2.25em;
  /* margin: 0 0 1.5em 0; */
  font-variation-settings: var(--HCD--font-variation-settings);
  justify-content: flex-start;
  display: flex;
}
.hcdtoasts .toasts-row .toast-icon span {
  aspect-ratio: 1/1;
  height: 96px;
}
.hcdtoasts .toasts-row .toast-icon span:empty {
  border-radius: 50%;
  border: 1px solid var(--HCD--gray);
}
/* .hcdtoasts .toasts-row .toast-content {
} */
.hcdtoasts .toasts-row .toast-content .toast-title {
  font-size: 1.375em;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: 0;
}
.hcdtoasts .toasts-row .toast-content .toast-text {
  color: var(--hcd-charcoal);
  font-family: "Open Sans";
  font-size: 0.8em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
.hcdtoasts .hcd_orange .toast-icon,
.hcdtoasts .hcd_orange .toast-content .toast-title {
  color: var(--HCD--orange);
}
.hcdtoasts .hcd_orange.toasts-row {
  border-left-color: var(--HCD--orange);
}
.hcdtoasts .hcd_second_orange .toast-icon,
.hcdtoasts .hcd_second_orange .toast-content .toast-title {
  color: #ba0202;
}
.hcdtoasts .hcd_second_orange.toasts-row {
  border-left-color: #ba0202;
}
.hcdtoasts .hcd_light_blue .toast-icon,
.hcdtoasts .hcd_light_blue .toast-content .toast-title {
  color: var(--HCD--light--blue);
}
.hcdtoasts .hcd_light_blue.toasts-row {
  border-left-color: var(--HCD--light--blue);
}
@media screen and (min-width: 728px) {
  .hcdtoasts .toasts-row {
    align-items: center;
    gap: 2em;
    display: flex;
  }
  .hcdtoasts .toasts-row .toast-icon {
    padding: unset;
    margin-bottom: 0;
  }
}


