/* write style here */
.UserInfo {
  text-align: center;
  color: var(--color-text1-3, #333333);
  width: 100%;

  .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    img {
      width: 100px;
      height: 100px;
    }

    header {
      margin-top: 16px;
      font-size: var(--font-size-headline);
      line-height: var(--font-lineheight-2);
      font-weight: var(--font-weight-medium, 500);
    }

    p {
      font-size: var(--font-size-body-1);
      line-height: var(--font-lineheight-2);
      color: var(--color-text1-2, #5a5a5a);
      margin: 8px 0 0;
    }

    & + .infoContainer {
      margin-top: 32px;
    }
  }

}

.infoContainer {
  text-align: left;

  & + .infoContainer {
    margin-top: 32px;
  }

  .infoTitle {
    font-size: var(--font-size-body-2);
    line-height: var(--font-lineheight-2);
    font-weight: var(--font-weight-medium, 500);
  }

  .infoContent {
    padding-top: 12px;

    .info {
      font-size: var(--font-size-body-1);
      display: flex;
      align-items: flex-start;

      & + .info {
        margin-top: 8px;
      }

      .infoIcon {
        margin-right: 8px;
      }

      .infoIcon:before {
        line-height: 1;
      }
    }

  }
}
