/* # CSS Reset

Based on Fix by Jayden Seric
https://github.com/jaydenseric/Fix */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern";
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  line-height: 1;
  font-family: sans-serif;
}

iframe {
  border: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  display: block;
  list-style-type: none;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
  font-weight: 400;
}

blockquote {
  margin: 0;
  padding: 0;
}

cite {
  font-style: normal;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

img {
  border: 0;
}

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

button {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
  overflow: visible;

  &:focus {
    outline: none;
  }
}

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

/* Maybe bad universal selector for border box. */
* {
  box-sizing: border-box;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  -webkit-appearance: none;
}

/* Reset styles for submit button */
input[type="submit"]{
  border: none;
  font-family: inherit;
}
