:root {
    --menu-text-color: #ff5c62;
    --menu-hover-bg: #ff5c62;
    --menu-icon-color: #ffffff;
    --label-bg-color: #ff5c62;
    --label-text-color: #ffffff;
}

/* Layout padding to avoid overlap with sticky header */
/*main {
    !*padding-top: 80px;*!
    margin: 0;

}*/


.site-header,
header,
#masthead {
    display: none !important;
}

.sidebar-logo {
    text-align: center;
    display: contents;
}

.sidebar-logo img {
    display: block;
    height: auto;
    border-radius: 50%;
    z-index: 1;
    margin: 20px;
    max-width: 100%;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    background-color: #fff4f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 5px;
    width: 100%;
    z-index: 1;
}

.nav-links li {
    position: relative;
    width: 40px;
}

.nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5em;
    width: 100%;
    transition: none;
}

.nav-links a:hover {
    background-color: var(--menu-hover-bg);
    color: var(--label-text-color);
    fill: var(--label-text-color);
    transition: none;
}

.icon {
    display: flex;
    text-align: center;
    font-size: 1.5em;
    width: 1.2em;
    height: 1.2em;
}

.label {
    position: absolute;
    left: 50px;
    top: 0;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 1em;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    overflow: hidden;
    transform: translateX(-11px);
    width: 150px;
}

.nav-links li:hover .label {
    opacity: 1;
    visibility: visible;
   /* transform: translateX(0);*/
    background-color: var(--label-bg-color);
    color: var(--label-text-color);
}



@media (min-width: 600px) and (max-width: 1024px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column-reverse;
        padding: 0.5em;
        z-index: 999;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 50%;
        margin: 0;
    }

    .nav-links li {
        width: auto;
    }

    .nav-links a {
        height: auto;
        padding: 0.5em;
    }

    .label {
        display: none;
    }

    .sidebar-logo {
        display: none;
    }
}

