@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-BoldItalic.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Light.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-LightItalic.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

:root{
    --primary-font: 'Roboto Condensed';
    --base-size-font:16px;
    --primary-color:#000;
    --secondary-color:#ffb700;
    --gray-color:#ebebeb;
    --transition:all .4s ease;
    --box-shadow: rgb(0 0 0 / 10%) 1px 1px 10px;
    --border-radius:12px;
    --letter-spacing:0.15em;
}

html{
    font-size: 62.5%;
}

body {
    background-color: #fff;
    font-weight: 300;
	font-size:var(--base-size-font);
	font-family:var(--primary-font);
    color:var(--primary-color);
    line-height: 1.2;
    letter-spacing: var(--letter-spacing);
    font-style: normal;
     opacity:0;
    margin:0!important;
}

body.loading{
    opacity:1;
    transition:var(--transition);
}

body.fading{
    opacity:0;
    transition:var(--transition);
}
textarea{
    font: 300 var(--base-size-font) var(--primary-font);
}

/* --- Container --- */

.container{
    margin: 0 auto;
    width: 98%;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}

@media screen and (min-width: 580px) {
    .container{
        width: 95%;
    }
}

@media screen and (min-width: 1280px) {
    .container{
        width: 100%;
    }
}

/*** Slick arrow ***/

.slick-arrow{
    width: 30px;
    height: 30px;
    z-index: 99;
    background: transparent;
    transition: var(--transition);
    display:inline-block;
}

.slick-arrow:before{
    display: none;
}

