/*Default CSS*/

/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */

@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap";

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

ul,
ol {
  padding: 0;
  list-style-type: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

:root {
  --color: #474B6B;
  --primary-color: #155EEF;
  --link-color: #2970ff;
  --heading-color: #293056;
  --content-bg: #5C6287;
  --background-color: #ffffff;
  --sidebar-item-color: #101828;
  --color-gray-200: #EAECF0;
  --color-searchbar: #ffffff;
  --color-base-white: #D1D5DB;
  --color-gray-100: #F5F8FF;
  --color-gray-50:#F9FAFB;
  --color-primary-50: #EFF4FF;
  --color-primary-100: #D1E0FF;
  --color-table-bg: #ffffff;
  --btn-primary-hover: #0040C1;

  --sidebar-control-bg: #F3F4F6;
  --sidebar-control-color: #2970FF;

  --main-text-color: #D0D5DD;

  --header-height: 70px;

  --snippet-header-bg: #475467;
  --snippet-header-color: #EFF4FF;
  --snippet-body-bg: #344054;
  --snippet-body-color: #E0E4EB;
  --snippet-body-border-color: #475467;

  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;

  /* Docs typography */
  --docs-content-max-width: 820px;
  --docs-line-height: 1.65;
  --font-size-sm: 13px;
  --font-size-xs: 12px;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  /* Inline code */
  --inline-code-bg: #F3F4F6;
  --inline-code-border: #E5E7EB;

  /* Admonition: tip */
  --admon-tip-bg: #F0FDF4;
  --admon-tip-border: #BBF7D0;
  --admon-tip-accent: #16A34A;
  /* Admonition: warning */
  --admon-warning-bg: #FFFBEB;
  --admon-warning-border: #FDE68A;
  --admon-warning-accent: #D97706;
  /* Admonition: important / caution */
  --admon-important-bg: #FEF2F2;
  --admon-important-border: #FECACA;
  --admon-important-accent: #DC2626;
  /* Admonition: note (existing colors) */
  --admon-note-accent: #2970FF;
}

[data-theme="dark"] {
  --color: #D8DCE4;
  --heading-color: #EAECF0;
  --content-bg: #F2F4F7;
  --background-color: #101828;
  --sidebar-item-color: #FFFFFF;
  --color-gray-200: #1D2939;
  --color-searchbar: #344054;
  --color-base-white: #4d5f7e;
  --color-gray-100: #1D2939;
  --color-gray-50: #1D2939;
  --color-primary-50: #1D2939;
  --color-primary-100: #344054;
  --color-table-bg: #101828;
  color-scheme: dark;

  --link-color: #528BFF;

  --sidebar-control-bg: #1D2939;
  --sidebar-control-color: #fff;

  /* Inline code (dark) */
  --inline-code-bg: #1D2939;
  --inline-code-border: #344054;

  /* Admonition: tip (dark) */
  --admon-tip-bg: #052E16;
  --admon-tip-border: #14532D;
  --admon-tip-accent: #22C55E;
  /* Admonition: warning (dark) */
  --admon-warning-bg: #422006;
  --admon-warning-border: #78350F;
  --admon-warning-accent: #FBBF24;
  /* Admonition: important / caution (dark) */
  --admon-important-bg: #450A0A;
  --admon-important-border: #7F1D1D;
  --admon-important-accent: #F87171;
  /* Admonition: note (dark) */
  --admon-note-accent: #528BFF;
}

html {
  scroll-padding-top: 60px;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: var(--docs-line-height);
  color: var(--color);
  background-color: var(--background-color) !important;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

ul[class],
ol[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

img[align=center] {
  margin: 0 auto;
}

button {
  cursor: pointer;
}

input,
button,
textarea,
select {
  font: inherit;
}
a {
  color: var(--link-color);
  word-break: break-word;
  transition: color 0.15s;
}
a:not(.btn):hover {
  color: var(--link-color)!important;
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
  border-radius: 2px;
}
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}
h1,
h3,
h4 {
  font-weight: 500;
}
h2,
h3,
h4 {
  color: var(--heading-color);
}
h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}
h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 24px;
  line-height: 1.3;
}
h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

strong {
  font-weight: 600;
}

.header {
  padding: 16px 0;
  background: var(--background-color);
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06); */
  border-bottom: solid 1px var(--color-gray-200);
}
.header.sticky{
  position: fixed;
  width: 100vw;
  z-index: 2;
}
@media (min-width: 1024px) {
  .header-logo {
    width: 300px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
  }
}
.header-wrapper .logo {
  max-width: 215px;
  width: 60%;
  padding-left: 24px;
}
.header-wrapper .logo img {
  object-fit: contain;
}
@media (max-width: 767px) {
  .header-wrapper .logo a {
    display: flex;
    justify-content: center;
  }
}
.header-search {
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .header-search {
    max-width: calc(100% - 590px);
    padding-right: 80px;
  }
  .header-wrapper .search-form-wrapper {
    flex-grow: 1;
    width: 800px;
    padding-left: 20px;
    margin: auto;
    transition: 0.2s all;
  }
}
@media (max-width: 1500px) and (min-width: 1024px) {
  .header-search {
    padding: 0 40px;
  }
  .header-wrapper .search-form-wrapper {
    margin: 0 !important;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .header-wrapper .search-form-wrapper{
    width: 100% !important;
  }

  .header-search {
    max-width: 50px !important;
    transition: 0.2s all;
    margin-left: auto;
    margin-right: 24px;
  }

  .DocSearch-Button-Placeholder {
    display: none;
  }

  .DocSearch.DocSearch-Button {
    width: 50px !important;
  }
}
.header-wrapper .search-form {
  position: relative;
}
.header-wrapper .search-form .algolia-autocomplete {
  width: 100%;
}
.header-wrapper .search-form input[type="search"] {
  width: 100%;
  padding: 9px 9px 9px 40px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.header-wrapper .search-form .ds-dropdown-menu {
  max-width: none;
  width: 100%;
}
.header-wrapper .search-form .search-form-icon {
  position: absolute;
  left: 13px;
  top: 9px;
  z-index: 1;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.content-wrapper {
  padding: var(--space-4);
  width: 100%;
}
.content-wrapper #content {
  max-width: var(--docs-content-max-width);
}
/* Landing page needs wider content area for card grid */
.content-wrapper #content:has(.landing-page) {
  max-width: 960px;
}
@media (min-width: 1020px) {
  .content-wrapper {
    padding: 0px 40px 40px 40px;
    transition: 0.2s all;
  }
}

@media(min-width: 1500px) {
  .main-wrapper {
    max-width: 1200px;
  }
  .content-wrapper {
    max-width: 1200px;
  }
}

.content-wrapper .banner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0px var(--space-4) 0px;
  border-radius: 8px;
  max-width: var(--docs-content-max-width);
}
.content-wrapper .banner .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.main {
  position: relative;
  line-height: 1.5;
}

.main p {
  margin-bottom: var(--space-3);
}

