.page-flow {
  background: #FFE9E8;
}

.page-flow .container {
  padding-block: 54px 100px;
}

@media screen and (max-width: 767px) {
  .page-flow .container {
    padding-block: 26px 60px;
  }
}

.flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.flow__item {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 16px 12px;
  background: #fff;
}

.flow__item--image {
  width: 60px;
  margin-bottom: 16px;
}

.flow__item--title {
  margin-bottom: 21px;
  font-size: 15px;
  font-weight: 700;
}

.flow__item--text {
  font-size: 13px;
  line-height: 1.8;
  width: 100%;
}

.flow__item--notice {
  margin-top: 12px;
  width: 100%;
  font-size: 11px;
  line-height: 1.63;
  background: #FFF6F5;
  padding: 12px 10px;
}

.flow__item--note {
  display: flex;
  gap: 2px;
  align-items: center;
  place-self: flex-start;
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .flow__item--note {
    align-items: flex-start;
  }
}

.flow__item--note--image {
  width: 16px;
  height: 16px;
}

.flow__item--note--text {
  font-size: 11px;
}

.flow__item--table {
  width: 100%;
  margin-top: 16px;
}
.flow__item--table th,
.flow__item--table td {
  font-size: 13px;
  line-height: 1.8;
}

.flow__item--table th {
  width: 130px;
}



