.goesf_form-breadcrumb { 
  list-style: none; 
  overflow: hidden; 
  font: 18px Helvetica, Arial, Sans-Serif;
  margin: 40px;
  padding: 0;
}
.goesf_form-breadcrumb li { 
  float: left; 
}
.goesf_form-breadcrumb li {
  color: white;
  text-decoration: none; 
  padding: 10px 0 10px 55px;
  background: brown; /* fallback color */
  background: hsla(34,85%,35%,1); 
  position: relative; 
  display: block;
  float: left;
}
.goesf_form-breadcrumb li:after { 
  content: " "; 
  display: block; 
  width: 0; 
  height: 0;
  border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
  border-bottom: 50px solid transparent;
  border-left: 30px solid hsla(34,85%,35%,1);
  position: absolute;
  top: 50%;
  margin-top: -50px; 
  left: 100%;
  z-index: 2; 
}   
.goesf_form-breadcrumb li:before { 
  content: " "; 
  display: block; 
  width: 0; 
  height: 0;
  border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
  border-bottom: 50px solid transparent;
  border-left: 30px solid white;
  position: absolute;
  top: 50%;
  margin-top: -50px; 
  margin-left: 1px;
  left: 100%;
  z-index: 1; 
}   
.goesf_form-breadcrumb li:first-child {
  padding-left: 10px;
}
.goesf_form-breadcrumb li:nth-child(2)       { background:        hsla(34,85%,45%,1); }
.goesf_form-breadcrumb li:nth-child(2):after { border-left-color: hsla(34,85%,45%,1); }
.goesf_form-breadcrumb li:nth-child(3)       { background:        hsla(34,85%,55%,1); }
.goesf_form-breadcrumb li:nth-child(3):after { border-left-color: hsla(34,85%,55%,1); }
.goesf_form-breadcrumb li:nth-child(4)       { background:        hsla(34,85%,65%,1); }
.goesf_form-breadcrumb li:nth-child(4):after { border-left-color: hsla(34,85%,65%,1); }
.goesf_form-breadcrumb li:nth-child(5)       { background:        hsla(34,85%,75%,1); }
.goesf_form-breadcrumb li:nth-child(5):after { border-left-color: hsla(34,85%,75%,1); }
.goesf_form-breadcrumb li:last-child {
  background: transparent !important;
  color: black;
  pointer-events: none;
  cursor: default;
}
.goesf_form-breadcrumb li:last-child:after { border: 0; }
.goesf_form-breadcrumb li:hover { background: hsla(34,85%,25%,1); }
.goesf_form-breadcrumb li:hover:after { border-left-color: hsla(34,85%,25%,1) !important; }


.steps {
  margin: 40px;
  padding: 0;
  overflow: hidden;
}
.steps {
  color: white;
  text-decoration: none;
}
.steps em {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.steps li {
  float: left;
  margin-left: 0;
  width: 150px; /* 100 / number of steps */
  height: 70px; /* total height */
  list-style-type: none;
  padding: 5px 5px 5px 30px; /* padding around text, last should include arrow width */
  border-right: 3px solid white; /* width: gap between arrows, color: background of document */
  position: relative;
}
/* remove extra padding on the first object since it doesn't have an arrow to the left */
.steps li:first-child {
  padding-left: 5px;
}
/* white arrow to the left to "erase" background (starting from the 2nd object) */
.steps li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 25px solid white; /* width: arrow width, color: background of document */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}
/* colored arrow to the right */
.steps li::after {
  z-index: 1; /* need to bring this above the next item */
  position: absolute;
  top: 0;
  right: -25px; /* arrow width (negated) */
  display: block;
  border-left: 25px solid #7c8437; /* width: arrow width */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width:0;
  height:0;
  content: " ";
}

/* Setup colors (both the background and the arrow) */

