.header__wrap {
  position: relative;
}

.header__wrap:hover {
  z-index: 1005;
}

.header__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.w-bg {
  background: #F7F7F7;
}

.header__line.w-bg {
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.header-phones {
  position: relative;
  padding-right: 32px;
}

.header-phones__popup {
  position: absolute;
  padding: 3px 31px 2px 12px;
  top: -4px;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
  border: 1px solid #CED4DA;
  background: #FFFFFF;
}
.header-phones__popup > a {
  display: block;
  white-space: nowrap;
  font-size: 18px;
  line-height: 32px;
}

.header-phones__mock {
  display: block;
  white-space: nowrap;
  font-size: 18px;
  line-height: 32px;
}

.header-phones__arrow {
  position: absolute;
  right: 3px;
  top: 4px;
  z-index: 2;
  transition: 0.3s;
}

.header-info {
  font-size: 16px;
  line-height: 30px;
}

.header-buttons {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  column-gap: 38px;
}

.header-nav__wrap {
  position: relative;
}
.header-nav__wrap:hover .header-nav__item {
  border-color: #2F2F3E;
}
.header-nav__wrap:hover .header-nav-popup__wrap {
  opacity: 1;
  z-index: 3;
  transition-property: opacity;
}

.catalog-icon {
  display: flex;
  gap: 8px;
}
.catalog-icon:before {
  content: "\f0c9";
  font-family: "Line Awesome Free";
  font-weight: 900;
  border: 1px solid #2F2F3E;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 16px;
}

.header-nav__item {
  padding: 9px 16px;
  border: 1px solid transparent;
  display: flex;
  column-gap: 8px;
  align-items: center;
  transition: 0.3s;
  white-space: nowrap;
  font-size: 20px;
  line-height: 30px;
}

.header__search {
  transition: 0.3s;
  border: 1px solid transparent;
  transform: scale(-1, 1);
}

.header-nav-popup__wrap {
  width: 430px;
  padding: 17px 4px 17px 24px;
  position: absolute;
  left: -15px;
  top: calc(100% + 8px);
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.header-nav-popup {
  max-height: 256px;
  overflow: auto;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-nav-popup.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.header-nav-popup::-webkit-scrollbar {
  width: 2px;
}
.header-nav-popup::-webkit-scrollbar-track {
  background: #CED4DA;
}
.header-nav-popup::-webkit-scrollbar-thumb {
  background: #2F2F3E;
}
.header-nav-popup::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.header--mobile {
  display: none;
}

.header__logo .logo-small {
  display: none;
}

.hints__wrap {
  width: 192px;
  height: fit-content;
  position: absolute;
  right: calc(50% - 645px);
  bottom: -16px;
  transform: translateY(100%);
  z-index: 11;
}

.hints__wrap.sticky {
  transform: none;
  position: fixed;
  top: 16px;
  right: calc(50% - 645px);
}

.hint {
  width: 100%;
  background: #487DC7;
  border-radius: 8px;
  transition: 0.3s;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.hint span {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
.hint span a {
  color: #fff;
}
.hint span svg {
  margin-left: 6px;
}

.hint.error {
  background: #ED9B81;
}
.hint.error span {
  color: #2F2F3E;
  font-weight: normal;
}

.hint.shown {
  opacity: 1;
}

a.hint {
  display: block;
  background: #E2DDFE;
  cursor: pointer;
}
a.hint span {
  color: #4E48A0;
}
a.hint span path {
  fill: #4E48A0;
}
a.hint:hover {
  background: #4E48A0;
}
a.hint:hover span {
  color: #fff;
}
a.hint:hover span path {
  fill: #fff;
}

#requisitesModal .requis-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 16px;
}
#requisitesModal .requis-copy {
  margin-top: 16px;
}
#requisitesModal .requis-copied {
  display: none;
}
#requisitesModal .requis-copy {
  display: block;
}

.header--mobile .header--mobile-buttons .header--mobile-buttons__menu .btn-burger .burger-close {
  display: none;
}
.header--mobile .header--mobile-buttons .header--mobile-buttons__menu .btn-burger.open .burger-close {
  display: block;
}
.header--mobile .header--mobile-buttons .header--mobile-buttons__menu .btn-burger.open .burger-open {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 59px;
  left: 0;
  background: #FFFFFF;
  width: 100%;
  height: calc(100% - 59px);
  overflow: auto;
  z-index: 1030;
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .mobile-menu-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 576px) {
  .mobile-menu .mobile-menu-container {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}
.mobile-menu .mobile-menu-container .menu-info .menu-info__phones {
  display: flex;
  flex-direction: column;
  margin-bottom: 42px;
}

.header-sticky--bottom {
  display: none;
  top: auto;
}
@media (max-width: 1199px) {
  .header-sticky--bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 1030;
  }
}
.header-sticky--bottom .header-sticky--bottom_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media (hover: hover) {
  .header-phones:hover .header-phones__popup {
    opacity: 1;
    z-index: 1;
  }
  .header-phones:hover .header-phones__arrow {
    transform: rotate(180deg);
  }
  .header__wrap .header__search:hover {
    border-color: #2F2F3E;
  }
  .header__wrap .header__search:hover i {
    opacity: 1;
  }
}
@media screen and (max-width: 1409px) {
  .header-info {
    font-size: 14px;
  }
  .header-nav__item {
    font-size: 16px;
  }
  .header__line.w-bg {
    margin: 0 -21px;
    padding-left: 21px;
    padding-right: 21px;
  }
  .header-nav {
    column-gap: 32px;
  }
  .header-nav-popup__wrap {
    left: -21px;
  }
  .hints__wrap.sticky {
    right: calc(50% - 549px);
  }
}
@media screen and (max-width: 1199px) {
  .header {
    display: none;
  }
  .header--mobile {
    display: block;
    padding-top: 59px;
  }
  .header__line {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #CED4DA;
  }
  .header--mobile-buttons {
    display: flex;
    column-gap: 16px;
  }
  .header-sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 1030;
  }
  .header-sticky__link {
    display: flex;
    align-items: center;
  }
  .header-sticky__link > span {
    font-size: 16px;
    line-height: 30px;
  }
  .header-sticky__link.active {
    pointer-events: none;
  }
  .header-sticky__link.active > span {
    color: #A0A5AB;
  }
  .header--mobile-buttons__menu {
    position: relative;
  }
  .header--mobile-buttons__menu .js-popup-close {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
  }
  .header--mobile-buttons__menu .js-popup-open.active {
    opacity: 0;
  }
  .header--mobile-buttons__menu .js-popup-open.active + .js-popup-close {
    opacity: 1;
    z-index: 1;
  }
  .hints__wrap.sticky {
    right: calc(50% - 349px);
  }
}
@media screen and (max-width: 767px) {
  .header--mobile-buttons {
    column-gap: 10px;
  }
  .header-sticky__link {
    flex-direction: column;
  }
  .header-sticky__link > span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 12px;
    z-index: 1;
  }
  .hints__wrap {
    right: 18px !important;
    position: fixed;
    top: 64px !important;
    bottom: auto;
  }
  .hints__wrap.sticky {
    right: 18px;
  }
}
@media (max-width: 576px) {
  .header__logo .logo-small {
    display: block;
  }
  .header__logo .logo-big {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header-nav {
    display: block;
  }
  .header-nav__item {
    padding: 0;
  }
  .header-nav__wrap {
    margin-bottom: 8px;
  }
  .header-nav__wrap:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .header-nav {
    width: 100%;
  }
}

/*# sourceMappingURL=header-footer.css.map */