.main .sidebar {
  width: calc(100% + 15px);
  flex-shrink: 0;
  margin-right: 40px;
  position: sticky;
  top: 0;
  margin-left: -15px;
  padding: 24px 0 24px 16px;
}

.main .sidebar .icon-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 6px;
  cursor: pointer;
}

.main .sidebar .icon-title .left-part{
  display: flex;
  align-items: center;
  order: 2;
  flex-grow: 1;
}

.main .sidebar .icon-title .chevron,
.main .sidebar .icon-title.bd-link-active-wrap .chevron.rotated {
  transform: rotate(180deg);
}

.main .sidebar .icon-title.bd-link-active-wrap .bd-toc-link {
  /* color: var(--link-color); */
}

.main .sidebar .open .icon-title .chevron,
.main .sidebar .open .icon-title.bd-link-active-wrap .chevron{
  transform: rotate(0);
  transition-duration: .25s;
  transform-origin: center;
}

.main .sidebar .bd-link-active-wrap  .chevron path {
  fill: #D1D5DB;
}

.main .sidebar .bd-link-active-wrap svg path {
  fill: var(--link-color);
}

.main .sidebar .icon-title svg {
  width: 16px;
  order: 1;
}
.main .sidebar-nav {
  height: 100vh;
}
.main .sidebar-nav,
.main .right-side-menu {
  overflow-y: scroll;
  padding: 0 24px 160px 24px;
}

.main .right-side-menu {
  padding: 10px 0px;
}

.main .right-side-menu .navbar-nav {
  direction: ltr;
}

::-webkit-scrollbar,
*::-webkit-scrollbar, *:hover::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  color: var(--color-gray-200);
  background-color: transparent !important;
}

::-webkit-scrollbar-track *::-webkit-scrollbar-track {
  background-color: transparent !important;
  border: none;
}

::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-200);
  width: 6px;
  border-radius: 32px;
  border: none;
}

*,
*:hover,
*:active,
*:focus {
  scrollbar-track-color:  transparent !important;
  scrollbar-color: var(--color-gray-200) transparent !important;
  scrollbar-width: thin !important;
}

.main .sidebar-nav a.nav-link {
  padding: 5px 10px;
  margin-left: 6px;
  font-size: 13px;
  line-height: 1.4;
  transition: background-color 0.15s, color 0.15s;
}
.main .sidebar-nav a.nav-link:hover {
  color: var(--link-color);
  background-color: var(--color-gray-100);
  border-radius: 6px;
}
.main .sidebar-nav a {
  color: var(--color);
  font-weight: 400;
}

.main .sidebar-nav a.bd-toc-link {
  padding-left: 12px;
  font-weight: 500;
  font-size: 13.5px;
  display: block;
  color: var(--heading-color);
  transition-duration: .25s;
  transition-property: color;
}
.main .sidebar-nav li:hover a.bd-toc-link,
.main .sidebar-nav li.active a.bd-toc-link,
.main .sidebar-nav .open a.bd-toc-link {
  color: var(--color);
}
.sidebar-toggler {
  display: none;
}

.main.sidebar-show .sidebar-wrapper {
  margin-left: 0;
}

.main .article-container {
  display: flex;
  justify-content: space-around;
  width: 100vw;
}

.main.sidebar-show .article-container {
  display: flex;
  width: calc(100vw - 320px);
  margin-left: 320px;
}
.main .sidebar-wrapper {
  position: fixed;
  top: 0;
  padding-top: var(--header-height);
  background-color: var(--background-color);
  border-right: 1.5px solid var(--color-gray-200);
  width: 320px;
  margin-left: -300px;
  flex-shrink: 0;
  transition: margin-left .25s linear, left .25s linear;
}

.main.sidebar-show .sidebar__control>svg {
  transform: rotate(0deg);
}
.sidebar__control {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: -12px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--sidebar-control-color);
  background-color: var(--sidebar-control-bg);
  z-index: 2;
}
.sidebar__control>svg {
  width: 8px;
  height: 12px;
  transform: rotate(180deg);
  transition-duration: .25s;
}

@media (max-width: 1024px) {
  .sidebar__control {
    display: none;
  }

  .sidebar-toggler {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition-duration: .25s;
    margin-left: 24px;
  }

  .sidebar-toggler.active {
    padding-top: 10px;
  }

  .sidebar-wrapper {
    margin-left: 0;
    width: 100vw !important;
    left: -101vw !important;
    z-index: 1;
    transition: .2s all;
  }

  .sidebar-full-width-show .sidebar-wrapper {
    left: 0 !important;
    margin-left: 0 !important;
  }

  .header-logo {
    display: none;
  }

  .content-wrapper {
    width: 100vw !important;
  }

  .main .article-container {
    display: flex;
    justify-content: space-around;
    width: 100% !important;
    margin-left: 0 !important;
  }
}

pre.pygments .tok-o {
  color: #84ADFF;
}

/* Inline code styling */
.main #content code:not(pre code) {
  background-color: var(--inline-code-bg);
  border: 1px solid var(--inline-code-border);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.88em;
  font-family: var(--font-mono);
  color: var(--color);
  word-break: break-word;
}
.main p code {
  color: inherit;
  font-size: inherit;
}

.main .table-wrap {
  border-radius: 12px;
  border: 1px solid var(--color-gray-200);
  background: linear-gradient(180deg, var(--color-gray-50), transparent);
  margin-bottom: var(--space-4);
  overflow-x: auto;
}
.main .table-wrap .tableblock tbody {
  border-radius: 9px;
}
.main .table-wrap .tableblock tbody:is(:nth-child(2)) tr:first-child td:first-child {
  border-top-left-radius: 12px;
}
.main .table-wrap .tableblock tbody:is(:nth-child(2)) tr:first-child td:last-child {
  border-top-right-radius: 12px;
}
.main .table-wrap .tableblock tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.main .table-wrap .tableblock tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}
.main .table-wrap table tbody {
  background: var(--color-table-bg);
  border: none;
}

.main table, .main table td,.main table th {
  padding: 14px 16px;
  font-weight: 500;
  font-size: 14px;
}
.main table th {
  background-color: var(--color-gray-50);
  font-weight: 600;
  color: var(--heading-color);
  font-size: 13px;
  text-transform: none;
}
.main table td:not(:first-child),.main table th:not(:first-child) {
  border-left: 1px solid var(--color-gray-200);
  font-size: 14px;
  line-height: 1.5;
}
.main table td {
  font-weight: 400 !important;
  color: var(--color);
  vertical-align: top;
}
.main table, .main .admonitionblock table tr, .main table tr:not(:first-child):is(:last-child) {
  border-bottom: none !important;
}
.main table,.main table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-200);
}

.main table,.main table thead tr:first-child {
  border-bottom: 1px solid var(--color-gray-200);
}

.main .note table,.main .note table td,.main .note table th {
  border: none;
}

.main .note .icon {
  width: 20px;
  height: 20px;
  display: flex;
}

