/* The Modal (background) */
.modall {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 20; /* Sit on top */
    padding-top: 350px; /* Location of the box */
    right: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(255, 255, 255); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.checkDialog {
    font-size: 44px;
    color: #0b9f30;
}

/* Modal Content */
.modall-content {
    border-radius: 10px;
    background-color: #ffffff;
    margin: auto;
    padding: 50px;
    border: 1px solid #0080ff;
    width: 50%;
    font-weight: bold;
}


.steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 200px;
}

.step {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #ACACA6;
    border-radius: 50%;
    transition: background 1s;
}

.step.selected {
    border: 2px solid #4B81BD;
}

.step.completed {
    border: 2px solid #4B81BD;
    background: #4B81BD;
}

.progress {
    position: absolute;
    width: 100%;
    height: 50%;
    border-bottom: 2px solid #ACACA6;
    z-index: -1;
}

.percent {
    position: absolute;
    width: 0;
    height: 100%;
    border-bottom: 2px solid #4B81BD;
    z-index: 1;
    transition: width 1s;
}