﻿html {
    background-color: #444;
    font-family: 'Exo 2', Verdana, Arial, Helvetica, Sans-Serif;
    font-size: 16px;
    line-height: 1.1em;
    height: 100%;
}

body {
    position: relative;
    margin: 0 auto 0 auto;
    background-color: #fff;
    width: 100%;
    min-height: 100%;
    padding: 0;
    border: solid 1px #000;
    overflow: auto;
}

@media (min-width: 768px) {

}

@media (min-width: 992px) {
    body {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    body {
        width: 1170px;
    }
}

header {
    background: -webkit-linear-gradient(top, #000 50%, #0d72ba 75%, #75c5ec 100%);
    background: -moz-linear-gradient(top, #000 50%, #0d72ba 75%, #75c5ec 100%);
    background: -o-linear-gradient(top, #000 50%, #0d72ba 75%, #75c5ec 100%);
    background: -ms-linear-gradient(top, #000 50%, #0d72ba 75%, #75c5ec 100%);
    background: linear-gradient(top, #000 50%, #0d72ba 75%, #75c5ec 100%);
    padding: 0.5em 1em;
}

section.main-content {
    padding: 2em;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 1em;
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1em;
}

a {
    color: #054572;
}

a:hover {
    color: #f00;
}

.center {
    text-align: center;
}

.panel {
    padding: 1em;
    margin-bottom: 1em;
}

    .panel.panel-error {
        border: solid 1px #ff0000;
        background-color: #ffb3b3;
        color: #660000;
    }

    .panel.panel-info {
        border: solid 1px #0d72ba;
        background-color: #e0f0fc;
        color: #003;
    }

    .panel.panel-success {
        background-color: #cff3cf;
        color: #003300;
        border: solid 1px #006400;
    }

a.btn {
    display: inline-block;
    text-decoration: none;
}

button, a.btn {
    background-color: #0d72ba;
    padding: 0.5em 1em;
    color: #fff;
    border: 0;
    font-weight: bold;
}

    button:hover, a.btn:hover {
        background-color: #054572;
        color: #fff;
    }

    input[type=text], input[type=password], input[type=file], select, textarea {
        width: 96%;
        margin-top: 0.2em;
        padding: 0.5em;
    }
    select {
        width: 98%;
    }

    a.btn.btn-block {
        display: block;
    }

.error {
    color: #f00;
}
input[type=text].error, select.error, input[type=file].error {
    border: solid 1px #f00;
}

.pull-right {
     float: right;
}
.pull-left {
     float: left;
}
button.pull-left, 
button.pull-right {
    display: block;
}

.disabled {
    color: #ccc !important;
    cursor: not-allowed !important;
}

.badge {
    -moz-border-radius: 0.5em;
    -webkit-border-radius:0.5em;
    border-radius:0.5em;
    padding: 0.5em;
    font-weight: bold;
    color: #fff;
    background-color: #444;
    overflow: hidden;
}
    div.badge.verified {
        background-color: #006400;
    }
    div.badge.unverified {
        background-color: #900;
    }

button.dialog-cancel-button{
    background: none !important;
    background-color: #fff !important;
    border: none !important;
    color: #2e6e9e !important;
    font-weight: normal !important;
}
button.dialog-cancel-button:hover{
    color: #0a436f !important;
}
