﻿.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  padding: 1rem 1.5rem;
  /* border-bottom: 2px solid #f5f5f5 !important;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15); */
}

.link-item-active a {
  border-bottom: 2px solid rgba(0, 0, 0, 0.75) !important;
}

.link-item-sell {
  padding: 0.1rem 1rem;
  border: 1px solid #000;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 2px;
}

/* @media screen and (min-width: 992px) {
  .header {
    padding: 0.5rem 1.5rem;
  }
} */

.header .header-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

@media screen and (max-width: 992px) {
  .header .header-nav {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

.header .header-nav .img-fluid {
  height: 20px;
}

/* @media screen and (min-width: 992px) {
  .header .header-nav {
    height: 90px;
  }
} */

.header .header-links {
  display: flex;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}




.header .header-links .link-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

}

.header .header-links .link-wrapper.margin-left {
    width: 100% !important;
}


.header .header-links .link-item {
  display: none;
  margin: 0 1rem;
  flex-shrink: 0;
}

.link-item-sell{
  display: none;
}

@media screen and (min-width: 992px) {
  .header .header-links .link-item {
    display: block;
  }
  .link-item-sell{
   display: block;
  }

  .header .header-links .link-wrapper.margin-left {
    margin-left: 3rem;
    width: calc(100% - 3rem) !important;
  }
}

.header .header-links .link-item a {
    padding: 1rem 0.5rem;
    color: #000;
    font-size: 14px;
}

.header .header-links .link-item:hover a {
  border-bottom: 3px solid #bbb !important;
}

.header .header-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.header a:hover {
  color: inherit;
}

.header .lang-container {
  position: relative;
  display: flex;
}

.header .lang-container.mobile {
  margin: 0;
  padding: 0.5rem 1.5rem;
  display: flex;
}

@media only screen and (min-width: 992px) {
  .header .lang-container.mobile {
    display: none;
  }
}

.header .lang-container.mobile .language-dropdown {
  left: 0;
  right: initial;
}

.header .lang-container #lang-btn-dropdown,
.header .lang-container #lang-btn-dropdown-mobile {
  font-weight: 500;
  margin: 0 0.25rem;
  position: relative;
}

.header .lang-container #lang-btn-dropdown:hover,
.header .lang-container #lang-btn-dropdown-mobile:hover {
  cursor: pointer;
}

.header .lang-container #lang-btn-dropdown:after,
.header .lang-container #lang-btn-dropdown-mobile:after {
  display: inline-block;
  margin-left: 0.255em;
  position: absolute;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  top: 50%;
  transform: translateY(-50%);
}

.header .lang-container .language-dropdown.active {
  visibility: visible;
  opacity: 1;
}

.header .lang-container .language-dropdown {
  visibility: hidden;
  background-color: #fff;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  width: max-content;
  transition: opacity 300ms ease-out;
  padding: 0 !important;
  border: none;
  box-shadow: 3px 2px 22px -9px rgba(0, 0, 0, 0.75);
  border-radius: 1.25rem !important;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.header .lang-container .lang-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 1rem;
  width: 100%;
}

.header .lang-container .lang-item:hover {
  background-color: #0cf !important;
  border-radius: 0;
}

.header .lang-container .lang-item:first-child:hover {
  border-radius: 1.25rem 1.25rem 0 0 !important;
}

.header .lang-container .lang-item:last-child:hover {
  border-radius: 0 0 1.25rem 1.25rem !important;
}

/*.header .header-profile {
    display: block;
    position: static;
    padding: 0.25rem;
    border-radius: 50px;
    border: none;
    margin-left: 0;
}*/

.header .header-profile div.login-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

@media screen and (min-width: 992px) {
  .header .header-profile {
    margin-left: 1rem;
    position: relative;
  }
}

.header .header-profile .profile-icons {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #ecfcff;
  padding: 0.25rem;
  border-radius: 4px;
  position: relative;
}

.header .header-profile .profile-icons .neo-profile {
  font-size: 1.5rem;
}

.header .header-profile .profile-icons .notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header-profile .profile-icons:hover {
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .header .header-profile .profile-icons {
    display: flex;
  }
}



.header .header-profile .profile-img {
  width: 24px;
  height: auto;
  margin: 0 0.25rem;
}

.header .header-profile .user-profile-img {
  width: 47px;
  height: 47px;
}

