/* Shared component: cta-form */
.card {
    background-color: #FFF;
    border-radius: 25px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 0
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    padding-left: 0px
}

    #progressbar .active {
        color: #673AB7
    }



    #progressbar .step0:before {
        content: ''
    }

    #progressbar div:before {
        width: 40px;
        height: 40px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        background: #E0E0E0;
        border-radius: 50%;
        margin: auto;
        padding: 2px
    }

    #progressbar div:after {
        content: '';
        width: 100%;
        height: 10px;
        background: #E0E0E0;
        position: absolute;
        left: 0;
        top: 17px;
        z-index: 0
    }

    #progressbar div:last-child:after {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px
    }

    #progressbar div:first-child:after {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px
    }

    #progressbar div.active:before,
    #progressbar div.active:after {
        background: #497db3
    }