.slick-arrow:after{
    content: "";
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background-image: url(../images/arrow-next.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.slick-prev:after{
    transform: translate(-50%,-50%) scaleX(-1) ;
}


/* --- Slick --- */

.slick-dots{
    display: flex;
    justify-content: center;
    bottom: 0;
    pointer-events: none;
    position: relative;
    margin-top: 40px;
}

.slick-dots li{
    width: 14px;
    height: 14px;
    margin: 0 6px;
    border-radius: 9999px;
    transition: all .3s cubic-bezier(0.01, 0.32, 0.11, 0.99);
    background-color: #fff;
	border:1px solid #000;
}

.dots-dark .slick-dots li{
    background-color: var(--gray-color);
}

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

.slick-dots li button{
    width:100%;
    height:100%;
    padding:0;
    pointer-events: all;
}

.slick-dots li button::before{
    display: none;
}

/* ---------------- Formularios  ---------------- */

.form-control{
    padding: 12px 20px!important;
    border-radius:0!important;
    height: auto;
    box-shadow:none!important;;
    line-height: 1!important;
    background-color: #fff!important;
    border: 1px solid #e2e2e2;
    width:100%;
}

textarea.form-control{
    min-height:200px;
    width:100%;
    padding: 20px!important;
}

select.form-control{
    width:100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-position: right 20px center;
    background-size: 8px;
    background-repeat: no-repeat;
	min-height:43px;
}

.form-control,
.form-control::placeholder{
    font-size: 1.4rem!important;
    color:var(--primary-color)!important;
    font-family: var(--primary-font);
    line-height:1.8;
    letter-spacing:var(--letter-spacing);
}

.form-group{
    margin-bottom:15px;
    display: flex;
    flex-flow: column;
}

.form-group label{
    margin-bottom: 10px;
    font-size: 1.5rem!important;
    font-weight: 400;
    display:inline-block;
}

.form-group br{
    display:none!important;
}


.form-group small{
   font-weight: 300;
    font-size: 1.6rem;
    margin-top: 10px;
    display: block;
}


.form-row{
    margin:0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom:15px;
    width:100%;
}



@media screen and (min-width : 580px) {
   .form-row{
        grid-template-columns: repeat(2,1fr);
    }
    
    .form-row-split{
        grid-template-columns: repeat(3,1fr);
        
    }
    
    .form-row-single{
        grid-template-columns: repeat(1,1fr);
        gap:10px;
    }
}


.form-row > p{
    display:none;
}

.form-row .form-group{
    margin: 0;
}

.form-group-button{
    text-align:right;
}

.form-group-button .btn{
    width:100%;
}

@media screen and (min-width : 580px) {
   .form-group-button .btn{
        width:auto;
    }
}
@media screen and (min-width: 980px) {
    
}

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


/* -------------- Contact form ------------ */

form.wpcf7-form {
    position:relative;
    margin:0!important;
}

form.wpcf7-form br{
    display:none;
}

form.wpcf7-form.submitting:after{
    content:"";
    width:100%;
    height:100%;
    position: absolute;
    top:60%;
    transform:translateY(-50%);
    left:0;
    background-image: url(../images/loader.gif);
    background-size: 5%;
    background-repeat: no-repeat;
    background-position: center top 30%;
    z-index:2;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output{
    color: #fff!important;
    font-size: 1.5rem!important;
    font-weight: 400!important;
    text-align: left!important;
    border-radius: 0!important;
    padding: 16px 20px!important;
    line-height: 1.2;
}

.wpcf7-not-valid-tip{
    display: block!important;
    margin-top:10px!important;
}

.wpcf7-response-output{
    margin:10px 0!important;
    border:0!important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-not-valid-tip,
.comments-error{
    background-color: #f14040!important;
}

.wpcf7-form.invalid .form-control{
    border: 1px solid #f14040!important;;
}

/*.wpcf7-form.sent .form-control{*/
/*    border: 1px solid #34b234!important;*/
/*}*/

.wpcf7-form.sent .wpcf7-response-output,
.comments-valid{
    background-color:#34b234!important;
}

.wpcf7 .ajax-loader,
.wpcf7-spinner{
    display:none!important;
}

.wpcf7 .ajax-loader:before{
    display:none;
}

form.wpcf7-form .form-group{
    transition:all .6s ease;
}

form.wpcf7-form.submitting .form-group{
    opacity:0.4;
}

/* --- Botones --- */

.btn {
    display: inline-block!important;
    padding: 14px 25px!important;
    min-height: 44px!important;
    text-align: center!important;
    position: relative!important;
    background-color: transparent!important;
    border: 1px solid!important;
    transition: all 0.3s cubic-bezier(0.01, 0.32, 0.11, 0.99)!important;
    font-size:1.5rem!important;
    transition: var(--transition)!important;
    line-height: 1!important;
    color:#fff!important;
    text-transform:uppercase;
    letter-spacing:var(--letter-spacing);
}


.btn--primary{
    border-color: var(--secondary-color)!important;
    color: var(--primary-color)!important;
}

.btn--primary:hover{
    background-color: var(--primary-color)!important;
}


/* --- Header --- */

.header{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index:999;
    background-color: var(--primary-color);
    height: 80px;
}

@media screen and (min-width: 1280px) {
    .header{
        padding: 40px 0;
        padding-bottom: 20px;
        height: auto;
    }
}

.header__inner{
    display: flex;
    align-items: center;
    flex-flow: column;
}

.header__main{
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.header__search{
    display: none;
}

@media screen and (min-width: 1280px) {
    .header__search{
       display: block;
    }
}

.search-form form{
    display:flex;
    height:27px;
    width:250px;
}

.search-form .search-button{
    width:22px;
    height:100%;
    flex-shrink:0;
    border-bottom:1px solid #989899;
    background-image: url(../images/search-icon.svg);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    background-color:var(--primary-color);
}   

.search-form .search-field{
    background-color:var(--primary-color);
    border-bottom:1px solid #989899;
    width:100%;
    padding:0 5px;
}

.search-form .search-field,
.search-form .search-field::placeholder{
    text-transform:uppercase;
    color:#989899;
    font-size:1.4rem;
    letter-spacing:var(--letter-spacing);
}

.header__logo{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width: 1280px) {
    .header__logo{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}

.header__logo a{
    display: block;
}

.header__logo img{
    height: 40px;
}

@media screen and (min-width: 1280px) {
    .header__logo img{
        height: 55px;
    }
}

.header__menu .menu{
    display: flex;
    align-items: center;
}

.header__menu .menu li a{
    color: #fff;
    text-transform: uppercase;
    transition: var(--transition);
}

.header__menu .menu li.current-menu-item a,
.header__menu .menu li a:hover{
    color:var(--secondary-color)
}

.header__menu--actions .menu{
    gap:22px;
}

.header__menu--actions .menu li{
    display: flex;
    align-items: center;
    gap:12px;
}

.header__menu--actions .menu li a{
    font-size: 1.5rem;
    display: flex;
    gap:11px;
    cursor:pointer;
}

.header__menu--actions .menu li a span{
    display: none;
}

@media screen and (min-width: 1280px) {
    .header__menu--actions .menu li a span{
        display: block;
    }
}

.header__menu--actions .menu li a img{
    width: 26px;
    height: 26px;
}

@media screen and (min-width: 1280px) {
    .header__menu--actions .menu li a img{
        width: 15px;
        height: 15px;
    }
}

.header__menu--main{
    padding-top: 30px;
    display: none;
	 width: 100%;
    justify-content: center;
}

@media screen and (min-width: 1280px) {
    .header__menu--main{
        display: flex;
    }
}

@media screen and (min-width: 1280px) {
.header__menu--main .header__logo,
.header__menu--main .header__menu--actions,
.activeFixed .header__main,
.activeFixed .header__menu--actions .menu li a span{
	display:none;
}

.activeFixed{
	position:fixed;
	top:0;
	left:0;
	 padding: 16px 0;
}

.activeFixed .header__logo{
	position: relative;
    left: 0;
    right: 0;
    transform: none;
}

.activeFixed .header__menu--main {
    justify-content: space-between;
	padding:0;
}

.activeFixed .header__menu--main .header__logo,
.activeFixed .header__menu--main .header__menu--actions{
	display:block;
}



.activeFixed .grid{
	display: flex;
    align-items: center;
	gap: 20px;
}
}
.header__menu--main .menu{
    gap:60px;
    justify-content: center;
}
@media screen and (min-width: 1280px) {
	.activeFixed .header__menu--main .menu{
	gap: 20px;
}
}

.header__toggle{
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--primary-color);
}

@media screen and (min-width: 1280px) {
    .header__toggle{
        display: none;
    }
}

.header__toggle img{
    width: 100%;
}

.header__button{
    margin-left: 20px;
}

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

.xoo-wsc-container .button{
    border-color: var(--primary-color)!important;
    text-transform:uppercase!important;
    font-weight:400!important;
    color:var(--primary-color)!important;
}

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

.xoo-wsc-empty-cart span,
.xoo-wsc-pname > a,
.xoo-wsc-ft-amt-label,
.xoo-wsch-text{
    text-transform:uppercase;
    font-weight: 400!Important;
}

.xoo-wsch-top {
    justify-content: flex-start;
}

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

.xoo-wsc-pprice span{
    font-size:1.5rem;
     margin-left: -8px;
}

.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;
}

/* ------------------ Sidebar mobile ------------ */

.menu-sidebar{
    height: 100vh;
    position:fixed;
    top:0;
    width:300px;
    background-color: var(--primary-color)!important;
    box-shadow: 0 2px 10px 0 rgb(176 176 176 / 20%);
    z-index:1002;
    padding: 4rem 1.875rem 1.875rem;
    opacity:0;
    visibility:hidden;
    transition: all .25s cubic-bezier(.73,.33,.33,.97);
}

.menu-sidebar-left{
    left:0;
    transform:translateX(-290px) translatez(0);
}

.menu-sidebar-right{
    right:0;
    transform:translateX(290px) translatez(0);
}

.menu-sidebar.active{
    opacity:1;
    visibility:visible;
    transform:translateX(0%) translatez(0);
}

body.body-fixed{
    overflow: hidden;
}

.menu-sidebar-overlay{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background-color:rgba(0,0,0,.7);
    z-index:1001;
    opacity:0;
    visibility:hidden;
    transition:all .3s ease;
}

@media screen and (min-width: 1280px) {
    .menu-sidebar-overlay{
        z-index:998;
    }
}

.menu-sidebar-overlay.active{
     opacity:1;
    visibility:visible;
}

.menu-header-overlay{
    z-index:10;
}

.menu-sidebar-wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-sidebar-wrapper > h2{
    text-transform:uppercase;  
    font-weight:700;
    font-size:1.8rem;
    flex-shrink: 0;
    margin-bottom:25px;
    color:#fff;
}

.menu-sidebar-content{
   height: 100%;
   overflow:auto;
}

.menu-sidebar-item{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #fff;
}

.menu-sidebar-item > h2{
    margin-bottom:20px;
    font-size:1.5rem;
    text-transform:uppercase;
    color:#fff;
    font-weight:400;
}

.menu-sidebar-item ul{
    margin:0;
}

.menu-sidebar-item:first-child{
    margin:0;
    padding:0;
    border:0;
}
.menu-sidebar-mobile .sub-menu{
    height:0;
    opacity:0;
    visibility:hidden;
}

.menu-sidebar-mobile .menu-open .sub-menu {
 height:auto;
  z-index: 10;
  opacity:1;
    visibility:visible;
}

.menu-sidebar-item-general ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    margin:0;
}

.menu-sidebar-item-general ul.menu > li{
    position:relative;
    margin-bottom:16px;
    width:100%;
    max-width:420px;
}

.menu-sidebar-item-general ul.menu > li:last-child{
    margin:0;
}

.menu-sidebar-item-general ul.menu > li > a{
    padding-right:15px;
    position:relative;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 400;
    text-transform:uppercase;
}

.menu-sidebar-item-general ul.menu > li.menu-item-has-children > a:after{
        content: "";
    position: absolute;
    top: 30%;
    right: 0;
    width: 12px;
    height: 12px;
    background-image: url(../images/arrow-dow-dark.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .3s ease;
}

.menu-sidebar-item-general ul.menu > li.menu-open > a:after{
        transform: scaleY(-1);
}

.menu-sidebar-item-general ul.menu > li.menu-item-has-children .sub-menu{
        display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin:0;
    padding-top:5px;
}

.menu-sidebar-item-general ul.menu > li.menu-item-has-children .sub-menu > li{
    width:100%;
    padding:10px;
}

.menu-sidebar-item-general ul.menu > li.menu-item-has-children .sub-menu > li a{
    color:#fff!important;
    font-size:1.4rem;
    text-align: left;
    display: flex;
    font-weight:300;
    line-height:1;
}

.menu-sidebar-item-legal ul li{
    margin-bottom:15px;
    line-height:1;
}

.menu-sidebar-item-legal ul li a{
    font-size:1.4rem;
    font-weight:400;
    text-transform:uppercase;
    color:#fff;
}

.menu-sidebar .social{
    display:flex;
    align-items:center;
    transform:none!important;
    margin:0px!important;
    margin-top:40px!important;
}

.menu-sidebar .form-search form{
    margin-bottom:40px;
}

.menu-sidebar .form-search form .search-field{
    width:100%;
}

.menu-sidebar-mobile .social li{
    margin-right:10px
}

.menu-sidebar-mobile .social li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.menu-sidebar-mobile .social li img{
    width:28px;
    height:28px;
}

.menu-sidebar-close{
    position: absolute;
    top: 40px;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
}

.menu-sidebar-left .menu-sidebar-close{
    left:calc(100% + 25px);
}

.menu-sidebar-right .menu-sidebar-close{
    right:calc(100% + 25px);
}

.menu-sidebar-close:after{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-image: url(../images/close-modal.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity:0;
    visibility:hidden;
    transition:all .3s ease;
}

.menu-sidebar.active .menu-sidebar-close:after{
     opacity:1;
    visibility:visible;
    transition-delay:.3s;
}

.menu-sidebar-logo{
    display:flex;
    margin-bottom:25px;
}

.menu-sidebar-wrapper .search-form{
    margin-bottom:25px;
        height: 45px;
}

.menu-sidebar-wrapper .search-form form{
    width:100%;
}

.menu-sidebar-logo img{
    width:150px;
}


/* --- */

.banner{
    padding:25px 0;
    position:relative;
}

@media screen and (min-width: 1280px) {
    .banner{
        padding-top:80px;
        padding-bottom:25px;
        min-height:165px;
    }
}

.banner-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-content{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items: center;
    text-align:center;
    padding:0 20px;
    margin:25px 0;
}


@media screen and (min-width: 1280px) {
    .banner-content{
        margin:0;
    }
}

.banner-item{
    margin-bottom:5px;
     width:100%;
    display:flex;
    justify-content:center;
    position:relative;
}

.banner-item:last-child{
    margin:0;
}

.banner-item .col-full{
    width:auto;
    padding:0!important;
    margin:0!important;
    display: flex;
    align-items: center;
}

.banner-item .storefront-breadcrumb{
    margin:0!important;
    padding:0!important;
}

.banner-item .woocommerce-breadcrumb,
.banner-item .woocommerce-breadcrumb a{
    text-decoration:none!important;
    font-size:1.5rem;
    font-weight:300!important;
    color:#fff!important;
    text-transform:uppercase;
    text-align:center;
}

.banner-item .woocommerce-breadcrumb a:before{
    display:none!important;
}

.banner-breadcrumb .breadcrumb-separator{
    text-indent:0!important;
    padding:0 5px!important;
}

.banner-breadcrumb .breadcrumb-separator:after{
    display:none!important;
}

.banner-title{
    width: 100%;
    display: flex;
    justify-content: center;
}



.banner-title,
.banner-title .woocommerce-breadcrumb{
    font-size:2.6rem!important;
    color:#fff!important;
    font-weight: 400!important;
    line-height:1.2!important;
    text-transform:uppercase;
    text-align:center;
}

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

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

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


.banner-page{
    height:25px;
    padding: 0;
}

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

@media screen and (min-width: 1280px) { 
    .banner-page{
        height:50px;
    }
}


/* --- Section ---- */

.section{
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

@media screen and (min-width: 1280px) {
    .section{
        padding: 8rem 0;
    }
}

.section--plain{
    padding-bottom:0;
}

.section__bg{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section__title{
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
    justify-content: center;
    margin-bottom: 45px;
    gap:20px;
    text-align: center;
    align-items:center;
}

@media screen and (min-width: 1280px) {
    .section__title{
        margin-bottom: 85px;
    }
}

.section__title h2{
    font-size: 3rem;
    font-weight: 300;
}

@media screen and (min-width: 1280px) {
    .section__title h2{
        font-size: 3.5rem;
		letter-spacing: 0.45rem;
    }
}

.section--gray{
    background-color: var(--gray-color);
}

.section__title .arrow{
    align-items: center;
    justify-content: center;
    gap:20px;
    
}
@media screen and (min-width: 1280px) {
    .section__title .arrow{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        display: flex;
    }
}

.section__title .slick-arrow{
    position: relative;
    cursor: pointer;
}

.section__title .slick-arrow:after{
    top: 0;
    left: 0;
    transform: none;
}

.section__title .arrow__item--prev:after{
    transform: scaleX(-1);
}

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

.main-page{
    padding:70px 0;
}

body.home .main-page{
    padding:0;
}

body.archive .main-page,
body.single .main-page{
    padding-bottom:0;
}

/* --- Hero ---- */

#hero{
    padding: 0;
    /*height: calc(60vh - 80px);*/
    height:445px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1280px) {
    #hero{
        height: calc(100vh - 170px);
    }
}

.hero__bg{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image{
    width: 100%;
    height: 100%;
}

.hero__image .movil{
	display:block;
}

.hero__image .desktop{
	display:none;
}

@media screen and (min-width: 1280px) {
    .hero__image .movil{
		display:none;
	}

	.hero__image .desktop{
		display:block;
	}
}

#hero .slick-slide,
#hero .slick-slide > div,
#hero .slick-list,
#hero .slick-track{
    height: 100%;
}

#heroContent{
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

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

#heroContent .slick-list{
    overflow:visible;
}

.hero__dots{
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    padding: 30px;
}

.hero__dots .slick-dots{
    margin:0;
    
}

.hero__items{
    color: #fff;
    transition: all .4s ease .1s;
    display:none!important;
}
@media screen and (min-width: 1280px) {
    .hero__items{
        display:inline-block!important;
    }
}

.derecha{
    transform: translatex(100%);
}

.izquierda{
    transform: translatex(-100%);
}

.fadeInLeft.derecha,
.fadeInLeft.izquierda{
    transform: translatex(0);
    opacity:0;
}

.hero__items > h2{
    font-size: 3.2rem;
    margin-bottom: 10px;
    font-weight:800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing:0;
    /*font-style: italic;*/
}

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

.hero__items > h2 strong{
/*     color:var(--secondary-color); */
    font-weight: 400;
}

.hero__items p{
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight:800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing:0;
}

.hero__items > .btn{
    min-width: 182px;
    color:#fff!important;
}

.hero__items > .btn:not(:hover){
	border-color: #fff!important;
}

.hero__items > .btn:hover{
	border-color: #000!important;
}
    

.hero__items.izquierda{
    text-align:left;
}

.hero__items.derecha{
    text-align:right;
}

/* --- Brands --- */

#brandSlider{
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 1280px) {
    #brandSlider{
        width: 100%;
    }
}

#brandSlider .slick-track{
    display: flex;
    align-items: center;
}

.brands__item{
    text-align: center;
}


.brands__item img{
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* --- Categories ---*/

.section--cat-home{
    padding-top: 4rem;
}

@media screen and (min-width: 1280px) {
    .section--cat-home{
        padding-top: 0;
    }
}

.section--cat-shop{
    padding-bottom:0;
}

.cat__wrapper{
    width: 100%;
    position: relative;
}

@media screen and (min-width: 1280px) {
    .cat__wrapper{
        width: 365px;
    }
}

@media screen and (min-width: 1660px) {
    .cat__wrapper{
        width: 100%;
    }
}
/*
.cat__wrapper:after{
    content:"";
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/transparency.png);
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
	z-index: 1;
	pointer-events:none;
}
*/
.cat__image{
    position: relative;
    padding-bottom: 130%;
}

.cat__image img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat__info{
    position: absolute;
    bottom:0;
    left: 0;
    padding: 30px 40px;
    color: #fff;
	z-index:2;
}

.cat__info h2{
    text-transform: uppercase;
    font-size: 1.6rem;
}

#catSlider .slick-list{
    margin: -12px;
}

.cat__item{
    padding: 12px;
}

.custom-dots .slick-arrow{
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background-color: var(--primary-color);
    border: 1px solid #ffff;
}

@media screen and (min-width: 1280px) {
    .custom-dots .slick-arrow{
        width: 55px;
        height: 55px;
    }
}

.custom-dots .slick-arrow:after{
    background-image: url(../images/arrow-next-white.svg);
    background-size: 30%;
}

.custom-dots .slick-arrow.slick-prev {
    left:20px;
}

.custom-dots .slick-arrow.slick-next {
    right:20px;
}

@media screen and (min-width: 1280px) {
    .custom-dots .slick-arrow.slick-prev {
    left:70px;
    }
    
    .custom-dots .slick-arrow.slick-next {
        right:70px;
    }
}

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


ul.products::before, ul.products::after{
    display:none!important;
}

.product__content{
    text-align: center;
	transition:all .3s ease;
}

.product__content:hover{
	transform:scale(1.01);
}

.product__content .product__image{
    position: relative;
    padding-bottom: 100%;
    margin-bottom: 25px;
	overflow:hidden;
	
}

.product__content .product__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top:0;
    left: 0;
	transition:all .3s ease;
	border-radius:var(--border-radius)
}

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

