* {
    box-sizing: border-box;
}

.tab{
    display: none;
    width: 100%;
    margin: 0px auto;
}

.current {
    display: block;
}

button {
    background-color: #f47d09;
    color: #ffffff;
    border: none;
    padding: 10px 50px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
}


button:hover {
    opacity: 0.8;
}


.previous {
    background-color: #bbbbbb;
}


/* Make circles that indicate the steps of the form: */

.step {
    cursor: pointer;
    margin: 0 5px;
    color: #fff;
    background-color: #bbbbbb;
    border: none;
    border-radius: 5px;
    display: inline-block;
    opacity: 0.8;
	font-size:13px;
    padding: 5px 22px;
}

.step.active {
    opacity: 1;
    background-color: #69c769;
}
.step.finish {
    background-color: #4CAF50;
}
.error {
    color: #f00;
}
.errorTxt{
  display:none !important;
  width:100% !important;
}