/***
 * START steps-progress.css
 */

#steps-progress {
    font-size: 0;
    padding: 35px 0px;
    border-bottom: 1px solid #ddd;
    /*margin: 0 3%;*/
    /* There should be a padding on the parent and not a margin on this element */
}

    #steps-progress .steps-progress-item {
        width: 100%;
        display: inline-block;
        text-align: left;
        margin-left: 0px; /* Bug #11302 - with margin the 'width:100%' goes over the window size (the margin is outside the width, even with box-sizing), so we must use padding instead. */
        padding-left: 10px; /* Bug #11302 */
        margin-bottom: 25px;
    }

        #steps-progress .steps-progress-item:not(.current-step) {
            display: none;
        }

        #steps-progress .steps-progress-item .steps-progress-item-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            border: 1px solid #ddd;
            border-radius: 100%;
            font-family: "Roboto Condensed", Arial, sans-serif;
            font-size: 32px;
            font-weight: 300;
            text-align: center;
            line-height: 50px;
            margin-right: 10px;
            vertical-align: top;
            transition: color 100ms ease-in-out;
        }

        #steps-progress .steps-progress-item.step-complete .steps-progress-item-number {
            border: 1px solid #242424;
            color: rgba(255, 255, 255, 0);
            background-image: url("../../Images/icons/red_check.svg");
            background-repeat: no-repeat;
            background-size: 55% 45%;
            background-position: center;
            animation-name: check-animation;
            animation-duration: 350ms;
        }

@keyframes check-animation {
    0% {
        background-size: 0 0
    }

    90% {
        background-size: 66% 54%
    }

    100% {
        background-size: 55% 45%
    }
}

.steps-index .step .inner-item .circle-status > *:not(.hidden) {
    animation-name: scale-zero-up-down;
    animation-duration: 500ms;
}

#steps-progress .steps-progress-item .steps-progress-item-wrapper {
    display: inline-block;
    text-align: left;
    position: relative;
    padding-top: 10px;
}

    #steps-progress .steps-progress-item .steps-progress-item-wrapper .steps-progress-item-step {
        font-family: "Roboto Condensed", Arial, sans-serif;
        font-size: 14px;
        position: absolute;
        top: 43px;
        color: #ddd;
    }

    #steps-progress .steps-progress-item .steps-progress-item-wrapper h1 {
        font-family: "Roboto", Arial, sans-serif;
        font-weight: 300;
        font-size: 30px;
        /*margin-top:9px;*/
        margin-top: 0px;
        line-height: 1em;
        text-transform: uppercase;
    }

    #steps-progress .steps-progress-item .steps-progress-item-wrapper h3 {
        font-family: "Roboto", Arial, sans-serif;
        font-style: italic;
        font-size: 16px;
        margin-top: 0px;
        position: absolute;
        bottom: -45px;
        text-transform: none;
    }

    #steps-progress .steps-progress-item .steps-progress-item-wrapper h1,
    #steps-progress .steps-progress-item .steps-progress-item-wrapper h3 {
        color: #ddd;
        margin-bottom: 0;
    }

#steps-progress .steps-progress-item.step-complete .steps-progress-item-wrapper h1,
#steps-progress .steps-progress-item.step-complete .steps-progress-item-wrapper h3,
#steps-progress .steps-progress-item.current-step .steps-progress-item-wrapper h1,
#steps-progress .steps-progress-item.current-step .steps-progress-item-wrapper h3 {
    color: #242424;
}


/* Steps */


/*.steps-progress-page {
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}*/

.steps-progress-page.steps-progress-visible {
    opacity: 1;
}


/*.steps-progress-page.steps-progress-no-display {
        display: none !important;
    }*/

.steps-progress-page h3 {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #242424;
    text-transform: none;
    text-align: left;
    padding-bottom: 5px;
    margin: 0;
    margin-top: 35px;
}

.steps-progress-page .step-section {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px 0px;
}

    .steps-progress-page .step-section .step-section-row {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .steps-progress-page .step-section a.terms-conditions-link {
        color: #c30000;
    }

/* START Confirmation screen */

.confirmation-form {
    border-bottom: solid 1px rgb(221,221,221);
    margin-top: 40px;
}


    .confirmation-form .content {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

        .confirmation-form .content > div {
            width: 100%;
            margin-top: 20px;
        }

    .confirmation-form svg {
        stroke: #333;
        stroke-width: 0.3;
        max-width: 70px;
        max-height: 50px;
        fill: red;
    }

    .confirmation-form h2 {
        margin: 0;
        padding: 0;
        margin-bottom: 18px;
        text-align: left;
        font-size: 28px;
        font-weight: 300;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
    }

    .confirmation-form p {
        font-size: 16px;
        text-transform: none;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .confirmation-form ~ .button-holder .button,
    .confirmation-form .button-holder .button {
        margin-top: 20px;
        width: 100%;
    }

    .confirmation-form .button-holder {
        margin: 40px;
    }
/* END Confirmation screen */


/***
 * MEDIA QUERIES
 ***/

@media (min-width: 768px) {
    .confirmation-form {
        margin-top: 50px;
    }

        .confirmation-form .content {
            flex-wrap: nowrap;
        }

            .confirmation-form .content > div {
                padding-left: 5%;
                margin-top: 0;
            }

        .confirmation-form h2 {
            padding-right: 20%;
            font-size: 32px;
        }

        .confirmation-form p {
            margin-top: 0;
            font-size: 24px;
            margin-bottom: 50px;
        }
}

@media (min-width: 992px) {
    #steps-progress .steps-progress-item .steps-progress-item-wrapper h1 {
        font-size: 20px;
        margin-top: 5px;
    }

    #steps-progress .steps-progress-item .steps-progress-item-wrapper {
        padding-top: 9px;
    }

    #steps-progress .steps-progress-item {
        text-align: center;
        margin-left: 0px;
        padding-left: 0px; /* Bug #11302 */
    }

    .steps-progress-page h3 {
        margin-top: 40px;
    }

    #steps-progress .steps-progress-item .steps-progress-item-wrapper h3 {
        bottom: -20px;
    }

    .confirmation-form ~ .button-holder .button,
    .confirmation-form .button-holder .button {
        width: 222px;
    }

}

@media (min-width: 1200px) {

    .confirmation-form h2 {
        font-size: 36px;
        margin-top: 0;
        margin-bottom: 12px;
    }
}

@media (min-width: 1440px) {
    #steps-progress .steps-progress-item .steps-progress-item-wrapper h1 {
        font-size: 30px;
        margin-top: 0;
    }
}
    /*
 * END steps-progress.css
 ***/