.product__tag{
    position:absolute;
    top:20px;
    right:20px;
    height:40px;
    border-radius:8px;
    color:var(--primary-color);
    background-color:var(--secondary-color);
    font-size:1.5rem;
    font-weight:400;
    z-index:99;
    padding:4px;
    display: flex;
    align-items: center;
    justify-content: center;
        height: 30px;
	text-transform:uppercase;
}

.product__content.-outstock{
	pointer-events:none;
}

.product__content.-outstock .product__image img{
	opacity:.5;
}

.product__tag.-outstock{
	top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%,-50%);
    background-color: var(--primary-color);
    color: #fff;
}

.product__content  .product__title h2{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 5px;
}

.product__content  .product__price .price{
    font-size: 16px;
    font-weight: 400!important;
    text-decoration:none!important;
    text-transform: uppercase;
    color:var(--primary-color)!important;
}

.product__content  .product__price .price ins{
    text-decoration:none!important;
}

.product__rating .star-rating{
    margin:0 auto;
}

.product__rating .star-rating:before{
    font-size: 11px;
}

@media screen and (min-width : 1280px) {   
    .product__rating .star-rating:before{
        font-size: 12px;
    }
}

.product__rating .star-rating:before,
.product__rating .star-rating span:before{
       color: #ffb700; 
}

