/* --- Products --- */

.product__content{
    position:relative;
}

.product__image{
    position: relative;
    padding-bottom: 100%;
    overflow:hidden;
}

.product__image:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 38.4868%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    display: block;
    z-index: 3;
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
}

.product__image:hover:before{
    opacity:1;
    visibility:visible;
}

.product__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    transition:var(--transition);
    margin:0;
}

.product__image:hover img{
    transform:scale(1.05);
}

.product__info{
    display:flex;
    padding-top:20px;
}

.product__left{
    width:100%;
    text-align: left;
    padding-right:16px;
}

.product__right{
    flex-shrink:0;
    display:flex;
    flex-flow:column;
        justify-content: flex-end;
     gap:5px;
}

.product__actions{
    display:flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:9999px;
   
}

.product__actions--cart{
    background-color:var(--primary-color);
}

.product__actions--cart:before {
    content: "\e903";
    text-indent: 0;
    display: inline-block;
    font-family: "omelet" !important;
    font-size: 1.2rem;
    color:#fff;
    text-indent: 0;
    transition: var(--transition);
    text-indent: 0;
}

.product__title{
    font-size: 1.8rem;
    font-weight: 500;
    text-transform:uppercase;
    letter-spacing:2px;
}

.product__measure{
    font-size:1.5rem;
    font-weight:400;
}

.product-whislist{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
}

.product-whislist .yith-wcwl-add-to-wishlist{
    margin:0;
     width: 100%;
    height: 100%;
}

.product-whislist .add_to_wishlist,
.product-whislist .yith-wcwl-add-button{
    display: flex;
    width: 100%;
    height: 100%;
    background-color:transparent!important;
}

.product-whislist .feedback{
    font-size:0;
    color:transparent;
}

.product-whislist  .yith-wcwl-wishlistaddedbrowse,
.product-whislist  .yith-wcwl-wishlistexistsbrowse{
    display:flex;
    width:100%;
    height:100%;
    background-color:transparent!important;
}
.product-whislist .add_to_wishlist span,
.product-whislist .yith-wcwl-wishlistexistsbrowse a,
.product-whislist .yith-wcwl-wishlistaddedbrowse a{
    display:none;
}

.product-whislist .add_to_wishlist .yith-wcwl-icon{
    opacity:1;
}

.product-whislist img{
    width:100%;
    height:100%;
    border-radius:0!important;
    margin:0!important;
}

.yith-wcwl-add-to-wishlist a:after,
.yith-wcwl-add-to-wishlist a .blockUI{
    display: none!important;
}

.product__price{
    text-align:left;
    margin-top:18px;
        display: flex;
    align-items: center;
    gap: 10px;
}

.product__price:before {
    content: "\e90a";
    display: inline-block;
    font-size: 1.9rem;
    font-family: 'omelet' !important;
    transition: var(--transition);
    color: var(--primary-color);
}

.product__price span{
    font-size: 1.6rem;
    margin: 0!important;
    font-weight:300;
    color:var(--text-color)!important;
}

.product__price .price{
    display:flex!important;
    align-items:center;
}

.product__price .price .price-title{
    order:1;
    margin-right:6px!important;
}

.product__price .price ins{
    order:2;
}

.product__price .price del{
    order:3;
}

.product__price del,
.product__price ins{
    opacity:1;
    text-decoration: none!important;
    margin:0!important;
}

.product__price ins{
    margin-right:6px!important;
}

.product__price del{
    text-decoration: line-through!important;
}

/* -------------- Shop ------------ */

.storefront-sorting{
    margin:0!important;
}

.storefront-sorting::before, .storefront-sorting::after,
.storefront-sorting .woocommerce-notices-wrapper{
    display:none!important;
}

.content-area, .site-main {
    width: 100%;
    margin: 0!important;
}

.right-sidebar .content-area{
    width: 100%!important;
    float: none!important;
    margin: 0!important;
}

.shop{
    position:relative;
    overflow:hidden;
    z-index:2;
}


.shop-grid,
.shop-content{
    display:flex;
    flex-direction:column-reverse;
    width:100%;
}

@media screen and (min-width: 1280px) {
   .shop-grid,
.shop-content{
        flex-direction:row;
    }
}

.shop-wrapper{
    max-width:680px;
    margin:0 auto;
}

@media screen and (min-width : 580px) {
    
}
@media screen and (min-width: 980px) {
    
}
 
@media screen and (min-width: 1280px) {
   .shop-wrapper{
        max-width:100%;
        margin:0 auto;
    }
}

.products-grid{
    position: relative;
    z-index: 1;
}

.products-grid .products:not(.related){
    display:flex;
    flex-wrap:wrap;
    margin:-10px!important;
}

