/*
https://getbootstrap.com/docs/5.0/layout/breakpoints/

 max-width (hacia abajo) : 1199, 991, 767, 575
 min-width (hacia arriba): 1200, 992, 768, 576
 mínimo es el que se coge

azul botones: #00b3e8 > 00A6D9
hover: #1CCBFF
boton en focus: #008db8
Naranja: #e24c1f

gris oscuro: #3b3b3b
gris tab cuenta: #D5D5D5
gris recuadros: #e2e2e2
gris clarito:  #f1f1f1
gris más clarito:  #f8f8f8; (fondos bloques forms)
gris aun más clarito casi máximo: #FAFAFA (fondos bloques)
gris comentarios texto (forms): #8F8F8F 

alternativa negro:  #30302f;
naranja flag dtos: #f39d72

*/


/************************************************/
/******************* IMPORTS ********************/
/************************************************/

@import url('https://fonts.googleapis.com/css?family=Muli:400,500,600,700&display=swap');

/************************************************/
/******************** GLOBAL ********************/
/************************************************/

* {
    box-sizing: border-box;    
}

body, p, .page-content.page-cms ul{
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #30302f;
    line-height: 1.35em;
}


img {
    transition: .3s all ease-in-out;
}

p {
    margin-bottom:8px;
}

a {
    color: #0089B2;   
}

a:hover {color:#e24c1f;}

a:hover img {
    opacity: .8;
}

button:focus {outline: none}



*::-moz-selection {
    background: #e24c1f;
    color: #ffffff;
}

*::selection {
    background: #e24c1f;
    color: #ffffff;
}


.alert {
    margin: 10px 0;
}

.alert-danger {
    color:#FFFFFF;
    background-color:#e24c1f;
}

.full-block {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#wrapper {
    background: none;
}


@media (max-width: 1250px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 1250px) {
    .container {
        width: 1250px
    }
}

@media (min-width: 992px){
    #wrapper > .container > #left-column {
        width: 275px !important;
        padding-right: 0px;
        padding-bottom:30px;
        padding-left:0px;
    }
    #wrapper > .container > #left-column + #content-wrapper {
        width: calc(100% - 275px);
        padding-left: 30px;
    }
}

.d-none {
    display: none;
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.flex-direction-row {
    flex-direction: row;      
}

@media (max-width: 575px) {
    .flex-direction-xs-column {
        flex-direction: column;
    }
}


/*FORMULARIOS*/
@media (max-width: 767px) {
    .form-control-comment {
        padding-top: 0px;  
    }
}

.form-control {
    border-radius: 10px;
    background-color: #ffffff;
    padding: .3em .75rem;
}

.form-control:focus,
.input-group.focus {
    border-color: #e24c1f;
    outline: none;
}

.form-group {
    margin-bottom: 0.6rem;
}

/*selector*/
select.form-control:not([size]):not([multiple]) {
    height: unset;
}

/*modulo formulario, campos en misma línea*/
@media (min-width: 768px) {
    .wpcf7 .iz60 {width:60%;float:left}
    .wpcf7 .der40 {width:40%;float:left;padding-left:20px}
}



/************************************************/
/******************** COMUNES ********************/
/************************************************/

/***** PROTECCION ANTI COPIA *****/

#cms #main,
.faq-js-modal-content,
.product-description,
#category-description
{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/*AL IMPRIMIR*/
@media print {
    #cms #main,
    .faq-js-modal-content,
    .product-description,
    #category-description
    {display: none!important;}
}


/*DIFUMINADO FONDO*/
#filters-modal,
#menu-modal,
#search-modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: .5s all ease-in-out;
}
body.filters-active #filters-modal,
body.menu-is-active #menu-modal {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    #menu-modal,
    #search-modal {
        display: none;
    }
}

.oculto,
.jss_oculto
{display: none!important}

.alert-info {
    background-color: #F2FAF5;
    border: 1.6px solid #5AD638;
    border-radius: 5px;
    display: block;
    clear: both;
}


/************************************************/
/******************** GENERAL ********************/
/************************************************/

/*oculto menú móvil en páginas específicas*/
#contact .header-top-left #menu-ico,
.layout-full-width .header-top-left #menu-ico

{
    display: none
}


.page-content.page-cms {text-align:left}



/************************************************/
/***************** BOTONES ******************/
/************************************************/

/*BOTONES*/
.btn-primary {
    background-color: #00A6D9;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #1CCBFF;
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.btn-primary:focus, 
.btn-primary.focus,
.open>.btn-primary.dropdown-toggle:hover,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle.focus,
.btn-primary:active,
.btn-primary.active,
.open>.btn-primary.dropdown-toggle

{
    background-color: #008db8;
    border-color: unset;
    outline: unset;
}

.btn-primary.disabled:hover,
.btn-primary:disabled:hover {
    background-color: #00b3e8;

}

.btn.disabled,
.btn:disabled,
.btn.disabled:hover {    
    background: #00b3e8;    
    color: #ffffff;
    opacity: 0.3;
}

.btn-secondary, .btn-tertiary {
    color: #30302f;
    background-color: #f6f6f6;
    border-radius:8px;
    border:1px solid #91918E;
}


/*AÑADIR AL CARRITO*/
.add-to-cart {
    margin-left: 0px!important;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}


.add-to-cart:hover {
    border-color: #1CCBFF;
}

.add-to-cart:focus,
.add-to-cart:active,
.add-to-cart:active:focus
{
    border-color: #008DB8;
}




/*mostrar contraseña*/
.input-group .input-group-btn>.btn[data-action="show-password"] {
    padding: 0.8em 0.75rem;
    background: #7a7a7a;
    border-radius: 0px 8px 8px 0px;
}


/*selector*/
input.js-cart-line-product-quantity.form-control {
    border: solid 1px #e2e2e2;
    background-color: #f8f8f8;
    border-radius: 10px 0 0 10px !important;
    font-weight: bold;
    text-align: center;
    color: #30302f;
    width: 55px;
}

button.btn.btn-touchspin.js-touchspin.js-increase-product-quantity,
button.btn.btn-touchspin.js-touchspin.js-decrease-product-quantity {
    border: solid 1px #e2e2e2;
    background-color: #f8f8f8;  
}


/************************************************/
/***************** ELEMENTOS COMUNES ******************/
/************************************************/

/*checkbox*/
.custom-checkbox input[type=checkbox]+span {
    background-color: #fff;
    width: 20px;
    height: 20px;
}

.custom-checkbox input[type="checkbox"] {left:0;top:0}


.custom-checkbox input[type=checkbox]:checked + span {
    background-color: #e24c1f;  
}

.custom-checkbox>label {cursor:pointer}


.custom-radio input[type=radio]:checked + span {
    background-color: #e24c1f;
}
.custom-checkbox input[type="checkbox"] + span {
    border: 2px solid #C8C8C8;
}
.custom-checkbox input[type="checkbox"]:focus + span {
    border-color: #C8C8C8;
}
.custom-checkbox input[type="checkbox"]:checked + span {
    border-color: #e24c1f;
}
.custom-checkbox input[type="checkbox"] + span .checkbox-checked {
    color: #fff;
}
.custom-checkbox input[type="checkbox"]:checked + span .checkbox-checked {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.custom-checkbox label b {text-decoration: underline;}


/*CAMPOS*/
textarea:focus {
    outline: none !important;
    border: 1px solid e24c1f!important;
    /*box-shadow: 0 0 10px #e24c1f;*/
    box-shadow:none;
}


/************************************************/
/***************** LISTAS Ul ******************/
/************************************************/

ul li::marker {
    content: none; /* Oculta marcadores (voy a utilizar befores) */
}

.page-content.page-cms ul {
    list-style-position: inside;
    padding-left:5px;
}



/*numeradas (ol)*/
ol {
    padding-left:25px;
}

ol li {
    text-indent:5px; /*margen simbolo*/
}

ol li::marker {
    color: #e24c1f; 

}



.product-description ol >li, .page-content.page-cms ol >li,
.product-description ul >li, .page-content.page-cms ul >li
{
    margin-bottom: 5px; 
}

.product-description ul {
    margin-top: 5px;
}



/*primer nivel*/
.product-description ul li::before,
.page-content.page-cms ul li::before {
    margin-right: 7px; 
    content: " ";     
    display: inline-block; /* Asegura que ocupe espacio */
    background-color: #e24c1f;   
    width: 6px; 
    height: 3px;
    vertical-align: middle;
}


/*segundo nivel*/
.product-description ul li ul li::before,
.page-content.page-cms ul li ul li::before {
    margin-right:5px;
    position: relative;
    top:-2px;
    content: "•";
    font-size: 0.9em;
    color: #e24c1f;  
    padding-left:12px;
    background-color:unset;
    display:inline;

}

/*tercer nivel*/
.product-description ul li ul li ul li::before,
.page-content.page-cms ul li ul li ul li::before {    
    content: "-";
    padding-left:24px;
}



/************************************************/
/******************** HEADER ********************/
/************************************************/


#header {
    box-shadow: none;
    background: #30302f;
}

/***** HEADER NAV *****/
#header .header-nav {
    border: 0;
    min-height: 0;
}

/***** HEADER TOP *****/
#header .header-top {
    padding: 15px 0;
    background: none;
}

#header .header-top > .container {position: static;}

/***** HEADER TOP LEFT *****/

#header .header-top-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/****** HEADER ICONO HAMBURGUESA ******/
#menu-ico {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    border: 0;
}

#menu-ico {
    margin: 0 15px 0 2px;
}

