:root {
    --color--brand: #e88565;
    --color--brand-dark: #e5734f;
    --color--brand-light: #eb977b;
    --color--accent: #ffd900;
    --color--accent-dark: #e6c300;
    --color--link: #fceeea;
    --color--link-dark: #9d3817;
    --color--text: #212121;
    --color--text-light: rgba(33, 33, 33, 0.7);
    --color--text-lighter: rgba(33, 33, 33, 0.55);
    --color--text-lightest: rgba(33, 33, 33, 0.2);
    --color--text-bg: rgba(33, 33, 33, 0.1);
    --color--text-bg: rgba(33, 33, 33, 0.1);
    --color--headings: #212121;
    --color--alt-text: #8b8b8b;
    --color--btn: #ffffff;
    --color--product-bg: rgba(0,0,0,0);
    --color--product-sale: #C00000;
    --color--low-stock: #C00000;
    --color--in-stock: #4A9F53;
    --color--drawer-bg: #ffffff;
    --color--bg: #ffffff;
    --color--bg-alpha: rgba(255, 255, 255, 0.8);
    --color--bg-light: #ffffff;
    --color--bg-dark: #f2f2f2;
    --color--drop-shadow: rgba(42, 42, 42, 0.2);
    --color--cart-announcement-icon: #212121;
    --color--label-brand: rgba(232, 133, 101, 0.72);
    --color--label-sold_out: rgba(242, 242, 242, 0.72);
    --color--label-discount: rgba(192, 0, 0, 0.72);
    --color--label-new: rgba(229, 229, 229, 0.72);
    --color--label-custom1: rgba(229, 229, 229, 0.72);
    --color--label-custom2: rgba(229, 229, 229, 0.72);
    --color--text-label-brand: #000000;
    --color--text-label-sold_out: #000000;
    --color--text-label-discount: #FFFFFF;
    --color--text-label-new: #000000;
    --color--text-label-custom_one: #000000;
    --color--text-label-custom_two: #000000;
    --font--size-base: 13.6;
    --font--line-base: 30;
    --font--size-h1: 30;
    --font--size-h2: 24;
    --font--size-h3: 20;
    --font--size-h4: 18;
    --font--size-h5: 16;
    --font--size-h6: 15;
    --font--size-grid: 13;
    --font--size-nav: 12;
    --font--size-product-form-headings: 15;
    --font--body: "Work Sans", sans-serif;
    --font--body-style: normal;
    --font--body-weight: 400;
    --font--title: "Work Sans", sans-serif;
    --font--title-weight: 400;
    --font--title-style: normal;
    --font--title-space: 0px;
    --font--title-transform: none;
    --font--button: "Work Sans", sans-serif;
    --font--button-weight: 400;
    --font--button-style: normal;
    --font--button-space: 1px;
    --font--button-transform: none;
    --font--button-size: 12;
    --font--button-mobile-size: 12px;
    --radius-button: 30px;
    --radius-form: 30px;
    --radius-variant: 15px;
    --radius-label: 15px;
    --radius-popup: 18px;
    --radius-container: 0px;
    --radius-media: 0px;
    --checkbox-check-invert: 1;

    --header-is-sticky: 0;
    --header-bg-color: #ffffff;
    --header-bg-color-darker: #f2f2f2;
    --header-text-color: #111111;
    --header-text-color-light: rgba(17, 17, 17, 0.7);
    --header-text-color-lighter: rgba(17, 17, 17, 0.5);
    --header-text-color-lightest: rgba(17, 17, 17, 0.1);
    --header-text-color-bg: rgba(17, 17, 17, 0.01);
    --header-transparent-text-color: #ffffff;
    --header-transparent-text-color-light: rgba(255, 255, 255, 0.3);
    --header-text-contrast-color: #fff;
    --header-transparent-text-contrast-color: #000;
}

/* ==========================================================================
   #BASE STYLING
   ========================================================================== */

/*
   body {
     color: var(--color--text); 
 
    
     -ms-text-size-adjust: 100%;
     -webkit-text-size-adjust: 100%
    }
   */
   a {
     text-decoration: none;
     -webkit-transition: opacity 0.2s ease-in-out;
     -moz-transition: opacity 0.2s ease-in-out;
     transition: opacity 0.2s ease-in-out; }
     @media (hover: hover) {
       a:hover {
         opacity: 0.7;
         text-decoration: none; } }
   

   h1,
   h2,
   h3,
   h4,
   h5,
   h6,
   .h1,
   .h2,
   .h3,
   .h4,
   .h5,
   .h6 {
     color: var(--color--headings);
   /*  font-family: var(--font--title);*/
     font-weight: var(--font--title-weight);
     font-style: var(--font--title-style);
     letter-spacing: var(--font--title-space);
     text-transform: var(--font--title-transform); }
   
   a {
     color: var(--color--text); }
   
   .no-js .js {
     display: none; }
   
 

    p{
      margin-bottom: 0px;      
      line-height: calc(var(--font--line-base) / var(--font--size-base));
    }

