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

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

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr{
    margin: 0;
    padding: 0;
}

:root {
    -moz-tab-size: 4;
    tab-size: 4;
}

hr {
    height: 0;
}

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
    top: auto;
}

sup {
    top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
select {
    text-transform: none;
}

button::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

img,
embed,
iframe,
object,
audio,
video {
    max-width: 100%;
}


input,
select,
textarea,
button {
    appearance: none;
	background: transparent;
	border: 0;
	appearance: none;
	font-family: inherit;
	padding: 0;
	color: $font-body-color;
    cursor: pointer;
    
}

a,
input,
select,
textarea,
button {
    &:focus {
        outline: 0.125rem dashed;
    }
}



*.disabled,
*:disabled {
    cursor: not-allowed;
    pointer-events: none;
    &::selection  {
        background: none;
    }
}