
/* Registration step display */
.sr_steps {
  font-family: 'Primary-Condensed', Helvetica, sans-serif;
  display: inline-block;  

  border: 1px solid rgba(0,0,0,.2);
  
  /* Shadow
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,.6);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,.6);
	box-shadow: 0 3px 3px rgba(0,0,0,.6);
  */

  color: white;
  overflow: hidden;
  counter-reset: stepCounter;
  white-space: nowrap;
}

.sr_step {
  position: relative;
  float: left;
  vertical-align: middle;
  overflow: visible;
}

.sr_step_content {
  position: relative;
  display: inline-block;
  height: 100%;
  padding: 0.5em 0 0.5em 0;
  margin: 0 1.5em 0 0;
  z-index: 2;
}

.sr_step:first-child .sr_step_content {
  padding-left: 0.5em;
}

.sr_step:last-child .sr_step_content {
  padding-right: 0.5em;
}

.sr_step_content:before {
  counter-increment: stepCounter;
  content: counter(stepCounter);
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  line-height: 1.5em;
  margin: 0 0.5em 0 0;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
	/*-moz-box-shadow: 0 0 3px rgba(0,0,0,.6);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.6);
	box-shadow: 0 0 3px rgba(0,0,0,.6);*/
}

.sr_step_arrow {
  position: absolute;
  height: 2em;
  width: 2em;
  top: 50%;
  margin-top: -1em;
  right: 0.75em;
  z-index: 1;
  transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
	-moz-box-shadow: 1px -1px 1px rgba(0,0,0,.3);
	-webkit-box-shadow: 1px -1px 1px rgba(0,0,0,.3);
	box-shadow: 1px -1px 1px rgba(0,0,0,.3);
}

.sr_step:last-child .sr_step_arrow {
  display: none;
}

.sr_step:last-child .sr_step_content {
  margin: 0;
}

