[class*="c_flex"] {
  display: flex;
}
[class*="c_flex"][class*="-alignCenter"] {
  align-items: center;
}
[class*="c_flex"][class*="-alignStart"] {
  align-items: flex-start;
}
[class*="c_flex"][class*="-justifyBetween"] {
  justify-content: space-between;
}
[class*="c_flex"][class*="-justifyEvenly"] {
  justify-content: space-evenly;
}
[class*="c_flex"][class*="-row"] {
  flex-direction: row;
}
[class*="c_flex"][class*="-column"] {
  flex-direction: column;
}
[class*="c_flex"][class*="-full"] {
  width: 100%;
}
[class*="c_flex"][class*="-gap"] {
  gap: var(--space-sm);
}
[class*="c_padding"][class*="-vertical"][class*="-small"] {
  padding: var(--space-xs) 0;
}

/* 구분선 */
[class*="line-column"] {
  display: block;
  width: 1px;
  height: 1.4rem;
}
[class*="line-row"] {
  display: block;
  width: 100%;
  height: 1px;
}
[class*="line"][class*="-border-mid"] {
  background-color: var(--color-border-mid);
}
[class*="line"][class*="-border-light"] {
  background-color: var(--color-border-light);
}
.line_primary {
  background-color: var(--color-primary);
  width: 1px;
  height: 1.5rem;
}

/* 안내(페이퍼세븐 커스텀) */
.custom_info {
  font-size: var(--font-s-xs);
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
}
.custom_info::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("../image/common/icon_info.svg") center/cover no-repeat;
}
