body {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body * {
  box-sizing: border-box;
}

.main-body {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  min-height: auto;
  background-color: white;
  column-gap: 2%;
  padding: 0px 0px;
  padding-bottom: auto;
  flex-grow: 1;
  margin: 0px 0px;
}
@media (min-width: 640px) {
  .main-body {
    /* styles */
  }
}
@media (min-width: 768px) {
  .main-body {
    /* styles */
  }
}
@media (min-width: 1024px) {
  .main-body {
    margin: 0px 0.5rem;
  }
}
@media (min-width: 1280px) {
  .main-body {
    margin: 0px 1rem;
  }
}
@media (min-width: 1536px) {
  .main-body {
    margin: 0px 1.5rem;
  }
}

.left-body,
.right-body {
  position: relative;
  padding: 0rem;
  height: auto;
  min-height: fit-content;
  width: 100%;
  max-width: 20%;
  overflow-y: auto;
}

.right-body > h2 {
  font-size: large;
}

.toc-container {
  position: fixed;
  color: #1e293b;
}

.toc-container * {
  color: #1e293b;
}

.right-body li {
  font-size: small;
  transition: all 150ms;
}

.right-body li:hover {
  color: #92400e;
  transition: all 150ms;
}

.toc {
  position: fixed;
}

table {
  width: 100%;
}

.middle-body {
  position: relative;
  background-color: white;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #94a3b8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.17);
  text-align: justify;
  flex-grow: 2;
  font-size: small;
  font-weight: 400;
  line-height: 1.1rem;
}
@media (min-width: 1536px) {
  .middle-body {
    font-size: medium;
    line-height: 1.3rem;
  }
}

.page-header-hbox {
  height: 30px;
  padding-top: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-hline, .page-references-hline, .page-header-hline {
  border: 1px dashed #1e293b;
}

.page-header-hline {
  margin-bottom: 50px;
}

.page-header-right-hbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  display: grid;
  grid-template-columns: auto auto;
}

.badge p {
  max-width: fit-content;
  color: white;
  font-weight: 500;
  text-align: center;
  margin: auto;
}

.badge-left-side, .badge-references {
  padding: 0px 5px;
  width: fit-content;
  background-color: #1e293b;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid #1e293b;
}

.badge-right-side, .badge-right-side-version, .badge-right-side-update {
  padding: 0px 5px;
  width: fit-content;
  background-color: #f97316;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid;
}

.badge-right-side-update {
  background-color: #09bc8a;
  border-color: #09bc8a;
}

.badge-right-side-version {
  background-color: #f97316;
  border-color: #f97316;
}

.update-icon {
  background-color: #1e293b;
  padding: 0px !important;
  border-radius: 5px;
  height: 21px;
  margin-left: 10px;
}

.page-references-hline {
  margin-top: 50px;
}

.badge-references {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.reference-items {
  padding-bottom: 10px;
  padding-right: 25px;
}

.middle-body h1 {
  text-align: center;
}

.middle-body a {
  color: #b45309;
}

.middle-body a:hover {
  color: #92400e;
  text-decoration: underline;
}

.middle-body img {
  padding-left: 2rem;
  padding-top: 0.25rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
  width: 100%;
}

.middle-body ol li::marker {
  font-weight: 600;
}

.middle-body code {
  font-size: medium;
  color: #1e293b;
  font-family: "Inter", monospace;
  font-size: small;
  background-color: #e2e8f0;
  border-radius: 0.375rem;
  margin: 0.1rem;
  padding: 0.1rem;
}

strong {
  font-weight: 600;
}

.middle-body table {
  border-collapse: collapse;
}

.middle-body th {
  text-align: center;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.middle-body th:first-child {
  border-left: none;
}

.middle-body td {
  text-align: center;
  border-bottom: 1px solid;
  border-left: 1px solid;
  padding: 10px;
}

.middle-body td:first-child {
  border-left: none;
  text-align: center;
}

.middle-body td:last-child {
  text-align: center;
}

header {
  background-color: #1e293b;
  height: 7rem;
  max-width: 100vw;
  position: sticky;
  top: 0;
  left: 0;
  padding: 10px 60px;
  z-index: 5;
}

.header-hbox {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr 20%;
}

.header-hbox a {
  height: 90px;
}

.autocomplete-dropdown-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.search-box {
  position: relative;
  color: black;
  font-size: medium;
  font-weight: 500;
  height: 2rem;
  width: 100%;
  border-radius: 0.375rem;
  border-color: #94a3b8;
  border-width: 1px;
  margin-top: 35.75px;
}

.search-box::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.search-box:focus {
  outline: none;
}

.results-box {
  position: absolute;
  color: black;
  font-size: medium;
  width: 100%;
  background-color: white;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: #94a3b8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.17);
  top: 70px;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
}

.results-box ul {
  width: 100%;
  margin: 0px;
  padding: 5px;
  list-style: none;
  overflow-x: hidden;
}

.results-box ul li a {
  padding: 0.35rem 1.75rem;
  display: block;
  width: auto;
  height: 100%;
  border-radius: 0.375rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

.results-box ul a:hover,
.results-box ul a:focus {
  background-color: #ffedd5;
  font-size: medium;
  color: black;
}

footer {
  position: relative;
  min-height: 50px;
  background-color: #1e293b;
  padding: 2rem 2vw;
}

.footer-hbox {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 100vw;
  height: 50px;
}

.left-box {
  display: grid;
  grid-template-rows: auto auto;
}

.left-box p {
  display: flex;
  align-items: center;
  margin: 0px;
}

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

.right-box {
  display: flex;
  justify-content: end;
  align-items: center;
}

.footer-image-right, .footer-image-right-github {
  height: 30px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}

.footer-image-right-github {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  position: absolute;
  list-style: none;
  overflow-y: auto;
  padding-left: 0px;
  color: white;
  width: 100%;
  font-size: small;
}
@media (min-width: 1536px) {
  .nav-menu {
    font-size: medium;
  }
}

.nav-menu * {
  color: #0f172a;
}

.dropdown-container {
  display: flex;
  align-items: center;
}

.first-layer-items {
  width: 100%;
}

.topic-nav-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

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

.subtopic-layer-dropdown-items, .dropdown-content-open, .dropdown-content-closed {
  padding-top: 0;
}

.subtopic-layer-dropdown-items > :first-child, .dropdown-content-open > :first-child, .dropdown-content-closed > :first-child {
  padding-top: 5px;
}

.dropdown-content-closed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-content-open {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 1s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

li a {
  transition: all 150ms;
}

li a:hover {
  color: #fdba74;
  transition: all 150ms;
}

.caret, .caret-open {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1e293b;
  display: inline-block;
  vertical-align: 15%;
  transition: 0.3s;
  transform: rotate(-90deg);
}

.caret-open {
  transform: rotate(0deg);
}

.selected {
  color: #fdba74;
}

.caret-rotate-open {
  transform: rotate(0deg);
}

.caret-rotate-close {
  transform: rotate(-90deg);
}

.show {
  max-height: 1000px;
  transition: max-height 1s ease-in;
}

.hide {
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.next-previous-hbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 80px;
  padding-bottom: 20px;
}

.navigation-button {
  font-size: x-large;
  color: black !important;
  background-color: #fdba74;
  padding: 0.5rem;
  font-size: medium;
  border-radius: 0.375rem;
  border: 1px solid #fdba74;
  transition: all 0.15;
}

.navigation-button:hover {
  cursor: pointer;
  color: black !important;
  background-color: #fb923c;
  border: 1px solid #fb923c;
  transition: all 0.15;
  text-decoration: none !important;
}

.scroll-to-top-button {
  display: flex;
  justify-content: center;
  align-content: center;
  opacity: 0;
  position: fixed;
  bottom: 117px;
  right: 2.2%;
  height: 2.5rem;
  width: 2.5rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: black;
  border: 1px solid #fdba74;
  border-radius: 0.375rem;
  background-color: #fdba74;
  transition: all 0.15s;
  z-index: 1000;
}

.scroll-to-top-button:hover {
  cursor: pointer;
  background-color: #fb923c;
}

.show-scroll-to-top-button {
  opacity: 1;
  transition: all 0.15;
}

/*# sourceMappingURL=styles.css.map */