header .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 60px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
header .nav,
header .nav .nav-links {
  display: flex;
  align-items: center;
}
header .nav {
  justify-content: space-between;
}
header ul.nav-links {
	margin-top: 12px;
}
header ul.nav-links li a {
  font-size: 14px !important;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  background-image: linear-gradient(
    to right,
    #801d77,
    #801d77 50%,
    #000 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

header ul.nav-links li a:before {
  content: '';
  background: #801d77;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

header ul.nav-links li a:hover {
 background-position: 0;
}

header ul.nav-links li a:hover::before {
  width:100%;
}

header .nav .logo {
  font-size: 22px;
  font-weight: 500;
}
header .nav .nav-links {
  column-gap: 30px;
  list-style: none;
}
header .nav .nav-links a {
  transition: all 0.2s linear;
}
header .nav.openSearch .nav-links a {
  pointer-events: none;
}
header .nav .search-icon {
  background: #801d77;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 7px;
    border-radius: 50%;
    pointer-events: none;
}
header .nav .search-box {
  position: absolute;
  right: 0;
  height: 45px;
  max-width: 355px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
  bottom: -45px;
  right: 1.2%;
}
header .nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
header .search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: #ffe2fc;
  transform: translateY(-50%);
}
header .search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  color: white;
  border-radius: 6px;
  background-color: #353842;
  padding: 0 15px 0 45px;
  margin: 5px;
}

header .nav .navOpenBtn,
header .nav .navCloseBtn {
  display: none;
}

/* responsive */
@media screen and (max-width: 1160px) {
  header .nav {
    padding: 15px 100px;
  }
  header .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  header .nav {
    padding: 15px 50px;
  }
  header .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  header .nav .navOpenBtn,
  header .nav .navCloseBtn {
    display: block;
  }
  header .nav {
    padding: 15px 20px;
  }
  header .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 22px;
    flex-direction: column;
    background-color: #ffe2fc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  header .nav.openNav .nav-links {
    left: 0;
  }
  header ul.nav-links {
	margin-top: 0px;
	}
  header .nav .navOpenBtn {
    color: #801d77;
    font-size: 20px;
    cursor: pointer;
  }
  header .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #801d77;
    font-size: 20px;
    cursor: pointer;
  }
  header .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  header ul.nav-links li a {
    color: #801d77;
    background-image: linear-gradient(to right, #801d77, #801d77 50%, #801d77 50%);
  }
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"][class$="tip"] {
  top: 2.875em;
  left: 11px !important;
  width: 1.5625em;
  transform: rotate(45deg);
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"][class$="long"] {
  top: 45px !important;
  right: 0px !important;
  width: 2.9375em;
  transform: rotate(-45deg);
}

div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"] {
  top: 39px !important;
  width: 34px !important;
  height: 6px !important;
}