.filterx{
    position: fixed; z-index: 11; width: 100%; top: 15px;
}
.r{ margin-top: 25px; }
@media (max-width: 567px) {
    .filterx{ position: fixed; z-index: 11; width: 100%; top: 80px;     }
    .r{ margin-top: 140px; }
}
.header-navbar{
    background: rgba(248, 248, 248, .90) !important;
}

/* - - - NAV BAR - - - */
.navbar {
    display: flex;
    align-items: center;
    padding: 1rem 10px;
    background-color: transparent;
}
.navbar .navbar-nav {
    display: flex;
    margin-left: auto;
}
.navbar .navbar-nav .nav-list {
    list-style: none;
}
.navbar .navbar-nav .nav-list .nav-item {
    display: inline-block;
    padding: 0.3rem 1rem;
}
.navbar .navbar-nav .nav-list .nav-item:nth-last-child(1) {
    padding-right: 0;
}
.nav-btn{
    display: block;
    padding: 0rem 0.5rem;
    padding-right: 0;
    padding-left: 0;
}

/* - - - Auth - - - */
.auth{
    min-height: 100vh;
}
.auth-image {
    background-image: url('/../img/pages/login/bg.svg');
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center center;
    display : -webkit-box !important;
    display : -webkit-flex !important;
    display :    -moz-box !important;
    display : -ms-flexbox !important;
    display :         flex !important;
    height: 150px;
}

.auth-copa {
    background-image: url('/../img/26MX/19BICM_A.png');
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center;
    display : -webkit-box !important;
    display : -webkit-flex !important;
    display :    -moz-box !important;
    display : -ms-flexbox !important;
    display :         flex !important;
    height: 150px;
}

.auth-header{
    padding: 1.5rem 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .auth-image , .auth-copa{
        height: auto !important;
        background-size: contain;
    }
}