.menu-ico-box,
.search-ico-box {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
}

.menu-ico-inner {
    bottom: 2px;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .13s;
}

.menu-ico-inner,
.menu-ico-inner:after,
.menu-ico-inner:before {
    position: absolute;
    width: 20px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 0;
    background-color: #ffffff;
}

.menu-ico-inner:after,
.menu-ico-inner:before {
    display: block;
    content: "";
}

.menu-ico-inner:before {
    top: -7px;
    transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19), height .1s ease-in-out;
}

.menu-ico-inner:after {
    top: -14px;
    transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear, height .1s ease-in-out;
}

.menu-is-active .menu-ico-inner {
    bottom: -2px;
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: translate3d(0,-10px,0) rotate(-45deg);
    height: 3px;
    width: 20px;
}

.menu-is-active .menu-ico-inner:before {
    top: 0;
    transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s, height .1s ease-in-out;
    transform: rotate(-90deg);
    height: 3px;
    width: 20px;
}

.menu-is-active .menu-ico-inner:after {
    top: 0;
    transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s, height .1s ease-in-out;
    opacity: 0;
}

/***** HEADER LOGO *****/

#header .header-top-left h1 {margin: 0;}

#header .logo {
    width: 230px;
    max-width: 100%;
    margin: -5px 0 0 0;
}


/***** HEADER TOP RIGHT *****/
#header .header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: static;
}

#header .header-top-right > *:not(:first-child) {margin: 0 0 0 30px;}


/***** HEADER TOP USER & CART *****/
.user-info,
.blockcart .header,
.blockcart .header a {
    display: flex;
    align-items: center;
    position: relative;
}

 .user-info a,
 .blockcart a,
 .blockcart
  {    
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff !important;
    display: flex;
    align-items: center;
}

.user-info i,
.blockcart i,
#search-btn
{        
    border-style: solid;
    border-width: 2px;
    border-color: #e24c1f;
    margin-right: 9px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e24c1f;
}


.user-info a:hover span,
.user-info a:hover i,
.blockcart a:hover span,
.blockcart a:hover i,
.user-info i:hover  {
    color: #e24c1f; 
    border-width: 3px;   
}









/*
.user-info a span,
.blockcart a span {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right:10px;
}
*/

/*contador productos*/
.blockcart .header span.cart-products-count {
    padding: 2px 4px 0 4px;
    font-size: 13px;
    color: #30302f;
    background: #ffffff;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    border-radius: 50px;
    position: absolute;
    top: -8px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/***** HEADER TOP SEARCH *****/
#search_widget {margin-bottom: unset}

@media (min-width: 576px) {
    .header-top .search-widgets {
        max-width: 100%;
    }
}

#search_widget form input[type=text] {
    height: 40px;
    /*width: 100%;
    max-width: 100%;*/
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    background-color: #ffffff;
    padding: 10px 60px 10px 20px;
    color: #30302f;
    /*display: flex;*/
}

#search_widget form button[type="submit"] {
    position: absolute;   
    right: -1px;
    bottom: 0;
    width: 45px;
    height: 40px;
    color: #ffffff;
    background-color: #e24c1f;
    border-width: 0;    
    border-radius: 0 10px 10px 0;
    padding: 0 2px 2px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*icono lupa al pulsar campo de texto*/
.search-widget form input[type="text"]:focus+button .search {color: unset;}

#search_widget form button[type=submit]:hover {background: #E76F4B;}

#search_widget form i {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


#search_widget {
    display: flex;
    justify-content: flex-end;
    overflow: visible;
    flex: 1;
}

#search-main {width: 100%;}


/*VISTA MOVIL*/
#search-btn {display: none;}

@media (max-width: 991px) {    
    /*se muestra mini-botón de búsqueda y se oculta la barra*/
    #header #search-btn {display: block;}    
    #search_widget #search-main {display:none}

    #search-btn:hover {opacity: 0.9; }
    #search-btn {margin-right: -50px;}  

    #search-btn > *{
        display: flex;
        align-items: center;
        justify-content: center;        
    }

    #search-btn,
    #search-btn .close {      
        color: #ffffff;
        background-color: #e24c1f;
        opacity: unset;
    }

    /*buscador emergente activado*/
    /*fondo traslucido*/
    body.search-is-active #search-modal {
        opacity: 1;
        visibility: visible;
    }

    .search-is-active #search_widget #search-main {
        display: block;
        position: absolute;    
        top: 100%;  
        right: 0;
        width: 100%;
        padding: 10px;
        z-index: 1002;
    }

    .search-is-active #search-btn {
        z-index: 1002;
    }


    /*conmuta visibilidad de lupa y cerrado*/
    .search-is-active #search-ico, 
    body:not(.search-is-active) #search-close {
        display: none; 
    }


    /*desplegable con resultados*/
    .ui-autocomplete.searchbar-autocomplete {        
        z-index: 1000;
        left: 11px!important;
        top: 123px!important;
        width: 90%;
        min-height: unset;
        max-height: 350px;
        overflow: auto;       
    }


}



@media (max-width: 991px) {
    #header {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    #header .header-top {
        padding: 9px 0;
    }
    #header .logo {
        width: 175px;
    }

    .user-info {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 8px 10px;
        width: 100%;
        background-color:#DBDBDB;
        margin-top:15px;
    }

    .user-info a i{
        width:33px;
        height:33px;
        color:#3b3b3b;
        border-color:#3b3b3b;
    }    

    .user-info a span {
        color: #3b3b3b;
        font-size: 14px;
    }    

    .user-info .account {
        flex: 1;  
        justify-content:left;
    }

    .user-info a.logout {
        flex: 0 0 auto;
        font-size: 80%;
        line-height: 1.2;   
        background-color: #636363;  
        padding: 3px 8px;
        border-radius: 10px;
    }



}

@media (max-width: 575px) {

    .header-top-right {
        width: 50%;
    }
}





/************************************************/
/***************** MENÚ VERTICAL ****************/
/************************************************/

/*opción quiero...*/
/*.js-top-menu li#cms-page-60 a {color: #00b3e8};*/

/*opcion promos*/
/*.js-top-menu li#category-100 {background-color: #FDCEBC};*/


.block-categories {
    padding: 0;
    margin: 0 0 20px 0;
    background: none;
    background: #ffffff;
}

.mobile .top-menu,
.block-categories .category-sub-menu {
    margin: 0 !important;
}

.mobile .top-menu li::before,
.block-categories .category-sub-menu li::before {
    display: none;
}

.mobile .top-menu li .link-content,
.block-categories .category-sub-menu li .link-content {
    position: relative;
    width: 100%;
}

.mobile .top-menu li a,
.block-categories .category-sub-menu li a {
    margin: 0;
    padding: 2px 30px 2px 5px;
    font-family: 'Muli';
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
    color: #30302F;
}

.mobile .top-menu li a .link-image,
.block-categories .category-sub-menu li a .link-image {
    text-align: center;
}

.mobile .top-menu li a .link-image img,
.block-categories .category-sub-menu li a .link-image img {
    width: 100%;
    height: auto;
}

.mobile .top-menu li a .link-text,
.block-categories .category-sub-menu li a .link-text {
    padding: 3px 0 3px 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/***** MENU VERTICAL - LEVEL 0 *****/

.mobile .top-menu li[data-depth="0"],
.block-categories .category-sub-menu li[data-depth="0"] {
    background: #F5F5F5;
    border: 1px solid #DCDCDC;
    border-bottom: 0;
    display: flex;
    flex-flow: wrap;
}

.mobile .top-menu li[data-depth="0"]:last-child,
.block-categories .category-sub-menu li[data-depth="0"]:last-child {
    border-bottom: 1px solid #DCDCDC;
}

.mobile .top-menu li[data-depth="0"] a .link-image,
.block-categories .category-sub-menu li[data-depth="0"] a .link-image {
    width: 41px;
    height: 41px;
}

.mobile .top-menu li[data-depth="0"] a .link-text,
.block-categories .category-sub-menu li[data-depth="0"] a .link-text {
    width: calc(100% - 41px);
}

.mobile .top-menu li[data-depth="0"] .top-menu,
.block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu {
    background: #ffffff;
}

/***** MENU VERTICAL - LEVEL 1 *****/

.mobile .top-menu li[data-depth="1"],
.block-categories .category-sub-menu li[data-depth="1"] {
    margin: 0;
    padding: 1px 0px 3px 0px;
}

.mobile .top-menu li[data-depth="1"] a,
.block-categories .category-sub-menu li[data-depth="1"] a {
    /*padding-left: 30px;*/
    padding-left: 15px;
    text-transform: none;
}

.mobile .top-menu li[data-depth="1"] a .link-image,
.block-categories .category-sub-menu li[data-depth="1"] a .link-image {
    width: 27px;
    height: 27px;
}

.mobile .top-menu li[data-depth="1"] a .link-text,
.block-categories .category-sub-menu li[data-depth="1"] a .link-text {
    width: calc(100% - 27px);
}

/***** MENU VERTICAL - LEVEL 2 *****/

.mobile .top-menu li[data-depth="2"] a:before,
.block-categories .category-sub-menu li[data-depth="2"] a:before {
    content: "";
    top: 10px;
    left: 35px;
    width: 6px;
    height: 6px;
    background: #30302f; /*none*/
    /*border: 1px solid #999999;*/
    border-radius: 50%;
}

.mobile .top-menu li[data-depth="2"] a,
.block-categories .category-sub-menu li[data-depth="2"] a {
    padding: 3px 0px 3px 30px;
    font-weight: 500;
}

.mobile .top-menu li[data-depth="2"] a .link-text,
.block-categories .category-sub-menu li[data-depth="2"] a .link-text {
    width: 100%;
    padding: 0 0 0 13px;
}

/***** MENU VERTICAL - CURRENT *****/

.mobile .top-menu li.current > .link-content a,
.block-categories .category-sub-menu li.current > .link-content a {
    color: #E24C1F !important;
    text-decoration: none !important;
}

.mobile .top-menu li.current > .link-content a img,
.block-categories .category-sub-menu li.current > .link-content a img {
    filter: invert(30%) sepia(99%) saturate(1825%) hue-rotate(354deg) brightness(95%) contrast(86%) !important;
}

/***** MENU VERTICAL - HOVER *****/

.mobile .top-menu li:not(.current) > .link-content a:hover span,
.block-categories .category-sub-menu li:not(.current) > .link-content a:hover span {
    text-decoration: underline;
}

/***** MENU VERTICAL - ARROW *****/

.mobile .link-arrow,
.block-categories .link-arrow {
    border: 0;
    margin: 0;
    padding: 5px;
    /*width: 25px; solo clicable la flecha*/
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.mobile .link-arrow i,
.block-categories .link-arrow i {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #999999;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.mobile .link-arrow.active i,
.block-categories .link-arrow.active i {
    transform: rotate(180deg);
}

.mobile .link-arrow:hover i,
.mobile .link-arrow i:hover,
.block-categories .link-arrow:hover i,
.block-categories .link-arrow i:hover {
    color: #000000;
}

/***** MENU VERTICAL - EVENTS *****/

.mobile .top-menu .collapse,
.block-categories .collapse {
    display: none;
    height: auto;
    width: 100%;
}

.mobile .top-menu .collapse.in,
.block-categories .collapse.in {
    display: block;
    height: auto;
    width: 100%;
}

.collapsing {
    height: 100% !important;
}

/***** MENU VERTICAL - ICO *****/
#header .header-nav #menu-ico {
    margin: 0 16px;
    vertical-align: middle;
    cursor: pointer;
}

#header .header-nav #menu-ico .material-icons {
    line-height: 50px;
    color: #ffffff;
}

/***** MENU VERTICAL - ICO *****/
#menu-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 45px;
    padding: 5px;
}