.main .note .icon.info-icon {
  height: 100%;
  width: 100%;
}

.main .note .icon .fa.icon-note {
  display: none;
}

.main .note .content {
  font-weight: 400;
  font-size: 14px;
  color: var(--color);
  padding-left: 12px;
}

.main .note .content strong:is(:first-child) {
  display: block;
  height: 21px;
  color: var(--heading-color);
}

.main table td.icon svg{
  height: auto;
}

.main table td.icon .title {
  display: none;
}

.main table {
  width: 100%;
  border-collapse: collapse;
}
/* tr td:first-child.tableblock p {
  background-color: var(--color-gray-100);
  border-radius: 8px;
  padding: 4px 10px 4px 10px;
} */
.main .tableblock p {
  display: inline-block;
  margin-bottom: 0px !important;
  font-size: 14px;
  font-weight: 400;
}
.main .tableblock thead tr {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 12px 24px 12px 24px;
}
.main table .title {
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 5px;
}

.main .sidebar-nav > ul li ul {
  display: none;
  margin-left: 12px;
  padding-bottom: 4px;
  font-size: 13px;
  border-left: 1px solid var(--color-gray-200);
}

.main .sidebar-nav > ul li ul.active-list {
  display: block;
}

.main .sidebar-nav > ul li ul li a {
  display: block;
  position: relative;
  padding-left: 14px;
  font-size: 13px;
}

.main .sidebar-nav .list-item-active a {
  color: var(--link-color);
  margin-bottom: 2px;
  background-color: var(--color-gray-100);
  border-radius: 6px;
  font-weight: 500;
}

.main .sidebar-nav > .navbar-nav  > li {
  margin-bottom: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-gray-200);
}
.main .sidebar-nav > .navbar-nav > li:last-child {
  border-bottom: none;
}

.main .right-side-menu {
  position: fixed;
  top: 126px;
  height: calc(100vh - 120px);
  width: 300px;
}

@media (max-width: 1200px) {
  .main .right-side-menu, .bd-links-wrapper {
    display: none;
  }
  .main .article-container .center-content  {
    display: block !important;
  }
}

.main .right-side-menu > .navbar-nav {
  position: relative;
}

.bd-links-wrapper {
  flex-shrink: 0;
}
.right-side-menu ul ul {
  padding-left: 16px;
}
ul.nav.navbar-nav {
  padding-left: 0px !important;
}

@media (min-width: 1200px) {
  .main-wrapper {
    max-width: calc(100% - 320px);;
  }
  .bd-links-wrapper {
    width: 300px;
    margin-left: auto;
  }
}

.main-wrapper {
  margin-top: var(--header-height);
}

.main .right-side-menu > .navbar-nav:before {
  content: "On this page";
  display: block;
  margin-bottom: var(--space-4);
  font-weight: 500;
  font-size: var(--font-size-xs);
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--heading-color);
}

.main .right-side-menu > ul > li > a {
  font-size: var(--font-size-sm);
  font-weight: 400;
  margin-bottom: 10px;
  padding: 0;
}

.main .right-side-menu .nav-link {
  padding-left: 10px !important;
  border-left: 2px solid transparent;
  color: var(--color) !important;
  line-height: 20px;
  font-size: var(--font-size-sm);
  font-weight: 400;
  transition: color 0.15s, border-color 0.15s;
}

.main .right-side-menu ul ul li .nav-link {
  padding-left: 25px !important;
  line-height: 18px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.main .right-side-menu .nav-link:hover {
  border-left: solid 2px transparent !important;
  color: var(--link-color)!important;
}


.main .right-side-menu .nav-link.active{
  padding-left: 10px;
  border-left: solid 2px var(--link-color) !important;
  color: var(--link-color)!important;
  font-weight: 500 !important;
}

.main .right-side-menu .navbar-nav .navbar-nav .nav-link.active{
  padding-left: 10px;
  border-left: solid 2px transparent !important;
  color: var(--link-color)!important;
  border-left: solid 2px var(--link-color) !important;
  font-weight: 500;
}

.main .right-side-menu .navbar-nav {
  display: block;
}
.main nav[data-toggle=toc] .nav > li > a {
  padding-left: 0;
  transition-property: color;
  transition-duration: .25s;
}
.main nav[data-toggle=toc] .nav > li > a:focus,
.main nav[data-toggle=toc] .nav > li > a:hover {
  color: var(--link-color)!important;
}
.main nav[data-toggle=toc] .nav .nav > li > a:focus,
.main nav[data-toggle=toc] .nav .nav > li > a:hover,
.main nav[data-toggle=toc] .nav .nav > li > .active,
.main nav[data-toggle=toc] .nav .nav > li > .active:focus,
.main nav[data-toggle=toc] .nav .nav > li > .active:hover {
  padding-left: 0;
}
.main nav[data-toggle=toc] .nav-link.active:hover {
  padding-left: 0;
}
.main img {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 24px;
  margin-top: 10px;
  display: inline;
}
.main .note img {
  box-shadow: none;
  border-radius: 0;
  min-width: 40px;
  width: 40px;
  margin-bottom: 10px;
}
.main .imageblock img {
  height: auto;
}
.main p span.image {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  height: 16px;
  width: 20px;
  margin-left: 4px;
  margin-right: 4px;
}
.main p span.image img {
  height: 100%;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: none;
  object-fit: cover;
}
.main .listingblock {
  color-scheme: dark;
}
.main .listingblock .content pre {
  color: white !important;
}
.main .listingblock, .literalblock > .content pre {
  padding: 14px 18px;
  background: var(--snippet-body-bg) !important;
  border: 1px solid var(--snippet-body-border-color);
  border-radius: 12px;
  margin-bottom: var(--space-4);
  font-size: 14px;
  font-weight: 400;
  color: white !important;
}
pre.pygments {
  background: var(--snippet-body-bg) !important;
  margin-bottom: 0;
  color-scheme: dark;
  overflow-x: auto;
}
pre.pygments .table-wrap, pre.pygments tbody {
  background: transparent !important;
  border: none !important;
}
pre.pygments table td:not(:first-child) {
  border-left: 1px solid #374a63 !important;
}
.main .listingblock  .tok-nt {
  color: #29A9C9 !important
}
.main .listingblock .tok-s, pre.pygments .tok-s1, pre.pygments .tok-s2,
pre.pygments .tok-ss {
  color: #FDA29B !important;
}
.main .listingblock .tok-p {
  color: var(--snippet-body-color) !important
}

.main ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  color: var(--link-color);
  margin-left: 20px;
  margin-bottom: var(--space-3);
}
.main ol > li {
  position: relative;
  counter-increment: my-awesome-counter;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.main ol.arabic > li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  top: -1px;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #E5E7EB;
  color: var(--color);
  background-color: var(--color-primary-50);
  font-weight: 400;
  font-size: 12px;
}
.main ol > li::before {
}

.main ol.arabic:first-child p {
  color: var(--color);
  margin-left: 10px;
  font-weight: 400;
}

