/************************** HEADER **************************/

header {
    display: grid;
    grid-template-columns: 20px 1fr 20px;
    gap: 15px;
    height: 70px;
    padding: 22px 0px;
}

header #header-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

header #header-center #header-logo {
    height: 100%;
}

header #header-center #header-logo img {
    height: 100%;
}

header #header-right {
    position: relative;
}

header #header-right #header-menu {
    cursor: pointer;
}

header #header-right #header-menu img {
    width: 20px;
}

header #header-right #header-menu-popover {
    position: absolute;
    right: 0px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    white-space: nowrap;
    min-width: 180px;
    margin-top: 20px;
}

header #header-right #header-menu-popover #header-menu-popover-name {
    font-weight: 500;
    color: grey;
    font-size: var(--font-small);
    padding: 15px 25px 0px 25px;
}

header #header-right #header-menu-popover #header-menu-popover-list {
    margin-top: 20px;
}

header #header-right #header-menu-popover .header-menu-popover-block {
    font-weight: 500;
    padding: 0px 25px 20px 25px;
    cursor: pointer;
}

/************************** FOOTER **************************/

footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: white;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e3e3e3;
}

footer #footer-menu {
    max-width: 500px;
    margin: 0px auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding-bottom: 5px;
}

footer #footer-menu-list {
    display: flex;
}

footer #footer-menu-list .footer-menu-block {
    cursor: pointer;
    padding: 15px 0px 15px 0px;
    display: grid;
    gap: 5px;
    width: 100%;
    text-decoration: none;
    color: grey;
}

footer #footer-menu-list .footer-menu-block.active .footer-menu-icon svg {
    fill: var(--color-primary);
}

footer #footer-menu-list .footer-menu-block.active .footer-menu-label {
    color: black;
    font-weight: 500;
}

footer #footer-menu-list .footer-menu-icon svg {
    width: 20px;
    margin: 0px auto;
}

footer #footer-menu-list .footer-menu-label {
    font-size: var(--font-small);
    text-align: center;
}