/*!
 * Theme Name: Default
 * Package : DashLite
 * Author: Softnio
 * Author URI: http://themeforest.net/user/softnio
 * Version	 :	1.0.0
 * Updated	 :	07.23.2020
**/
.wizard {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 20px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cfe8e9;
    color: #00799c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step.done {
    background-color: #00799c;
    color: #fff;
}

.step.active {
    background-color: #e64f00;
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
    color: white;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    height: 4px;
    width: 20px;
    background-color: #ccc;
    transform: translateY(-50%);
    z-index: -1;
    transition: background-color 0.3s ease;
}

.step.done:not(:last-child)::after {
    background-color: #00799c;
}

.step.active:not(:last-child)::after {
    background-color: #e64f00;
}