:root {
  --warning: #EF7F00;
}

main {
  min-height: calc(100vh - 440px);
}

/*
@media screen and (max-width: 970px) {
  main{
    margin-top: 60px;
  }
}
*/
.discount {
  position: absolute;
  left: 0px;
  top: 20px;
  background: var(--color-secondary);
  color: #fff;
  padding: 7px 15px 7px 15px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .discount {
    padding: 5px 10px 5px 10px;
    font-size: 12px;
  }
}

.navbar-expand-md .navbar-nav .nav-link {
  padding: .3rem;
}

.show-more:active,
.show-more:focus,
.show-more:hover {
  text-decoration: none;
}

.show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

span.dropdown-toggle::after {
  position: absolute;
  top: 18px;
  right: -2px;
}

.navigation-wrap {
  position: relative;
  z-index: 999;
}

#search-container {
  transform: translateY(-200px);
  height: 0;
  transition: all .1s;
  position: relative;
  z-index: 1;
}

#search-container.active {
  height: auto;
  padding-bottom: 1rem;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 82, 129, 0.25);
}

.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}

.btn.btn-color-secondary {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  border-radius: 20px;
}

body {
  background: #EDF1EE;
  font-family: 'Wix Madefor Display', sans-serif;
  /* background:#f6f6f6; */
  /* background:linear-gradient(180deg, rgba(0,0,0,1) 0, rgba(0,0,0,1) 200px, rgba(246,246,246,1) 201px); */
}

h1.title {
  font-size: 24px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  grid-row-end: span 4;
}

.layout-grid.products {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.layout-grid {
  max-width: 1400px;
  width: 100%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  grid-gap: 20px;
  grid-column-gap: 20px;
}

.layout-grid .banner-categoria img {
  min-height: 220px;
  object-fit: cover;
  object-position: left bottom;
}

.container-box {
  max-width: 1400px;
  width: 100%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 10px;
  /* grid-auto-rows: auto;  */
  grid-auto-flow: dense;
  grid-gap: 10px;
  /* Añade espaciado entre los items, si lo deseas */
  grid-column-gap: 10px;
  /* USANDO COLUMNS */
  /* columns: 4;
  column-gap: 10px; */
}

.container-box .product.end-lg {
  grid-row-end: span 19;
}

.container-box .product.end-sm {
  grid-row-end: span 16;
}

.container-box .product {
  width: 100%;
  /* COLUMNS */
  /* margin-bottom: 10px; */
  /* break-inside: avoid; */

  /* GRID */
  grid-row-end: span 17;
  align-content: start;
}

.container-box .product img,
.layout-grid .product img {
  max-width: 100%;
  border-radius: 10px;
}

.container-box .product,
.layout-grid .product {
  background: #fff;
  padding: 15px;
  color: #000;
  width: 100%;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  position: relative;
}

.container-box .product a,
.layout-grid .product a {
  text-decoration: none;
  color: #000;
}

.container-box .product .img-product,
.layout-grid .product .img-product {
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
}

.container-box .product .img-product img,
.layout-grid .product .img-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.layout-grid .product {
  min-height: 365px;
  height: auto;
}

@media (min-width: 1200px) {
  .layout-grid.products {
    grid-template-columns: repeat(4, 1fr);
    /* Fijar 4 columnas en tamaños grandes */
  }

  .layout-grid.mayorista .product {
    min-height: 400px;
  }

  .layout-grid .product {
    min-height: 375px;
  }
}

.container-box .product p::first-line,
.layout-grid .product p::first-line {
  font-weight: 600;
}

.layout-grid .product.lg p {
  width: 100%;
  min-height: 155px;
}

.layout-grid .product p {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 0;
}

.container-box .product p {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px;
  font-weight: 400;
  width: 90%;
  margin-bottom: 0;
  max-height: 77px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.layout-grid.mayorista .product .actions-product {
  height: 113px;
}

.layout-grid .product .actions-product.lg {
  height: 90px;
}

.layout-grid .product .actions-product {
  height: 80px;
}

.layout-grid .product .actions-product .btn-add-cart:hover {
  filter: drop-shadow(0px 1px 1px #00000050);
}

.layout-grid .product .actions-product .btn-add-cart {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0px);
  margin: 0;
  width: 100%;
  background: #2095CE;
  border-radius: 5px;
  color: white;
}

.container-box .product .actions-product,
.layout-grid .product .actions-product {
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 30px);
}

.container-box .product .actions-product span,
.layout-grid .product .actions-product span {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.container-box .product .actions-product button,
button.favorite,
.layout-grid .product .actions-product button.fav {
  /* position: absolute;
  bottom: -2px;
  right: -7px; */
  background: var(--color-secondary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-box .product .actions-product button i,
.layout-grid .product .actions-product button i {
  height: 26px;
}

.text-warning {
  color: var(--warning) !important;
}

.btn-add-cart {
  background: #F6F6F6 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 3px #00000029;
  font-size: .8rem;
  transition: .4s;
  margin: 18px;
  margin-bottom: 5px;
  width: -webkit-fill-available;
  position: relative;
  bottom: 18px;
  width: 85%;
}

.btn-add-cart:hover {
  background: var(--color-secondary);
  color: #fff;
}

.pointer {
  cursor: pointer !important;
}

.height-auto {
  height: auto !important;
}

.color-mcd {
  color: var(--color-mcd) !important;
}

.r-0 {
  right: 0px !important;
}

.l-0 {
  left: 0px !important;
}

.navbar-height-mcd {
  /* height: 90px; */
  /* height: 112px; */
  height: auto;
  padding: 10px 0px;
}

.navbar {
  transition: .4s;
}

.btn-success:hover,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle,
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-success.dropdown-toggle:focus {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--theme);
  box-shadow: inset 0px 0px 2px 1px #000;
}

.btn-success {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.btn-success.disabled,
.btn-success:disabled,
.btn-add-cart:disabled,
.btn-add-cart.disabled {
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
}

/* BUTTONS MCD */
.btn-mcd {
  font-weight: 600;
  color: var(--theme);
  background-color: var(--mcd);
  border-color: var(--mcd);
}

.btn-mcd:hover {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-check:focus+.btn-mcd,
.btn-mcd:focus {
  color: #fff;
  background-color: var(--mcd);
  border-color: var(--mcd);
  box-shadow: 0 0 0 0.25rem var(--mcd);
}

.btn-check:checked+.btn-mcd,
.btn-check:active+.btn-mcd,
.btn-mcd:active,
.btn-mcd.active,
.show>.btn-mcd.dropdown-toggle {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-check:checked+.btn-mcd:focus,
.btn-check:active+.btn-mcd:focus,
.btn-mcd:active:focus,
.btn-mcd.active:focus,
.show>.btn-mcd.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 20, 21, 0.5);
}

.btn-mcd:disabled:hover,
.btn-mcd.disabled:hover,
.btn-add-cart.disabled:hover {
  background: #b3b3b3;
  color: #000;
  cursor: not-allowed;
  border-color: #b3b3b3;
}

.btn-mcd:disabled,
.btn-mcd.disabled {
  opacity: .65;
}

.text-black {
  color: #000 !important;
}

.btn-transparent {
  background-color: transparent;
  border-color: transparent;
}

.btn-transparent:focus {
  box-shadow: none !important;
}

tr.va-middle td {
  vertical-align: middle !important;
}

.btn-outline-mcd {
  color: var(--mcd);
  border-color: var(--mcd);
}

.btn-outline-mcd:hover {
  color: #fff;
  background-color: var(--mcd);
  border-color: var(--mcd);
}

.btn-outline-mcd:focus,
.btn-outline-mcd.focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 140, 20, 0.5);
}

.btn-outline-mcd.disabled,
.btn-outline-mcd:disabled {
  color: var(--mcd);
  background-color: transparent;
}

.btn-outline-mcd:not(:disabled):not(.disabled):active,
.btn-outline-mcd:not(:disabled):not(.disabled).active,
.show>.btn-outline-mcd.dropdown-toggle {
  color: #fff;
  background-color: var(--mcd);
  border-color: var(--mcd);
}

.btn-outline-mcd:not(:disabled):not(.disabled):active:focus,
.btn-outline-mcd:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 140, 20, 0.5);
}