.main .content-wrapper ul{
  color: var(--color);
  list-style: disc;
  margin-left: 20px;
  margin-bottom: var(--space-3);
}
.main .content-wrapper ul > li {
  margin-bottom: var(--space-1);
}
.main .content-wrapper ul > li ul {
  margin-left: 0;
  list-style-type: none;
  margin-top: var(--space-1);
}

/* @media (max-width: 1200px) {
  .main .article-container {
    margin-left: 80px;
  width: calc(100vw - 320px);
  }
} */

.main .article-container .center-content {
  display:flex;
  justify-content: space-between;
  transition-duration: .25s;
  max-width: 100%;
}
.main .content-wrapper ul.nav-tabs{
  list-style: none;
  border-bottom: none !important;
  margin-left: 10px !important;
  margin-bottom: -1px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
  color: var(--heading-color);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
  border-color: transparent;
  background-color: transparent;
  border-bottom: 2.5px solid;
  color: var(--link-color);
}
.main ol ol {
  margin-left: 30px;
}
.main ol.loweralpha[type=a] > li {
  list-style-type: lower-alpha;
}
.main ol.lowerroman[type=i] > li {
  list-style-type: lower-roman;
}
.main ol li::marker {
  color: #6B7280;
}

.main h2 {
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
  padding-top: 0;
}
.main h3 {
  margin-bottom: var(--space-3);
  margin-top: var(--space-5);
  padding-top: 0;
}
.main h4 {
  margin-bottom: var(--space-3);
  margin-top: var(--space-4);
  padding-top: 0;
}
/* Remove top margin from first heading after banner */
.main #content > .sect1:first-child > h2 {
  margin-top: 0;
}
/* Section separators between major sections */
.main #content > .sect1 + .sect1 {
  padding-top: var(--space-6);
}

.content-wrapper h2 a, .content-wrapper h3 a, .content-wrapper h4 a {
  opacity: 0;
  margin-left: 5px;
  transition: opacity 0.15s ease;
}
.content-wrapper h2 a, .content-wrapper h3 a, .content-wrapper h4 a svg{
  fill: var(--color);
}
.content-wrapper h4 a svg {
  height: 14px;
  width: auto;
}

.content-wrapper h2:hover a, .content-wrapper h3:hover a, .content-wrapper h4:hover a {
  opacity: 1;
}

.breadcrumbs-wrapper {
  margin-bottom: 24px;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
}
.breadcrumbs-list li {
  display: flex;
  align-items: center;
}
.breadcrumbs-list li:not(:last-of-type):after {
  content: '/';
  margin-left: 6px;
  margin-right: 6px;
}
.breadcrumbs-list a {
  display: flex;
  align-items: center;
  letter-spacing: -0.025em;
  color: var(--color);
}
.breadcrumbs-list a svg {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.note table code {
  color: var(--color);
}

.banner h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.banner .absolute-figure {
  position: absolute;
}

.banner .absolute-figure.abstract-figure {
  right: 0;
}

.banner .absolute-figure.circle2 {
  right: 30%;
  top: 10%;
}

.banner .absolute-figure.circle3 {
  right: 15%;
  top: 10%;
}

.banner .absolute-figure.circle4 {
  left: 5%;
  top: 10%;
}

.banner .absolute-figure.circle5 {
  left: 30%;
}

.banner .absolute-figure.circle6 {
  left: 6%;
  bottom: 0;
}

.banner .absolute-figure.circle7 {
  left: 35%;
  bottom: 15%;
}

.banner .absolute-figure.circle8 {
  left: 55%;
  bottom: 0;
}

.banner .absolute-figure.circle9 {
  bottom: 0;
  right: 0;
}

.doclink {
  position: fixed;
  bottom: 0;
  padding: 0 15px 10px;
  background-color: var(--background-color);
  z-index: 1000;
  font-size: 12px;
}

.btn-primary {
  background-color: var(--link-color);
  border-color: var(--link-color);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
}

.card {
  height: 100%;
  background-color: var(--background-color);
  border-color: var(--color-gray-200);
  border-radius: 8px;
}
.card-wrapper .card-text {
  min-height: 80px;
  margin-bottom: 16px;
}

.card-wrapper .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0.25rem;
}

/* Card-group layout inside content area (e.g. AWS page) */
.content-wrapper .card-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.content-wrapper .card-group > .card {
  flex: 1 1 240px;
  max-width: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
}
.content-wrapper .card-group > .card + .card {
  border-left: 1px solid var(--color-gray-200);
}
.content-wrapper .card-group .card-body {
  padding: var(--space-3);
}
.content-wrapper .card-group .card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.content-wrapper .card-group .btn {
  font-size: 13px;
  padding: 6px 14px;
}

pre code {
  color: var(--snippet-body-color);
}

pre.pygments span {
  font-weight: 400 !important;
  font-size: 13px;
  line-height: 21px;
  color: var(--snippet-body-color);
}
pre.pygments .tok-kd, pre.pygments .tok-kt, pre.pygments .tok-kc,
pre.pygments .tok-k, pre.pygments .tok-c1, .main .listingblock .tok-nt,
pre.pygments .tok-nv, pre.pygments .tok-nb, pre.pygments .tok-nn,
pre.pygments .tok-mf, pre.pygments .tok-cp, pre.pygments .tok-mi {
  color: #84ADFF !important;
}
pre.pygments .tok-n {
  color: #D0D5DD !important;
}
pre.pygments .tok-mi, pre.pygments .tok-cp, pre.pygments .tok-m, pre.pygments .tok-mf {
  color: #9B8AFB !important;
}
pre.pygments .tok-nf, pre.pygments .tok-na, pre.pygments .tok-kn,
pre.pygments .tok-no, pre.pygments .tok-kp, pre.pygments .tok-cm, pre.pygments .tok-nc,
pre.pygments .tok-ch, pre.pygments .tok-nd {
  color: #6CE9A6 !important;
}

pre.pygments .tok-se {
  color: #FDA29B !important;
}

pre.pygments [data-lang="bash"] .tok-s2,
pre.pygments [data-lang="bash"] .tok-s1 {
  color: #FACC61 !important;
}

@media screen and (max-width: 1520px) {
  .card-wrapper .card-text {
    min-height: 110px;
  }
}

.DocSearch-Modal, .DocSearch-Hit-source, .DocSearch-Hit a, .DocSearch-Footer {
  background-color: var(--background-color);
}

.DocSearch-Hit a, .DocSearch-Footer, .DocSearch-Modal {
  box-shadow: var(--color);
}

 .DocSearch-Form {
  background-color: var(--background-color);
}

.DocSearch-Form .DocSearch-Input {
  color: var(--color);
}

