﻿body {
  background-color: var(--ts-background-color);
  overflow: hidden;
}
h2 {
  text-align: left;
  margin: 40px 0;
  font-weight: 400;
}
h3 {
  /* text-align: center; */
  margin: 80px 0 30px;
  font-weight: 400;
}
h4 {
  font-weight: 400;
  margin-top: 40px;
}
.help {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-start;
  line-height: 1.8;
  justify-content: center;
}
.help .scroll-container {
  overflow: auto;
  height: 100%;
}
.help nav.navbar {
  min-width: 140px;
  max-height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  margin: 20px 0 0 5px;
  color: var(--ts-text-color);
  padding: 0 25px;
  left: calc(50% - 600px);
  position: fixed;
}
@media (max-width: 1600px) {
  .help nav.navbar {
    margin: 10px 0 10px 5px;
  }
}
.help nav.navbar a.nav-link {
  color: var(--ts-text-color);
  padding: 8px 0;
}
.help nav.navbar a.nav-link.active {
  color: red;
}
.help .nav-pills {
  margin-left: 15px;
}
.help .nav-pills .nav-link.active {
  background-color: transparent;
  color: red;
}
.help .documentation {
  overflow: auto;
  width: 100%;
  padding: 20px;
  color: var(--ts-panel-text-color);
  height: calc(100% - 50px);
  background-color: var(--ts-panel-background-color);
  box-shadow: 0 0 20px 0 var(--ts-panel-shadow-color);
  /*The following lines override the  theme style because most of the help screenshots look very ugly with the dark theme*/
  color: var(--ts-text-color);
  margin-top: 20px;
  border-radius: 5px;
  width: 800px;
}
.help .documentation .content {
  margin: auto;
  margin-bottom: 170px;
}
.help nav#navbar-main.navbar {
  left: calc(50% - 700px);
}
.help .documentation {
  width: 1000px;
  margin: 20px;
}
.help nav#navbar-example3 {
  left: calc(50% + 580px);
}
@media (max-width: 1600px) {
  .help nav#navbar-main.navbar {
    left: calc(50% - 550px);
  }
  .help .documentation {
    width: 800px;
  }
  .help nav#navbar-example3 {
    left: calc(50% + 480px);
  }
}
@media (max-width: 1350px) {
  .help {
    flex-direction: column;
    justify-content: flex-start;
  }
  .help .documentation {
    width: calc(100% - 350px);
    margin-left: 50px;
  }
  .help nav#navbar-main.navbar {
    position: relative;
    overflow: hidden;
    left: 10px;
  }
  .help nav#navbar-main.navbar .nav {
    flex-direction: row !important;
  }
  .help nav#navbar-main.navbar .nav a.nav-link {
    margin: 0 10px;
  }
  .help nav#navbar-example3 {
    left: calc(100% - 250px);
  }
}
@media (max-width: 500px) {
  .help nav#navbar-main.navbar .nav a.nav-link {
    margin: 0 5px;
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .help .documentation {
    width: calc(100% - 40px);
    margin: 10px 20px;
    height: unset;
  }
  .help nav#navbar-example3 {
    display: none;
  }
}
@media (max-width: 800px) {
  .help article > video,
  .help article > img {
    width: 100%;
    max-width: 100%;
  }
}
nav#navbar-example3 {
  position: fixed;
  border-left: 1px solid #ffd7d7;
  font-size: 14px;
  padding-right: 20px;
  left: calc(50% + 480px);
}
article {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 80px;
  border-bottom: 1px solid #d0d0d0;
}
article.wrap {
  flex-wrap: wrap;
  align-items: center;
}
article > video,
article > img {
  /* box-shadow: 0 0 30px 0 #bcbcbc4d; */
  max-width: 80%;
  align-self: center;
  margin-top: 20px;
}
article > img.series {
  box-shadow: 0 0 23px 0 #dadada;
  margin: 30px 0;
  border-radius: 9px;
  max-width: 80%;
}
article .description {
  padding: 27px 30px 0 0px;
  width: 100%;
}
article .description .right {
  padding-right: 235px;
}
article .description .full-width {
  width: 100%;
}
article .description p {
  padding-bottom: 24px;
}