﻿*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    height: 100%;
}


.container {
    margin: 0 auto;
    max-width: 828px;
    padding: 0 24px;
}


.textfield {
    height: 36px;
    padding: 5px 8px;
    outline: none;
    color: #333;
    border: 1px solid #abb3b3;
    border-radius: 3px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 24px 32px;
}

    .header .logo {
        float: left;
        margin: 1px 32px 0 0;
    }

    .header .btn {
        float: left;
    }

    .header ul {
        line-height: 30px;
        list-style: none;
        float: right;
    }

        .header ul li {
            display: inline-block;
            margin: 0 0 0 24px;
            font-weight: 700;
        }

h1 {
}

h3 {
    font-weight: 500;
    color: #848a8a;
    text-transform: uppercase;
    padding: 12px 0;
}

    h3 span {
        color: #494c4c;
    }

.dialog p {
    color: #848a8a;
    padding: 0 0 24px 0;
    font-size: 16px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

    .footer .container {
    }

    .footer .inner {
        padding: 24px 0;
        overflow: hidden;
        border-top: 1px solid #c4cacc;
    }

    .footer p {
        line-height: 18px;
        color: #848a8a;
    }

.valign-container {
    width: 100%;
    height: 100%;
    display: table;
}

.valign {
    display: table-cell;
    vertical-align: middle;
}

.dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 10%;
}

    .dialog img {
        float: right;
        max-width: 100%;
        max-height: 100%;
    }

@media(max-width: 767px) {
    .dialog {
        padding: 0;
        flex-direction: row-reverse;
        text-align: center;
    }

        .dialog img {
            float: none;
            margin: auto; 
            display: block;
        }
}

.row {
    margin-right: -12px;
    margin-left: -12px;
}

    .row:before {
        display: table;
        content: " ";
    }

    .row:after {
        display: table;
        content: " ";
        clear: both;
    }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-8 {
    min-height: 1px;
    float: left;
    padding: 0 12px;
}

.col-8 {
    width: 66.66667%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66667%;
}

.col-4 {
    width: 33.33333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.66667%;
}

.col-1 {
    width: 8.33333%;
}