@media screen and (min-width: 580px) {
    .products-grid .products:not(.related){
        margin:-20px!important;
    }
}

.products-grid .products:not(.related) .product{
    width:50%!important;
    margin:0!important;
    padding:10px;
   
}

@media screen and (min-width: 580px) {
    .products-grid .products:not(.related) .product{
        width:33.33%!important;
        padding:20px;
    }
    
    .products-grid .products.related .product{
        width:33.33%!important;
    }
}

@media screen and (min-width: 1280px) {
    .products-grid .products:not(.related) .product{
        width:33.33%!important;
    }
    
    .products-grid .products.related .product{
        width:25%!important;
    }
}

.products-grid .woocommerce-ordering,
.products-grid .woocommerce-result-count{
    display:none!important;
}

/* ---------------- Shop sidebar -------------------- */

.shop-sidebar{
    width:100%;
    margin:0;
    margin-top:25px;
    padding:0;
        position: relative;
    z-index: 99;
}

@media screen and (min-width: 1280px) {
    .shop-sidebar{
        width:100%;
        margin:0;
        padding-right:55px;
    }
}

.shop-sidebar-wrapper{
    padding:0 10px;
}

.shop-sidebar > h2{
    font-size:3.5rem;
    margin-bottom:25px;
}

.shop-sidebar-title{
    width: 100%;
}

.shop-sidebar-title .storefront-breadcrumb{
    padding:0;
    margin:0;
}

.shop-sidebar-title,
.banner-title .shop-sidebar-title{
    font-size:2.6rem!important;
    font-weight: 500!important;
    line-height:1.2!important;
}

@media screen and (min-width: 1280px) { 
    .shop-sidebar-title,
    .shop-sidebar-title .woocommerce-breadcrumb{
       font-size:3.5rem!important;
    }
}

.shop-sidebar-title .breadcrumb-separator,
.shop-sidebar-title .woocommerce-breadcrumb a{
    display:none!important;
}

.shop-sidebar .widget{
    margin:0;
}

.shop-sidebar .widget.widget_price_filter{
    margin-top:35px;
}

.shop-sidebar-item{
    position:relative;
    margin-bottom:35px;
    padding-bottom:35px;
    border-bottom:1px solid var(--black-color);
}
.shop-sidebar-item:last-child{
    margin-bottom:0px;
    padding-bottom:0px;
    border-bottom:0;
}

.shop-sidebar-widget .widgettitle{
    display:none!Important;
}

.shop-sidebar-widget h2{
    font-size:3rem;
    font-weight: 500;
    margin-bottom:20px;
    font-family:var(--secondary-font);
}

.sidebar-price .price_slider_amount{
        display: flex;
    flex-flow: row-reverse;
    margin-top: 0;
    align-items: center;
    text-align: left;
    justify-content: flex-end;
}

.sidebar-price .price_slider_amount .price_label{
    display:flex;
    align-items:center;
    font-weight:500;
    font-size:1.6rem;
}

/*.sidebar-price .price_slider_amount .price_label span:first-child:after{*/
/*    content:"a";*/
/*    margin:0 5px;*/
/*    display:inline-block;*/
/*}*/

.sidebar-price .clear{
    display:none;
}

.sidebar-price .widget_price_filter .ui-slider-horizontal{
    height:2px;
}

.sidebar-price .widget_price_filter .ui-slider .ui-slider-range{
    background-color: var(--primary-color);
}

.sidebar-price .widget_price_filter .ui-slider .ui-slider-handle{
    width:13px;
    height:13px;
    background-color: var(--primary-color);
    margin-top: -5px;
}

.sidebar-price .widget_price_filter .ui-slider .ui-slider-handle:last-of-type{
   margin-left: -10px;
}


.sidebar-price .widget_price_filter .price_slider_wrapper .ui-widget-content{
    background-color: var(--text-color);
}

.sidebar-price .widget_price_filter .price_slider_amount .button{
    padding: 0 28px;
    border: 1px solid var(--text-color);
    background-color:var(--text-color);
    height: 42px;
    transition: var(--transition);
    font-size:1.5rem;
    width:auto;
    color:#fff;
    margin-left:30px;
    font-weight:300;
    text-transform:uppercase;
}

.sidebar-price .widget_price_filter .price_slider_amount .button:hover{
    background-color:var(--primary-color);
    border-color: var(--primary-color);
}

.shop-ads{
    margin-bottom:40px;
}

.shop-ads a{
    display:block;
    margin-top:42px;
}

.shop-ads img{
    width:100%;
    height:auto;
}

.shop-products{
    width:100%;
    flex-shrink:0;
}

@media screen and (min-width: 1280px) {
    .shop-products{
        width:860px;
    }
}

