﻿﻿html {
    font-size: 14pt;
}

body {
    margin: 0;
    padding: 0;
    background-color: #eee;
    color: #1e1e1e;
    line-height: 1.41;
    position: relative;
    font-family: sans-serif;
}

div {
    box-sizing: border-box;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/* *********************** */
/* Base Layout Grid styles */
/* *********************** */
.container {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-width: 360px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}

div[class*="col-"] {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/* for devices larger than 420px */
@media (min-width: 420px) {
    .container {
        width: 85%;
        padding: 0;
    }
}

/* for devices larger than 600px */
@media (min-width: 600px) {
    .container {
        width: 80%;
    }

    div[class*="col-"] {
        margin-left: 4%;
    }

        div[class*="col-"]:first-child {
            margin-left: 0;
        }

    .col-1 {
        width: 4.66666666667%;
    }

    .col-2 {
        width: 13.3333333333%;
    }

    .col-3 {
        width: 22%;
    }

    .col-4 {
        width: 30.6666666667%;
    }

    .col-5 {
        width: 39.3333333333%;
    }

    .col-6 {
        width: 48%;
    }

    .col-7 {
        width: 56.6666666667%;
    }

    .col-8 {
        width: 65.3333333333%;
    }

    .col-9 {
        width: 74.0%;
    }

    .col-10 {
        width: 82.6666666667%;
    }

    .col-11 {
        width: 91.3333333333%;
    }

    .col-12 {
        width: 100%;
        margin-left: 0;
    }

    .third-col {
        width: 30.6666666667%;
    }

    .two-thirds-col {
        width: 65.3333333333%;
    }

    .half-col {
        width: 48%;
    }
}

.clearfix::after {
    clear: both;
    display: table;
    content: " ";
}


/* *********************** */
/* Button Normalisation */
/* *********************** */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: #555;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

    .button:hover,
    button:hover,
    input[type="submit"]:hover,
    input[type="reset"]:hover,
    input[type="button"]:hover,
    .button:focus,
    button:focus,
    input[type="submit"]:focus,
    input[type="reset"]:focus,
    input[type="button"]:focus {
        color: #333;
        border-color: #888;
        outline: 0;
    }

    .button.button-primary,
    button.button-primary,
    input[type="submit"].button-primary,
    input[type="reset"].button-primary,
    input[type="button"].button-primary {
        color: #FFF;
        background-color: #33C3F0;
        border-color: #33C3F0;
    }

        .button.button-primary:hover,
        button.button-primary:hover,
        input[type="submit"].button-primary:hover,
        input[type="reset"].button-primary:hover,
        input[type="button"].button-primary:hover,
        .button.button-primary:focus,
        button.button-primary:focus,
        input[type="submit"].button-primary:focus,
        input[type="reset"].button-primary:focus,
        input[type="button"].button-primary:focus {
            color: #FFF;
            background-color: #1EAEDB;
            border-color: #1EAEDB;
        }


/* ********* */
/*   Forms   */
/* ********* */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

select {
    cursor: pointer;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

    input[type="email"]:focus,
    input[type="number"]:focus,
    input[type="search"]:focus,
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    input[type="password"]:focus,
    textarea:focus,
    select:focus {
        border: 1px solid #33C3F0;
        outline: 0;
    }

label,
legend {
    display: block;
    margin-bottom: .25rem;
    font-weight: 400;
}

fieldset {
    padding: 0;
    border-width: 0;
    border: 0;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}


/* ********* */
/*   List    */
/* ********* */
ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol, ul {
    padding-left: 0;
    margin-top: 0;
}

    ul ul,
    ul ol,
    ol ol,
    ol ul {
        margin: 1.5rem 0 1.5rem 3rem;
    }

li {
    margin-bottom: 1rem;
}


/* ******** */
/*  Tables  */
/* ******** */
th,
td {
    padding: .5em 1em;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #E1E1E1;
    border-right: 1px solid #E1E1E1;
}

    th:first-child,
    td:first-child {
        padding-left: 0;
    }

    td:first-child {
        border-left: 1px solid #EEEEEE;
    }

    th:first-child td {
        border: 1px solid #EEEEEE;
    }

    th:last-child,
    td:last-child {
        padding-right: 0;
    }


/* ********** */
/* Typography */ s
/* ********** */
p {
    font-size: 1rem;
    margin-bottom: 1em;
}


/* ********* */
/*  Spacing  */
/* ********* */
p,
ol,
ul,
table {
    margin-bottom: 1rem;
}

form,
fieldgroup {
    margin-bottom: 2rem;
}


/* *************** */
/* Utility Classes */
/* *************** */
.pull-left, .pull-right {
    display: block;
    width: auto;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}