.user-profile-menu-wrapper {
  display: none;
  flex-direction: row;
  margin: 16px 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ecfcff;
}

.user-profile-menu-wrapper div {
  display: flex;
  flex-direction: column;
}

.user-profile-menu-wrapper a {
  font-size: 12px;
}

.user-profile-menu-wrapper a:hover {
  background-color: transparent !important;
  text-decoration: underline;
}

.header .header-profile .border-radius-circle {
  border-radius: 50%;
}

.header .header-profile #menu-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - 40px);
  border-radius: 0;
  border: none;
  z-index: 1000;
  background-color: #fff;
  overflow: auto;
}

.notification_icon {
  font-size: 2rem;
}

#menu-content .list-container .menu-list-item-wrapper {
  display: flex;
  flex-direction: row;
  padding: 0px 20px;
}

#menu-content .menu-list-item-mobile {
  border-bottom: 1px solid #ecfcff;
}

#menu-content .menu-list-item-mobile a {
  padding: 0px;
  padding: 0.5rem 0rem !important;
}

#menu-content .list-container .menu-list-item-wrapper:last-child {
  margin: 16px 22px;
  border-bottom: 1px solid #ecfcff;
}

/* #menu-content .list-container .menu-list-item-wrapper:hover {
  background-color: #f5f5f5;
} */

.menu-list-item-wrapper .menu-list-item-icon {
  position: relative;
  width: fit-content;
}

.menu-list-item-wrapper .menu-list-item-icon .notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header-profile #menu-content.active {
  display: block;
}

.header .header-profile #menu-content a,
.header .header-profile #menu-content p {
  padding: 0.5rem 1.5rem;
  display: block;
}

@media screen and (min-width: 992px) {
  .header .header-profile #menu-content {
    right: 0;
    left: initial;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
    width: 300px;
  }
}

.header #mobile-btn:hover {
  cursor: pointer;
}

.header .img-hamb {
  width: 30px;
  height: auto;
}

.header .profile-neo-works {
  border-bottom: none;
}

@media only screen and (min-width: 992px) {
  .header .profile-neo-works {
    border-bottom: none;
  }
}

.header .profile-neo-works .list-container {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.header .profile-neo-works .list-container.active {
  display: block;
  max-height: 100%;
}

@media only screen and (min-width: 992px) {
  .header .profile-neo-works .list-container {
    display: block;
    max-height: 100%;
  }

  .header .profile-neo-works .list-container.active {
    display: block;
    max-height: 100%;
  }
}

.header .profile-neo-works .list-container a {
  padding: 0.5rem 3.5rem;
}

.header .profile-neo-works .list-container a:last-child {
  border-bottom: none;
}

@media only screen and (min-width: 992px) {
  .header .profile-neo-works .list-container a {
    padding: 0.5rem 2.5rem;
  }
}

.header #neostar-works:after {
  display: inline-block;
  margin-left: 0.3em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transform: translateY(-50%);
}

.header #neostar-works.active:after {
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

@media screen and (min-width: 992px) {
  .header #neostar-works:after {
    content: "";
    border: none !important;
  }
}

.header #login-modal-btn {
  margin: 0;
  padding: 0rem 1.5rem 0.75rem !important;
  border: none !important;
  text-decoration: underline;
}

@media only screen and (min-width: 992px) {
  .header #login-modal-btn {
    border-bottom: none;
  }
}

.header #login-modal-btn:hover {
  cursor: pointer;
}

.header #logout-user {
  width: 100%;
  background-color: white;
  border: none;
  text-align: start;
  padding: 0.75rem 1.5rem;
  /* border-bottom: 1px solid #b0b0b0; */
  box-shadow: none !important;
  text-decoration: underline;
}

@media only screen and (min-width: 992px) {
  .header #logout-user {
    border-bottom: none;
  }
}

.header #logout-user:hover {
  text-decoration: underline !important;
}

.form-modal-login {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  height: 100%;
}

