.wc-header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 20px 48px;
  z-index: 999999;
}

.wc-header .wc-limit-screen {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wc-header__menu-button {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #F2F2F2;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 0;
}

.wc-header__logo img {
  width: 99px;
}

.wc-header__button {
  display: flex;
  gap: 29px;
  align-items: center;
}

.wc-header__button-search {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

.wc-header__button-sto {
  display: block;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.42);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 47px;
}

@media(max-width: 1000px) {
  .wc-header {
    padding: 10px;
  }

  .wc-header__flex {
    background-color: rgba(255, 255, 255, 0.42);
    border: 1px solid;
    border-image-source: conic-gradient(from 41.76deg at 50% 56%, #A7A7A7 0deg, #DCDCDC 360deg);
    backdrop-filter: blur(30px);

    display: flex;
    gap: 24px;
    align-items: center;
  }

  .wc-header__logo {
    padding: 5px 12px 5px 0;
  }


  .wc-header__logo a {
    display: block;
  }

  .wc-header__logo img {
    width: 86px;
    filter: invert(1);
    display: block;
  }

  .wc-header__menu {
    padding: 12px;
    border-right: 1px solid rgba(203, 203, 203, 0.4);
  }

  .wc-header__menu-button {
    filter: invert(1);
  }

  .wc-header__button {
    gap: 0;
  }

  .wc-header__button-search {
    background-color: rgba(255, 255, 255, 0.42);
    width: 40px;
    height: 40px;
    line-height: 39px;
    border-radius: 0;
  }

  .wc-header__button-search svg{
    filter: invert(1);
  }

  .wc-header__button-sto {
    background-color: #262626;
    backdrop-filter: none;
  }

  .wc-header__button-sto svg{
   filter: invert(1);
  }
}