
#popup-menu {
    position: fixed;
    left:0;
    top:0;
    right: 0;
    height: 0;
    display: flex;
    flex-direction: column;
    background:#fff;
    opacity: 0;
    z-index: 200;
    overflow: auto;
    transition: transform .3s, opacity .3s, height 0s .4s ease;
}

#popup-menu.show {
    transition: opacity .3s ease;
    transform: translateY(0) scale(1,1);
    opacity: 1;
    height: 100%;
}

#popup-menu > nav {
    position: relative;
    background-color: transparent;
    display: flex;
    flex: 0 0 64px;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(18,18,18, .08);
    padding: 12px 24px;
    box-sizing: border-box;
    justify-content: space-between;
}

#popup-menu > nav > svg {
    color: #169FF2;
    width: 140px;
}

#popup-menu > nav .filler {
    width:36px; 
    margin:0;
}

#popup-menu > .menu {
    overflow: auto;
    flex: 1 1 auto;
    box-sizing: border-box;
    padding: 16px 0;
}

#popup-menu > .menu ul {
    padding: 0;
    margin: 20px 0;
}

#popup-menu > .menu ul li {
    box-sizing: border-box;
    padding: 0 36px;
    margin: 0;
    line-height: 32px;
    list-style: none;
    font-weight: 100;
    color: #151217;
    font-size: 16px;
}

#popup-menu > .menu ul li.caption {
    font-size: 16px;
    font-weight: 600;
}

#popup-menu > .menu ul li a {
    text-decoration: none;
    color: #151217;
}

nav button#navBtnClose {
    width: 40px;
    height: 40px;
    margin: 1px 0 0 0;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #169FF2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 100px;
    outline: none;
}

nav button#navBtnClose {
    margin: 0;
}

nav button#navBtnClose svg {
    width:22px;
}