.br-0 {
  border-radius: 0 !important;
}

.bg-main {
  background-color: var(--mcd);
  width: 100%;
  height: 16rem;
}

.bg-mcd {
  background-color: var(--mcd);
}

.navbar-dark .navbar-toggler:focus {
  outline: none;
  /* border: 1px solid white; */
}

.carrito-mobile {
  width: 40px;
  height: 40px;
  position: relative;
  background: #296f37;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}

.carrito-mobile a {
  position: relative;
  top: 2px;
}

.carrito-mobile span {
  position: absolute;
  left: 17px;
  top: -1px;
}

.navbar-collapse.show .carousel {
  display: none;
}

.bg-cart {
  background: var(--mcd);
}

.btn-add-cart-mobile {
  font-size: .7rem;
  position: absolute;
  bottom: -17px;
  /* left: 50%; */
  /* transform: translate(-50%); */
  padding: 10px;
  text-align: center;
}

.carrito-mobile svg {
  margin-left: 2px;
  padding-left: 0px;
}

.navbar.bg-mcd .nav-link {
  color: var(--theme);
}

.nav-item a.nav-link,
.nav-item span.nav-link {
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.bg-gray {
  background-color: #DDDDDD;
}

.br-50 {
  border-radius: 50%;
}

.display-contents {
  display: contents;
  cursor: pointer;
}

.mt--6 {
  margin-top: -9.5rem;
}

.mt--2 {
  margin-top: -1rem;
}

.font-weight-600 {
  font-weight: 600;
}

.custom-control-label-mcd {
  padding-top: 4px;
  padding-left: 8px;
}

.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: var(--color-secondary) !important;
  background-color: var(--color-secondary) !important;
}

.custom-control-input:focus~.custom-control-label::before {
  /*box-shadow: 0 0 0 0.2rem rgb(209 20 21 / 25%);*/
  box-shadow: none;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
  /* border-color: var(--mcd); */
  border-color: #adb5bd;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
  color: #fff;
  background-color: var(--mcd)74;
  border-color: var(--mcd)74;
}

.form-group label {
  color: #646464;
}

.custom-control-label-mcd::before {
  width: 1.5rem;
  height: 1.5rem;
}

.custom-control-label-mcd::after {
  top: 0.5rem;
  left: -1.25rem;
}

.menu-buscador {
  display: block;
  width: 580px;
}

.buscador-principal {
  height: 30px;
  font-size: .8rem;
  /* border-right: 0; */
  padding: 18px 10px;
  /* border-radius: 0 !important; */
}

input.buscador-principal::placeholder {
  font-style: italic;
}

.buscador-input-group {
  position: relative;
}

.buscador-input-group button {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  padding-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  height: 80%;
  display: flex;
  align-items: center;
  transition: .3s;
}

.buscador-input-group button:hover {
  background: #f1f1f1;
}

.buscador-input-group button i svg path {
  transition: .3s;
}

.buscador-input-group button:hover i svg path {
  fill: #646464;
}

.menu-nav {
  width: 110%;
  display: flex;
  flex-wrap: wrap;
}

.menu-nav a img {
  height: 30px;
}

.menu-nav a.subnavbtn {
  margin-top: 8px;
}

.menu-nav a {
  color: #6A6A6A;
  font-size: .6rem;
  /* margin-top: 14px; */
  /* margin-right: 20px; */
  /* margin-right: .5rem; */
  white-space: nowrap;
  text-decoration: none;
  padding-right: .5rem;
  display: flex;
  align-items: center;
}

.menu-nav a:last-child {
  border-right: none;
}

.menu-nav a:hover {
  /* color: rgba(255, 255, 255, 0.75); */
  /* filter: contrast(0.5); */
}

.product-show-header {
  color: var(--theme);
  text-align: center;
}

.dropdown-menu.show a img,
.dropdown-menu.show a svg {
  margin-right: 5px;
  width: 20px;
}

.dropdown-menu-glass {
  background: #f1f1f1a7;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  transition: 1s;
}

.dropdown-menu-glass.show {
  transition: 1s;
}

.dropdown-menu-glass.show::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 8px;
  width: 0px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f1f1f1a7;
}

