﻿/* Google Web Fonts Reference*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* End MeyerWeb Reset CSS */
html, body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    font-family: Lato, sans-serif;
    background-color: #fff;
    background-image: url('/templates/vision/images/full-background.jpg');
    background-size:cover;
    background-attachment:fixed;
    text-align:center;
}

strong {
    font-weight: bold;
}

button, a.button {
    display: inline-block;
    background-color: #005378;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 7px 14px;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

    button:hover, a.button:hover {
        background-color: #107bab;
    }

    button > i, a.button > i {
        margin-right: 7px;
    }

a.button {
    padding: 9px 14px;
    text-decoration: none;
}
button[disabled] {
    cursor: default;
    background-color: #aaa;
}
.vpos {
    display: inline-block;
    height: 100%;
    width: 0px;
    margin-right:-3px;
    vertical-align: middle;
}

.main {
    display:inline-block;
    width:1200px;
    text-align:left;
    margin:20px 0px;
    background-color:#fff;
    box-shadow:0px 0px 8px rgba(0,0,0,0.5);
}

heading {
    padding:1em;
    display:block;
}

heading > img {
    height:72px;
    padding:15px;
}

hr {
    background-color: transparent;
    border: none;
    border-top: 1px solid #bbb;
    margin-top: 10px;
    margin-bottom: 20px;
}

input[type="text"], select, textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: inherit;
    padding: 6px;
    margin: 2px;
}


li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 32px;
}

p + ul {
    margin-top: -1.25em;
}

button .fa {
    margin-right:5px;
}

h1 {
    font-family: Raleway;
    font-size: 32px;
    font-weight: 300;
    color: #777;
    margin-bottom:10px;
}

h1.heading {
    font-size:16px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#777;
    margin-left:20px;
    margin-top:-10px;
    margin-bottom:0px;
}

h2 {
    background-color: #3579a0;
    color: #fff;
    font-weight: bold;
    padding: 10px 37px;
}

.content{
    display:none;
    padding:25px;
    position:relative;
    min-height:500px;
}

.content p {
    margin:20px 0px;
    line-height:1.25em;
}

.form-item {
    font-weight:bold;
    font-size:14px;
    margin:8px 0px;
}

textarea {
    width: 100%;
    box-sizing: border-box;
    height: 100px;
}

footer {
    background-color: #e3e3e3;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.fa-exclamation-triangle {
    color: #f90;
    display:none;
}

textarea + .fa-exclamation-triangle {
    position: absolute;
    right: 27px;
    pointer-events: none;
    margin-top: -100px;
}

.invalid {
    border:1px solid #f90 !important;
}

.invalid + .fa-exclamation-triangle {
    display:inline-block;
}

.backdrop {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    z-index: 10;
    display:none;
    white-space:nowrap;
}

.dialog {
    display: inline-block;
    width: 500px;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.5);
    background-color: #fff;
    white-space:normal;
    vertical-align:middle;
}

.dialog-content {
    padding: 15px;
}

.dialog-buttons {
    padding: 15px;
}

@keyframes doRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.fa-spinner {
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-name: doRotate;
    animation-iteration-count: infinite;
    animation-direction: forward;
}

@media screen and (max-width:1230px) {
    .main {
        margin:0px;
        width:100%;
        box-sizing:border-box;
        box-shadow:none;
    }

    body {
        background-image:none;
        background-color:#ccc;
    }
}