/* Views/www_webpack/pages/personal_data/information.css */
.document {
  display: grid;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 10vw);
}
.document .link {
  text-decoration: underline;
}
.document .announcement {
  display: grid;
  gap: 20px;
}
.document article {
  display: grid;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
.document h1,
.document h2 {
  font-weight: normal;
  text-transform: uppercase;
}
.document h1 {
  flex: 1;
  width: 100%;
  font-size: 2em;
}
.document ol {
  display: grid;
  gap: 20px;
  padding-left: 20px;
}
.document ol ol {
  margin-top: 20px;
  padding-left: 40px;
}
.document .personal_data__title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.document [name=print] {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: auto;
  font-size: clamp(1em, 1.1vw, 1.5em);
}
.document [name=print] .icon {
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.document .alert {
  color: var(--color-red);
}
