.keynoteFormPopup {
	display: none;
	justify-content: center;
	align-items: flex-start;
	position: fixed;
	padding: 20px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgb(0 0 0 / 50%);
	overflow: auto;
}

.keynoteFormPopup.show {
	display: flex;
}

.keynoteFormPopup__Dialogue {
	width: 100%;
	max-width: 800px;
	background: #fff;
	padding: 40px;
	position: relative;
}

.keynoteFormPopup__Dialogue h2 {
	font-family: Golos Text;
	font-size: 36px;
	font-weight: 500;
	line-height: 43.2px;
	letter-spacing: -0.04em;
	text-align: center;
	color: #1b166d;
	margin: 0 0 10px;
}

.keynoteFormPopup__Dialogue p {
	font-family: Golos Text;
	font-size: 12px;
	font-weight: 400;
	line-height: 14.4px;
	letter-spacing: -0.02em;
	text-align: center;
	color: #000;
	max-width: 500px;
	margin: auto;
}

.keynoteFormPopup__Close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px 20px;
	background: #F4CF1E;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Golos Text;
	font-size: 20px;
	font-weight: 500 !important;
	line-height: 20px;
	letter-spacing: -0.04em;
	color: #000;
	text-decoration: none !important;
	transition: 0.3s ease;
}

.keynoteFormPopup__Close:hover {
	background: #000;
	color: #F4CF1E;
}

.keynoteFormPopup__Form {
	padding: 30px 0 0;
}

.keynoteFormPopup__Form .form-title {
	display: none;
}

.keynoteFormPopup__Form form {
	background: none;
	display: flex;
	flex-wrap: wrap;
}

.keynoteFormPopup__Form label {
	font-family: Golos Text;
	font-size: 12px;
	font-weight: 500;
	line-height: 14.4px;
	letter-spacing: -0.04em;
	color: #1b166d;
}

.keynoteFormPopup__Form input, .keynoteFormPopup__Form textarea {
	height: 30px;
	padding: 0 16px !important;
	background: #1b166d!important;!;
	color: #fff !important;
	border-radius: 0 !important;
	border: 0 !important;
	font-family: Golos Text;
	font-size: 12px !important;
	font-weight: 500;
	line-height: 14.4px;
	letter-spacing: -0.04em;
	outline: 0;
}

.keynoteFormPopup__Form textarea {
	height: 100px;
	padding-top: 10px !important;
}

.keynoteFormPopup__Form .hs-form-field {
	margin: 0 0 20px;
	width: 100%;
}

.keynoteFormPopup__Form .hs_firstname, .keynoteFormPopup__Form .hs_email {
	width: 50%;
	padding-right: 8px;
}

.keynoteFormPopup__Form .hs_lastname, .keynoteFormPopup__Form .hs_company {
	width: 50%;
	padding-left: 8px;
}

.keynoteFormPopup__Form  .hs-button, .keynoteFormPopup__Form  input[type=submit] {
	background: #F4CF1E!important;
	color: #000 !important;
	font-size: 18px !important;
	height: 35px !important;
	padding: 0 30px !important;
}

.keynoteFormPopup__Dialogue .submitted-message {
    background: none;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    max-width: 400px;
    margin: auto;
}

.keynoteFormPopup__Dialogue .submitted-message span {
    font-size: 19px !important;
    color: #000 !important;
}

@media screen and (max-width: 768px) {
	.keynoteFormPopup__Dialogue h2 {
		font-size: 32px !important;
		line-height: 42px !important;
	}

	.keynoteFormPopup__Dialogue {
		padding: 20px;
	}

	.keynoteFormPopup__Form .hs_firstname, .keynoteFormPopup__Form .hs_email {
		width: 100%;
		padding-right: 0;
	}

	.keynoteFormPopup__Form .hs_lastname, .keynoteFormPopup__Form .hs_company {
		width: 100%;
		padding-left: 0;
	}
}