/* CSS resets */
.no-select {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ol,
ul,
li {
  list-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
input,
textarea,
select,
button {
  font: inherit;
}
img,
iframe {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
textarea:focus, input:focus{
    outline: 0;
}
