
/** Reset **/
/* 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;
}

/** Makaira Styles **/
body {
    line-height: 1.3;
    color: white;
    background-color: #aaa;
    padding: 15px;
    font-family: Helvetica, Arial, sans-serif;
}

.main {
    background-color: #f5f5f5;
    color: #707070;
    border-radius: 8px;
    padding: 16px;
    width: calc(100% - 32px);
    box-shadow: 0 0 0 1px rgba(89, 105, 128, 0.1), 0 3px 20px 0 rgba(89, 105, 128, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    line-height: 1.5rem;
}

a {
    color: #707070;
}

.hp {
    display: none !important;
}

h1 {
    font-size: 2rem;
    margin: 32px;
    text-align: center;
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: bold;
}

h2 {
    font-size:1.5rem;
    margin:24px 0 24px 0;
    font-family: Helvetica, Arial, sans-serif;
}

.form {
    background-color: #f5f5f5;
    margin-top: 32px;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 0 1px rgba(89, 105, 128, 0.1), 0 3px 20px 0 rgba(89, 105, 128, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}

label {
    display: block;
    padding: 16px 0 8px 0;
}

label.radio,
label.checkbox-label {
    display:inline-block;
    float:left;
    padding-top:0;
}

input,
select {
    display: block;
    padding: 8px;
    width:calc(100% - 22px);
}

textarea {
    font-family: Helvetica, Arial, sans-serif;
    width: calc(100% - 8px);
    height:80px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline-block;
    width:20px;
    float: left;
    clear:both;
}

input[type="radio"]:checked {
    background: red;
}

.error,
input.error,
select.error,
textarea.error {
    border-color:#e5433b;
}

#errormessage {
    color:#e5433b;
}

.hidden {
    display: none;
}

select {
    width:100%;
}

button,
a.button {
    border:none;
    margin:32px 0 0 0;
    background: linear-gradient(180deg, #7DC400 0%, #58AB00 100%);
    color:white;
    font-family: "Arial Black", Helvetica, Arial, sans-serif;
    font-weight:bold;
    border-radius:20px;
    display:block;
    padding:8px;
    text-align:center;
    font-size:16px;
    width:100%;
}

a.button {
    width: calc(100% - 16px);
    text-decoration:none;
}

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

.req {
    color: #eb6e68;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 24px;
    padding: 0;
}

.legalnote {
    padding:20px;
    font-size:0.8rem;
}

i.number {
    display:inline-block;
    border: solid 2px #61304d;
    border-radius: 20px;
    width: 27px;
    text-align: center;
    padding: 2px 2px 5px 2px;
}

i.number.filled {
    color: #f5f5f5;
    background-color:#61304d;
}

img.preview {
    max-width: 100%;
}

.alert {
    color: #eb6e68;
}

@media screen and (min-width: 740px) {
    .main {
        position:relative;
        margin:8px;
        width: calc(100% - 48px);
    }
    .arguments {
        max-width:calc(100% - 350px);
        min-height:600px;
        margin-left:16px
    }
    body.error .arguments {
        max-width:none;
        min-height:auto;
        margin-left:16px
    }
    .form {
        position:absolute;
        top:-10px;
        right:-10px;
        width:320px;
    }

    img.preview {
        max-width: 90%;
    }
}


.leadbooster_info {
    margin: 40px auto;
    display: block;
    text-align: center;
    font-size:0.8rem;
}

.leadbooster_info a {
    text-decoration: none;
}

@media screen and (min-width: 990px) {
    .main,
    .header {
        width: 900px;
        margin:0 auto;
    }
}

.clear {
    clear: both;
}