﻿/* PROGRESS BAR */

.step-progress-uberwrapper {
    position: relative;
    width: 100%;
    height: 55px;
    overflow: hidden;
}

.step-progress-wrapper {
    position: absolute;
    width: 100%;
    height: 40px;
    padding: 0 20px;
}

    .step-progress-wrapper .step-progress-padding {
        position: relative;
    }

.step-progress {
    width: 100%;
    display: flex;
    align-items: center;
    transition: right 1s ease;
}

    .step-progress .step-progress-bar {
        width: 100%;
        height: 3px;
        z-index: 0;
        position: absolute;
        background-color: #ccc;
    }

        .step-progress .step-progress-bar .step-progress-bar-fill {
            width: 0%;
            height: 100%;
            max-width: 100%;
            display: block;
            background-color: #48ca18;
        }

            .step-progress .step-progress-bar .step-progress-bar-fill.transition {
                transition: width 1s ease-in-out;
            }

    /* ICONS */

    .step-progress .steps {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

        .step-progress .steps .step {
            float: left;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #aaa;
            position: relative;
            z-index: 1;
        }

            .step-progress .steps .step.active {
                background-color: #48ca18;
                transition: background-color 1s cubic-bezier(1,0,1,0);
            }

            .step-progress .steps .step .icon-wrapper {
                width: 100%;
                height: 100%;
            }

            .step-progress .steps .step .icon {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .step-progress .steps .step .icon i {
                    color: #FFF;
                    font-size: 16px;
                }

            .step-progress .steps .step .step-label {
                color: #000;
                display: flex;
                font-size: 75%;
                font-weight: bold;
                text-align: center;
                white-space: nowrap;
                justify-content: center;
            }

@media screen and (max-width:767px) {
	.step-progress {
		position: relative;
		/*margin-left: 20px !important;
		width: 100% !important;*/
	}

		.step-progress .steps .step .step-label {
			color: #000;
			display: flex;
			font-size: 7px;
			font-weight: bold;
			text-align: center;
			white-space: nowrap;
			justify-content: center;
		}
}

@media screen and (min-width:768px) {
    .step-progress {
        width: 100% !important;
        margin-left: 0 !important;
    }
}