.DocSearch.DocSearch-Button {
    margin-left: 0;
    width: 100%;
    height: 38px;
    padding: 0 15px;
    background-color: var(--color-searchbar);
    border: 1px solid var(--color-base-white);
    box-shadow: 0 1px 2px #1018280D;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.search-form-wrapper .DocSearch-Button-Keys {
  display: none;
}
.DocSearch-Hit-content-wrapper {
  overflow-x: inherit !important;
}
.search-form-wrapper .DocSearch-Button .DocSearch-Search-Icon {
  color: #9CA3AF;
  width: 20px;
  height: 20px;
}
.search-form-wrapper .DocSearch-Button-Placeholder {
  padding-left: 10px;
}
.oneline_with_image img {
    display: inline-block;
    height: 30px;
    margin: 0 10px;
}

.warning table td, .warning table,
.important table td, .important table {
  border: none;
}
.copy-icon-container {
  display: flex;
  align-items: center;
}
.copy-icon-container span {
  position: relative;
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 10px;
  background-color: var(--color-base-white);
  color: var(--color);
  bottom: 40px;
  left: 40px;
}
.copy-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  margin: -14px -18px 10px;
  padding: 0 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: var(--snippet-header-bg);
  color: var(--snippet-header-color) !important;
}
.copy-icon svg {
  cursor: pointer;
  color: var(--snippet-header-color) !important;
}
.copy-icon p {
  margin-bottom: 0;
  color: var(--snippet-header-color) !important;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.icon-tip {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 502 502' xml:space='preserve'%3E%3Cpath d='M230.523 78.722c-35.583-.342-69.221 13.48-94.756 38.802-25.528 25.316-39.587 58.839-39.587 94.396 0 34.708 13.278 67.567 37.387 92.524 24 24.844 37.216 57.409 37.216 91.697v70.281c0 5.523 4.477 10 10 10h12.756C197.871 491.185 211.53 502 227.676 502s29.805-10.815 34.138-25.578h16.166c5.523 0 10-4.477 10-10v-70.275c0-34.627 12.99-66.961 36.576-91.044 24.522-25.04 38.027-58.133 38.027-93.185 0-35.38-13.723-68.697-38.64-93.812-24.902-25.1-58.079-39.086-93.42-39.384zM227.676 482c-4.787 0-9.076-2.17-11.936-5.578h23.872c-2.86 3.408-7.149 5.578-11.936 5.578zm40.304-25.578h-77.197v-37.125h77.197v37.125zm42.287-165.313c-27.269 27.844-42.287 65.148-42.287 105.039v3.15h-77.197v-3.156c0-39.5-15.211-77-42.832-105.593-20.488-21.208-31.771-49.133-31.771-78.629 0-30.183 11.958-58.663 33.67-80.194 21.72-21.538 50.338-33.226 80.505-33.005 61.882.521 112.228 51.301 112.228 113.197 0 29.789-11.477 57.912-32.316 79.191zM229.381 55.584c5.523 0 10-4.477 10-10V10c0-5.523-4.477-10-10-10s-10 4.477-10 10v35.584c0 5.523 4.477 10 10 10zM85.246 29.896a9.988 9.988 0 0 0 8.099 4.123 9.96 9.96 0 0 0 5.87-1.91c4.468-3.247 5.458-9.5 2.212-13.968l-7.108-9.783C91.073 3.89 84.82 2.9 80.351 6.146c-4.468 3.247-5.458 9.5-2.212 13.968l7.107 9.782zM124.729 84.239a9.988 9.988 0 0 0 8.099 4.123 9.96 9.96 0 0 0 5.87-1.91c4.468-3.246 5.458-9.5 2.212-13.968l-19.113-26.308c-3.246-4.468-9.499-5.459-13.968-2.212-4.468 3.246-5.458 9.5-2.212 13.968l19.112 26.307zM37.031 160.15l33.843 10.996a10.01 10.01 0 0 0 3.092.492c4.215 0 8.136-2.687 9.509-6.913 1.707-5.253-1.168-10.894-6.42-12.601l-33.843-10.996c-5.251-1.705-10.894 1.168-12.601 6.42-1.707 5.254 1.167 10.895 6.42 12.602zM84.808 260.51c-1.707-5.253-7.346-8.126-12.601-6.42l-33.843 10.996c-5.252 1.707-8.127 7.348-6.42 12.601 1.373 4.226 5.293 6.913 9.509 6.913a10.01 10.01 0 0 0 3.092-.492l33.843-10.996c5.252-1.708 8.126-7.349 6.42-12.602zM102.626 391.668c-4.467-3.246-10.721-2.255-13.968 2.212l-8.903 12.253c-3.246 4.468-2.256 10.722 2.212 13.968a9.952 9.952 0 0 0 5.87 1.91 9.99 9.99 0 0 0 8.099-4.123l8.903-12.253c3.246-4.467 2.256-10.72-2.213-13.967z'/%3E%3Cpath d='M134.544 347.736c-4.468-3.246-10.722-2.255-13.968 2.212l-8.845 12.175c-3.246 4.468-2.255 10.722 2.212 13.968a9.952 9.952 0 0 0 5.87 1.91 9.99 9.99 0 0 0 8.099-4.123l8.845-12.175c3.246-4.467 2.255-10.721-2.213-13.967zM338.347 336.895c-3.246-4.468-9.499-5.459-13.968-2.212-4.468 3.247-5.458 9.5-2.212 13.968l20.916 28.789a9.988 9.988 0 0 0 8.099 4.123 9.96 9.96 0 0 0 5.87-1.91c4.468-3.247 5.458-9.5 2.212-13.968l-20.917-28.79zM426.045 260.984l-33.843-10.997c-5.252-1.705-10.894 1.168-12.601 6.42-1.707 5.252 1.168 10.894 6.42 12.601l33.843 10.997a10.01 10.01 0 0 0 3.092.492c4.215 0 8.136-2.687 9.509-6.913 1.707-5.251-1.167-10.893-6.42-12.6zM471.39 130.367c-1.706-5.252-7.347-8.127-12.601-6.42l-14.678 4.769c-5.252 1.707-8.127 7.348-6.42 12.601 1.373 4.226 5.293 6.913 9.509 6.913a10.01 10.01 0 0 0 3.092-.492l14.678-4.769c5.252-1.708 8.126-7.349 6.42-12.602zM387.777 167.536a10.01 10.01 0 0 0 3.092-.492l25.994-8.446c5.252-1.707 8.127-7.348 6.42-12.601-1.707-5.252-7.347-8.127-12.601-6.42l-25.994 8.446c-5.252 1.707-8.127 7.348-6.42 12.601 1.374 4.225 5.294 6.912 9.509 6.912zM320.89 83.916a9.952 9.952 0 0 0 5.87 1.91 9.99 9.99 0 0 0 8.099-4.123l20.916-28.789c3.246-4.468 2.255-10.722-2.212-13.968-4.469-3.246-10.722-2.255-13.968 2.212l-20.916 28.789c-3.248 4.469-2.257 10.722 2.211 13.969zM288.349 135.549c-11.289-8.76-24.609-14.981-38.521-17.992-5.395-1.169-10.721 2.26-11.889 7.659-1.168 5.398 2.261 10.721 7.659 11.889 11.007 2.382 21.55 7.308 30.491 14.245a9.954 9.954 0 0 0 6.124 2.1 9.981 9.981 0 0 0 7.907-3.87c3.385-4.363 2.592-10.645-1.771-14.031zM202.914 119.066c-41.096 11.729-69.797 49.799-69.797 92.579 0 5.523 4.477 10 10 10s10-4.477 10-10c0-33.895 22.735-64.056 55.287-73.346 5.311-1.516 8.387-7.05 6.872-12.361-1.518-5.31-7.052-8.388-12.362-6.872z'/%3E%3C/svg%3E");
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
}
.main table td.icon {
  text-align: center;
}
.icon-warning {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='554.2' height='554.199' xml:space='preserve' fill='%23E44C3A'%3E%3Cpath d='M538.5 386.199 356.5 70.8a91.803 91.803 0 0 0-79.501-45.9c-32.8 0-63.1 17.5-79.5 45.9L12.3 391.6a91.793 91.793 0 0 0 0 91.8c16.4 28.4 46.7 45.9 79.5 45.9H462.4c50.7 0 91.8-41.101 91.8-91.8 0-19-5.8-36.7-15.7-51.301zm-222.2 30.7c0 21.7-16.7 38.3-39.2 38.3s-39.2-16.6-39.2-38.3V416c0-21.601 16.7-38.301 39.2-38.301S316.3 394.3 316.3 416v.899zm.9-258.199-19.4 169.4c-1.3 12.2-9.4 19.8-20.7 19.8s-19.4-7.7-20.7-19.8L237 158.6c-1.3-13.1 5.801-23 18-23h44.1c12.2.1 19.4 10 18.1 23.1z'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 39px;
  background-size: 100%;
}
.icon-important {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg transform='scale(.521)'%3E%3Ccircle cx='96' cy='96' r='74' fill='%23E44C3A'/%3E%3Cpath d='M86 48h20l-4 72H90z' fill='%23fff'/%3E%3Ccircle cx='96' cy='140' r='10' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
  width: 40px;
  height: 40px;
  background-size: 100%;
}
.main .admonitionblock {
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  border-left: 3px solid var(--admon-note-accent);
  padding: var(--space-3);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  border-radius: 12px;
}
/* Admonition type differentiation */
.main .admonitionblock.tip {
  background-color: var(--admon-tip-bg);
  border-color: var(--admon-tip-border);
  border-left: 3px solid var(--admon-tip-accent);
}
.main .admonitionblock.warning,
.main .admonitionblock.caution {
  background-color: var(--admon-warning-bg);
  border-color: var(--admon-warning-border);
  border-left: 3px solid var(--admon-warning-accent);
}
.main .admonitionblock.important {
  background-color: var(--admon-important-bg);
  border-color: var(--admon-important-border);
  border-left: 3px solid var(--admon-important-accent);
}
.main .admonitionblock table {
  margin-bottom: 0 !important;
}
.main .admonitionblock.tip table,
.main .admonitionblock.tip table td {
  border: none;
}
.main .admonitionblock table td {
  padding: 0;
}
.main .admonitionblock .table-wrap table tbody {
  background: transparent !important;
}
.main .admonitionblock tr {
  border: no;
}
.main .admonitionblock .table-wrap {
  all: unset;
}
.main .table-wrap .content {
  line-height: 1.5;
  width: 100%;
}
/*Light box start*/

.lightbox-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: transparent;
  padding: 20px;
  transform: translate(-50%, -50%);
  z-index: 100;
  border-radius: 8px;
  max-width: 95vw;
  width: 100%;
  height: 90vh;
}
.lightbox-modal .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.lightbox-modal .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}
@media (max-width: 1023px) {
  .lightbox-modal {
    height: auto;
    max-width: 95vw;
  }
}
#close-ligtbox {
  position: absolute;
  right: 10px;
  top: -45px;
  display: block;
  width: 30px;
  font-size: 28px;
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
}
#close-ligtbox:hover {
  color: #fff;
}
@media (max-width: 1023px) {
  #close-ligtbox {
    right: 0;
    top: -40px;
    width: 24px;
    font-size: 28px;
  }
}
.overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.85);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.paragraph {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.imageblock .content {
  background-color: #ffff;
  border-radius: 16px;
  margin-bottom: 10px;
}
.imageblock img, .paragraph .image img {
  cursor: pointer;
}
/*Light box end*/

.ulist {
  margin-left: 10px;
}
.main ol.arabic:first-child .ulist p,
.ulist ul li p {
  margin-left: 0!important;
}

.ulist li::marker {
  font-size: 20px;
  color: #6d7176;
}
.ulist li ul {
  list-style-type: none;
}
.ulist li ul li {
  position: relative;
  padding-left: 24px;
}
.ulist li ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: #6d7176;
  border-radius: 50%;
}
.right-side-menu ul ul li:not(:last-child) {
  margin-bottom: 8px;
}
.imageblock .title {
  margin-bottom: 24px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 20px;
  margin-top: auto;
  margin-bottom: auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background-color: #D1E0FF;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  background: url(images/toggle/light.svg) no-repeat;
  background-size: 22px;
  background-position-y: center;
  background-position-x: center;
  height: 30px;
  width: 30px;
  bottom: 4px;
  border: 1px solid #EAECF0;
  top: -5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--link-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--link-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--link-color);
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  border: 1px solid #344054;
  background: url(images/toggle/dark.svg) no-repeat, var(--background-color);
  background-position-y: center;
  background-position-x: center;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.icon-left {
  rotate: 180deg;
}

