.header-top__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 10px;
}
@media (min-width: 850px) {
  .header-top__body {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .header-top__body {
    align-items: center;
  }
}
.header-top__right {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (min-width: 850px) {
  .header-top__right {
    margin-top: 6px;
  }
}
@media (min-width: 1024px) {
  .header-top__right {
    margin-top: 0;
  }
}
@media (min-width: 1440px) {
  .header-top__right {
    align-items: center;
  }
}
.header-top__nav_list {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1024px) {
  .header-top__nav_list {
    gap: 30px;
  }
}
.header-top__nav_item {
  position: relative;
  padding-block: 6px;
  z-index: 1001;
}
.header-top__nav_item:hover .header-top__nav_item_category, .header-top__nav_item.active .header-top__nav_item_category {
  color: #ff7100;
}
.header-top__nav_item:hover .header-top__nav_item_category span, .header-top__nav_item.active .header-top__nav_item_category span {
  transform: rotate(180deg);
}
.header-top__nav_item:hover .header-top__nav_item_category span svg, .header-top__nav_item.active .header-top__nav_item_category span svg {
  color: #ff7100;
}
.header-top__nav_item:hover .header-top__nav_item_list-wrap, .header-top__nav_item.active .header-top__nav_item_list-wrap {
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header-top__nav_item_category {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
  white-space: nowrap;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: #636363;
  cursor: pointer;
}
.header-top__nav_item_category span {
  flex: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  transition: transform 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.header-top__nav_item_category span svg {
  width: 12px;
  height: 12px;
  color: #262627;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.header-top__nav_item_list-wrap {
  position: absolute;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  min-width: 240px;
  background-color: #fff;
  z-index: 1001;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
  transition: max-height 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), visibility 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), margin-top 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.header-top__nav_item_list {
  display: flex;
  flex-direction: column;
  padding: 16px 30px;
  overflow: hidden;
}
.header-top__nav_item_list li {
  padding-block: 9px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: #636363;
  white-space: nowrap;
}
.header-top__docs {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (min-width: 850px) {
  .header-top__docs {
    flex-direction: column;
  }
}
@media (min-width: 1440px) {
  .header-top__docs {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.header-top__docs_link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 14px;
  color: #636363;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header-top__docs_link {
    font-size: 15px;
  }
}
.header-top__docs_link span {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top__docs_link span svg {
  width: 20px;
  height: 20px;
}
.header-top__contacts {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (min-width: 850px) {
  .header-top__contacts {
    flex-direction: column;
  }
}
@media (min-width: 1440px) {
  .header-top__contacts {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.header-top__mail {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.header-top__mail span {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top__mail span svg {
  width: 20px;
  height: 20px;
}
.header-top__phone {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header-top__phone {
    font-size: 18px;
  }
}