.header__container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  background-color: #ffffff;
  padding: 30px 35px;
  border-radius: 0px 50px 50px 0px;
  width: 155px;
  padding-left: 0;
}
.header__logo::before {
  content: "";
  width: calc(50vw - 580px);
  height: 90px;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: -1;
}
@media (max-width: 1300px) {
  .header__logo::before {
    width: 60px;
  }
}

.header {
  position: absolute;
  width: 100%;
  top: 40px;
  z-index: 101;
}

.mobile__menu_btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-right: 5px;
  display: none;
}
@media (max-width: 1400px) {
  .mobile__menu_btn {
    display: inline-flex;
  }
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.mobile__menu {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #ffffff7e;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 0;
  left: -100vw;
  display: none;
  transition: all 0.5s linear;
}
@media (max-width: 1400px) {
  .mobile__menu {
    display: flex;
  }
}

.mobile__menu.active {
  width: 100vw;
  left: 0;
}

.mobile__menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile__menu .menu-item a {
  background: #ff99c8;
  padding: 20px 50px;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.mobile__menu .menu-item .sub-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 350px;
  transition: all 0.1s linear;
  height: 0;
  opacity: 0;
}
.mobile__menu .menu-item .sub-menu.active {
  height: 100%;
  opacity: 1;
  margin-top: 30px !important;
}
.mobile__menu .menu-item .sub-menu .menu-item a {
  padding: 10px 25px;
  border: 1px solid #ff99c8;
  background: #fff;
  color: #ff99c8;
}
.mobile__menu .menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.header__cart {
  position: relative;
  height: 60px;
  width: 60px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  background: #fcf6bd;
  border-radius: 50%;
}

.header__cart_num {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff99c8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: "Plus Jakarta Sans";
  font-weight: 200;
  font-size: 10px;
  color: #fff;
}

.hero__container {
  max-width: 1300px;
}

.ty__yes .amount {
  margin-left: 5px;
}

.back__btn {
  position: absolute;
  left: 20px;
  top: 20px;
  /* Plus Jakarta Sans/15px/Light */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 19px;
  /* identical to box height */
  /* Text */
  color: #454545;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition-duration: 0.3s;
}
.back__btn:hover {
  color: #000;
}
.back__btn svg {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .back__btn {
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
  }
}

.ld-profile-edit-link {
  display: none !important;
}
