html, body {
    margin: 0;
    position: relative;
    height: 100%;
}

html {
    background: #fff;
}

body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    color: #666;
    font-family: 'Open Sans', sans-serif;
}

/* Used for links around markup eg. divs */
a {
    color: inherit;
}

a.nontext {
    text-decoration: none;
}

input.styled, textarea.styled, select.styled {
    color: #666;
    border: 1px solid #B5BCC7;
    padding: 5px;
    font-size: 10pt;
}

input.styled:focus, textarea.styled:focus {
    background-color: #f7f7f7;
    outline: none !important;
}

input.styled::-webkit-input-placeholder, textarea.styled::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #999;
}

input.styled:-moz-placeholder, textarea.styled:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
    opacity: 1;
}

input.styled::-moz-placeholder, textarea.styled::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
    opacity: 1;
}

input.styled:-ms-input-placeholder, textarea.styled:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
}

input.wide, textarea.wide, select.wide {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a.button {
    display: inline-block;
    height: 45px;
    width: 100%;
    background: rgb(220,51,91);
    text-align: center;
    line-height:45px;
    color: white;
    text-decoration: none;
    font-weight:600;
    font-size:13pt;
}

@media screen and (max-width: 499px){
    a.button {
        height: 40px;
        line-height:40px;
        font-size:12pt;
    }
}
