/**
 * Portal Block Styles
 */

/* Core Portal */
div.portal {
	max-width: 560px;
	margin: auto;

	> iframe {
		border: none;
	}
}

/* Portal Modal */
dialog.cps-portal-modal {
	border: 1px solid;
	border-radius: 6px;
	padding: 0;
	width: 95%;
	top: 12% !important;
	max-width: 550px !important;
	height: 100%;

	::backdrop {
		background: rgba(0, 0, 0, 0.7);
	}

	div.portal {
		height: calc(100dvh - 40px);

		> iframe {
			border: none;
			height: 100%;
			width: 100%;
		}
	}

	.close-button {
		position: absolute;
		top: 12px;
		right: 12px;
		width: 30px;
		height: 30px;
		border: none;
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.5);
		color: white;
		font-size: 20px;
		cursor: pointer;
		z-index: 1001;
		display: flex;
		align-items: center;
		justify-content: center;

		&:hover {
			background: rgba(0, 0, 0, 0.7);
		}
	}

	@media (max-width: 767px) {
		top: 0 !important;
		max-width: 500px !important;
	}
}

/* Phone Number Block */
.phone-icon-wrapper {
	display: inline-flex;
	align-items: center;
	margin-right: 8px;
}

.phone-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
	display: inline-block;
}

.cps-phone-number {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #333;
}

.cps-phone-number:hover {
	color: #007bff;
}

.number {
	font-size: 16px;
	font-weight: bold;
}