* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI";
  color: #ced6dc;
  background-color: #15181f;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

button,
textarea,
input {
  font-family: inherit;
}

button {
  background-color: transparent;
}

.nav {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3.2rem;
  width: 100%;
  background-color: #222832;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  height: 4.8rem;
}
.nav__text {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #969eab;
}
.nav__text--active {
  color: #3a99ac;
}
.nav__text--active::before {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  width: 120%;
  height: 0.3rem;
  background-color: #3eb1c5;
}
.nav__search {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background-color: #28303d;
  border: 1px solid #414d5f;
  border-radius: 2.4rem;
}
.nav__search-icon, .nav__search-text {
  font-size: 1.6rem;
  color: #9ca4ae;
}
.nav__search-key {
  padding: 0.4rem 0.8rem;
  color: #979eab;
  background-color: #222832;
  border: 1px solid #414d5f;
  border-radius: 0.4rem;
}
.nav__versions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem;
  border: 1px solid #414d5f;
  border-radius: 0.4rem;
}
.nav__versions-text, .nav__versions-icon {
  font-size: 1.4rem;
  color: #ced6dd;
}
.nav__versions-text {
  font-weight: 400;
}
.nav__icon {
  width: 3.6rem;
}

.main {
  display: grid;
  grid-template-columns: 1.4fr 3fr 1.1fr;
  margin-top: 6.4rem;
}

.sidebar {
  position: sticky;
  top: 6.8rem;
  left: 0;
  height: calc(100vh - 6.8rem);
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar {
  width: 0.8rem;
}
.sidebar::-webkit-scrollbar-track {
  background-color: #2c2c2c;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #9e9e9f;
  border-radius: 4px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #d1d1d0;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 5.2rem;
}
.sidebar__link {
  font-size: 1.4rem;
  color: #9ca4ae;
}

.guide {
  padding: 2.4rem;
}
.guide__location {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.guide__icon {
  font-size: 1.4rem;
  color: #9ca4ae;
}
.guide__location-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ced7dd;
}
.guide__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 2.4rem;
}
.guide__header {
  margin-bottom: 1.2rem;
  font-size: 4.4rem;
  font-weight: 500;
  color: #ced6dc;
}
.guide__header--small {
  font-size: 3.6rem;
}
.guide__text {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.guide__pre {
  margin-top: 1.6rem;
  width: 100%;
  background-color: #29303c;
  border: 1px solid #56657b;
  border-radius: 0.4rem;
}
.guide__code {
  background-color: transparent !important;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.help {
  padding: 3.2rem 1.2rem;
}
.help__content {
  padding: 1.2rem;
  border-left: 1px solid #48576b;
}
.help__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}
.help__list-el {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.help__list-title {
  font-size: 1.4rem;
  color: #cfd6d1;
}
.help__list-link {
  font-size: 1.4rem;
  color: #9ca4ae;
}
.help__icon {
  font-size: 1.4rem;
  color: #ced6dc;
}
.help__icon--source {
  color: #3fb1c4;
}
.help__text-source {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #3fb1c4;
}

.chat-field {
  position: fixed;
  left: 50%;
  bottom: 2.4rem;
  z-index: 2000;
  display: none;
  transform: translateX(-50%);
  padding: 1.2rem;
  width: 40%;
  height: 6.4rem;
  color: rgba(255, 255, 255, 0.2);
  background-color: transparent;
  border: 1px solid rgba(34, 40, 50, 0.6);
  outline: none;
  resize: none;
}
.chat-field--visible {
  display: block;
}/*# sourceMappingURL=style.css.map */