/* --- Product slider ---- */

.productSlider .slick-list{
    margin: 0 -20px;
}

.productSlider .product__content{
    padding: 0 20px;
}

/* --- Video ---*/

#video{
    height: 60vh;
}

@media screen and (min-width: 1280px) {
    #video{
        height: 100vh;
    }
}

.video__image{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__image img,
.video__image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
}

.video__image:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video__button{
    width: 100px;
    height: 100px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media screen and (min-width: 1280px) {
    .video__button{
        width: 132px;
        height: 132px;
    }
}

.video__button button{
    display:flex;
    width:100%;
    height:100%;
    background-color:transparent;
}

/* --- Footer ---*/

.footer{
    background-color: var(--primary-color);
    padding:65px 0;
}

@media screen and (min-width: 1280px) {
    .footer{
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

.footer__inner{
    display: flex;
    flex-flow: column;
    align-items: center;
   gap:20px;
}

@media screen and (min-width: 1280px) {
    .footer__inner{
        flex-flow: row;
        padding: 0 40px;
        gap:0;
    }
}

.footer__logo{
    flex-shrink: 0;
    order:1;
}

@media screen and (min-width: 1280px) {
    .footer__logo{
        margin-right: 160px;
    }
}

.footer__logo img{
    max-width: 100%;
    height: 50px;
}

.footer__book{
    flex-shrink: 0;
    order: 2;
}

@media screen and (min-width: 1280px) {
    .footer__book{
        margin-left: 80px;
        order: 3;
    }
}

.footer__book img{
    max-width: 100%;
    height: 70px;
}

.footer__content{
    width: 100%;
    order:3;
}

@media screen and (min-width: 1280px) {
    .footer__content{
        order:2;
    }
}

.footer__menu{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap:20px;
}

@media screen and (min-width: 1280px) {
    .footer__menu{
        flex-flow: row;
        justify-content: space-between;
        gap:0;
    }
}

.footer__menu .menu{
    display: flex;
    align-items: center;
    gap:10px;
}

@media screen and (min-width: 1280px) {
    .footer__menu .menu{
        gap:0;
    }
}

.footer__menu .menu li a{
    color:#fff;
    font-size: 14px;
    letter-spacing: 0;
    position: relative;
    white-space: nowrap;
    text-align: center;
}

@media screen and (min-width: 1280px) {
    .footer__menu .menu li a{
        text-align: left;
    }
}

.footer__menu .menu li img{
    width: 15px;
    height: 15px;
}

@media screen and (min-width: 1280px) {
    .footer__menu .menu li:not(.menu-social) a{
        padding-right: 25px;
        margin-right: 30px;
    }

    .footer__menu .menu li:not(.menu-social) a:after{
        content:"";
        position: absolute;
        top:50%;
        transform: translateY(-50%);
        right: 0;
        height: 18px;
        width: 1px;
        background-color: #fff;
    }

    .footer__menu .menu li.menu-social{
        margin-right: 12px;
    }
}

.footer__menu .social{
    display: flex;
    align-items: center;
}

.footer__menu .pay{
    height: 35px;
}

.footer__copy{
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #fff;
}

.footer__copy p{
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (min-width: 1280px) {
    .footer__copy p{
        text-align: left;
    } 
}


.footer__copy p img{
    width: 80px;
    margin-left: 3px;
    transform: translateY(3px);
}

/* -------------- 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;
}

.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;
    }
}

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

.shop-sidebar{
    width:100%;
    margin:0;
    margin-top:25px;
    flex-shrink:0;
    padding-right:20px;
}

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

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

.shop-sidebar-item,
.pwf-field-item{
    position:relative;
    padding-bottom:40px;
    margin-bottom:40px;
}

.shop-sidebar-item:after,
.pwf-field-item:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    background-color:#808080;
}

.shop-sidebar-item:last-child:after,
.pwf-field-item:last-child:after{
    display:none;
}

.pwf-field-item-container{
    margin:0;
}

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

.shop-sidebar-widget h2,
.text-title{
    font-size:1.7rem;
    text-transform:uppercase;
    font-weight: 300;
}

.shop-sidebar-widget h2,
.pwf-field-item-title{
    margin-bottom:20px;
}

.sidebar-price .price_slider_amount{
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
        margin-top: 30px;
}

.sidebar-price .price_slider_amount .price_label{
    font-size:0;
    display:flex;
    align-items:center;
    margin-left: -12px;
}

.sidebar-price .price_slider_amount .price_label span{
    font-size:1.6rem;
    font-weight:400;
    text-transform:uppercase;
}

.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(--primary-color);
}

.sidebar-price .widget_price_filter .price_slider_amount .button{
    padding: 0 16px;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing);
    height: 30px;
    background: #fff;
    transition: var(--transition);
    font-size:1.5rem;
    width:auto;
}

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

.pwf-item-label .pwf-title-container .text-title{
        text-transform: uppercase!important;
}

.pwf-woo-filter .pwf-items-hierarchical .pwf-children{
    padding:10px;
    padding-left:32px;
    padding-top:0;
}

.pwf-woo-filter .pwf-items-hierarchical .pwf-children .pwf-item:first-child{
    padding-top:10px;
}

/*.pwf-woo-filter .pwf-items-hierarchical .pwf-children > .pwf-children{*/
/*   display:none;*/
/*}*/

.pwf-checkbox-label .pwf-input-container{
    width:14px;
    height:14px;
    border: 1px solid #808080;
}

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

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

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

}

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

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

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

}

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

}

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

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


.woocommerce-pagination .page-numbers li,
.nav-links .page-numbers li{
    margin:0 8px!important;
}

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

.woocommerce-pagination .page-numbers li .page-numbers:hover,
.woocommerce-pagination .page-numbers li .page-numbers.current,
.nav-links .page-numbers li .page-numbers:hover,
.nav-links .page-numbers li .page-numbers.current{
   color:var(--secondary-color)!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.next,
.woocommerce-pagination .page-numbers.prev,
.nav-links .page-numbers.next,
.nav-links .page-numbers.prev{
    padding:0!important;
    text-indent:-9999px;
     width:14px!important;
    height:14px!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:"";
    width:100%;
    height:100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
}

.woocommerce-pagination .page-numbers.next:after,
.nav-links .page-numbers.next:after{
    background-image: url(../images/arrow-next.svg);
}


.woocommerce-pagination .page-numbers.prev:after,
.nav-links .page-numbers.prev:after{
    background-image: url(../images/arrow-next.svg);
    transform: translateY(-50%) scalex(-1);
}

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

.products-sorting{
    max-width: 720px;
    margin: 0 auto;
    margin-bottom:40px;
    display:flex;
    align-items:center;
    flex-direction:column-reverse;
    justify-content: space-between;
}

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

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

}

@media screen and (min-width: 1280px) {
   .products-sorting{
       flex-direction:row;
        margin-bottom:40px;
        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.5rem;
    font-weight:400;
    margin:0;
    margin-top:10px;
    text-transform:uppercase;
}

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

}

@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{
    text-transform:uppercase;
    letter-spacing:var(--letter-spacing);
    width: 100%;
    border:0;
    padding: 0px 20px;
    padding-right: 40px;
    color: var(--primary-color);
    height: 35px;
    background-color:#fff;
    border:1px solid var(--primary-color);
    font-size:1.5rem;
    font-weight:400;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-position: right 16px center;
    background-size: 6px;
    background-repeat: no-repeat;
}

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

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

.related > h2{
    display:none!important;
}



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

.shop-products{
    width:100%;
    position:relative;
}

.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:-30px -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:30px 20px;
    }
    
    .products-grid .products.related .product{
        width:25%!important;
    }
}

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

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

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

}