.i-arrow {
  width: 16px;
  height: 16px;
  margin-top: auto;
  margin-bottom: auto;
  fill: var(--color);
}

.arrow-icon {
  display: flex;
}

.bottom-nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.bottom-nav-links a {
  text-decoration: none;
}

.bottom-nav-links .bottom-nav-link {
  display: flex;
  height: 90px;
  padding: 16px 24px 16px 24px;
  align-items: center;
  min-width: calc(50% - 16px);
  flex-wrap: wrap;
  border-radius: 12px;
}
@media (max-width: 612px) {
  .bottom-nav-links {
    flex-direction: column;
  }
  .bottom-nav-links .bottom-nav-link {
    width: 100%;
    margin-top: 20px;
  }
}
.bottom-nav-links .bottom-nav-link{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--background-color);
  border-color: var(--color-gray-200);
  transition: 0.2s ease-in-out;
}

.bottom-nav-links .bottom-nav-link:hover {
  border-color: var(--link-color);
}

.bottom-nav-links .bottom-nav-link.prev {
  margin-right: auto;
  align-items: start;
  color: var(--color) !important;
}

.bottom-nav-links .bottom-nav-link.next {
  margin-left: auto;
  align-items: end;
  color: var(--color) !important;
}

.bottom-nav-links .bottom-nav-link.next .next-text{
  margin-right: 6px;
  font-size: 14px;
  font-weight: 500;
}

.bottom-nav-links .bottom-nav-link.prev .prev-text {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
}

