/*
Theme Name: Mojuri Child
Theme URI: http://www.wpbingosite.com/mojuri
Author: wpbingo
Description: This is a child theme for Mojuri
Version: 1.0
Author URI: http://wpbingosite.com
Template: mojuri
Text Domain: mojuri-child
*/
/*************** ADD YOUR CUSTOM CSS HERE  ***************/
.dropdown-menu.cart-popup.show .free-order {
	display: none;
}
.bwp-header.sticky {
	background: white !important;
}
.page-id-27458 .bwp-header.sticky,
.home .bwp-header.sticky {
	background: #1d2327 !important;
}
.term-description h4 {
	font-size: 25px !important;
	font-weight: bold !important;
}
.widget_product_categories .product-categories .cat-item .count {
	float: right;
	width: 25px;
    height: 25px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background: #f1f1f1;
	text-align: center;
	line-height: 25px;
	font-size: 12px;
}
.topbarcustom {
	background: #1d2327;
	text-align: center;
	padding: 15px;
	color: white;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}
.newsletterpopup .wp-newletter .hidden-popup-newsletter .wpcf7-list-item-label {
	cursor: inherit;
    margin-top:20px;
}
#newsletterpopup .wpcf7-response-output {
	margin-top: 0px;
	border: none;
	text-align: center;
	color: black;
}

.woocommerce-button.wp-element-button.button.invoice{
margin-left:10px;
}

.wpcf7-list-item {
	margin: 0px;
}

.text-title-heading {
	font-size: 40px !important
}

:root{
    --ticker-animation-duration: 4s;
    --ticker-gap-x: 100px;
    --ticker-img-width: 280px
}
@media (min-width: 48rem){
    :root{
        --ticker-gap-x: 150px;
        --ticker-img-width: 400px
    }
}
@media (min-width: 64rem){
    :root{
        --ticker-img-width: 550px
    }
}
li{
    list-style:none
}
.ticker{
    overflow:hidden
}
.ticker__list{
    display:flex;
    overflow:auto;
    will-change:transform;
    -webkit-transform:translateZ(0px);
    transform:translateZ(0);
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
.ticker--animate .ticker__list{
    -webkit-animation:ticker-animation 65s infinite;
    animation:ticker-animation 65s infinite;
    -webkit-animation-timing-function:linear;
    animation-timing-function:linear
}
.ticker[data-ticker-pause-hover=on] .ticker__list:hover,.ticker--paused .ticker__list{
    -webkit-animation-play-state:paused;
    animation-play-state:paused
}
.ticker__item{
    flex-shrink:0;
    margin-right:calc(var(--ticker-gap-x)/2);
    margin-left:calc(var(--ticker-gap-x)/2);
    margin-bottom:0px;
}
.ticker__img{
    display:block;
    width:var(--ticker-img-width);
}
.ticker-control{
    display:inline-flex;
    width:40px;
    height:40px;
    background-color:#ef88aa;
    border-radius:50%;
    transition:.2s;
}
.ticker-control i{
    position:relative;
    display:block;
    width:16px;
    height:16px;
    margin:auto;
    color:var(--color-bg);
}
.ticker-control i:before,.ticker-control i:after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background-color:#ef88aa;
    transition:-webkit-clip-path .2s var(--ease-out);
    transition:clip-path .2s var(--ease-out);
    transition:clip-path .2s var(--ease-out),-webkit-clip-path .2s var(--ease-out)
}
.ticker-control i:before{
    -webkit-clip-path:polygon(1px 1px,5px 1px,5px calc(100% - 1px),1px calc(100% - 1px));
    clip-path:polygon(1px 1px,5px 1px,5px calc(100% - 1px),1px calc(100% - 1px))
}
.ticker-control i:after{
    -webkit-clip-path:polygon(calc(100% - 5px) 1px,calc(100% - 1px) 1px,calc(100% - 1px) calc(100% - 1px),calc(100% - 5px) calc(100% - 1px));
    clip-path:polygon(calc(100% - 5px) 1px,calc(100% - 1px) 1px,calc(100% - 1px) calc(100% - 1px),calc(100% - 5px) calc(100% - 1px))
}
.ticker-control:hover{
    cursor:pointer;
    background-color:#ef88aa;
}
.ticker-control[aria-pressed=true] i:before{
    -webkit-clip-path:polygon(2px 0%,100% 50%,100% 50%,2px 100%);
    clip-path:polygon(2px 0%,100% 50%,100% 50%,2px 100%)
}
.ticker-control[aria-pressed=true] i:after{
    -webkit-clip-path:polygon(calc(100% - 5px) calc(100% - 1px),calc(100% - 1px) calc(100% - 1px),calc(100% - 1px) calc(100% - 1px),calc(100% - 5px) calc(100% - 1px));
    clip-path:polygon(calc(100% - 5px) calc(100% - 1px),calc(100% - 1px) calc(100% - 1px),calc(100% - 1px) calc(100% - 1px),calc(100% - 5px) calc(100% - 1px))
}
.js .ticker:not(.ticker--anim-off) .ticker__list{
    overflow:visible
}
.js .ticker--reverse:not(.ticker--anim-off) .ticker__list{
    flex-direction:row-reverse
}
.js .ticker--reverse.ticker--animate:not(.ticker--anim-off) .ticker__list{
    -webkit-transform:translateX(calc(100vw - 100%));
    transform:translate(calc(100vw - 100%));
    -webkit-animation-name:ticker-animation-reverse;
    animation-name:ticker-animation-reverse
}
@-webkit-keyframes ticker-animation{
    0%{
        -webkit-transform:translateX(0%);
        transform:translate(0)
    }
    to{
        -webkit-transform:translateX(-50%);
        transform:translate(-50%)
    }
}
@keyframes ticker-animation{
    0%{
        -webkit-transform:translateX(0%);
        transform:translate(0)
    }
    to{
        -webkit-transform:translateX(-50%);
        transform:translate(-50%)
    }
}
@-webkit-keyframes ticker-animation-reverse{
    0%{
        -webkit-transform:translateX(calc(100vw - 100%));
        transform:translate(calc(100vw - 100%))
    }
    to{
        -webkit-transform:translateX(calc(100vw - 50%));
        transform:translate(calc(100vw - 50%))
    }
}
@keyframes ticker-animation-reverse{
    0%{
        -webkit-transform:translateX(calc(100vw - 100%));
        transform:translate(calc(100vw - 100%))
    }
    to{
        -webkit-transform:translateX(calc(100vw - 50%));
        transform:translate(calc(100vw - 50%))
    }
}
#listaTexto {
	margin-bottom: 0px;
	padding: 5px 0px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
}
li.ticker__item span{
    font-size:12px;
}
.newsletterpopup .content-newsletter{
display:inline-block !important;
}
.wp-newletter img {
	height: 100%;
	object-fit: cover;
}
.content-newsletter .wpcf7-form-control.wpcf7-submit {
	width: 100%;
}
.newsletterpopup .content-newsletter input[type="email"],
.newsletterpopup .content-newsletter input[type="text"]{
    color: white; 
    background: #444;
    border: 1px solid #e5e5e5; 
    margin-bottom: 10px;
}

