/*progress-indicator*/
.progress-indicator {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: table;
  table-layout: fixed;
}

.progress-indicator > li {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 1.5em;
}

.progress-indicator > li span {
  position: absolute;
  color: #e6e6e6;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05px;
  text-transform: uppercase;
}

.progress-indicator > li::before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #e6e6e6;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  margin-bottom: 0.25em;
  line-height: 1.5em;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.progress-indicator > li::after {
  content: '';
  position: absolute;
  display: block;
  background: #e6e6e6;
  width: 100%;
  height: 0.15em;
  top: 50%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  left: 50%;
  margin-left: 1.5em\9;
  z-index: 0;
}

.progress-indicator > li:last-child:after {
  display: none;
}

.progress-indicator > li.is-complete {
  color: #1779ba;
}

.progress-indicator > li.is-complete::before, .progress-indicator > li.is-complete::after {
  color: #fefefe;
  background: #1779ba;
}

.progress-indicator > li.is-complete::before {
    background-image: url(images/confirm-lightblue_60.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65%;
    content: ".";
    color: rgba(0, 0, 0, 0);;
}

.progress-indicator > li.is-complete span {
  color: #1779ba;
}

.progress-indicator > li.is-current {
  color: #4eabe9;
}

.progress-indicator > li.is-current::before {
  color: #fefefe;
  background: #4eabe9;
}

.progress-indicator > li.is-current span {
  color: #4eabe9;
}

/*mobile-app-toggle*/
.mobile-app-toggle {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #999;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.mobile-app-toggle .button {
  background: #fefefe;
  color: #999;
  margin-bottom: 0;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.mobile-app-toggle .button {
  border: 0;
  border-left: 1px solid #999;
}

.mobile-app-toggle .button:first-child {
  border-left: 0px;
}

.mobile-app-toggle .button.is-active {
  background: #999;
  color: #fefefe;
}

/*mobile-app-vertical-toggle*/
.mobile-app-vertical-toggle {
  width: 100%;
  overflow: hidden;
}

.mobile-app-vertical-toggle .button {
  background: #fefefe;
  color: #999;
  width: 100%;
  border: 1px solid #999;
  border-radius: 50px;
  font-weight: bold;
  padding: .9em 1.1em;
}

.mobile-app-vertical-toggle .button:last-child {
	margin-bottom: 0;
}

.mobile-app-vertical-toggle .button.is-active {
  background: #2AB558;
  color: #fefefe;
}
/*Slider*/
.slider-handle {
	width: 2rem;
	height: 2rem;
	border-radius: 50px;
}
input.slider-value-output {
	    width: 100px;
	text-align: center;
	/* border: none; */
	background-color: white;
	border-radius: 5px;
	margin: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	padding-left: 10px;
	margin: auto;
	margin-bottom: 25px;
	height: 25px;
}
/*switch*/
.switch .switch-active {
	left: 15%;
}
.switch.round {
    border-radius: 1000px;
}
.switch.round label {
    border-radius: 2rem;
}
.switch.round label:after {
    border-radius: 2em;
}