/* --- Loader --- */
.loader {
    position: absolute !important;
    bottom: 0;
    left: 40px;
    top: 0;
    right: 0;
    height: 200px;
    width: 80%;
}
.loader .dot {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 52.5%;
    left: 150px;
    height: 10px;
    width: 10px;
    background-color: #909090;
    border-radius: 5rem;
}
.loader .dot:nth-child(1) {
    left: 80px;
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.loader .dot:nth-child(2) {
    left: 115px;
    animation: waveUp 2s, largeExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.15s;
}
.loader .dot:nth-child(3) {
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.3s;
}
.loader .dot:nth-child(4) {
    left: 185px;
    animation: waveUp 2s, largeExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.45s;
}
.loader .dot:nth-child(5) {
    left: 220px;
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.6s;
}
@keyframes waveUp {
    0%, 15% {
        top: 50%;
    }
    45%, 65% {
        top: 42.5%;
    }
    85%, 100% {
        top: 50%;
    }
}
@keyframes smallExtend {
    0%, 8% {
        background-color: #212121;
        height: 10px;
    }
    14%,34% {
        background-color: #7E82EE;
        height: 30px;
    }
    46%,100% {
        background-color: #212121;
        height: 10px;
    }
}
@keyframes largeExtend {
    0%,8% {
        background-color: #212121;
        height: 10px;
    }
    14%,34% {
        background-color: #7E82EE;
        height: 70px;
    }
    46%,100% {
        background-color: #212121;
        height: 10px;
    }
}

/* - - - CARD CARTEL - - - */
.card-cartel{
    transition: all 100ms ease-out;
    box-shadow: 0 16px 16px -4px rgba(0, 0, 0, 0.1);
    color: #6D7A60;
}
.card-cartel:hover{
    box-shadow: 0 16px 16px -4px rgba(241,137,23, 0.3);
    transform: scale(1.02);
}
.cartel-img {
    display: block;
}
.cartel-img img{
    object-fit: cover;
    width: 100%;
    height: 200px;
}
.article-details {
    display: block;
    padding: 1.5rem;
    background-color: #ffffff;
}
.cartel-category {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.0625rem;
    margin: 0 0 0.75rem 0;
    padding: 0 0 1.5rem 0;
    border-bottom: 0.125rem solid #ebebeb;
}
.cartel-category span {
    padding: 5px;
    font-size: 18px;
    background-color: #7E82EE;
    color: #fff;
}
.cartel-category b{font-size: 20px;}
.cartel-title {
    transition: color 0.3s ease;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #121212;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    
    width: 100%;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cartel-description{
    width: 100%;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cartel-info {
    font-size: 0.875rem;
    line-height: 1;
    margin: 1.125rem 0 0 0;
    padding: 1.125rem 0 0 0;
    border-top: 0.0625rem solid #ebebeb;
    text-align: center;
}
/*- - - Radio Categorias - - -*/
input[type=radio].cat{
    display:none;
}

/**/
.cantidad{
    height: 60px;
    width: 100px;
    /*border: 2px solid #bdbdbd; */
    padding: 15px 0px;
    font-size: 17px;
    font-weight: bold;
    color: #666666;
    border-radius: 3px;
    background-color: #fff;
    border: 2px solid #fff;
    cursor: pointer;   
}
.cantidad small{
    font-size: 10px;
}
.RadioBtnPayment input[type=radio].cat:checked + label .cantidad {
    border: solid 2px #000;
    background-color: #ffffff;
}
/**/

.imageBox{
    height: 100%;
    width: 100%;
    /*border: 2px solid #bdbdbd; */
    /*padding: 15px;*/
    color: #666666;
    border-radius: 4px;
    background-color: #fff;
    border: 4px solid #eee;
    cursor: pointer;
    transition: all 1s;
}
.RadioBtnPayment .styleLabel{
    position:relative;
    text-align: center;
}

.method{
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.RadioBtnPayment input[type=radio].cat:checked + .styleLabel:before{
    content: "\f00c";
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    position: absolute;
    top: -12px;
    z-index: 1;
    padding-top: 6px;
    line-height: 1;
    right: -6px;
    width: 24px;
    height: 24px;
    font-size: 11px;
    font-family: 'FontAwesome';
}
.RadioBtnPayment input[type=radio].cat:checked + label .imageBox {
    border: solid 4px #000;
    box-shadow: 0 5px 5px 7px rgba(40,199,111, 0.2);
    background-color: #df7f03;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    transition: all 1s;
}
.metodo-textarea{
    width: 100%;
    padding: 5px 10px;
    border: solid 1px #c7c7c7;
}
.offer-title {
    font-weight: 600;
    font-size: 20px;
}
.offer-text{
    font-weight: 300;
    font-size: 12px;
}
.imageBox#productTangible:before {
    content: url("");
}

/* --- */
.grid {
	position: relative;
	margin: 0 auto;
	/*padding: 1em 0 4em;*/
	max-width: 300px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0;
	min-width: 235px;
	max-width: 235px;
	max-height: 235px;
	width: 48%;
	background: #000000;
	text-align: left;
	cursor: pointer;
}


.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.18);
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h3 {
	word-spacing: -0.15em;
	font-weight: normal;
    text-align: center;
}

.grid figure h3 span {
    color: #ffffff;
	text-transform: uppercase;
    padding-left: 5px;
	font-weight: 800;
    font-size: 30px;
}
.grid:hover figure h3 span {color: #7E82EE}

.grid figure h3,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/*  tema */
figure.effect-bubba {
	background: #000;
}

figure.effect-bubba img {
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0;
}

.RadioBtnPayment input[type=radio].cat:checked > figure.effect-bubba img {
	opacity: 1;
}

figure.effect-bubba h3 {
    color: #fff;
	padding-top: 50%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

figure.effect-bubba p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,5px,0);
	transform: translate3d(0,5px,0);
}
figure.effect-bubba p.ocupacion {font-weight: bold; padding-bottom:10px;}
figure.effect-bubba p.ocupacion img {display:inline; width: 20px; opacity: 1;}
figure.effect-bubba p.titulo {font-weight: bold; color: #7E82EE}
figure.effect-bubba p.descripcion {}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-bubba:hover h3{
	opacity: 1;
    text-align: left;
	-webkit-transform: translateX(0,0,0);
	transform: translateX(0,0,0);
    -webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
    padding-top: 10px;
}
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* --- */

/* - - - MODAL CSS - - - */
.modalDialog{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    overflow: scroll;
}
.modalDialog:target{ opacity:1; pointer-events: auto; }
.modalDialog > div {
    width: 900px;
    position: relative;
    margin: 1.75rem auto;
    padding: 5px 20px 13px 20px;
    border-radius: 0.3rem;
    border: 1px solid rgba(0,0,0,.2);
    background: white;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.5);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}
@media (max-width: 900px) {
    .modalDialog > div {
        width: 700px;
    }
}
@media (max-width: 767px) {
    .modalDialog > div {
        width: 450px;
    }
}
#fondo{ width: 100%; position: fixed; height: 100%;}

/* - - - FAQs - - - */
.question {
    position: relative;
    color: #2e2e2e;
    background: #f1f1f1;
    margin: 0;
    padding: 10px 10px 10px 50px;
    display: block;
    width:100%;
    font-size: 1.7em;
    cursor: pointer;
}
/*Answer*/
.answers {
    padding: 0px 15px;
    margin: 5px 0;
    width:100%!important;
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
.qbox { display: none; }
.qbox:checked ~ .answers{
    height: auto;
    opacity: 1;
    padding: 15px;
}
/*FAQ Toggle*/
.plus {
    position: absolute;
    color: #aab8c2;
    margin-left: 15px;
    margin-top: 9px;
    z-index: 1;
    font-size: 3em;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
.qbox:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* - - -  DONATIVOS  - - - */
.donativo-container {
    width: 100%;
    margin: 20px auto;
}
.dx {padding: 40px 60px 40px 40px !important;}
.donativo-container .dx:last-child {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.d-l{
    background-color: #F48120;
    box-shadow : 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.d-r{
    background-color: white;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.brand-name, .brand-info{
    font-family: 'Roboto Mono', sans-serif;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.2px;
    margin-bottom: 50px;
}
.brand-name{
    font-size: 38px;
    font-weight: 300;
    margin: 20px auto 20px;
}
.personal-data{
    height: 14px;
    margin-bottom: 24px;
    font-weight: bold;
    text-align: center;
}
.divider{
    border-bottom: 1px solid rgba(200,200,200,0.4);
    margin-left : -40px;
    margin-right: -40px;
}
/* - - - Btn custom - - - */
.btn-dark {
    border-color: #000 !important;
    background-color: #000 !important;
    color: #FFFFFF;
}
.btn-dark:hover {
    border-color: #000 !important;
    color: #FFFFFF !important;
    -webkit-box-shadow: 0 8px 25px -8px #000;
    box-shadow: 0 8px 25px -8px #000;
  }

/* - - - Banner shop - - - */
/*.banner-bottom {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    object-fit: cover;
}
.banner-link {
    height: 50px;
    width: 100%;
    bottom: 0px;
    position: fixed;
    background: #74B643;
    transition: .7s;
}
.banner-bottom:hover > .banner-link{
    height: 150px;
    transition: .7s;
}
@media (max-width: 768px) {
    .banner-link {
    height: 20px;
    width: 100%;
    bottom: 0px;
    position: fixed;
    background: #74B643;
    transition: .7s;
    }
    .banner-bottom:hover > .banner-link{
        height: 55px;
        transition: .7s;
    }
}
*/
.banner {
    width: 100%;
    height: 26px;
    bottom: 0;
    position: fixed;
    cursor: pointer;
}
.banner-top {
    width: 100%;
    height: 26px;
    text-align: center;
    background-color: #74B643;
}
.banner-img {
    max-height: 100%;
    max-width: 100%;
    transition: .7s;
}
.banner:hover > .banner-bottom{
    width: 100%;
    height: 80px;
    text-align: center;
    object-fit: cover;
    position: fixed;
    bottom: 0px;
    overflow: hidden;
    background-color: #74B643;
}


.banner-fixed {
    width: 100%;
    height: 60px;
    bottom: 0;
    position: fixed;
    cursor: pointer;
    text-align: center;
    background-color: #74B643;
}

/* - - - Limite de carteles - - - */
.limite{
    position: relative;
    width: 100%;
    height: 373;
    background: rgba(255, 172, 172, 0.2);
    text-align: center;
    font-size: 15px;
    border: 2px dashed #EA5455;
    border-radius: 2px;
    
}
.limite h4 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #EA5455;
}
.limite i {
    font-size: 40px;
    color: #EA5455;
}

/* --- Loader --- */

.loader {
    position: relative;
    margin: auto;
	margin-top: 40px;
	height: 100px;
	width: 320px;
}
.loader .dot {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 52.5%;
    left: 150px;
    height: 5px;
    width: 5px;
    background-color: #909090;
    border-radius: 0rem;
}
.loader .dot:nth-child(1) {
    left: 80px;
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.loader .dot:nth-child(2) {
    left: 115px;
    animation: waveUp 2s, largeExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.15s;
}
.loader .dot:nth-child(3) {
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.3s;
}
.loader .dot:nth-child(4) {
    left: 185px;
    animation: waveUp 2s, largeExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.45s;
}
.loader .dot:nth-child(5) {
    left: 220px;
    animation: waveUp 2s, smallExtend 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 0.6s;
}
@keyframes waveUp {
    0%, 15% {
        top: 50%;
    }
    45%, 65% {
        top: 42.5%;
    }
    85%, 100% {
        top: 50%;
    }
}
@keyframes smallExtend {
    0%, 8% {
        background-color: #212121;
        height: 10px;
    }
    14%,34% {
        background-color: var(--primary-500);;
        height: 30px;
    }
    46%,100% {
        background-color: #212121;
        height: 10px;
    }
}
@keyframes largeExtend {
    0%,8% {
        background-color: #212121;
        height: 10px;
    }
    14%,34% {
        background-color: var(--primary-500);;
        height: 70px;
    }
    46%,100% {
        background-color: #212121;
        height: 10px;
    }
}