/* stylelint-enable selector-list-comma-newline-after */
/* ==========================================================================
   #HEADINGS
   ========================================================================== */
   h1, .h1 {
    font-size: calc((var(--font--size-h1) / var(--font--size-base)) * 1rem);
    line-height: 1.45; }
  
  h2, .h2 {
    font-size: calc((var(--font--size-h2) / var(--font--size-base)) * 1rem);
    line-height: 1.6; }
  
  h3, .h3 {
    font-size: calc((var(--font--size-h3) / var(--font--size-base)) * 1rem);
    line-height: 1.7; }
  
  h4, .h4 {
    font-size: calc((var(--font--size-h4) / var(--font--size-base)) * 1rem);
    line-height: 1.8; }
  
  h5, .h5 {
    font-size: calc((var(--font--size-h5) / var(--font--size-base)) * 1rem);
    line-height: 1.9; }
  
  h6, .h6 {
    font-size: calc((var(--font--size-h6) / var(--font--size-base)) * 1rem);
    line-height: 1.9; }
  
  @media screen and (max-width: 767px) {
    h1, .h1 {
      font-size: calc((var(--font--size-h2) / var(--font--size-base)) * 1rem);
      line-height: 1.6; }
    h2, .h2 {
      font-size: calc((var(--font--size-h3) / var(--font--size-base)) * 1rem);
      line-height: 1.7; }
    h3, .h3 {
      font-size: calc((var(--font--size-h4) / var(--font--size-base)) * 1rem);
      line-height: 1.8; }
    h4, .h4 {
      font-size: calc((var(--font--size-h5) / var(--font--size-base)) * 1.05rem);
      line-height: 1.9; }
    h5, .h5 {
      font-size: calc((var(--font--size-h6) / var(--font--size-base)) * 1.02rem);
      line-height: 1.9; }
    h6, .h6 {
      font-size: calc((var(--font--size-h6) / var(--font--size-base)) * 1rem);
      line-height: 1.9; } }


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    color: #212121 !important;
    font-weight: 400 !important;


}

/* ==========================================================================
   #CORNER RADIUS PROPERTIES FROM THEME SETTINGS
   ========================================================================== */
/* Form elements
   ========================================================================== */
   body [type="text"],
   body [type="password"],
   body [type="datetime"],
   body [type="datetime-local"],
   body [type="date"],
   body [type="month"],
   body [type="time"],
   body [type="week"],
   body [type="number"],
   body [type="email"],
   body [type="url"],
   body [type="search"],
   body [type="tel"],
   body [type="color"],
   body select,
   body textarea {
     /*border-radius: var(--radius-form) !important;*/
     border-radius: 3px !important;
     padding-left: Max(12px, calc(var(--radius-form) / 1.5)) !important;
     padding-right: Max(12px, calc(var(--radius-form) / 1.5)) !important; }
   
   [type="checkbox"] {
     border-radius: calc(var(--radius-form) / 3); }

    form#product-contact-form small {
      display: block;
      padding: 15px;

      border-radius: 3px;
      background-color: #f4f4f4;
    }




/* Ajustes home */

#index .cbp-horizontal .cbp-tab-title{
    color: #fff;
}

.stuck.stuck-header-element .cbp-horizontal .cbp-tab-title{
    color: #fff !important;
}

.products-grid .product-miniature-default{
    padding-bottom: 40px;
}

.lazy-product-image.loaded{
    object-fit: cover;
    aspect-ratio: 12/18;
    object-position: 50% 50%;
    width: 100%;
}

.secciones-principales-home img{
    object-fit: cover;
    aspect-ratio: 4/3;
    object-position: 50% 50%;

}

@media (max-width: 767px){
    .secciones-principales-home{

        margin-bottom: 25px;
    
    }
}



.secciones-principales-home .elementor-iqit-banner-title{
    color: #000 !important;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
    padding: 5px 25px;
    font-size: 14px;
    line-height: 1em;
}
/*
.cbp-hrmenu .cbp-links li{
    margin: 10px 0;

}*/

.cbp-hrmenu .cbp-links li a{

  color: #111111;
}

.cbp-hrmenu .cbp-links li a::first-letter {

}

.cbp-hrmenu .cbp-hrsub-inner .cbp-column-title, .cbp-hrmenu .cbp-hrsub-inner a.cbp-column-title:link{

  font-size: 17px;
  font-weight: 400;
  padding: 3px 6px 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid;
  line-height: 1.8;
  margin-top: 12px;

}

.cbp-hrmenu .cbp-hrsub-inner .cbp-column-title, .cbp-hrmenu .cbp-hrsub-inner a.cbp-column-title:link::first-letter{


}

.banner-menu img{
  object-fit: cover;
  aspect-ratio: 4/6;
  object-position: 50% 50%;
}

.banner-menu-2 img{
  object-fit: cover;
  aspect-ratio: 2/4;
  object-position: 50% 50%;
}

.menu-element-id-6,.menu-element-id-7 {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center; 
}

.banner-menu-3 img{
  object-fit: cover;
  aspect-ratio: 6/5;
  object-position: 50% 50%;
}


.banner-menu-4 img{
  object-fit: cover;
  aspect-ratio: 1;
  object-position: 50% 50%;
}


.banner-menu-5 img{
  object-fit: cover;
  aspect-ratio: 1;
  object-position: 50% 50%;
}

#idxrcookies #center .contenido:before, #idxrcookies #bottom .contenido:before, #idxrcookies #right .contenido:before, #idxrcookies #left .contenido:before{
  content: "" !important;
}

#index svg.icon {
font-family: sb-icons!important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #fff;
}

svg.icon {
font-family: sb-icons!important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #111;
}


.stuck.stuck-header-element svg.icon{
  color: #fff;
}

#header-user-btn svg{
  width: 20px;
  height: 20px;
}

