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

p {
    margin: 0 0 1.2em
}

article, aside, details, figcaption, figure, footer, header, hgroup,
img, menu, nav, section {
    display: block
}

body {
    font-family: 'Quicksand', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.375;
    font-size: 16px;
    color: #111111;
    overflow-x: hidden
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

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

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

html {
    box-sizing: border-box;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

* , :after, :before {
    box-sizing: inherit
}

img {
    max-width: 100%;
    height: auto
}

p {
    font-size: 14px;
    margin-bottom: 8px;
}

p.help-text {
    font-size: 12px;
}

p a {
    color: #111111
}

a {
    text-decoration: none;
    color: inherit
}

b, strong {
    font-size: 16px;
    font-weight: 700;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #111111;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #111111;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #111111;
}

.form-container {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.field {
    width: 100%;
    margin-bottom: 15px;
}

.actions {
    width: 50%;
    min-width: 300px;
    margin: 0 auto;
}

input:not([type="button"]):not([type="submit"]),
select {
    border: 1px solid #dddddd;
    width: 100%;

    webkit-transition: border 0.3s; /* Safari */
    transition: border 0.3s;
}

input:not([type="button"]):not([type="submit"]):focus,
input:not([type="button"]):not([type="submit"]):hover,
select:focus,
select:hover {
    border: 1px solid #111111;
    width: 100%;
    box-shadow: none;
    outline: none;
}

input {
    font-size: 14px;
    font-family: 'Quicksand', 'Arial', serif;
    font-weight: 400;
    padding:10px 10px;
    height: 40px;
    line-height: 40px;
}

select {
    padding:0px;
    height: 112px;
}

select option {
    color: #8c9ba5;
    font-size: 12px;
    font-family: 'Quicksand', 'Arial', serif;
    font-weight: 400;
    padding:5px 10px;
}

select option:checked,
select option:focus {
    color: #111111;
    background-color: #f0f3f6;
    border-bottom: 1px solid #808080;
    outline: none;
}

.field.error input,
.field.error select {
    border: 2px solid #aa0000;
    color: #aa0000;
    font-weight: 700;
    background: #f0f3f6;
}

.field.error input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aa0000;
    opacity: 1; /* Firefox */
}

.field.error input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #aa0000;
}

.field.error input::-ms-input-placeholder { /* Microsoft Edge */
    color: #aa0000;
}

.button {
    background-color: rgb(227, 33, 58);
    color: #fff;
    padding: 0px 20px;
    text-align: center;
    width: 100%;
    border: 0;
    font-weight: bold;

    -webkit-transition: background-color 0.3s; /* Safari */
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #111111;
}

.error-message{
    text-align:center;
    font-weight: 400;
    color:#aa0000;
    background: #f0f3f6;
    border:solid 1px #aa0000;
    display:none;
    padding:15px;
    overflow:hidden;
    margin-bottom: 30px;
}

.thank-you-message {
    color: #009abf;
    border: 1px solid #009abf;
    padding: 15px 30px;
    margin-bottom: 30px;
}
