:root{
    --primary-font: 'Quicksand';
    --icon-font:'omelet' !important;
    --base-size-font:16px;
    --primary-color:#E54972;
    --primary-color-light:#FFDFE7;
    --secondary-color:#CD97D6;
    --terciary-color:#D4355F;
    --text-color:#231f20;
    --transition:all .4s ease;
    --box-shadow: rgb(0 0 0 / 25%) 1px 1px 10px;
    --border-radius:10px;
    --title-xl:3.8rem;
    --title-xxl:4.5rem;
    --title-sm:3.2rem;
}

html{
    font-size: 62.5%;
}

body {
    background-color: #fff;
    font-family: var(--primary-font);
    font-size: var(--base-size-font);
    font-weight: 400;
    color:var(--text-color);
    line-height: 1.2;
    font-style: normal;
    padding-top: 162px!important;
}

@media screen and (min-width: 1024px) {
    body {
        padding-top: 167px!important;
    }
}


/* --- Container --- */

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

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

    .container-small{
        width: 80%;
    }
}

/*** Slick arrow ***/

.slick-arrow{
    width: 48px;
    height: 48px;
    z-index: 20;
    background: transparent;
    transition: var(--transition);
    border-radius: 50%;
    border: 1px solid var(--primary-color)!important;
    color: var(--primary-color)!important;
}

.slick-arrow:hover{
    background: var(--primary-color)!important;
    color: #fff!important;
}

.-dark .slick-arrow{
    background: var(--text-color);
}

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

.slick-arrow:after{
    content: "\e900";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
}


.slick-next{
    right:3.660vw;
}

.slick-prev{
    left: 3.660vw;
}

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

.slick-arrow[aria-disabled="true"]{
    opacity: .5;
}

.custom-arrows{
    display: none;
    align-items: center;
    z-index: 11;
    pointer-events: none;
}

.custom-arrows.-absolute{
    position: absolute;
}
.custom-arrows.-middle{
    top:50%;
    transform: translateY(-50%);
}

.custom-arrows.-right{
    right: 0;
}

.custom-arrows.-left{
    left: 0;
}

.custom-arrows.-end{
    left: auto;
    right:0;
}

@media screen and (min-width: 600px) {
    .custom-arrows{
        display: flex;
    }
}

.custom-arrows.-left{
    left: 0;
}

.custom-arrows.-right{
    right: 0;
}

.custom-arrows-wrap{
    display: flex;
    align-items: center;
    gap:6px;
    flex-shrink: 0;
}

.custom-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    pointer-events: all;
}

.custom-arrow-prev:after{
    transform: scaleX(-1);
}


/* --- Slick --- */

.slick-slider{
    margin: 0 !important;
}

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

.slick-dots li{
    width: 14px;
    height: 14px;
    margin: 2px;
    border-radius: 9999px;
    transition: all .4s ease;
    background-color: #fff;
}

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

/* --- Botones --- */

.btn{
    display: inline-block;
    padding: 18px 55px  !important;
    min-height: 60px;
    background-color: transparent;
    border:1px solid;
    transition: var(--transition);
    font-size:1.8rem;
    color:#fff;
    border-radius: 9999px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
	font-family:var(--primary-font)  !important;
}

.btn:hover{
    transition-delay: .25s;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    pointer-events:none;
}

.btn:hover:after {
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

@keyframes shine{
    to{
        left:-200%
    }
}

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

.btn.-primary:hover,
.btn.-primary:active,
.btn.-primary:focus{
    /*background: #820615;*/
    /*color: var(--primary-color);*/
    background: var(--primary-color);
    border-color: var(--primary-color);
    
}

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

.btn.-secondary:hover,
.btn.-secondary:active,
.btn.-secondary:focus{
    /*background: #820615;*/
    /*color: var(--primary-color);*/
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    
}

.btn.-terciary{
    background: #8CD2EF;
    border-color: #8CD2EF;
}

.btn.-terciary:hover,
.btn.-terciary:active,
.btn.-terciary:focus{
    /*background: #820615;*/
    /*color: var(--primary-color);*/
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    
}


.btn.-line{
    background: transparent;
    color: var(--primary-color);
}

.btn.-line:hover{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}


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

.form-control{
    padding: 8px 20px!important;
    min-height:40px;
    border-radius:var(--border-radius)!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:110px;
    width:100%;
    border-radius:var(--border-radius)!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: 12px;
    background-repeat: no-repeat;
	min-height:40px;
}

.form-control,
.form-control::placeholder,
textarea.form-control{
    font-size: 1.8rem!important;
    color:var(--text-color)!important;
    font-weight:400;
    font-family:var(--primary-font)!important;
}

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

.form-group label{
    margin-bottom: 10px;
    font-size: 1.8rem!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: 20px;
    grid-row-gap: 20px;
    margin-bottom:20px;
    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:20px;
    }
}


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

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

.form-group-button{
    margin-top:40px;
    position:relative;
    justify-content: flex-start;
    flex-flow: row;
    align-items:center
}

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

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

/* -------------- 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: 300!important;
    text-align: left!important;
    border-radius: 0!important;
    padding: 8px 0px!important;
    line-height: 1.2;
}

.wpcf7-not-valid-tip{
    display: block!important;
    margin-top:0px!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{
    color: #f14040!important;
}

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

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

.wpcf7-form.sent .wpcf7-response-output,
.comments-valid{
    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;
}

/* SWEET ALERT */

.swal2-popup {
   width: 40em;
    min-height: 280px;
}

.swal2-styled.swal2-confirm,
.swal2-html-container{
    font-size: 1.9rem;
    border-radius:9999px !important;
    color:#000 !important;
    font-weight:300;
    line-height:1.2;
    
}

.swal2-styled.swal2-confirm{
        background-color: var(--primary-color);
    border: 0!important;
    outline: 0!important;
    height: 40px;
    padding: 0 45px;
}

.swal2-title{
    font-family:var(--primary-font);
    color: #000;
    font-size: 2rem;
}

.swal2-icon {
    display: flex;
    transform: scale(1.5);
    margin-top: 50px;
}

/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

.loader{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display:flex;
    align-items: center;
    justify-content: center;
    text-indent:0;
    font-size:0;
    opacity:0;
    visibility:hidden;
}

form.submitting .loader{
     opacity:1;
    visibility:visible;
}

.loader:before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 10px solid #ccc;
    border-top-color: var(--secondary-color);
    border-width: 5px;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    z-index: 2;
    display: block;
}

@-webkit-keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}
@keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}

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

.section{
    overflow: hidden;
    position: relative;
    padding: 5vmax 0;
}

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

.section.-pink{
    background-color: var(--primary-color-light);
}