#menu-top,
#menu-top i {
    color: #ffffff;
    background: #30302f;
}

@media (max-width: 991px) {
    /*elementos mas altos para facilitar pulsar con el pedido/*/
    .mobile .top-menu li[data-depth="1"],
    .block-categories .category-sub-menu li[data-depth="1"] {
        padding: 4px 0 4px 0px;
    }
    .mobile .top-menu li[data-depth="2"] a,
    .block-categories .category-sub-menu li[data-depth="2"] a {
        padding: 6px 0px 6px 30px;
    }

    #_mobile_menu {
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 1001;
        width: 300px;       
        height: 100%;
        max-height: 100%;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        background: #ffffff;
        transition: .5s all ease-in-out;
    }
    body.menu-is-active #_mobile_menu {
        left: 15px;
        opacity: 1;
        visibility: visible;
    }
    #_mobile_user_info {
        width: 100%;
        float: none !important;
    }

    #_mobile_menu a:hover {color:#e24c1f}

}



/************************************************/
/******************** FILTERS *******************/
/************************************************/

#search_filters,
#search_filters_brands,
#search_filters_suppliers {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1001;
    min-width: 300px;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .5s all ease-in-out;
}

body.filters-active #search_filters,
body.filters-active #search_filters_brands,
body.filters-active #search_filters_suppliers {
    right: 0;
    opacity: 1;
    visibility: visible;
}



/************************************************/
/************ MI CUENTA ****************/
/************************************************/

/*Autenticación y registro*/
#authentication h1,
#registration h1 {
    text-align:center;
}
.page-authentication #content,
#registration section.register-form
 {
    border: #e2e2e2 2px solid;
    border-radius: 15px;
    padding: 25px;
}


/*¿no tienes cuenta*/
.page-customer-account #content .no-account {   
    border-color: #5EC283;
    border-width: 2px 0px 2px 0px;
    border-style: solid;   
    padding: 10px 10px;
    margin-top: 20px;
    background-color:#F2FAF5;
}


/**** MI CUENTA - DENTRO ****/

.page-my-account #content .links a {
    margin-bottom: 15px;
}

.page-my-account #content .links a:hover,
.page-my-account #content .links a:hover i {
    color: #e24c1f;
}

.page-my-account #content .links a i {
    width: unset;
    margin: 10px 10px;
    padding-bottom: unset;
    color: #999;
}

.page-my-account #content .links a span.link-item {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-align: left;
    border-radius: 10px;
    border: 1px solid #ececec;
    padding: 5px 10px;
    color: #30302f;
}

/*botón cerrar sesión*/
.page-my-account footer.page-footer a {    
    border-radius: 10px;
    color:#ffffff;
    padding: 10px 15px;
    background-color:#e24c1f;
}

.page-my-account footer.page-footer a:hover {  
    opacity: 0.8;

}

/**** FIN MI CUENTA - DENTRO ****/

/*MIS PEDIDOS*/
/*DETALLE DE PEDIDO*/
#order-detail #wrapper div#content-wrapper {max-width:800px}

/*colores estados*/
.page-order-detail #order-history .history-lines .history-line .label,
#order-detail .table-labeled .label {color:#30302f}
#order-detail span.label.label-pill {background-color:transparent!important}

/*mensaje cliente*/
#order-detail textarea.form-control[name="msgText"] {
    min-height: 150px;
}

/*TEMPORAL. oculto selector producto porque no llega en el formulario*/

#order-detail .form-fields .form-group.row:first-child {
    display: none;
}

/************************************************/
/******************* FOOTER *********************/
/************************************************/

#footer,
body#checkout #footer
{
    padding: 0px;
    background-color: #f8f8f8;
}

/*PRE-FOOTER*/

#footer > .container {    
    padding: 18px 15px;
    width: 100%;
}

#footer .container > .row {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    #footer .container > .row {
        flex-direction: column;
    }
}


/*REDES SOCIALES SOCIAL*/
#footer .block-social ul {
    display: flex;  
    justify-content: flex-end;
    align-items: center;
    margin:0;
}

@media (max-width: 767px) {
    .block-social ul li {
        margin: unset;
        margin-left: 10px;
    }
}
@media (min-width: 992px) {
    #footer .block-social ul {
        margin-right: 30px;
        justify-content: flex-end;    
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    #footer .block-social > ul {
        margin: 0 auto;
        width: auto;
        justify-content: center;
    }
}

#footer .block-social ul li {
    width: 40px;
    height: 40px;
    background-color: #30302f;
    border-radius: 30%;
}

#footer .block-social ul li:hover {
    background-color: #e24c1f;
}

/*MODULO CONTACTA CON NOSOTROS*/
div#contact-izq {
    margin-top:60px;
    background: #f8f8f8;
    padding: 30px;    
}

div#contact-izq p {
    font-size:15px;
}


@media (max-width: 991px) {
    div#contact-izq 
    {
        margin:0px 15px;
        padding: 10px;
    }

}

/*FIN MODULO CONTACTA*/







/* MODULO REGALOS */
/*Aviso visitar sección*/

a.btn.btn-primary.visitar-promos {
    background-color:rgba(255,154,82,1);
    color: #fff;
    white-space: normal;
}

a.btn.btn-primary.visitar-promos:hover {
    opacity:0.7;
}
body#checkout a.btn.btn-primary.visitar-promos,
body#checkout a.btn.btn-primary.visitar-promos:hover {
    color: #fff;
}

/*FOOTER OSCURO*/
#footer .footer-container {
    background: #30302F;
    padding-top: 1rem;
}


/*titulos*/
#footer .footer-container .bloque_enlaces .h3 {
    font-size: 18px;
    color: #b5b5b5;
}

/*enlaces*/
#footer .footer-container .bloque_enlaces li {
    margin-bottom: 15px;
}

#footer .footer-container .bloque_enlaces li a {
    font-weight: 600; 
    color: #ffffff;
}

#footer .footer-container .bloque_enlaces li a:hover {
    color: #ffffff;
    text-decoration: underline
}


@media (min-width: 768px) {

    #footer .footer-container .bloque_enlaces {padding: 15px}

    #footer .footer-container .bloque_enlaces.bloque3 {
        background: #3b3b3b;
        float: right;
    }

}

@media (max-width: 767px) {
    .footer-container .wrapper {
        padding-right: 15px!important;
        padding-left: 15px!important;
    }

    .footer-container .links ul {
        margin-bottom: 0;
        background-color: unset;
    }

    .footer-container .links ul>li {
        padding: unset;
        font-weight: 600;
        border:none;
        margin: 4px 0px;
    }


}



#footer .bloque_enlaces img.listpic {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    filter: invert(55%) sepia(35%) saturate(0%) hue-rotate(296deg) brightness(102%) contrast(97%); /*#999*/
    display: block;
    float: left;
}

#footer .bloque_enlaces.bloque3 img.listpic {
    width: 17px;
    height: 17px;
}

#footer .bloque_enlaces.bloque3 #div_solicita_llamada {
    background: #ffffff;
    padding: 5px 15px 10px 15px;
    margin: 4px 0px 10px 0px;
    border-radius: 0px 0px 10px 10px;
    max-width: 380px;
    display: none;
}

