:root {
    --alert: #c42338;
    --warning: #e4d232;
    --success: #2dc754;
    --white: #fff;
    --black: #222;
    --dark: #333;
    --grey: #aaa;
    --light-grey: #eee;
    --dark-grey: #888;
    --grey-transparent: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--black);
}

button {
    color: var(--black);
    font-size: 1rem;
    background-color: transparent;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: none;
    border: 1px solid var(--black);
    cursor: pointer;
}

input {
    border-radius: none;
    border: 1px solid var(--black);
    outline: none;
    padding: 0.1rem 0.2rem;
} input:focus {
    border: 1px solid var(--grey);
} input::selection {
    background-color: var(--grey);
}

table {
    width: 100%;
    border-collapse: collapse;
}

ul, li {
    list-style: none;
}

.d-none {
    display: none !important;
}

*::selection {
    background-color: var(--grey);
}