body {
  background-color: #ffffff;
  margin: 0;
}

div.container {
  padding-right: 0;
  padding-left: 0;
}

ul {
  padding-left: 0.2rem;
}

nav > div > li,
ul > li {
  list-style: none;
}

/* ### Header ### */

nav > .containerImage {
  width: 37px;
  height: 38px;
}

nav.menu--main {
  height: 70px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #282425;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
  padding-left: 16px;
  gap: 24px;
  position: fixed;
  z-index: 3;
  width: 100%;
  top: 0;
}

.user-logged-in nav.menu--main {
    position: relative;
}

nav.menu--main > div.menu-items {
  gap: 16px;
}

nav.menu--main > div > li:nth-of-type(1),
nav.menu--main > div > li:nth-of-type(2) {
  display: none;
}

nav.menu--main > div > li > a.menu-item-custom {
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: #f2f9f9;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
}

nav.menu--main > div > li > a.menu-item-custom[data-submenu="3"] {
  background-color: transparent;
  border: 2px solid #f2f9f9;
  color: #f2f9f9;
  position: relative;
  padding-right: 40px;
}

nav.menu--main > div > li > a.menu-item-custom[data-submenu="3"]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../assets/icons/Chevron_Down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-image 300ms ease-out;
}

/* nav.menu--main > div > li > a.menu-item-custom:hover, */
nav.menu--main > div > li > a.menu-item-custom[data-submenu="3"].active {
  background-color: #f2f9f9;
  color: #282425;
  transition: background-color 300ms ease-out, color 300ms ease-out;
}

nav.menu--main > div > li > a.menu-item-custom[data-submenu="3"].active::after {
  background-image: url("../assets/icons/Chevron_Up.svg");
}

nav.menu--main > div > li > a.menu-item-custom[data-submenu="4"] {
  background-color: #ff6a2d;
  border: 2px solid #ff6a2d;
  color: #282425;
}

nav.menu--main > div > li > a.menu-item-custom[data-submenu="4"]:hover {
  background-color: #f2f9f9;
  border: 2px solid #f2f9f9;
  transition: background-color 300ms ease-out, color 300ms ease-out;
}

/* ### Submenu móvil ### */

.mobile-menu {
  display: none;
  background-color: #282425;
  padding: 24px;
}

.mobile-menu.active {
  display: block;
  position: absolute;
  width: 100%;
  top: 69px;
  left: 0;
  z-index: 1;
}

.mobile-menu-item {
  text-align: center;
  display: block;
  padding: 12px 16px;
  color: #f2f9f9;
  text-decoration: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: -1px;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item:hover {
  background-color: #f2f9f9;
  color: #282425;
  transition: background-color 300ms ease-out, color 300ms ease-out;
}

/* ### Submenú desktop ### */
.submenu-content {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0;
  min-width: 162px;
  z-index: 1;
  list-style: none;
  margin-bottom: 0;
  top: 85px;
  left: 106px;
}

.submenu-content li {
  padding: 0;
}

.submenu-content li a {
  display: block;
  padding: 12px 16px;
  color: #282425;
  text-decoration: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.submenu-content li:first-of-type a:hover {
  background-color: #ff6a2d;
  transition: background-color 300ms ease-out, color 300ms ease-out;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-weight: 800;
}

.submenu-content li:last-of-type a:hover {
  background-color: #ff6a2d;
  transition: background-color 300ms ease-out, color 300ms ease-out;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 800;
}

/* ### Footer ### */

.region-footer-ecommerce {
  margin-right: 0;
  margin-left: 0;
}

section.row,
.ecommerce-footer > div.row,
.ecommerce-footer > div.row > div.footer,
.ecommerce-footer > div.row > div.footer > div.row,
.ecommerce-footer > div.row > div.bottom-footer,
.ecommerce-footer > div.row > div.bottom-footer > div.row {
  --bs-gutter-x: 0;
}

.ecommerce-footer {
  background-color: #ebf2f2;
}

.ecommerce-footer > div {
  --bs-gutter-x: 0;
}

.top-footer {
  background-color: #282425;
  border-radius: 4px;
  padding: 24px;
}

.containerImage {
  width: 44px;
}

.social-icons {
  width: 165px;
}

.lista-social {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.lista-social > a {
  width: 54px;
  padding: 15px 21px;
}

.lista-social > a > i {
  color: #f2f9f9;
  font-size: 22px;
}

.col-button-top > h5 {
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.col-button-top > ul > li {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  color: #000;
  padding: 8px 12px;
}

.col-button-top > ul > li > a {
  text-decoration: none;
  color: #000;
}

.w-80 {
  width: 80%;
}

/* ### Desktop styles ### */

@media (max-width: 767px) {
  nav.menu--main > div > li > a.menu-item-custom[data-submenu="4"] {
    font-size: 0;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav.menu--main > div > li > a.menu-item-custom[data-submenu="4"]::after {
    content: "Regístrate ahora";
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
  }
}

@media (min-width: 768px) {
  /* ### Header ### */
  nav.menu--main {
    height: 100px;
  }

  nav.menu--main > div > li:nth-of-type(1) {
    margin-right: -16px;
  }

  nav.menu--main > div > li:nth-of-type(1),
  nav.menu--main > div > li:nth-of-type(2) {
    display: list-item;
    height: 100%;
  }

  nav.menu--main > div > li:nth-of-type(1) > a.menu-item-custom,
  nav.menu--main > div > li:nth-of-type(2) > a.menu-item-custom {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 32px;
    border-radius: 0;
  }

  nav.menu--main > div > li:nth-of-type(1) > a.menu-item-custom:hover,
  nav.menu--main > div > li:nth-of-type(2) > a.menu-item-custom:hover {
    background-color: #f2f9f9;
    color: #282425;
    transition: background-color 300ms ease-out, color 300ms ease-out;
  }

  nav.menu--main > div > li > a.menu-item-custom {
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    line-height: 14px;
  }

  nav.menu--main > div > li > a.menu-item-custom[data-submenu="3"] {
    padding-right: 62px;
  }

  nav.menu--main > div > li > a.menu-item-custom[data-submenu="3"]::after {
    right: 32px;
  }

  .containerMenu {
    display: none;
  }

  /* ### Submenú desktop ### */
  .submenu-content {
    min-width: 194px;
    left: auto;
  }

  /* ### Footer ### */

  .w-md-100 {
    width: auto;
  }
}
