header {
  background: #ffffff;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}

header .header-menu {
  border-bottom: 1px solid #000000;
}

header a {
  display: flex;
}

header .content {
  display: flex;
  max-width: 1680px;
  margin: 0 auto;
}

header .header-alert {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  text-transform: lowercase;
  display: none;
}

header .header-alert .content {
  width: 100%;
}

header .header-alert label {
  margin-left: auto;
  display: flex;
}

header .header-alert label,
header .header-alert label a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.115em;
  color: #ffffff;
}

header .header-alert label a {
  text-transform: none;
  align-items: center;
}

header .header-alert img {
  cursor: pointer;
  margin-left: auto;
  height: 100%;
}

/* logo */
.logo {
  display: flex;
}

.logo img {
  margin-top: -1px;
  margin-bottom: -1px;
  margin-left: -1px;
}

/* left menu */
.left-menu {
  display: flex;
  align-items: center;
}

.left-menu .left-menu-item {
  margin-left: 10%;
  height: 100%;
  display: flex;
}

.left-menu .left-menu-item a {
  display: flex;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.115em;
  color: #000000;
  text-decoration: none;
  align-items: center;
  font-weight: 300;
  cursor: pointer;
}

.left-menu .left-menu-item a:hover,
.left-menu .left-menu-item a:active {
  text-decoration: underline;
}

/* right menu */
.right-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 1.87em;
}

.right-menu .right-menu-item {
  margin-left: 1.5em;
}

.right-menu .right-menu-item img {
  height: 25px;
  width: 25px;
}

.right-menu .right-menu-item a {
  font-size: 12px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.115em;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

.right-menu .right-menu-item a:hover,
.right-menu .right-menu-item a:active {
  text-decoration: underline;
}

/* menu option */
.menu {
  background: #ffffff;
  border: 1px solid #000000;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  padding: 1em 5%;
  margin-top: -1px;
  display: none;
  z-index: 1;
  position: fixed;
  top: 73px;
  z-index: 10;
}

.menu .menu-item {
  display: flex;
  margin: 0.5em 2.5%;
  flex-direction: column;
}

.menu .menu-item a {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.115em;
  color: #000000;
  text-decoration: none;
}

.menu .menu-item a:hover {
  text-decoration: underline;
}

.menu .menu-item .menu-item-category {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 5px;
}

.menu .menu-item .menu-item-subcategory {
  font-weight: 300;
}

#mobile-menu {
  display: none;
}

.right-menu-item.outlet {
  height: 100%;
}
.right-menu-item.outlet #outlet-menu-item {
  height: 100%;
  display: flex;
  align-items: center;
}

#desktop-menu #buscador {
  border: none;
}

/**
  RESPONSIVE STYLES
**/

@media (min-width: 1025px) and (max-width: 1380px) {
  .left-menu .left-menu-item {
    margin-left: 20px;
  }
}

@media (min-width: 320px) and (max-width: 1024px) {
  #desktop-menu {
    display: none;
  }

  #mobile-menu {
    display: block;
    position: fixed;
    width: 100%;
    z-index: 3;
    top: 0;
  }

  .logo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }

  .logo a {
    margin: 1px 0px;
  }

  .logo img {
    height: 65px;
  }

  .cart {
    position: absolute;
    right: 80px;
    top: 20px;
    z-index: 2;
  }

  .cart img {
    width: 22px;
  }

  #mobile-menu a {
    text-decoration: none;
    color: #1e1e23;
    opacity: 1;
    font-size: 1.5em;
    font-weight: 400;
    transition: 200ms;
  }

  #mobile-menu a:hover {
    opacity: 0.5;
  }

  #mobile-menu ul {
    padding: 0;
    list-style-type: none;
  }

  #mobile-menu nav {
    background-color: #fff;
    height: 65px;
    border-bottom: 1px solid;
  }

  #mobile-menu .background-blur {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
  }

  #menuToggle.open {
    z-index: 3;
  }

  #menuToggle.open .background-blur {
    visibility: visible;
    background: rgba(34, 34, 34, 0.7);
    transition: background-color 0.3s ease-out;
  }

  #menuToggle .hambuerger {
    width: 29px;
    height: 24px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 2;
  }

  #menuToggle .hambuerger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  #menuToggle .hambuerger span:nth-child(1) {
    top: 0px;
  }

  #menuToggle .hambuerger span:nth-child(2) {
    top: 9px;
  }

  #menuToggle .hambuerger span:nth-child(3) {
    top: 18px;
  }

  #menuToggle .hambuerger.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  #menuToggle .hambuerger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  #menuToggle .hambuerger.open span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  #menuToggle {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    position: relative;
    top: 25px;
    right: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }

  #menuToggle .header {
    position: fixed;
    background-color: #fff;
    height: 60px;
    z-index: 1;
    top: 0;
    transition: all 0.3s ease-out;
    right: -1000px;
    left: 1000px;
  }

  #menuToggle.open .header {
    transition: margin 0.3s ease-out;
    left: 15%;
    right: 0px;
  }

  #mobile-menu #menu {
    position: absolute;
    right: -25px;
    top: -25px;
    width: 85%;
    height: 100vh;
    /*box-shadow: 0 0 10px #85888c;*/
    margin: 0px 0 0 35px;
    padding: 0px;
    padding-top: 90px;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    margin-right: -1000px;
    overflow-y: scroll;
    /*transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);*/
  }

  #mobile-menu #menu.hidden {
    /*display: none;*/
  }

  #mobile-menu #menu li {
    padding: 10px 15px;
    transition-delay: 2s;

    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 5px;
  }

  #mobile-menu #menuToggle.open ul {
    transition: margin 0.3s ease-out;
    margin-right: 0px;
  }

  #mobile-menu li .menu-item {
    display: flex;
    /*border-bottom: 1px solid #ededed;*/
    align-items: center;
  }
  #mobile-menu li .menu-item a {
    flex: auto;
    margin-right: 15px;
  }

  #mobile-menu li .menu-item .icon {
    background-image: url("../../assets/icons/arrow-down.svg");
    width: 15px;
    width: 24px;
    height: 12px;
    transition: 1s transform;
    background-repeat: no-repeat;
  }
  #mobile-menu li .menu-item .icon.collapse {
    transform: rotate(180deg);
    transform-origin: center center;
  }

  #mobile-menu li .menu-item.border {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 1px;
  }

  #mobile-menu li .sub-menu-mobile {
    display: none;
  }
  #mobile-menu li .sub-menu-mobile.show {
    display: block;
  }

  #mobile-menu li .sub-menu-mobile .menu-item {
    display: block;
    border-bottom: none;
  }

  #mobile-menu li .sub-menu-mobile .menu-item-category {
    width: 100%;
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 15px;
  }
  #mobile-menu li .sub-menu-mobile .menu-item-subcategory {
    display: block;
    font-size: 15px;
    font-weight: 400;
    text-indent: -15px;
    padding-left: 20px;
    margin-bottom: 3px;
  }

  #mobile-menu li form {
    width: 100%;
  }
  #mobile-menu li #buscador-mobile {
    width: 100%;
    display: inline;
    position: relative;
    color: #000;
    opacity: 1;
    border: none;
  }
}

