nav{
    width: 100%;
    height: var(--navbar-height);
    padding-bottom: .25rem;
    top: 0;
    background: var(--white);
    color: var(--black);
    z-index: 99;
}

nav > div{
    margin: 0 auto;
    padding: 0 var(--content-horizontal-padding);
    display: flex;
    flex-direction: row;
    max-width: var(--max-content-width);
}

.navbar-logo{
    width: var(--navbar-height);
    height: var(--navbar-height);
    padding: .55rem 0;
    margin-right: -.6rem;
    color: var(--black);
    transition-duration: .2s;
}

.navbar-logo svg{
    width: auto;
    height: 100%;
}

.navbar-title{
    display: flex;
    align-items: center;
    margin-bottom: .25rem;
    font-size: 1.4rem;
    font-weight: var(--bold);
}

.navbar-icon-wrapper{
    display: flex;
    margin-left: auto;
}

.navbar-icon-wrapper > div > i{
    font-size: 1.3rem;
}

.navbar-icon-wrapper > *{
    cursor: pointer;
    width: 3.5rem;
    height: var(--navbar-height);
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: .2s;
    color: var(--grey-176);
}

.navbar-icon-wrapper > *:hover, #account-dropdown-wrapper.selected, #menu-dropdown-wrapper.selected{
    color: var(--grey-112);
}

.navbar-icon-wrapper > a{
    position: relative;
    color: var(--grey-176);
}

#notify-menu-cnt{
    position: absolute;
    top: 1.1rem;
    left: calc(50% + .1rem);
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    background: rgb(255, 0, 0);
    border-radius: 100rem;
    color: var(--white);
}

#menu-dropdown-wrapper{
    position: relative;
}

#menu-dropdown{
    position: absolute;
    z-index: 5;
    /* top: var(--navbar-height); */
    top: calc(var(--navbar-height) - 9px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(4rem, auto));
    gap: .5rem;
    width: 17rem;
    padding: 1rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

#menu-dropdown:before {
    content: "";
    position: absolute;
    right: 7.8rem;
    top: -7px;
    width: 0;
    height: 0;
    border-bottom: 7px solid var(--grey-224);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

#menu-dropdown > a{
    display: flex;
    flex-direction: column;
    padding: .25rem 0;
    align-items: center;
    color: var(--grey-64);
    transition-duration: .2s;
}

#menu-dropdown > a > i{
    font-size: 1.35rem;
}

#menu-dropdown > a:hover{
    background-color: var(--grey-248);
}

#account-dropdown-wrapper{
    position: relative;
}

#account-dropdown{
    position: absolute;
    z-index: 5;
    top: calc(var(--navbar-height) - 9px);
    right: 0;
    width: 8rem;
    background: var(--grey-96);
    font-size: 1rem;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

#account-dropdown:before {
    content: "";
    position: absolute;
    right: 1.1rem;
    top: -7px;
    width: 0;
    height: 0;
    border-bottom: 7px solid var(--grey-96);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

#account-dropdown > a{
    display: block;
    padding: .5rem .75rem;
    color: var(--white);
    transition-duration: .2s;
}

#account-dropdown > a:hover{
    background: var(--grey-112);
}

@media screen and (max-width: 1024px){
    
}

@media screen and (max-width: 768px){
    
}