a {
	color: #555555;
	text-decoration: none;
	font-weight: 600;
	padding-bottom: 3px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

a:hover {
	border-bottom: 1px solid;
}

.navbar-brand > img {
	max-width: 240px;
}



/* Form styles */

#msform {
	width: 100%;
	margin: 30px auto;
	position: relative;
}

#msform fieldset {
	border: 1px solid #fff;
	border-radius: 5px;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0% 20px;
	padding: 15px;
	/*stacking fieldsets above each other*/
	position: relative;
}


/* Hide all except first fieldset */

#msform fieldset:not(:first-of-type) {
	display: none;
}

/* img.logo {

	max-width: 155px;

	margin-top: 5px;

} */

#msform p {
	color: #333333;
	font-size: 14px;
	text-align: left;
	font-weight: bold;
	margin:5px 0;
}

#msform label {
	padding-right: 10px;
	font-size: 16px;
	text-align: left;
/*

	font-weight:600px !important;

*/;
}

.width40per{
	width: 40%;
}
.width50per{
	width: 50%;
}
.width60per{
	width: 60%;
}

/* Inputs */

#msform input[type=text], #msform textarea {
	padding: 5px 15px;
	border: 1px solid transparent;
	border-radius: 3px;
	margin-bottom: 10px;
	margin-top: 5px;
	background-color: #eef5ff;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #333;
	font-size: 14px;
	font-family: inherit;
}

#msform input:focus, #msform textarea:focus {
	outline: none;
	border-color: #555555;
}



/* Buttons */



#msform .submitbutton {
	width: 30%;
	text-transform: uppercase;
	background: #555555;
	font-weight: bold;
	color: white;
	border: 1px solid transparent;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px 5px;
	margin: 10px 0;
	font-size: 16px;
	display: inline-block;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

#msform .action-button {
	width: 30%;
	text-transform: uppercase;
	background: #555555;
	font-weight: bold;
	color: white;
	border: 1px solid transparent;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px 5px;
	margin: 10px 0;
	font-size: 16px;
	display: inline-block;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

#msform .previous.action-button {
	background: #fff;
	border: 1px solid #555555;
	color: #555555;
}

#msform .action-button:hover, #msform .action-button:focus {
	background: #dcab28;
	color: #555555;
	box-shadow: 0 10px 30px 1px rgba(0, 0, 0, 0.2);
}



/* Headings */

.fs-title {
	font-size: 20px;
	font-weight: 400;
	color: #a94442;
	margin-bottom: 20px;
	background-color: #9999CC;
	margin-top: 20px;
	padding: 5px;
	color: #fff;
}

.fs-subtitle {
	font-weight: 400;
	font-size: 19px;
	color: #434a54;
	margin-bottom: 20px;
}



/* Progressbar */

#progressbar {
	margin-bottom: 30px;
	padding-top: 10px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}

#progressbar li {
	list-style-type: none;
	color: #000;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 12px;
	width: 20%;
	float: left;
	position: relative;
	text-align: center;
}


/* @media (max-width: 768px) {
	#progressbar li {
		color:transparent;
	}
} */


#progressbar li.active {
	color: #fff;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 30px;
	line-height: 28px;
	display: block;
	font-size: 13px;
	color: #333;
	background: #caab76;
	border-radius: 3em;
	margin: -5px auto 5px auto;
	text-align: center;
	border:1px solid #555555;
}



/* Progressbar connectors */

#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #caab76;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1;
}

#progressbar li:first-child:after {
	/* connector not needed before the first step */
	content: none;
}



/* Marking active/completed steps green */

/*The number of the step and the connector before it = green*/

#progressbar li.active:before,  #progressbar li.active:after {
	background: #555555;
	color: white;
}



/* css for checkbox */



/* The container */

#msform .checkstyle {
	display: inline-flex;
	position: relative;
	width: auto;
	padding-left: 35px;
	padding-right: 25px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}



/* Hide the browser's default checkbox */

#msform .checkstyle input {

  position: absolute;

  opacity: 0;

  cursor: pointer;

  height: 0;

  width: 0;

}



/* Create a custom checkbox */

#msform .checkmark {

  position: absolute;

  top: 0;

  left: 0;

  height: 25px;

  width: 25px;

  background-color: #eee;

}



/* On mouse-over, add a grey background color */

#msform .checkstyle:hover input ~ .checkmark {

  background-color: #ccc;

}



/* When the checkbox is checked, add a blue background */

#msform .checkstyle input:checked ~ .checkmark {

  background-color: #2196F3;

}



/* Create the checkmark/indicator (hidden when not checked) */

#msform .checkmark:after {

  content: "";

  position: absolute;

  display: none;

}



/* Show the checkmark when checked */

#msform .checkstyle input:checked ~ .checkmark:after {

  display: block;

}



/* Style the checkmark/indicator */

#msform .checkstyle .checkmark:after {

  left: 9px;

  top: 5px;

  width: 5px;

  height: 10px;

  border: solid white;

  border-width: 0 3px 3px 0;

  -webkit-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  transform: rotate(45deg);

}



.terms_text a:hover {

    text-decoration:none !important;

}



.listordercls {

	line-height: 25px !important;

	font-size:13px !important;

	list-style: none !important;

	padding-left:0px !important;

}



/* Header */
/* 
header {

	margin: 0;

	padding: 0;

	position: sticky;

	position: -webkit-sticky;

	top: 0;

	z-index: 999;

	border-bottom: 1px solid #00000024;

}

header .navbar {

	margin: 0;

	padding: 0;

	background-color: #fff;

	border-radius: 0px;

} */



/* Footer */
/* 
footer {

	margin: 0;

	padding: 55px 0 50px;

	float: left;

	width: 100%;

	text-align: center;

}

footer img {

	max-height: 60px;

	margin-bottom: 35px;

}

.footer-img2 {

	margin-left: auto;

	margin-right: auto;

	display: table;

	width: auto;

	float: none;

}

.footer-img3 {

	float: right;

}

footer p {

	margin-bottom: 2px;

	color: #272727;

	font-size: 13px;

}

footer a {

	color: #272727;

	font-size: 13px;

}
 */




@media (max-width:480px){



/* .navbar-brand > img{

	max-width:180px !important; 

} */



#enroltextcls{

	font-size: 14px !important;

}



}

.fl-l {

	float: left;

	padding-left: 15px;

}

.pt-30 {

	padding-top: 30px;

}

.f-12 {

	font-size: 10px;

}