/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*form styles*/
#journey-form {
	text-align: center;
	position: relative;
}
#journey-form fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	width: 100%;
	margin: 10px 0px;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#journey-form fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#journey-form input, #journey-form textarea, #journey-form select, #occupation_modal, #occupation_view select {
	padding: 3px;
	border: none;
  border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	box-sizing: border-box;
	font-family: montserrat;
	color: #009688;
	font-size: 16px;
}
#occupation_view select {
	padding: 10px;
	border: none;
  border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #0091EA;
	font-size: 16px;
}
/*buttons*/
#journey-form .action-button {
	width: 100px;
	background-color: #5298c6;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
  border-radius: 30px;
}
#journey-form .action-button:hover, #journey-form .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #2196f3;
  outline: none;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 15px;
	color: #666;
	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: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#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: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#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: #27AE60;
	color: white;
}

.product-label {
  color: #2196F3;
  font-size: 20px;
}
.mar-top10 {
  margin-top: 10px;
}
.mar-top20 {
  margin-top: 20px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.heading-plus-loan {
  padding: 10px;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
  border-radius: 30px;
  background-color: #EF6C00;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.pl-div-height {
  min-height: 920px;
}
.tc_label {
  font-size: 12px;
  width: 100%;
}
#journey-submit {
  display: none;
}
#sent_msg {
  color: #0091EA;
  font-size: 18px;
  text-align: left !important;
}
input:-webkit-autofill, select:-webkit-autofill {
  box-shadow: 0 0 0 30px white inset;
  -webkit-box-shadow: 0 0 0 30px white inset;
  -webkit-text-fill-color: #009688;
}
input::placeholder {
  color: #EF6C00;
  font-size: 14px;
}

.has-error {
	text-align: left;
}

select.error, input.error {
  background-image: none !important;
  color: #D50000 !important;
  box-shadow: 0 0 0 30px white inset;
}
select.valid, input.valid {
  background-image: none !important;
  box-shadow: 0 0 0 30px white inset;
}
fieldset .controls {
  /*width: 50%;*/
}
.form-error.alert.alert-danger{text-align: left;}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.pl-send-otp {
  font-weight: 400;
}
.pl-send-otp-i {
  font-size: 18px;
  color: #f2753e;
}
.cust-check {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
   padding: 0px 0px 0px 30px;
   font-size: 18px;
    border: none;
}

.cust-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


.checkmark-cust {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}


.cust-check:hover input ~ .checkmark-cust {
  background-color: #ccc;
}


.cust-check input:checked ~ .checkmark-cust {
  background-color: #2196F3;
}


.checkmark-cust:after {
  content: "";
  position: absolute;
  display: none;
}


.cust-check input:checked ~ .checkmark-cust:after {
  display: block;
}


.cust-check .checkmark-cust: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);
}