@charset "UTF-8";
.promoModal {
    position: fixed;
	left: auto;
    right: -100%;
    bottom: 5%;
	width: 100%;
    max-width: 500px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    background: #FFFF;
    box-shadow: 0 2px 15px rgb(0 110 210 / 40%);
    padding: 32px 34px 38px;
	z-index: 98;
	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 2px; 
    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;
}
.promoModalContent{
	display: none;
}
.promoModalContent a{
	display: flex;
	justify-content: center;
	align-items: center;
}
.promoModalContent div:first-child{
	border-right: 1px solid #00c2e8;
}
.promoModalContent div.azul:first-child{
	border-right:  #006ed2;
}
.promoModalContent div:last-child{
	padding-left: 10px;
}
h2.uaPromo{
	font-size: 1.3rem;	
}
h2 span{
	display: block;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 500;
	color: #006ed2;
	margin-top: 5px;	
}

.promoModalContent img{
	max-width: 100%;	
	padding: 5px;
}
.promoModalContent .textGratis{
	max-width: 100%;
	display: block;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: bold;
	color: #FFF;
	background-color: #00c2e8;
	margin-bottom: 2px;
}
.promoModalContent .textGratis.azul{
	background-color: #006ed2;
	color: #FFF;
}
.promoModalContent .textMetros{
	max-width: 100%;
	display: block;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: bold;
	color: #006ed2;
	background-color: #ffc700;
	margin-bottom: 2px;
	border-radius: 0 0 12px 12px;
}
.promoModalContent .textFecha{
	max-width: 100%;
	display: block;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 500;
	color: #006ed2;
	margin-top: 5px;	
}

.iconoPromoActiva{
	display: none;
}

.iconoPromoActiva.active{
	display: block;
}

@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: 98;
		text-align: center;
		width: 100%;
		padding: 20px 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 5px;
		font-size: 1.4rem;
	}
	.promoModal h3 {
		margin: 16px 0 0;
		font-size: 1.1rem;
	}
	.promoModal .promoModalClose {
		inset: 12px 12px auto auto;
	}
	.promoModalContent{
		flex-direction: column;
	}
	.promoModalContent div{
		width: 100%;
	}	
	.promoModalContent img{
		max-width: 150px;
	}	
	.promoModalContent .textGratis{
		font-size: 1.3rem;
		line-height: 2rem;		
	}
	.promoModalContent .textMetros{		
		font-size: 1.3rem;
		line-height: 2rem;		
	}
	.promoModalContent .textFecha{
		max-width: 100%;
		display: block;				
	}
	.promoModalContent div:first-child{
		border-right: 0;
	}
	.promoModalContent div:last-child{
		padding-left: 0px;		
		padding-right: 0px;
		padding-bottom: 5px;		
	}
}

