@import "./fonts.css";
@import "./variables.css";
@import "./app.css";
@import "./sd-elements.css";

* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    font-family: var(--semi-bold-font);
    font-size: var(--font-size-1);
    color: var(--text-color);
}

p,
span,
li {
    font-family: var(--semi-bold-font);
    font-weight: normal;
    font-size: var(--font-size-1);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--bold-font);
    font-weight: 500;
    color: #a1a1a1;
}

label {
    cursor: pointer;
    font-family: var(--semi-bold-font);
    font-weight: 500;
}

ul {
    list-style-type: none;
}

/*Remove arrow for select*/
select {
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}

    /* For IE10 */
    select::-ms-expand {
        display: none;
    }

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.no-paddings {
    padding: 0;
}

.auto-sizes {
    width: auto;
    height: auto;
}