/*FORM-section*/
#form {
	padding: 20px 20px;
	background-color: #fff;
	box-shadow: 0 0 5px 2px #17469e3c;
	margin-top: 0px;
	margin: 0px;
	border-radius: 10px;
}

.frm-heading h5 {
	text-align: center;
	font-size: 20px;
	color: #003399;
	margin: 0px;
}

.frm-heading p {
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	padding: 0px 0px 0px 0px; color:#003399;
	/* margin-top: -18px; */
}

label {
	color: #000;
	font-weight: 500;
	padding-top: 5px;
}

.form-control {
	line-height: 1.5;
	background-color: #fff !important;
	border: 1px solid #ccc !important;
	font-size: 0.75em;
	margin-bottom: 10px; font-size: 13px!important;
}

.required {
	color: red;
}

.sub-btn {
	background-color: #62B239;
	color: #fff;
	width: 100%;
	border-style: none;
	padding: 5px;
	border-radius: 3px;
	font-weight: 500;
}

/*popup Start*/

.modal {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh!important;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4); padding: 0px!important;
	
}

.modal-content {
    position: relative;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 300px!important;
	margin:5% auto;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.4);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0; 
	padding: 0px!important;
}

/* .modal-content {
	background-color: transparent !important;
	margin: 5% auto;
	border-style: none;
	width: 35%;
} */

/* Close button style */
.close {
	color: #fff;
	/* width: 40px; */
	float: right;
	/* padding: 0px 8px; */
	/* padding-left: 10px; */
	font-size: 28px;
	position: absolute;
	font-weight: bold;
	color: #707070;
	margin-left: 87%;
	padding: 0px 5px;
	margin-top:5px;

}

.close:hover,
.close:focus {
	color: red;
	text-decoration: none;
	cursor: pointer;
}



@media (max-width: 480px) {
	.modal {
		display: none;
		position: fixed;
		/* z-index: 1; */
		left: 0;
		top: 0;
		width: 100%;
		/* height: auto; */
		overflow: auto;
		background-color: rgba(0, 0, 0, 0.4);
		transition: opacity 0.5s ease-in-out;
	}

	.modal-content {
		margin: 35% auto;
		/* padding: 20px; */
		width: 83%;
		background-color: transparent;
		border-style: none;
	}

	/* Close button style */
	.close {
		color: #aaa;
		float: right;
		font-size: 28px;
		font-weight: bold;
		position: absolute;
		margin-left: 88%;
		margin-top: 5px;
	}

	.close:hover,
	.close:focus {
		color: red;
		text-decoration: none;
		cursor: pointer;
	}
}