/* [Section] Base Styles */

/* HTML5 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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%;
  vertical-align: baseline;
}

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




/* Global */

*, *:before, *:after {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:focus { outline: 0; }




/* Root */

html {
  line-height: 1;
  font-size: 16px;
  position: static;

  @media (min-width: $widescreen-width) {
    font-size: 24px;
  }
}

body {
  line-height: 1.2;
  font-family: 'Lato', sans-serif;
  color: #424343;
  min-width: 23.75rem;
}



/* Forms and Buttons */

input {
  padding: 5px 10px 5px;
  width: 100%;
  font-family: 'Lato', sans-serif;
  color: #555;
  margin: 0;
  border: 0;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  display: inline-block;
}

select {
  padding: 5px 10px;
  width: 100%;
  font-family: 'Lato', sans-serif;
  color: #555;
  margin: 0;
  border: 0;

  &:hover {
    cursor: pointer;
  }
}

textarea {
  padding: 9px 10px 7px;
  min-height: 100px;
  width: 100%;
  font-family: 'Lato', sans-serif;
  color: #555;
  margin: 0;
  border: 0;
}

button {
  background-color: transparent;
  border: none;
  font-family: 'Lato', sans-serif;
  display: inline-block;
  margin: 0;
  border: 0;

  &:hover {
    cursor: pointer;
  }
}

label { display: block; }

::-webkit-input-placeholder { color: color: #555; }
:-moz-placeholder { color: color: #555; }
::-moz-placeholder { color: color: #555; }
:-ms-input-placeholder { color: color: #555; }




/* Images */

img {
  display:block;
  border: none;
}




/* Headings */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}




/* Links */

a {
  border: none;
  color: #0057a6;
  &:visited { color: #0057a6; }
  &:hover { color: #91b2dc; }
  text-decoration: none;
}




/* Lists */

ol, ul { list-style: none; }




/* Tables */

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}




/* Misc */

blockquote, q {
  quotes: none;
}

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

p {
  @include rem(margin, $margin  0);
}

strong, b {
  font-weight: 700;
}