.section-title{
    position: relative;
    margin-bottom: 5vmax;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 1280px) {
    .section-title{
        margin-bottom: 65px;
    }
}

.section-title.-left{
    justify-content: flex-start;
}

.section-title h2{
    font-size: var(--title-sm);
    color:var(--primary-color);
    position: relative;
    text-align: center;
    position: relative;
    z-index: 10;
    font-weight:600;
}

@media screen and (min-width: 1024px) {
    .section-title h2{
        font-size: var(--title-xxl);
    }
    
    .section-title.-small h2{
        font-size: var(--title-xl);
    }
}

.section-title.-black h2{
    color:var(--text-color);
}

.section-title.-left h2{
   text-align: left; 
}

.section-title p{
    margin-top: 40px;
    line-height: 1.8;
}

.section-bg{
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
}

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

/* HEADER*/

.header{
    width: 100%;
    z-index:35;
    position: absolute;
    top:0;
    left: 0;
    background-color: var(--primary-color);
	transition: top 1s ease;
}

.header-inner{
    height: 120px;
    background-image: url(../images/header-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    z-index: 999;
}

#header.activeFixed{
    position: fixed;
    -webkit-animation: menu-sticky .3s ease;
    animation: menu-sticky .3s ease;
    -webkit-box-shadow: 0 2px 10px 0 rgba(51, 51, 51, 0.15);
    box-shadow: 0 2px 10px 0 rgba(51, 51, 51, 0.15);
}

@-webkit-keyframes menu-sticky{
    0%{
        top:-90px;
        opacity:0
    }
    to{
        top:0;
        opacity:1
    }
}

@media screen and (min-width: 1024px) {
    
    .header-inner{
        height: 125px;
    }
    
    #header.activeFixed .header-inner{
        transform: translateZ(0);
         height: 90px;
        transition: all .4s cubic-bezier(.165,.84,.44,1);
    }
}

.header-bar{
    width:100%;
    height:42px;
    background-color:var(--terciary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:#fff;
}

@media screen and (min-width: 1024px) {
        
    #header.activeFixed .header-bar{
        display:none;
    }
    
}

@media screen and (max-width: 1024px) {
    .header-wrap{
       display: flex;
       align-items: center;
       justify-content: space-between;
    }
}

.header-item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo{
    position: absolute;
    top:50%;
    left: 52%;
    transform: translate(-50%,-50%);
}

.header-logo img{
    height: 75px;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
}

@media screen and (min-width: 1024px) {
    .header-logo img{
        height: 60px;
    }
    
    #header.activeFixed .header-logo img{
        height: 40px;
    }
}

.header-menu{
    display: none;
}

@media screen and (min-width: 1024px) {
    .header-menu{
        display: block;
    }
}

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

.header-menu .menu > li:nth-child(4){
    margin-left: 330px;
}

.header-menu .menu > li > a{
    font-size: 1.6rem;
    position: relative;
    padding: 0 10px;
    display: block;
    color:#fff;
    transition:all .6s ease;
    /*white-space:nowrap;*/
}

.header-menu .menu li:hover  > a,
.header-menu .menu li.current-menu-item > a{
    color: #fff;
}

.header-icons{
    margin:0 16px;
}

.header-icons .icons{
    display: flex;
    align-items: center;
}

.header-icons .icons li{
    position: relative;
    display: none;
}

.header-icons .icons li.-bag{
    display: block;
}

@media screen and (min-width: 1024px) {
    .header-icons .icons li{
        margin-right: 14px;
        padding-right: 14px;
        display: block;
    } 
}

@media screen and (max-width: 1024px) {
    .header-icons .icons li.-bag{
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    } 
}

.header-icons .icons li:last-child{
    margin-right: 0;
    padding-right: 0;
}

.header-icons .icons li:after{
    content: "";
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 0;
    height: 25px;
    width: 1px;
    background-color: #fff;
    display: none;
}

@media screen and (min-width: 1024px) {
    .header-icons .icons li:after{
        display: block;
    }
}

.header-icons .icons li:last-child:after{
    display: none;
}

.header-icons .icons .icons-link{
    font-size: 1.9rem;
    cursor:pointer;
}

.header-icons .icons .icons-link span:before{
    content:"";
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 2rem;
    color:#fff;
    color:var(--secondary-color);
}

@media screen and (min-width: 1024px) {
    .header-icons .icons .icons-link span:before{
        font-size: 2.1rem;
		/*color:#000;*/
    }
}

.header-icons .icons li.-search .icons-link span:before{
    content:"\e90a";
    color:#fff;
}

.header-icons .icons li.-user .icons-link span:before{
    content:"\e90c";
}

.header-icons .icons li.-whislist .icons-link span:before{
    content:"\e906";
}

.header-icons .icons li.-bag{
    padding:0;
    margin:0;
}

.header-icons .icons li.-bag:after{
    display:none;
}

.header-icons .icons li.-bag .icons-link span:before{
    content:"\e901";
}

.header-icons:last-of-type li.-search{
    display:none;
}

@media screen and (max-width: 1024px) {
    .header-icons:last-of-type li.-search{
        display:block;
        margin-right:16px;
    }
}

.header-menu .menu li{
	position:relative;
}

.header-menu .menu li .sub-menu {
    left: 0;
    position: absolute;
    min-width: 220px;
    z-index: 2;
    text-align: left;
    padding: 20px 0;
    box-shadow: 0 0 37px rgba(0,0,0,.07);
    background-color: #fff;
    display: none;
    border-radius:0;
    top: calc(100% + 25px);
    margin:0;
}

#header.activeFixed .header-menu .menu li .sub-menu{
    top: calc(90% + 40px);
}

.header-menu .menu li .sub-menu:before{
    content:"";
    position:absolute;
    bottom:100%;
    left:0;
    width:100%;
    height:25px;
}

#header.activeFixed .header-menu .menu li .sub-menu:before{
    height:40px;
}

.header-menu .menu li.menu-item-has-children:hover .sub-menu {
    display: block;
    -webkit-animation: slide-down .3s ease-out;
    animation: slide-down .3s ease-out;
}

