.lp_icp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* gap: 1rem; */
  font-size: 12px;

  color: white;
  line-height: 24px;
}

.lp_icp a {
  color: lightgray;
}

.lp_icp a:hover {
  text-decoration: underline;
}

.lp_icp_item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.lp_icp_item:after {
  color: #CCC;
  content: "|";
  margin: 0 1rem;
}

.lp_icp_item:nth-last-child(1):after {
  content: "";
}

@media screen and (max-width: 786px) {
  .lp_icp {
    display: flex;
    flex-direction: column;
  }

  .lp_icp_item {
    margin-bottom: 0.1rem;
  }

  .lp_icp_item:after {
    content: "";
  }
}
