.novoname-rpf {
    width: 100vw;
    height: 100vh;
	display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
}
.novoname-rpf.hide {
    display: none;
}
.novoname-rpf.show {
    display: flex;
}
.novoname-rpf-wrapper {
	position: relative;
	width: 95vw;
    height: 95vh;
    background-color: #ffffff;
	display: flex;
    align-items: center;
}
.novoname-rpf-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#novoname-rpf-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 999;
	background: #81638B;
	border-radius: 50px;
	color: #ffffff;
	border: 0;
    width: 30px;
    height: 30px;
}
#prev-page {
    cursor: pointer;
	position: absolute;
    left: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	height: 150px;
    width: 40px;
    border: 1px solid #f5f5f5;
    background: #81638b80;
    color: #ffffff;
	transition: background .2s ease-in-out;
}
#next-page {
    cursor: pointer;
	position: absolute;
    right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	height: 150px;
    width: 40px;
    border: 1px solid #f5f5f5;
    background: #81638b80;
    color: #ffffff;
	transition: background .2s ease-in-out;
}
#prev-page:hover, #next-page:hover {
	background: #81638B;
}
#prev-page:disabled, #next-page:disabled {
	background: #81638b80;
	cursor: not-allowed;
}
#page-info {
	position: absolute;
    left: 30px;
	top: 30px;
	color: #81638B;
}
.novoname-rpf-content {
	text-align: center;
	margin: 0 auto;
	width: 95vw; /* Ocupa el 95% del ancho de la ventana */
	height: 95vh; /* Ocupa el 95% de la altura de la ventana */
	max-width: 1200px; /* Ancho máximo para pantallas grandes */
	max-height: 900px; /* Altura máxima para pantallas grandes */
}
#rpf-reader {
	margin: 0 auto;
}
#novoname-rpf-open {
	padding: 8px 24px;
	border-radius: 50px;
	border: 1px solid #81638B;
	color: #81638B;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	column-gap: 6px;
	transition: background-color color 0.2s linear;
}
#novoname-rpf-open:hover {
	background-color: #81638B;
	color: #ffffff;
}
#novoname-rpf-open svg {
	transition: fill 0.2s linear;
}
#novoname-rpf-open:hover svg {
	fill: #ffffff !important;
}
body.pdf-shown .qlwapp {
	display: none !important;
}
@media (max-width: 768px) {
	#prev-page {
		top: 95%;
		left: 10px;
		height: 50px;
		width: 40px;
	}
	#next-page {
		top: 95%;
		right: 10px;
		height: 50px;
		width: 40px;
	}
	#page-info {
		left: 50%;
		top: 93%;
		transform: translateX(-50%);
	}
	#novoname-rpf-close {
		top: 16px;
		right: 16px;
	}
}