/* MODAL SIGNUP */

.signup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
}

.signup .content {
  width: 690px;
  height: 450px;
  position: absolute;
  right: 0;
  left: 0;
  top: 10em;
  background: #ffffff;
  margin: auto;
  border: 1px solid #000000;
  box-sizing: border-box;
}

.signup .content .tabs {
  display: flex;
  background: #eae9e7;
  border-bottom: 1px solid #000000;
}

.signup .content .tabs .close img {
  position: absolute;
  right: 0.1em;
  top: 0.1em;
  cursor: pointer;
}

.signup .content .tabs .item label {
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.115em;
  color: #000000;
  cursor: pointer;
}

.signup .content .tabs .item {
  padding: 1.5em 2em;
  box-sizing: border-box;
  border: 1px solid #000000;
  cursor: pointer;
  margin: -1px -1px -1px -1px;
}

.signup .content .tabs .item.active {
  padding: 1.5em 2em;
  box-sizing: border-box;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
  margin: -1px 0px -1px -1px;
}

.signup .content .tabs .item.border-right-none {
  border-right: none;
}

.signup .content .option {
  display: flex;
  width: 100%;
  padding: 2em;
}

.signup .content .option .col-left {
  width: 40%;
  margin-right: 1.5em;
}

.signup .content .option .col-right {
  width: 60%;
  text-align: left;
  margin-left: 1.5em;
}

.signup .content .option .col-right label {
  font-weight: normal;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #000000;
}

.signup .content .option .col-right .button-facebook {
  text-decoration: none;
  margin-top: 2em;
}

.signup .content .option .col-right .button-facebook div {
  background-color: #2d72d9;
  border-radius: 3px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  padding: 1rem 2.5em 1em 5.5em;
  text-align: center;
  width: max-content;
  background: url(../../assets/icons/facebook-login.png) no-repeat scroll 0 0
    #3b5998;
  margin: 2.5em 0em;
  letter-spacing: 1px;
}

.signup .content .option .col-left .item {
  position: relative;
}

.signup .content .option .col-left label {
  width: inherit;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 0.05em;
  margin-right: 0.5em;
}

.signup .content .option .col-left input {
  width: 100%;
  border: 1px solid #000000;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #686868;
  padding-inline-start: 1em;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  padding: 0.5em;
  margin-bottom: 0.5em;
}

.signup .content .option .col-left .btn-generic {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.signup .content .option .col-left .remind-me {
  margin-top: 2em;
}

.signup .content .option .col-left .remind-me label {
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #000000;
}

.signup .content .option .col-left .forgot-password {
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
  color: #000000;
  display: flex;
}

.signup .content .option .col-left .mt-2 {
  margin-top: 2em;
}

#modal-signup {
  display: none;
}

.signup .content .option .col-right .showErrors label {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: red;
  font-weight: 300;
  letter-spacing: 1px;
}
.signup .content .option .col-right .showErrorsReg label {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: red;
  font-weight: 300;
  letter-spacing: 1px;
}
.right-menu .right-menu-item a.with-image {
  align-items: center;
}
.right-menu .right-menu-item a.with-image img {
  margin-right: 10px;
}

.right-menu .right-menu-item a#logout {
  text-transform: uppercase;
  align-items: center;
}
.right-menu .right-menu-item a#logout img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

@media (min-width: 320px) and (max-width: 1024px) {
  body.removeScroll {
    overflow-y: hidden;
  }

  .signup .content {
    height: 100%;
    width: 100%;
    top: 0;
  }

  .signup {
    z-index: 3;
  }

  .signup .content .option {
    padding: 2em 0.5em;
    display: block;
  }

  .signup .content .option a {
    justify-content: center;
  }

  .signup .content .option .col-left,
  .signup .content .option .col-right {
    width: 100%;
    text-align: center;
  }

  .signup .content .option .item {
    text-align: left;
  }

  .signup .content .option .col-right {
    margin-top: 2em;
    margin-left: 0;
    text-align: center;
  }

  .signup .content .option .col-right .button-facebook div {
    margin: 0.5em 0;
  }

  .signup .content .option .col-right .button-facebook {
    display: flex;
    margin-top: 0;
  }
}