#cart-toogle svg{
  width: 20px;
  height: 20px;
}

#header-search-btn svg{
  width: 20px;
  height: 20px;
}

.cbp-hrmenu .cbp-links li a{
  padding: 3px 6px !important;
  color: #212121 !important;
  font-weight: normal !important;
  font-size: .95rem !important;
}

.cbp-hrmenu .cbp-links li a:hover{
  opacity: 1;
  color: var(--header-text-color);
  background: var(--header-bg-color-darker);
  text-decoration: none;
}

/* Ajuste Categoría */

.header-category-block{
  text-align: center;
}

.header-category-block .h1.page-title{
  font-size: 24px;
  line-height: 1.8;
}



.header-category-block .genericDescCont{
  font-weight: normal !important;
}

.header-category-block .category-description{
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem !important;
  font-size: 14px;
}

.header-category-block .category-description strong{
  font-weight: normal;

}

.header-category-block .genericDescCont{
  margin:auto;
  max-width: 600px;
}

.product-list-subcategories{
  
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    max-width: 1400px;
    margin: auto;
}

.product-list-subcategories img{
  object-fit: cover;
  aspect-ratio: 1;
  object-position: 50% 50%;
  border-radius: 50%;
  max-width: 103px;
  margin-bottom: 5px;
}

.product-list-subcategories .subcategory-name{
  display: block;
  /*text-transform: lowercase;*/
  font-size: 1rem;
}
/*
.product-list-subcategories .subcategory-name::first-letter{
  text-transform: capitalize;
}*/

.product-list-subcategories .row > div{
  margin-bottom: 15px;
}

#wrapper .block-title{
  font-weight: normal;
}

#manufacturer #content-wrapper{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.ms-grid .brand{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
}

.refuerzo-categoria{
  font-size: 12px;
  margin-top: 40px;
  margin-bottom: 15px;
}

.brands-list #left-column{
  display: none;
}

.pagination .page-list li{
  width: 42px;
  height: 42px;
  line-height: 42px;
  float: left;
  margin: 0 3px;
  font-size: 12px;
  box-sizing: content-box;
  border-radius: 50%;
  border: none;
}

.pagination .page-list li.current{
    font-weight: 700;
    border: 1px solid var(--color--bg);
    background: var(--color--text-bg);
}

.pagination .page-list li a{
  padding: 0px;
}

#active-search-filters .js-search-link{
  display: inline-block;
  padding: 0 12px;
  font-size: .95rem;
  background: var(--color--text-bg);
  border: 1px solid transparent;
  color: var(--color--text);
  font-weight: initial;
  line-height: calc(var(--font--line-base) / var(--font--size-base));
  cursor: pointer;
  appearance: none!important;
  -webkit-transition: .3s ease opacity;
  -moz-transition: .3s ease opacity;
  transition: .3s ease opacity;
  border-radius: 50px;
}

/* Ajustes Página producto */

.product_header_container #product-availability{
  display: none !important;
}


#product #wrapper .breadcrumb{
  text-align: center;
}


#product #main-product-wrapper{
  max-width: 1400px;
  margin: auto;
}
/*
#product #main-product-wrapper .col-product-image{
  max-width: 60%;
}

#product #main-product-wrapper .col-product-info{
  max-width: 40%;
}*/

#content-wrapper .product_header_container .page-title{
  font-size: 25px;
  font-weight: normal;
}

#product-images-thumbs.swiper-container-vertical .img-fluid{
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: 50% 50%;
}

.product-cover img{
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: 50% 50%;
}

.product-variants .form-control-label{
  font-size: 15px;
  font-weight: normal;
  line-height: 1.2em;
  text-transform: none;
}

.product-variants .input-radio+span{
    display: inline-flex;
    margin-top: 9px;
    border-radius: var(--radius-variant);
    justify-content: center;
    align-items: center;
    line-height: calc(2em - 1px);
    font-size: .9rem;
    padding: 0 18px;
    height: 2rem;
    
  
}
.product-variants .input-color:checked+span, .product-variants .input-color:hover+span, .product-variants .input-radio:checked+span, .product-variants .input-radio:hover+span{
  border: 1px solid var(--color--text);
  box-shadow: 0 0 3px 1px var(--color--text-lightest);
  -webkit-transition: box-shadow ease-in-out .15s;
  transition: box-shadow ease-in-out .15s;
  line-height: calc(2em - 1px);
} 

#product .social-sharing{
  text-align: center;
}

/*
.product-variants .radio-label{
    border-radius: var(--radius-variant);
    position: relative;
    cursor: pointer;
    display: inline-flex;
    margin-top: 9px;
    min-width: 3.5rem;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: .9rem;
    padding: 0 18px;
    height: 2rem;
    background-color: transparent;
    border: 1px solid var(--color--text-lightest);
    -webkit-transition: border-color .3s ease-out,background .3s ease-out;
    -moz-transition: border-color .3s ease-out,background .3s ease-out;
    transition: border-color .3s ease-out,background .3s ease-out;
}

.product-variants .input-radio{
border: 0!important;
clip: rect(0 0 0 0)!important;
height: 1px!important;
margin: -1px!important;
overflow: hidden!important;
padding: 0!important;
position: absolute!important;
width: 1px!important;
}

.product-variants .input-color:checked+span, .product-variants .input-color:hover+span, .product-variants .input-radio:checked+span, .product-variants .input-radio:hover+span{
  border: 1px solid #212121;
  background: transparent;
  box-shadow: 0 0 3px 1px rgba(33, 33, 33, 0.2);
  -webkit-transition: box-shadow ease-in-out .15s;
  transition: box-shadow ease-in-out .15s;

}*/