.bottom-nav-links .bottom-nav-text {
  color: var(--link-color);
  font-weight: 400;
}

.hamburger {
  fill: var(--color);
  rotate: 0deg;
}

.sidebar-toggler.active .hamburger path:is(:first-child) {
  rotate: 45deg;
  transform-origin: 45% 37%;
  transition: all 0.15s linear;
}

.sidebar-toggler.active .hamburger path:is(:nth-child(2)) {
  fill: transparent !important;
}

.sidebar-toggler.active .hamburger path:is(:nth-child(3)) {
  rotate: -45deg;
  transform-origin: 10% 50%;
}

.sidebar-toggler .hamburger path:is(:first-child) {
  rotate: 0deg;
  transform-origin: 45% 37%;
  transition: all 0.15s linear;
}

.sidebar-toggler .hamburger path:is(:nth-child(2)) {
  fill: var(--color) !important;
}

.sidebar-toggler .hamburger path:is(:nth-child(3)) {
  rotate: 0deg;
  transform-origin: 10% 50%;
  transition: all 0.15s linear;
}

.nav-link.external, .bottom-nav-text.external {
  display: flex !important;
  align-items: center;
}

.nav-link.external::after, .bottom-nav-text.external::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10.5 4.5L10.5 1.5M10.5 1.5H7.49999M10.5 1.5L6 6M5 1.5H3.9C3.05992 1.5 2.63988 1.5 2.31901 1.66349C2.03677 1.8073 1.8073 2.03677 1.66349 2.31901C1.5 2.63988 1.5 3.05992 1.5 3.9V8.1C1.5 8.94008 1.5 9.36012 1.66349 9.68099C1.8073 9.96323 2.03677 10.1927 2.31901 10.3365C2.63988 10.5 3.05992 10.5 3.9 10.5H8.1C8.94008 10.5 9.36012 10.5 9.68099 10.3365C9.96323 10.1927 10.1927 9.96323 10.3365 9.68099C10.5 9.36012 10.5 8.94008 10.5 8.1V7' stroke='%23ACAEBC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  padding-left: 3px;
}
.loader-wrapper {
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
}

#loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid var(--link-color);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  position: fixed;
  top: 50%;
  left: 50%;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

span.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 5px;
  border-radius: 50%;
}

/* Premium badge for sidebar nav */
.badge-premium {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 18px;
  color: #6D28D9;
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  border: 1px solid #C4B5FD;
  border-radius: 4px;
  white-space: nowrap;
  vertical-align: middle;
  text-transform: uppercase;
}
[data-theme="dark"] .badge-premium {
  color: #C4B5FD;
  background: linear-gradient(135deg, #2E1065, #3B1A8E);
  border-color: #5B21B6;
}

/* ========================================
   Landing page
   ======================================== */

.landing-page {
  max-width: 900px;
}

/* Hero */
.landing-hero {
  padding: var(--space-5) 0 var(--space-6);
  border-bottom: 1px solid var(--color-gray-200);
}
.landing-hero-subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--link-color);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.landing-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color);
  max-width: 600px;
  margin-bottom: var(--space-4);
}
.landing-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.landing-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background-color 0.15s, border-color 0.15s;
}
.landing-btn-outline {
  background-color: transparent;
  color: var(--color) !important;
  border: 1px solid var(--color-gray-200);
}
.landing-btn-outline:hover {
  background-color: var(--color-gray-50);
  border-color: var(--color-base-white);
  color: var(--color) !important;
}

/* Section headings */
.landing-section {
  padding: var(--space-6) 0 0;
}
.landing-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

/* Card grid */
.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.landing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }
  .landing-grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .landing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards */
.landing-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  background-color: var(--background-color);
  text-decoration: none !important;
  color: var(--color) !important;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.landing-card:hover {
  border-color: var(--link-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: var(--color) !important;
}
.landing-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--color-primary-50);
  color: var(--link-color);
  margin-bottom: 14px;
}
.landing-card-icon svg {
  width: 20px;
  height: 20px;
}
.landing-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
  line-height: 1.3;
}
.landing-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color);
  margin-bottom: 0;
}

/* Premium variant */
.landing-card-premium {
  border-color: #C4B5FD;
  background: linear-gradient(180deg, var(--background-color) 60%, #FAF5FF);
}
[data-theme="dark"] .landing-card-premium {
  border-color: #5B21B6;
  background: linear-gradient(180deg, var(--background-color) 60%, #1E0A3C);
}
.landing-card-premium:hover {
  border-color: #8B5CF6;
}
.landing-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.landing-card-header .landing-card-title {
  margin-bottom: 0;
}
.landing-card-header .badge-premium {
  margin-left: 0;
}

/* Tutorial links grid */
.landing-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--background-color);
}
@media (max-width: 768px) {
  .landing-links-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .landing-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.landing-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  transition: background-color 0.15s, color 0.15s;
}
.landing-link:hover {
  background-color: var(--color-gray-50);
  color: var(--link-color) !important;
}
.landing-link::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--link-color);
  border-top: 1.5px solid var(--link-color);
  transform: rotate(45deg);
  margin-right: 10px;
  flex-shrink: 0;
}

/* ========================================
   Responsive refinements
   ======================================== */

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
  .content-wrapper {
    padding: var(--space-3) !important;
  }
}

@media (max-width: 1024px) {
  .content-wrapper #content {
    max-width: 100%;
  }
  .content-wrapper .banner {
    max-width: 100%;
  }
}

/* ========================================
   Landing page hero badges
   ======================================== */

.landing-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-4);
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--primary-color);
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  border-radius: 100px;
}

/* ========================================
   Premium notice (content pages)
   ======================================== */

.premium-notice {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-5);
  border: 1px solid #C4B5FD;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--background-color) 60%, #FAF5FF);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.premium-notice-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #7C3AED;
  background: #EDE9FE;
  border-radius: 100px;
  white-space: nowrap;
}

.premium-notice-text {
  color: var(--color);
}

.premium-notice-text a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

.premium-notice-text a:hover {
  text-decoration: underline;
}

