/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 16px/1.4 'poppins';
	color:#000;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#000;
	text-decoration:none;
}
a:hover {
	color:#000;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

.btn-amarillo{
	background: #ffd942;
	border:2px solid #ffd942;
	color: #000;
	padding: 10px 10px;
	display: inline-block;
}

.btn-amarillo:hover{
	background: #fff;
	border:2px solid #ffd942;
	color: #000;
	padding: 10px 10px;
	text-decoration: none;
}

.btn-rosa{
	background: #ff006f;
	border:2px solid #ff006f;
	color: #fff;
	padding: 10px 10px;
	display: inline-block;
}

.btn-rosa:hover{
	background: #fff;
	border:2px solid #ff006f;
	color: #000;
	padding: 10px 10px;
	text-decoration: none;
}

.btn-verde{
	background: #00f2c0;
	border:2px solid #00f2c0;
	color: #000;
	padding: 10px 10px;
	display: inline-block;
}

.btn-verde:hover{
	background: #fff;
	border:2px solid #00f2c0;
	color: #000;
	padding: 10px 10px;
	text-decoration: none !important;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
transition: all .25s ease;
}
/* logo */
.logo {
    text-align: center;
    background: #fff;
    position: relative;
    top: 30px;
    z-index: 5;
    padding-bottom: 20px;
}
.logo:after {
    content: "";
    background: url(img/sombra.png);
    display: block;
    position: absolute;
    bottom: -1px;
    right: -27px;
    z-index: 9;
    width: 27px;
    height: 31px;
}
.logo-img {
max-width: 245px !important;
width: 100%;
}
/* nav */
.nav {
    position: relative;
    top: 45px;
    left: -15px;
    z-index: 11;
}
.nav:before {
    content: "";
    background: #ffffff;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 38px;
    z-index: 0;
    left: -7px;
    top: -6px;
}
.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav > ul > li span {
    position: relative;
    top: -5px;
}
.activa-menu{
	position: relative;
}
.activa-menu:hover > .sub-menu{
	display: block;
}
.activa-menu span.menu-image-hover-wrapper img {
    margin: 0;
    background: #fff;
    border-radius: 32px;
}
.nav ul.sub-menu {
    display: none;
    position: absolute;
    z-index: -1;
    background: #fff;
    padding: 30px 50px 30px 30px;
    border: 2px solid #000;
    border-radius: 3px;
	left: 18px;
    top: 25px;
}
.nav ul.sub-menu li {
    padding: 10px 0;
}
ul.sub-menu > li > a > img {
    position: relative;
    top: -7px;
}
.fixed-header *{
	transition: all .25s ease;
}
.header.fixed-header {
    position: fixed;
    background: #00f2c0;
    width: 100%;
    z-index: 9;
    left: 0;
    transition: all .25s ease;
    height: 50px;
}
.fixed-header .logo {
    text-align: center;
    background: #00f2c0;
    position: relative;
    top: 6px;
    z-index: 5;
    padding-bottom: 8px;
    padding-top: 12px;
}
.fixed-header svg path {
    fill: #fff;
    transition: all .25s ease;
}
.fixed-header .nav {
    position: relative;
    top: 6px;
    left: -48px;
    z-index: 11;
}

.fixed-header .nav:before {
    background: #00f2c0;
}

.fixed-header .nav ul li:first-child > a > span {
    position: relative;
    top: 0;
}

.fila-header-movil {
    display: none;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
    background: #00f2c0;
    min-height: 60px;
    position: relative;
    padding-top: 20px;
    margin-top: 65px;
}

.logo-diacash-footer {
    background: #fff;
    border: 2px dashed #00f2c0;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 88px;
    padding-top: 12px;
    text-align: right;
    font-size: 12px;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

/*MENU INTERNO*/
ul#menu-menu-interno {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
ul#menu-menu-interno li a {
    font-size: 14px;
    font-weight: 600;
}
ul#menu-menu-interno li:last-child a:after {
    content: "";
    padding-left: 10px;
}
ul#menu-menu-interno li a:after {
    content: "|";
    padding-left: 10px;
    padding-right: 10px;
}
ul#menu-menu-interno {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
}