@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%;
    margin-right:0px;
    flex-shrink:0;
}

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

}

@media screen and (min-width: 1280px) {
    .shop-intern-gallery{
        max-width:600px;
        margin-right:70px;
    }
}

.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: 20px;
    padding-right:5px;
    display: none;
    position:relative;
    flex-shrink:0;
}

@media screen and (min-width: 580px) {
    .product-carousel {
        height: 500px; 
    }
    .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;
   
}
.product-carousel-nav .slick-slide .product-carousel-nav-image img{
	border:1px solid transparent; 
}
.product-carousel-nav .slick-slide.slick-current .product-carousel-nav-image img{
	border-color:var(--primary-color);
}

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

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

.product-carousel-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    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:4%;
    position:absolute;
}

.product-carousel-slider .slick-arrow{
	border-radius: 9999px;
    border: 1px solid #000;
/* 	background-color:#fff; */
}

.product-carousel-slider .slick-arrow:after {
    background-size: 20%;
}

.product-carousel-slider .slick-prev{
	left:10px; 
}

.product-carousel-slider .slick-next{
	right:10px;
}

@media screen and (min-width: 1200px) {
/*     .product-carousel-slider .slick-arrow{
		opacity:0;
		visibility:hidden;
	}

	.product-carousel-slider:hover .slick-arrow{
		opacity:1;
		visibility:visible;
	}

	.product-carousel-slider .slick-prev{
		left:0px; 
	}

	.product-carousel-slider .slick-next{
		right:0;
	}
	
	.product-carousel-slider:hover  .slick-prev{
		left:10px;
	}

	.product-carousel-slider:hover  .slick-next{
		right:10px;
	} */
}



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

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

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

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

