/*! gulp v1.0.0 | (c) 2023 Luis Pastén | ISC License */
.header-mobile {
  background-color: #F5F7FA;
  height: 52px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  -webkit-transition: left .4s;
  transition: left .4s;
  z-index: 1030;
  box-shadow: 0 2px 4px -1px rgba(62, 75, 88, 0.25);
}

@media (min-width: 992px) {
  .header-mobile {
    display: none;
    left: 0;
  }
}

.header-mobile__wrapper {
  display: -webkit-box;
  display: flex;
  height: 100%;
  color: #F5F7FA;
}

.header-mobile__brand {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
}

.header-mobile__brand > img {
  width: 70px;
}

.header-mobile__item {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.header-mobile__item:nth-child(2) {
  -webkit-box-flex: 0;
  flex: 0 0 100px;
}

.header-mobile__item:nth-child(3) {
  -webkit-box-flex: 1;
  flex: auto 0 50px;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.header-mobile__item:nth-child(4) {
  -webkit-box-flex: 0;
  flex: 0 0 50px;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.header-mobile__menu-btn {
  color: #3E4B58;
  height: 100%;
  outline: none;
  font-size: 2rem;
  -webkit-tap-highlight-color: rgba(250, 250, 250, 0);
  cursor: pointer;
  border: none;
  background: transparent;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  padding: 0 .8em 0 0;
}

.header-mobile__menu-btn:focus {
  outline: none;
}

.header-mobile__search {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: transparent;
  padding: 0 .5em;
  outline: none;
  border: 0;
  color: #3E4B58;
  font-size: 1.6rem;
  height: 100%;
}

.header-mobile__search:focus {
  outline-style: none;
  outline: 0;
}

.header-mobile__search:hover {
  color: #3E4B58;
}

.header-mobile__search-container {
  position: absolute;
  top: 110%;
  width: 100%;
  right: 0;
  background-color: #F5F7FA;
  z-index: 1030;
  border-radius: .4em;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  color: #3E4B58;
  display: none;
}

.header-mobile__search-container > h3 {
  padding: 1em 1em 0 1em;
}

.header-mobile__search-container .input-group {
  padding: 0 1em 1em 1em;
}

.header-mobile__search-closebtn {
  position: absolute;
  right: 0;
  top: 0;
  padding: .5em 1em 1em 1em;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
}

.header-mobile__search-closebtn:focus {
  outline-style: none;
  outline: none;
}

.header-mobile__search-closebtn:hover > svg {
  color: #2A9DF4;
}

.header-mobile__search-result {
  padding: 1em 1em;
  border-bottom: 1px solid #d3dce9;
  display: block;
  height: 100%;
}

.header-mobile__search-result-title {
  display: block;
  font-size: 1.1rem;
  color: #2A9DF4;
}

.header-mobile__search-result:last-child {
  border-bottom: 0;
}

.header-mobile__search-result:hover {
  background-color: #e4e9f2;
  cursor: pointer;
}

.header-mobile__cart {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  outline: 0;
  border: 0;
  height: 100%;
  padding: 0 .5em;
  position: relative;
}

.header-mobile__cart > svg {
  color: #3E4B58;
  font-size: 1.8rem;
}

.header-mobile__cart:active, .header-mobile__cart:focus {
  outline-style: none;
  outline: 0;
}

.header-mobile__cart:hover {
  cursor: pointer;
}

.header-mobile__cart:before {
  content: attr(data-count);
  background-color: #F7C947;
  color: #3E4B58;
  position: absolute;
  font-size: .8rem;
  font-weight: 700;
  right: 2px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.navbar-menu {
  height: 100%;
  width: 260px;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: -260px;
  color: #3E4B58;
  background-color: #F5F7FA;
  overflow-x: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding-top: 52px;
  padding-bottom: 65px;
  font-size: 14px;
}

@media (min-width: 992px) {
  .navbar-menu {
    left: -260px !important;
  }
}

.navbar-menu__header {
  background-color: #ebeff5;
  border-bottom: 1px solid #C2C9D4;
  height: 52px;
  position: absolute;
  width: 100%;
  top: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.navbar-menu__header > span {
  font-weight: 700;
  padding-left: 1em;
  font-size: 18px;
}

.navbar-menu__body {
  overflow-y: scroll;
  height: calc(100%);
  padding-top: 1em;
}

.navbar-menu__section {
  padding: 0;
}

.navbar-menu__section > h3 {
  padding: 0em .5em;
}

.navbar-menu__item-sub {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.navbar-menu__item-sub > button {
  border: 0;
  outline: 0;
  background: none;
  color: #3E4B58;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.2rem;
  padding: 0 .5em 0 .7em;
}

.navbar-menu__item-link {
  padding: .5em;
  display: block;
  color: #3E4B58;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-menu__item-link:hover {
  text-decoration: none;
}

.navbar-menu__sublist {
  padding-left: .8em;
  list-style: none;
  padding-bottom: .5em;
  padding-top: .5em;
  display: none;
}

.navbar-menu__list {
  list-style: none;
  padding-left: .5em;
}

.navbar-menu__close-btn {
  color: #3E4B58;
  padding: .1em .5em;
  font-size: 2rem;
}

.navbar-menu__close-btn:hover {
  color: #3E4B58;
}

.navbar-menu__close-btn:focus {
  outline: none;
}

.navbar-menu__footer {
  position: absolute;
  bottom: 0;
  background-color: #2A9DF4;
  display: -webkit-box;
  display: flex;
  height: 65px;
  width: 100%;
  color: #F5F7FA;
  box-shadow: 0 -5px 5px -5px rgba(42, 157, 244, 0.5);
}

.navbar-menu__footer-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  font-size: 14px;
}

.navbar-menu__footer-item:nth-child(1) {
  border-right: 1px solid rgba(245, 247, 250, 0.3);
}

.navbar-menu__info-icon {
  width: 30px;
  height: 30px;
  border: 3px solid #F5F7FA;
  display: -webkit-box;
  display: flex;
  margin: auto;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.navbar-menu__info-whats {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: auto;
  font-size: 2rem;
}

.navbar-menu__link {
  color: #F5F7FA;
  text-decoration: none;
  outline: 0;
}

.navbar-menu__link:hover, .navbar-menu__link:focus, .navbar-menu__link:active {
  color: #F5F7FA;
  outline: 0;
  text-decoration: none;
}

.body-overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

@media (min-width: 992px) {
  .body-overlay {
    width: 0 !important;
    opacity: 0 !important;
  }
}

.header-desktop {
  display: none;
}

@media (min-width: 992px) {
  .header-desktop {
    display: block;
  }
}

.header-desktop__wrapper {
  width: 100%;
  height: 100%;
}

.header-desktop__wrapper--info {
  background-color: #F5F7FA;
}

.header-desktop__wrapper--nav {
  background-color: #2A9DF4;
}

.header-desktop__info-nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 34px;
  font-size: 14px;
}

.header-desktop__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
  font-size: 14px;
}

.header-desktop__info-list > li {
  margin-right: 1em;
}

.header-desktop__info-list > li a {
  color: #3E4B58;
  font-size: 13px;
  font-weight: 700;
}

.header-desktop__info-list > li a:hover {
  color: black;
}

.header-desktop__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.header-desktop__social-link {
  color: #3E4B58;
  font-size: 1rem;
}

.header-desktop__social-link:nth-child(1) > span {
  font-size: 14px;
}

.header-desktop__social-link:hover {
  color: black;
}

.header-desktop__social-item {
  margin-right: 1.2em;
}

.header-desktop__social-item:nth-child(1) {
  border-right: 1px solid #8698a9;
  padding-right: 1em;
}

.header-desktop__social-item:nth-child(4) {
  margin-right: 0;
}

.header-desktop__navbar {
  height: 63px;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.header-desktop__navbar-categories {
  width: auto;
  height: auto;
  padding: 1em;
  position: absolute;
  z-index: 1030;
  background-color: #ebeff5;
  overflow-y: hidden;
  box-sizing: border-box;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .header-desktop__navbar-categories {
    width: 800px;
    padding: 2em;
  }
}

.header-desktop__navbar-categories-title {
  font-weight: 700;
  padding-bottom: .2em;
  font-size: 1.1rem;
}

.header-desktop__navbar-categories-products {
  list-style: none;
  padding: 0;
}

.header-desktop__navbar-categories-products > li a {
  color: #687e94;
  font-size: 14px;
}

.header-desktop__navbar-categories-column {
  flex-basis: 31%;
  padding-right: 3%;
}

.header-desktop__navbar-categories-column:nth-child(3) {
  padding-right: 0;
}

.header-desktop__navbar-categories-body {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.header-desktop__navbar-categories-seeall {
  color: #9d9d92 !important;
  text-decoration: underline;
  -webkit-transition: .2s color;
  transition: .2s color;
}

.header-desktop__navbar-categories-seeall:hover {
  color: #2a9df4 !important;
}

.header-desktop__navbar-item {
  height: 100%;
}

.header-desktop__navbar-item:nth-child(1) {
  -webkit-box-flex: 0;
  flex: 0 0 120px;
}

.header-desktop__navbar-item:nth-child(2) {
  -webkit-box-flex: 1;
  flex: 1 0 auto;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.header-desktop__navbar-item:nth-child(3) {
  -webkit-box-flex: 0;
  flex: 0 0 290px;
}

.header-desktop__navbar-brand {
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
}

.header-desktop__navbar-brand > img {
  width: 76px;
}

.header-desktop__navbar-menu {
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}

.header-desktop__navbar-item-menu {
  height: 100%;
}

.header-desktop__navbar-link {
  color: #e4e9f2;
  font-weight: 700;
  -webkit-transition: color .2s;
  transition: color .2s;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 0 1em;
}

.header-desktop__navbar-link:hover {
  color: #F5F7FA;
  text-decoration: none;
}

.header-desktop__navbar-controls {
  display: -webkit-box;
  display: flex;
  height: 100%;
  width: auto;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.header-desktop__navbar-control {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.header-desktop__navbar-search {
  background-color: transparent;
  padding: 0 .5em;
  outline: none;
  border: 0;
  color: #F5F7FA;
  font-size: 1.6rem;
  height: 100%;
}

.header-desktop__navbar-search:focus {
  outline-style: none;
  outline: 0;
}

.header-desktop__navbar-search-container {
  position: absolute;
  top: 120%;
  width: 400px;
  right: 0;
  background-color: #ebeff5;
  z-index: 1030;
  border-radius: .4em;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: none;
}

.header-desktop__navbar-search-container > h3 {
  padding: 1em 1em 0 1em;
}

.header-desktop__navbar-search-container .input-group {
  padding: 0 1em 1em 1em;
}

.header-desktop__navbar-search-closebtn {
  position: absolute;
  right: 0;
  top: 0;
  padding: .5em 1em 1em 1em;
  background-color: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
}

.header-desktop__navbar-search-closebtn:focus {
  outline-style: none;
  outline: none;
}

.header-desktop__navbar-search-closebtn:hover > svg {
  color: #2A9DF4;
}

.header-desktop__navbar-search-result {
  padding: 1em 1em;
  border-bottom: 1px solid #d3dce9;
  display: block;
  height: 100%;
}

.header-desktop__navbar-search-result-title {
  display: block;
  font-size: 1.1rem;
  color: #2A9DF4;
}

.header-desktop__navbar-search-result:last-child {
  border-bottom: 0;
}

.header-desktop__navbar-search-result:hover {
  background-color: #e4e9f2;
  cursor: pointer;
}

.header-desktop__navbar-cart {
  color: #F5F7FA;
  font-size: 1.6rem;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: .8em;
  padding-right: .1em;
}

.header-desktop__navbar-cart:hover {
  color: #F5F7FA;
  text-decoration: none;
  background-color: #0c8dee;
}

.header-desktop__navbar-cart > span {
  font-size: 1rem;
}

.header-desktop__navbar-cart-icon {
  margin-left: .5em;
  margin-right: .5em;
  position: relative;
}

.header-desktop__navbar-cart-icon > svg {
  font-size: 1.8rem;
}

.header-desktop__navbar-cart-icon:before {
  content: attr(data-count);
  width: 20px;
  height: 20px;
  background-color: #F7C947;
  position: absolute;
  bottom: -.2em;
  right: -.6em;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #3E4B58;
}

.header-desktop__mini-cart {
  background-color: #ebeff5;
  position: absolute;
  top: 100%;
  width: 270px;
  right: 0;
  z-index: 1030;
  display: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.header-desktop__mini-cart-item {
  display: -webkit-box;
  display: flex;
  padding: 1em;
  border-bottom: 1px solid #C2C9D4;
}

.header-desktop__mini-cart-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
}

.header-desktop__mini-cart-photo > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-desktop__mini-cart-info {
  width: 190px;
  font-size: 14px;
  line-height: 18px;
}

.header-desktop__mini-cart-deletebtn {
  padding: 0;
  background: none;
  border: none;
  outline: 0;
  margin-right: .2em;
}

.header-desktop__mini-cart-deletebtn:focus {
  outline-style: none;
  outline: 0;
}

.header-desktop__mini-cart-deletebtn:hover {
  color: #E03A3E;
}

.header-desktop__mini-cart-product {
  list-style: none;
  color: #3E4B58;
}

.header-desktop__mini-cart-product:hover {
  color: #3E4B58;
}

.header-desktop__mini-cart-product--variant {
  color: #a4afbf;
}

.header-desktop__mini-cart-price {
  padding-top: .5em;
  font-weight: 700;
  display: block;
}

.header-desktop__mini-cart-subtotal {
  text-align: center;
  font-weight: 700;
  padding-bottom: 1em;
}

.header-desktop__mini-cart-subtotal > span:nth-child(1) {
  color: #3E4B58;
}

.header-desktop__mini-cart-subtotal > span:nth-child(2) {
  color: #2A9DF4;
}

.header-desktop__mini-cart-count {
  padding: 1em;
}

.header-desktop__mini-cart-no-products {
  margin-top: 1.2em;
  text-align: center;
}

.menu-active {
  background-color: #0c8dee;
}

.menu-active-mobile {
  background-color: #e5e9ed;
}

.footer {
  background-color: #272723;
  padding: 2em 0 1em;
  text-align: center;
  color: #808080;
}

@media (min-width: 576px) {
  .footer {
    text-align: left;
  }
}

.footer__brand {
  width: 100px;
}

@media (min-width: 992px) {
  .footer__brand {
    width: 125px;
  }
}

.footer__title {
  font-weight: 700;
  color: #F5F7FA;
  padding: 1em 0;
  font-size: 18px;
}

.footer__item {
  margin-bottom: 1em;
}

.footer__item--title {
  color: #F5F7FA;
  display: block;
  padding: 0;
  margin: 0;
}

.footer__item--text {
  color: #808080;
  padding: 0;
  margin: 0;
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__link {
  color: #808080;
}

.footer__link:hover, .footer__link:focus, .footer__link:active {
  color: #F5F7FA;
}

.footer__payments-methods {
  width: 290px;
}

.footer__endtext {
  margin: 1em 0 0 0;
  text-align: center;
}

.footer__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .footer__social {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.social-bar {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: flex;
}

.social-bar--center {
  -webkit-box-pack: center;
  justify-content: center;
}

.social-bar__item {
  background-color: #33332F;
  width: 40px;
  height: 40px;
  margin-right: .4em;
}

.social-bar__item--is-light {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #F5F7FA;
  margin-right: 0.8em;
}

.social-bar__link {
  color: #F5F7FA;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.social-bar__link--is-light > svg {
  color: #3E4B58;
}

.social-bar__link:focus, .social-bar__link:active {
  color: #F5F7FA;
}

.social-bar__link:hover {
  color: #3E4B58;
  background-color: #F5F7FA;
}
