.pmt-iframe-container {
	width: 100%;
	border: none;
}

.pmt-iframe-container iframe {
	width: 100%;
	border: none;
	height: 592px;
}

.pmt-iframe-container.is-success {
	visibility: hidden;
}

.pmt-iframe-container.is-error-state {
	pointer-events: none;
	opacity: 0.6;
	position: relative;

	/* Adapted from WooCommerce spinner (.wc-block-components-spinner) */
	&::after {
		content: " ";
		position: absolute;
		top: 50%;
		left: 50%;
		margin: -0.5em 0 0 -0.5em;
		width: 1em;
		height: 1em;
		box-sizing: border-box;
		transform-origin: 50% 50%;
		transform: translateZ(0) scale(0.5);
		backface-visibility: hidden;
		border-radius: 50%;
		border: 0.2em solid currentColor;
		border-left-color: transparent;
		animation: spinner__animation 1s infinite linear;
	}
}