* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 2px 0 3px 0;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.documento-wrapper {
  width: 411px;
  height: 505px;
  overflow: hidden;
}

.documento {
  width: 411px;
  height: 505px;
  background-image: url("/assets/docVig-boceto.png");
  background-size: 411px 600px;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
}

.datos {
  width: 411px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
}

.col-head {
  width: 100px;
}

.col-text {
  width: 291px;
}

.spacer-top {
  height: 75px;
}

.spacer-status {
  height: 35px;
}

.spacer-bottom {
  height: 8px;
}

td.dgHead {
  color: #095fa0;
  text-align: right;
  padding: 5px 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  vertical-align: middle;
  font-weight: normal;
}

td.dgText {
  color: #000000;
  text-align: left;
  padding: 5px 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 18px;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: normal;
}

@media (max-width: 411px) {
  body {
    padding: 0;
    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
  }

  .documento-wrapper {
    width: 100vw;
    height: calc(505px * (100vw / 411));
    overflow: hidden;
  }

  .documento {
    width: 411px;
    height: 505px;
    transform: scale(calc(100vw / 411));
    transform-origin: top left;
  }

  .datos {
    width: 411px;
  }

  td.dgHead,
  td.dgText {
    font-size: 16px;
    line-height: 18px;
  }
}