﻿/*body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-color: #8C9EFF;
    background-repeat: no-repeat;
}

.card {
    z-index: 0;
    background-color: #ECEFF1;
    padding-bottom: 20px;
    margin-top: 90px;
    margin-bottom: 90px;
    border-radius: 10px;
}*/

.top {
    padding-top: 40px;
    padding-left: 13% !important;
    padding-right: 13% !important;
}

/*Icon progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: black;
    padding-left: 0px;
    margin-top: 30px;
}

    #progressbar li {
        list-style-type: none;
        font-size: 13px;
        width: 16.5%;
        float: left;
        position: relative;
        font-weight: 300;
    }

    #progressbar .step0:before {
        font-family: FontAwesome;
        content: "\f10c";
        color: #fff;
    }

    #progressbar li:before {
        width: 40px;
        height: 40px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        background: #1E90FF;
        border-radius: 50%;
        margin: auto;
        padding: 0px;        
    }

    /*ProgressBar connectors*/
    #progressbar li:after {
        content: '';
        width: 100%;
        height: 10px;
        background: #C5CAE9;
        position: absolute;
        left: -50%;
        right: 50%;
        top: 16px;
        z-index: -1;
    }

    #progressbar li:last-child:after {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
    }

    #progressbar li:nth-child(2):after, #progressbar li:nth-child(3):after {
        left: -50%;
    }

    #progressbar li:first-child:after {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        left: 50%;
    }

    #progressbar li:last-child:after {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    #progressbar li:first-child:after {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    /*Color number of the step and the connector before it*/
    #progressbar li.active:before, #progressbar li.active:after {
        background: #1E90FF;
    }

    #progressbar li.active:before {
        font-family: FontAwesome;
        /*background-color:green;*/
        content: "\f00c";
    }

.icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.icon-content {
    padding-bottom: 20px;
}

@media screen and (max-width: 992px) {
    .icon-content {
        width: 50%;
    }
}




.timeline {
    position: relative;
}

    /*Line*/
    .timeline > li::before {
        content: '';
        position: absolute;
        width: 1px;
        background-color: #E7E7E7;
        top: 0;
        bottom: 0;
        left: -19px;
    }

    /*Circle*/
    .timeline > li::after {
        text-align: center;
        padding-top: 5px;
        z-index: 10;
        content: counter(item);
        color: white;
        font-weight: bold;
        position: absolute;
        width: 50px;
        height: 50px;
        border: 3px solid white;
        background-color: #1E90FF;
        border-radius: 50%;
        top: 0;
        left: -43px;
    }

    /*Content*/
    .timeline > li {
        counter-increment: item;
        padding: 4px 35px;
        margin-left: 150px;
        min-height: 60px;
        position: relative;
        background-color: white;
        list-style: none;
        right: 50px;
    }

        .timeline > li:nth-last-child(1)::before {
            width: 0px;
        }
