html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
	/* Better Font Rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
	padding: 0;
	margin: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

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

button,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
::file-selector-button {
    /* Browser on ios renders some components with `color: -apple-system-blue;`.
    So we needed to add the following reset declarations: */
    color: inherit;
}