.btn{
display: inline-block;
vertical-align: middle;
font: inherit;
text-align: center;
margin: 0;
cursor: pointer;
font-family: var(--font--button);
letter-spacing: var(--font--button-space);
text-transform: uppercase;
transition: opacity .2s ease-in-out;
color: var(--color--btn);
font-size: calc((var(--font--button-size) / var(--font--size-base)) * 1rem);
font-weight: var(--font--button-weight);
font-style: var(--font--button-style);
height: auto;
line-height: 30px;
padding: 9px 30px;
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
transition: all .2s ease-out;
border-radius: 3px!important;
}

.btn-primary {
  background-color: transparent;
  color: var(--color--text);
  box-shadow: inset 0 0 0 1px var(--color--text);
  border: 0 none;
  margin-bottom: 1px;
  border-radius: var(--radius-button);
}

.col-add-btn, .add-to-cart{
  display: block;
  width: 100%;
}

.product-additional-info{
  border-top: none;
  padding-top: 0px;
}



.product_header_container .product-price, .product_p_price_container .product-price{
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1.4;
  font-weight: normal;
}

.tax-shipping-delivery-label{
  display: none;
}

.header-category-block .category-description{
  border-bottom: none;
}

.products-selection{
  border-top: none;
  border-bottom: none;
}

.custom-checkbox input[type=checkbox] + span:not(.color), .custom-radio{
  border-radius: 50%;
  box-shadow: none;
}
/*
#search_filters .facet>.facet-type-checkbox, #search_filters .facet .facet-type-radio, #search_filters_brands .facet>.facet-type-checkbox, #search_filters_brands .facet .facet-type-radio, #search_filters_suppliers .facet>.facet-type-checkbox, #search_filters_suppliers .facet .facet-type-radio{
  max-height: 100%;
}
*/

#search_filters .facet>.facet-type-checkbox, #search_filters .facet .facet-type-radio, #search_filters_brands .facet>.facet-type-checkbox, #search_filters_brands .facet .facet-type-radio, #search_filters_suppliers .facet>.facet-type-checkbox, #search_filters_suppliers .facet .facet-type-radio{
  max-height: 30vh;
}

#wrapper .breadcrumb  span{
  display: inline-block;
}

#wrapper .breadcrumb  span::first-letter{
}

.product-flag.new{
  display:none;
}

#search_filters .facet .facet-label a, #search_filters_brands .facet .facet-label a, #search_filters_suppliers .facet .facet-label a {
  /*text-transform: uppercase;*/
  display: inline-block;
}
/*
#search_filters .facet .facet-label a::first-letter, #search_filters_brands .facet .facet-label a::first-letter, #search_filters_suppliers .facet .facet-label a::first-letter{
  text-transform: capitalize;
}*/

#wrapper .breadcrumb{
  text-align: center;
}

#wrapper .breadcrumb .row{
  flex-direction: column;
}

.product-contact-form{
  margin-top: 35px;
  margin-bottom: 25px;
}

.product-contact-form .btn{
  margin-top: 20px;
  background: #111;
  color: #fff;
  width: 100%;
}

.product-variants > .product-variants-item{
  display: block;
  width: 100%;
}

@media (max-width: 768px){
  .col-mobile-logo .logo{
    max-width: 150px;
  }
}

.fichaClasificado ul li a{
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid rgba(0,0,0,.3);
  border-radius: 20px;
  padding: 4px 12px;
  opacity: .8;
}

.fichaClasificado ul li{
  list-style: none;
  margin-right: 4px;
  margin-bottom: 10px;

}

.fichaClasificado ul{
  display: inline-flex;
  flex-flow: row wrap;
  margin-top: 10px;
}

.fichaClasificado{
  margin-bottom: 20px;;
}

.product-details-section{
  display: none;
}

.product-description-section .section-title{
  display: none;
}

.link-consulta{
  text-decoration: underline;
}

#js-product-list-top .col.view-switcher{
  display: none;
}

#js-product-list-top > .row{
  justify-content: flex-end !important;
}

.fichaSeo{
  margin-top: 70px;
  font-size: 0.8rem;
}



.bootstrap-touchspin .input-group-btn-vertical{
  width: auto;
  display: block;
  margin-left: -20px;
  background: none;
  margin-top: 2px;
}

.bootstrap-touchspin .input-group-btn-vertical .btn{
  background: none;
  border: none;
  padding: 4px 6px;
  height: 40%;
}

.product-quantity .qty{
  width: 60px;
}

footer #footer-container-main{
  background: none !important;
  border-top: 1px solid rgba(17,17,17,.2);
}

#footer, #checkout-footer{
  background: none;
}

.block-links ul>li a{
  padding-left: 0px;
}

.block-links ul>li a:before{
  display: none;
}

#footer .block-title{
  text-transform: var(--font--title-transform) !important;
  margin-bottom: 12px !important;
  color: #111 !important;
  font-size: calc((var(--font--size-h5) / var(--font--size-base)) * 1rem) !important;
  line-height: 1.9 !important;
}

.contact-rich > strong{
  display: none;
}

#back-to-top{
    border-radius: 50%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

#back-to-top i{
    line-height: 1em;
    height: 30px;
}