/* Completed */
.steps li { background-color: #7C8437; }
.steps li::after { border-left-color: #7c8437; }

/* Current */
.steps li.current { background-color: #C36615; }
.steps li.current::after { border-left-color: #C36615; }

/* Following */
.steps li.current ~ li { background-color: #EBEBEB; }
.steps li.current ~ li::after { border-left-color: #EBEBEB; }

/* Hover for completed and current */
.steps li:hover {background-color: #696}
.steps li:hover::after {border-left-color: #696}



.arrows { 
	white-space: nowrap;
	padding-left: 0;
 }
.arrows li {
    display: inline-block;
    line-height: 20px;
    margin: 0 9px 0 -10px;
    padding: 0 20px;
    position: relative;
}
.arrows li::before,
.arrows li::after {
    border-right: 1px solid #666666;
    content: '';
    display: block;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transform: skewX(45deg);   
}
.arrows li::after {
    bottom: 0;
    top: auto;
    transform: skewX(-45deg);
}

.arrows li:last-of-type::before, 
.arrows li:last-of-type::after { 
    display: none; 
}

.arrows li { 
   /* font: bold 24px Sans-Serif;   */
   letter-spacing: -1px; 
   text-decoration: none;
}
.arrows li.active { 
  font: bold;
	text-decoration:underline;
}

.arrows li:nth-of-type(1) { color: hsl(0, 0%, 70%); } 
.arrows li:nth-of-type(2) { color: hsl(0, 0%, 65%); } 
.arrows li:nth-of-type(3) { color: hsl(0, 0%, 50%); } 
.arrows li:nth-of-type(4) { color: hsl(0, 0%, 45%); } 

.form-hint {
	color: #cc2222; 
	padding: 5px 10px; 
	margin-bottom: 10px;
	position: relative;
}
.form-hint.fee {
	padding: 20px;
}
.form-hint.fee a {
	border: solid 1px #000;
	padding: 1px 7px;
	border-radius: 3px;
	right: -5px;
}

.selected-values {
/* 	color: #777777; */
	margin-left: 20px;
}

.selected-values tr td:first-child {
	padding-right: 10px;
}

.selected-values tr td {
	padding-left: 10px;
}

.selected-values-section {
	line-height: 30px;
}

.selected-values-section .section-header {
	font-weight: 600;
	padding-left: 0;
}

.goesf_form .required {
	color: #f00;
	font-weight: 600;
}

.goesf_form-new-value-section {
/* 	float: left; */
/* 	width: 60%; */
	padding-right: 20px;
}

.goesf_form-slection_summary-sep {
		height: 3px;
/* 	padding-top: 8px;	 */
}

.goesf_form-slection_summary-sep td hr {
	margin: 0;
}

.goesf_form-new-value-section-content {
	margin-left: 20px;
}

.goesf_form-new-value-section-content label span {
	padding-left: 10px;
}

.goesf_form-new-value-section h3 {
	font-size: 1.5rem;
	padding-top: 15px;
}

.goesf_form .radio {
	margin-left: 25px;
}

.goesf_form-info textarea {
	min-height: 120px;
}

.actions {
	padding: 20px 10px;
}

.hint {
	padding-left: 10px;
	color: #ee4444;
}

.goesf_form-selected-header {
	font-size: 18px;
	font-weight: 700;
	color: #666;
}

.goesf_form-selected-values {
/* 	float: left; */
	background-color: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
/*     width: 40%; */
}

.goesf_form-selected-values .selected-values {
	color: #777777;
}

.contact-phone-repeatable-container > div {
	float: left;
}
.contact-phone-repeatable-container > div:first-of-type {
	padding-right: 10px;
}


.goesf_form .btn.btn-cancel {
	border: solid 1px #ddd;
	border-radius: 3px;
}
.goesf_form .btn.btn-cancel:hover {
	border: solid 1px #00a0ff;
	background-color: #eeeeff;
}

.goesf_form .btn.btn-default.btn-sm:hover {
	background-color: #006bcd;
}

.goesf_form-repeatable .control-label {
/* 	margin-left:auto;  */
/* 	margin-right:0; */
/* 	float: right; */
	position: relative;
}
.goesf_form-repeatable .control-label .btn-group {
	position: absolute;
	right: 0;	
}

.goesf_form-repeatable .btn {
	background-color: #007bff;
	border-color: #007bff;
	color: #fff;
}

.goesf_form-repeatable {
    padding: 10px;
}

.goesf_form-new-value-section-content fieldset:nth-of-type(2) {
	background-color: #f6f6f6;
    border-radius: 10px;
}

.goesf_form_hint {
/* 	float: left; */
	padding-top: 15px;
/* 	width: 60%; */
}

.right {
	position: absolute;
	right: 0;
}

.error.help-block {
	color: red;
/* 	border: solid 1px darkgray; */
}

