/**
 * This file was automatically generated. Please run `npm run dist` to update.
 */

.ct-callout__wrapper {
  border-radius: 0.25rem;
  padding: 1.5rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ct-callout__wrapper {
    padding: 1.5rem 2.5rem 2rem 1.5rem;
  }
}
.ct-callout__wrapper {
  position: relative;
}
.ct-callout__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.375rem;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  transition: width 0.25s;
}
.ct-callout__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ct-callout.ct-theme-light .ct-callout__wrapper {
  background-color: var(--ct-callout-light-background-color);
}
.ct-callout.ct-theme-light .ct-callout__wrapper::before {
  background-color: var(--ct-callout-light-stripe-background-color);
}
.ct-callout.ct-theme-dark .ct-callout__wrapper {
  background-color: var(--ct-callout-dark-background-color);
}
.ct-callout.ct-theme-dark .ct-callout__wrapper::before {
  background-color: var(--ct-callout-dark-stripe-background-color);
}