.step-circle{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.circle-icon{
    width: 60px;
    height: 60px;
    background-color: #dee2e6;
    border-radius: 50%;
    line-height: 60px;
    font-size: 28px;
    color: #495057;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.step-label{
    margin-top: 8px;
    font-weight: 600;
}
.step-circle.active .circle-icon{
    background-color: var(--theme-color);
    color: white;
}
.step-line{
    width: 130px;
    height: 3px;
    background-color: #dee2e6;
    margin-top: 28px;
    transition: background-color 0.4s ease, width 0.4s ease;
}
.step-circle.active ~ .step-line{
    background-color: #dee2e6;
    width: 130px;
    border-radius: 100px;
}
.step-circle.completed .circle-icon{
    background-color: var(--theme-color);
    color: white;
}
.step-line.completed{
    background-color: var(--theme-color);
    border-radius: 100px;
}
/**/
.card.h-100.shadow-lg{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.h-100.shadow-lg{
    transition: all 0.3s ease;
}

.card.h-100.shadow-lg:hover{
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background-color: #70ff77;
}
.card.h-100.shadow-lg .card-body{
    padding: 1rem 0.75rem;
}
.card.h-100.shadow-lg .card-body img{
    height: 100px !important;
    width: 100px !important;
}
.card.h-100.shadow-lg .card-title{
    font-size: 0.9rem;
    margin-bottom: 0;
}
.main-container{
    min-height: 500px;
    border-radius: 40px;
}
@media (max-width: 768px){
    .main-container{
        min-height: 400px;
        padding: 2rem !important;
    }
}
.fade-step{
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fade-step.show{
    display: block;
    opacity: 1;
}
.table th, .table td{
    vertical-align: baseline !important;
}
.bg-gray-200{
    background-color: #e9ecef;
}
.custom-radio-rounded .custom-control-input{
    position: absolute;
    opacity: 0;
}
.custom-radio-rounded .custom-control-label{
    cursor: pointer;
    padding-left: 32px;
    position: relative;
    line-height: 24px;
}
.custom-radio-rounded .custom-control-label::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    background: #fff;
    transition: all .2s ease;
}
.custom-radio-rounded .custom-control-input:checked + .custom-control-label::before{
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.custom-radio-rounded .custom-control-label::after{
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
}
.custom-radio-rounded .custom-control-input:checked + .custom-control-label::after{
    transform: translateY(-50%) scale(1);
}
.form-control:focus{
    border-color: var(--theme-color) !important;
    box-shadow: none !important;
}
.model-item{
    transition: all 0.3s ease;
}
