@charset "UTF-8";

/* #Typography
================================================== */

body {
    font-family: Arial, Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #444;
}

h1 {
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
}

h2 {
    font-size: 15px;
    font-weight: normal;
    line-height: 21px;
}

h3 {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}

small {
    font-size: 12px;
}

.footnote {
    font-size: 12px;
    font-weight: 600;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.full-width {
    width: 100%;
}

.red {
    color: red
}

.grey {
    color: grey;
}

.white-bk {
    background-color: #fff;
}

.hidden {
    display: none;
}

hr {
    border-bottom: solid 1px;
    border-bottom: none;
    margin: 0;
}

/* #Alignments / Spacers
================================================== */

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

img {
    max-width: 100%;
}

img.pull-right {
    margin-left: 30px;
    margin-bottom: 40px;
}

img.pull-left {
    margin-right: 30px;
    margin-bottom: 40px;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.shadow {
    -webkit-box-shadow: 2px 2px 5px #999;
    -moz-box-shadow: 2px 2px 5px #999;
    box-shadow: 2px 2px 5px #999;
}

.line-spacer-small {
    height: 3px;
}

.line-spacer-medium {
    height: 6px;
}

.line-spacer-large {
    height: 10px;
}

/* #Button styles
================================================== */

.button,
.button:visited {
    box-sizing: border-box;
    line-height: normal;
    display: inline-block;
    min-width: 125px;
    text-align: center;
    background-color: #444;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#666));
    background-image: -webkit-linear-gradient(top, #444, #666);
    background-image: -moz-linear-gradient(top, #444, #666);
    background-image: -ms-linear-gradient(top, #444, #666);
    background-image: -o-linear-gradient(top, #444, #666);
    background-image: linear-gradient(to bottom, #444, #666);
    color: #ddd;
    border: solid 1px #444;
    border-radius: 3px;
    padding: 4px 10px;
    margin: 0 0 2px 0;
    font-size: 12px;
}

.button:hover {
    cursor: pointer;
    background-color: #555;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#777));
    background-image: -webkit-linear-gradient(top, #555, #777);
    background-image: -moz-linear-gradient(top, #555, #777);
    background-image: -ms-linear-gradient(top, #555, #777);
    background-image: -o-linear-gradient(top, #555, #777);
    background-image: linear-gradient(to bottom, #555, #777);
    color: #fff;
}

.button.pull-right  {
    margin-left: 10px;
}

.button.pull-left  {
    margin-right: 10px;
}


/* #Fields / Tables / Forms
================================================== */

fieldset {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

input[type='text'],
    input[type='password'],
select,
textarea {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
    border: solid 1px #444;
    padding: 4px 4px 3px 4px;
}

input[type='text'].invalid,
input[type='password'].invalid,
select.invalid,
textarea.invalid {
    border: solid 1px red;
}

.error-message {
    color: red;
}

/* #Icons
================================================== */

/* mobile portrait */

.icon {
    float: left;
    background-image: url('/assets/images/icons/icons.png');
    background-size: 40px 40px;
    height: 16px;
    width: 16px;
    margin: 0 5px 5px 5px;
}

.icon.add {
    background-position: 0 -24px;
}

.icon.subtract {
    background-position: -24px -24px;
}

.icon.delete {
    background-position: -24px 0;
}

/* tablet portrait */

@media only screen and (min-width: 768px) {

    .icon {
        margin-bottom: 0;
    }
}