﻿/*
    Page Header and basic style.
    Third-parties can customize these items to tailor their installation for their brand.
*/

#Header {
    background-position: left center;
    background-origin: content-box;
    background-image: url('SnapSurveysLogo.png');
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-color: white;
    padding-left: 16px;
    height: 50px;
}

body {
    color: #444;
    background-color: #fff;
    margin: 0px;
}


/*
    Nunito Sans font.
    Third-parties can customize this to further tailor their installation for their brand.
*/

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Regular.woff');
    src: url('../fonts/NunitoSans-Regular.woff') format('woff'),
         url('../fonts/NunitoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Italic.woff');
    src: url('../fonts/NunitoSans-Italic.woff') format('woff'),
         url('../fonts/NunitoSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Bold.woff');
    src: url('../fonts/NunitoSans-Bold.woff') format('woff'),
         url('../fonts/NunitoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-BoldItalic.woff');
    src: url('../fonts/NunitoSans-BoldItalic.woff') format('woff'),
         url('../fonts/NunitoSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

body, input, textarea {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14pt;
}

input[type=submit] {
    margin: 0 auto;
    padding: 6pt 12pt 6pt 12pt;
    font-size: 12pt;
}

/* -------- There is minimal benefit in third-parties customizing anything after this point -------- */

/* Basic page style */

h1 {
    display: block;
    margin-top: 20pt;
    text-align: center;
    font-size: 20pt;
    font-weight: bolder;
}

h1.loginPageTitle {
    font-size: 16pt;
}

.centered {
    display: block;
    text-align: center;
    margin: 2em auto;
}

.halfWidth {
    width: 50%;
}


div.loginPageMessage {
    color: orangered;
    font-size: 14pt;
    margin-bottom: 1em;
}

div#savedNoLogin {
    margin-left: 16px;
}

.smaller {
    font-size: 12pt;
}

/* Preview Warning styles */

div.previewWarningContainer {
    width: 50%;
    margin: 2em auto;
    border: 2px dotted black;
    border-radius: 6px;
    background-color: #f0f0f0;
    padding: 1em;
    text-align: center;
}

span.interviewPageMessage {
    display: block;
    font-size: 16pt;
    margin: 0 auto;
}

span.interviewPageMessage strong {
    color: orangered;
    font-weight: bolder;
}

span.interviewPageMessageDetail {
    display: block;
    padding-top: 1em;
    font-size: 12pt;
    text-align: left;
    margin: 0 auto;
}

.previewWarningSubmitContainer {
    margin-top: 16pt;
    text-align: center;
}

.errortext {
    color: orangered;
}

.hide {
    display: none !important;
}

/* Adapted from https://github.com/zachacole/Simple-Grid, which is open-sourced under the MIT License */

.sol-row {
    position: relative;
    width: 100%;
}

.sol-row [class^="col"] {
    float: left;
    margin: 0.5rem 2%;
    min-height: 0.125rem;
}

.sol-row.tight [class^="col"] {
    margin: 0.25rem 2%;
}

.sol-row.very-tight [class^="col"] {
    margin: 0.2rem 0.2rem;
}

.sol-row::after {
    content: "";
    display: table;
    clear: both;
}

.sol-row .col-1,
.sol-row .col-2,
.sol-row .col-3,
.sol-row .col-4,
.sol-row .col-5,
.sol-row .col-6,
.sol-row .col-7,
.sol-row .col-8,
.sol-row .col-9,
.sol-row .col-10,
.sol-row .col-11,
.sol-row .col-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

.sol-row .col-1 {
    width: 4.33%;
}

.sol-row .col-2 {
    width: 12.66%;
}

.sol-row .col-3 {
    width: 21%;
}

.sol-row .col-4 {
    width: 29.33%;
}

.sol-row .col-5 {
    width: 37.66%;
}

.sol-row .col-6 {
    width: 46%;
}

.sol-row .col-7 {
    width: 54.33%;
}

.sol-row .col-8 {
    width: 62.66%;
}

.sol-row .col-9 {
    width: 71%;
}

.sol-row .col-10 {
    width: 79.33%;
}

.sol-row .col-11 {
    width: 87.66%;
}

.sol-row .col-12 {
    width: 96%;
}

