.timeLine {
    position: relative;
    width: 100%;
    padding: 0px 0px 0px 0px;
    margin: 10px 0px 0px 0px;
    float: right;
    margin-bottom: 40px;
    color: #60C2DF;
    background: white;
    height: 96px;
    box-shadow: 0px 5px 10px #CFCFCF;
}


    .timeLine .step {
        width: 20px !important;
        height: 20px !important;
        line-height: 30px !important;
        display: inline-block;
        border-radius: 50% !important;
        background: #3399CC !important;
        background-color: #3399CC !important;
        border: 2px solid #3399CC;
        z-index: 2;
        text-align: center;
        font-size: 25px;
        cursor: default;
        font-style: normal !important;
        color: #b6b6b6;
        position: absolute;
        right: 0px;
        top: 22px;
        outline: 0;
    }

@media (max-width:992px) {
    .timeLine .step {
        display: none;
    }

    .timeLine {
        background: inherit;
        background-color: inherit;
        box-shadow: none;
    }
}

.timeLine .step .number {
    color: inherit;
}

.timeLine .step .title {
    width: 800%;
    height: 30px;
    overflow: hidden;
    font-size: 12px;
    display: block;
    line-height: 100%;
    text-align: center;
    position: absolute;
    right: -330%;
    top: 200%;
    color: #3399CC;
    text-decoration: none !important;
}

.timeLine .step.complete .title {
    color: #0D47A1;
    font-weight: bold;
}

.timeLine .step:hover {
    text-decoration: none !important;
}

.timeLine .step.complete {
    cursor: pointer;
    border: 2px solid #5bc0de !important;
    color: #63C2DF;
    border-color: #0D47A1 !important;
    background: #0D47A1 !important;
    background-color: #0D47A1 !important;
}

.timeLine .step.longWait {
    background: inherit !important;
    background-color: inherit !important;
}

.timeLine .step.complete:hover {
        border-width: thin;
}

.timeLine .step.complete .number {
        color: #02afff;
}

.timeLine .step.complete:hover .title {
        font-weight: bold;
}

.timeLine .step.current {
    color: #0D47A1;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #0D47A1 !important;
    border-color: #0D47A1 !important;
}

    .timeLine .step.current:before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 10px 0 10px;
        border-color: #0d48a1 transparent transparent transparent;
        line-height: 0px;
        _border-color: #0d48a1 #000000 #000000 #000000;
        _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    }


.timeLine .step:first-child {
    margin-right: 0px !important;
    padding-right: 0px !important;
    right: 0px;
}

.timeLine .step:last-child {
    margin-left: 0px !important;
    padding-left: 0px !important;
    left: 0px;
}

.timeLine hr.baseLine {
    width: 100%;
    top: 11px;
    right: 0px;
    z-index: 0;
    background: #3399cc;
    position: absolute;
    height: 4px;
    border: none;
}

@media (max-width:992px) {
    .timeLine hr.baseLine {
        display: none;
    }
}

.timeLine hr.progressLine {
    width: 100%;
    top: 11px;
    right: 0;
    z-index: 0;
    background: #0D47A1;
    position: absolute;
    height: 4px;
    overflow: hidden;
}

    .timeLine hr.progressLine .currentStepSign {
        width: 25px;
        height: 25px;
        background: #63c2df;
        transform: rotate(45deg);
        position: absolute;
        top: 16px;
        right: 30px;
        z-index: -3;
    }

@media (max-width:992px) {
    .timeLine hr.progressLine {
        display: none;
    }
}


.timeLine .progressCircleContainer {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}

.timeLine .progressCircle {
    position: relative;
    margin: 0px auto 0px auto;
}

@media (max-width: 992px) {
    .timeLine .progressCircleContainer {
        display: block;
    }
}

.timeLine .btn-prev {
    position: absolute;
    top: 10px;
    width: 33%;
    text-align: justify;
    direction: rtl;
    font-size: 18px;
}

.timeLine .btn-prev, .timeLine .btn-next {
    position: absolute;
    width: 100%;
    text-align: justify;
    font-size: 18px;
    outline: 0px;
    text-decoration: none;
    color: rgba(51, 153, 204, 1);
}

    .timeLine .btn-prev:before, .timeLine .btn-next:before {
        font-size: 20px;
        font-weight: bold;
        line-height: 100%;
    }

    .timeLine .btn-prev:hover:before, .timeLine .btn-next:hover:before {
        font-size: 25px;
        color: red;
        font-weight: bolder;
    }

    .timeLine .btn-prev i, .timeLine .btn-next i {
        position: absolute;
        font-size: 60px;
        color: rgba(51, 153, 204, 0.5);
    }

        .timeLine .btn-prev i:hover, .timeLine .btn-next i:hover {
            color: rgba(51, 153, 204, 1);
        }


.timeLine .btn-prev {
    right: 0px;
    direction: rtl;
    top: -10px;
}

    .timeLine .btn-prev i {
        right: 0px;
        top: 20px;
    }


.timeLine .btn-next {
    left: 0px;
    direction: ltr;
    top: 80px;
}

    .timeLine .btn-next i {
        left: 0px;
        top: -70px;
    }

