body {
    margin: 0;
    padding: 0;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 20em;
}

.step {
    width: 2em;
    height: 2em;
    background: #fff;
    border: 2px solid #ACACA6;
    border-radius: 50%;
    transition: 2s;
    border-width: 0.2em !important;
}

.step.selected {
    border: 2px solid #3982ff;
    border-radius: 13px;
    animation: spin 5s infinite;
    animation-timing-function: linear;
}

.step.completed {
    border: 2px solid #0357f0;
    background: #0156f3;
}

.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 #3982ff;
    z-index: 1;
    transition: width 2s;
    max-width: 100%;
}

.progContainer {
    position: relative;
    margin: 1em;
    height: 3em;
}

#statusImg {
    width: 40%;
    /* height: 70vh; */
}

@keyframes spin {
    100% {
        transform: rotateZ(360deg);
    }
}

@media (orientation: portrait) {
    #statusImg {
        width: 80%;
        height: initial;
    }
}