.dropdown-menu-glass a img {
  height: 20px;
  margin-right: 5px;
  width: 20px;
  filter: brightness(0);
}

.dropdown-menu-glass a.subnavbtn {
  margin-top: 0px;
}

.dropdown-menu-glass a {
  color: #6A6A6A;
  font-size: 14px !important;
  margin-top: 7px;
  /* margin-right: 20px; */
  margin-right: 1.5rem;
  white-space: nowrap;
  text-decoration: none;
  padding-right: .5rem;
  display: flex;
  align-items: center;
}

.button-close-modal:active,
.button-close-modal:focus {
  outline: none;
}

.outline-none:focus {
  outline: none;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.text-color-secondary {
  color: var(--color-secondary) !important;
}

.bg-color-secondary {
  background: var(--color-secondary) !important;
}

.navbar-tucangua {
  background: #e0e0e0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  z-index: 999;
}

.bg-lightgray {
  background: #ccc;
}

.prettydropdown.border-lightgray-ul>ul {
  color: #8f8f8f;
}

.border-lightgray-ul ul {
  border: 1px solid #e7e7e7 !important;
}

.button-close-modal {
  position: absolute;
  right: 15px;
  top: 4px;
  font-size: 2rem !important;
  font-weight: 300 !important;
  opacity: .8;
  text-shadow: none;
}

.font-weight-300 {
  font-weight: 300;
}

/*
.dropdown-menu-glass::after{
  content: '';
  position: absolute;
  top: -10px;
  left: 10px;
  width: 10px;
  height: 10px;
  backdrop-filter: blur(5px);
  border: none;
  outline: none;
  background: conic-gradient(at 50% 50%,transparent 135deg,#f1f1f1a7 0,#f1f1f1a7 225deg, transparent 0);
}
*/
.dropdown-menu-glass a {
  color: #000;
  background: none;
  transition: .4s;
}

/* border bottom */
.dropdown-menu-glass a:hover {
  text-decoration: underline;
  background: none;
}

.bg-gray {
  background-color: #DDDDDD;
}

.display-inline-block {
  display: inline-block;
}

.visible-none {
  visibility: hidden;
}

.pointers-none:focus {
  box-shadow: none;
  outline: none;
}

.pointers-none:active {
  box-shadow: none;
  outline: none;
}

footer {
  background: #186489;
  padding: 1rem;
  width: 100%;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-grid-footer {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.footer-nav .site {
  display: block;
  align-self: start;
}

.footer-nav .site h5 {
  color: #CCDBC6;
  font-size: .8rem;
  font-weight: 600;
}

.footer-nav .site .links {
  display: flex;
  flex-direction: column;
}

.footer-nav .site .links a:first-child {
  margin-top: 0px;
}

.footer-nav .site .links a {
  color: #CCDBC6;
  font-size: 13px;
  font-weight: 400;
  padding-top: 5px;
}

footer .text-footer {
  text-align: center;
  color: #CCDBC6;
  font-size: 13px;
}

footer .text-copy {
  color: #9CB498;
  font-size: 13px;
}

.text-power {
  color: #CCDBC6;
}

.navbar {
  z-index: 9999;
}

.card-mobile-profile h1 {
  font-size: 17px;
  font-weight: 600;
}

.card-mobile-profile .actions {
  margin-left: 17px;
}

.card-mobile-profile .actions .btn {
  font-size: 13px;
  font-weight: 400;
  /* width: 110px; */
}

.icon-filter path {
  fill: var(--text-dark) !important;
}

.text-mcd {
  color: var(--color-secondary) !important;
}

.text-theme {
  color: var(--theme) !important;
}

.producto.subdominio {
  height: 360px !important;
  min-height: 360px !important;
}

a.categoria-inicio {
  font-size: .65rem;
  width: 100px;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: column;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .menu-nav {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .menu-nav a svg {
    margin-right: 10px;
  }

  .menu-nav a {
    color: #6A6A6A;
  }

  /*
  .menu-nav a{
    color: #000;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .menu-nav a svg{
    width: 18px !important;
    fill: #000;
    margin-right: 10px;
  }
  */
}

@media (max-width: 576px) {
  a.categoria-inicio img {
    width: 50px !important;
  }

  a.categoria-inicio {
    font-size: .6rem;
  }

  .producto .producto-bottom .description {
    margin-top: .2rem !important;
  }

  .producto .producto-bottom .price-sug {
    margin-top: 0px !important;
  }

  .bg-main {
    height: 7rem;
  }

  .text-profile {
    font-size: 1rem !important;
    margin-top: -1.4rem !important;
  }

  .producto.subdominio {
    height: 260px !important;
    min-height: 260px !important;
  }

  .producto.no-user {
    height: 250px !important;
    min-height: 250px !important;
  }

  h2.related {
    font-size: 1rem !important;
  }

  .carrito .badge {
    padding: 0.2em 0.2em !important;
    width: 20px;
    height: 20px;
  }

  .row-grid-footer {
    grid-template-columns: 1fr;
  }

  .text-footer {
    text-align: justify;
  }

  .producto .producto-bottom {
    padding-bottom: 35px !important;
  }

  .container-producto-mobile:nth-child(odd) {
    padding-right: 7px;
  }

  .container-producto-mobile:nth-child(even) {
    padding-left: 7px;
  }

  .container-producto-mobile .producto .producto-header span,
  .container-producto-mobile .producto .producto-header span span {
    font-size: .7rem;
  }

  .favorite button i svg {
    width: 20px;
    height: auto;
  }

  .container-producto-mobile .producto .image {
    height: 180px;
  }

  .container-producto-mobile .producto .img-brand {
    width: 40px;
    top: 153px;
  }

  .container-producto-mobile .producto .producto-bottom .price {
    font-size: 1rem;
  }

  .container-producto-mobile .producto .producto-bottom .price span {
    font-size: .6rem;
  }

  .container-producto-mobile .producto .producto-bottom .price-sug {
    font-size: .62rem;
  }

  .container-producto-mobile .producto .producto-bottom .description p {
    font-size: .7rem;
    height: 30px;
  }

  .buscador-principal {
    font-size: .8rem;
    height: 35px;
  }

  .menu-nav a {
    margin-top: 1.2rem;
    font-size: 15px;
    font-weight: 400;
  }

  .btn-sm-block {
    width: 100%;
  }

  .full-image {
    box-shadow: none !important;
  }

  .modal-dialog.modal-dialog-centered.eliminar {
    width: calc(100% - 15px) !important;
  }
}

.bg-pagination {
  background: var(--mcd) !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px !important;
}

.codigo-producto-header {
  position: relative;
  left: 15px;
  width: 100%;
}

.banner-mobile {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .px-sm-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-sm-3 {
    padding-left: .7rem !important;
    padding-right: .7rem !important;
  }

  .px-sm-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .menu-buscador {
    width: 100%;
  }

  .banner-mobile {
    height: 180px;
    object-fit: cover;
    object-position: 18%;
  }

  .row-grid-footer {
    grid-template-columns: 1fr 1fr;
  }

  .producto-header .favorite i {
    /* margin-right: 9px; */
  }

  .codigo-producto-header {
    left: 20px;
  }
}

@media (min-width: 576px) {
  .menu-buscador {
    width: 230px;
  }
}

@media (min-width: 768px) {
  .menu-buscador {
    width: 300px;
  }

  .cuit {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .menu-buscador {
    width: 430px;
  }

  .cuit {
    display: flex !important;
  }
}

@media (min-width: 1100px) {
  .menu-buscador {
    width: 450px;
  }
}

@media (min-width: 1200px) {
  .menu-buscador {
    width: 610px;
  }
}

.fade-scale {
  -webkit-transition: all .30s linear !important;
  -o-transition: all .30s linear !important;
  transition: all .30s linear !important;
  transform: scale(0) !important;
  opacity: 0 !important;
  display: block !important;
}

.fade-scale.show {
  opacity: 1 !important;
  transform: scale(1) !important;
}


/* PRODUCTOS */

.productos {
  margin-top: 2rem;
}

a.link-producto {
  text-decoration: none;
  width: 100%;
}

.producto.no-user {
  min-height: 300px;
  max-height: 300px;
  height: 300px;
}

.producto.lg {
  max-height: 430px;
}

.producto {
  min-height: 300px;
  max-height: 459px;
  height: auto;
  transition: .4s;
  padding-right: 0;
  padding-left: 0;
  box-shadow: 0px 2px 4px #00000029;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  background: #fff;
  border-radius: 13px;
}

.producto.slider {
  height: 100%;
}

.producto:hover {
  opacity: 0.9;
  /* box-shadow: 11px 7px 10px #00000029; */
  box-shadow: 0 7px 16px 0 rgb(0 0 0 / 20%), 0 1px 3px 0 rgb(0 0 0 / 10%);
}

.text-hover {
  transition: .3s;
}

.text-hover:hover {
  text-decoration: underline !important;
}

tr.border-y-none th {
  border-top: none;
  border-bottom: none;
}

tr.border-top-none td {
  border-top: none;
}

.outline-none,
.outline-none * {
  outline: none;
}

.producto .producto-header {
  width: 100%;
  height: 40px;
  background: var(--mcd);
  text-align: center;
  display: flex;
  align-items: center;
}

.producto .producto-header span {
  font-size: .8rem;
  font-weight: 400;
  color: var(--theme);
  line-height: 3;
}

.producto .producto-header span span {
  font-size: .8rem;
  font-weight: 600;
}

.favorite {
  z-index: 999;
  position: absolute;
  right: 12px;
  top: 12px;
}

.favorite i {
  font-size: .8rem;
  position: static;
  /* margin-right: 10px; */
  display: flex;
}

hr.dash {
  border: 0.5px dashed #707070;
}

.producto .image {
  width: 100%;
  height: 220px;
  background: #fff;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.producto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.producto .img-brand {
  position: absolute;
  width: 60px;
  top: 180px;
  right: 20px;
}

.producto.slider .img-brand {
  position: absolute;
  width: 50px;
  top: 40px;
  right: 10px;
}

.producto .img-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.producto .producto-bottom {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  height: 160px;
}

.producto .producto-bottom .price {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000;
}

.producto .producto-bottom .price span {
  font-size: .8rem;
  position: relative;
  top: -5px;
}

.producto .producto-bottom .price-sug {
  font-size: .75rem;
  font-weight: 300;
  font-style: italic;
  color: #646464;
  margin-top: -3px;
  height: 30px;
}

.producto .producto-bottom .description {
  margin-top: .2rem;
}

.cursor-none {
  cursor: initial !important;
}

.bt-0 {
  border-top: none !important;
}

.btn-hover-none:hover {
  background: var(--color-mcd);
}

.producto .producto-bottom .description p {
  font-size: .8rem;
  color: #000;
  height: 58px;
  overflow: hidden;
  margin-bottom: 0px;
}

.producto .producto-bottom .stock-legend span {
  font-size: .7rem;
}


/* FILTROS */
.list-group-item.active {
  background: #fff;
  /* border: 1px solid rgba(0,0,0,.125); */
  border: none;
}

.list-group-item.active,
.list-group-item.active a {
  font: normal normal bold .8rem Montserrat;
  color: #646464;
}

.list-group-item,
.list-group-item a {
  padding: .3rem;
  font: normal normal normal .8rem Montserrat;
  color: #646464;
  border: none;

}

.list-group-item.title,
.list-group-item.title a {
  background-color: #DDDDDD;
  border: none;
  color: #646464;
  font: normal normal bold .8rem Montserrat;
  margin-bottom: 10px;
}

.search-filter {
  color: #B3B3B3;
  font-size: 1.2rem;
}

.filter-group {
  width: 100%;
  height: 110px;
  overflow-y: scroll;
}

.filter-group .list-group-item {
  background: #F6F6F6;
  margin-top: 4px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: contrast(0.5);
}

i.wide svg path {
  fill: none;
}

i.solid svg path {
  fill: #fff;
}

i.wide.dark svg path {
  fill: none;
}

i.solid.dark svg path {
  fill: #000;
}

.dropdown-menu-glass a.dropdown-item,
.menu a {
  text-decoration: none;
  transition: .3s;
}

.dropdown-menu-glass a.dropdown-item:hover,
.menu a:hover {
  transform: scale(1.03);
}

a.link-menu,
.nav-item a.dropdown-item,
a.nav-link.carrito {
  font-size: .8rem;
}

.producto-promocion {
  position: absolute;
  top: 14px;
  left: 22px;
  padding: 8px;
  font-size: .65rem;
  width: 105px;
  border-radius: 4px;
  font-weight: 500;
}

.badge-promo-mcd {
  background: var(--mcd);
  color: white;
  padding: 5px;
  font-size: .65rem;
  width: 183px;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 15px;
  position: inherit;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .badge-promo-mcd {
    font-size: .5rem;
    width: 141px;
  }

  .producto.slider .producto-bottom .promo .badge-promo-mcd {
    width: 170px;
  }
}

.promo {
  height: 40px;
}

.badge-promo {
  background: #a6003a;
  color: white;
  text-transform: uppercase;
}

.modal {
  z-index: 10000;
}

.modal-backdrop {
  z-index: 9999;
}

.btn-disabled {
  cursor: not-allowed !important;
}

.modal-eliminar {
  z-index: 10000;
  padding: 20px;
}

.modal-eliminar h3 {
  font-size: 1.3rem;
  text-align: center;
}

.modal-eliminar .acciones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.modal-eliminar .acciones button {
  padding-left: 20px;
  padding-right: 20px;
}

.modal-dialog.modal-dialog-centered.eliminar {
  width: 430px;
}

.badge-yellow {
  background: #EFCF00;
  color: #000;
}

.carrito-icon:hover path,
.carrito-icon:hover circle {
  /* fill: #d0d0d0; */
  filter: contrast(.5);
}

.producto-eliminar {
  width: 100%;
}

.producto-eliminar .image {
  width: 100%;
  height: 200px;
  background: #fff;
}

.producto-eliminar .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.font-italic-placeholder::placeholder {
  font-style: italic;
}

a:hover .badge-hover {
  color: rgba(255, 255, 255, .75);
}

h1.breadcrumbs a,
h2.breadcrumbs a {
  color: #646464;
  text-decoration: none;
}

h1.breadcrumbs,
h2.breadcrumbs {
  font-size: .8rem;
  font-weight: 400;
  color: #646464;
}

.title-favoritos {
  color: #707070;
  font-size: .9rem;
  font-weight: 600;
}

.dropdown-menu-favoritos {
  background: #fff;
  border-radius: .25rem 2px .25rem .25rem;
  padding-bottom: 20px;
  box-shadow: 1px 4px 8px -3px rgb(0 0 0 / 68%);
  box-shadow: 1px 4px 8px -3px rgba(0, 0, 0, 0.68);
  -webkit-box-shadow: 1px 4px 8px -3px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 1px 4px 8px -3px rgba(0, 0, 0, 0.68);
  border-color: none;
}

.dropdown-menu-favoritos .container {
  max-height: 300px;
  overflow-y: scroll;
}

.dropdown-menu-right {
  right: -14px;
}

.dropdown-menu-favoritos.right.show::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 8px;
  width: 0px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

/* PRODUCTO HORIZONTAL */
.producto-horizontal {
  width: 100%;
  background: #fff;
}

.producto-horizontal a i {
  padding-left: 8px;
}

.producto-horizontal a {
  color: #000;
  text-decoration: none;
  display: flex;
  /* align-items: center; */
}

.producto-horizontal a .image {
  width: 100px;
  height: 90px;
  z-index: 4;
}

.producto-horizontal a .image img {
  width: 100%;
  height: inherit;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 4;
}

.producto-horizontal a .detalles {
  margin-top: 5px;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  z-index: 5;
}

.producto-horizontal a .detalles span {
  font-size: 12px;
  font-weight: 500;
}

.producto-horizontal a .detalles button.btn-detalles:hover {
  filter: brightness(.95);
}

.producto-horizontal a .detalles button.btn-detalles {
  font-size: .7rem;
  font-weight: 400;
  width: 100px;
  margin-top: 5px;
  background: linear-gradient(45deg, var(--mcd), var(--color-secondary));
  border: none;
  color: #fff;
  border-radius: 16px;
  padding: 2px;
}

.banner-top {
  width: 240px;
  height: 38px;
  display: flex;
  justify-content: end;
}

.social-media-icon {
  /* border: 1px solid var(--theme); */
  height: 30px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 5px;
  position: relative;
}

.ig {
  /* border: 1px solid var(--theme); */
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 5px;
  position: relative;
  padding-right: 10px;
}

.ig::after {
  content: '';
  width: 1px;
  height: 20px;
  background: #00B1F0;
  border-radius: 5px;
  position: absolute;
  right: 0;
}

.wp {
  /* border: 1px solid var(--theme); */
  border-left: none;
  padding: 6px 7px;
  display: flex;
}

.banner-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.justify-content-inherit {
  justify-content: inherit !important;
}

.badge-gray {
  background: #eaeaea83;
}

/* switch */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-switch:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider-switch {
  background-color: var(--mcd);
}

input:focus+.slider-switch {
  box-shadow: 0 0 1px var(--mcd)3;
}

input:checked+.slider-switch:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider-switch.round {
  border-radius: 34px;
}

.slider-switch.round:before {
  border-radius: 50%;
}

.left-auto {
  left: auto !important;
}


/* Shopping cart */
.shopping-cart {
  /* padding-bottom: 50px; */
  min-height: 60vh;
}

.shopping-cart .content {
  /* box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.055); */
  /* background-color: white; */
}

.shopping-cart .block-heading {
  padding-top: 25px;
  margin-bottom: 15px;
  text-align: left;
}

.shopping-cart .block-heading h2 {
  font-size: 1.4rem;
}

.shopping-cart .block-heading h1,
.shopping-cart .block-heading h2,
.shopping-cart .block-heading h3 {
  /* margin-bottom:1.2rem; */
  color: var(--dark);
}

.shopping-cart .items {
  margin: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 135px;
}

.shopping-cart .items .product:nth-child(1) {
  border-top: none;
}

.shopping-cart .items .product {
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e4e4e4;
}

.shopping-cart .items .product .info {
  padding-top: 0px;
  text-align: left;
  height: calc(100% - 5px);
}

.shopping-cart .items .product .info .product-name {
  font-weight: 600;
  font-size: .8rem;
}

.shopping-cart .items .product .info .product-name .product-info {
  font-size: 14px;
  margin-top: 15px;
}

.shopping-cart .items .product .info .product-name .product-info .value {
  font-weight: 400;
}

.shopping-cart .items .product .info .quantity label {
  font-size: .8rem;
}

.shopping-cart .items .product .info .quantity .quantity-input {
  /* margin: auto; */
  width: 80px;
  text-align: center;
  font-size: .8rem;
}

.shopping-cart .items .product .info .price {
  /* margin-top: 15px; */
  align-self: center;
  font-weight: 400;
  font-size: 1.2rem;
}

.summary {
  border-top: 2px solid var(--color-mcd);
  background-color: #f7fbff;
  height: auto;
  padding: 20px;
  position: fixed;
  bottom: 0px;
}

.summary h3 {
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
}

.summary .summary-item:not(:last-of-type) {
  padding-bottom: 10px;
  padding-top: 10px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.summary .text {
  font-size: 1em;
  font-weight: 600;
}

.summary .price {
  font-size: 1.1em;
  float: right;
}

.summary button {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .shopping-cart .block-heading {
    background: #F9F9F9;
    padding: 10px;
    border-radius: 10px;
  }

  .product-name {
    /* padding-left: 5px; */
    padding-right: 15px;
  }

  .quantity {
    margin-top: 10px;
    padding-left: 5px;
  }

  .shopping-cart .items .product {
    margin-bottom: 15px;
  }

  .shopping-cart .items .product .info .price {
    margin-top: 10px;
    text-align: end;
  }

  .producto .producto-bottom {
    height: 150px;
  }
}

@media (min-width: 768px) {
  .shopping-cart .items .product .info {
    padding-top: 25px;
    text-align: left;
  }

  .shopping-cart .items .product .info .price {
    font-weight: 400;
    font-size: 1rem;
    /* top: 17px;  */
  }

  .shopping-cart .items .product .info .quantity {
    text-align: center;
  }

  .shopping-cart .items .product .info .quantity .quantity-input {
    padding: 4px 10px;
    text-align: center;
  }
}

.container-producto-mobile {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.fill-theme {
  fill: var(--theme);
}

.fill-dark {
  fill: #000;
}

.select-ml {
  border: none;
  outline: none;
  font-size: .85rem;
}

#dLabel {
  background-color: transparent;
  border: none;
  text-align: left;
  /* padding: 7.5px 15px; */
  color: #000;
  font-size: .85rem;
}

.caret {
  line-height: 1.5;
  float: right;
  margin-top: 9px;
  display: block;
  font-size: .85rem;
}

.bg-lux {
  background: #F9F9F9 !important;
}

.border-none {
  border: none !important;
}

.form-control-lux {
  background: #F9F9F9 !important;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.input-group-prepend.lux {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.form-control-lux:focus-visible {
  outline: none;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control-lux {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.dropdown.dropdown-select-container .dropdown-menu {
  padding: 0;
  margin: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-radius: 10px;
  border-color: #F9F9F9;
  background: #F9F9F9;
  left: 38px !important;
}

.dropdown.dropdown-select-container button:hover,
.dropdown.dropdown-select-container button:focus {
  border: none;
  outline: 0;
}

.dropdown.dropdown-select-container.open button#dLabel {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
  border: solid 1px #666;
  border-bottom: none;
}

.dropdown.dropdown-select-container.open ul {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
  border: solid 1px #666;
  border-top: none;
  height: 200px;
  overflow-y: scroll;
}

.dropdown-menu li {
  line-height: 1.5;
  letter-spacing: 0.7px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 7.5px 15px;
  /* border-top: solid 1px #f3f3f3;
  border-left: solid 3px #fff; */
}

.dropdown-menu li:hover {
  background-color: #F9F9F9;
  border-left: solid 3px #000;
}


.btn-collapse[data-toggle="collapse"] svg {
  transform: rotate(0deg);
  transition: .3s;
}

.btn-collapse[data-toggle="collapse"].collapsed svg {
  transform: rotate(-90deg);
}

.dropdown-select-container svg {
  /* transform: rotate(-90deg); */
  transition: .2s;
}

.dropdown-select-container.show svg {
  transform: none;
}

.btn-collapse.focus,
.btn-collapse:focus {
  box-shadow: 0 0 0 0.2rem rgb(176 176 176 / 25%) !important;
}

.tab-inicio {
  justify-content: center;
}

.tab-inicio .nav-item .nav-link {
  font-size: 1rem;
}

.tab-inicio .nav-item {
  margin-right: 7px;
  margin-left: 7px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: inherit;
  border-color: transparent;
  display: inline-block;
  position: relative;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}

/* .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active:before{
  content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    left: 0.5rem;
    bottom: 1px;
    background: black;
    display: block;
} */
.nav-tabs {
  border-bottom: none;
}

.image-promo {
  box-shadow: 0px 2px 4px #00000029;
  transition: .3s;
  cursor: pointer;
}

.image-promo:hover {
  opacity: .9;
  box-shadow: 0 7px 16px 0 rgb(0 0 0 / 20%), 0 1px 3px 0 rgb(0 0 0 / 10%);
}

.image-promo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-inicio {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.title-inicio.px-2::before {
  left: .5rem;
}

.title-inicio::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: black;
  display: block;
}

.marca-icon {
  width: 110px;
  height: 110px;
}

.marca-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-publicitario {
  height: 250px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .banner-publicitario {
    height: 10rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem !important;
}

.title-with-img {
  display: flex;
  justify-content: start;
  align-items: center;
}

.title-with-img .img {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
  padding-top: 5px;
  margin-right: 9px;
}

.title-with-img .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-with-img h2 {
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 0;
  color: #2095CE;
}

.bg-navbar {
  background: #f7f7f7;
}

.bg-transparent {
  background: transparent !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '>' !important;
}

.breadcrumb-item a {
  color: #000;
}

.breadcrumb-item {
  font-size: .75rem;
}

.breadcrumb {
  padding: .75rem 0rem;
}

.breadcrumb-item.a {
  cursor: pointer;
}

.breadcrumb-item.a:hover {
  text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: .3rem !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: .3rem !important;
}

/* SOCIAL MEDIA ICONS */
.wrapper {
  display: inline-flex;
}

.wrapper .icon {
  /* margin: 0 20px; */
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row;
  position: relative;
  z-index: 2;
  /* transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); */
  transition: all 0.4s ease-in-out;
  /* transition: 0.4s cubic-bezier(.17,.67,.83,.67); */
}

.wrapper .icon a {
  display: block;
  height: 30px;
  width: 30px;
  /* background: #fff; */
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
  line-height: 28px;
}

.wrapper .instagram .tooltip {
  left: 15px;
  width: 175px;
}

.wrapper .whatsapp .tooltip {
  left: 10px;
  width: 182px;
}

.wrapper .icon .tooltip {
  text-decoration: none;
  color: white;
  position: absolute;
  z-index: 1;
  /* background: #fff; */
  padding: 0px 15px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
  transition: position 0.3s;
}

.wrapper .icon:hover {
  width: 220px;
}

.icon.instagram:hover .tooltip~.icon.whatsapp .tooltip {
  opacity: 0 !important;
}

.icon.instagram:hover~.icon.whatsapp.active .tooltip {
  opacity: 0 !important;

}

.icon.instagram:hover~.icon.whatsapp.active {
  width: 40px !important;
}

.wrapper .icon.active {
  width: 220px;
}

.wrapper .icon.active .tooltip {
  top: 2px;
  opacity: 1;
  pointer-events: auto;
}

.wrapper .icon:hover .tooltip {
  top: 2px;
  opacity: 1;
  pointer-events: auto;
}

.wrapper .icon:hover a,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.wrapper .instagram:hover a,
.wrapper .instagram:hover .tooltip {
  background: linear-gradient(200deg, #E50072, #FA9F0E);
}

.wrapper .whatsapp:hover a,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp.active a,
.wrapper .whatsapp.active .tooltip {
  background: linear-gradient(90deg, #00bb2d, #171717);
}

.tarjetas img:first-child {
  margin-left: 0;
}

.tarjetas img:last-child {
  margin-right: 0;
}

.tarjetas img {
  padding: 1px;
  margin: 6px;
}

.tachar {
  text-decoration: line-through !important;
}

/* LOADING */
.background-loading.active {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #17171738;
  margin-bottom: 120vh;
}

.lds-ring.full-page,
.lds-ring.full-section {
  width: 0px;
  height: 0px;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lds-ring.full-section div {
  width: 40px;
  height: 40px;
}

.lds-ring.full-page div {
  width: 54px;
  height: 54px;
}


.lds-ring {
  display: flex;
  justify-content: center;
  position: relative;
  width: 80px;
  height: 80px;
}

.btn .lds-ring {
  height: 40px;
}

.lds-ring.white div {
  border: 2px solid #fff;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 8px;
  border: 2px solid #000;
  border-radius: 50%;
  animation: lds-ring .9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.15s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.1s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn-md {
  padding: 0.75rem 0.75rem !important;
}

.btn.btn-add-cart.btn-block {
  padding: 0.45rem 0.75rem !important;
}

.columns-2 {
  column-count: 2;
}

.btn-md:focus {
  box-shadow: none !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.submenu {
  position: relative;
  padding-bottom: 2px;
}

.submenu-content a {
  color: black;
}

.submenu-content.mega {
  min-width: 800px;
}

.submenu-content.medium {
  min-width: 375px;
}

.submenu-content {
  display: none;
  position: absolute;
  left: -8px;
  top: 26px;
  background: #fff;
  z-index: 5;
  min-width: 180px;
  padding: 5px 0;
  color: black;
  transition: all .4s;
  padding: 8px;
}

.submenu .submenu-content::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 7px solid #fff;
  position: absolute;
  top: -5px;
  left: 20px;
}

.submenu-content div a h3 {
  /* border-bottom: none; */
}

.text-gray {
  color: #8f8f8f;
}

.submenu-content div span {
  padding: 3px 0;
  margin-bottom: .5rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: .65rem;
  display: block;
  border-bottom: 1px solid #BBB;
}


.submenu:hover .submenu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  row-gap: 1.5rem;
}

.submenu-content a {
  margin-top: 0px;
  font-size: .65rem;
}

/* Responsive Grid for navbar dropdowns */
@media (max-width: 1200px) {
  .submenu:hover .submenu-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .submenu:hover .submenu-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .submenu:hover .submenu-content {
    grid-template-columns: 1fr;
  }
}

/* SPINNER */
@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 0.8rem;
  height: .8rem;
  border-width: 0.14em;
}

.spinner-border-md {
  width: 1.6rem;
  height: 1.6rem;
  border-width: 0.16em;
}

#app {
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.blink_me {
  animation: blinker .9s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

a.link-producto:hover .image img {
  transform: scale(1.05);
}

.producto a.link-producto .image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.producto img {
  transition: all ease .5s;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--theme);
  filter: contrast(0.8);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-nav .nav-link.align-items-center:hover {
  filter: contrast(1.1);
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: none;
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
  color: var(--theme);
  /* filter: contrast(0.5); */
}

.slider-swiper-principal .swiper-wrapper .swiper-slide img {
  border-radius: 0px;
}

.slider-swiper-principal .swiper-wrapper .swiper-slide {
  min-height: 330px;
  height: 360px;
  background: #8f8f8f8c;
  border-radius: 0px;
}

.banner-categoria {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  max-height: 220px;
  min-height: 100px;
}

.banner-categoria img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  border-radius: 10px;
}

.banner-categoria a {
  min-height: 100px;
}

@media screen and (max-width: 570px) {
  .lds-ring.mobile div {
    margin: 0px auto;
  }

  .lds-ring.mobile {
    width: 100%;
  }

  .btn .lds-ring {
    height: 23px;
  }

  .fixed-actions button {
    min-height: 48.5px;
  }

  .banner-categoria {
    height: 200px;
  }

  .banner-categoria img {
    object-fit: cover;
  }

  .columns-2 {
    column-count: 1;
  }

  .slider-swiper-principal .swiper-wrapper .swiper-slide img {
    border-radius: 10px;
  }

  .slider-swiper-principal .swiper-wrapper .swiper-slide {
    min-height: 115px;
    margin: 5px 0px;
    border-radius: 10px;
    height: 210px;
  }
}

.swiper-pointer-events {
  background: #f6f6f6;
}

.br-10 {
  border-radius: 10px;
}

.bg-nav {
  background: #F6F6F6;
}

.badge-mcd {
  background: #000;
  color: #FAF10A;
}

.envio-gratis {
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  margin: 0 auto;
}

.text-decoration-none,
.text-decoration-none:hover {
  text-decoration: none;
}

.envio-gratis {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: -5px;
  color: #00B1F0;
  padding-top: 1px;
}

@media (max-width: 1200px) {
  .container-box {
    /* width: 100%;
    columns: 3; */

    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container-box {
    /* columns: 2; */
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 470px) {
  .container-box .product.end-lg {
    grid-row-end: span 17;
  }
}

@media (max-width: 390px) {
  .container-box {
    /* columns: 1; */

    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .container-box .product .actions-product span,
  .layout-grid .product .actions-product span {
    font-size: 15px;
  }
}