
/*-- Second Step --*/

#form-step-wrap{
  position: relative;
  overflow-x: hidden;
	width: 100%;
}

/* Each Step */
.slider-step{
	opacity: 0;
	-webkit-transition:all, 0.3s linear;
	-moz-transition: all, 0.3s linear;
	-ms-transition: all, 0.3s linear;
	-o-transition: all, 0.3s linear;
	transition: all, 0.3s linear;
}

/* Show the 1st step */
.first-step{
  right: 0;
  opacity: 1;
}
.second-step{
	display: none;
}

/* Animations Settings */
[data-anim="show-from--right"]{
  right: 0;
  opacity: 1;
  display: block;
}
[data-anim="show-from--left"]{
  right: 0;
  opacity: 1;
}
[data-anim="hide-to--right"]{
  right: -50%;
  opacity: 0;
}
[data-anim="hide-to--left"]{
  opacity: 0;
  display: none;
}

/*-- State Dropdown CSS ----*/
.custom-combobox {
	position: relative;
	display: inline-block;
	width: 100%;
}
.custom-combobox-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	margin-left: -28px;
	padding: 0;
	background: none;
	border-left: none;
	border-radius: 0 10px 10px 0;
}
.custom-combobox-input {
	margin: 0;
	padding: 14px 10px;
	width: 100%;
	background: #fff!important;
	border-radius: 10px;
}
input, textarea{
	border-radius: 10px!important;
}

.multi-btn-back{
	background: lightgray;
	color: #000;
	border: lightgray;
}
.multi-btn-back:hover {
	background-color: lightgray!important;
	border-color: lightgray;
	color: #000;
}
