/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
/*basic reset*/
* {
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
background-image: url("../bg.png");
background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
body {
  font-family: "Open Sans", arial, verdana;
}

button#nav-left, button#nav-right{
    background-color: #4ec4d7a6;
}
.red {  /* for error messages */
       color: red;
    float: right;
    margin-top: -35px;
    z-index: 999999999;
    position: relative;
    margin-right: 2%;
}
 
input.error {  /* for the error input text fields */
   border: 1px red inset !important;
   padding: 2px;
}
/*form styles*/
#msform {
  width: 600px;
  margin: 14px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: #ffffff47;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
     width: 112%;
    margin: 0 -2%;
  /*stacking fieldsets above each other*/
  position: absolute;
height:400px;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input,
#msform textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: hsl(190, 74%, 44%);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 20px 5px;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #67d5bf;
}
/*headings*/
.fs-title {
  font-size: 18px;
  color: #00529c;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}
/*progressbar*/

#myProgress {
    width: 100%;
    background-color: white;
	height: 8px;
margin-bottom:8px;
}
#myProgress .step1 {
    width: 17%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .step2 {
    width: 34%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .step3 {
    width: 51%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .step4 {
    width: 68%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .step5 {
    width: 84%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .step6 {
    width: 100%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .retailstep1 {
    width: 14%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .retailstep2 {
    width: 28%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .retailstep3 {
    width: 42%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .retailstep4 {
    width: 56%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .retailstep5 {
    width: 70%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .retailstep6 {
    width: 84%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .retailstep7 {
    width: 100%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .retailinner2 {
	 width: 40%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .retailinner3 {
	 width: 60%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .retailinner4 {
	 width: 80%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .retailinner5 {
	 width: 100%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .existing4 {
	 width: 73%;
    height: 8px;
    background-color: #19a5be;
}
#myProgress .existing5 {
	 width: 87%;
    height: 8px;
    background-color: #19a5be;
}

#myProgress .existing6 {
	 width: 100%;
    height: 8px;
    background-color: #19a5be;
}
#progressbar {
  margin-bottom: 8px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
display:none;
}
#progressbar li {
  list-style-type: none;
  color: #ffffff00;
  text-transform: uppercase;
  font-size: 9px;
  width: 14%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 8px;
  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:after {
  background: #19a5be;
  color: white;
}
.help-block {
  font-size: .8em;
  color: #7c7c7c;
  text-align: left;
  margin-bottom: .5em;
}
