.step-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
}
.step{text-align:center;}
.step-circle{
width:50px;
height:50px;
border-radius:50%;
background:#dee2e6;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
margin:auto;

}

.step.active .step-circle{
background:#0d6efd;
color:#fff;
}

.step-title{
margin-top:10px;
font-weight:600;}

.step-line{
height:3px;
background:#dee2e6;
flex:1;
margin:0 10px;}

.card{ border-radius:20px;}
.card-header{
    background:#fff;
    border-bottom:1px solid #f1f1f1;
}
.form-control{
    height:40px;
    border-radius:12px;
    border:1px solid #dcdcdc;
    min-width: 50px;
}
select.form-select {
    min-width: 85px;
}
textarea.form-control{ height:auto;}
.form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .15rem rgba(13,110,253,.15);
}

.form-label{
    font-weight:600;
    color:#444;
}
.card-body{
    padding:30px;
}
.card-header{
    padding:20px 30px;
}
h5 i{  margin-right:8px;}


@media print {
    .no-print {  display: none !important;  }
}