html {
	height: 100%;
/*
	background-color: #e3e9ee;
*/
}

html, body {
	font-family: 'Poppins', sans-serif !important;
	font-size: 14px;
	width: 100%;
}
h3{
	font-weight: 600 !important;
}
a {
	color: #d91b5b;
	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: 25px auto;
	
	position: relative;
}
#msform fieldset {
	background: #fff;
	border: 0 none;
	border-radius: 5px;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0% 20px;
	
	/*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: #8b9ab0;
	font-size: 12px;
}

#msform label {
	padding-right:0px 15px;
	font-size: 14px;
	text-align: left;
	
/*
	font-weight:600px !important;
*/
}


/* Inputs */
#msform input, #msform textarea, #msform select {
	padding: 4px 4px 4px 20px;
	border: 1px solid transparent;
	border-radius: 3px;
	margin-bottom: 6px;
	margin-top: 2px;
	background-color: #f0f4f7;
	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: #7bbdf3;
}

/* Buttons */

#msform .submitbutton {
	width: 30%;
	text-transform: uppercase;
	background: #d91b5b;
	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: #18273d;
	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 #7bbdf3;
	color: #7bbdf3;
}

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

/* Headings */
.fs-title {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 20px;
	background-color: #18273d;
	margin-top: 5px;
	padding:10px 15px;
	color:#fff;
}
.fs-subtitle {
	font-weight: 400;
	font-size: 19px;
	color: #434a54;
	margin-bottom: 20px;
}

/* Progressbar */
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: #8b9ab0;
	text-transform: uppercase;
	font-size: 9px;
	width: 25%;
	float: left;
	position: relative;
	text-align: center;
}
#progressbar li.active {
	color: #18273d;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3em;
	margin: 0 auto 5px auto;
	text-align: center;
}

/* Progressbar connectors */
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	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: #18273d;
	color: white;
}

/* css for checkbox */

/* The container */
#msform .checkstyle {
  display: inline-flex;
  position: relative;
  width: auto;
  padding-left: 35px;
  padding-right: 25px;
  padding-top: 7px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  
  -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: 7px;
  left: 0;
  height: 20px;
  width: 20px;
  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;
}

}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/Spinner.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .5;
}

.error
{
color:red !important;
font-size: 10px !important;
}

.form-group.required .control-label:after {
  content:"*";
  color:red;
}

#soft_value, #hard_value{
display:none;
}

.iti{
	width: 100%;

}

#msform .iti input{
	padding-left: 50px;
}
#msform input.col-sm-3{
	width: 20%;
   margin-left: 16px;
}

.input-symbol-dollar {
    position: relative;
}
.input-symbol-dollar input {
    padding-left:18px;
}
.input-symbol-dollar:before {
    position: absolute;
    top: 0;
    content:"$";
    left: 8px;
}


