/*
 * Provides a minimal set of directives to normalize DOM behavior,
 * smooth out browser inconsistencies, and apply global styles
 * when absolutely needed.
 *
 * See:
 *   https://github.com/jaydenseric/Fix
 *   https://necolas.github.io/normalize.css/
 *   http://meyerweb.com/eric/tools/css/reset/
 *   https://www.paulirish.com/2012/box-sizing-border-box-ftw/
 *   http://jaydenseric.com/blog/forget-normalize-or-resets-lay-your-own-css-foundation
 */

@charset "UTF-8";

@viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: #444;
  font: 16px/1 Helvetica Neue, Helvetica, Arial, sans-serif;
  height: 100%;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
ol,
ul {
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

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

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a,
button {
  color: inherit;
  cursor: pointer;
  transition: all 150ms ease;
  transition-property: border, color, background, opacity;
}

a {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}
/*
input[type=text], textarea {
	width: 100%;
	display: block
}
*/
button {
  background: none;
  border: 0;
  letter-spacing: inherit;
  overflow: visible;
  padding: 0;
  -webkit-font-smoothing: inherit;
}

::placeholder {
  color: inherit;
  opacity: .25;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}