#footer .bloque_enlaces.bloque3 #div_solicita_llamada .message {
    font-size: 14px;
    color: #30302f;
}

#footer .bloque_enlaces.bloque3 #jssrcalllink:hover {
    text-decoration: underline;
}

/*lista enlaces responsive*/
@media (max-width: 991px) {
    span.navbar-toggler.collapse-icons {
        width: 29px;
        height: 29px;
        border-radius: 3px;
        background-color: #e2e2e2;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        /*transform: rotate(90deg);*/
        margin-right: 10px;
    }
}

/*Copyright*/
#footer .copyright-footer p {
    color: #b3b3b3;
    font-size: 13px;
    margin: 0;
}

#footer .copyright-footer {
    background-color: #000000;
    padding: 10px;
    margin-top: 20px;
}




/************************************************/
/************** LISTADO PRODUCTOS ***************/
/************************************************/

/*MAQUETADO BLOQUES*/
/*bloque con todos los productos*/
#products .products {margin: 0px}


.js-product {
    padding: 0;
    box-shadow: 0 0 0 1px #e2e2e2;   
    background-color: #FFF;

    border-bottom: 1px solid #999999;
    margin-bottom:1px;
}


@media (min-width: 1250px) {
    .js-product {width: calc(100% / 5);}
}    

@media (min-width: 1060px) and (max-width: 1249px)  {
    .js-product {width: calc(100% / 4);}
}

@media (min-width: 992px) and (max-width: 1059px)  {
    .js-product {width: calc(100% / 3);}
}

@media (min-width: 768px) and (max-width: 991px)  {
    .js-product {width: calc(100% / 4);}
}

@media (min-width: 588px) and (max-width: 767px)  {
    .js-product {width: calc(100% / 3);}
}

@media (min-width: 359px) and (max-width: 587px)  {
    .js-product {width: calc(100% / 2);}
}

@media (max-width: 358px)  {
    .js-product {width: 100%;}
}



/*MINIATURA*/
.product-miniature .thumbnail-container:hover .product-description::after, 
.product-miniature .thumbnail-container:focus .product-description::after {
    border: none; /*quito borde que aparece al hacer hover en miniatura*/
}

/*flag sin stock*/
.product-flags li.product-flag {    
    background: #000000;
    color: #fff;
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 0 0 10px 0;
    margin-top:0;
}

/*flag descuento miniatura*/
ul.product-flags li.product-flag.discount {display: none;}

/*Botón mas info*/
.thumbnail-container a span {
    display: flex;
    opacity: 0;
    z-index: 2;
    position: absolute;
    width: 110px;
    height: 40px;
    border-radius: 10px;
    background-color: #e24c1f;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    top: calc(50% - 22px);
    left: calc(50% - 56px);
    transition: 0.3s all ease-in-out;
}

.thumbnail-container a:hover span {opacity: 1;}    


/*nombre producto*/
.product-miniature .product-title {
    height: 33px
}

#products .product-title a,
.featured-products .product-title a, 
.product-accessories .product-title a,
.product-miniature .product-title a,
.thumbnail-container .product-description h3.h3.product-title a {
    font-size: 16px;
    font-weight: bold;
    color: #30302f;
    text-align: left;
    /*dos lineas max*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



/*Descripción corta producto*/
#products .product-description,
.featured-products .product-description,
.product-accessories .product-description,
.product-miniature .product-description {
    height: auto; /*si no se indica, hay problemas en iphone con el modulo de reseñas jproductcomments*/
}

.product-miniature .product-description {
    padding: 0px 10px;
}

.thumbnail-container .short_description_box p.product_short_description {
    font-size: 13px;
    font-weight: 600;
    color: #6b6b6b;   
    /*dos lineas max*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-miniature .product-price-and-shipping {
    text-align:unset;
}

.bloque_precio_antiguo {
    margin-bottom:3px;
    min-height: 20px;
}

.bloque_precio_actual {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /*puntos suspensivos si desborda*/
}

/*precio*/
.product-miniature .regular-price {font-size: 17px;} /*antes*/
.product-price-and-shipping .price {font-size: 19px;} /*actual*/

/*dto aplicado*/
.product-miniature .product-price-and-shipping .discount-product {
    /*FLAG*/
    display: unset; 
    color: #ffffff;
    background: #f39d72;
    padding: 3px 5px 2px;
    margin-left: 5px;
}

.product-miniature .alternative_original_price {
    font-size: .7rem;
    color: #7a7a7a;
    text-decoration: line-through;
}

.product-miniature .alternative_price {
    font-size: .7rem;
    color: #7a7a7a;
}


/*POPUP CON DESCRIPCION CORTA COMPLETA*/
.short_description_box {
    min-height: 45px;
}
.short_description_box.hover {
    cursor: pointer;
}

span.hover_description {
    opacity: 0;
    position: absolute;
    z-index: 1;
    width: 90%;
    padding: 3%;
    top: 41px; 
    font-size: 13px;
    color: #fff;
    background: #30302f;
    text-align: left;
}


.short_description_box.hover:hover span.hover_description {opacity: 1;}

/*flechita */
.short_description_box.hover:hover span.hover_description::before {
    content: "";
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #30302f transparent;
    position: absolute;
    top: -10px;
    left: calc(50% - 9px);
}






/************************************************/
/*************** PAGINA CATEGORÍA ***************/
/************************************************/

/*MIGAS PAN*/
@media (max-width: 767px) {
    nav.breadcrumb {
        display: block !important;
    }
}

#index nav.breadcrumb {display: none !important;} /*no se muestrna en página índice*/

/*TITULOS DE SECCION*/
/*sin imagen pag categoría*/
#js-product-list-header .category-cover img {display: none}

/*sin ordenación de productos ni total*/
#category .row.sort-by-row,
#category .total-products
 {display:none}

#category #js-product-list-header .card-block {
    min-height: unset;
    margin-bottom: unset;
    padding: 15px 0px;
    border-top: 3px solid #e8e8e8;
    border-bottom: 3px solid #e8e8e8;
}

/*titulo categoría*/
#category #js-product-list-header .card-block h1 {
    font-size: 23px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color:#e24c1f;
}

/*Descripción categoría*/
.block-category .block-category-inner #category-description p,
.block-category .block-category-inner #category-description p:first-child
{
    margin-bottom:8px;
}


.block-category .block-category-inner #category-description strong {
    font-weight: bold;
    color: unset;
}



/*BOTONES SUBCATEGORIAS*/
#category .subcategory-image {display: none}

#subcategories .subcategory-heading {margin-top: 25px;}

#subcategories {
    padding: unset;
    border: none
}

#subcategories ul li .subcategory-name {
    font-weight: 600;
    color: #30302f;
    text-transform: none;
}

.subcategories-list h5 {
    height: 80px;
}

.subcategories-list h5 a {
    background-color: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 15px;
}

.subcategories-list h5 a:hover {
    color: #ffffff !important;
    background-color: #30302f;
}


.subcategories-list h5 a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#subcategories ul li {
    min-width: 190px;
}


/************************************************/
/************ TABLAS COMPARATIVAS ***************/
/************************************************/

#category #icon_scroll {
    display: block;
    font-weight: bold;
}

#category #icon_scroll.hidden {
    display: none
}


#category .jssTablaComparativa {
    margin-bottom: 20px;
}


#compare_table {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #e2e2e2;
    margin-top: 20px;
    margin-bottom: 5px;
}

/*ancho mínimo si valoraciones*/
table#comparative td.rate {min-width: 150px;}


table#comparative th { /*cabecera*/
    background: #656565;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    padding: 6px 20px 4px 16px;
    width: 180px;
    border-bottom: 7px solid #fff; /*creo separacion artificial*/
    /*position: relative;*/
}

table#comparative th.tooltip_table td.icon_info {
    width: 20px;
    height: 20px;
    display: table;
    position: relative;
}


table#comparative th.tooltip_table td.icon_info::before {
    content: "";
    width: 20px;
    height: 20px;
    /*background: url(../img/ico_awesome_info_circle2.svg) no-repeat center;*/
    display: block;
    background-size: 16px;
    position: absolute;
    right: -5px;
    top: -1px;
    cursor: pointer;
}

table#comparative th.tooltip_table td.icon_info::before {
    background: url(../img/ico_tabla_question.svg) no-repeat center;
    filter: invert(100%);
}


table#comparative th.tooltip_table span:first-child {
    position: relative
}

/*tips emergentes*/
table#comparative th.tooltip_table td.icon_info span {
    display: none;
}

table#comparative th.tooltip_table td.icon_info:hover span.text {
    display: block;
    position: absolute;
}

table#comparative th.tooltip_table span.text:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #30302f transparent;
    position: absolute;
    top: -9px;
    right: 0;
}

table#comparative th.tooltip_table table td {
    padding: 0 !important;
    color: #fff !important;
}

table#comparative th.tooltip_table span.text {
    position: absolute;
    background-color: #30302f;
    padding: 10px;
    top: 30px;
    right: -4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.38;
    color: #ffffff;
    z-index: 2;
    width: 205px;
}

table#comparative td {
    text-align: left;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    color: #30302f;
}

table#comparative td:first-child { /*primera columna*/
    white-space: nowrap; /*sin salto de linea*/
    padding-left: 10px;
}

table#comparative td:last-child {
    padding-right: 5px;
}


table#comparative td a:hover {
    text-decoration: underline
}

table#comparative td a {
    font-weight: bold;
    line-height: 1;
    color: #30302f;
}

