body.no-scroll {
  overflow: hidden;
}

.header {
  position: relative;
  margin-bottom: 50px;
}
.header .top {
  position: relative;
  z-index: 100;
  background: #fff;
}
.header .top .top_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 14px;
}
@media screen and (max-width: 1024px) {
  .header .top .top_container {
    padding: 20px;
  }
}
.header .top .top_container .running_line {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #858585;
  width: 740px;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1550px) {
  .header .top .top_container .running_line {
    font-size: 16px;
    width: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .header .top .top_container .running_line {
    display: none;
  }
}
.header .top .top_container .running_line span {
  display: inline-block;
  animation: marquee 15s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.header .top .top_container .number a {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #20201e;
  transition: 0.3s;
}
@media screen and (max-width: 1550px) {
  .header .top .top_container .number a {
    font-size: 16px;
  }
}
.header .top .top_container .number a:hover {
  color: #017372;
}
.header .top .top_container .main_pages {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .top .top_container .main_pages .item {
  cursor: pointer;
  transition: 0.3s;
}
.header .top .top_container .main_pages .item:hover img, .header .top .top_container .main_pages .item.active img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(64%) saturate(3451%) hue-rotate(165deg) brightness(97%) contrast(99%);
}
.header .top .top_container .main_pages .basket_page {
  position: relative;
}
.header .top .top_container .main_pages .basket_page .quantity {
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background: #017372;
  padding: 1px 4px;
  border-radius: 100%;
  position: absolute;
  top: -6px;
  right: -18px;
}
.header .bottom {
  position: relative;
  z-index: 100;
  background: #017372;
}
.header .bottom .bottom_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .bottom .bottom_container .item {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #d7d7d7;
  padding: 21px;
  transition: 0.3s;
}
@media screen and (max-width: 1550px) {
  .header .bottom .bottom_container .item {
    padding: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .header .bottom .bottom_container .item {
    display: none;
  }
}
.header .bottom .bottom_container .item:hover {
  background: #014b4a;
}
.header .bottom .bottom_container .catalog_link {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .header .bottom .bottom_container .catalog_link {
    display: flex !important;
  }
}
.header .bottom .bottom_container .burger {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 101;
}
@media screen and (max-width: 1024px) {
  .header .bottom .bottom_container .burger {
    display: block;
  }
}
.header .bottom .bottom_container .burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.header .bottom .bottom_container .burger span:nth-child(1) {
  top: 5px;
}
.header .bottom .bottom_container .burger span:nth-child(2) {
  top: 13px;
}
.header .bottom .bottom_container .burger span:nth-child(3) {
  top: 21px;
}
.header .bottom .bottom_container .burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
.header .bottom .bottom_container .burger.active span:nth-child(2) {
  opacity: 0;
}
.header .bottom .bottom_container .burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}
.header__popup {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(70px);
  z-index: 10;
  opacity: 0;
  top: -100vh;
  visibility: hidden;
  transition: 0.3s;
}
.header__popup.active {
  opacity: 1;
  visibility: visible;
  top: 146px;
}
@media screen and (max-width: 1024px) {
  .header__popup.active {
    top: 132px;
  }
}
.header__popup .container {
  position: relative;
  padding: 30px 15px;
}
.header__popup-content {
  max-width: 500px;
  border-radius: 20px;
  padding: 40px 30px 30px;
  position: relative;
}
.header__popup-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #aaa;
  transition: 0.2s;
  z-index: 1;
}
.header__popup-close:hover {
  color: #017372;
}
.header__burger-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(70px);
  z-index: 10;
  opacity: 0;
  top: -100vh;
  visibility: hidden;
  transition: 0.3s;
}
.header__burger-menu.active {
  opacity: 1;
  visibility: visible;
  top: 146px;
}
@media screen and (max-width: 1024px) {
  .header__burger-menu.active {
    top: 132px;
  }
}
.header__burger-menu .container {
  position: relative;
  padding: 30px 15px;
}
.header__burger-content {
  max-width: 500px;
  padding: 40px 30px 30px;
  position: relative;
}
.header__burger-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #aaa;
  transition: 0.2s;
  z-index: 1;
}
.header__burger-close:hover {
  color: #017372;
}

.auth-form {
  display: none;
}
.auth-form.active {
  display: block;
}
.auth-form__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #20201e;
}
.auth-form__field {
  margin-bottom: 25px;
}
.auth-form__field label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #20201e;
  margin-bottom: 8px;
}
.auth-form__field input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}
.auth-form__field input:focus {
  border-color: #017372;
}
.auth-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 14px;
}
.auth-form__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.auth-form__remember input {
  width: 18px;
  height: 18px;
  accent-color: #017372;
}
.auth-form__forgot {
  color: #017372;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.auth-form__forgot:hover {
  border-bottom-color: #017372;
}
.auth-form__buttons {
  display: flex;
  gap: 15px;
}
.auth-form__btn {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.auth-form__btn--login {
  background: transparent;
  color: #017372;
  border: 1px solid #017372;
}
.auth-form__btn--login.active {
  background: #017372;
  color: #fff;
}
.auth-form__btn--login.active:hover {
  background: #014b4a;
  border-color: #014b4a;
}
.auth-form__btn--login:not(.active):hover {
  background: #017372;
  color: #fff;
}
.auth-form__btn--register {
  background: transparent;
  color: #017372;
  border: 1px solid #017372;
}
.auth-form__btn--register.active {
  background: #017372;
  color: #fff;
}
.auth-form__btn--register.active:hover {
  background: #014b4a;
  border-color: #014b4a;
}
.auth-form__btn--register:not(.active):hover {
  background: #017372;
  color: #fff;
}

.burger-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.burger-nav__item {
  font-weight: 500;
  font-size: 18px;
  color: #20201e;
  text-decoration: none;
  transition: 0.2s;
  padding: 10px 0;
}
.burger-nav__item:hover {
  color: #017372;
}/*# sourceMappingURL=header.css.map */