.header-wrap__sticky .header {
  transition: padding var(--submenu-transition-duration) ease;
}

.header {
  --ptb-header: 8px;
  /* --prl-header: 20px; */
  --prl-header: 40px;

  padding: 22px 20px;
  padding: var(--ptb-header) var(--prl-header);
  /* border-bottom: 1px solid #e6e9f2; */
  /* position: sticky; */
  top: 0px;
  /* background: #fff; */
  z-index: 11;
  width: 100%;
}
.header.no_sticky {
  position: static;
}
.logo a {
  max-width: 250px;
  padding: 20px;
  margin: -20px;
}

header .phone__link {
  line-height: 22px;

  .menu-arrow {
    right: -11px;
  }
}
#mobilemenu .phone__link .menu-arrow {
  display: none;
}

.header-callback__dropdown {
  --offset: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(-1 * var(--offset));
  left: 4px;
  right: 0;
  padding: var(--offset);
  background-color: var(--white);
  min-width: 172px;
}
.header-callback:hover .header-callback__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.15s ease;
}
.header-wrap {
  position: relative;
  z-index: 11;
}

.header-wrap__sticky {
  position: sticky;
  top: 0;
  z-index: 11;
  background-color: transparent;
  transition: background-color var(--submenu-transition-duration) ease;
  --header-border-color: var(--title-color);
}
.header-wrap--transparent-white{
  --header-border-color: var(--grey-shade-5);
}
.header-wrap__sticky .header-wrap__inner {
  position: static;
  width: 100%;
  border-bottom: 1px solid color-mix(in oklab, var(--header-border-color) 8%, transparent);
}
.header-wrap__sticky .header-wrap__inner--no-bottom-border {
  border-bottom: none;
}

.header-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--grey-shade-5);
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  will-change: opacity, visibility;
  transition: opacity var(--submenu-transition-duration) ease, visibility var(--submenu-transition-duration) ease;
}

.header-wrap--white::before {
  opacity: 1;
  visibility: visible;
}

.header-wrap__inner {
  /* position: absolute; */
  width: 100%;
}

.header-wrap--transparent-white:not(.header-wrap--white) .header-menu__link,
.header-wrap--transparent-white:not(.header-wrap--white) .header__item > .dark-link:not(:hover),
.header-wrap--transparent-white:not(.header-wrap--white) .submenu__list-item > .dark-link:not(:hover) {
  color: var(--white);
}

.header-wrap--transparent-white:not(.header-wrap--white) .dark-link use,
.header-wrap--transparent-white:not(.header-wrap--white) .currencies__more-arrow path {
  fill: var(--white);
}

.header-wrap--transparent-white:not(.header-wrap--white) .dark-link-stroke use {
  stroke: var(--white)
}

.header-wrap--transparent-white:not(.header-wrap--white)
  .currencies--header
  .currencies__current
  .currencies-icon
  path {
  stroke: var(--white);
}

@media (any-hover: hover) {
  .header-wrap--transparent-white .header-menu__link:hover,
  .header-wrap--transparent-white .phone__link:hover,
  .header-wrap--white.header-wrap--transparent-white .header-menu__link:hover,
  .header-wrap--white.header-wrap--transparent-white .phone__link:hover {
    color: var(--blue-shade-1);
  }

  .header-wrap--transparent-white .dark-link:hover use,
  .header-wrap--transparent-white .currencies--header:hover .currencies__more-arrow path,
  .header-wrap--white.header-wrap--transparent-white .dark-link:hover use,
  .header-wrap--white.header-wrap--transparent-white .currencies--header:hover .currencies__more-arrow:hover path {
    fill: var(--blue-shade-1);
  }
  
  .header-wrap--transparent-white .dark-link-stroke:hover use,
  .header-wrap--white.header-wrap--transparent-white .dark-link-stroke:hover use {
    stroke: var(--blue-shade-1);
  }

  .header-wrap--transparent-white .currencies--header:hover .currencies__current .svg.currencies-icon path,
  .header-wrap--white.header-wrap--transparent-white
    .currencies--header:hover
    .currencies__current
    .svg.currencies-icon
    path {
    stroke: var(--blue-shade-1);
  }
}

body {
  /* --h-header: 105px; */
  --h-header: 88px;
}
.header__inner {
  position: relative;
}
.header__item.currency {
  padding-right: 8px;
  padding-left: 3px;
}
.header__item .login--in {
  padding-right: 10px;
}
.menu-profile-arrow {
  position: absolute;
  top: calc(50% - 1px);
  right: 18px;
}
.login__user-name {
  display: inline-block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart__name {
  display: none;
}
.cart__link {
  padding-right: 10px;
}
.menu-burger {
  cursor: pointer;
}

.menu-burger use {
  fill: var(--dark);
}

.header-wrap--transparent-white:not(.header-wrap--white) .menu-burger use {
  fill: var(--white);
}

.header-wrap--white.header-wrap--transparent-white .menu-burger use {
  fill: var(--dark);
}

.header-menu__item--dropdown .header-menu__link {
  padding-right: 25px;
}
.header-menu__link {
  padding: 26px 20px;
}
.menu-arrow {
  right: 11px;
}
@media (max-width: 1350px) {
  .login__user-name {
    display: none;
  }
  .header__item .login--in {
    padding-right: 0;
  }
  .header__item .login--out .svg {
    margin: 0;
  }
  .menu-profile-arrow {
    right: 10px;
  }
  .header__item.currency {
    padding-right: 8px;
    padding-left: 3px;
  }
  .currencies--header {
    padding: 0 4px 0 9px;
  }
  .header__item.menu {
    /* padding: 0 12px; */
    padding: 0;
  }
  .header .flex-row {
    --gap: 12px;
  }
}

@media (max-width: 1200px) {
  .header-menu__dropdown-menu--products,
  .header-menu__item--wide > .header-menu__dropdown-menu {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .header-menu__wrapper {
    position: static;
  }
}
@media (min-width: 1101px) {
  .header-menu__wrapper {
    padding-left: 25px;
  }
}
@media (max-width: 1100px) {
  .header-menu__item--dropdown .header-menu__link {
    padding-right: 15px;
  }
  .header-menu__item--dropdown .header-menu__link > .menu-arrow {
    right: 5px;
  }
  .header-menu__link {
    padding: 26px 15px;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 134px; /*134*/
  }

  .header {
    --ptb-header: 26px;
    /* --prl-header: 0px; */
    /* --prl-header: 20px; */
  }
  .slogan {
    display: none;
  }
  .menu-profile-arrow {
    display: none;
  }
  .header__item .currencies__more-arrow {
    display: none;
  }
  /* .login {
    font-size: 0px;
  } */
  .personal .svg {
    margin-right: 0px;
  }
  .header__inner {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .flex-row {
    --gap: 7px;
  }
  .register_site {
    display: none;
  }
  .header {
    --prl-header: 20px;
  }
}
@media (max-width: 350px) {
  .logo a {
    max-width: 125px;
  }
}

.header-fixed {
  position: fixed;
  top: 0;
  /* backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px); */
  background-color: #fff;
  box-shadow: 0 1px 5px rgb(0 0 0 / 14%);
}

@media (min-width: 992px) {
  .header-fixed .header {
    --ptb-header: 0;
  }
}