#menu-menu-principal-secundario {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: nowrap;
    margin-bottom: 0;
    justify-content: flex-end;
}
#menu-menu-principal-secundario li {
    margin: 0 5px;
}
.fixed-header .col-header-3 {
    padding: 15px 0 0 0;
}

.col-header-3 {
    padding-top: 42px;
}

.fila-header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.col-header-2 {
    max-width: 380px;
    width: 100%;
}

.col-header-1, .col-header-3 {
    max-width: 400px;
    width: 100%;
}



/*INICIO*/

.titulo-icono h3 img {
    position: relative;
    top: -10px;
}


.titulo-icono h3 {
    font-weight: 600;
    margin: 0;
}

.bloque-pack:after {
    content: "";
    background: #fff;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    left: 0;
    transform: rotate(45deg);
    top: calc(50% - 40px);
    z-index: -1;
}

/*BLOQUE NEWSLETTER*/
.bloque-noticias-newsletter:after {
    content: "";
    background: #fff;
    border-top: 2px solid #ff006f;
    border-right: 2px solid #ff006f;
    width: 40px;
    height: 40px;
    display: block;
    transform: rotate(45deg);
    position: absolute;
    right: -20px;
    z-index: 1;
    top: calc(50% - 40px);
}
.bloque-newsletter input[type="submit"] {
    background: #ff006f;
    border: 1px solid #ff006f;
    width: 100px;
    height: 40px;
}
.bloque-newsletter input[type="email"] {
    height: 40px;
    padding-left: 10px;
    color: #000;
}
/*
ul.rpwe-ul {
    padding: 0;
}
li.rpwe-li {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    padding-left: 15px;
    margin-bottom: 15px;
}
.rpwe-time {
    color: #ff006f;
    text-align: center;
    font-size: 18px;
    border-right: 1px solid #ff006f;
    padding-right: 8px;
    max-width: 50px !important;
    width: 100%;
}
h3.rpwe-title {
    font-size: 16px !important;
    color: #000 !important;
    margin-left: 15px;
    font-weight: 500 !important;
}
.rpwe-time span {
    display: block;
}
*/
/****/


.cont-noticia {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    align-items: center;
}
.fecha-noticia {
    border-right: 1px solid #ff006f;
    width: 135px;
    margin-right: 20px;
    height: 70px;
    padding-top: 13px;
}
.fecha-noticia span {
    display: block;
    text-align: center;
    color: #ff006f;
    font-size: 18px;
}
.titulo-post a h3 {
    font-size: 16px !important;
    margin: 0px !important;
}


.contacto-flotante a {
    color: #fff;
    background: #ff006f;
    padding: 15px 20px;
    position: absolute;
    width: 190px;
    right: 0;
    top: 0;
}
.bloque-newsletter {
    color: #fff;
}
.bloque-newsletter input[type="text"] {
    color: #000;
    padding-left: 10px;
}
.texto-icono-dos-lineas img {
    position: relative;
    top: -10px;
}


.texto-icono-dos-lineas h3 strong {
    font-size: 25px;
}

.texto-icono-dos-lineas h3 {
    font-size: 18px;
}


.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background: #00f2c0;
    background-color: #00f2c0 !important;
    border: 2px solid #00f2c0;
    color: #000 !important;
    font-weight: 400;
    border-radius: 0;
    float: left;
    padding: 11px 12px;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
	background: #fff;
	border:2px solid #00f2c0;

}
.woocommerce ul.products li.product .price {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    margin: 0;
}
.woocommerce ul.products li.product .price {
    color: #000;
    font-weight: 600;
    font-size: 22px;
    margin: 12px 0 0 20px;
    float: right;
    text-align: right;
    position: absolute;
    top: 200px;
    right: 0;
}
h2.woocommerce-loop-product__title {
    width: 55%;
}
.attachment-shop_catalog {
    /*border: 2px solid #00f2c0;*/
}

/*TIENDA*/
.desde{
    font-size: 20px;
}

header.woocommerce-products-header h1 {
    margin-top: 0;
    padding-top: 74px;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
  
    text-align: center;
    min-height: 140px;
}

