.header {
  margin-bottom: 32px;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1215686275);
  padding: 12px 0 12px 0;
  box-sizing: border-box;
  max-height: 94px;
  position: sticky;
  top: 0px;
  background-color: #fff;
  z-index: 25555;
}
@media (max-width: 991px) {
  .header {
    background-color: #FFF;
    z-index: 15;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: flex;
    align-items: center;
    height: 56px;
  }
  .header.out {
    transform: translateY(-100%);
  }
}
.header .simple-container, .header .center-block {
  box-sizing: border-box;
  padding: 0 16px;
}

.header-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-block {
    display: none;
  }
}

.search-row {
  height: 40px;
  padding-right: 48px;
  position: relative;
}

.search-form {
  width: 422px;
  margin-left: -13px;
}
@media (max-width: 991px) {
  .search-form {
    position: relative;
    width: 100%;
    max-width: 428px;
    margin: 0 auto;
  }
}

.search-row .search-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  background-color: #F94F0D;
  cursor: pointer;
  right: 0;
  top: 0;
  font-size: 24px;
  color: #ffffff;
  border: none;
}

.lk-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #011627;
  text-decoration: none;
}

.lk-btn {
  position: relative;
}

.lk-btn .lk-btn__count {
  display: none;
  white-space: nowrap;
}

.lk-btn.lk-btn_active .lk-btn__count {
  display: flex;
  position: absolute;
  top: -16px;
  right: -16px;
  padding: 4px 6px;
  border-radius: 12px;
  background-color: #F94F0D;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
}

.logo-link {
  display: flex;
}
@media (max-width: 500px) {
  .logo-link {
    margin: 6px 0 0 15px;
  }
}

.burger-btn {
  margin: 0 0 0 -13px;
}
@media (max-width: 991px) {
  .burger-btn {
    margin: 0;
  }
}

.simple-container {
  max-width: 1128px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
}

@media screen and (max-width: 575px) {
  .center-block {
    padding: 0 8px;
    width: 100%;
  }
  .search-block_mobile.center-block {
    padding-top: 68px;
  }
  .cool-input input {
    max-width: 100%;
  }
  .profile-block__descr {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .center-block {
    width: 540px;
  }
}
.input-box {
  height: 100%;
  border-right: none;
  position: relative;
  transition: 0.2s;
}

.input-search {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  padding-left: 12px !important;
  font-size: 14px !important;
  line-height: 24px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-right: 30px !important;
  border: 1px solid #808A93 !important;
  border-right: none !important;
}

.fake-header {
  display: none;
}
@media (max-width: 991px) {
  .fake-header {
    display: block;
  }
}

.fake-header .mobile-menu {
  display: none;
  transform: translateX(-150vw);
  transition: transform 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  color: #808A93;
  z-index: 1000;
  padding: 38px 16px 22px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .fake-header .mobile-menu {
    display: block;
  }
}

.fake-header .mobile-menu.showed {
  width: calc(100vw - 80px);
  -webkit-box-shadow: 4px 0px 45px 200px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 0px 45px 200px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 0px 45px 200px rgba(0, 0, 0, 0.4);
}
@media (max-width: 991px) {
  .fake-header .mobile-menu.showed {
    overflow-y: auto;
    transform: translateX(0);
  }
}

.fake-header .mobile-menu .mobile-link.grey {
  color: #9ea0a6;
  border-bottom: 1px solid #F2F3F4;
}

.fake-header .mobile-menu .mobile-link {
  display: flex;
  align-items: center;
  height: 48px;
}

.fake-header .mobile-menu .mobile-link svg {
  margin-right: 8px;
}

.fake-header .mobile-menu .mobile-list-menu {
  padding: 12px 0;
  border-bottom: 1px solid #F2F3F4;
}

.fake-header .mobile-menu .mobile-list-menu .main-menu_title {
  display: flex;
  align-items: center;
  height: 42px;
  text-decoration: none;
}

.header-block.header-block_mobile {
  display: none;
}
@media (max-width: 991px) {
  .header-block.header-block_mobile {
    display: flex;
  }
}

.search-clear {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 30px;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 0.1s ease-out;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991px) {
  .fake-header .search-block_mobile.showed {
    overflow-y: auto;
    transform: translateX(0);
  }
}

.close-mob-search {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
}

.search-block_mobile {
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  transform: translateX(-150vw);
  transition: transform 0.1s;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  color: #808A93;
  z-index: 1000;
  padding: 38px 0 22px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  body {
    padding-top: 88px;
  }
}

.search_mobile {
  display: flex;
  height: 40px;
  width: 40px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  outline: none;
}
@media (max-width: 500px) {
  .search_mobile {
    margin: 7px -7px 0 0;
  }
}

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