/* GOOGLE FONTS FONT-FAMILY: POPPINS*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --body-bg-color: #dce4e3;
    --green: #18c29c;
    --light-green: #8ed7c6;
    --light-grey: #dce4e3;
    --text-color: #084236;
}

.open {
    --aside-width: 250px;
    --p-visibility: inherit;
    --button-width: 200px;
    --img-button-margin-top: 0;
}

.close {
    --aside-width: 76px;
    --p-visibility: hidden;
    --button-width: 50px;
    --img-button-margin-top: 12px;
}

body {
    height: 100vh;
    background-color: var(--body-bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* ESTILIZAÇÃO ASIDE */
aside {
    width: var(--aside-width);
    height: 100%;
    float: left;
    background-color: var(--green);
    margin-right: 18px;
    transition: .2s linear;
}

header {
    display: flex;
    justify-content: space-between;
    margin: 24px 14px 40px 29px;
}

header img:nth-child(2) {
    cursor: pointer;
}

nav span {
    width: var(--button-width);
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 14px;
    cursor: pointer;
    font-size: 15px
}

.sidebar:hover {
    background-color: var(--light-grey);
    border-radius: 12px;
}

nav span p {
    visibility: var(--p-visibility);
}

nav span img {
    margin-top: var(--img-button-margin-top);
    margin-right: 13px;
    margin-left: 13px;
}

nav div {
    width: var(--aside-width);
    height: 60px;
    display: flex;
    background-color: var(--light-green);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .2s linear;
}

nav div span {
    margin: 0;
}

nav div span p:first-child {
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: -5px;
}

nav div span p {
    font-size: 12px;
}

nav div img:first-child {
    width: 45px;
    height: 45px;
    margin: 8px 9px 7px 14px;
    visibility: var(--p-visibility);
}

nav div img {
    width: 24px;
    margin-right: 14px;
    cursor: pointer;
}

/* ESTILIZAÇÃO MAIN */
main {
    padding-top: 12px;
}