.contact-rich hr{
  border: none !important;
}

#header .header-btn-w{
  margin-left: 10px;
}

#product .product-manufacturer-next img{
  max-width: 120px;
}

.discount{
  background: #6c757d;
}

.product-flags .discount, .product-flags .on-sale{
  background: #6c757d;

}

#checkout button[data-action="show-password"], #authentication button[data-action="show-password"]{
  display: none;
}

#conditions-to-approve .custom-checkbox input[type="checkbox"]+span{
  top: 0px;
}

#customer-form .custom-checkbox em{
  display: none;
}

#_desktop_blockcart-content .cart-buttons.text-center .btn.btn-secondary.btn-block{
    background: #111;
    border-radius: var(--radius-button);
}

#customer-form .form-control-comment{
  display: none;
}

#checkout #customer-form{
  margin-top: 25px;
}

body#checkout section.checkout-step #personal-information-step-login{
  background: #fff;
}

#delivery-address .js-address-form{
  margin-top: 20px;
}

body#checkout section.checkout-step .delivery-option{
  background: #fff;
}

#returns-link{
  display: none !important;
}

#order-slips-link{
  display: none !important;
}

#addresses #inner-wrapper{
  max-width: 1400px;
}

#checkout .add-address{
  margin-bottom: 25px;
}

#checkout a[data-link-action="different-invoice-address"]{
  text-decoration: underline;
  margin-bottom: 15px;
  display: inline-block;
}

#payment-confirmation .btn-primary{
  background-color: var(--color--text);
  color: #fff;
}

#cart  #inner-wrapper{
  max-width: 1400px;
}

@media (min-width: 740px){

  .product-list-subcategories > .row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-list-subcategories .row > div{
    max-width: 12%;
  }
}


/* Ajustes grid Marcas */


.brand-list-container{
  list-style: none;
  text-align: center;
  padding: 8px;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  }

  .brand-list-container .brand-img{
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }


























/********** CSS **********/




/***** GLOBAL *****/
html, body {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
html {
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:transparent;
}


/***** NAV *****/
#header #iqitmegamenu-wrapper {
  display: flex;
  margin: 0 auto;
  width: auto;
}

body.nav-fixed #header > .header-nav {
 /**/
}
body.nav-fixed #header #desktop-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: all .3s;
}
  body #header #desktop-header .header-top {
    margin: 0 auto;
    max-width: 1400px;
    transition: all .3s;
  }
  body.nav-fixed #header #desktop-header .header-top {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .cbp-horizontal > ul > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }
    #header #iqitmegamenu-wrapper .cbp-tab-title {
      font-size: 1rem;
    }
    body.nav-fixed #header #iqitmegamenu-wrapper .cbp-horizontal .cbp-tab-title,
    body.nav-fixed #header svg.icon {
      color: #000!important;
    }
    body.nav-fixed #desktop_logo {
      position: absolute;
      top: -12px;
      max-width: 150px;
      height: auto;
    }
    body.nav-fixed #desktop_logo a img {
      color: #212121;
      
    }



    


/***** FOOTER *****/
footer #footer-container-main {
  padding: 3rem;
}
footer #footer-container-main > .container {
  margin: 0 auto;
  max-width: 1240px;
}
footer #footer-copyrights {
  padding: 1.5rem;
  background-color: #eee;
}
  footer #footer-copyrights img {
    display: block;
    margin: 0 auto;
  }



/***** HOME *****/



/*** SLIDER ***/

