*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}
.overlay-container-all{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 5px;
	visibility: hidden;
	opacity: 0;
	transition: all 600ms;
	z-index: 9999999;	
}
.overlay-container-all:target{
	background: rgba(0,0,0,0.8);
	visibility: visible;
	opacity: 1;
}
.overlay-container-all > p{
	font-size: 2rem;
}	
.overlay-container-all:target .overlay-popup{
	top: 45%;
	left: 50%;
	transform: rotate(0deg) translate(-50%, -50%);
	visibility: visible;
	position: relative;
	margin: 0;
	padding: 0;
}	
.overlay-popup{
	background: #ffffff;
	width: 90%;
	max-width: 90%;
	height: 77%;
	max-height: 77%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 55px;
	top: -80%;
	left: -80%;
	transform: rotate(90deg) translate(-150%, 230%);
	transition: all 600ms;
	z-index: 999999999;
}
.overlay-container-texto-1{
	margin:0;
	padding: 0;
	width: 95%;
	display: flex;
	flex-direction: column;
	max-width: 95%;
	max-height: 80%;
	margin-bottom: 1rem;
	position: relative;
	top: 5%;
	overflow-y: auto;
}
.overlay-container-texto-1 .overlay-img{
	border-radius: 55px;
	width: 90%;
    height: 77%;
    max-width: 90%;
    display: flex;
    align-self: center;
    padding-left: 15px;
	padding-right: 15px;
    position: relative;
}
.overlay-container-texto-1 .overlay-img img{
	border-radius: 55px;
	width: 100%;
	max-width:100%;
    max-height:100%;
    vertical-align: middle;
    object-fit: contain;
}
.overlay-container-texto-1 .overlay-tit-parrafo{
	background: antiquewhite;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.overlay-container-texto-1 .overlay-tit-parrafo h3{
	font-size: 1.5rem;
	margin: 1rem;
	padding: 0;
	text-align: center;
}
.overlay-container-texto-1 .overlay-tit-parrafo .soles{
	font-size: 2rem;
}
.overlay-container-texto-1 .overlay-tit-parrafo .soles-pastel{
	font-size: 1rem;
}
.overlay-container-texto-1 .overlay-tit-parrafo .colorred{
	color:  red;
}
.overlay-container-texto-1 .overlay-tit-parrafo .tachado{
	text-decoration: line-through;
	color: red;
}
.overlay-container-texto-1 .overlay-tit-parrafo .subrayado{
	text-decoration: underline;
}	
.overlay-btn-close-popup{
	position: absolute;
	top: 1%;
	right: 3%;
	font-size: 3rem;
	background-color: rgba(176, 186, 117, 1);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	/*transition: all .2s ease;	*/
}
/*---------------------------------------*/
@media screen and (min-width: 768px){	
	.overlay-container-texto-1{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		gap: 6.5rem;
		justify-content: center;
		align-items: center;
		vertical-align: center;
		grid-template-areas: 'logo tit-p'
							 'logo tit-p'
	}
	.overlay-container-texto-1 .overlay-img{
		width: 100%;
	    height: 100%;
	    max-height: 100%;
	    align-self: start;
		grid-area: 'logo';
	}
	.overlay-container-texto-1 .overlay-tit-parrafo{
		margin: 2rem;
		align-self: start;
		text-align: center;
		grid-area: 'tit-p';
	}
}
@media screen and (min-width: 900px){
	.overlay-popup{
		max-width: 80%;
	}
	.overlay-container-texto-1 .overlay-tit-parrafo{
		margin-bottom: 0;
		padding: 0;		
	}	
}	
@media screen and (min-width: 1024px){
	.overlay-popup{
		max-width: 70%;
	}
	.overlay-container-texto-1 .overlay-img{
	    max-height: 80%;
	}
}