table#comparative .rate td { /*todos los cuadros de fondo son grises*/
    width: 10px;
    height: 10px;
    display: inline-table;
    background: #e2e2e2;
    margin: 0 1px;
    border-radius: 25%;
}


table#comparative > tbody > tr > td.rate > table td {
    float: left;
    padding-left: 0;
    padding-right: 0;
}

table#comparative .rate td.text {
    padding: 1px 0 0 9px;
    height: 10px;
    width: auto;
    background: transparent !important;
    border-radius: 0;
}

table#comparative > tbody > tr > th { /*alto fila titulos*/
    height: 38px;
}

table#comparative td.rate:last-child table {
    width: 100%;
}

table#comparative th:last-child {
    text-align: right;
    padding-right: 15px !important;
}

table#comparative tr th tr:hover {
    background: none;
}

table#comparative tr:hover {
    background: #f8f8f8;
}

#compare_table table#comparative {
    padding-bottom: 20px;
}

@media (min-width: 1250px) {
    #compare_table {
        padding-bottom: 20px
    }
}

@media (max-width: 1250px) {
    #compare_table.open table#comparative {
        width: 100%;
        overflow: auto;
        display: flex;
    }
    #compare_table.open table {
        min-width: 150px;
    }
    table#comparative {
        display: block;
        overflow-x: auto;
        /* max-width: calc(75vw - 30px);
         margin-left: 25vw;*/
        margin-left: 160px;

    }
    table#comparative > tbody > tr > th {
        border: none;
    }
    table#comparative > tbody > tr > th > table,
    table#comparative > tbody > tr > td > table {
        white-space: nowrap;
    }
    table#comparative > tbody > tr > th > table > tbody > tr {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    table#comparative > tbody > tr > th:first-child,
    table#comparative > tbody > tr > td:first-child {
        position: absolute;
        left: 0;
        /*width: 25vw;*/
    }
    table#comparative > tbody > tr > th:first-child {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 160px; /*misma cifra que margin-left más arriba*/
    }
    table#comparative > tbody > tr > th td.icon_info span.text {
        white-space: normal
    }
    table#comparative > tbody > tr > th:nth-child(2) td.icon_info span.text,
    table#comparative > tbody > tr > th:nth-child(3) td.icon_info span.text,
    table#comparative > tbody > tr > th:nth-child(4) td.icon_info span.text {
        left: 0;
    }
    table#comparative > tbody > tr > th:nth-child(2) td.icon_info span.text:before,
    table#comparative > tbody > tr > th:nth-child(3) td.icon_info span.text:before,
    table#comparative > tbody > tr > th:nth-child(4) td.icon_info span.text:before {
        left: 4px
    }
    /*scrollbar*/
    table#comparative::-webkit-scrollbar {
        height: 12px;
    }
    table#comparative::-webkit-scrollbar-track {
        background: #F2F2F2; /*fondo del scrollbar*/
    }
    table#comparative::-webkit-scrollbar-thumb {
        background-color: #DBDBDB; /*color barra*/
        border-radius: 15px;
    }
    /*texto haz scroll*/
    body#category #icon_scroll {
        display: block !important;
        margin-top: 15px;
    }

    body#category #icon_scroll:before {
        content: '\e9ec';
        font-family: "Material Icons", Arial, sans-serif;
        color: #48AC5E;
        margin-right: 10px
    }
}

@media (max-width: 991px) {
    table#comparative td.rate table {
        width: 100%;
    }
}

.rate-bar {
    height: 10px;
    width: 100%;
    background: #e2e2e2;
    position: relative;
}
.rate-bar .current {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background: #148F68;
    height: 100%;
}
.rate-points {
    display: flex;
    width: 100%;
    margin-right: auto;
    height: 10px;
}
.rate-points .rate-point {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #148F68;
    margin-right: 2px;
    border-radius: 25%;
}
.rate-points.rate-0 .rate-point:nth-child(n+1),
.rate-points.rate-1 .rate-point:nth-child(n+2),
.rate-points.rate-2 .rate-point:nth-child(n+3),
.rate-points.rate-3 .rate-point:nth-child(n+4),
.rate-points.rate-4 .rate-point:nth-child(n+5),
.rate-points.rate-5 .rate-point:nth-child(n+6),
.rate-points.rate-6 .rate-point:nth-child(n+7),
.rate-points.rate-7 .rate-point:nth-child(n+8),
.rate-points.rate-8 .rate-point:nth-child(n+9),
.rate-points.rate-9 .rate-point:nth-child(n+10) {
    background: #e2e2e2;
}

/*expansor tabla*/
#category #compare_table #comparative tbody tr:nth-child(n+5) {
    display: none;
}
.table_expander {
    flex-basis: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: -10px;
    position: relative;
}
.table_expander:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, white, transparent);
    height: 50px;
}
.table_expander > span {
    display: inline-block;
    cursor: pointer;
    color: #e24c1f;
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 1250px) {
    .table_expander {
        margin-top: 2px;
        margin-bottom: 10px;
    }
}


/************************************************/
/**************** PAGINA PRODUCTO ***************/
/************************************************/

/*TABS*/
#product .tabs .nav-tabs .nav-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

#product .tabs {
    padding: unset;
    margin: unset;
}

#product .tabs .nav-tabs .nav-link.active {
    color: #e24c1f;
    border-color: #e24c1f;
}

#product .tabs .nav-tabs .nav-link:hover {
    border-color: #e24c1f;
}


/*IMAGEN*/
#product .product-cover {
    border: 1px solid #f1f1f1;
    margin-bottom: unset;
    border-bottom: none;
}

/*lupa que aparece para hacer zoom*/
.product-cover .layer .zoom-in {
    width: 50px;
    height: 50px;
    background: #e24c1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
}

/*Fade al imagen cuando se hace zoom*/
.product-cover .layer {
    background: hsla(0, 0%, 100%, 0.7);
}


/*MINIATURAS*/
ul.product-images.js-qv-product-images {
    border: 1px solid #f1f1f1;
    padding: 5px;
    border-top: none;
}

.product-images>li.thumb-container>.thumb {margin-bottom: unset}

.product-images .thumb-container img.thumb.js-thumb {
    width: 45px;
    height: 45px;
}

#product-modal .modal-content .modal-body .product-images img:hover {
    /* border: #24b9d7 3px solid;*/
    border: none;
}

.product-images>li.thumb-container>.thumb,
.product-images>li.thumb-container>.thumb.selected,
.product-images>li.thumb-container>.thumb:hover
{
    /* border: 1px solid #f1f1f1;*/
    border: none;
}

.images-container .product-images>li.thumb-container>.thumb {
    margin-right: 5px; 
}

img.thumb.js-thumb.selected {
    opacity: 0.5;
}



/*IMAGEN EN MODAL*/
img.js-modal-product-cover.product-cover-modal {
    width: auto;
    height: auto;
}

/*miniaturas*/
#product-modal .modal-content .modal-body .product-images {
    margin-left: 1rem;
}

#product-modal .modal-content .modal-body .product-images img {
    width: 100px;
    height: 100px;
}

#product-modal .modal-content .modal-body .product-images img:hover {
    border: #f1f1f1 3px solid;
}



img.thumb.js-modal-thumb.selected {
    filter: brightness(0.7);
}

/*TITULO NOMBRE PRODUCTO*/
#product .product-container h1 {
    font-family: Muli;
    font-size: 26px;    
    line-height: 1;    
    text-transform: none;
    /*color:#e24c1f;*/
}


/*RECUADRO CON OPCIONES Y PRECIO*/
#product .product-information {
    background: #f8f8f8;
    padding: 5px 0px 5px 15px;
    margin-top: 15px;
    border: 0.5px solid #DCDCDC;
}

#product .product-price {
    font-size: 28px;    
    line-height: 0.82;
    color:unset;
}

#product .product-prices .product-price .current-price span.alternative_price {
    color:#7a7a7a
}




#product .product-prices {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}


/*Precios alternativos*/
#product .product-prices .product-price .current-price span.alternative_price {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    margin-left: 4px;
}
#product .product-prices .product-price.has-discount .current-price span.alternative_price {
    color: #f39d72;
}
#product .product-prices .current-price span.alternative_price + .discount {
    clear: both;
    display: block;
    margin: 0;
    width: auto;
    text-align: center;
    margin-top: 10px;
}
#product .product-discount .alternative_original_price {
    margin-right: .625rem;
    font-weight: 500;
    text-decoration: line-through;
}
/*FIN Precios alternativos*/

#product .product-actions.js-product-actions {
    margin-bottom: 10px;
}

/*COMBINACIONES*/
.product-actions .control-label {
    font-size: 16px;
    font-weight: 600;
}

.product-information .product-variants>.product-variants-item {
    margin: 5px 0px;
}

.product-variants .radio-label {
    border-radius: 3px;
    border: solid 1px #e2e2e2;
    font-size: 17px;
    color: #30302f;
    width: 135px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-variants .input-radio:hover+span,
.product-variants .input-radio:checked+span
{ 
    border: solid 1px #e24c1f;
}



/*selector cantidad*/
/*fix para que boton deseo baje en pantalla pqueña*/
#product .product-quantity {
    flex-wrap: wrap;
}
#product .product-quantity .qty {
    margin-right: unset
}

/*productos recomendados*/
#product .product-accessories {
    margin-top: 20px;
}


/*BANNERS gastos envío gratis etc en cart*/
.prod-banner-flex{
    grid-gap: 20px;
    display: flex;
    flex-direction: column;
    margin:20px 2px;
    border-radius: 15px;
    background-color:#ffffff;

}
.prod-banner  {display: flex;}