.header-slide {
  position: relative;
  width: 100vw!important;
  height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #069;

  background-image: url('https://maisquenenos.es/img/slidehome.jpg');
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
  .header-slide:before {
    position: absolute;
    inset: 0;
    content: '';
    /*background-color: rgba(0, 0, 0, 0.4);*/
    background: linear-gradient(215deg, rgba(0,0,0,.4), rgba(0,0,0,0) 70%), 
                linear-gradient(125deg, rgba(0,0,0,.4), rgba(0,0,0,0) 70%), 
                linear-gradient(335deg, rgba(0,0,0,.4), rgba(0,0,0,0) 70%);
    z-index: 10;
  }

  .header-slide .scroller.close, 
  .header-slide .scroller.close:focus, 
  .header-slide .scroller.close:active {
    opacity: 1;
  }
  .header-slide .scroller, 
  .header-slide .scroller:focus, 
  .header-slide .scroller:active {
    position: absolute;
    margin: 0;
    padding: 0;
    right: 50%;
    top: calc(85vh - 80px);
    width: 24px;
    height: 37px;
    border-radius: 12px;
    border: 1px solid #fff;
    transform: translate(50%,50%);
    transition: .5s cubic-bezier(.37,0,.63,1);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 30;
  }
    .header-slide .scroller:before {
      content: '';
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #fff;
      left: 9px;
      top: 8px;
      animation: scroll 2.2s cubic-bezier(.65,0,.35,1) infinite;
    }

      .header-slide .scroller a {
        display: block;
        padding-top: 999em;
        overflow: hidden;
      }
        .header-slide .scroller:after {
          content: '';
          position: absolute;
          width: 4px;
          height: 4px;
          border-radius: 50%;
          background: #fff;
          left: 9px;
          top: 8px;
          animation: scroll 2.2s cubic-bezier(.65,0,.35,1) 1.1s infinite;
        }
  
        @keyframes scroll {
    0% {
      transform: translateY(0);
      opacity: 0;
  }
  40% {
      opacity: 1;
  }
  60% {
      opacity: 0;
  }
  100% {
      transform: translateY(10px);
      opacity: 0;
  }
}


/*** TIENDA FISICA ***/
.fisica-home-block {
  margin: 0 -15px;
  padding: 100px 0;
  background-color: #fff;
}

/*** DESTACADOS ***/
.destacados-1-home-block {
  position: realtive;
  margin: 0 -15px;
  padding: 20px 0 0 0;
  background-color: #f4f4f4;
}
.destacados-2-home-block {
  position: realtive;
  margin: 0 -15px;
  padding: 0 0 20px 0;
  background-color: #f4f4f4;
}

/*** NOVEDADES ***/
.novedades-home-block {
  position: realtive;
  margin: 0 -15px;
  padding: 100px 0;
  background-color: #fff;
}

/*** ONLINE ***/
.online-home-block {
  position: realtive;
  margin: 0 -15px;
  padding: 100px 0;
  background-color: #f4f4f4;
}
  .online-home-block .elementor-container {
    min-height: auto!important;
  }

/*** CAROUSEL ***/
.carousel-home-block {
  position: relative;
  margin: 0 -15px;
  padding: 100px;
  background-color: #fff;
}

@media(max-width: 720px){
  .carousel-home-block {
    padding: 15px;
  }
}

.carousel-home-block .elementor-brands {
  position: relative;
  margin: 50px 0 0 0;
  background-color: #fff;
}
  .carousel-home-block .elementor-brands .swiper-wrapper {
    display: flex;
    align-items: center;
  }

/*** ULTIMO ***/
.ultimo-home-block {
  position: relative;
  margin: 0 -15px;
  padding: 100px 0;
  background-color: #f4f4f4;
}



/***** CONTENT *****/


/*** TEXT ***/

.custom-text-block {
  text-align: left;
}
  .text-column-2 {
    text-align: left;
    column-count: 2;
    column-gap: 60px;
  }
  .custom-text-block .seo1Cont, 
  .custom-text-block .seo2Cont {
    text-align: left;
  }

.elementor-text-editor p {
  margin: 0 0 15px 0;
  line-height: 21px;
}
.elementor-text-editor p:last-child {
  margin: 0;
}

.custom-text-block h1,
.custom-text-block h2 {
  margin-bottom: 30px;
  line-height: 1;
  text-align: left;
}
.custom-text-block, 
.custom-text-block p {
  color: #000;
  font-size: 14px!important;
  text-align: left;
}

body .alert-warning {
  padding: 20px;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  border-radius: 3px;
  background-color: #bb8585;
}

/*** COLUMNS ***/
.product-miniature-default .thumbnail-container {
  padding-left: 15px;
  padding-right: 15px;
}
.products-grid .product-miniature-layout-1 .product-description {
  padding-left: 15px;
  padding-right: 15px;
}
.products-grid .product-miniature-layout-1 .product-description .product-title {
  font-size: 1rem;
  line-height: 18px;
}  
  .products-grid .product-miniature-layout-1 .product-description .product-title a,
  .products-grid .product-miniature-layout-1 .product-description .link-consulta {
    display: block;
    text-decoration: none;
  }
  .products-grid .product-price-and-shipping,
  .products-grid .product-miniature-layout-1 .product-description .link-consulta {
    line-height: 1;
  }
    .products-grid .product-miniature-layout-1 .product-description a > .product-price, 
    .products-grid .product-miniature-layout-1 .product-description .link-consulta {
      font-weight: 600;
    }



/*** IMAGES ***/
.elementor-widget-banner .elementor-iqit-banner-img, 
.product-miniature-default .product-thumbnail {
  border-radius: 5px;
  overflow: hidden;
}


/*** FILTROS ***/

#search_filters {
  padding: 80px 20px 0 20px;
}
  #search_filters .block-title {
    margin: 0 0 12px 0;
    padding: 0;
    font-size: 20px;
    border-width: 0;
  }
  #search_filters .facet .facet-label, 
  #search_filters_brands .facet .facet-label, 
  #search_filters_suppliers .facet .facet-label {
    display: flex;
    gap: 10px;
  }
  #search_filters #search_filters .facet-label  .search-link {
    flex: 1;
    text-transform: uppercase;
  }
    #search_filters .custom-checkbox input[type="checkbox"] + span:not(.color), .custom-radio {
      margin-top: -5px;
      border: 1px solid #000;
    }
    #search_filters .custom-checkbox input[type="checkbox"] + span {
      margin: 0;
      width: 16px;
      height: 16px; 
    }
    #search_filters .custom-checkbox input[type="checkbox"] + span > .checkbox-checked {
      /*background-color: #000;
      text-indent: -999em;
      border-radius: 2px;
      margin: 0 0 0 1px;
      width: 10px;
      height: 10px;*/ 
    }
    #search_filters .noUi-horizontal {
      height: 3px;
    }
    #search_filters .noUi-horizontal .noUi-handle {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid #000;
      background-color: #000;
      cursor: e-resize;
      top: -6px;
    }
    #search_filters .noUi-target .noUi-base {
      background-color: #ccc;
    }



/*** SINGLE ***/
.product-manufacturer-next {
  display: none;
}
.product-variants > .product-variants-item {
  display: flex;
  gap: 30px;
  align-items: center;
}
  .product-variants > .product-variants-item .custom-select2 {
    flex: 1;
  }