header.tienda-header {
    background: #00f3c2;
background: -moz-linear-gradient(left, #00f3c2 0%, #00c4a2 100%);
background: -webkit-linear-gradient(left, #00f3c2 0%,#00c4a2 100%);
background: linear-gradient(to right, #00f3c2 0%,#00c4a2 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f3c2', endColorstr='#00c4a2',GradientType=1 );
}
.taxonomy-header {
  background-size: cover !important;
    background-position: center !important;
    background-color: #00f3c2 !important;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 30.8%;
}

.menu-tienda {
    border-bottom: 0 !important;
}

.bloque-noticias-newsletter-blocks{
    border:2px solid #ff006f;
    padding-top: 35px;
}

.bloque-noticias-newsletter-blocks:after {
    content: "";
    background: #fff;
    border-top: 2px solid #ff006f;
    border-right: 2px solid #ff006f;
    width: 40px;
    height: 40px;
    display: block;
    transform: rotate(45deg);
    position: absolute;
    right: -20px;
    z-index: 1;
    top: calc(50% - 40px);
}

.bk-newsletter-blocks{
    background: url(http://www.imprimedia.es/wp-content/uploads/2017/08/bk-newsletter.jpg)no-repeat;
    background-size: cover !important;
    height: 470px;
    margin-top: 15px;
}

/*PAGINA DE PRODUCTO*/

.img-producto-movil{
    display: none;
    transition: all .25s ease;
}

.img-producto {
    min-height: 590px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    transition: all .25s ease;
}

.summary.entry-summary {
    background: #fff;
    max-width: 485px;
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 100% !important;
    padding: 40px 20px 0px 20px;
    transition: all .25s ease;
}

h1.product_title.entry-title {
    font-size: 25px;
    color: #00f2c0;
}

.opcion span {
    display: inline-block;
    width: 100px;
    margin: 0 4px;
}
.opcion {
    float: left;
}
.woocommerce div.product form.cart .variations select {
    min-width: 110px;
    margin-right: 0;
}
.variations .opcion label {
    max-width: 85px;
    text-align: left;
    color: #000;
    font-size: 15px;
    display: block;
    font-weight: 600 !important;
}
.woocommerce div.product form.cart .reset_variations {
    position: absolute;
    right: 25px;
}
.summary.entry-summary:after {
    content: "";
    background: url(img/solapa-producto.png);
    width: 42px;
    height: 100px;
    display: block;
    position: absolute;
    left: -42px;
    top: calc(50% - 100px);
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #000;
    font-weight: 600;
}
button.single_add_to_cart_button.button {
    background: #00f2c0 !important;
    opacity: 1!important;
    color: #000 !important;
}

.woocommerce-message {
    position: absolute;
    z-index: 9;
    top: 69px;
    max-width: 380px;
    right: 24px;
    background: #fff;
    border-top-color: #00f2c0;
    box-shadow: 4px 4px 0 #00000042;
}
.woocommerce-message:before {
    content: '\e015';
    color: #1e120d !important;
}
.btn-choose, .grid-pad .wpc-button, .kad-btn-primary, .wpc-customize-product, .wpc-upload-product-design {
    background: #00f2c0;
    color: #000;
    border: 2px solid #00f2c0;
}

.btn-choose:hover, .grid-pad .wpc-button:hover, .kad-btn-primary:hover, .wpc-customize-product:hover, .wpc-upload-product-design:hover{
	background: #fff;

}

.woocommerce div.product form.cart .variations {
    margin-bottom: 1em;
    border: 0;
    width: 100%;
    min-height: 120px;
}
/*PESTAÑAS SINGLE*/
h3#sin-pestanas {
    margin-top: 50px;
    margin-bottom: 25px;
}
.tab-content {
    border: 2px solid #00f2c0 !important;
    padding: 30px 35px !important;
}
.tab-title.ui-tabs-active {
    background: #00f2c0 !important;
    border-radius: 5px 5px 0 0;
}
#pestanas-producto {
    margin: 50px 0 80px 0;
}

section#pestanas-producto h3 img {
    position: relative;
    top: 6px;
}

section#pestanas-producto h3 {
    margin-bottom: 30px;
}

