#app {
  height: 100%;
}

footer {
  width: 100vw;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.page-container {
  height: 100%;
}

.hero-background {
  min-height: 626px;
  padding-bottom: 0;
}

.hero-grid {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.header-container {
  box-sizing: border-box;
  background-color: #000;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 20px;
  width: 100%;
  max-width: 1260px;
  padding: 0 24px;
  display: grid;
}

.header-wrapper {
  grid-column: span 12;
  display: flex;
}

.nav_wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.appButton {
  text-align: end;
  flex-flow: row-reverse;
  flex: none;
  width: 124px;
  display: flex;
}

.nav_links {
  text-align: start;
  flex: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.nav_link {
  cursor: pointer;
  color: #fff;
  margin: 10px;
  padding: 10px;
}

.nav_link:hover {
  color: #fff;
  text-decoration: underline;
}

.logo_link {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo_link img {
  width: 32px;
  height: 32px;
}

.content-main {
  --gutterWidth: 24px;
  --containerWidth: 1100px;
  max-width: var(--containerWidth);
  padding-bottom: 100px;
  padding: 0 var(--gutterWidth);
  margin: 50px auto 96px;
}

.section_should_know, .section_requirements, .section_rights_interests, .section_delete_scope {
  background-color: #212529;
  border-radius: 20px;
  margin-top: 2rem;
  padding: 1.5rem;
}

.section_container {
  word-break: break-all;
  min-height: 30px;
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 16px;
  line-height: 1.875;
}

.btn_delete_container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn_delete_container .delete-account {
  border-radius: 9999px;
  width: 30%;
  height: 51px;
}

.btn-refresh {
  color: #fff;
  background-color: unset;
  border: none;
  padding: 7px 16px;
  font-size: small;
  line-height: 1.675;
}

.btn-refresh:hover {
  color: var(--bs-gray-600);
}

.section_requirements .form-check-input:disabled {
  opacity: 1;
}

.land_link {
  color: #fff;
}

.land_link:hover {
  color: #fff;
  text-decoration: underline;
}

.data_time_stamp {
  text-align: right;
  color: var(--bs-gray-600);
  font-size: small;
}

@media (width <= 600px) {
  html {
    font-size: 12px;
  }
}

@media (width <= 48rem) {
  .nav_links {
    font-size: 14px;
  }

  .header-container {
    padding-left: 12px;
    padding-right: 0;
  }

  .appButton {
    width: 64px;
  }

  .nav_link {
    margin: 2px;
  }

  .section_container {
    padding-left: .5rem;
    font-size: 12px;
    line-height: 1.575;
  }

  .section_should_know, .section_requirements, .section_rights_interests, .section_delete_scope {
    border-radius: 5px;
    margin-top: .5rem;
    padding: .5rem;
  }

  .btn_delete_container .delete-account {
    height: 41px;
  }

  .content-main {
    --gutterWidth: 12px;
  }
}