.product-carousel-slider-wrapper .product-whislist{
        width: 65px;
    height: 65px;
    padding: 14px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    bottom: 9px;
}

.product-carousel-slider-wrapper .product-whislist .yith-wcwl-add-to-wishlist {
    width: 30px;
}

.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 {
    
    margin: 0 auto;
   
    object-fit: contain;
}

@media screen and (max-width: 600px) {
    .product-carousel-slider img {
        height:100%;
        width:100%;
    }
}

.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 {
    border: 1px solid #60beba;
    border-radius:9999px;
}

.product-carousel-slider-wrapper .slick-dots li.slick-active {
    background: #60beba;
}
 */
.single-product-wrap{
    widtH:100%;
    margin-bottom:20px;
}

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

.shop-intern-content .single-product-wrap  h1.product_title{
    margin:0;
    font-weight:300;
    font-size:3.5rem;
    text-transform:uppercase;
    margin-bottom: 5px;
	letter-spacing: 0.45rem;
}

.single-product-wrap .star-rating:before{
    font-size: 12px;
}

.single-product-wrap .star-rating:before,
.single-product-wrap .star-rating span:before{
       color: #ffb700; 
}

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

@media screen and (min-width: 1280px) {
    .shop-intern-content .price,
    .shop-intern-content .price span{
        font-size:3.5rem;
    }
}

.shop-intern-content .price{
    margin:35px 0!important;
/*     margin-bottom:35px!important; */
}

.single-product div.product p.price {
    font-size: 2.4rem;
}

@media screen and (min-width: 1280px) {
    .single-product div.product p.price {
		font-size: 3.5rem;
	}
}

.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 del{
     margin-left: 10px!important;
} */

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

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

.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{
    color:var(--primary-color);
    font-size:1.5rem;
    line-height:1.5;
    font-weight:300;
    text-align: justify;
    /*text-transform:uppercase;*/
}

.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%;
	border-bottom:1px solid var(--primary-color);
	    padding-bottom: 20px!important;
    margin-bottom: 35px!important;
}

.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:92px!important;
	text-align:left;
}

.single-product.woocommerce .shop-intern-content form{
    padding-top:40px!important;
    margin-top:0!important;
/*     border-top:1px solid var(--primary-color); */
}

.single-product.woocommerce .shop-intern-content .woocommerce-variation-add-to-cart {
    margin-top:0px!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:45px!important;
    display:flex!important;
    align-items:center;
    justify-content:center;
    color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
    background-color: #fff!important;
    border-radius:0;
    font-weight:300;
    font-size:1.4rem;
    transition:all .3s ease;
    width:auto;
    padding:0px 35px;
    position:relative;
    text-transform:uppercase;
    letter-spacing:var(--letter-spacing);
    white-space:nowrap;
}

.shop-intern-content .single_add_to_cart_button:hover{
    background-color: var(--primary-color)!important;
    color:#fff!important;
}

.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:0;
    font-size:1.5rem;
    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 -5px;
}

.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(--primary-color)!important;
}

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


.shop-intern-wrapper .qib-container{
    margin-right:25px;
    margin-left: 95px;
    margin-bottom:30px;
     width:138px;
}


.shop-intern-wrapper .qib-container:before{
    content: "Cantidad";
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 25px);
    
}

.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(--primary-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;
    border:0!important;
}

.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(--primary-color)!important;
}


.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;
    }
    }

.price-wrapper{
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    width:100%;
}

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

.price-wrapper .qib-container{
    order:1;
    margin-right: 100%;
    flex-shrink: 0;
}

.price-wrapper .price{
    order:2;
    display: flex;
    align-items: center;
    margin:0!important;
}

.price-wrapper .button{
    order:3;
    margin:0px!important;
    margin-top:20px!important;
    width:100%;
}

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

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

}

@media screen and (min-width: 1280px) {
    .price-wrapper .button{
        margin:0px!important;
        margin-left:45px!important;
        width:auto;
    }
}

#products-related .section__title h2,
#products-related .product__content .product__title h2,
#products-related .product__content .product__price .price{
    color:#fff!important;
}

/* ------ 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 .tablist li{
	width:33.33%;
}


@media screen and (min-width: 1280px) {
	.shop-tabs .tablist li{
		width:100%;
	}
}

.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;
    border-bottom: 1px solid var(--primary-color);
	font-size:11px;
}

@media screen and (min-width: 580px) {
	.shop-tabs .js-tab-trigger{
		font-size:16px;
	}
}

.shop-tabs .js-tab-trigger:hover{
	border-color: var(--primary-color);
    background-color: #cdcdcd;
}
.shop-tabs .js-tab-trigger.is-selected{
    border-color: var(--primary-color);
	background-color: var(--primary-color);
	color:#fff;
}
.shop-tabs .js-tab-trigger.is-selected{
    border-bottom:0;    
}

.shop-tabs .tabcontent{
}


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

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

.shop-tabs .js-tab-body ul{
        margin-left: 20px;
}

.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;
}

/* ------------ Legales ---------------- */

/*.page-legal{*/
/*    margin:4rem 0;*/
/*}*/

.page-legal .section-title{
    margin-bottom:40px;
}

.page-legal .site-section-header h1{
    margin: 0;
    font-size: 2rem;
    text-align: center;
    font-weight: 300;
    margin-bottom:45px;
    text-transform:uppercase;
}

.page-legal .container{
    max-width:980px!important;
}

.text-legal{
    font-weight: 400;
    line-height:1.8;
    text-align: justify;
    font-size: 1.5rem;
}

.text-legal h1,
.text-legal h2,
.text-legal h3,
.text-legal h4,
.text-legal h5{
    margin:20px 0;
    font-size: 2rem;
   color: var(--primary-color)!important;
    font-weight: 300!important;
    line-height: 1.2!important;
}

.text-legal h1 strong,
.text-legal h2 strong,
.text-legal h3 strong,
.text-legal h4 strong,
.text-legal h5 strong{
    font-weight: 600!important;
}

.text-legal ol,
.text-legal ul{
    margin-left:16px!important;
    list-style:disc!important;
}