.ui-tabs .ui-tabs-nav {
    padding: 0;
}
.panel {
    border: 1px solid #ccc;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    padding: 40px 30px !important;
    margin-bottom: 75px !important;
}
ul.tabs.wc-tabs {
    margin-bottom: 0 !important;
    padding-left: 0px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after{
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: #fff;
    padding: 14px 25px 10px 55px;
    margin: 0 5px 0 0
}
div#tab-description h2 {
    display: none;
}
ul.tabs.wc-tabs li:first-child a:before {
    content: "";
    background: url(img/lista.png)no-repeat;
    width: 27px;
    height: 33px;
    position: absolute;
    top: 15px;
    display: block;
    left: 18px;
}

ul.tabs.wc-tabs li:nth-child(2) a:before {
    content: "";
    background: url(img/enviar.png)no-repeat;
    width: 35px;
    height: 33px;
    position: absolute;
    top: 15px;
    display: block;
    left: 18px;
}

ul.tabs.wc-tabs li:nth-child(3) a:before {
    content: "";
    background: url(img/bag-tab.png)no-repeat;
    width: 35px;
    height: 33px;
    position: absolute;
    top: 15px;
    display: block;
    left: 18px;
}
#woorelatedproducts li.product {
    width: 100%;
    padding: 0 10px;
}
.woo-related-products-container {
    position: relative;
    margin-bottom: 60px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
}
.customNavigation {
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

h2.woorelated-title {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
    margin-top: 60px;
}
h2.woorelated-title:before {
    content: "";
    background: url(img/creatividad.png);
    display: block;
    width: 47px;
    height: 53px;
    position: absolute;
    left: 0;
    top: -10px;
}

a.wprr.btn.prev {
    text-indent: -3px;
    overflow: hidden;
    width: 26px;
}
a.wprr.btn.prev:before {
    content: "<";
    font-size: 33px;
}

a.wprr.btn.next {
    width: 28px;
    overflow: hidden;
}

a.wprr.btn.next:before {
    content: ">";
    font-size: 33px;
}

.customNavigation {
    display: none;
}


.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: right;
}

.single_variation_wrap {
    float: left;
    margin-top: 25px;
}
.cart .woocommerce_msrp {
    clear: none !important;
    width: auto !important;
    margin-left: 16px !important;
    padding-top: 0 !important;
}
input.input-text.qty.text {
    height: 40px;
}
.cart .woocommerce_msrp a {
    background: #ffd942 !important;
    border-color: #ffd942;
}
.cart .woocommerce_msrp a:hover {
    border-color: #ffd942 !important;
    background: #fff !important;
}

/*MODAL*/

.emodal-overlay{
background: -moz-linear-gradient(-45deg, rgba(0,243,194,0.8) 0%, rgba(0,243,194,0.8) 1%, rgba(0,196,162,0.8) 100%);
background: -webkit-linear-gradient(-45deg, rgba(0,243,194,0.8) 0%,rgba(0,243,194,0.8) 1%,rgba(0,196,162,0.8) 100%);
background: linear-gradient(135deg, rgba(0,243,194,0.8) 0%,rgba(0,243,194,0.8) 1%,rgba(0,196,162,0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc00f3c2', endColorstr='#cc00c4a2',GradientType=1 );
background-color: transparent !important;
}

.emodal {
    max-width: 580px;
    background: #fff !important;
    width: 100%;
    padding: 30px 100px !important;
}

.emodal h2{
    font-family: Poppins !important;
    color: #00f2c0 !important;
    margin-bottom: 20px;
}
.emodal label {
    width: 100%;
    font-family: Poppins !important;
    font-size: 14px;
}
.emodal input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #000;
    font-family: Poppins;
    color: #000 !important;
    padding: 5px 10px;
}
.emodal textarea {
    width: 100%;
    border: 1px solid #000;
    font-family: Poppins;
    color: #000 !important;
    padding: 5px 10px;
    height: 150px;
}

.emodal input[type="submit"] {
    color: #000;
    background: #00f2c0;
    border: 2px solid #00f2c0;
    width: 100px;
}

.emodal input[type="submit"]:hover{
     color: #000;
    background: #fff;
    border:2px solid #00f2c0;
}
a.emodal-close {
    background: url(img/close.png)no-repeat;
    width: 42px;
    height: 43px;
    top: 12px !important;
    right: 17px !important;
    text-indent: 39px;
    overflow: hidden;
}

.emodal input[type="checkbox"] {
    width: 12px;
    height: 12px;
}
.emodal #texto-modal strong {
    color: #000;
    font-size: 14px;
    font-family: poppins;
}
.emodal #texto-modal {
    margin-bottom: 40px;
    margin-top: 40px;
}
/*MI CUENTA*/
nav.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    border: 2px solid #00f2c0;
}

