.plan-step {
    display: inline-block;
    position: relative;
    box-sizing: border-box;

}
.plan-steps:nth-child(1)::after, .plan-steps:nth-child(2)::after {
    content: " ";
    display: block;
    position: absolute;
    height: 5px;
    background: black;
    width: 40px;
    left: 100%;
    top: calc(50% - 2px);
}
.plan-step:nth-child(2), .plan-step:nth-child(2) {
    margin-left: 40px;
}
.plan-step.active-step, .plan-step.done-step{
    background-color: #FC7136;
    color: #d35723;    }



/* Style the form */
#regForm {
background-color: #ffffff;
min-width: 300px;
}

/* Style the input fields */
input {
padding: 10px;
width: 100%;
font-size: 17px;
border: 1px solid #aaaaaa;
border-radius: 0.35rem;
}

textarea {
    border-radius: 0.35rem;
    padding: 10px;
}

select {
    padding: 4px 4px 4px 2px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
line-height: 40px;
height: 40px;
width: 40px;
margin: 0 2px;
background-color: #FC7136;
border: none;
border-radius: 50%;
display: inline-block;
opacity: 0.5;
color: #fff;
}

/* Mark the active step: */
.step.active {
opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
background-color: #04AA6D;
}   

/*Drag and drop*/
#drop-region {
	background-color: #FC713620;
	border-radius: 10px;
	box-shadow:0 0 25px rgba(175, 78, 37, 0.051);
	padding:60px 40px;
	text-align: center;
	cursor:pointer;
	transition:.3s;
}
#drop-region:hover {
	background-color: #FC713634;
}

#image-preview {
	margin-top:20px;
}
#image-preview .image-view {
    display: inline-block;
	position:relative;
	margin-right: 13px;
	margin-bottom: 13px;
}
#image-preview .image-view img {
    max-width: 100px;
    max-height: 100px;
}
#image-preview .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    background: rgba(255,255,255,0.5);
}

.drop-message span {
    color: #FC7136;
    font-weight: bold;
}
.drop-message span:hover {
    color: #d35723;
}
  .pl-10 {
      padding-left: 10px;
  }

.currencyinput {
    border: 1px inset #ccc;
}
.currencyinput input {
    border: 0;
}