@charset "UTF-8";
.promoModal {
    position: fixed;
	left: auto;
    right: -100%;
    bottom: 5%;
	width: 100%;
    max-width: 480px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    background: #006ed2;
    box-shadow: 0 2px 15px rgb(0 110 210 / 40%);
    padding: 32px 54px 38px;
	z-index: 99999;
	text-align: center;
	transition: all ease-in-out .8s;
}
.promoModal.open {
	    left: auto;
		right: 0;
		transition: all ease-in-out .8s;
}
.promoImg {
    max-width: 340px;
    margin: auto;
    text-align: center;
}
.promoModal.PromoTarjetasBG {
    background: url("../img/promoBG.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
.promoModal .promoModalClose {
    position: absolute;
    inset: 15px 15px auto auto;
}
.promoModal .btn-close {
    width: 25px;
    height: 25px;
    background-size: 1em auto;
}
.promoModal h2  {
    text-align: center;
    font-weight: 700;
	margin: 14px 0 20px; 
    font-size: 1.6rem;
}
.promoModal h3  {
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
	margin: 28px 0 0;
}
.header-fixed {
    z-index: 99999;
}

@media only screen and (max-width: 540px) and (orientation: portrait) {
	.promoModal {
		position: fixed;
		right: 0;
		top: auto;
		bottom: -100%;
		max-width: 100%;
		border-radius: 12px 12px 0 0;
		z-index: 99990;
		text-align: center;
		width: 100%;
		padding: 32px 10% 94px;
		transition: all ease-in-out .8s;
	}
	.promoModal.open {
		top: auto;
		bottom: 0;
		transition: all ease-in-out .8s;
	}
	.promoModal h2 {
		margin: 10px 0 16px;
		font-size: 1.3rem;
	}
	.promoModal h3 {
		margin: 16px 0 0;
		font-size: 1.1rem;
	}
	.promoModal .promoModalClose {
		inset: 12px 12px auto auto;
	}
}

