/**
 * Airtable form embed — modal body content for ticket application forms.
 */

.techbbq-airtable-form-modal {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	width: 100%;
	min-height: 0;
}

.techbbq-airtable-form-modal__iframe {
	display: block;
	width: 100%;
	min-height: 500px;
	height: 70vh;
	max-height: 720px;
	border: 0;
	background: transparent;
}

@media (max-width: 767px) {
	.techbbq-airtable-form-modal__iframe {
		min-height: calc(100vh - 120px);
		height: calc(100vh - 120px);
		max-height: none;
	}
}
