﻿body {
    background-color: #262626;
}

.page-title {
    font-size: 28px;
}
.no-decoration {
    text-decoration: none;
}

/* ********************* */
/**
    2-column layout
*/
/* ********************* */
.two-column-layout {
    display: flex;
    height: 100%;
    width: 100%;
}
.two-column-layout .column {
    flex: 0 1 auto;
    width: 50%;
}
    .two-column-layout .column.main {           
        display: flex;
        flex-wrap: wrap;
        padding-left: 28px;
        padding-right: 28px;
    }
    
    .two-column-layout .column.main .wrapper {
        width: 100%;
    }


/* ********************* */
/**
    1-column layout
*/
/* ********************* */
.one-column-layout {
    display: flex;
    height: 100%;
    width: 100%;
}

    .one-column-layout .column {
        flex: 0 1 auto;
        width: 100%;
    }

        .one-column-layout .column.main {
            display: flex;
            flex-wrap: wrap;
            padding-left: 28px;
            padding-right: 28px;
        }

            .one-column-layout .column.main .wrapper {
                width: 100%;
            }

/* ********************* */
/**
    PRODUCT BRANDING
*/
/* ********************* */
.product-branding {
    background-color: rgba(0, 51, 73, 1);
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding-top: 75px;
}
.product-branding .logo-container {
    width: 100%;
}
    .product-branding .footer {
        align-self: flex-end;
        display: flex;
        width: 100%;
    }
    .product-branding .footer .logo-container {
        flex: 0 1 auto;
        width: 50%;
    }

.site-title {
    border-left: 1px solid gray;
    font-size: 16px;
    margin-left: 10px;
    padding-left: 12px;
    vertical-align: middle;
    color: #000;
    font-weight: 600;
}
.first-site-title {
    font-size: 16px;
    margin-left: 10px;
    padding-left: 12px;
    vertical-align: middle;
    color: #000;
    font-weight: 600;
}