nav.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #00f2c0;
    padding: 10px 20px;
}
nav.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: 0;
}

nav.woocommerce-MyAccount-navigation ul li a {
    display: block;
}

nav.woocommerce-MyAccount-navigation ul li:hover {
    background: #00f2c0;
    color:#000;
}
nav.woocommerce-MyAccount-navigation ul li:hover a{
    color: #000;
    text-decoration: none;
}

.woocommerce-info {
    border-top-color: #00f2c0;
}
.woocommerce-info::before {
    color: #00f2c0;
}
.woocommerce-MyAccount-content {
    margin-bottom: 40px;
}
fieldset {
    margin: 25px 2px;
}
input#coupon_code {
    width: auto;
    height: 42px;
}

.woocommerce-cart table.cart img{
    width: 190px;
}

.woocommerce a.remove {
    color: #ff006f!important;
}



/*BLOG*/
a.view-article {
    color: #ff006f;
    font-weight: 500;
    display: block;
    padding-top: 7px;
}
.cabecera-blog {
    background: url(img/bk-blog.jpg)no-repeat;
    background-size: cover !important;
    background-position: center !important;
    height: 150px;
    margin-bottom: 50px;
}
.cabecera-blog h1 {
    text-align: center;
    color: #fff;
    margin: 0;
    position: relative;
    top: 80px;
}
.cont-loop article {
    height: 350px !important;
    background-size: cover !important;
    background-position: left !important;
    position: relative;
    margin-bottom: 30px;
}
.cont-post {
    background: #fff;
    border: 2px solid #ff006f;
    max-width: 410px;
    position: absolute;
    top: -10px;
    left: -10px;
    min-height: 275px;
    padding-bottom: 20px;
}
.date {
    text-align: center;
    padding: 30px;
}
span.dia-post {
    font-size: 30px;
    font-family: Poppins;
    color: #ff006f;
    display: block;
    font-weight: 500;
}
span.mes-post {
    color: #ff006f;
    font-size: 18px;
    position: relative;
    top: -10px;
}
h2.titulo-post-loop {
    line-height: 25px;
    font-size: 22px;
    text-transform: uppercase;
}

.cont-info-post {
    margin: 15px 0 0 0;
    border-left: 1px solid #ff006f;
    padding-left: 25px;
    padding-right: 50px;
}

.img-post-movil {
 display: none;
}

/*SINGLE*/

.img-post-single {
    background-size: cover !important;
    background-position: center !important;
    height: 400px;
    margin-bottom: 40px;
}
.single .date {
    padding: 0;
}

textarea#comment {
    width: 100%;
}

.comments h2 {
    font-size: 20px;
}
.comments {
    border-top: 1px solid #ccc;
    margin-top: 50px;
    padding-top: 50px;
}

#cont-entrada{
    text-align: justify;
}

/*CARRITO*/
.wnd-checkout-message h3 {
    color: #ffffff;
    text-align: center;
    background: #ff006f;
    padding: 20px 0;
}

/*404*/
.error-page{
    background-color: #00f2c0; text-align: center;height: 126px;padding-top:50px;font-size: 40px; margin-bottom: 70px;
}
.cont-error{
    margin-bottom: 70px;
}
.cont-error ul {
    list-style: none !important;
    padding: 0;
    margin: 0 !important;
}
.cont-error .sub-menu {
    column-count: 3;
    column-gap: 0;
}

.cont-error .sub-menu li {
    padding: 10px 0;
}
.cont-error ul#menu-menu-principal-2 > li:first-child > a:first-child {
    margin-bottom: 50px;
    display: block;
}

