/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.c-stylized-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-stylized-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding-top: 0.625rem;
  border-top: 0.5px solid var(--wp--preset--color--red);
}
.c-stylized-list__item-text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "poppins", sans-serif;
  color: var(--wp--preset--color--red);
  font-weight: 600;
  line-height: 1.5;
}
.c-stylized-list__item-text {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .c-stylized-list__item-text {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-stylized-list__item-text {
    font-size: 0.8125rem;
  }
}
.c-stylized-list__item-check {
  flex-shrink: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  color: var(--wp--preset--color--red);
}
.c-stylized-list__item-check svg {
  display: block;
  width: 100%;
  height: 100%;
}