[data-theme="dark"] .premium-notice {
  border-color: #5B21B6;
  background: linear-gradient(90deg, var(--background-color) 60%, #1E0A3C);
}

[data-theme="dark"] .premium-notice-badge {
  color: #C4B5FD;
  background: #2E1065;
}

/* ========================================
   Insider Preview notice (content pages)
   ======================================== */

.insider-preview-notice {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  border: 1px solid #F59E0B;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--background-color) 50%, #FFFBEB);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}
.insider-preview-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.insider-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400E;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #FCD34D;
  border-radius: 100px;
  white-space: nowrap;
}
.insider-preview-body {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.insider-preview-text {
  flex: 1;
  color: var(--color);
  min-width: 200px;
}
.insider-preview-text a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}
.insider-preview-text a:hover {
  text-decoration: underline;
}
.insider-preview-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #92400E !important;
  background: linear-gradient(135deg, #FDE68A, #FCD34D);
  border: 1px solid #F59E0B;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s, box-shadow 0.15s;
}
.insider-preview-cta:hover {
  background: linear-gradient(135deg, #FCD34D, #FBBF24);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
  color: #78350F !important;
}

[data-theme="dark"] .insider-preview-notice {
  border-color: #B45309;
  background: linear-gradient(135deg, var(--background-color) 50%, #1C1107);
}
[data-theme="dark"] .insider-preview-badge {
  color: #FDE68A;
  background: linear-gradient(135deg, #451A03, #78350F);
  border-color: #B45309;
}
[data-theme="dark"] .insider-preview-cta {
  color: #FEF3C7 !important;
  background: linear-gradient(135deg, #78350F, #92400E);
  border-color: #B45309;
}
[data-theme="dark"] .insider-preview-cta:hover {
  background: linear-gradient(135deg, #92400E, #B45309);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.4);
  color: #FEF3C7 !important;
}

/* ========================================
   Changelog: Preview Features Section
   ======================================== */

.preview-features-section {
  border: 1px solid #F59E0B;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--background-color) 40%, #FFFBEB);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}
.preview-features-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.preview-features-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}
.preview-features-intro {
  font-size: var(--font-size-sm);
  color: var(--color);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}
.preview-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
@media (max-width: 768px) {
  .preview-features-grid {
    grid-template-columns: 1fr;
  }
}
.preview-feature-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.preview-feature-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}
.preview-feature-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.preview-feature-card strong {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}
.preview-feature-card span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color);
}
.preview-features-footer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(245, 158, 11, 0.25);
}
.preview-features-footer > span {
  flex: 1;
  font-size: var(--font-size-sm);
  color: var(--color);
  min-width: 200px;
}
.preview-features-footer a:not(.insider-preview-cta) {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}
.preview-features-footer a:not(.insider-preview-cta):hover {
  text-decoration: underline;
}

/* Dark mode */
[data-theme="dark"] .preview-features-section {
  border-color: #B45309;
  background: linear-gradient(135deg, var(--background-color) 40%, #1C1107);
}
[data-theme="dark"] .preview-feature-card {
  background: rgba(28, 17, 7, 0.5);
  border-color: rgba(180, 83, 9, 0.25);
}
[data-theme="dark"] .preview-feature-card:hover {
  border-color: rgba(180, 83, 9, 0.5);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.12);
}
[data-theme="dark"] .preview-features-footer {
  border-top-color: rgba(180, 83, 9, 0.3);
}

/* ========================================
   Sidebar: Insider Preview divider & badge
   ======================================== */

.sidebar-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px 6px;
  margin-top: 6px;
  border-top: 1px solid var(--color-gray-200);
}
.sidebar-divider-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B45309;
  white-space: nowrap;
}
.sidebar-divider-label svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
[data-theme="dark"] .sidebar-divider-label {
  color: #FBBF24;
}
[data-theme="dark"] .sidebar-divider {
  border-top-color: var(--color-gray-200);
}

.badge-insider {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 18px;
  color: #92400E;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #FCD34D;
  border-radius: 4px;
  white-space: nowrap;
  vertical-align: middle;
  text-transform: uppercase;
}
[data-theme="dark"] .badge-insider {
  color: #FDE68A;
  background: linear-gradient(135deg, #451A03, #78350F);
  border-color: #B45309;
}

/* Insider links: locked state in sidebar */
.insider-locked {
  opacity: 0.7;
  position: relative;
}
.insider-locked::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B45309' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  flex-shrink: 0;
}
[data-theme="dark"] .insider-locked::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FBBF24' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

/* ========================================
   Insider Preview access gate (modal)
   ======================================== */

.insider-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.insider-gate-modal {
  background: var(--background-color);
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  animation: insiderGateIn 0.3s ease;
}
@keyframes insiderGateIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.insider-gate-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-radius: 14px;
  border: 1px solid #FCD34D;
}
.insider-gate-icon svg {
  width: 28px;
  height: 28px;
  color: #92400E;
}
.insider-gate-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.insider-gate-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color);
  margin-bottom: 28px;
}
.insider-gate-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.insider-gate-input {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color);
  background: var(--background-color);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
}
.insider-gate-input:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.insider-gate-input.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  animation: insiderShake 0.4s ease;
}
@keyframes insiderShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.insider-gate-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: #92400E;
  background: linear-gradient(135deg, #FDE68A, #FCD34D);
  border: 1px solid #F59E0B;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, box-shadow 0.15s;
}
.insider-gate-btn:hover {
  background: linear-gradient(135deg, #FCD34D, #FBBF24);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}
.insider-gate-error {
  font-size: 13px;
  color: #EF4444;
  min-height: 20px;
  margin-bottom: 16px;
}
.insider-gate-back {
  font-size: 13px;
  color: var(--color);
}
.insider-gate-back a {
  color: var(--primary-color);
  text-decoration: none;
}
.insider-gate-back a:hover {
  text-decoration: underline;
}

[data-theme="dark"] .insider-gate-icon {
  background: linear-gradient(135deg, #451A03, #78350F);
  border-color: #B45309;
}
[data-theme="dark"] .insider-gate-icon svg {
  color: #FDE68A;
}
[data-theme="dark"] .insider-gate-btn {
  color: #FEF3C7;
  background: linear-gradient(135deg, #78350F, #92400E);
  border-color: #B45309;
}
[data-theme="dark"] .insider-gate-btn:hover {
  background: linear-gradient(135deg, #92400E, #B45309);
}

/* ========================================
   Prerequisites block
   ======================================== */

.prerequisites {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-left: 3px solid var(--primary-color);
  border-radius: 12px;
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-4);
}

.prerequisites::before {
  content: "Prerequisites";
  display: block;
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--heading-color);
  margin-bottom: var(--space-2);
}

[data-theme="dark"] .prerequisites {
  background: var(--color-gray-100);
}

/* ========================================
   Print styles
   ======================================== */

@media print {
  .header,
  .sidebar-wrapper,
  .bd-links-wrapper,
  .right-side-menu,
  .bottom-nav-links,
  .loader-wrapper,
  .copy-icon,
  .sidebar__control,
  .sidebar-toggler,
  .doclink,
  .lightbox-modal,
  .overlay {
    display: none !important;
  }

  .main .article-container {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .content-wrapper {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .content-wrapper #content {
    max-width: 100%;
  }

  body {
    color: #000;
    background: #fff !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .main .listingblock,
  .literalblock > .content pre {
    border: 1px solid #ccc;
    background: #f5f5f5 !important;
    color: #333 !important;
    color-scheme: light;
  }

  .main .listingblock .content pre {
    color: #333 !important;
  }

  pre.pygments span {
    color: #333 !important;
  }

  .main .admonitionblock {
    border: 1px solid #ccc;
    background: #f9f9f9;
  }

  .main .table-wrap {
    border: 1px solid #ccc;
  }

  .main img {
    max-width: 100%;
  }
}
