/**
 * Global variables
 */
/**
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications. Removes the default spacing and border for
 * appropriate elements.
 * Only tags selectors are used in this file to build a simple baseline.
 */
html {
  height: 100%;
  background: #eff1f5;
  color: #4f5b66;
  font-size: 16px;
  font-family: 'RobotoDraft', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
}
body {
  height: 100%;
  min-height: 100%;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
  margin: 0;
}
button {
  background: transparent;
  border: 0;
  padding: 0;
}
/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
iframe {
  border: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */
[tabindex="-1"]:focus {
  outline: none !important;
}
input[type="search"] {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
a {
  color: #96b5b4;
  text-decoration: none;
  transition: color ease 300ms;
}
a:hover,
a:focus,
a:active {
  color: #96b5b4;
  text-decoration: underline;
}
::-moz-selection {
  background: rgba(150, 181, 180, 0.5);
  text-shadow: none;
}
::selection {
  background: rgba(150, 181, 180, 0.5);
  text-shadow: none;
}
abbr[title] {
  cursor: help;
}
address {
  font-style: normal;
}
mark {
  background: rgba(150, 181, 180, 0.5);
  color: #4f5b66;
}
code,
kbd,
pre,
samp {
  font-family: 'Source Code Pro', Inconsolata, Consolas, Menlo, Monaco, "Courier New", monospace;
  font-size: 0.85rem;
}
code {
  margin: 0 2px;
  padding: 1px 5px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  border-radius: 2px;
  white-space: nowrap;
  vertical-align: middle;
}
pre {
  overflow: auto;
  display: block;
}
pre code {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: 0;
  white-space: pre;
}
blockquote {
  font-style: italic;
}
