#qr-code {
  margin: 0;
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  overflow: visible;
  font-size: var(--font-size-3);
  align-items: center;
}
#qr-code.open {
  display: flex;
}
#qr-code .qr-content {
  width: 75%;
  gap: 30px;
  padding-block: 20px;
}
#qr-code .qr-content,
#qr-code .qr-content .section-one,
#qr-code .qr-content .section-one .other-info,
#qr-code .qr-content .section-three > div {
  display: flex;
  flex-direction: column;
}
#qr-code .qr-content > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#qr-code .qr-content .section-one {
  gap: 20px;
}
#qr-code .qr-content p {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--black);
  text-wrap: nowrap;
}
#qr-code .qr-content .section-one .name img {
  background-color: var(--black);
  padding: 7px;
  border-radius: 50px;
  width: 35px;
}
#qr-code .qr-content .section-one .name {
  font-size: var(--font-size-9);
}
sup {
  font-size: var(--font-size-3);
}
#qr-code .qr-content .section-one .other-info {
  gap: 7px;
}
#qr-code .qr-content button,
#settings .location .location-content .share-button {
  border: 1px solid var(--black);
  width: fit-content;
  padding: 10px 20px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
#qr-code .qr-content .section-two img {
  margin-bottom: 15px;
}
#qr-code .qr-content .section-two img,
#qr-code .qr-content .section-three > img {
  width: 220px;
  height: auto;
}
#qr-code .qr-content .section-three {
  justify-content: flex-start;
  gap: 40px;
  align-items: center;
}
#qr-code .qr-content .section-three > div {
  gap: 20px;
}

#qr-code .qr-content .section-three > div img {
  width: 50px;
  border-radius: 10px;
}
#qr-code .qr-content .section-three > div > p {
  color: var(--gray-7);
}
@media (max-width: 840px) {
  #qr-code .qr-content {
    width: 95%;
    padding-inline: 20px;
  }
}
@media (max-width: 630px) {
  #qr-code .qr-content > div {
    flex-direction: column;
    gap: 30px;
    /* align-items: center; */
  }
  #qr-code .qr-content .section-three {
    justify-content: flex-start;
    gap: 40px;
    align-items: flex-end;
    margin-top: -23.7rem;
  }
  #qr-code .qr-content .section-three > div {
    display: grid;
    grid-template-columns: auto auto;
    padding-inline: 20px;
  }
  #qr-code .qr-content .section-three > div button {
    grid-column: 1 / span 2;
  }
}
@media (max-width: 530px) {
  #qr-code .qr-content .section-two img,
  #qr-code .qr-content .section-three > img {
    width: 80%;
  }
  #qr-code .qr-content .section-three {
    align-items: flex-start;
    margin-top: 0;
  }
  #qr-code .qr-content .section-three > div {
    padding-inline: 0;
  }
}
@media (max-width: 430px) {
  #qr-code .qr-content .section-two img,
  #qr-code .qr-content .section-three > img {
    width: 100%;
  }
  #qr-code .qr-content .section-three {
    align-items: flex-start;
    margin-top: 0;
  }
  #qr-code .qr-content .section-three > div {
    grid-template-columns: auto 1fr;
    width: 100%;
    align-items: center;
  }
  #qr-code .qr-content .section-two,
  #qr-code .qr-content .section-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  #qr-code .qr-content .section-three {
    gap: 20px;
  }
  #qr-code .qr-content .section-three > div button {
    margin: auto;
  }
}