.sidebar-buttons ul.woocommerce-widget-layered-nav-list{
    display: flex;
    flex-wrap: wrap;
    margin:-3px;
}

.sidebar-buttons ul.woocommerce-widget-layered-nav-list li{
    padding:3px;
}

.sidebar-buttons ul.woocommerce-widget-layered-nav-list li:before{
    display:none;
}

.sidebar-buttons ul.woocommerce-widget-layered-nav-list li a{
    width:48px;
    height:35px;
    display:flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--secondary-color);
    font-size:1.5rem;
    font-weight:400;
    transition:var(--transition);
}

.sidebar-buttons ul.woocommerce-widget-layered-nav-list li.chosen a,
.sidebar-buttons ul.woocommerce-widget-layered-nav-list li a:hover{
    background-color:var(--secondary-color);
    color:#fff;
}

.sidebar-buttons ul.woocommerce-widget-layered-nav-list li .count{
    display:none;
}

.sidebar-list ul.product-categories li{
    padding:0;
    align-items: center;
    width: 100%;
    position:relative;
    border-bottom:1px solid var(--text-color);
}
.sidebar-list ul.product-categories li:last-child{
    border-bottom:0;
}

.sidebar-list ul.product-categories li:before{
    display:none;
}

.sidebar-list ul.product-categories li .count{
    width:20px;
    height:20px;
    border-radius:9999px;
    background-color:var(--primary-color);
    color:#fff;
    font-size:1.2rem;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
}

.sidebar-list ul.product-categories li a{
    display:flex;
    padding:8px 0;
    font-size:1.6rem;
    font-weight:300;
}


.shop-categories{
    margin-bottom:50px;
}

.shop-categories-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px;
}

.shop-categories-header h2{
    font-weight:2.5rem;
    font-weight:400;
}

.shop-categories-header-dots .slick-dots{
    margin:0;
}

#shopCategoriesSlider{
    position:relative;
        z-index: 2;
}

#shopCategoriesSlider:after{
    content:"";
    position:absolute;
    top:0;
    right:100%;
    width:100vw;
    height:100%;
    background-color:var(--gray-color);
        z-index: 1;
}

#shopCategoriesSlider .slick-list{
    margin:-15px;
     overflow:visible;
}

.shop-categories-item{
    padding:15px;
}

.shop-categories-image{
     position: relative;
    padding-bottom: 61%;
    overflow:hidden;
}

.shop-categories-image img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:var(--transition);
}

.shop-categories-image:hover img{
    transform:scale(1.05);
}

.shop-categories-wrapper{
    position:relative;
    min-width:230px;
}

.shop-categories-wrapper .btn{
    position:absolute;
    bottom:12px;
    left:12px;
}

/* --- Pagination ---- */

.woocommerce-pagination,
.pagination{
    display: flex!important;
    width: 100%;
    justify-content: center;
    border:0!important;
    margin-top: 0!important;
    padding:0!important;
    width:100%;
}

@media screen and (min-width: 1280px) {
    .pagination{
        margin-top: 90px!important;
    }

}

.pagination{
    margin-top: 40px!important;
}

@media screen and (min-width: 1280px) {
    .pagination{
        margin-top: 90px!important;
    }

}

.woocommerce-pagination{
    padding:45px 0!important;
    position:relative;
}

@media screen and (min-width: 1280px) {
    .woocommerce-pagination{
        padding:65px 0!important;
    }

}

.woocommerce-pagination .page-numbers,
.nav-links .page-numbers{
    width:100%;
    position:relative;
}
.woocommerce-pagination .page-numbers{
    display: flex;
    justify-content: center;
    align-items:center;
}


.woocommerce-pagination .page-numbers li,
.nav-links .page-numbers li{
    margin:0 6px!important;
     width:26px!important;
    height:26px!important;
}

.woocommerce-pagination .page-numbers li .page-numbers,
.nav-links .page-numbers li .page-numbers{
     width:100%!important;
    height:100%!important;
    border:none!important;
    padding: 0px!important;
    margin:0!important;
    display: flex!important;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;
    font-weight:500;
    line-height: 1;
    font-size:1.6rem;
    opacity:1;
    color:var(--text-color)!important;
        background-color: transparent!important;
}

.woocommerce-pagination .page-numbers li .page-numbers.prev:hover,
.woocommerce-pagination .page-numbers li .page-numbers.next:hover,
.nav-links .page-numbers li  .page-numbers.prev:hover,
.nav-links .page-numbers li  .page-numbers.next:hover{
   background-color:transparent!important;
}

