.frmEnBox {
	display: none;
	position: fixed;
	left: 50%; 
	top: 50%; 
	transform: translate(-50%, -50%);
	background-color: #fff;
	z-index: 99;
	padding: 20px 10px;
	padding-top: 0;
	border-radius: 20px;
	width: 280px;
}
.frmEnBg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #ccc;
	opacity: 0.7;
	z-index: 9;
	max-width: 100%;
}
.frmen__close {
	position: absolute;
	top: 10px;
	right: 10px;
}
.frmen__close img {
	width: 16px;
}
.frmen__title {
	text-align: center;
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
}
.frmen__txt {
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	margin-bottom: 10px;
}
.frmen__txt2 {
	font-weight: bold;
}
.frmen {
	display: flex;
	flex-direction: column;
}
.frmen__group {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}
.frmen__input {
	padding: 18px 16px;
	outline: none;
	border: 0;
	border-radius: 30px;
	background-color: #e8e8e8;
	font-size: 16px;
}
.frmen__input.error {
	border: 1px solid red;
}
.frmen__select {
	width: 100%;
	padding: 16px 16px;
	outline: none;
	border: 0;
	border-radius: 20px;
	background-color: #e8e8e8;
	margin-bottom: 20px;
	font-size: 15px;
}
.frmen__textarea {
	font-size: 16px;
	padding: 18px 16px;
	outline: none;
	border: 0;
	border-radius: 30px;
	background-color: #e8e8e8;
	font-family: arial;
}
.frmen__checkbox {
	outline: none;
}
.frmen__radio {
	outline: none;
}
.frmen__btn {
	padding: 12px 10px;
	outline: none;
	border: 0;
	color: #fff !important;
	font-size: 16px;
	border-radius: 20px;
	background-color: #ad2723 !important;
	margin-bottom: 20px;
}
.frmen__ul {
	display: flex;
	justify-content: space-between;
	padding: 0;
	list-style: none;
	font-size: 14px;
}
.frmen__disclaimer {
	display: flex;
	grid-gap: 10px;
	margin-bottom: 20px;
}
.frmen__disclaimer__right {
	font-size: 12px;
}
.frmen__step {
	display: none;
}
.frmen__step.s2 {
	margin-top: 20px;
}
.frmen__errmsg {
	display: none;
	text-align: center;
	font-size: 13px;
	color: #fff;
	background-color: red;
	margin-bottom: 10px;
	padding: 4px 0;
	border-radius: 20px;
}

@media screen and (min-width: 360px) {

	.frmEnBox {
		padding: 20px 16px;
		width: 310px;
	}
	.frmen__close {
		top: 16px;
		right: 16px;
	}

}

@media screen and (min-width: 500px) {

	.frmBox {
		padding: 20px 20px;
		width: 400px;
	}

}