/*MOTOR DISEÑO*/
#wpc-tools-box-container > .AccordionPanel > .AccordionPanelTab {
    font-family: Poppins;
    font-weight: 100;
}
.Accordion .AccordionPanelTab, #product-part-container li{
	color: #8d8d8d !important;
}
#wpc-buttons-bar > span{
	background-image:url(img/sprite_wpc.png) !important;
}
#wpc-tools-box-container > .AccordionPanel > .AccordionPanelTab{
	    background-image: url(img/sprite_WPC2.png) !important;
}
#wpc-buttons-bar > span:hover, .Accordion .AccordionPanelTab:hover {
    background-color: #000000 !important;
    color: #fff !important;
}
.wpc-btn-effect, .wpd-button {
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8d8d8d', endColorstr='#8d8d8d') !important;
    background-color: #8d8d8d !important;
    color: #fff !important;
        font-weight: 100 !important;
}
.wpc-btn-effect:hover, .wpd-button:hover{
	background-color: #000 !important;
}
.wpc-qty-container .wpc-btn-effect:hover, .wpd-button:hover{
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #000000) )!important;
}
#wpc-design-btn-box .title, #wpc-cart-box .title {
    background: #8d8d8d !important;
}
#wpc-cart-box .total-price, .wpc-custom-right-quantity-input{
	color: #000 !important;
}
.Accordion input.custom-cb[type=checkbox]:checked + label {
    background-color: #000000 !important;
}
.AccordionPanelContent .wpc-btn-effect:hover, .wpd-button:hover {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #000000) )!important;
}
.wpc-editor-wrap {
    font-family: Poppins !important;
    font-weight: 100;
}
#product-part-container li{
	width: auto !important;
}
span.total_order {
    font-family: Poppins !important;
}

.tab-editor-container.ywtm_content_tab li {
    margin-bottom: 10px;
}

.tab-editor-container.ywtm_content_tab ul {
    list-style: none;
    padding: 0 0 0 12px;
}
.tab-editor-container.ywtm_content_tab li img {
    margin: 0;
    margin-right: 9px;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media screen and (max-width: 1255px){
    .wrapper {
    padding: 0 15px;
}
    .nav {
    left: 0;
}

ul#menu-menu-interno {
    justify-content: center;
    flex-wrap: wrap;
}
.fixed-header .nav {
    left: 10px;
}
}

@media screen and (max-width: 1199px){
    .texto-icono-dos-lineas img {
    position: relative;
    top: 0;
    float: none;
    display: block;
    margin: 5px auto 20px auto;
}
.texto-icono-dos-lineas h3 {
    font-size: 18px;
    text-align: center;
}
}

@media screen and (max-width: 1100px){
.logo-img {
    max-width: 210px !important;
}
.col-header-2 {
    max-width: 290px;
    }
    .fixed-header .logo {
    top: 13px;
}
}

@media screen and (max-width: 1050px){
    #menu-menu-principal-secundario span.menu-image-title {
    display: none;
}
}
@media screen and (max-width: 991px){
   .titulo-icono h3 img {
    position: relative;
    top: 0;
    float: none;
    display: block;
    margin: 0 auto 19px auto;
}
.titulo-icono h3 {
    font-weight: 600;
    margin: 0;
    text-align: center;
} 

.logo-diacash-footer {
    right: 25px;
    bottom: 39px;
}

}
@media screen and (max-width: 950px){
.img-producto{
    background: none !important;
    min-height: auto;
}

.img-producto-movil {
    display: block;
    background-size: cover !important;
    background-position: center !important;
    min-height: 350px;
}
.summary.entry-summary {
    background: #fff;
    max-width: 100%;
    position: relative;
    right: 0;
    bottom: 0;
    width: 100% !important;
    padding: 40px 40px 20px 40px;
    margin-bottom: 0 !important;
}
.summary.entry-summary:after {
    content: "";
    background: url(img/solapa-producto.png);
    width: 42px;
    height: 100px;
    display: block;
    position: absolute;
    left: calc(50% - 42px);
    top: -71px;
    transform: rotate(90deg);
}
}

@media screen and (max-width: 900px){
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 46%;
}


}

