@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime&family=Source+Sans+Pro:wght@600&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased; }

.fixed {
  overflow: hidden; }

.desktop-hidden {
  display: none; }

.tablet-visible {
  display: none; }

a {
  text-decoration: none;
  color: #399BFF; }
  a:hover {
    color: #333; }
  a:active {
    color: #399BFF;
    outline: none; }

button {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none; }
  button:focus {
    outline: none; }

.btn-wrap {
  margin: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05); }

.btn {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #fff;
  font-weight: 400;
  background: #000 !important;
  color: #FFF;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  padding: 17px 32px;
  text-decoration: none;
  display: block;
  text-align: center; }
  .btn:hover {
    background: #1e1e1e !important;
    color: #FFF !important; }

svg,
img {
  display: block;
  max-width: 100%;
  height: auto; }

.page {
  background: #EAEDEF;
  height: 100vh;
  color: #000;
  font-size: 14px;
  position: relative; }
  .page__wrapper {
    height: calc(100% - 65px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

@media (max-width: 768px) {
  .page__wrapper {
    display: block;
    height: calc(100% - 124px); } }

.page__header {
  background: #FFF;
  border-bottom: 1px solid #e5e8ea; }
  .page__header .mobile-menu {
    display: none; }
  .page__header__row {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    
  .page__header__row-right {
      display: flex;
      gap: 12px;
      align-items: center;
  }
  .page__header__row-btn {
      display: flex;
      padding: 12px 16px;
      color: #FFFFFF;
      background: #006FE7;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      
      font-weight: 600;
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0px;
      vertical-align: middle;
  }
  
  .page__header__row-btn:hover {
      color: #FFFFFF;
  }
  .page__header .header__logo {
    width: 140px; }
  .page__header .language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #000;
    font-size: 14px;
    border-radius: 4em; }
    .page__header .language__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 2.35em;
      width: 4em;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #8D9CA8;
      border-right: 1px solid #000; }
      .page__header .language__item:last-child {
        border-right: none; }
      .page__header .language__item--active {
        color: #000;
        font-weight: 600; }

@media (max-width: 768px) {
  .page__header .mobile-menu {
    display: block; }
    .page__header .mobile-menu__button {
      cursor: pointer; }
      .page__header .mobile-menu__button__icon {
        width: 23px;
        height: 24px; }
        .page__header .mobile-menu__button__icon--opened {
          display: none; }
      .page__header .mobile-menu__button--opened .mobile-menu__button__icon {
        display: none; }
        .page__header .mobile-menu__button--opened .mobile-menu__button__icon--opened {
          display: block; } }

.page__sidebar {
  background: #FFF;
  width: 256px;
  border: none;
  overflow: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .page__sidebar .sidebar-menu__item__link {
    display: block;
    padding: 12px 20px;
    color: #8d9ca8;
    line-height: 1.3;
    font-size: 14px;
    text-decoration: none; }
    .page__sidebar .sidebar-menu__item__link:hover, .page__sidebar .sidebar-menu__item__link--active {
      color: black;
      background: #f1f4f8;
      border-right: 2px solid black;
      font-weight: 600; }
  .page__sidebar .sidebar-submenu__item__link {
    display: block;
    padding: 12px;
    padding-left: 40px;
    color: #8d9ca8;
    line-height: 1.3;
    font-size: 14px;
    text-decoration: none; }
    .page__sidebar .sidebar-submenu__item__link:hover, .page__sidebar .sidebar-submenu__item__link--active {
      color: black;
      background: #f1f4f8;
      border-right: 2px solid black;
      font-weight: 600; }

@media (max-width: 768px) {
  .page__sidebar {
    position: fixed;
    width: 100%;
    height: calc(100vh - 122px);
    top: 122px;
    display: none; }
    .page__sidebar--opened {
      display: block; } }

.page__main {
  height: 100%;
  overflow: auto;
  padding: 24px;
  width: 100%; }
  .page__main .page__content {
    background: #fff;
    border-radius: 6px;
    padding: 48px;
    width: 100%; }
    .page__main .page__content__title {
      font-size: 30px;
      line-height: 1.12;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: -0.02em; }
    .page__main .page__content__wrap .page__content__item:first-child {
      border-bottom: 1px solid rgba(0, 0, 0, 0.15);
      padding-top: 24px; }
      
    .page__main .page__content__wrap .page__content__item__body ul {
        margin-left: 2em;
    }
    .page__main .page__content__wrap .page__content__wrap .page__content__item__title {
      font-size: 30px; }
    .page__main .page__content__item {
      padding: 20px 0; }
      .page__main .page__content__item:first-child {
        padding-top: 0; }
      .page__main .page__content__item__title {
        font-size: 30px;
        font-weight: 600;
        padding: 24px 0;
        padding-top: 0;
        line-height: 1.22;
        letter-spacing: -0.02em; }
      .page__main .page__content__item__body {
        line-height: 1.4;
        font-size: 15px; }
        .page__main .page__content__item__body div {
          overflow: auto; }
        .page__main .page__content__item__body b,
        .page__main .page__content__item__body strong {
          font-weight: 600; }
        .page__main .page__content__item__body h2 {
          font-size: 24px;
          margin-bottom: 14px;
          font-weight: 600; }
        .page__main .page__content__item__body h3 {
          font-size: 22px;
          margin-bottom: 14px;
          font-weight: 600; }
        .page__main .page__content__item__body h4 {
          font-size: 20px;
          margin-bottom: 14px;
          font-weight: 600; }
        .page__main .page__content__item__body h5 {
          font-size: 18px;
          margin-bottom: 14px;
          font-weight: 600; }
        .page__main .page__content__item__body h6 {
          font-size: 16px;
          margin-bottom: 14px;
          font-weight: 600; }
        .page__main .page__content__item__body table {
          border-spacing: 0;
          border-collapse: collapse;
          margin-bottom: 14px;
          overflow: auto;
          min-width: 600px; }
          .page__main .page__content__item__body table tr td {
            vertical-align: top;
            border-top: 1px solid #ddd;
            padding: 15px; }
          .page__main .page__content__item__body table tr:nth-of-type(odd) {
            background-color: #f9f9f9; }
        .page__main .page__content__item__body p {
          margin-bottom: 1.5em;
          line-height: 1.4; }
          
        .page__main .page__content__item__body table p {
          margin-bottom: 0;
          line-height: 1.4; }
        .page__main .page__content__item__body code {
          background-color: #2b3a42;
          border-color: #2b3a42;
          color: #fff;
          padding: 4px 8px;
          border-radius: 4px;
          margin-bottom: 14px;
          font-family: 'Courier Prime'; }
          .page__main .page__content__item__body code:last-child {
            margin-bottom: 0; }
        .page__main .page__content__item__body pre {
          background-color: #2b3a42;
          display: block;
          line-height: 19px;
          overflow: auto;
          padding: 8px 16px;
          border-radius: 3px;
          margin-bottom: 1em;
          line-height: 1.5;
          font-family: 'Courier Prime'; }
        .page__main .page__content__item__body pre code {
          color: #a5cee1; }

@media (max-width: 768px) {
  .page__main .page__content {
    padding: 24px; }
    .page__main .page__content__item__title {
      font-size: 24px; }
    .page__main .page__content__wrap .page__content__wrap .page__content__item__title {
      font-size: 24px; } }