.prod-banner .icon {
    margin-right: 10px;
}

.prod-banner .material-icons
{
    color: #e24c1f;
}

.prod-banner .title p,
.prod-banner .description p {
    line-height: 1;
    text-align: left;
}
.prod-banner .title p {
    font-size: 14px;
    font-weight: 800;      
    color: #30302f;
    text-transform: uppercase;
    margin-bottom: 5px;    
}

.prod-banner .description p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #6b6b6b;
}


/* DESCRIPCION */
/* videos */


#product .adx-video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 560px;
  margin-bottom:20px;
  text-align: left;
}

#product .adx-video-container iframe 
 {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}


/************************************************/
/************** MODULOS NATIVOS *****************/
/************************************************/

/*SUSCRIBIRSE A BOLETIN*/


.sj_boletin_bttn {  

    align-items: center;    
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    max-width:220px;
}

.sj_boletin_bttn a {
    display:flex; 
    align-items:center; 
    width:100%;
    padding: 5px 20px;
}

.sj_boletin_bttn a:hover {
    cursor:pointer;
}

#sj_bloque_boletin_pie .sj_boletin_content {
    display:none; /*oculto inicialmente antes de expansion*/
    padding: 15px;
}

#sj_bloque_boletin_pie {
    max-width:600px;
    margin-right:15px;
    margin-left: auto; 
    display: flex;

}

#sj_bloque_boletin_pie .ssj-legal-rgpd p{
    font-size:90%;
    color:#666666;
}



@keyframes blink-boletin {
    0% { background-color: transparent;}
    20% { background-color: #90DC70; }
    40% { background-color: transparent;}        
    60% { background-color: #90DC70; }
    100% { background-color: transparent;}  

}

.blink-bloque-rojo {
    animation: blink-boletin 2s ease;
    border-radius: 15px;
    border:1px solid #000000;
}



/*PRODUCTOS DESTACADOS EN HOME*/
/*oculto título de sección, enlace a todos los productos*/
#index .featured-products .products-section-title,
#index .featured-products .all-product-link
{
    display: none;
}

#index .featured-products {margin-top: 25px}

#index .featured-products .products {margin-left: 0px}


/*REASURE BANNERS EN HOME*/
@media (max-width: 676px) {
    .reasur_home {
        flex-direction: column;
        grid-gap: 15px}

    .reasur_home_ban {border-right: none!important}
}

.reasur_home, 
.reasur_home_ban, 
.reasur_home_ban .icon-content
{display: flex}


.reasur_home {
    background-color: #f8f8f8;
    padding: 25px 0px;
    margin-top: 15px;
    border: 2px solid #e2e2e2;
    border-radius: 5px;
}


.reasur_home_ban.uno,
.reasur_home_ban.dos
{border-right: 3px solid #e2e2e2}

.reasur_home_ban {padding: 0px 15px}

.reasur_home_ban .icon-ico {    
    background: #e24c1f;
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.reasur_home_ban .icon-ico svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.reasur_home_ban .icon-title  {
    font-size: 14px;
    font-weight: 800;
    color: #30302f;
    margin-bottom: 5px;
}

.reasur_home_ban .icon-description {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: #6b6b6b;
}


/************************************************/
/*CARRITO GENERAL*/
/************************************************/

/*COMBINATIONS IN CATALOG. COMBINACIONES EN LISTADO*/

.variants-product {
    background-color: #f8f8f8;
    margin: 18px -10px 0px -10px;
    padding: 10px;
}

@media (max-width: 390px)  {
    .variants-product {
    margin: 18px -10px 0px -10px;
    padding: 5px;
    }

    #category .addToCartFormWrapper .btn-primary .material-icons {margin-right:0px}


    
}


.addToCartFormWrapper .control-label {bottom:2px}

.addToCartFormWrapper .product-variants-item {
    margin-top: unset;
}

.clearfix.product-variants-item {
    font-weight: normal;
    font-size:0.8rem;
}

.addToCartFormWrapper {
    box-shadow: none;
    padding: 0px;
}


/*titulos atributos*/
.addToCartFormWrapper .control-label {
    display: flex;
}

/*elementos*/
.addToCartFormWrapper .groupUl {
    margin: unset;  
}

.addToCartFormWrapper .groupUl li {
    margin-right: 4px;
}

.addToCartFormWrapper .radio-label {
    padding: 6px;
    background: #fff;
    border: 1px solid #e2e2e2;
}

.addToCartFormWrapper span.radio-label {
    min-width: 40px;
    text-align: center;
}

.addToCartFormWrapper .input-color:checked+span,
.addToCartFormWrapper .input-color:hover+span,
.addToCartFormWrapper .input-radio:checked+span,
.addToCartFormWrapper .input-radio:hover+span{
    border: 1px solid #e24c1f;
}

.addToCartFormWrapper .input-color:checked+span,
.addToCartFormWrapper .input-radio:checked+span{
    background-color: #FCF8F7;    
}


.addToCartFormWrapper .variantsProductWrapper {margin-bottom: 10px}

/*cantidad*/
.addToCartFormWrapper .addToCartButtonNumber {
    border-radius: 5px 0px 0px 5px;
    padding: 6px 8px;
    width: 25%;
}

.addToCartFormWrapper .form-control:focus {
    border-color: #00b3e8;
    outline: none;
}

/*sin puntos de listado*/
.addToCartFormWrapper ul li:before {display: none}

/*POPUP*/
#blockcart-modal.modal.in {
    display: flex!important;
    align-items: center;
}

#blockcart-modal .modal-dialog {
    max-width: 1020px;
}


#blockcart-modal .modal-body {
    padding: 2rem 1.8rem;
}

#blockcart-modal .modal-header {
    background: #30302f; 
}

#blockcart-modal .modal-title {
    font-size: 18px;
    font-weight: bold;   
    color: #ffffff;
}

#blockcart-modal .product-name {color:#30302f}

#blockcart-modal .cart-content p.cart-products-count {
    font-size: 18px;
    font-weight: bold;    
    color: #e24c1f;   
    margin-bottom: 20px;
}

#blockcart-modal .cart-content p {
    justify-content: flex-start;
    padding: 0;
    grid-gap: 3px;
}

#blockcart-modal .cart-content p.product-total {margin-bottom:15px}
#blockcart-modal .cart-content p.product-tax {display: none !important;} /*desglose impuestos*/

#blockcart-modal .modal-header .close .material-icons {
    color: #ffffff;
}

/*PAGINA RESUMEN CARRITO */

#cart li.cart-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
    margin-bottom: 10px;
}

#cart .product-line-grid-left img {
    max-width: 80px;
}

/*detalle impuestos*/
#cart .cart-summary-line {
    margin-bottom: 0.8rem;
}
.card-block.cart-summary-totals .cart-summary-line {
    padding: 0;
}



@media (max-width: 575px) {
    /*quito padding para que el selector incrementar disminuir no se desmaquete*/
    #cart .product-line-actions .qty {
        padding-left: 0px;
        padding-right: 0px;
    }
}


/*Precio con descuento en una línea*/
@media (min-width: 576px) {
    #cart .product-price {display:inline-flex}
    #cart .product-discount {margin-right: 10px;}
}

/*flag descuento*/
#cart .has-discount .discount {
    padding:2px;
    margin-left:unset;
}

#cart .product-line-grid-body>.product-line-info>a.label {
    font-size: unset;
    color: #30302f;
}

/*combinaciones*/
#cart .product-line-grid-body>.product-line-info>.value,
#cart .product-line-grid-body>.product-line-info>.label {
    font-size: 13px;
    font-weight: 600;
    color: #6b6b6b;
}

/*borrar artículo*/
#cart .product-line-grid-right .cart-line-product-actions .remove-from-cart,
#cart .product-line-grid-right .product-price .remove-from-cart {
    color: #999;
}

#cart .product-line-grid-right .cart-line-product-actions .remove-from-cart:hover,
#cart .product-line-grid-right .product-price .remove-from-cart:hover {
    color: #e24c1f;
}

/*************************/
/* CARRITO RECUADRO DERECHO */
/*************************/

@media (min-width: 768px) {
    #cart .cart-summary {border: solid 1px #e2e2e2;}
}

#cart .cart-summary .cart-summary-line.cart-total .value {color:#e24c1f}


/*Ocultar sección cupones descuento*/
.block-promo .promo-code,
p.promo-code-button.display-promo a
{
    display:none;
}

/*¿dispones de un codigo?*/
p.promo-code-button.display-promo a {
    color: #7F7F7F;
    text-decoration: underline;
}



.block-promo .promo-input+button {
    border-radius: 0px 8px 8px 0px;
    margin-top: -3px;}

.block-promo .promo-code-button.cancel-promo {
    margin-top: 10px;
    text-decoration: underline;
    color:#30302f;
}    

.block-promo .promo-name .cart-summary-line span {
    color: #30302f;
}


#cart .continuar-comprando a.label.btn-secondary:hover {color:#30302f}

/*confirmar pedido*/
#cart .checkout.cart-detailed-actions.js-cart-detailed-actions.card-block a.btn.btn-primary:hover {opacity:0.8}



/* FAQ */
#category .lgfaqs, 
#product .lgfaqs {
    margin-bottom: 20px;
    text-align: left;
}

#category .lgfaqs {
    border: 1px solid #e2e2e2;
    padding:25px 25px 20px 25px;
    border-radius: 15px;
    margin-bottom:20px;
}


.lgfaqs li.lgfaqs-list-question {
    padding:10px 0px;
    border-bottom:1px solid #e2e2e2;
}