@media screen and (max-width: 767px){
.titulo-icono h3 img {
    position: relative;
    top: 0;
    float: none;
    display: block;
    margin: 0 auto 19px auto;
}
.titulo-icono h3 {
    font-weight: 600;
    margin: 0;
    text-align: center;
}
.bloque-noticias-newsletter {
    padding: 0 15px !important;
    max-width: 720px;
    margin: 0 auto;
}
.contacto-flotante a {
    top: -375px;
}
ul.tabs.wc-tabs li {
    width: 100%;
    border-bottom: 0 !important;
}



nav.nav > ul > li:first-child > a > span {
    display: none;
}
.col-header-1, .col-header-3 {
    max-width: 200px;
    width: 100%;
}
.nav ul.sub-menu {
    left: -17 px;
    padding: 30px 10px 30px 10px;
}
.nav {
    top: 16px;

}

.nav:before {
    content: "";
    background: #ffffff;
    width: 50px;
    height: 12px;
    position: absolute;
    border-radius: 38px;
    z-index: 0;
    left: -7px;
    top: 20px;
}
.fixed-header .nav:before {
    content: "";
    width: 36px;
    height: 36px;
    position: absolute;
    border-radius: 38px;
    z-index: 0;
    left: 0;
    top: 0;
}
.bloque-noticias-newsletter:after{
    display: none;
}

.logo-diacash-footer {
  bottom: 65px;
}
.img-post-movil {
    display: block;
    min-height: 280px;
    background-size: cover !important;
    background-position: center !important;
}
.cont-loop article {
    background: transparent !important;
    height: auto !important;
}
.cont-post {
    max-width: 100%;
    left: 0;
    top: -30px;
    min-height: 210px;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
}
}
@media screen and (max-width: 770px){

.fila-header{display: none;}

.fila-header-movil {
    background: #00f2c0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 5px 25px;
    margin-bottom: 30px;
}
.menu-movil > ul > li > a > span.menu-image-title {
    display: none;
}
.menu-movil ul {
    padding: 0;
    list-style: none;
}
.menu-movil > ul > li > ul.sub-menu {
    position: relative;
    z-index: 1;
    background: #fff;
    max-width: 770px;
    width:100%;
    padding: 0;

}
.menu-movil > ul > li.activa-menu > a > img {
    display: none;
}
.menu-movil > ul {
    display: none;
}
img.activa-menu-movil-btn {
    width: 36px;
    height: 36px;
    position: relative;
    top: 4px;
}
#btn-menu{
    display: none;
}
#btn-menu:checked ~ .menu-movil ul{
    display: block;
}

.menu-movil ul {
    padding: 30px 16px 15px 16px;
}
.menu-movil {
    width: 100%;
    position: absolute;
    top: 58px;
    left: 0;
    z-index: 1;
    background: #fff;
    border: 2px solid #00f2c0;
}
.menu-movil .sub-menu li {
    padding: 10px;
}

header.header.clear.fixed-header {
    display: none;
}
.fila-header-movil.fixed-header {
    position: fixed;
    width: 100%;
    z-index: 1;
}




}

@media screen and (max-width: 615px){
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 100%;
}
}
@media screen and (max-width: 600px){
div#eModal-1 {
    padding: 30px 50px !important;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product {
    width: 100%;
}

.logo-diacash-footer {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 195px;
    width: 100%;
    margin: 20px auto;
}

.footer {
    text-align: center;
}

.col-md-2.logo-imprimedia-footer > img {
    margin: 0 0 15px 0;
}

}

@media screen and (max-width: 540px){
.variations {
    column-count: 1;
}
}

@media screen and (max-width: 400px){
.date {
    width: 100%;
    padding: 20px 0 0 0;
}
.cont-info-post {
    width: 100%;
    padding: 0 25px 20px 30px;
    margin: 0;
    border: 0
}
h2.titulo-post-loop {
    margin-top: 10px;
}
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#00f2c0;
	color:#000;
	text-shadow:none;
}
::-webkit-selection {
	background:#00f2c0;
	color:#000;
	text-shadow:none;
}
::-moz-selection {
	background:#00f2c0;
	color:#000;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

.wpc-editor-wrap, .wpc-editor-wrap .title{
	font-family: poppins sans-serif;
}


