html,body{
	margin: 0;
	padding: 0;
	clear: both;
}

body{
	background-color: #F5F5F5;
	font-family: 'Open Sans', sans-serif;
}

.box {
    position: relative;
    width: 100%;
}
  
.box:after {
	background: linear-gradient(to right, #E3E3E3 15%,#C7C7C9 15%, #C7C7C9 30%, #D4085C 30%, #D4085C 45%, #F49E00 45%, #F49E00 60%, #C0C723 60%, #C0C723 75%, #86A2CE 75%, #86A2CE 90%, #E4719E 90%);
	position: absolute;
	content: '';
	height: 6px;
	right: 0;
	left: 0;
	top: 0;
}

.my-box{
	background-color: #fff;
	padding: 30px 10px;
	border: none;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	text-align: center;
}

.heading-step{
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	color: rgb(6, 0, 90);
}

.step-icon{
	font-size: 80px;
}

.next-icon{
	padding-top: 15%;
	padding-left: 40%;
	padding-bottom: 15%;
}

.step-icon-next{
	font-size: 50px;
	color: #dddddd;
}

.step-done {
	background-color: #FFC107;
	color: #fff;
}

.step-done .heading-step{
	color: #fff;
}

.btn-box{
	transition: all .2s;
	cursor: pointer;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}

.btn-box:hover{
	box-shadow: 0px 3px 8px rgba(185, 185, 185, 0.4);
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.btn-box:focus{
	box-shadow: 0px 3px 8px rgba(185, 185, 185, 0.4);
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}

.box-block{
	background-color: rgb(235, 235, 235);
	cursor: not-allowed;
}

.box-block .heading-step{
	color: #000;
}

.step-h1{
	font-family: 'Poppins', sans-serif;
	font-size: 60px;
}

.step-h2{
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
}

.step-info{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 30px;
}

.step-info a:link,
.step-info a:visited{
	text-decoration: none;
	color: #00ADEF;
}
.step-info a:hover{
	text-decoration: none;
	color: #F49E00;
}

.msg-box{
	margin-top: 50px;
}

.step-info-sucess{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 30px;
	color: #FFC107;
}

.step-info-warning{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 30px;
	color: #F49E00;
}

.btn-my{
    width: 100%;
    padding: 15px 10px;
    font-size: 15px;
    text-transform: uppercase;
    background-color: rgb(10, 140, 192);
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}

.btn-my:hover{
    background-color: rgb(7, 117, 160);
    color: #fff;
    font-size: 18px;
    box-shadow: 0px 3px 8px rgba(83, 83, 83, 0.4);
}