/* stylelint-disable selector-no-type */

/* stylelint-disable selector-no-universal */
* {
    box-sizing: border-box;
}
/* stylelint-enable selector-no-universal */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    margin: 0;
    padding: 0;
}

button,
input,
textarea {
    outline: none;
}

article,
aside,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
video,
object {
    display: block;
}

a img {
    border: 0;
}

figure {
    position: relative;
}

figure img {
    width: 100%;
}

ul {
    list-style-type: none;
}

/* stylelint-disable declaration-block-properties-order */
html {
    color: $color_grey;
    font-family: sans-serif;
    font-weight: 400;
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
/* stylelint-enable declaration-block-properties-order */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    background-color: $color_white;
    font-family: Rubik, helvetica, arial, sans-serif;
    font-size: $font_size_default;
    line-height: 20px;
}

h1 {
    font-size: $font_size_heading_xl;
    font-weight: 400;
    line-height: 38px;
}

h2 {
    font-size: $font_size_heading_x;
    font-weight: 400;
    line-height: 32px;
}

h3 {
    font-size: $font_size_heading_m;
    font-weight: 500;
    line-height: 24px;
}

h4 {
    font-size: $font_size_heading_s;
    font-weight: 500;
    line-height: 22px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong, b {
    font-weight: $weight_bold;
}

/* stylelint-enable selector-no-type */
