﻿#layoutContainer {
    width:100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

#leftColumn {
    padding-right: .75rem;
    padding-left: .75rem;
    box-sizing: border-box;    
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

#rightColumn {
    padding: 30px 5%;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    color: var(--app-theme-font-primary-color);
}

#title {
    font-weight: 600;
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    #leftColumn {
        width: 50%;
        flex: 0 0 auto;
    }

    #rightColumn {
        width: 50%;
        flex: 0 0 auto;
    }
}

#stepHeader {
    margin-bottom: 2em;
    justify-content: center;
    display: flex;
}

.step {
    border: 1px solid #edc800;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    line-height: 30px;
    color: var(--app-theme-font-primary-color);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.stepSpacer {
    border-bottom: 1px solid #edc800;
    width: 60px;
    height: 14px;
}

.step.active {
    background-color: #edc800;    
    font-weight: bold;
}