header {
  position: "sticky";
  width: 100%;
  z-index: 6;
}

/*** discount-alert ***/
.discount-alert {
  background-color: var(--light-green);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  box-shadow: 1px 2px 6px 1px rgba(59, 59, 59, 0.3);
  padding: 8px 20px;
  z-index: 5;
}
.discount-alert p {
  font-weight: 500;
  margin-bottom: 0;
}
.discount-alert .content,
.discount-alert .timer {
  display: flex;
  align-items: center;
}
.discount-alert .content a {
  color: var(--black);
}
.discount-alert .timer img {
  padding: 0 10px;
}
.discount-alert .close-discount {
  cursor: pointer;
  position: absolute;
  margin-left: 20px;
  right: 100px;
  width: 15px;
}
.close-object {
  display: none;
}

/*** menu ***/
.menu {
  background-color: var(--black);
  box-shadow: 1px 2px 6px 1px rgba(59, 59, 59, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-height: 80px;
  padding: 20px 100px;
}
.menu-logo {
  display: flex;
  height: 44px !important;
  margin-right: 30px;
}
.menu-logo > a {
  align-self: center;
}
.navbar,
.navbar > ul {
  display: inline-flex;
  align-items: center;
}
.navbar > ul > li {
  font-weight: 500;
}
.navbar ul li {
  list-style: none;
}
.nav-links-left > li,
.nav-links-right > li {
  margin-left: 25px;
}
.nav-links-left > li:first-child {
  margin-left: 0;
}
.navbar > ul > li > a,
.navbar > ul > li > p {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px;
  color: var(--white);
}
.navbar > ul > li > a:hover,
.navbar > ul > li > p:hover {
  color: var(--green);
}

/* class-menu */
.class-menu {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.class-menu > button {
  display: flex;
  min-width: 200px;
  padding: 0 20px;
  justify-content: space-between;
  height: 40px;
}
.class-status {
  display: block;
  background-color: var(--red);
  border-radius: 50%;
  height: 12px;
  width: 12px;
  margin-left: 15px;
  animation: pulse 3s infinite;
}

.navbar .menu-link-btn {
  border: 1.5px solid var(--light-green);
  border-radius: 5px;
  background-color: transparent;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  height: 40px;
  display: flex;
  align-items: center;
  max-height: 60px;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.navbar .burguer-class-live {
  display: flex;
  white-space: nowrap;
}

@keyframes pulse {
  0% {
    background-color: var(--red);
  }
  50% {
    opacity: 0.2;
  }
  100% {
    background-color: var(--red);
  }
}

/* compressed-menu */
.menu-points {
  height: 24px;
  width: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-top: 3px;
}
.menu-points:hover .menu-point {
  background-color: var(--green);
}
.menu-point {
  display: block;
  width: 4px;
  height: 4px;
  background-color: white;
  margin-bottom: 3px;
  border-radius: 2px;
}

.compressed-menu {
  box-shadow: 1px 2px 6px 1px rgba(59, 59, 59, 0.3);
  display: flex;
  align-items: center;
  max-height: 80px;
  position: relative;
  z-index: 9;
}
.compressed-list {
  background-color: var(--black);
  display: none;
  left: 0;
  position: fixed;
  width: 100vw;
  z-index: 2;
}
.compressed-list > ul {
  list-style: none;
  padding: 20px;
  padding-bottom: 20px;
}
.compressed-list > ul > li {
  padding: 15px 10px;
  padding-left: 80px;
}

.compressed-list > ul > li > a {
  font-size: 20px;
}

.compressed-list > ul > li > a:hover {
  color: var(--green);
}

/* menu-search */
.search-icon {
  position: relative;
  display: flex;
}
.menu .search-icon {
  margin-left: 30px;
}
.menu .search-icon {
  max-width: 30px;
}
.search-box {
  cursor: pointer;
  position: relative;
  right: 0px;
  width: 100%;
  height: 100%;
  max-height: 120px;
  display: flex;
  align-items: center;
  transition: 0.5s ease-in-out;
  z-index: 3;
  margin-left: 30px;
}
.search-box .menu-logo {
  display: none;
}
.search-box > input {
  background-color: var(--black);
  box-sizing: border-box;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  width: 100%;
  min-width: 400px;
  margin-right: 0;
  padding: 15px 15px 15px 50px;
}
.search-box input:focus {
  outline: 1px solid var(--white);
}
.input-icon {
  color: var(--white);
  position: absolute;
  width: 25px;
  height: 25px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.close-search {
  width: 15px;
  position: absolute;
  right: 15px;
}

/* shop-link */
.shop-link .menu-icon {
  max-width: 32px;
}
.shop-link > a {
  display: flex;
  position: relative;
}
.shop-cart-status {
  background-color: var(--green);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  right: -4px;
  bottom: 30px;
  position: absolute;
}

/* lang-dropdown-menu */
.lang-menu {
  font-size: 14px;
  display: flex;
  position: relative;
  height: 80px;
  display: inline-flex;
  align-items: center;
}
.lang-menu .menu-dropdown {
  display: none;
  position: absolute;
  top: 80px;
  left: -18px;
  z-index: 10;
}
.lang-menu:hover .menu-dropdown {
  display: block;
}
.lang-menu .menu-dropdown > li {
  float: left;
  width: 100px;
  display: flex;
  align-items: center;
  max-height: 40px;
}
.lang-menu .menu-dropdown > li:first-child {
  align-items: start;
  padding-top: 10px;
  min-height: 50px;
}
.lang-menu .menu-dropdown > li:last-child {
  align-items: end;
  padding-bottom: 10px;
  min-height: 50px;
}
.lang-menu .menu-dropdown > li > p {
  font-size: 14px;
  font-weight: 500;
  border-radius: 8%;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  height: 40px;
  min-width: 100%;
  padding-left: 10px;
  cursor: pointer;
}
.lang-menu .menu-dropdown li p:hover {
  background-color: #e6e7e8;
  border-color: none;
  border-radius: 5px;
  height: 40px;
  min-width: 80px;
}
.lang-menu .menu-dropdown .li-padding-bottom {
  min-height: 40px;
  padding-bottom: 10px;
}

/* notifications-menu */
.not-icon {
  cursor: pointer;
}

.notif-menu {
  display: block;
  position: relative;
}

.notif-menu .menu-tag {
  position: absolute;
  bottom: 0;
  left: -11px;
  width: 55px;
  height: 6px;
  background-color: #fff;
  display: none;
}

.notif-menu .not-status {
  background-color: var(--green);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  right: -7px;
  bottom: 52px;
  position: absolute;
}

.notif-menu {
  font-size: 14px;
  display: flex;
  position: relative;
  height: 80px;
  display: inline-flex;
  align-items: center;
}

.notif-menu .not-dropdown {
  display: block;
  position: absolute;
  background-color: var(--very-light-gray);
  border: 1px solid var(--black);
  border-top: 0;
  top: 80px;
  right: -95px;
  z-index: 10;

  width: 100%;
  min-width: 410px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

.notif-menu .not-dropdown {
  display: none;
}

.notif-menu .not-list {
  width: 100%;
  height: 100%;
  max-height: 430px;
  overflow-y: auto;
  padding: 10px 0;
  margin-bottom: 10px;
}

.notif-menu .not-dropdown > .not-header a,
.notif-menu .not-list > li > a {
  color: var(--black);
  float: left;
  width: 100%;
  display: flex;
  padding: 10px 15px;
}

.notif-menu .not-list > li > a {
  align-items: start;
  height: 70px;
  width: calc(100% - 20px);
  margin-left: 8px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.notif-menu .not-list > li > a:hover {
  background-color: #e6e7e8;
  border-color: none;
  border-radius: 5px;
  height: 70px;
}

.notif-menu .not-dropdown > .not-header a {
  border-bottom: 1px solid var(--black);
  align-items: center;
  padding-left: 35px;
  height: 80px;
}

.notif-menu .not-dropdown > .not-header h4 {
  font-size: 16px;
  margin-left: 15px;
}

.notif-menu .not-content {
  display: block;
  width: 100%;
  margin-left: 10px;
}

.notif-menu .not-content h6,
.notif-menu .not-content p {
  font-size: 13px;
  line-height: 16px;
}

.menu-dropdown .li-padding-bottom {
  position: relative;
  padding: 5px;
}

.menu-dropdown .mje-alert {
  background-color: var(--green);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  left: 118px;
  top: 12px;
  position: absolute;
  margin-left: 15px;
}

.notif-menu .not-content h6 {
  font-weight: 700;
}

/* scroll bar */
.not-list::-webkit-scrollbar {
  width: 18px;
}
.not-list::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: 25px;
}
.not-list::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 20px;
  border: 6px solid white;
}
.not-list::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
.not-list::-webkit-scrollbar-thumb:active {
  background-color: #bdbdbd;
}

/* menu user profile */
.menu-user-profile {
  cursor: pointer;
  height: 80px;
  width: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu-user-profile:hover {
  background-color: var(--white);
}
.menu-user-profile:hover .menu-dropdown {
  display: block;
}
.profile-picture {
  display: flex;
  align-items: center;
  position: relative;
}
.menu-user-profile .img-container {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  overflow: hidden;
}
.menu-user-img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 18%;
  background-size: 100%;
  flex-shrink: 0;
}
.online-state-circle {
  background-color: var(--green);
  border-radius: 50%;
  height: 16px;
  width: 16px;
  right: -1px;
  bottom: -1px;
  position: absolute;
}
.menu-user-profile .menu-dropdown {
  display: none;
  position: absolute;
  top: 80px;
  right: 0px;
  z-index: 10;
}

/* menu dropdown */
.menu-dropdown > li {
  background-color: var(--very-light-gray);
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
  float: right;
  display: block;
  width: 250px;
}
.menu-dropdown > li:not(.separator) {
  padding: 5px 10px;
  height: 45px;
}
.menu-user-profile .menu-dropdown > li:first-child {
  border-top: 1px solid var(--black);
  height: 70px;
  padding-top: 15px;
}
.menu-dropdown > li:last-child {
  border-bottom: 1px solid var(--black);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.menu-dropdown > li.separator {
  border-top: 1px solid var(--grey);
  list-style: none;
  padding-bottom: 10px;
}
.menu-dropdown > li > a {
  border-radius: 8%;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  height: 40px;
  min-width: 100%;
  font-size: 16px;
}
.menu-dropdown li:not(.separator) a:hover {
  background-color: #e6e7e8;
  border: none;
  border-radius: 5px;
  height: 40px;
  min-width: 230px;
}
.menu-dropdown > li img:first-child {
  max-width: 40px;
  margin: 0 10px 0 5px;
}
.menu-dropdown .li-padding-bottom {
  min-height: 60px;
  padding-bottom: 10px;
}

.menu .btn-dark:hover {
  border: 1.5px solid var(--light-green);
}

.menu .btn-dark:hover a {
  color: var(--black);
}

/* burguer-menu: */
.burguer-icon {
  display: none;
}

.sidebar {
  display: none;
}

.sidebar > ul > li {
  position: relative;
  padding: 5px;
}

.sidebar > ul > li .not-alert {
  background-color: var(--green);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  left: 88px;
  top: 14px;
  position: absolute;
  margin-left: 15px;
}

/* media queries */
@media screen and (max-width: 1600px) {
  .discount-alert .close-discount {
    right: 20px;
    top: 8px;
  }
  .menu {
    padding: 20px 40px;
  }

  .compressed-list > ul {
    list-style: none;
    padding: 20px;
    padding-bottom: 20px;
  }
  .compressed-list > ul > li {
    padding: 10px 10px;
    padding-left: 20px;
  }
  .compressed-list > ul > li > a {
    font-size: 18px;
  }

  .lang-menu .menu-dropdown {
    top: 80px;
  }

  /* menu user profile */
  .menu-user-profile {
    height: 80px;
    width: 70px;
  }
  .menu-user-img {
    background-position-x: center;
    background-position-y: 18%;
    background-repeat: no-repeat;
    /* background-size: 280%; */
    width: 100%;
    height: 100%;
    background-size: contain;
  }
  .online-state-circle {
    bottom: 0px;
    height: 12px;
    width: 12px;
    position: absolute;
    right: 0px;
  }
  .menu-user-profile .menu-dropdown {
    top: 80px;
    right: 0px;
  }
  .search-box input {
    font-size: 16px;
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 1440px) {
  .menu {
    max-height: 70px;
    padding: 10px 20px;
  }

  .lang-menu .menu-dropdown,
  .notif-menu .not-dropdown {
    top: 75px;
  }

  .menu-user-profile,
  .notif-menu .not-dropdown > .not-header a {
    height: 70px;
  }

  .menu-user-profile .menu-dropdown {
    top: 70px;
  }

  .menu-user-profile .menu-dropdown > li:first-child {
    height: 60px;
    padding-top: 10px;
  }

  .menu-dropdown .li-padding-bottom {
    min-height: 50px;
  }

  .menu-dropdown > li > a,
  .menu-dropdown li:not(.separator) a:hover {
    height: 35px;
  }

  .menu-dropdown > li img:first-child {
    max-width: 30px;
  }

  .menu-dropdown > li.separator {
    padding-bottom: 5px;
  }

  .menu-dropdown > li > a:nth-child(8) img {
    margin-left: 0;
  }
}

@media screen and (max-width: 1200px) {
  .discount-alert {
    padding: 8px 40px;
  }
  .discount-alert .content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 10px;
  }
  .input-icon {
    left: 15px;
  }
  .close-search {
    right: 15px;
  }
  .compressed-list > ul > li {
    padding-left: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .navbar .nav-links-left,
  .menu-register {
    display: none;
  }

  /* search-box */
  .search-box {
    position: absolute;
    right: 0;
    width: 100%;
    max-height: 80px;
    height: 100%;
    background-color: var(--black);
    padding: 20px 40px;
    display: flex;
    align-content: center;
  }
  .search-box .menu-logo {
    display: block;
  }
  .search-icon img {
    width: 28px;
  }
  .input-icon {
    left: 250px;
  }
  .close-search {
    right: 55px;
  }

  .menu .notif-menu,
  .menu .lang-menu {
    display: none;
  }

  /* burguer-menu */
  .burguer-icon {
    display: block;
    cursor: pointer;
    margin-left: 30px;
    position: relative;
    width: 30px;
  }
  .sidebar {
    background-color: var(--black);
    box-shadow: -2px 5px 6px 1px rgba(59, 59, 59, 0.3);
    font-size: 16px;
    min-height: 100vh;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.5s ease-in-out;
    width: 250px;
    z-index: 10;
  }
  .sidebar ul {
    margin-top: 60px;
  }
  .sidebar ul > li {
    display: flex;
    justify-content: end;
    padding: 20px;
  }
  .sidebar button a {
    display: block;
  }
  .sidebar > ul > li > p {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: var(--white);
  }
  .sidebar > ul > li > p:hover {
    color: var(--green);
  }
  .close-sidebar {
    cursor: pointer;
    margin-left: 20px;
    margin-top: 20px;
    position: absolute;
    width: 20px;
    z-index: 9;
  }
}

@media screen and (max-width: 700px) {
  .discount-alert .close-discount {
    width: 25px;
    top: 10px;
    right: 10px;
  }
  .menu {
    max-height: 60px;
    padding: 10px 20px;
  }
  .nav-links-left > li,
  .nav-links-right > li {
    margin-left: 12px;
  }
  .nav-links-right {
    height: 60px;
  }
  .menu-logo {
    height: 30px !important;
    margin-right: 0;
  }
  /* .menu .menu-icon {
    width: 25px;
  } */
  .menu .search-icon {
    margin-left: 15px;
  }

  .shop-link .menu-icon {
    max-width: 28px;
  }
  .shop-cart-status {
    bottom: 28px;
  }

  .search-box {
    max-height: 60px;
  }
  .search-box > input {
    min-width: auto;
  }
  .input-icon {
    left: 50px;
  }
  .menu .search-icon {
    max-width: 27px;
  }

  .menu-user-profile {
    height: 60px;
    width: 50px;
  }
  .menu-user-profile .img-container {
    height: 38px;
    width: 38px;
  }
  .menu-user-profile .menu-dropdown {
    top: 60px;
    display: none;
  }
  .menu-dropdown > li:not(.separator) {
    height: 40px;
    padding: 5px 10px;
  }
  .menu-user-profile .menu-dropdown > li:first-child {
    height: 60px;
    padding-top: 10px;
  }
  .menu-dropdown > li {
    font-style: 14px;
    width: 220px;
  }
  .menu-dropdown > li.separator {
    padding-bottom: 5px;
  }
  .menu-dropdown > li > a {
    height: 35px;
    font-size: 14px;
  }
  .menu-dropdown li:not(.separator) a:hover {
    height: 35px;
    min-width: 200px;
  }
  .menu-dropdown > li img:first-child {
    max-width: 28px;
  }
  .menu-dropdown .li-padding-bottom {
    min-height: 55px;
    padding-bottom: 5px;
  }

  .notif-menu .menu-tag {
    bottom: 10px;
    left: -10px;
    width: 45px;
  }

  .notif-menu .not-dropdown {
    top: 70px;
    min-width: 340px;
    right: -62px;
  }

  .notif-menu .not-dropdown > .not-header {
    height: 70px;
  }

  .burguer-icon {
    margin-left: 15px;
    width: 22px;
  }
  .sidebar {
    font-size: 14px;
    width: 220px;
  }
  .sidebar ul > li {
    padding: 15px;
  }
  .sidebar > ul > li > p {
    font-size: 14px;
  }
  .close-sidebar {
    width: 18px;
  }

  .sidebar > ul > li .not-alert {
    left: 76px;
    top: 10px;
  }
}

@media screen and (max-width: 500px) {
  .notif-menu .not-dropdown {
    right: -100px;
  }

  .notif-menu .not-content h6,
  .notif-menu .not-content p {
    font-size: 12px;
  }

  .notif-menu .not-list > li,
  .notif-menu .not-list > li:hover {
    height: 60px;
  }
}