#product .social-sharing {
  text-align: left;
}
.product-container .product-add-to-cart .product-quantity {
  display: flex;
  gap: 30px;
}
  .product-container .product-add-to-cart .product-quantity .col-add-qty, 
  .product-container .product-add-to-cart .product-quantity .col-add-btn {
    width: auto;
  }
  .product-container .product-add-to-cart .product-quantity .col-add-btn .add .btn {
    color: #fff;
    text-transform: uppercase;
    background-color: #000;
  }
  .product-container .product-add-to-cart .product-quantity .col-add-btn .add .btn:hover {
    color:#fff;
    background-color: #404040;
  }
  .product-container .product-tabs {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .product-container .product-tabs .block-section {
    margin: 0 0 20px 0;
  }
  .product-container .product-tabs .block-section:last-child {
    margin: 0; 
  }

  .product-container .fichaClasificado ul li a {
    padding: 5px 15px;
    line-height: 1;
    border-radius: 3px;
  }

  .product-container .fichaSeo {
    margin: 0 0 20px 0;
    line-height: 18px;
    color: #404040;
    font-size: 12px;
    font-weight: 400;
  }
    .product-container .fichaSeo p {
      margin: 0 0 15px 0;
      line-height: 18px;
    }

  .product-container .product-contact-form {
    margin: 0 0 20px 0;
  }

  #wrapper .container > .breadcrumb {
    margin: 0 auto;
    max-width: 1355px;
    color: #000;
    text-align: center!important;
  }
  #wrapper .container > .breadcrumb ol li {
    color: #404040;
    font-size: 14px;
    /*text-transform: uppercase;*/
  }
    #wrapper .container > .breadcrumb ol li a,
    #wrapper .container > .breadcrumb ol li span {
      color: #333;
      font-size: 12px;
      /*text-transform: uppercase;*/
    }
    #wrapper .container > .breadcrumb ol li span {
      color: #333;
      font-weight: 400;
    }
    .product-cover .product-lmage-large {
      border-radius: 3px;
      overflow: hidden;
    }
    #product-images-thumbs > .swiper-wrapper {
      margin: -7px 0;
    }
      #product-images-thumbs.swiper-container-vertical .thumb-container {
        padding: 15px 0;
      }
        #product-images-thumbs.swiper-container-vertical .img-fluid {
          border-radius: 3px;
          overflow: hidden;
        }


.product-description-section.block-section{
  display: none;
}

.category-products.block.block-section{
  max-width: 1400px;
  display: block;
  margin: auto;
  margin-top: 2.8em;
}

.category-products.block.block-section .section-title{
  text-align: center !important;
  border-bottom: none !important;
  text-transform: capitalize  !important;
  font-size: 1.5rem !important;
  margin-top: 2.8em !important;
}

#cart .cart-grid-body .btn.btn-secondary{
  background: #fff;
  border: 1px solid #212121;
  color: #212121;
}

#cart .checkout.cart-detailed-actions .btn.btn-primary{
  background-color: #212121;
  border: none;
  color: #fff !important;
}

.cart-item-header{
  font-weight: normal;
  border-top: none;
}

#content-wrapper .page-title{
  border-bottom: none !important;
}

.product-description{
  margin-bottom: 15px;
}

.product-variants .input-radio, .product-variants .radio-label{
  border-radius: 3px !important;
}

#blockcart-content .cart-totals{
  border-top: none;
}

body.nav-fixed #desktop_logo a img{
  max-width: 150px !important;
}

.col-header-logo #desktop_logo img{
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .header-slide{
    height: 270px;
  }

  #search_filter_toggler,.js-search-filters-clear-all{
    background: #444;
    color: #fff;
    line-height: 1em;
  }

  #search_filter_toggler,.js-search-filters-clear-all i{
    margin-right: 0.5rem !important;
  }

  .btn-primary.ok{
    background: #fff;
    color: #444;
    line-height: 1em;
  }
}

.product-combination-only-unavailable{
  display: none;
}

#idxrcookiesOK:hover,#idxrcookiesPartial:hover,#cookiesConf:hover{
  background: #111;
}

.cart-summary-line.cart-total{
  font-weight: normal;
}


#customer-form .custom-checkbox{
  align-items: center;
}

#customer-form .custom-checkbox label{
  margin-bottom: 0px;
}

.thead-default th{
  background: none;
}

.table-striped tbody tr:nth-of-type(odd){
  background: none  !important;
}




@media (max-width : 768px){
 #index .text-column-2{
  column-count: 1 !important;
 }
  
 #blockcart-content .cart-buttons .btn-secondary{
  color: #fff;
  background-color: #444;
 }

 
.product-price strong{
  font-weight: normal;
  
}

label[for="field-newsletter"],label[for="field-psgdpr"]{
  display:none;
}



}


#cms .page-header{
  max-width: 1400px;
  margin: auto;
  padding: 15px;
}

#cms .page-header h1{
  margin-bottom: 0px
}




/*GRID GALERIA IMAGENES*/

#cms .imgcover {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover
}


#cms .light {
  text-align: center;
  font-size: 0;
  line-height: 0
}

#cms .light li {
  display: inline-block;
  list-style: none;
  border: 4px solid transparent;
  overflow: hidden;
}

#cms .light li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}

#cms .light li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.6);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .3s;
  z-index: 2
}