.woocommerce-pagination .page-numbers li .page-numbers.next,
.woocommerce-pagination .page-numbers li .page-numbers.prev,
.nav-links .page-numbers.next,
.nav-links .page-numbers.prev{
    padding:0!important;
    text-indent:-9999px;
    background-color:#fff!important;
}

.woocommerce-pagination .page-numbers.next:after,
.woocommerce-pagination .page-numbers.prev:after,
.nav-links .page-numbers.next:after,
.nav-links .page-numbers.prev:after{
    content:"\e901";
    width:100%;
    height:100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size:1.5rem;
    font-family: "omelet" !important;
        display: flex;
    align-items: center;
    justify-content: center;
    font-weight:300;
}

.woocommerce-pagination .page-numbers.prev:after,
.nav-links .page-numbers.prev:after{
    transform: translateY(-50%) scalex(-1);
}

/* --------------- Product sorting -------------- */

.products-sorting{
    max-width: 720px;
    margin: 0 auto;
    margin-bottom:40px;
    
}


@media screen and (min-width: 1280px) {
   .products-sorting{
        margin-bottom:35px;
        max-width: 100%;
    }
}

.products-sorting .storefront-sorting{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-content: space-between;
    flex-direction: column;
    width:100%;
}

@media screen and (min-width: 1280px) {
     .products-sorting .storefront-sorting{
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

.products-sorting .woocommerce-result-count{
    font-size:1.6rem;
    font-weight:300;
    margin:0;
    margin-top:10px;
}


@media screen and (min-width: 1280px) {
    .products-sorting .woocommerce-result-count{
        margin:0;
    }

}

.products-sorting .woocommerce-ordering{
    margin:0;
}

.products-sorting .woocommerce-pagination{
    display:none!important;
}

.products-sorting  select.orderby{
    width: 100%;
    border:0;
    padding: 10px 18px;
    padding-right: 40px;
    color: var(--text-color);
    height: auto;
    border:1px solid var(--black-color);
    font-size:1.6rem;
    font-weight:300;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-position: right 18px center;
    background-size: 12px;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1280px) {
    .products-sorting  select.orderby{
        width: auto;
    }
}

/* -------------- Shop products ----------------- */

.shop-intern{
    padding-top:45px;
    
    background-color:var(--gray-color);
}

@media screen and (min-width: 1280px) {
    .shop-intern{
       padding-bottom:95px;
    }
}


.shop-intern-wrapper{
    display:flex;
    flex-direction:column;
    width:100%;
    
}

@media screen and (min-width: 1280px) {
    .shop-intern-wrapper{
        flex-direction:row;
    }
}

.shop-intern-item{
    width:100%;
    margin-bottom:25px;
    position:relative;
}

@media screen and (min-width : 580px) {
    
}
@media screen and (min-width: 980px) {

}

@media screen and (min-width: 1280px) {
    .shop-intern-item{
        width:100%;
        margin-bottom:0px;
    }
}

.shop-intern-gallery{
    max-width:100%;
    flex-shrink:0;
}

@media screen and (min-width: 1280px) {
    .shop-intern-gallery{
        width:652px;
    }
}

.product-carousel {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    position:relative;
}

/*@media screen and (min-width: 1280px) {*/
/*    .product-carousel {*/
/*		position: sticky;*/
/*   	 	top: 120px;*/
/*    }*/
/*}*/

.product-carousel .product-tag{
    top:10px;
    right:10px;
}


@media screen and (min-width : 580px) {
    
}
@media screen and (min-width: 980px) {

}

@media screen and (min-width: 1280px) {
    .product-carousel .product-tag{
        top:-10px;
        right:-20px;
    }
}

.zoom-product-carousel{
    position:absolute;
    top:15px;
    right:15px;
    height:40px;
    width:20px;
    height:20px;
    background-image: url(../images/zoom-icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index:999;
    pointer-events:none;
}

.product-carousel-nav {
    width: 20%;
    padding:0;
    margin-right: 0px;
    padding-right:5px;
    display: none;
    position:relative;
    flex-shrink:0;
}

@media screen and (min-width: 580px) {
    .product-carousel {
        height: 580px;
    }
    .product-carousel-nav {
        display: block;
        
    }
}

@media screen and (min-width: 980px) {
    
}

@media screen and (min-width: 1280px) {
    
}

.product-carousel-nav:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    background-color:#fff;
    height:30px;
    width:100%;
    display:none;
}

.easyzoom-flyout {
    overflow:hidden!important;
}
.easyzoom-flyout img {
    max-width: none;
    overflow:hidden!important;
}

.product-carousel-nav .slick-slide{
    height:25%;
    border: 0;
    cursor: pointer;
    opacity:.3;
   
}

.product-carousel-nav .slick-slide.slick-current{
    opacity:1;
}

.product-carousel-nav .slick-slide div{
    height:100%;
}

.product-carousel-nav-image{
    width: 100%;
    height: 100%;
    padding:15px 9px;
}

.product-carousel-nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
    border-radius:0px;
}

.product-carousel-nav,
.product-carousel-nav .slick-list,
.product-carousel-nav .slick-track{
    height: 100%!important;
}

.product-carousel-slider{
    margin:0!Important;
    overflow: hidden;
}

.product-carousel-slider .slick-dots{
    bottom:8%;
    position:absolute;
}

.product-carousel-slider-wrapper {
    width: 100%;
    position: relative; 
}

@media screen and (min-width: 580px) {
    .product-carousel-slider-wrapper {
        min-width: 80%;  
        padding:15px 9px;
    }
}

@media screen and (min-width: 980px) {
    
}

@media screen and (min-width: 1280px) {
    
}



.product-carousel-slider .slick-dots li{
   margin-top:40px;
}

.product-carousel-slider .slick-slide{
    /* margin: 0 5px; */
    margin: 0;
}

.product-carousel-slider .slick-slide.slick-current {

}

.product-carousel-slider img {
     width: 100%;
    margin: 0 auto;
    height: 100%; 
    object-fit: cover;
}

.product-carousel-slider .slick-slide a {
    display: flex;
    height: 100%;
    width: 100%;
}

.product-carousel-slider-wrapper,
.product-carousel-slider,
.product-carousel-slider .slick-list,
.product-carousel-slider .slick-track,
.product-carousel-slider .slick-slide,
.product-carousel-slider .slick-slide div{
    height: 100%;
}


.product-carousel-slider-wrapper .slick-dots li {
    background: var(--light-background);
    border-radius:9999px;
    width: 14px !important;
    height: 14px !important;
    margin:0 10px !important;
}

.product-carousel-slider-wrapper .slick-dots li.slick-active {
    background: var(--primary-color);
}

.shop-intern-content{
    margin-bottom:35px;
    width:100%;
}

@media screen and (min-width: 1280px) {
    .shop-intern-content{
        padding-bottom:40px;
        padding-left:65px;
        
    }

}

.single-product-title{
        display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:35px;
}


.shop-intern-content h1.product_title{
    margin:0;
    font-weight:400;
    font-size:2rem;
    margin-bottom: 0;
    color:var(--text-color);
    margin-bottom:20px;
        letter-spacing: 2px;
    text-transform: uppercase;
}

@media screen and (min-width: 1280px) {
    .shop-intern-content h1.product_title{
        font-size:2.5rem;
    }

}


.single-product-wrap{
    display:flex;
    align-items:center;
    margin-bottom:35px;
}


.single-product-wrap .product__tag{
    position:relative;
    right:0;
    top:0;
    margin-left:15px;
}


.shop-intern-content .price{
    margin:0!important;
    margin-bottom:40px!important;
        display: flex;
    align-items: center;
    gap: 10px;
}

.shop-intern-content .price:before {
    content: "\e90a";
    display: inline-block;
    font-size: 1.9rem;
    font-family: 'omelet' !important;
    transition: var(--transition);
    color: var(--primary-color);
}

.shop-intern-content .price,
.shop-intern-content .price span{
    color:var(--black-color)!important;
    font-weight: 400!important;
    line-height: 1;
    font-size:2.6rem!important;
}


.product-type-variable .shop-intern-content .price{
   display:block!important;
}

.shop-intern-content  .price ins,
.shop-intern-content  .price del{
    margin:0!important;
}

.shop-intern-content  .price ins{
    text-decoration: none;
}
    

.shop-intern-content  .price del{
    opacity:1;
    margin-left:10px!important;
}

.shop-intern-content  .price del,
.shop-intern-content  .price del span{
    font-weight:400!important;
    font-size:1.6rem!important;
}

.shop-intern-content .woocommerce-product-details__short-description,
.shop-intern-content .woocommerce-product-details__short-description p{
    margin:0;
    width:100%;
}

.shop-intern-content .woocommerce-product-details__short-description p{
    font-size:1.6rem;
    line-height:1.8;
    font-weight:300;
    text-align:justify;
}

.guia-de-tallas{
    display:inline-block;
    align-items:center;
    min-height:34px;
    padding:8px 34px;
    padding-right:15px;
    border:1px solid var(--secondary-color);
    font-size:1.5rem;
    font-weight:400;
    background-image: url(../images/ruler.svg);
    background-position:left 12px center;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-top:20px;
    
}

.shop-intern-content .woocommerce-product-details__short-description ul{
    list-style:disc;
    margin-left:20px;
}

.shop-intern-content .woocommerce-product-details__short-description ul li{
    margin-bottom:10px;
}

.single-product.woocommerce .shop-intern-content form, 
.single-product.woocommerce .shop-intern-content .woocommerce-variation-add-to-cart {
    margin:0!important;
    padding:0!important;
    width:100%;
}

.single-product div.product table.variations{
    width:100%;
}

.single-product div.product table.variations tbody tr{
    display: flex;
    align-items: center;
    margin-bottom:10px;
}

.single-product div.product table.variations tbody .label{
    width:75px!important;
}

.single-product.woocommerce .shop-intern-content form{
        margin-top: 40px!important;
    padding-top: 40px!important;
    position:relative;
}

.single-product.woocommerce .shop-intern-content form:after{
        content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 4px;
    background-color: #6d6d6d;
}

.single-product.woocommerce .shop-intern-content .woocommerce-variation-add-to-cart {
    margin-top:25px!important;
}

.shop-intern-content form table.variations{
    position:relative;
}

.shop-intern-content form table.variations .label,
.shop-intern-content form table.variations .value{
    padding-right:0px!important;
}

.shop-intern-content form table.variations .label label{
    font-size:1.5rem;
    line-height: 1;
    font-weight:400;
    color:var(--primary-color);
    margin:0;
}

.single-product div.product table.variations .value{
    margin:0;    
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item{
    border-radius:0;
    height:30px;
    padding:0 16px;
    border:1px solid var(--primary-color);
        text-transform: uppercase;
    font-size: 1.5rem;
}

.woo-variation-swatches .variable-items-wrapper{
    
}

.shop-intern-content form table.variations .value select{
    width: 100%;
    max-width: 340px!important;
    padding: 0px 15px;
    padding-right: 40px;
    color: #afafaf;
    height: 36px;
    border-radius:4px;
    background-color:#fff;
    border:1px solid #494949;
    font-size:1.6rem;
    font-weight:100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-position: right 20px center;
    background-size: 5px;
    background-repeat: no-repeat;
}

.shop-intern-content form table.variations .reset_variations,
.shop-intern-item .out-of-stock{
    padding: 5px 12px;
    margin: 0;
    font-size: 1rem;
    line-height: 1;
    border-radius: 4px;
    background: #f14040;
    color: #fff!important;
    position:absolute;
    top:0;
    right:0;
}

.shop-intern-item .out-of-stock{
    position:relative;
    margin:20px 0;
}

.shop-intern-content form table.variations tbody tr:last-child .value{
    margin:0;
}

.shop-intern-content .single_add_to_cart_button{
    margin:0!important;
    height:42px!important;
    display:flex!important;
    align-items:center;
    justify-content:center;
    color: #fff!important;
    border: 1px solid var(--primary-color)!important;
    background-color: var(--primary-color)!important;
    border-radius:0;
    font-weight:300;
    font-size:1.6rem;
    transition:all .3s ease;
    width:auto;
    padding:0px 22px;
    position:relative;
    white-space:nowrap;
    text-transform:uppercase;
}

.shop-intern-content .single_add_to_cart_button:hover{
    background-color: var(--text-color)!important;
    border-color:var(--text-color)!important;
}

.shop-intern-content .single_add_to_cart_button:before{
    content:"";
     width: 20px;
    height: 20px;
    position: absolute;
    top:50%;
    transform:translatey(-50%);
    left:18px;
    background-image: url(../images/cart-icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/*.shop-intern-content .single_add_to_cart_button > span{*/
/*    width:100%;*/
/*    height:100%;*/
/*    position: absolute;*/
/*    left: 0%;*/
/*    top: 0%;*/
/*    background-color:#60beba;*/
/*    border-radius:4px;*/
/*    animation:none!important;*/
/*    opacity:0;*/
/*    visibility:hidden;*/
/*    margin:0;*/
/*    transition:all .3s ease;*/
/*    transform:scale(0);*/
/*}*/
/*.shop-intern-content .single_add_to_cart_button > span.xoo-wsc-active{*/
/*    opacity:1;*/
/*    visibility:visible;*/
/*    transform:scale(1);*/
/*}*/

.shop-intern-content .single_add_to_cart_button > span:before{
    content:"";
     width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background-image: url(../images/btn-loader.gif);
    background-position: center;
    background-size: 25%;
    background-repeat: no-repeat;
}

.shop-intern-share{
    display:flex;
    align-items: center;
    margin:5px 0;
}

.shop-intern-share > h2{
    margin-right:10px;
    font-size:1.6rem;
    font-weight:400;
}

.shop-intern-share .a2a_kit{
    display:flex;
    align-items: center;
    justify-content:center;
}

.shop-intern-share .a2a_kit a{
    display:flex;
    align-items: center;
    margin: 0 -3px;
}

.shop-intern-share .a2a_kit .a2a_svg{
    background-color:transparent!important;
    height: 34px!important;
    width: 34px!important;
}


.shop-intern-share .a2a_kit .a2a_svg svg path{
    fill: var(--text-color)!important;
}

.qib-container{
    width:150px;
    height:35px;
    border:0;
    display:flex!important;
    position:relative;
    margin:0px;
    border:1px solid var(--black-color)!important;
}

.shop-intern-wrapper .qib-container{
    margin-top:40px;
    margin-bottom:25px;
    width:152px;
}


.shop-intern-wrapper .qib-container:before{
    content: "Cantidad";
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 400;
    position: absolute;
    bottom: calc(100% + 15px);
    text-transform:uppercase;
    letter-spacing:2px;
}

.qib-container .quantity{
    width:40%!important;
    height:100%!important;
    border:0!important;
    margin:0 auto!important;
}

.qib-container .quantity input{
    width:100%!important;
    height:100%!important;
    text-align: center!important;
    padding:0 12px!important;
    font-size:1.5rem!important;
    font-weight:400!important;
    border:0!important;
    color:var(--text-color)!important;
}


.qib-container .qib-button{
    position:absolute;
    right:0;
    width:30%!important;
    height:100%!important;
    padding:0!important;
    background-color:transparent!important;
    border:0!important;
    text-indent:-9999px;
    display:flex;
}

.qib-container .qib-button::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-indent: 0;
    font-size:1.6rem;
    font-weight:400;
    line-height:1;
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--text-color)!important;
    border:1px solid var(--primary-color);
}


.qib-container .qib-button.plus{
    right:0;
    
}

.qib-container .qib-button.minus{
    left:0;
   
}

.qib-container .qib-button.plus::before{
    content:"+";
}

.qib-container .qib-button.minus::before{
    content:"-";
}

.wrap-button-cart{
    display: flex!important;
    flex-flow:column;
    
    gap: 20px;
    margin:0!important;
}

@media screen and (min-width: 1280px) {
    .wrap-button-cart{
        flex-flow:row;
         gap: 35px;
         align-items: center;
    }
}

.shop-intern-content .accordion{
    width:100%;
    border-radius:0;
    margin-top:40px;
}

.shop-intern-content .js-accordion-item{
   
    border:0;
    border-bottom:1px solid var(--primary-color);
}

.shop-intern-content .accordion-header{
    background-color:transparent!important;
    color:var(--primary-color);
    font-size:1.5rem;
     padding:18px 0;
         text-transform: unset;
         letter-spacing:0;
}

.shop-intern-content .accordion__item > .accordion-header:after {
    content: "";
    width:20px;
    height:20px;
    background-image: url(../images/select-arrow.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.shop-intern-content .accordion-body {
    background: #fff;
    color: var(--primary-color);
}

.shop-intern-content .accordion-body__contents{
        padding: 18px 0;
        border-top:1px solid var(--primary-color);
    font-size: .85em;
    font-size: 1.5rem;
    line-height:1.5;
}
/* ------ Tabs ----- */

.js-tab-panel{
    display: inherit;
}
.js-tab-panel.is-hidden{
    display: none;
}

/* --- Main-page ---- */

.shop-tabs{
    margin-top:50px;
}

.shop-tabs .tablist{
    display: flex;
    align-items: center;
}

.shop-tabs .js-tab-trigger{
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    font-weight:400;
    padding:0 25px;
    height:54px;
    transition:var(--transition);
    border:1px solid transparent;
}

.shop-tabs .js-tab-trigger:hover,
.shop-tabs .js-tab-trigger.is-selected{
    border-color: var(--primary-color);
    background-color: var(--secondary-color);
}

.shop-tabs .tabcontent{
}


.shop-tabs .js-tab-body{
    font-size:1.5rem;
    padding:40px 38px;
    border:1px solid  var(--primary-color);
}

.shop-tabs .js-tab-body ul,
.shop-tabs .js-tab-body ul li{
	list-style:disc;
}

.shop-tabs .js-tab-video{
    position:relative;
    padding-bottom:56.25%;
}

.shop-tabs .js-tab-video iframe,
.shop-tabs .js-tab-video video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.added_to_cart{
    display:none!important;
}

.section--related .related.products > h2{
    display:none;
}


.related-wrapper .products-grid{
    width:100%;
}

.related-wrapper{
    padding:0px;
}

@media screen and (min-width: 1280px) {
    .related-wrapper{
        padding: 0 28px;
    }
}


@media screen and (min-width: 1280px) {
    #products-measure{
        padding:50px 0;
    }
}

.products-measure-grid{
    display:flex;
    flex-wrap:wrap;
    margin:-10px;
    align-items:center;
    justify-content:center;
}

@media screen and (min-width: 1280px) {
    .products-measure-grid{
        padding:0 80px;
        margin:0;
    }
}

.products-measure-item{
    width:50%;
    position:relative;
    padding:10px;
}

@media screen and (min-width: 1280px) {
    .products-measure-item{
        width:25%;
        padding:0;
    }
}



@media screen and (min-width: 1280px) {
    .products-measure-item:after{
        content:"";
        position:absolute;
        top:50%;
        right:0;
        transform:translatey(-50%);
        width:1px;
        height:70px;
        background-color:var(--black-color);
    }
}

.products-measure-item:last-child:after{
    display:none;
}

.products-measure-wrapper{
    display:flex;
    flex-flow:column;
    align-items:center;
    text-align:center;
}

.products-measure-wrapper h2{
    color:var(--primary-color);
    font-size:2rem;
    margin-bottom:10px;
}

@media screen and (min-width: 1280px) {
     .products-measure-wrapper h2{
        font-size:3.5rem;
    }
}

.products-measure-wrapper p{
    font-size:2.7rem;
}

#products-gallery{
    padding:0;
}

.products-gallery-block{
    width:100%;
    flex-flow:column;
    display: flex;
    
}

@media screen and (min-width: 1280px) {
    .products-gallery-block{
        height:560px;
        flex-flow:row;
        gap:8px;
    }
}

.products-gallery-grid{
    display:flex;
     flex-wrap:wrap;
    
    
}

.products-gallery-grid:first-child{
    width:100%;
    flex-shrink:0;
}

@media screen and (min-width: 1280px) {
    .products-gallery-grid:first-child{
        width:810px;
    }
}

.products-gallery-grid:last-child{
    width:100%;
    
}

.products-gallery-item{
    width:100%;
        height: 100%;
}

@media screen and (min-width: 1280px) {
    .products-gallery-grid:last-child{
        margin:-4px;
    }
}

.products-gallery-grid:last-child .products-gallery-item{
    height:100%;
    width:100%;
}

@media screen and (min-width: 1280px) {
    .products-gallery-grid:last-child .products-gallery-item{
        height:50%;
        width:50%;
        padding:4px;
    }
}

.products-gallery-wrapper{
    display:block;
    width:100%;
    height:100%;
}

.products-gallery-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*@media screen and (min-width: 1280px) {*/
/*    .products-gallery-wrapper img{*/
/*        height:100%;*/
/*    }*/
/*}*/

.sl-wrapper .sl-close, .sl-wrapper .sl-navigation button, .sl-wrapper .sl-counter {
    color: #fff !important;
}

.sl-overlay {
    background-color: #000 !important;
}

/* --- Sidebar cart --- */

.xoo-wsc-container .button{
    border-color: var(--text-color)!important;
    background-color: var(--text-color)!important;
    font-weight:400!important;
    color:#fff!important;
    display: flex;
    font-size: 1.6rem;
    min-height: 42px;
	align-items: center;
	padding: 0 10px;
}

.xoo-wsc-container .button:hover {
    border-color: var(--primary-color)!important;
    background-color: var(--primary-color)!important;
}

.xoo-wsc-container .button:after{
    color:#fff !important;
}

.xoo-wsc-empty-cart span,
.xoo-wsc-pname > a,
.xoo-wsc-ft-amt-label,
.xoo-wsch-text{
    font-weight: 400!Important;
}
.xoo-wsc-qty-box.xoo-wsc-qtb-square{
    border-color:var(--primary-color);
}
.xoo-wsch-top {
    justify-content: flex-start;
}

.xoo-wsc-pprice{
    font-size:0;
    
}

.xoo-wsc-pprice span{
    font-size:1.5rem;
}

.xoo-wsc-ft-btn-continue{
  display:none!important;  
}

.xoo-wsc-ft-buttons-cont {
    grid-template-columns: 1fr;
}

.xoo-wsc-qtb-square input[type="number"].xoo-wsc-qty{
    border: 0;
}

/* ------------ 404 ------------------- */

.no-enocontrado{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding-bottom: 8rem;
    padding-top: 8rem;
    min-height:60vh;
}

.no-enocontrado h2{
    font-size: 2.5rem;
    margin-bottom:25px;
    font-weight:300!important;
    line-height: 1.2!important;
    color:var(--primary-color);
    font-family:var(--secondary-font);
}


@media screen and (min-width: 1280px) {
    .no-enocontrado h2{
        font-size: 4rem;
    }
}

.no-enocontrado p{
    margin-bottom:40px;
    font-size:2rem;
    font-weight:300;
}

.related > h2{
    display:none;
}