:root {
  --colorTextPrimary: #4E5B78;
  --colorTextSecondary: #9CABCF;
  --colorAccent: rgb(255, 115, 0);
  --colorDark: #586685;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.col {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Archivo, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', 'Segoe UI', sans-serif;
  margin: 0;
}

.formLabel {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
  color: var(--colorTextPrimary);
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 1rem;
}

.formLabel + .formLabel {
  margin-top: 1rem;
}

input[type="radio"] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.15rem solid currentColor;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin-top: 0.15rem;
}

input[type="radio"]:checked {
  border: 0.15rem solid var(--colorAccent);
}

input[type="radio"]::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1rem 1rem var(--colorAccent);
  background-color: var(--colorAccent);
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

input[type="radio"]:focus {
  outline: 0 solid currentColor;
  outline-offset: 0;
}

#vaccinesContainer {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 20px 0;
  background: white;
}

.vaccinesPeriod {
  white-space: pre-wrap;
  text-align: center;
  color: var(--colorTextPrimary);
  font-size: 1.5rem;
  font-weight: bold;
}

.vaccineDate {
  color: var(--colorTextSecondary);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
}

.vaccineComponents {
  display: grid;
  grid-template-columns: 100px auto;
  gap: 1em;
  margin-bottom: 40px;
}

.componentInitials {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 5px;
}

.componentName {
  color: var(--colorTextPrimary);
  font-size: 1rem;
  font-weight: 600;
  padding-top: 1em;
}

#pdfContent {
  display: none;
  margin: 20px 0 0 20px;
}

#planTable {
  display: block;
  margin-top: 40px;
}

.planTableHeader {
  background: var(--colorDark);
}

.planTableRow {
  height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
}

.planTableDate {
  font-weight: 600;
  font-size: 0.75rem;
  color: #232F55;
  display: flex;
  align-items: center;
  text-align: left;
  vertical-align: middle;
  width: 80px;
  height: 100%;
  border-right: 1px solid #E9E9E9;
  margin: 0;
}

.planTableHeaderDescription {
  word-spacing: 800px;
  color: white;
  text-align: center;
  font-weight: 700;
}

.planTableItem {
  background: white;
  border-bottom: 1px solid rgb(227, 229, 244);
}

.planTableDarkItem {
  background: rgb(245, 246, 251);
}

.planTableItemComponent {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  width: 50px;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  margin: 0 0 0 15px;
}

#pdfPersonInfo {
  max-width: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pdfField {
  text-transform: uppercase;
  color: #8D8D8D;
  font-size: 0.75rem;
  margin: 0;
}

.pdfValue {
  color: #232F55;
  font-size: 1rem;
  margin: 10px 0 0 0;
}

#logo {
  margin-top: 40px;
  max-width: 200px;
  height: auto;
}

#addTitle {
  color: #232F55;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0 0 0;
}

#addTitleAccent {
  color: var(--colorAccent);
}

#addDesc {
  font-size: 1rem;
  margin: 10px 0 10px 0;
  color: #8D8D8D;
}

.badgeLink {
  display: inline-block;
}

.badgeImg {
  max-width: 120px;
  height: auto;
  margin: 0 0 0 20px;
}

.qrCode {
  max-width: 75px;
  height: auto;
  margin: 0;
}

#privacy {
  margin: 40px;
  max-width: 500px;
}