#cms .light li a:after {
  content: "\f002";
  font-family:  FontAwesome !important;
  
  font-weight: 300;
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 0;
  transition: all .3s;
  z-index: 3
}

#cms .light li a:hover:before {
  opacity: 1;
  transition: all .3s
}

#cms .light li a:hover:after {
  font-size:20px;
  transition: all .3s
}

#cms .light.limite li:nth-child(n+8) {
  display: none
}

#cms .light.limite li:nth-child(7) {
  position: relative
}

#cms .light.limite li a:hover .num {
  font-size: 0
}

#cms .light.limite li .num {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  margin-bottom: 0;
  background: rgba(0,0,0,.4);
  z-index: 1;
  transition: all .3s
}

#cms .generic .genericCont ul.light {
  padding-left: 0
}

#cms .grid-container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(3,300px);
  grid-gap: 12px;
  width: 100%
}

#cms .grid-container li:first-child {
  grid-column: 1/3;
  grid-row: 1/2
}

#cms .grid-container li:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1/3
}

#cms .grid-container li:nth-child(4) {
  grid-column: 1/2;
  grid-row: 2/4
}

#cms .grid-container li:nth-child(7) {
  grid-column: 2/5;
  grid-row: 3/4
}



@media screen and (max-width: 480px) {
  #cms .grid-container li:first-child {
      grid-column:1/5;
      grid-row: 1/2
  }

  #cms .grid-container li:nth-child(2) {
      grid-column: 1/3;
      grid-row: 2/5
  }

  #cms .grid-container li:nth-child(4) {
      grid-column: 3/5;
      grid-row: 2/4
  }

  #cms .grid-container li:nth-child(7) {
      grid-column: 1/4;
      grid-row: 5/6
  }

  #cms .grid-container {
      grid-template-rows: repeat(3,100px);
      grid-gap: 4px
  }


}
#cms h1,#contact h1{
  font-size: calc((var(--font--size-h1) / var(--font--size-base)) * 1rem) !important;
}
#cms #content{
  max-width: 1400px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

#contact #inner-wrapper,#sitemap #inner-wrapper{
  max-width: 1400px;
  margin:auto;
}

#order-confirmation #inner-wrapper,#order-detail #inner-wrapper{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#order-confirmation .mail-sent-info{
  background: none !important;
  padding-left: 0px !important
}

.definition-list dl dd, .definition-list dl dt{
  background: none !important;
}

#password #inner-wrapper{
  max-width: 1440px;
} 

#password #inner-wrapper .form-inline{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  margin-top: 25px;

}

#password #inner-wrapper .form-inline .btn-primary{
  margin-top: 20px;
  background-color: #111111;
  color: #fff;
}

#password #inner-wrapper .form-inline #email{
  max-width: 380px;
  width: 100%;
}

#password #content{
  padding: 3rem;
}

#password #lopdParentCheckCompatible{
  margin-top: 15px;
}

#password .idxjs-aprivacy-compatible{
  padding-left: 5px;
}

#password #lopdParentCheckCompatible hr{
  display: none;
}

#password #content-wrapper hr{
  border: none;
}

body .alert-warning{
  padding: 20px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  border-radius: 3px;
  background-color: #7b7b7e;
  border: none;
}

.carrier-description{
  line-height: 1.4em;
}

#order-confirmation h1 span i{
  display: none;
}
.estado-pedido{
  background-color: #999 !important;
}

.btn-datos-pedido{
  background: #111;
  color: #fff !important;
  padding: 5px !important;
  display: block;
}

#history .table.table-striped.table-bordered{
  border: none !important;
}

#order-detail .box{
  border: none !important;
}

.cms-id-2 .enc,.cms-id-10 .enc{
  font-size: 1.2rem;
  font-weight: bold;
  padding-top: 10px;
}

.dvFormasPagoCards img{
  display: inline;
}

.mobile-fix-whatsapp{
  display: none;
  position: fixed;
  bottom: 50px;
  right: 12px;
}

.mobile-fix-whatsapp img{
  height: 35px;
  width: 35px;
  background-color: #fff;
}

/** HOME **/

.slider-home-new .elementor-iqit-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
  .elementor-iqit-banner-subtitle.elementor-iqit-banner-description {
    position: relative;
    margin-bottom: 35px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
    font-size: 40px;
    order: 2;
  }
  .elementor-iqit-banner-title {
    position: relative;
    margin-bottom: 10px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    order: 1;
  }
  .slider-home-new .elementor-iqit-banner-content > div {
    order: 3;
  }
  #index .elementor-button-link.btn {
    margin-bottom: 0;
    padding: 10px 30px;
    border-radius: 5px!important;
    color: #fff;
    background-color: #000;
  }

@media (max-width: 720px){
  .mobile-fix-whatsapp{
    display:block;
  }
}

.slider-home-new a:hover{
  opacity: 1;
}

.slider-home-new .elementor-iqit-banner-overlay{
  background: #11111138;
    opacity: 1;
}

.slider-home-new h2{
  color: #fff !important;
  font-size: 34px !important;
}


.slider-home-new .elementor-iqit-banner{
  max-height: 100vh;
}

body#index #desktop_logo a img{
  filter: invert(100%)  drop-shadow(0 0 1px #fff);
 
}

body#index.nav-fixed #desktop_logo a img{
  filter: invert(0%);
}

.product-flags .discount, .product-flags .on-sale{
  font-size: 15px;
  font-weight: normal;
  padding: 5px 10px;
}