/* Widget styles */

.hulpkaart-widget-component {
	align-items: center;
	container-type: inline-size;
	display: flex;
	justify-content: center;
	padding: 32px;
	width: 100%
}

.hulpkaart-widget-component__container {
	align-items: flex-start;
	background-color: rgba(32, 7, 152, .1);
	border-radius: 5px;
	display: flex;
	justify-content: flex-start;
	max-width: 1180px;
	overflow: hidden;
	width: 100%
}

.hulpkaart-widget-component__container.reversed {
	flex-direction: row-reverse
}

.hulpkaart-widget-component__image {
	align-self: stretch;
	display: flex;
	overflow: hidden;
	width: 40%
}

.hulpkaart-widget-component__image>img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	max-height: 400px;
}

.hulpkaart-widget-component__content {
	display: flex;
	flex-direction: column;
	padding: 40px;
	row-gap: 32px;
	width: 60%
}

.hulpkaart-widget-component__title {
	color: #200798;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .15px;
	line-height: 28px
}

.hulpkaart-widget-component__text {
	color: #2d3648
}

.hulpkaart-widget-component__form {
	display: flex;
	gap: 20px;
    flex-direction: column;
    max-width: 255px;
}

.hulpkaart-widget-component__form input {
	border: none;
	padding: 14px 0;
    background-color: transparent;
    font-size: 28px;
    font-family: 'Roboto Mono', monospace;
    line-height: 28px;
    letter-spacing: 27px;
    text-indent: 10px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    width: 100%;
}

.hulpkaart-widget-component__form.hulpkaart-widget-invalid div span {
    background-color: #ff0000;
}

.hulpkaart-widget-component__form-input {
    position: relative;
}

.hulpkaart-widget-component__form-input div {
	display: flex;
    position: absolute;
	align-items: center;
	justify-content: space-between;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    gap: 10px;
	max-width: 333px;
}

.hulpkaart-widget-component__form-input div span {
    display: block;
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    flex: 1;
}

.hulpkaart-widget-component__form button {
	font-feature-settings: "calt" off;
	align-items: center;
	background-color: #200798;
	border-radius: 10px;
	color: #fff !important;
	display: flex;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	justify-content: center;
	letter-spacing: -.16px;
	line-height: 24px;
	padding: 14px 19px;
	text-align: center;
	text-decoration: none !important;
	transition: all .3s ease-in-out;
	width: -moz-fit-content;
	width: fit-content;
	border: none;
	cursor: pointer;
}

.hulpkaart-widget-component__form button:hover {
	background-color: #ee792f;
	color: #200798 !important
}

@media (max-width: 1180px) {
	.hulpkaart-widget-component {
		padding: 32px 20px
	}
}

@container (max-width: 900px) {
	.hulpkaart-widget-component__container {
		flex-direction: column
	}
	.hulpkaart-widget-component__container.reversed {
		flex-direction: column
	}
	.hulpkaart-widget-component__content,
	.hulpkaart-widget-component__image {
		width: 100%
	}
}

.three-section-template .hulpkaart-widget-component {
	padding: 32px 0;
}