
 
 
.form-register .steps { 
	background: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.form-register .steps ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    width: 100%;
}
.form-register .steps li,
.form-register .steps li.current {
	outline: none;
	-o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    position: relative;
    width: 33.33%;
    padding: 16.5px 37px;
}
.form-register .steps li::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 75px;
	background: #e5e5e5;
	top: 0;
	left: 100%;
}
.form-register .steps li:first-child {
	width: 37.59%;
}
.form-register .steps li:last-child {
	width: 31.15%;
}
.form-register .steps li:last-child::after {
	content: none;
}
.form-register .steps li .current-info {
	display: none;
}
.form-register .steps li a {
	text-decoration: none;
	outline: none;
	-o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
}
.form-register .steps li a .title {
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	-o-justify-content: space-around;
    -ms-justify-content: space-around;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
}
.form-register .steps li a .title .step-icon { 
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    outline: none;
    -o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    color: #666;
    font-size: 18px;
}
.form-register .steps li a .step-icon i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.form-register .steps li.current a .step-icon,
.form-register .steps li.current a:active .step-icon {
	background: rgba(37, 180, 91, 0.2);
	border:  1px solid #25b45b;
	color: #25b45b;
}
.form-register .steps li.done a .step-icon,
.form-register .steps li.done a:active .step-icon {
    background: #25b45b;
    color: #fff;
}
.form-register .steps li a .step-text {
	color: #333;
	padding-top: 10px;
}
 
 
.form-register .content h2 {
	display: none;
} 
.form-register .actions {
	padding: 0 45px 45px;
}
.actions ul {
	list-style: none;
	padding-left: 0;
    margin: 15px 0 0;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
}
.actions ul li.disabled,
.actions ul li:first-child {
	opacity: 0;
}
.actions ul li {
	padding: 0;
    border: none;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    background: #25b45b;
    cursor: pointer;
}
.actions ul li:hover {
	background: #219c50;
}
.actions ul li a {
	color: #fff;
	text-decoration: none;
    padding: 11px 20px;
}
.actions ul li:first-child a {
	color: #666;
}
.actions ul li a i {
	font-size: 26px;
}

/* Responsive */
@media screen and (max-width: 1199px) {

 
 
	.form-register .actions {
	    padding: 0 30px 45px;
	}
}
@media screen and (max-width: 991px) {
	.form-register .steps li a .title {
		flex-direction: column;
		-o-flex-direction: column;
		-ms-flex-direction: column;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		align-items: center;
		-o-align-items: center;
		-ms-align-items: center;
		-moz-align-items: center;
		-webkit-align-items: center;
	}
	.form-register .steps li:first-child,
	.form-register .steps li:last-child {
		width: 33.33%;
	}
}
@media screen and (max-width: 991px) and (min-width: 768px) {
	.form-register .steps li::after {
		height: 109px;
	}
}
@media screen and (max-width: 767px) {
	.form-register .steps li::after {
		content: none;
	}
	.form-register .steps li, 
	.form-register .steps li.current {
	    padding: 16.5px 10px;
    	text-align: center;
	}
 
}
@media screen and (max-width: 575px) {
	 
	.form-register .steps li, .form-register .steps li.current {
		padding-right: 5px;
	}
	.form-register .steps li::before {
		width: 65px;
		top: 15%;
    	left: 70%;
	}
	.form-register .steps li.current::after {
		left: 28%;
	}
 
	
} 