/* Power Pharmacy — Account auth modal */
.pp-auth-overlay {
	align-items: center;
	background: rgba(11, 23, 132, 0.55);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 99999;
}

.pp-auth-overlay[hidden] {
	display: none;
}

.pp-auth-dialog {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
	height: min(80vh, 720px);
	overflow: hidden;
	position: relative;
	width: min(960px, 100%);
}

.pp-auth-frame {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.pp-auth-close {
	background: #0b1784;
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	font-size: 24px;
	height: 38px;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 10px;
	width: 38px;
	z-index: 2;
}

.pp-auth-close:hover,
.pp-auth-close:focus {
	background: #37aa67;
}
