﻿.steps {
    min-height: 75px;
    padding: 15px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

    .steps .steps-container {
        background: #DDD;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        -ms-border-radius: 10px;
        margin: 0;
        padding: 0;
        list-style: none
    }

        .steps .steps-container li {
            text-align: center;
            list-style: none;
            float: left
        }

            /*            .steps .steps-container li .step {
                padding: 0 50px
            }*/

            .steps .steps-container li .step .step-image {
                margin: -14px 0 0 0
            }

                .steps .steps-container li .step .step-image span {
                    background-color: #2a323f;
                    display: block;
                    width: 30px;
                    height: 30px;
                    margin: 0 auto;
                    border-radius: 37px;
                    -moz-border-radius: 37px;
                    -webkit-border-radius: 37px;
                    -ms-border-radius: 37px;
                }

            .steps .steps-container li .step .step-description p {
                font-size: 1.2em;
                width: fit-content;
                margin: 0 auto;
                background: #fff;
                color: #58585a;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
                border-radius: 1em;
                padding-left: 5px;
                padding-right: 5px;
                margin-top: 3px;
            }

            .steps .steps-container li.activated .step .step-description p {
                font-weight: 500;
                color: #000;
                background: #fcd502;
            }

            .steps .steps-container li.activated .step .step-image span {
                background-color: #2a323f;
            }

                .steps .steps-container li.activated .step .step-image span:after {
                    background-color: #ffd500;
                    display: block;
                    content: '';
                    position: absolute;
                    z-index: 1;
                    width: 26px;
                    height: 26px;
                    margin: 2px;
                    border-radius: 29px;
                    -moz-border-radius: 29px;
                    -webkit-border-radius: 29px;
                    -ms-border-radius: 29px;
                    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
                    -moz-box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
                    -webkit-box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15)
                }

        .steps .steps-container :not(li.activated) .step .step-image span:after {
            background-color: #eaeaea;
            display: block;
            content: '';
            position: absolute;
            z-index: 1;
            width: 26px;
            height: 26px;
            margin: 2px;
            border-radius: 29px;
            -moz-border-radius: 29px;
            -webkit-border-radius: 29px;
            -ms-border-radius: 29px;
            box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
            -moz-box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
            -webkit-box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
        }

    .steps .step-bar {
        background-color: #2a323f;
        height: 2px;
        position: absolute;
        top: 30px;
        border-radius: 10px 0 0 10px;
        -moz-border-radius: 10px 0 0 10px;
        -webkit-border-radius: 10px 0 0 10px;
        -ms-border-radius: 10px 0 0 10px;
    }

        .steps .step-bar.last {
            border-radius: 10px;
            -moz-border-radius: 10px;
            -webkit-border-radius: 10px;
            -ms-border-radius: 10px;
        }




@media (max-width: 600px) {
    .steps .steps-container :not(li.activated) .step .step-description p {
        display: none;
    }
}