.lgfaqs li a {
    color:#666666;
}

#category .lgfaqs ul li::before {
    margin-right: 7px;
    content: " ";
    display: inline-block;
    background-color: #e24c1f;
    width: 5px;
    height: 5px;
    vertical-align: middle;
}


/*FAQ MODAL*/
#faq_modal .modal-dialog {
    padding: 30px 35px;
    background: #FFFFFF;
    max-width: 750px;
    margin: 0 auto;
    top: 40px;
}

@media (max-width: 750px) {
    #faq_modal .modal-dialog {
    padding: 30px 15px;
    margin: 0 20px;
    }
    
}


#faq_modal #content {
    max-width: 100%;
    padding: 0px
}

#faq_modal .page-footer {margin-bottom: unset}



/*Botones*/
#faq_modal .btn {font-size: 14px}

#faq_modal .faq-js-modal-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    grid-gap: 20px;
}

#faq_modal .btn-copy-url {
    border: solid 1px #30302f;
    color: #30302f;
    background: none;
}

#faq_modal .btn-copy-url:hover {
    border-color: #e24c1f;
    color: #e24c1f;
}

/*mensaje copiado al portapapeles*/
#faq_modal #faq_copy_url_popup {
    background-color: #49ab5c;
    padding: 10px 23px 20px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    bottom: 45px;
    text-align: center;
}

#faq_modal #faq_copy_url_popup svg {
    fill: #ffffff;
    margin-right: 4px;
    position: relative;
    top: 5px;
    height: 25px;
    width: 25px;
}

/* MI CUENTA > */
#identity .page-content,
#addresses .page-content,
#address .page-content
{
    border-radius: 10px;
    background-color: #f8f8f8;
    padding: 25px;
    margin: 0px 15px 15px 15px;
}


#my-account #wrapper,
#identity #wrapper,
#addresses #wrapper
{
    margin: 0px 15px;
}


/*MI CUENTA > MIS DIRECCIONES*/
.page-addresses .address {
    border: 1px solid #999;   
    border-radius: 10px;
}

.page-addresses .address .address-footer {
    padding: 0.5rem 1rem;
    border-top: 1px solid #999;
}

.page-addresses .address .address-body address {
    min-height: 110px;
    margin-bottom: unset;
}

.page-addresses .addresses-footer a 
{
    color: #666;
    padding: 7px 20px;
    border-radius: 10px;
    border: solid 1px #666;
    text-transform: uppercase;
    font-weight: bold;
}

/*editando dirección*/
/*@media (min-width: 768px) {
    .form-group.row.form-group-require-invoice {margin-left: 25%;}
}*/



/*************************/
/******* CHECKOUT *******/
/*************************/

/*COMUNES*/
body#checkout section.checkout-step .delivery-options>.row {
    /*background-color: #ffffff;*/
    /*border-right: solid 1px #e2e2e2;*/
    border-right: none;

}

body#checkout section.checkout-step .delivery-option.selected {
    /*Opción seleccionada*/
    border-color: #e24c1f;
}

body#checkout section.checkout-step .step-title {
    border: none!important;
    padding: 7px 15px!important;
    font-size: 16px!important;
    font-weight: 800!important;
    line-height: 1;
    color: #e24c1f;
}

body#checkout section.checkout-step .step-title .done {
    color: #e24c1f;
}

body#checkout section.checkout-step .step-number {
    background-color: #e24c1f!important;
    color: #fff;
    border: none;
}

body#checkout section.checkout-step.-complete {
    background-color: #FEF6F3;
    border-color:#FCE4DB!important;
}

body#checkout section.checkout-step.-reachable.-current {
    background-color: #f8f8f8;
    border-color:#f1f1f1!important;
}

/*Información complementaria. Por ej descripcion formas de pago extendida*/
body#checkout .additional-information {
    margin-top: 0rem;
    margin-left: 25px;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 0px 0px 15px 15px;
}
/*FIN COMUNES*/

/*RECUADRO DERECHO*/
body#checkout #js-checkout-summary {border:1px solid #e2e2e2}


body#checkout #cart-summary-product-list .media-body .product-price {
    font-weight: bold;
    color: #30302f;
}
/*FIN RECUADRO DERECHO*/



/*TABS Crear cuenta / iniciar sesión*/
#checkout #checkout-personal-information-step ul.nav.nav-inline.my-2 {
    margin-top:5px!important;
    margin-bottom:0px!important;
}
#checkout #checkout-personal-information-step .nav-item span.nav-separator {display: none;} /*barra de separación
*/
#checkout #checkout-personal-information-step .nav-inline .nav-item+.nav-item {margin-left: 2px;}

#checkout #checkout-personal-information-step a.nav-link {
    color: #232323;
    font-size:18px;
    border:none;
    border-radius: 5px 5px 0px 0px;
    padding:10px 20px;
    border: solid 1px #e2e2e2;
    border-bottom-color: #e2e2e2;
    background-color:#D5D5D5;

}

#checkout #checkout-personal-information-step a.nav-link.active
{
    border: solid 1px #e2e2e2;
    border-bottom-color: #ffffff;
    background-color:#ffffff;        
}

@media (max-width: 390px) {
    #checkout #checkout-personal-information-step a.nav-link {font-size:15px;}
}

@media (max-width: 380px) {
    #checkout #checkout-personal-information-step a.nav-link {font-size:12px;}
    #checkout #checkout-personal-information-step .nav-inline .nav-item+.nav-item {margin-left: 0px;}
}

@media (max-width: 300px) {
    #checkout #checkout-personal-information-step a.nav-link {font-size:11px;}
    #checkout #checkout-personal-information-step .nav-inline .nav-item {max-width: 45%;}
}

/*CONTENIDO DE LA PESTAÑA*/
body#checkout section.checkout-step #customer-form,
#checkout #checkout-personal-information-step div#checkout-login-form

{
    margin-top:0px;
    padding-top:1.563rem;
    background-color:#ffffff;
    margin:-1px 0px 15px 0px;
    padding:25px;
    border:1px solid #e2e2e2;
    border-radius: 0px 5px 5px 5px;    
}

/*comentarios en campos , "no admite números"
#checkout input#field-firstname + span.form-control-comment,
#checkout input#field-lastname + span.form-control-comment
 {display: none;}*/



body#checkout #header .header-nav {padding: unset}

body#checkout section.checkout-step, 
body#checkout section.checkout-step:last-child {
    border-radius: 15px;
    margin-bottom: 10px;
    border: solid 1px #f2f2f2 !important;
    background-color: #ffffff;
    box-shadow: none;
}


/*CHECKOUT DIRECCIONES*/
body#checkout section.checkout-step .address-item>header {     
    min-height: 157px; /*altura bloques*/
}

body#checkout section.checkout-step .radio-block {
    width: 100%; /*todo cliclable*/
}

body#checkout section.checkout-step .address-item {
    border: 1px solid  #f1f1f1;
    background-color: #ffffff;
    border-radius: 10px;
}

body#checkout section.checkout-step .address-item.selected {
    border: #e24c1f 1px solid;
}

/*radio button*/
.custom-radio input[type="radio"]:checked+span {
    background-color:#e24c1f ;
}


/*Titulo dirección*/
body#checkout section.checkout-step .address-alias {
    font-size: 14px;
    font-weight: bold;   
    color: #e24c1f;
}

/*Añadir dirección*/
body#checkout section.checkout-step .add-address {
    margin-bottom: 30px;
}
body#checkout section.checkout-step .add-address a {
    color: #666;
    padding: 7px 20px;
    border-radius: 10px;
    border: solid 1px #666;
    text-transform: uppercase;
    font-weight: bold;
}




body#checkout h2.h4 {
    color: #666666;
}

/*la direccion de facturacion es la misma*/
body#checkout .cambiar-direccion-facturacion {margin-top:30px}
body#checkout .cambiar-direccion-facturacion .custom-checkbox {display:inline-block;}


/*CONTADOR LIMITE CARACTERES*/
.lg-label-danger {color:red;font-size: 13px;position: absolute; right: 0 !important;top: 10px;padding:0 10px;}
.lg-label-success {color:#666;font-size: 13px;position: absolute; right: 0 !important;top: 10px;padding:0 10px;}


/*CHECKOUT TRANSPORTISTA*/
body#checkout section.checkout-step .delivery-options .delivery-option {
    border-radius: 20px;
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    min-height: 65px;
    margin: 0 0 10px;
}

body#checkout section.checkout-step .delivery-options .delivery-option label {
    cursor: pointer;
}



body#checkout section.checkout-step .delivery-options .delivery-option img {
    width: 90px;
}

body#checkout section.checkout-step .carriere-name-container {padding:0px}

body#checkout section.checkout-step .carrier-delay {
    /*descripción*/
    color: #6b6b6b;
}

body#checkout section.checkout-step span.carrier-price {
    /*precio*/
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 15px 0 0;
    font-weight: bold;
    line-height: 1;
    text-align: right;
    color: #e24c1f;
}

@media (max-width: 575px){
    body#checkout section.checkout-step span.carrier-price {padding: 15px 15px 0 0;}
}

/*comentarios transportista*/
body#checkout #gift_message, body#checkout #delivery {margin-top:15px}

body#checkout #delivery textarea  {
    max-width: 100%;
    height: 85px;
    border-radius: 23px;
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    padding: 15px;
    max-width: calc(100% - 55px);
}

/*CHECKOUT PAGO*/

