:root {
  --theme-color: #003dff;
  --theme-color-light: #1449f9;
  --theme-color-dark: #0b42f7;

  --text-color-base: #23b6f0;
  --text-color-secondary: #232388;
  --text-color-tertiary: #32328f;

  /* --cover-background-mask-color: #fff; */
  --cover-background-color: #05289cb5;
  --cover-background-mask-opacity: 0.1;

  --base-font-size: 16px;
  --base-font-weight: normal;
}

::selection {
  background: var(--theme-color-light);
}

body {
  font-size: 100%;
  line-height: 1.5;
  font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Arial,
    sans-serif;
  color: var(--text-color-base);
}

.sidebar-logo {
  display: block;
  width: 8rem;
  vertical-align: bottom;
  line-height: 1.6;
  height: 2.5rem;
  margin: 0 auto;
}

a:not(.model3d-down) {
  transition: all 0.3s linear;
}

.markdown-section a:not(.model3d-down a) {
  text-decoration: none;
  border-bottom: 0.1rem solid var(--theme-color-light);
  transition: all 0.3s ease;
  color: #df2a2a;
}

.markdown-section a:not(.model3d-down a):hover {
  border-color: var(--theme-color);
  color: var(--theme-color-dark);
}

@media (prefers-color-scheme: dark) {
  body {
    color: rgb(255, 255, 255);
  }

  .markdown-section .warn {
    border-color: #fffb00;
    color: #fffb00;
    background: #3e3e29;
  }
  .markdown-section blockquote {
    border-color: #20ff1c;
    color: #00fe2a;
    background: #284a26;
  }
}

@media (prefers-color-scheme: light) {
  body {
    color: black;
  }

  .markdown-section .warn {
    border-color: #fffb00;
    color: #666402;
    background: #ffff005c;
  }
  .markdown-section blockquote {
    border-color: #20ff1c;
    color: #026e00;
    background: #6fd1688a;
  }
}

.cover-main img {
  max-width: 10rem;
  max-height: 10rem;
}

section.cover p {
  line-height: inherit;
}

section.cover .cover-main a {
  font-weight: 600;
}

.markdown-section strong {
  color: #ff6a00;
}

section.cover .cover-main a::before {
  display: none;
}

section.cover .cover-main blockquote {
  font-style: italic;
  color: #027cff;
}

.model3d-down {
  text-align: center;
  justify-content: center;
  align-items: center;

  border-style: solid;
  border-radius: 2rem;
  border-width: 0.1rem;
  box-sizing: border-box;
}
.model3d-down a {
  text-align: center;
  border-style: solid;
  border-radius: 2rem;
  box-sizing: border-box;
  display: flex;
  width: max-content;
  font-size: 1.5rem;
  letter-spacing: 0rem;
  margin: 0.5rem auto;
  padding: 0.3em 1rem;
  text-decoration: none;
  transition: all 0.15s ease;

  background-color: #00fc97;
  border-color: #00fc97a0;
  color: #c80000;
}

.model3d-down a:hover {
  background-color: #00a563d8;
  border-color: #009a5da5;
  color: #740000;
  opacity: 1;
}

section.cover.show div.cover-main > p a:not(:last-child) {
  border-style: solid;
  border-radius: 2rem;
  box-sizing: border-box;
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 0.1rem;
  margin: 0.5rem 1rem;
  padding: 0.75em 2rem;
  text-decoration: none;
  transition: all 0.15s ease;

  border-width: 0.2rem;
  color: #000000;
  border-color: #003dff;
}

section.cover.show div.cover-main > p a:not(:last-child):hover {
  color: #25252580;
  border-color: #003cff91;
  opacity: 1;
}

section.cover.show div.cover-main > p a:last-child {
  border-style: solid;
  border-radius: 2rem;
  box-sizing: border-box;
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 0.1rem;
  margin: 0.5rem 1rem;
  padding: 0.75em 2rem;
  text-decoration: none;
  transition: all 0.15s ease;

  background-color: #003dff;
  border-color: #003dff;
  color: #fff;
}
section.cover.show div.cover-main > p a:last-child:hover {
  background-color: #003cffac;
  border-color: #003cff98;
  color: #fff;
  opacity: 1;
}

.sidebar-nav ul {
  line-height: 1em;
}

.alert p strong {
  color: #00aade;
}

.wy-table-responsive {
  margin-bottom: 24px;
  max-width: 100%;
  overflow: auto;
}
.docutils {
  border: 1px solid #e1e4e5;
}
