/**
 * Row list wrapper
 */

.row-list {
  padding: 1rem 2rem 2rem;
  max-width: 725px;
  margin: 2rem auto;
  background-color: var(--brand-secondary-light-color);
}


/**
 * Row list item
 */

.row-list-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--brand-grey-light);
}
.row-list-item__left {
  color: var(--brand-primary-color);
}
.row-list-item__right {
  max-width: 50%;
  text-align: right;
}