.newsletterpopup .content-newsletter input[type="text"] {
	width: 100%;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
}
.newsletterpopup .content-newsletter input[type="email"]::placeholder,
.newsletterpopup .content-newsletter input[type="text"]::placeholder{
    color: white; 
    opacity: 1;
}

.newsletterpopup .content-newsletter input[type="email"]::-webkit-input-placeholder,
.newsletterpopup .content-newsletter input[type="text"]::-webkit-input-placeholder{
    color: white;
}

.newsletterpopup .content-newsletter input[type="email"]:-moz-placeholder,
.newsletterpopup .content-newsletter input[type="text"]:-moz-placeholder{
    color: white;
}

.newsletterpopup .content-newsletter input[type="email"]::-moz-placeholder,
.newsletterpopup .content-newsletter input[type="text"]::-moz-placeholder{
    color: white;
}

.newsletterpopup .content-newsletter input[type="email"]:-ms-input-placeholder,
.newsletterpopup .content-newsletter input[type="text"]:-ms-input-placeholder{
    color: white;
}
.meta-texto li {
	color: black;
    list-style:disc;
}
.meta-texto img {
	max-width: 80px;
	margin-left: 5px;
	position: relative;
	top: -5px;
}
.meta-texto ul {
	padding-left: 13px;
}
.meta-texto{
margin-bottom:20px;
}
.customtextblog{
font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  margin-bottom: 20px;
  color: white;
  line-height 28px;
}
.blog .bwp-main .page-title {
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}
.blog h1 {
	color: white !important;
}
.blog .bwp-breadcrumb a {
	color: white !important;
}
.blog .bwp-breadcrumb span {
	color: white !important;
}
.newsletter-button-container {
    text-align: center;
    margin-top: 0px;
}

.newsletter-button {
    display: inherit;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #333;
    color: #f1f1f1;
}
.newsletter-button br {
	display: none !important;
}
.productos-inicio .slick-arrow {
	width: 35px;
	height: 35px;
	border: 1px solid #cecece;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	line-height: 36px;
	text-align: center;
	color: #adadad;
	font-size: 10px;
	background: #fff;
}
.productos-inicio .slick-arrow:hover {
	background: #cb8161;
	border-color: #cb8161;
	color: #fff;
}
.productos-inicio i.slick-arrow {
	font-size: 10px !important;
	color: #adadad !important;
}
.productos-inicio i.slick-arrow:hover {
	color: white !important;
}
body .productos-inicio i.slick-arrow {
	top: 30% !important;
}