@-webkit-keyframes slide-down {
	0% { opacity: 0; -webkit-transform: translateY(10px); }   
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-down {
	0% { opacity: 0; -moz-transform: translateY(10px); }   
	100% { opacity: 1; -moz-transform: translateY(0); }
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.header-menu .menu li.menu-item-has-children:hover .sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: normal;
    padding: 5px 18px;
    transition: all .6s;
    font-size: 1.5rem;
    text-align: left;
	color:var(--text-color);
}
.header-menu .menu li.menu-item-has-children:hover .sub-menu li a:hover{
    color:var(--primary-color);
}


/* TOGGLE MENU */

.toggle-menu{
    width: auto;
    height: 100%;
    position: relative;
    cursor: pointer;
    text-indent: -999999px;
    overflow: hidden;
    transition: all .3s;
    display: block;
    background-color:transparent !important;
}

.toggle-menu span{
    display: block;
    border-radius: 9999px;
    width: 32px;
    height: 2px;
    background: #fff;
    transition: all .6s;
    position: relative;
    margin: 0;
    margin-left: auto;
}

.toggle-menu span + span {
    margin: 6px 0;
    margin-left: auto;
}

.mobile-menu{
    display: block;
}

@media screen and (min-width: 1024px) {
    .mobile-menu{
        display: none;
    }
}

.toggle-menu span:nth-child(1) {
    -webkit-animation: ease .7s top-2 forwards;
    animation: ease .7s top-2 forwards;
}

.toggle-menu span:nth-child(2) {
    -webkit-animation: ease .7s scaled-2 forwards;
    animation: ease .7s scaled-2 forwards;
}

.toggle-menu span:nth-child(3) {
    -webkit-animation: ease .7s bottom-2 forwards;
    animation: ease .7s bottom-2 forwards;
}

.opened-menu .toggle-menu span:nth-child(1) {
    -webkit-animation: ease .7s top forwards;
    animation: ease .7s top forwards;
}

.opened-menu .toggle-menu span:nth-child(2) {
    -webkit-animation: ease .7s scaled forwards;
    animation: ease .7s scaled forwards;
}

.opened-menu .toggle-menu span:nth-child(3) {
    -webkit-animation: ease .7s bottom forwards;
    animation: ease .7s bottom forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 8px;
    transform: rotate(0);
  }
  100% {
    top: 8px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 8px;
    transform: rotate(45deg);
  }
  50% {
    top: 8px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 8px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 8px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* SIDEBAR CART- */

.xoo-wsc-qty-box{
        max-width: 100px;
}

.xoo-wsc-container .button{
    border-color: var(--primary-color)!important;
    background-color: var(--primary-color)!important;
    font-weight:300!important;
    color:#fff!important;
    height:37px;
    border-radius:var(--border-radius);
    font-size:1.8rem;
    overflow:hidden;
}

.xoo-wsc-container .button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    pointer-events:none;
}

.xoo-wsc-container .button:hover:after {
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

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

.xoo-wsc-empty-cart span,
.xoo-wsc-pname > a,
.xoo-wsc-ft-amt-label,
.xoo-wsch-text{
    font-weight: 700!Important;
    color: #000!important;
    font-size:1.8rem;
}

.xoo-wsch-text{
    font-weight: 400!Important;
    font-family:var(--primary-font);
}

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

.xoo-wsc-qty-box{
    border-radius:9990px;
    border: 1px solid var(--secondary-color)!important;
    overflow:hidden;
    color:#6f6f6e!important;
}

/* MENU RESPONSIVE */

#header .ms-menu-responsive {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    min-height: 100vh;
    z-index: 999;
    width: 0;
    overflow: hidden;
    transition: all .6s ease-in-out;
    background-color: var(--primary-color) !important;
    padding-top: 50px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
}

@media screen and (min-width: 768px){
    #header .ms-menu-responsive {
        max-width: 300px;
    }
}


#header .ms-menu-responsive .mobile_menu_div_100 {
    width: 100%;
    border-top: 1px solid #fff;
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    backface-visibility: hidden;
    box-sizing: border-box;
    height: calc(100vh - 45px);
    overflow-y: auto;
    padding: 0 0 10rem;
    position: relative;
    transition: opacity .15s linear 0s;
}

#header .ms-menu-responsive .menu-more-options li {
    position: relative;
    padding: 0 30px;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children>a {
    cursor: pointer;
}

#header .ms-menu-responsive .menu-more-options li a {
    display: flex;
    align-items: center;
    min-height: 65px;
    padding: 1.5625rem 0;
    font-size: 1.8rem;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all .6s;
    color:#fff;
    font-weight: 700;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children > a::after {
    content: "\e900";
    display: flex;
    width: 12px;
    height: 100%;
    font-size: 1rem;
    position: absolute;
    justify-content: center;
    align-items: center;
    color: #fff;
    right: 1rem;
    top: 0px;
    font-family: var(--icon-font) !important;
    transition: all 0.6s ease 0s;
    margin: 0px auto;
    transform: rotate(90deg);
}

#header .ms-menu-responsive .menu-more-options li .sub-menu {
    padding: 0;
    padding-bottom: 15px;
    display: none;
        margin: 0;
}

#header .ms-menu-responsive .menu-more-options li .sub-menu li a {
    border-bottom: 0;
    padding: 0.9375rem 0;
    min-height:40px;
    font-weight: 400;
}

#header .ms-menu-responsive .menu-more-options li .sub-menu li {
    padding: 0;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active>a {
    border-bottom-color: rgba(0,0,0,0);
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    margin-top: -1px;
}
#header .ms-menu-responsive .menu-more-options li.menu-item-has-children {
    transition: background-color .6s;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active>a,
#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active .sub-menu li a,
#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active > a::after{
    color:#fff;
}

#header .ms-menu-responsive .menu-more-options li.menu-item-has-children.active>a:after {
        transform: rotate(-90deg);
}

.opened-menu #header .mobile-menu{
    position: fixed;
    z-index: 9999;
    height: 50px;
    right: 0;
    top: 0;
    transition: none;
    transform: scale(.8);
    right: 10px;
}

.opened-menu #header .ms-menu-responsive {
    -webkit-animation: slide-left .3s ease-out;
    animation: slide-left .3s ease-out;
    display: block;
    width: 100%;
}

.r-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 32;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: all .65s ease;
    visibility: hidden !important;
}

.opened-menu #header .r-overlay {
    visibility: visible !important;
    opacity: .5;
}

/* SEARCH MENU */

.opened-search .search-btn.-icon.-search:before {
    content: "\e905";
}

.close-search{
    width: 32px;
    height: 32px;
    right: 0;
    margin: 0 auto;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 9999px;
    cursor:pointer;
    flex-shrink:0;
}

.close-search:before{
    content: "\e903";
    display:block;
    font-family: 'omelet' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size:1.4rem;
   color: var(--primary-color);
}

.search-dropdown{
    position:fixed;
    top:0;
    left:0;
    padding: 20px 15px;
    width:100%;
    background-color:#fff;
    transform:translatey(-10px);
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
    box-shadow:var(--box-shadow);
    z-index:40;
}

@media screen and (min-width: 1024px) {
    .search-dropdown{
        height: 170px;
        padding: 40px;
        display: flex;
        align-items: center;
    }
    
    .search-dropdown-wrap{
        width:100%;
    }
}