.form-modal-login-overlay {
  background-color: rgba(34, 34, 34, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.step-form-login {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 80%;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  padding: 20px 0 16px;
  background: white;
  z-index: 300;
}

@media screen and (min-width: 992px) {
  .step-form-login {
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
  }
}

.step-form-login.step-fade .step-form-content {
  width: 100%;
  display: block;
}

.step-form-login.step-fade .step-form-login-content {
  width: 100%;
  display: block;
}

.step-form-login.step-fade .step {
  opacity: 0;
  position: absolute;
}

.step-form-login.step-fade .step.active {
  opacity: 1;
  z-index: 100;
}

@media screen and (max-width: 600px) {
  .step-form-login {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .step-form-login {
    width: 100%;
  }
}

.step-form-login-content {
  position: relative;
  overflow: hidden;
  display: flex;
  left: 0;
}

@media screen and (min-width: 991px) {
  .step-form-login-content {
    max-height: calc(100vh - 250px);
  }
}

@media screen and (max-width: 991px) {
  .step-form-login-content {
    height: 100% !important;
  }
}

.step-form-login-header {
  padding: 0 24px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.step-form-login-header .btn-close-login-modal {
  width: 18px;
  height: 25px;
  border-radius: 50%;
  padding: 0;
  opacity: 1;
}

.step-form-login-header .btn {
  margin-bottom: 0;
  border-radius: 32px;
  padding: 10px 14px;
}

.step-login-container {
  padding: 0 24px 20px;
}

.step-login-container.image-container {
  overflow: hidden;
}

.step-login-container.image-container > img.img-fluid {
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .step-login-container.image-container > img.img-fluid {
    width: 50%;
    float: left;
    margin-right: 20px;
  }
}

.step {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: opacity 0.3s ease-in-out;
}

.step.hide {
  opacity: 0;
}

.step h2 {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 500;
}

.step h3 {
  margin-top: 0;
  font-size: 26px;
  font-weight: 500;
}

.step h5 {
  font-size: 15px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.step p {
  margin-bottom: 20px;
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #717171;
}

.step .info-text {
  margin-bottom: 20px;
  font-family: "SuisseIntl";
  font-size: 16px;
}

.step img {
  margin-bottom: 14px;
}

.divider {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}

.divider:before {
  content: "";
  height: 1px;
  width: 45%;
  background: #000;
}

.divider:after {
  content: "";
  height: 1px;
  width: 45%;
  background: #000;
}

.btn-light {
  margin-bottom: 16px;
  padding: 14px 12px;
  background-color: #fff;
  border: solid 1px #000;
  font-family: "SuisseIntl";
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.step-controls {
  box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 24px 0;
  display: flex;
  justify-content: space-between;
}

.step-form-footer {
  margin-top: auto;
  text-align: center;
}

.step-form-footer p {
  margin: 0;
}

.step-form-footer span {
  font-weight: bold;
}

.next-btn-login {
  background-color: #ccc;
  color: #000;
  border: none;
  cursor: pointer;
  font-family: "SuisseIntl";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
}

.next-btn-login {
  color: #fff;
  background-color: #222;
  border-radius: 8px;
  padding: 14px 29px;
}

#register-user-btn {
  width: auto !important;
}

.prev-btn-login {
  right: auto;
  left: 20px;
  text-decoration: underline;
  color: #222;
  background-color: transparent;
  padding: 14px 0;
}

.prev-btn-login:hover {
  cursor: pointer;
}

.color-pink {
  color: #f9c;
}

#logout-user:hover {
  cursor: pointer;
}

.filter-search-button {
    position: absolute;
    left: auto;
    right: 1px;
    font-size: 1.5rem;
    height: 32px;
    align-content: center;
    cursor: pointer;
}
.language-dropdown-mobile {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    background: #fff;
    margin-top: 5px;
}

.lang-item {
    text-decoration: none;
    color: #000;
}

.lang-dropdown-mobile span {
    cursor: pointer;
    font-weight: bold;
}

/* promotion sticky */
.promo-preheader {
    width: 100%;
    position: sticky;
    /* header */
    top: 72px;
    z-index: 99;
    padding: 10px 0;
}

.promo-preheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.promo-preheader-text {
    font-size: 12px;
    color: #000;
    font-family: "SuisseIntl", sans-serif;
    font-weight: 400;
}

.promo-preheader-btn {
  font-family: "SuisseIntl", sans-serif;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 400;
}

.promo-preheader-btn:hover {
  text-decoration: none;
}

.promo-preheader-actions{
    display: flex;
    align-items: center;
    gap: 28px;
}

.promo-preheader-btn-icon{
    margin-left: 12px;
}

.promo-preheader-close {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
