.steps_content:has(#progress-popup) {
    position: relative;
}

#progress-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    z-index: 1000;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    .step {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 24px;
        line-height: 1.5;

        i {
            line-height: 1;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 5px solid;
            border-color: #3091ec !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: normal;
            font-weight: 900;
        }
    }
    
    .step.active i {
        overflow: hidden;
        text-indent: -9999px;
        background: url(https://www.silkefoto.dk/img/loading.gif) no-repeat;
        background-position: center center;
        background-size: 80%80%;
    }
}