:root {
    --color-1-light: #7e8392;
    --color-1-lighter: #111111;
    --color-1: black;

    --color-2: white;
    --color-2-dimmed: #fafafa;
    --color-2-darker: #e0e3e5;
    --color-2-dark: #ABAFBA;

    --color-3-light: #FAE1E4;
    --color-3: #c90b0f;

    --color-4-light: #d8f3dc;
    --color-4: #52b788;

    --border-radius: 0.4rem;
    --border-radius-large: 2rem;

    /*Layout*/
    --max-content-width: 100rem;
    --sidebar-width: 0;
    --nav-height: 7rem;
    --padding: 2rem;
}

html {
    box-sizing: border-box;
    font-size: 50%;
}

body {
    position: relative;
    display: flex;
    background-color: white;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.6rem;
    color: var(--color-1);
}

html, body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    line-height: 100%;
    -webkit-appearance: none;
    box-sizing: inherit;
    font-family: "Poppins", sans-serif;
}

[hidden] {
    display: none !important;
}

main {
    position: relative;
    width: 100%;
    max-width: var(--max-content-width);
    height: 100%;
    min-height: 250px;
    display: block;
    margin-top: var(--nav-height);
    margin-left: var(--sidebar-width);
    padding: var(--padding) var(--padding) 15rem var(--padding);
    overflow: hidden;
}

h1 {
    margin: 0 0 4rem 0;
    font-size: 3rem;
}

h2 {
    margin: 0;
    font-size: 2.5rem;
}

h3 {
    line-height: 2rem;
    margin: 0;
    font-size: 2rem;
}

h4 {
    line-height: 2.5rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-1-lighter);
}

h5 {
    margin: 0;
    font-size: 2.7rem;
}

h6 {
    margin: 0;
    font-size: 1.6rem;
}

a {
    background-color: transparent;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--color-3);
    cursor: pointer;
}

b,
strong {
    font-weight: bolder;
}

button {
    border: none;
    cursor: pointer;
}

img {
    border-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

p {
    line-height: 1.5;
    color: var(--color-1-light);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

@media screen and (min-width: 350px) {
    html {
        font-size: 55%;
    }
}

@media screen and (min-width: 992px) {
    html {
        font-size: 62.5%;
    }
}

@media screen and (min-width: 870px) {
    :root {
        --sidebar-width: 25rem;
    }

    h1 {
        margin-bottom: 7rem;
    }
}

/* Global Classes */
._toastItem {
    width: unset !important;
    height: unset !important;
    padding: 1.5rem !important;
    border-radius: var(--border-radius) !important;
    font-size: 1.4rem !important;
}

._toastItem progress {
    display: none !important;
}

._toastMsg::first-letter {
    text-transform: capitalize !important;
}

.selectedItem {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}