.opened-search .search-dropdown,
.opened-search .r-overlay{
    transform:translatey(0);
    opacity:1;
    visibility:visible;
}

.opened-search .r-overlay{
    visibility:visible !important;
    opacity:.32;
}

.search .woocommerce-product-search{
    display:flex;
    height: 40px;
    margin:0;
    position:relative;
     width:100%;
    max-width: 1755px;
    margin:0 auto;
}

.search .woocommerce-product-search input{
    width:100%;
    padding:0!important;
    padding-right:40px!important;
    height: 100%;
    border:0!important;
    min-height:auto;
}

.search .woocommerce-product-search input.search-field,
.search .woocommerce-product-search input.search-field::placeholder{
    font-size: 1.7rem!important;
    font-weight: 400!important;
    color: var(--text-color)  !important;
}

.search .woocommerce-product-search input.search-field{
    color: var(--text-color)  !important;
    padding-left: 65px !important;
}

@media screen and (max-width: 1024px) { 
    .search .woocommerce-product-search input.search-field{
        padding-left: 45px !important;
    }
}

.search .woocommerce-product-search .search-button{
    width:60px;
    height:40px;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: transparent;
}

.search .woocommerce-product-search .search-button:before{
    content:"\e90a";
    display:block;
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 2rem;
}
/* BANNER */

.banner{
    padding: 3vmax 0;
    position:relative;
    background-color:var(--primary-color-light);
}

@media screen and (min-width: 1024px) { 
    .banner{
        padding:30px 0;
    }
}

.banner-wrap{
    display:flex;
    align-items:center;
}

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

@media screen and (max-width: 767px) { 
    .banner-image{
        display:none
    }
}

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

.banner-content{
    width:100%;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    align-items: center;
    text-align:center;
}

@media screen and (min-width: 580px) {
    .banner-content{
        align-items: flex-start;
        text-align:left;
    }
}

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

@media screen and (min-width: 580px) {
    .banner-item{
        justify-content:flex-start;
    }
}

.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.8rem;
    font-weight:100!important;
    color:#000!important;
    text-align:center;
}

.banner-item .woocommerce-breadcrumb{
    color:var(--primary-color) !important;
    font-weight:700!important;
}

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

@media screen and (min-width: 580px) {
    .banner-title{
        justify-content: flex-start;
    }
}

.banner-title,
.banner-title .woocommerce-breadcrumb{
    font-size:3rem!important;
    color:var(--primary-color)!important;
    font-weight: 700!important;
    line-height:1.2!important;
    text-align:center;
}


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

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

.banner.-search .banner-image{
	display:none;
}

.banner.-search .banner-content{
	width:100%
}

/* MAIN PAGE */

.main-page{
    padding:4vmax 0;
    position:relative;
}

@media screen and (min-width: 1280px) { 
    .main-page{
        padding:60px 0;
    }
}

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

body.single-product .main-page,
body.woocommerce-shop .main-page,
body.blog .main-page{
    padding-bottom:0;
    background-image: url(../images/product-bg-2.png);
        background-size: 190px;
        background-position: right bottom;
        background-repeat: no-repeat;
}

.blog-page{
    padding-bottom:60px;
}

body.single-product .main-page:after{
    content:"";
    position:absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width:100%;
    height:180px;
    background-color:var(--primary-color-light);
}

body.page-id-18 .main-page{
    padding-bottom:0;
}

body.error404 .main-page{
    background-image: url(../images/404.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

/* WELCOME */

#welcome{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    height: 0;
    padding-bottom: 38.833333333333336%;
}

@media screen and (max-width: 1024px) {
    #welcome{
        padding-bottom: 119.99999999999999%;
    }
}

.welcome-wrap{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


#welcomeSliderImages,
#welcomeSliderInfo{
    width: 100%;
    height: 100%;
}

#welcomeSliderInfo .slick-list,
#welcomeSliderInfo .slick-track,
#welcomeSliderInfo .slick-slide,
#welcomeSliderInfo .slick-slide > div,
#welcomeSliderInfo .welcome-info-item,
#welcomeSliderInfo .welcome-images-item{
    height: 100%;
}

#welcome{
	background-color: var(--terciary-color);
}

.welcome-images{
    position: relative;
    width: 100%;
}

.welcome-images,
.welcome-images-item,
.welcome-images .slick-list,
.welcome-images .slick-track,
.welcome-images .slick-slide,
.welcome-images .slick-slide > div{
    height: 100%;
}
.welcome-images-item video,
.welcome-images-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}   

.welcome-info{
    z-index: 9;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 45px 0;
    position:absolute;
    bottom:0;
    left:0;
}

@media screen and (max-width: 1024px) {
    .welcome-info{
        padding: 15px 0;
    }
}


.welcome-info-container{
    width: 90%;
    max-width: 1755px;
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
}

.welcome-info-item{
    display: flex !important;
    align-items: center;
}

.welcome-info-wrap{
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-between;
}

 .welcome-info-wrap-text{
    overflow:hidden;
    margin-bottom:20px;
}

@media screen and (min-width: 1024px) {
    .welcome-info-wrap-text{
        height:25px;
    }
}

.welcome-info-wrap h1{
    color:#fff;
    font-size: 1.8rem;
    font-weight:700;
    opacity: 0;
    transition-property: opacity,transform;
    transition-duration: 1s;
    transform: translate(0%,100%) matrix(1,0,0,1,0,0);
}

.welcome-info-wrap span{
    display: block;
}

.welcome-info-wrap .btn{
    margin-top: 0px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-delay:1s;
}

.animate-slide.welcome-info-wrap h1,
.animate-slide.welcome-info-wrap .btn{
    transform: matrix(1,0,0,1,0,0);
    opacity: 1;
}


.welcome-dots{
    width: 100%;
    position: absolute;
    bottom: 25px;
    right: 0;
    left:0;
    margin:0 auto;
    z-index: 11;
    pointer-events: none;
}

.welcome-dots .slick-dots li{
    pointer-events: all;
}

/* bloques */

#bloques{
        position: relative;
    z-index: 10;
}

@media screen and (min-width: 580px) {
    #bloques{
        padding: 0;
        margin-top: -85px;
    }
}

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

@media screen and (min-width: 580px) {
    .bloques-grid{
        flex-flow: row;
        gap:24px;
    }
}

.bloques-item{
    width: 100%;
}

.bloques-item:nth-child(2){
    max-width: 100%;
    flex-shrink: 0;
}