.text-legal ol li,
.text-legal ul li{
    margin-bottom:10px;
    list-style: disc;
}

.text-legal a{
    font-weight:700;
    text-decoration: underline;
}

.form-group-wrapper h2{
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 400;
    text-transform:uppercase;
}

.libro-reclamaciones-form{
    position:relative;
}

.libro-reclamaciones-form .wpcf7-form-control-wrap br{
    display:none!Important;
}

.libro-reclamaciones-form .form-row{
    margin:0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom:20px;
    width:100%;
}

@media screen and (min-width : 580px) {
    .libro-reclamaciones-form .form-row{
        grid-template-columns: repeat(2,1fr);
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }
}
@media screen and (min-width: 980px) {

}

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


.libro-reclamaciones-form .form-row .form-group{
    margin: 0;
}

.libro-reclamaciones-form .form-group-wrapper{
    margin-bottom:30px;
    font-size: 1.5rem;
    font-weight:400;
}

.libro-reclamaciones-form .form-group-wrapper-last{
    margin:0;
}

.libro-reclamaciones-form br{
    display:none;
}

.libro-reclamaciones-form .form-group br{
    display:none!important;
}

.libro-reclamaciones-form .small,
.libro-reclamaciones-form small{
   
    font-size: 12px;
    margin-top: 10px;
    display: block;
}

.libro-reclamaciones-form .wpcf7-list-item-label{
    margin:0;
    
}

.libro-reclamaciones-form input::-webkit-outer-spin-button,
.libro-reclamaciones-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.libro-reclamaciones-form input[type=number] {
  -moz-appearance: textfield;
}


.form-group-check span{
    margin:0;
    margin-bottom:10px;
    font-size:1.6rem;
    font-weight:400;
}

@media screen and (min-width : 580px) {
    .form-group-check span{
        margin:0;
    }
}
@media screen and (min-width: 980px) {

}

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

.form-group-check span:last-child{
    margin:0;
}

.form-group-check .wpcf7-list-item label{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin:0;
    margin-right: 40px;
}

.form-group-check .wpcf7-list-item input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width:21px!important;
    height:21px!important;
    padding:0;
    flex-shrink: 0;
    position:relative;
    margin-right:10px!important;
    cursor:pointer;
}

.form-group-check .wpcf7-list-item input::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    transition:all .3s ease;
    border-radius:4px;
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    background-color:#fff;
    border: 1px solid #808080;
}

.form-group-check .wpcf7-list-item input:checked::before{
    background-image: url(../images/checked-white.svg);
    background-color:var(--secondary-color);
    border-color:var(--secondary-color);
   
}

.libro-reclamaciones-form .wpcf7-response-output{
    margin:0px!important;
    margin-top:20px!important;
}

.libro-reclamaciones-form  form.wpcf7-form {
    position:relative;
    margin:0!important;
    display:block;
}

.libro-reclamaciones-form  form.submitting:after{
    content:"";
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,.8);
    position: absolute;
    top:0;
    left:0;
    background-image: url(../images/loader.gif);
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: center;
    z-index:2;
}

.libro-reclamaciones-form  form.wpcf7-form .ajax-loader{
    display:none!important;
}

.libro-reclamaciones-form .form-group-info{
    display:flex;
    flex-direction:column;
}


.libro-reclamaciones-form .form-group-info span{
    margin-bottom:10px;
}


.libro-reclamaciones-form .form-group-info span:last-child{
    margin:0;
}

.form-group-wrapper-title{
    height: 26px!important;
    position: relative!important;
    overflow: hidden!important;
    margin-bottom: 15px;
}

.form-group-wrapper-title > div{
    transform: none!important;
    background-color: #fff!important;
    margin: 0!important;
    padding: 0!important;
    height: 100%!important;
    position:absolute;
    top:0;
    transition:none!important;
    opacity:1;
    visibility:visible;
}

.form-group-wrapper-title > div h2{
    margin:0;
}
.form-group-wrapper-title > div.wpcf7cf-hidden{
    opacity:0;
    visibility:hidden;
}



.libro-reclamaciones-form  .form-group > label > span,
.libro-reclamaciones-form  .form-group > [data-class="wpcf7cf_group"] > label > span{
    width:auto;
    margin-left:2px;
    color:#ffc6c4;
}

/*.libro-reclamaciones-form .form-group .wpcf7-not-valid {*/
/*    border: 1px solid #f14040!important;*/
/*}*/

.libro-reclamaciones-form .wpcf7-not-valid-tip{
    display:none!important;
}

.form-group-button .btn{
    width:100%;
    min-width:160px;
}

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

@media screen and (min-width: 1280px) {
    .form-group-button .btn{
        width:auto;
    }
}

#tipo_respuesta{
    height:65px;
    position:relative;
}
#tipo_respuesta [data-class="wpcf7cf_group"]{
    position:absolute;
    top:0;
    height:100%!Important;
    width:100%;
    margin:0!important;
    padding:0!important;
    opacity:1;
    visibility:visible;
    background-color: #fff!important;
}
 
#tipo_respuesta [data-class="wpcf7cf_group"].wpcf7cf-hidden{
    opacity:0;
    visibility:hidden;
}

.libro-reclamaciones-info{
    margin: 20px 0;
    line-height: 1.5;
    font-size: 1.4rem;
    text-align: justify;
}

.libro-reclamaciones-info p{
    margin-bottom:20px;
    line-height: 1.4;
}

.libro-reclamaciones-info p span{
    color:#ffc6c4;
}

.libro-reclamaciones-info br{
    display:block;
}

