mark {
  background: rgba(255, 232, 77, 0.5);
}

.side-menu {
  display: none;
  position: fixed;
  background-color: #f6f7f8;
  top: 80px;
  left: 0;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
  z-index: 99;
  box-shadow: 5px 20px 25px 0 rgba(137, 141, 154, 0.2);
}

.side-menu__search {
  position: absolute;
  top: 0;
  height: 58px;
  width: calc(100% - 40px);
  padding-top: 48px;
  padding-left: 24px;
  background-color: #f6f7f8;
  box-shadow: -6px 20px 19px 0 #f6f7f8;
  z-index: 9;
}

.side-menu__input input {
  width: 180px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid #d1d4db;
  background-image: url("../images/search-icon.svg");
  background-repeat: no-repeat;
  background-position: 92% 50%;
  font-size: 16px;
  font-family: Inter, sans-serif;
  padding: 8px 32px 9px 12px
}

.side-menu__input input:focus {
    outline-color: #171a22;
  }

.side-menu__input button {
  display: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  margin-right: 8px;
  background-image: url("../images/close-contact.svg");
}

.side-menu__navigation {
  width: 100%;
  box-sizing: border-box;
  overflow: auto
}

.side-menu__navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

.side-menu__collapse-section {
  display: none
}

.side-menu__collapse-section.-open {
    display: block;
  }

.side-menu_pages__Main > li {
}

.side-menu_pages__Main > li + li {
  border-top: 1px solid #d1d4db;
  padding-top: 32px;
  margin-top: 32px;
}

.side-menu_page__TopVersion {
  font-weight: bold;
  margin-bottom: 8px;
}

.side-menu_pages__TopVersion > li {
  margin-bottom: 12px;
}

.side-menu_page__ProductGroup {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.side-menu_pages__ProductGroup > li {
  margin-bottom: 12px;
}

.side-menu__active {
  color: #ff642d;
}

.side-menu__focus {
  box-shadow: 0 0 0 3px rgba(43, 148, 225, 0.3);
}

.side-menu_page__Product {
  display: flex;
  align-items: center;
  white-space: nowrap
}

.side-menu_page__Product a:hover {
    color: #ff642d;
  }

.side-menu_page__Product.-active a {
      color: #ff642d;
    }

.side-menu_page__Product.-active .side-menu_page__Product-chevron {
      filter: invert(53%) sepia(21%) saturate(7004%) hue-rotate(341deg)
        brightness(100%) contrast(102%);
    }

.side-menu_page__Product .side-menu_page__Product-chevron.-open {
    transform: rotate(90deg);
  }

.side-menu_page__Product-chevron {
  cursor: pointer;
  margin-right: 8px;
}

.side-menu_pages__Product {
  display: none
}

.side-menu_pages__Product > li {
    margin: 8px 0 8px 22px;
  }

.side-menu_pages__Product .-active a {
  color: #ff642d;
}

.side-menu_page__Documentation a:hover {
  color: #ff642d;
}

.side-menu_page__Method {
  display: flex;
  align-items: center;
}

.side-menu_page__Method a:hover {
  color: #ff642d;
}

.side-menu_pages__Documentation {
  display: none;
}

@media (min-width: 415px) {
  .side-menu {
    min-width: 260px;
    max-width: 260px;
  }

  .side-menu__navigation {
    padding: 124px 40px 0;
  }

  .side-menu__search {
    padding-left: 40px;
  }
}

@media (min-width: 768px) {
  .side-menu {
    display: flex !important;
    position: relative;
    z-index: 9;
    box-shadow: none;
  }

  .side-menu__search {
    position: sticky;
    top: 60px;
  }

  .side-menu__navigation {
    position: sticky;
    top: 48px;
    height: calc(100vh - 48px);
    padding: 48px 55px 80px 40px;
  }
}

@media (max-width: 767px) {
  .side-menu__navigation {
    height: calc(100vh - 80px);
    padding: 48px 40px 0;
  }
}