@media screen and (min-width: 580px) {
    .bloques-item:nth-child(2){
        max-width: 320px;
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .bloques-item:nth-child(2){
        display: block;
    }
}

.bloques-image{
    height: 200px !important;
    width: 100%;
    overflow:hidden;
    position:relative;
}

@media screen and (min-width: 580px) {
    .bloques-image{
        height: 135px !important;
    }
    
    .bloques-item:nth-child(2) .bloques-image{
        height: 222px !important;
    }
}

.bloques-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    z-index: 1;
    pointer-events: none;
}

.bloques-image:hover:before {
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

.bloques-item:nth-child(2) .bloques-image{
    height: 100%;
}

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

.bloques-wrap{
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.bloques-info{
    padding: 25px 35px;
    background-color: #d5d0cb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bloques-info h2{
    font-size: 2rem;
    font-weight: 700;
}

 .bloques-item:nth-child(2) .bloques-info{
     display:none;
 }

/* PRODUCT */

.product-image{
    position: relative;
    margin-bottom: 20px;
    overflow:hidden;
     border-radius:15px;
}

.product-image:after{
    content:"";
    display: block;
    padding-bottom: 100%;
}

.product-image:before{
    content:"";
    position: absolute;
    top:0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    z-index:1;
    pointer-events:none;
}

.product-content:hover .product-image:before{
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    transition:all .6s ease;
   
}

.product-content:hover .product-image img{
    transform:scale(1.1);
}

.product-whislist{
    width: 39px;
    height: 39px;
    position: absolute;
    top:11px;
    right: 11px;
    z-index: 10;
}

.product-whislist img{
    object-fit:contain;
}

.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-info{
    position: relative;
    padding:0 10px;
    padding-right: 25px;
    text-align:left;
}

.produxt-title a{
    font-size: 1.8rem;
    font-weight: 700;
}

.product-price span{
    font-size: 1.8rem;
    color:var(--primary-color);
}

.product-link{
    position: absolute;
    right: 10px;
    top:50%;
    transform: translateY(-50%);
}

.product-link:before{
    content:"\e901";
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 1.8rem;
    color:var(--primary-color);
}

/* FEATURED */

@media screen and (min-width: 1024px) {
    #featured{
        background-image: url(../images/featured-bg3.jpg);
        background-size: 940px;
        background-position: left bottom;
        background-repeat: no-repeat;
        padding-top: 150px;
    }
}

.featured-wrap{
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-right: 0;
}

@media screen and (min-width: 580px) {
    .featured-wrap{
        flex-flow: row;
    }
}

@media screen and (min-width: 1024px) {
    .featured-wrap{
        max-width: 685px;
    }
}

.featured-text{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 3vmax;
}

@media screen and (min-width: 580px) {
    .featured-text{
        margin-bottom: 0;
    }
}

.featured-text h2{
    font-size: 4rem;
    font-family: var(--primary-font);
    display: flex;
    flex-flow: column;
    align-items: center;
}

@media screen and (max-width: 580px) {
    .featured-text h2{
		font-size: var(--title-sm);
	}
}

.featured-text h2 span{
    font-weight: 700;
    font-family: var(--primary-font);
}

.featured-text h2:after{
    content:"";
    display: block;
    width: 100px;
    height: 100px;
    background-image: url(../images/arrow-featured.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateX(60px);
    display: none;
}

@media screen and (min-width: 580px) {
    .featured-text h2:after{
        display: block;
    }
}

.featured-product{
    width: 280px;
    flex-shrink: 0;
}

/* CATEGORIAS */

@media screen and (min-width: 767px) {
    #categories{
        padding-bottom:20px;
    }
}

@media screen and (max-width: 767px) {
    #categories{
        overflow: hidden;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.categories-grid{
    display: flex;
    /*flex-flow: column;*/
	flex-flow: row;
	 flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
    .categories-grid{
        flex-flow: row;
    }
}

@media screen and (max-width: 767px) {
    .categories-grid{
    	 flex-wrap: nowrap;
    }
}

.categories-item{
    width: 25%;
    padding:15px;
}

@media screen and (max-width: 767px) {
    .categories-item{
        width: 40vw;
        flex: 0 0 40vw;
        padding:10px;
    }
}

.categories-wrap,
.categories-image{
    position: relative;
}

.categories-wrap{
    overflow:hidden;
    display:block;
    border-radius:20px;
}

.categories-wrap:before{
    content:"";
    position: absolute;
    top:0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    z-index:1;
    pointer-events:none;
}

.categories-wrap:hover:before{
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

.categories-image{
    overflow: hidden;
}

.categories-image:after{
    content:"";
    display: block;
    padding-bottom: 96%;
}

@media screen and (max-width: 1024px) {
    .categories-image:after{
		padding-bottom: 100%;
	}
}

.categories-image img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.categories-wrap:hover .categories-image img{
    transform: scale(1.1);
}

.categories-info{
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    width: 100%;
    background-color:var(--terciary-color);
}

@media screen and (max-width: 767px) {
    .categories-info{
		padding: 10px;
	}
}

.categories-info:after{
    content: "";
    width: 23px;
    height: 19px;
    display:inline-block;
    background-image: url(../images/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.categories-info h2{
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.6s;
}

@media screen and (max-width: 767px) {
    .categories-info h2{
        font-size: 1.4rem;
    }
}

/* TABS */

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

/* PRODUCT TABS */

.product-tabs{
    display: none;
    flex-flow: column;
    align-items: flex-start;
}

@media screen and (min-width: 580px) {
    .product-tabs{
        flex-flow: row;
		display: flex;
    }
}

.product-tabs-grid-mobile{
	display:flex !important;
}

@media screen and (min-width: 580px) {
    .product-tabs-grid-mobile{
		display:none !important;
	}
}

.product-tabs .tablist{
    width: 100%;
    margin-bottom: 25px;
    flex-shrink: 0;
    padding: 35px 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

@media screen and (min-width: 580px) {
    .product-tabs .tablist{
        width: 277px;
        margin: 0;
        margin-right: 30px;
    }
}

.product-tabs .tablist li{
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.product-tabs .tablist li:after{
    content:"";
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.product-tabs .tablist li a{
    font-size: 1.8rem;
    display: block;
    transition: all 0.6s;
    color: #fff;
}

.product-tabs .tablist li a:hover,
.product-tabs .tablist li a.is-selected{
    color: var(--secondary-color);
}

.product-tabs .tablist li:last-child{
    margin: 0;
    padding: 0;
}

.product-tabs .tablist li:last-child:after{
    display: none;
}

.product-tabs .tablist h2{
    margin-bottom:10px;
    color:#fff;
    font-size:25px;
    font-weight:700;
}

.product-tabs .tabcontent{
    width: 100%;
}

.product-tabs-grid{
    display: flex;
    flex-flow: wrap;
    margin: -10px;
}

@media screen and (min-width: 580px) {
    .product-tabs-grid{
        margin: -12px;
    }
}

.product-tabs-item{
    width: 50%;
    padding: 10px;
}

@media screen and (min-width: 580px) {
    .product-tabs-item{
        width: 50%;
        padding: 12px;
    }
}

@media screen and (min-width: 1024px) {
    .product-tabs-item{
        width: 33.33%;
    }
}

.product-tabs-btn{
        display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.product-tabs-btn .section-title,
.product-tabs-btn .section-title h2{
    margin:0;
}

.product-tabs-btn .btn{
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* SOCIAL */

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

.social li a:before {
    content: "";
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 1.8rem;
    color:#fff;
    transition:all .6s ease;
}

.social li.-instagram a:before{
     content: "\e907";
}

.social li.-facebook a:before{
     content: "\e905";
}

.social li.-whatsapp a:before{
     content: "\e90d";
}

/* FOOTER */

.footer{
    /*background-image: url(../images/footer-bg.png);*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    background-color:var(--primary-color);
    padding-top: 60px;
}

@media screen and (min-width: 1024px) {
    .footer .container{
        width: 85%;
    }
}

.footer-top{
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .footer-top{
        flex-flow: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-logo{
    margin-bottom: 25px;
}

@media screen and (min-width: 1024px) {
    .footer-logo{
        margin-bottom:0;
    }
}

.footer-logo img{
    width: 160px;
}

.footer-items,
.footer-disclaimer{
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-right: 0;
    align-items: center;
        text-align: center;
}

@media screen and (min-width: 580px) {
    .footer-items,
    .footer-disclaimer{
        flex-flow: row;
        align-items: flex-start;
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .footer-items,
    .footer-disclaimer{
        max-width: 900px;
    }
}

.footer-item{
    width: 100%;
    padding-bottom: 25px;
    position: relative;
}

@media screen and (min-width: 580px) {
    .footer-item{
        padding: 0;
        margin: 0;
        width: 25%;
    }
}

@media screen and (min-width: 1024px) {
    .footer-item{
        padding-right: 60px;
        margin-right: 60px;
    }
}

.footer-item:last-child{
    margin: 0;
    padding: 0;
}

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

.footer-item:after{
    content:"";
    position: absolute;
    right: 0;
    top:0;
    width: 1px;
    height: 145px;
    background-color: var(--secondary-color);
    display: none;
}

@media screen and (min-width: 1024px) {
    .footer-item:after{
        display: block;
    }
}

.footer-item h2{
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap;
}

@media screen and (min-width: 1024px) {
    .footer-item h2{
        white-space: nowrap;
    }
}

.footer-item.-menu li{
    margin-bottom: 8px;
}

.footer-item.-menu li:last-child{
    margin-bottom: 0;
}

.footer-item.-menu li a,
.footer-social li > a{
    color: #fff;
    font-family: 1.8rem;
    font-weight: 100;
    transition:all .6s ease;
}

@media screen and (min-width: 1024px) {
     .footer-item.-menu li a,
    .footer-social li > a{
        white-space: nowrap;
    }
}

.footer-item.-menu li a:hover,
.footer-social li > a:hover:before{
    color: var(--secondary-color);
}

.footer-social .social{
    margin-top: 8px;
}

@media screen and (max-width: 580px) {
    .footer-social .social{
            justify-content: center;
    }
}

.footer-item.-reclamaciones{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-item.-reclamaciones img{
    width: 120px;
}

.footer-bottom{
    margin-top: 40px;
}

.footer-disclaimer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-disclaimer{
    padding:  16px 50px;
    background-color:var(--primary-color-light);
    border-radius: 10px 10px 0  0;
    position: relative;
}

.footer-disclaimer p{
    color:var(--primary-color);
    font-size: 1.4rem;
}

.cards{
    margin-top: 10px;
}

@media screen and (min-width: 580px) {
    .cards{
        position: absolute;
        top:50%;
        transform: translateY(-50%);
        right: 15px;
        margin: 0;
    }
}

.cards img{
    height: 22px;
}

.logo-omelet:before {
    content: "\e908";
    text-indent: 0;
    display: inline-block;
    font-family: "omelet" !important;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-indent: 0;
    transition: all .3s;
    text-indent: 0;
    margin-left: 5px;
}

/* BLOG HOME */

.blog-home-grid{
    display: flex;
    flex-flow: column;
    margin: -25px;
}

@media screen and (min-width: 580px) {
    .blog-home-grid{
        flex-flow: row;
    }
}

.blog-home-item{
    padding: 25px;
    width: 100%;
}

@media screen and (min-width: 580px) {
    .blog-home-item{
        width: 50%;
    }
}

.blog-home-wrap{
    display: flex;
    flex-flow: column;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .blog-home-wrap{
        flex-flow: row;
    }
}

.blog-home-image{
    width: 100%;
    height: 210px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position:relative;
}

@media screen and (min-width: 1024px) {
    .blog-home-image{
        width: 260px;
        height: 210px;
    }
}

.blog-home-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    z-index: 1;
    pointer-events: none;
}

.blog-home-image:hover:before {
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

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

.blog-home-info{
    width: 100%;
    padding:20px;
}

@media screen and (min-width: 1024px) {
    .blog-home-info{
        padding: 0;
        padding-left: 30px;
    }
}

.blog-home-date{
    display: block;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap:8px
}

.blog-home-date:before {
    content: "\e902";
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.blog-home-info h2{
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-home-description{
     display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-home-description p{
    font-size: 1.4rem;
    
}

/* TESTIMONIAL */

#testimonials{
    min-height: 500px;
    padding: 0;
}

@media screen and (min-width: 1024px) {
    #testimonials{
        min-height: 500px;
        padding: 0;
    }
}

.testimonial-grid{
    display: flex;
    flex-flow: wrap;
    align-items: center;
    height: 100%;
}

.testimonial-content,
.testimonial-image{
    width: 100%;
}

.testimonial-content{
    padding: 4vmax 20px;
}

@media screen and (min-width: 1024px) {
    .testimonial-content{
        width: 53%;
        padding: 0;
    }
    .testimonial-image{
        width: 47%;
    }
}

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

#testimonialSlider{
    max-width: 100%;
    margin: 0 auto !important;
}

@media screen and (min-width: 1024px) {
    #testimonialSlider{
        max-width: 440px;
        padding:0;
        margin: 0 auto !important;
        margin-right: 110px !important;
    }
}

#testimonialSlider .slick-dots{
    bottom: auto;
    margin: 0;
    right: 0;
    justify-content: flex-start;
}

.testimonial-wrap{
    padding-top: 85px;
    position: relative;
    
}

.testimonial-wrap:after{
    content: "";
    width: 85px;
    height: 50px;
    position: absolute;
    top:0;
    left: 0;
    background-image: url(../images/comillas.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-wrap p{
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.testimonial-wrap h2{
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* INSTAGRAM */

#instagram{
    background-image: url(../images/instagram-bg.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1024px) {
    #instagram{
       padding: 45px 0;
    }
}

#sb_instagram .sbi_photo_wrap {
    overflow: hidden;
    border-radius: 20px;
}

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

@media screen and (min-width: 1024px) {
    .intagram-wrap{
        flex-flow: row;
    }
}

.intagram-content{
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    color: #fff;
    margin-bottom: 25px;
}

@media screen and (min-width: 1024px) {
    .intagram-content{
        width: 441px;
        text-align: left;
        margin: 0;
    }
}

.intagram-content > span{
    display: block;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.intagram-content h2{
    font-size: 4rem;
    font-family: var(--primary-font);
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    .intagram-content h2{
        font-size: 4.7rem;
    }
}

.intagram-content h2 span{
    font-weight: 700;
    font-family: var(--primary-font);
}

.intagram-feed{
    width: 100%;
}

/* BLOG */

.blog-wrapper{
    display:flex;
    flex-flow:column;
}

@media screen and (min-width: 1024px) {
    .blog-wrapper{
        flex-flow:row;
    }
}

.blog-sidebar{
    width:100%;
    flex-shrink:0;
    margin:40px 0;
}

@media screen and (min-width: 1024px) {
    .blog-sidebar{
        width:300px;
        padding-left:65px;
        margin:0;
    }
}

.blog-content{
    width:100%;
}

.blog-grid .posts{
    display:flex;
    flex-wrap:wrap;
    margin:-10px;
}

@media screen and (min-width: 580px) {
    .blog-grid .posts{
        margin:-17px;
    }
}

.blog-grid .post{
    width:100%;
    padding:10px;
}

@media screen and (min-width: 580px) {
    .blog-grid .post{
        width:50%;
        padding:17px;
    }
}

.post-wrap{
    border-radius:var(--border-radius);
    overflow:hidden;
    border:1px solid #d5d0cb;
}

.post-image{
    position:relative;
    overflow:hidden;
}

.post-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.3),transparent);
    z-index: 1;
    pointer-events: none;
}

.post-image:hover:before {
    animation: shine .75s cubic-bezier(.01,.56,1,1);
}

.post-image:after{
    content:"";
    display:block;
    padding-bottom: 78%;
}

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

.post-date{
    position:absolute;
    left:0;
    bottom:0;
    padding:10px 20px;
    background-color:var(--secondary-color);
    color:#fff;
    font-size:1.4rem;
    border-radius: 0 9999px 9999px 0;
    display:flex;
    gap:6px;
}

.post-date:before {
    content: "\e902";
    font-family: var(--icon-font);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 1.4rem;
    color: #fff;
}

.post-content{
    padding:35px 40px;
    display:flex;
    flex-flow:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.post-title{
    font-size:2rem;
    color:var(--secondary-color);
    margin-bottom:10px;
    font-weight:700;
}

.post-excerpt{
    font-size:1.4rem;
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom:15px;
}

.blog-sidebar-filter{
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid #231f20;
}

.blog-sidebar-filter:last-child{
    margin:0;
    padding:0;
    border:0;
}

.blog-sidebar-filter > h2{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blog-sidebar-list li{
    padding:0;
    align-items: center;
    width: 100%;
    position:relative;
    border-bottom:1px solid #d5d0cb;
}

.blog-sidebar-list li:last-child{
    border-bottom:0;
}

.blog-sidebar-list li a {
    display: flex;
    padding: 16px 0;
    font-size: 1.8rem;
    font-weight: 400;
    position:relative;
    transition:all .6s ease;
}

.blog-sidebar-list li a:hover{
    color:var(--secondary-color);
}

.blog-sidebar-list li a > span,
.blog-sidebar-list li .post-count{
        width: 26px;
    height: 26px;
    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;
}

.blog-grid  .pagination {
    margin: 40px 0!important;
}

@media screen and (min-width: 580px) {
    .blog-grid  .pagination {
        margin: 90px 0!important;
        margin-top: 60px!important;
    }
}

.blog-grid .page-numbers{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5px;
}

.blog-grid .page-numbers li a{
    width:21px;
    height:21px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9999px;
    transition:var(--transition);
    color:var(--text-color)!important;
}

.blog-grid .page-numbers li.current a{
    background-color:var(--primary-color);
    pointer-events:none;
}

.blog-grid .page-numbers li a:hover{
    color:var(--primary-color)!important;
}

.blog-grid .page-numbers li .page-numbers.next,
.blog-grid .page-numbers li .page-numbers.prev{
    padding:0!important;
    text-indent:-9999px;
    background-color:var(--primary-color) !important;
    color:#fff !important;
    width:26px!important;
    height:26px!important;
}

.blog-grid .page-numbers.next:after,
.blog-grid .page-numbers.prev:after{
    content:"";
    width:100%;
    height:100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-size:25%;
    background-position:center;
    background-repeat:no-repeat;
}

.blog-grid .page-numbers.next:after,
.blog-grid .page-numbers.prev:after{
    background-image: url(../images/next-arrow.svg);
}

.blog-grid .page-numbers.prev:after{
    background-image: url(../images/next-arrow.svg);
    transform: translateY(-50%) scalex(-1);
}

.blog-count{
    font-size:1.8rem;
    margin-bottom:30px;
}

.blog-sidebar-filter.-publi img{
    width:100%;
    border-radius:20px;
}

/* SINGLE BLOG */

.single-post-header{
    position:relative;  
    padding-bottom:30px;
    padding-right:200px;
}

.single-post-title{
    font-size:3.8rem;
    font-weight:700;
}

.single-post-date .post-date{
    left: auto;
    right: 0;
    border-radius: 20px 20px 0px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
        bottom: -8px;
    z-index: -1;
}

.single-post-content{
    border-radius:10px;
    overflow:hidden;
    border:1px solid #d5d0cb;
}

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

.single-post-text{
    padding:20px;
}

@media screen and (min-width: 580px) {
    .single-post-text{
        padding:50px 60px;
    }
}

.single-post-text .description p{
    font-size:1.8rem;
    text-align: justify;
    margin-bottom:1rem;
}

/* CONTACT */

.contact-info{
    display:flex;
    flex-flow:column;
    margin-bottom:40px;
}

@media screen and (min-width: 580px) {
    .contact-info{
        flex-flow:row;
        margin-bottom:100px;
    }
}

.contact-info-data{
    width:100%;
    flex-shrink:0;
    margin-bottom:25px;
}

@media screen and (min-width: 580px) {
    .contact-info-data{
        width:350px;
        margin:0;
    }
}

.contact-info-map{
    width:100%;
    position:relative;
    overflow:hidden;
    border-radius:var(--border-radius);
}

.contact-info-map:after{
    content:"";
    display:block;
    padding-bottom:56.25%;
}

.contact-info-map iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.contact-info-data > ul > li{
    font-size:1.8rem;
    margin-bottom:25px;
     color:var(--secondary-color);
     font-weight:700;
}

.contact-info-data > ul > li:last-child{
    margin:0;
}

.contact-info-data > ul li > a{
    color:var(--text-color);
    font-weight:400;
    display:block;
}

.contact-info-data .social{
    margin-top:12px;
}

.contact-info-data .social li a:before {
    color: var(--text-color);
}

.contact-form{
    position:relative;
}

.contact-form:after{
    content:"";
    position:absolute;
    bottom:65px;
    left:0;
    width:680px;
	max-width:680px;
    height:680px;
	max-height:680px;
    background-image: url(../images/product-bg2.png);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    display:none;
}

@media screen and (min-width: 1024px) {
    .contact-form:after{
        display:block;
    }
}

.contact-form-title .section-title,
.contact-form-wrap{
    width:100%;
    max-width:100%;
    margin-right:auto;
    margin-left:auto;
}

@media screen and (min-width: 1024px) {
    .contact-form-title .section-title,
    .contact-form-wrap{
        max-width:490px;
        margin-right:0;
    }
}

.contact-form-title{
    position:relative;
    padding-bottom:25px;
    padding-top: 10px;
}

.contact-form-title:after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-color:#fff;
}

.contact-form-title .section-title{
    margin-bottom:0;
}

.contact-form{
    padding-top:0;
    padding-bottom:40px;
}

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

.contact-form-block{
    padding-top:35px;
}

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

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

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

.page-legal .site-section-header h1{
    margin: 0;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    margin-bottom:45px;
    color:var(--primary-color);
}

.page-legal:not(.lista-deseos) .container{
    max-width:980px!important;
}

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

.text-legal p{
    margin-bottom:1rem;
}

.text-legal h1,
.text-legal h2,
.text-legal h3,
.text-legal h4,
.text-legal h5{
    margin:1rem 0;
    font-size: 2rem;
   color: #000!important;
    font-weight: 700!important;
    line-height: 1.2!important;
    font-family:var(--primary-font);
}
.text-legal h4{
	margin-top:2.8rem;
}
.text-legal h1 strong,
.text-legal h2 strong,
.text-legal h3 strong,
.text-legal h4 strong,
.text-legal h5 strong{
    font-weight: 400!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;
     color: var(--primary-color)!important;
}

.form-group-wrapper h2{
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.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.6rem;
    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;
    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(--primary-color);
    border-color:var(--primary-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;
}

#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;
    font-weight:400;
}

.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/select-arrow.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:700!important;
    line-height: 1.2!important;
    color:var(--primary-color);
}


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

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

/* ANIMACIONES */

.ms-animate-item{
    opacity: 0;
    transition-property: opacity,transform;
    transition-duration: 1s;
    transform: translate(0%,50px) matrix(1,0,0,1,0,0);
    transition-delay:.2s;
}

.ms-animate-item.-left{
    transform: translate(-50px,0) matrix(1,0,0,1,0,0);
}

.ms-animate-item.-right{
    transform: translate(50px,0) matrix(1,0,0,1,0,0);
}

.ms-loaded-animate .ms-animate-item{
    transform: matrix(1,0,0,1,0,0);
    opacity: 1;
}

.ms-animate-item:nth-of-type(1){
    transition-delay:.2;
}

.ms-animate-item:nth-of-type(2){
    transition-delay:.4s;
}

.ms-animate-item:nth-of-type(3){
    transition-delay:.6s;
}

/* QUIENES SOMOS */

.accordion{
    width: 100%;
    font-size: 1.5rem;
}

.accordion-item{
    
    position:relative;
}

.accordion-item:after{
    content:"";
    position:absolute;
    right:0;
    width:7px;
    height:7px;
    border-radius:9999px;
    bottom:-4px;
    background-color:#fff;
}

.accordion-header,
.accordion-body-contents{
    background-color: transparent!important;
    padding:10px 0;
    text-transform:unset;
    font-weight:400;
    letter-spacing:0;
    line-height:1.2;
    position:relative;
    color:#231F20!important;
    font-size:1.8rem;
    text-align:justify;
}

.accordion-header{
    font-size:2.4rem;
    font-weight:700;
    border-bottom: 1px solid #D5D0CB;
}

.accordion-item_last-child .accordion-header{
    border-bottom: 0;
}

/*.accordion-body-contents{*/
/*    padding-top:0;*/
/*}*/

.accordion-body{
    background-color: transparent!important;
    color:#231F20!important;
    line-height:1.2;
}

.accordion-item{
    margin-bottom:40px;
}

.accordion-item_last-child{
     margin-bottom:0;
}

.accordion-item > .accordion-header:after {
    content: "+";
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:0;
    width:26px;
    height:26px;
    background-color:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border-radius:9999px;
    font-size:1.4rem;
    font-weight:100;
}

.accordion-item.active > .accordion-header:after {
    content: "-";
}

.quienes-somos-grid{
    display:flex;
    flex-flow:column;
    align-items:center;
}

@media screen and (min-width: 1024px) {
   .quienes-somos-grid{
       flex-flow:row;
        align-items:center;
    }
}

.quienes-somos-content{
     width:100%;
}

@media screen and (min-width: 1024px) {
   .quienes-somos-content{
         padding-left:45px;
    }
}

.quienes-somos-text{
    margin-bottom:25px;
}

@media screen and (min-width: 1024px) {
    .quienes-somos-text{
        margin-bottom:65px;
    }
}

.quienes-somos-text p{
    font-size:1.8rem;
    text-align:justify;
}

.quienes-somos-image{
    width:100%;
    flex-shrink:0;
    margin-top:25px;
}

@media screen and (min-width: 1024px) {
   .quienes-somos-image{
        width:565px;
        margin:0;
        margin-left:120px;
    }
}

.quienes-somos-image img{
    width:100%;
}

.quienes-somos-content{
    width:100%;
}

/*.menu li > a[href*='categoria-producto']{*/
/*    color:red;*/
/*}*/



.section-btn-wp{
	display: flex;
    justify-content: center;
	margin-top: 20px;
}
#btn-wp{
	padding:0 0 20px 0;
}