body#checkout section#checkout-payment-step .content {
    background-color:#ffffff;
    border-radius: 15px;
    margin:5px 15px 10px 10px;
    padding-bottom: 5px;
}


body#checkout section.checkout-step .payment-options label {
    cursor: pointer;
}

body#checkout section.checkout-step .payment-options .payment-option {
    margin-bottom: 0.8rem;
    margin-top: 0.6rem;
}

/*imagen adicional derecha forma de pago*/
body#checkout section.checkout-step .payment-options img {
    margin-left: 5px;
    max-height: 25px;
}

/*FIN CHECKOUT PAGO*/




/*MENSAJE ACEPTAR TERMINOS*/
body#checkout .condition-label label {
    cursor:pointer;
    line-height: 23px;
}

#mensaje-terminos{
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

#mensaje-terminos .mensaje-terminos-inner{
    background: #ffffff;    
    max-width: 520px;
    min-width: 280px;
    text-align: center;
    padding: 25px;
}

#mensaje-terminos .mensaje-terminos-inner p{
    margin-bottom: 25px;
}

#mensaje-terminos button{
    min-width: 180px;
}

#aux-click{
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left:0;
    display: none;
    cursor: not-allowed;  
}


/*necesario para que el botón auxiliar que tapa cuando no está aceptada forma de pago funcione*/
div#payment-confirmation {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 0 20px;
}

#payment-confirmation > .ps-shown-by-js {
    position: relative;
}
/*fin necesario*/

/*se activa la capa botón especial si el pago está desactivado*/
button.confirmar-pago.disabled + #aux-click 
{ 
    display: block;
}

/** CONFIRMACION DE PEDIDO **/

#order-confirmation #order-items {max-width: 820px;}

#order-confirmation #order-items .order-line {
    margin-top: 0.5rem;
}

#order-confirmation #order-items .image img {
    max-width: 80px;
    max-height: 80px;
    margin-bottom:3px;
    border: 1px solid #f1f1f1;
    padding:3px;
}

/*detalles (referencia, forma de pago, transporte)*/
#order-details ul li {margin-bottom:1.5rem}



/************************************************/
/* MODULOS DE TERCEROS */
/************************************************/

/* ---- GLS ----- */

/*boton*/
#checkout input.button.btn.btn-default.jssgls-btn {
    background-color: #1D1A58;
    color: #ffffff;
    border-radius: 5px;
    margin-left: 15px;
}

/*info parcel seleccionado*/
#checkout #parcelinfo {
    margin-left:15px;
    background-color:#EBFBE3;
    padding:15px;
    border: 1px solid #ABEE8A;
}



/*----ETS SOCIAL LOGIN---*/
.ets_solo_or {margin: 10px 0 15px;}
.ets_solo_or span {font-size: 12px;}

/*oculto de columna derecha - bug-*/
#checkout .cart-grid-right .ets_solo_social_wrapper.lgp {
    display: none;
}


#checkout .ets_solo_wrapper_content.cus {
    border: 1px solid #e2e2e2;
    padding-top:15px;
    border-radius: 15px;
    margin: 20px 0px;
}



/*----FIN ETS SOCIAL LOGIN---*/


/*----SEQURA---*/
#checkout .js-additional-information span.sequra-more-info {
    text-decoration: underline;
    color: #00b3e8;
    cursor: pointer;
}
/*----FIN SEQURA---*/


/*ETS REVIEWS*/

/*HOME*/
@media (max-width: 767px) {
    .ets_rv_home_reviews .ets_rv_latest_reviews {
        padding: 0px;
    }
}

/*LISTADOS PRODUCTOS*/
/*estrellitas*/
.product-list-reviews.list-in-productlist {display:none}

/*MI CUENTA */
/*listado reseñas*/
#comment .ets_rv_wrap_table th {
    background-color:#3b3b3b;
    color:#ffffff;
    vertical-align:middle;
}

#comment .page-content.card-block {
    max-width: 1000px;
    margin:0 auto;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    margin-bottom:20px;
}


/*PRODUCTO*/
/*bloque resumen valoraciones*/
.ets-rv-product-comments-additional-info {margin:0px}
.ets_rv_average_rating {padding:5px}
.ets_rv_statistic_rating {padding: 3px 20px 3px 35px;}

/*listado reseñas*/
#product .ets_rv_reviews {margin-top:0px}

#product .ets-rv-comment-author-avatar,
#product .product-comment-content_images_videos {display:none}

/*respuestas*/
.ets-rv-product-comment-list-item {
    padding: 20px 0px 0px 5px;
    max-width: 750px;
    border-bottom: 1px solid #f1f1f1;
}

.ets-rv-product-comment-list-item .ets_rv_comment_list {padding-left:25px;}
.ets-rv-product-comment-list-item .comment-list-item-info {padding:10px}

@media (max-width: 479px) {
    .ets-rv-product-comment-list-item > .ets-rv-comment-infos {
	padding-left: 0;
    }
}

/*ver mas*/
.ets_rv_product_comment_load_more.hover3:not(:hover) {
    color: #0089B2!important;
}


/* ----- FIN ETS_REVIEWS */



/*MENSAJE AVISO SUPERIOR VACACIONES*/
div#js-avisotop {
    background-color: #e24c1f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

div#js-avisotop-after, div#js-avisotop {
    height: 50px;
}

div#js-avisotop p {
    color: #fff;
    text-align: center;
    margin: 0px;
    font-size: 16px;
}

div#js-avisotop a {
    color: #fff;
}

div#js-avisotop a:hover {
    color: yellow;
}

@media (max-width: 628px) {
    div#js-avisotop p, div#js-avisotop .material-icons {
        font-size: 15px;
    }
}


@media (max-width: 420px) {
    div#js-avisotop-after, div#js-avisotop {height: 75px;}
    div#js-avisotop p, div#js-avisotop .material-icons {font-size: 14px; }
}

/*PS_MAILALERT**/
#product .product-additional-info.js-product-additional-info .tabs {margin-left:-15px}

#product .js-mailalert.text-center {
    padding:15px;
    margin-top:15px;   
    background-color:#f1f1f1;
}

#product button.btn.btn-primary.js-mailalert-add.mt-1 {
    background-color: #e24c1f;
    font-size:80%;
    margin-top:5px!important;
}



/*CONTACT FORM 7 (FORMULARIOS)*/
.aceptacondiciones label,
.aceptacondiciones input {cursor:pointer}

#product span#button_wpcf7-f2-o1 {margin-bottom: 20px;}

/*boton para emergente*/
.ctf_click_open_contactform7 {
    padding: 5px 15px;
}

/*mensaje en popup*/
.ctf-popup-content {max-width:650px}

.ctf-popup-content .jssform_comentario {color:#8F8F8F}

.wpcf7-submit,
.wpcf7-submit[disabled]
{
    background-color: #e24c1f;
    border-radius: 8px;
    border: none;
    color: #fff;
    margin-top:-10px;
}

.wpcf7-submit[disabled] {opacity: 0.3;}
/*Fin mensaje en popup*/


/*MODULO NECESITO FACTURA*/
.form-group-require-invoice b {text-decoration: underline;}

.form-group-require-invoice .custom-checkbox input[type=checkbox] + span {
    position: relative;
    top: -2px;  
}



/**********************************
             CONTENIDO
**********************************/

.page-content.page-cms {padding:0px 10px}

/*TABLA GASTOS DE ENVÍO*/
div#tablaenvio table {
    width: 100%;
}

div#tablaenvio table td, div#tablaenvio table th {
    padding: 10px;
}


/*TABLA TARIFAS*/
table#tabla_tarifas {margin-bottom:25px}

table#tabla_tarifas th {
    padding: 10px 20px;
    text-align:center;
    color: #ffffff; 
    background-color: #323223;
}

table#tabla_tarifas td {
    padding: 5px 20px;
    border:1px solid #e2e2e2 ;
}


/*SECCION QUIERO*/

#cms.cms-id-60 .page-cms ul {margin-bottom: 25px; }
#cms.cms-id-60 .page-cms ul li {margin-bottom: 10px; }

#cms.cms-id-60 .page-cms H2 {
    font-size:1.2rem;  
}

#cms.cms-id-60 .page-cms a {color:#333}
#cms.cms-id-60 .page-cms a:hover {color:#e24c1f}


/**********************************
        LUIS CAMBRA EXTRA STYLES
**********************************/

/**********************************
        GENERAL STYLES
**********************************/

/**********************************
        END GENERAL STYLES
**********************************/

/**********************************
        HEADER STYLES
**********************************/
/**********************************
        END HEADER STYLES
**********************************/

/**********************************
        FOOTER STYLES
**********************************/

/**********************************
        END FOOTER STYLES
**********************************/

/**********************************
        HOME PAGE STYLES
**********************************/
/**********************************
        END HOME PAGE STYLES
**********************************/

/**********************************
        CATEGORY PAGE STYLES
**********************************/

/**********************************
        END CATEGORY PAGE STYLES
**********************************/

/**********************************
        PRODUCT LIST STYLES
**********************************/

/**********************************
        END PRODUCT LIST STYLES
**********************************/

/**********************************
        PRODUCT PAGE STYLES
**********************************/

/**********************************
        END PRODUCT PAGE STYLES
**********************************/

/**********************************
        CART PAGE STYLES
**********************************/

/**********************************
        END CART PAGE STYLES
**********************************/

/**********************************
        CHECKOUT PAGE STYLES
**********************************/

/**********************************
        END CHECKOUT PAGE STYLES
**********************************/

/**********************************
    END LUIS CAMBRA EXTRA STYLES
**********************************/