/* Newsletter popup shared by Formation and the main Askida site. */
#newsletter-formation-popup[aria-hidden="true"] {
	display: none !important;
}

#newsletter-formation-popup.is-open[aria-hidden="false"] {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.72);
}

#newsletter-formation-popup .newsletter-formation-popup__overlay {
	position: absolute;
	inset: 0;
}

#newsletter-formation-popup .newsletter-formation-popup__modal {
	position: relative;
	z-index: 1;
	width: min(680px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 36px;
	box-sizing: border-box;
	background: #202123;
	color: #FCFFF5;
	border: 1px solid #8CA8E7;
}

#newsletter-formation-popup .newsletter-formation-popup__close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: transparent;
	color: #FCFFF5;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

#newsletter-formation-popup .newsletter-formation-popup__title {
	margin: 0 0 12px;
	color: #FCFFF5;
}

#newsletter-formation-popup .newsletter-formation-popup__intro {
	margin: 0 0 24px;
}

#newsletter-formation-popup .newsletter-formation-popup__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

#newsletter-formation-popup .newsletter-formation-popup__field {
	margin-bottom: 16px;
}

#newsletter-formation-popup label {
	display: block;
	margin-bottom: 6px;
}

#newsletter-formation-popup input {
	width: 100%;
	padding: 10px 12px;
	box-sizing: border-box;
	border: 1px solid #B3B2AD;
	background: #FCFFF5;
	color: #1C1D1B;
}

#newsletter-formation-popup .newsletter-formation-popup__btn {
	padding: 10px 18px;
	border: 1px solid #8CA8E7;
	background: #8CA8E7;
	color: #1C1D1B;
	cursor: pointer;
}

@media (max-width: 767px) {
	#newsletter-formation-popup.is-open[aria-hidden="false"] {
		padding: 16px;
	}

	#newsletter-formation-popup .newsletter-formation-popup__modal {
		max-height: calc(100vh - 32px);
		padding: 28px 20px 20px;
	}

	#newsletter-formation-popup .newsletter-formation-popup__row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}


/*# sourceMappingURL=style.css.map */