.libro-reclamaciones-section{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.libro-reclamaciones-section img{
     max-width: 125px;
    border-radius: 8px;
    background-color:#fff;
    padding: 4px;
}

.page-info-wrapper{
    width:100%;
    max-width:100%;
    margin:0 auto;
    text-align: justify;
}

@media screen and (min-width: 580px) {
    .page-info-wrapper{
        max-width:720px;
    }

}

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

@media screen and (min-width: 1280px) {
    .page-info-wrapper{
        max-width:960px;
    }

}

.text-legal-tabs-single .text-legal-tabs-content{
    padding:0;
}

.text-legal-tabs-content .card,
.text-legal-tabs-content .card-header{
    padding:0;
    background-color:transparent;
    border:0;
    box-shadow:none;
    color:#565656;
    font-size:1.4rem;
    font-weight:400;
}

.text-legal-tabs-content .card{
    margin-bottom:20px;
    padding:25px;
    background-color:#fff;
    box-shadow:0 2px 20px 0 rgb(31 38 135 / 7%);
    border-radius:12px;
}

.text-legal-tabs-content .card:last-child{
    border:0;
}

.text-legal-tabs-content .card-header span{
    font-weight:500;
    cursor: pointer;
    position:relative;
    transition:all .3s ease;
    padding-right:30px;
    width: 100%;
    display: block;
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
    font-size:1.5rem;
}

.text-legal-tabs-content .card-header span:after{
    content:"";
    width:12px;
    height: 12px;
    position: absolute;
    top:4px;
    right:0;
    background-image: url(../images/arrow-select.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition:all .3s ease;
}

.text-legal-tabs-content .card-header span[aria-expanded="true"]:after{
    transform:scaley(-1);
    
}

.text-legal-tabs-content .card-header span[aria-expanded="false"]:after{
    transform:scaley(1);
}

.text-legal-tabs-content .card-body{
    padding:0;
    border-top: 1px solid #f6f6f6;
    padding-top:25px;
    margin-top:25px;
}

.text-legal-tabs-content .card-body .card-body-content{
    display:flex;
    align-items:center;
    flex-direction:column;
    max-width:680px;
    margin:0 auto;
}

@media screen and (min-width : 580px) {
  .text-legal-tabs-content .card-body .card-body-content{
        flex-direction:row;
        max-width:100%;
    }
}
@media screen and (min-width: 980px) {
    
}

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

.text-legal-tabs-content .card-body .card-body-content-image{
    flex-shrink:0;
    position:relative;
}

.text-legal-tabs-content .card-body .card-body-content-image:after{
    content:"";
    position:absolute;
    right: 24px;
    top:50%;
    transform:translateY(-50%)scalex(-1);
    width: 150px;
    height: 210px;
    background-image: url(../images/adorno.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index:-1;
}

.text-legal-tabs-content .card-body .card-body-content-image img{
    width:100%;
    margin:0 auto;
    margin-bottom:25px;
}

@media screen and (min-width : 580px) {
  .text-legal-tabs-content .card-body .card-body-content-image img{
        width:200px;
        margin:0;
        margin-right:150px;
    }
}
@media screen and (min-width: 980px) {
    
}

@media screen and (min-width: 1280px) {
   .text-legal-tabs-content .card-body .card-body-content-image img{
        width:340px;
    }
}

.text-legal-tabs-content .card-body .card-body-content-info{
    width:100%;
}


.text-legal-tabs-content .card-body .card-body-content-info p{
    margin-bottom:20px;
}

.text-legal-tabs-content .card-body .card-body-content-info ul li{
    margin-bottom:20px;
    padding-left:30px;
    position:relative;
}

.text-legal-tabs-content .card-body .card-body-content-info ul li:last-child{
    margin:0;
}

.text-legal-tabs-content .card-body .card-body-content-info ul li:after{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:16px;
    height:16px;
    background-image: url(../images/check-list-full.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* ------------ 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: 400!important;
    line-height: 1.2!important;
    text-transform:uppercase;
}


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

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

.video-inside{
    z-index:9999;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:rgba(0,0,0,.9);
    transition: var(--transition);
    opacity:0;
}
.video-inside .iframe{
    position:relative;
    width:80%;
    background:#333;
    height:210px;
    z-index:10
}
.video-inside .iframe iframe{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    border:0
}
.video-inside .close-vi{
    z-index:11;
    position:absolute;
    top:1em;
    right:1em;
    display:flex;
    justify-content:center;
    align-items:center;
    width: 32px;
    height: 32px;
    border-radius:50%;
    transition:all .3s linear;
    font-size:.8em;
    text-indent: -9999px;
    background-image: url(../images/close-modal.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:contain;
    border: 0;
    background-color: transparent;
}
.video-inside .close-vi span{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
    width:100%;
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-top:-1px
}
.video-inside .bg-close{
    z-index:9;
    height:100%;
    width:100%;
    position:absolute;
    top:0;
    left:0
}
@media screen and (min-width: 480px){
    .video-inside .iframe{
        height:283px;
        max-width:500px
    }
}
@media screen and (min-width: 480px)and (min-width: 1024px){
    .video-inside .iframe{
        height:calc(100% - 100px);
        max-width:80%
    }
}
@media screen and (min-width: 1024px){
    .video-inside .iframe{
        height:calc(100% - 100px);
        max-width:80%
    }
}

/* --- */

#contact{
    padding:0;
}

.contact{
    display:flex;
    flex-flow:column;
}

@media screen and (min-width: 1280px){
    .contact{
        flex-flow:row;
    }
}

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

@media screen and (min-width: 1280px){
    .contact__form{
        width:580px;
        padding-right:110px;
    }
}

.contact__form > h2{
    font-size:3rem;
    margin-bottom:25px;
    font-weight:300;
}

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

.contact__form > p{
    font-size:1.5rem;
    margin-bottom:40px
}

.contact__form .form-control{
    border-color:var(--primary-color);
}

.contact__form .form-group-button{
    text-align:left;
}

.contact__form .form-group-button .btn{
    min-width:248px;
}

.contact__image{
    width:100%;
}

.contact__image img{
    max-width:100%;
    height:auto;
    margin-bottom:60px;
    display:none;
}

@media screen and (min-width: 1280px){
    .contact__image img{
        display:block;
    }
}

.contact__info{
    margin-top:25px;
}

@media screen and (min-width: 1280px){
    .contact__info{
        margin:0;
    }
}

.contact__info li{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.contact__info li:before{
    content:"";
    width:19px;
    height:19px;
    border-radius:9999px;
    background-color:var(--secondary-color);
    display:inline-block;
    margin-right:17px;
}

.contact__info li a{
    font-size:2.4rem;
    font-weight:400;
}

@media screen and (min-width: 1280px){
    .contact__info li a{
        font-size:2.9rem;
    }
}

/* -------------- --------------------- */
/* ----------Animaciones --- -----------*/
/* -------------- --------------------- */

[data-animation-direction]{
    transition: opacity 1s ease-out .2s, transform 1s ease-out ;
}

[data-animation-direction="up"]{
    transform: translate(0%, 20px) matrix(1, 0, 0, 1, 0, 0);
    opacity: 0;
}

[data-animation-direction="left"]{
    transform: translate(-20px, 0) matrix(1, 0, 0, 1, 0, 0);
    opacity: 0;
}


[data-animation-direction="right"]{
    transform: translate(20px, 0) matrix(1, 0, 0, 1, 0, 0);
    opacity: 0;
    visibility: hidden;
}

[data-animation="true"] [data-animation-direction="up"],
[data-animation="true"] [data-animation-direction="right"],
[data-animation="true"] [data-animation-direction="left"]{
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    visibility: visible;
}

.single-product div.product{
	overflow:visible;
}

.storefront-wc-brands-single-product{
	display:none!important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item){
	width:45px;
	height:45px;
	    box-shadow: none!important;
    padding: 0;
    border-radius: 0!important;
}


.easyzoom--loading .easyzoom__overlay {
    display: none !important;
}