div#openMenuBtn {
    z-index: 10;
    display: block;
    position: relative;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
}

div#navtoggler {
    /* Sample burger icon to toggle menu state */
    z-index: 9;
    display: block;
    position: relative;
    font-size: 8px;
    width: 4em;
    height: 2.5em;
    top: 0;
    left: 0;
    text-indent: -1000px;
    border: 0.6em solid black;
    border-width: 0.6em 0;
    cursor: pointer;
}


div#navtoggler::before {
    /* Sample burger icon */
    /* inner strip inside label */
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0.6em;
    top: 50%;
    margin-top: -0.3em;
    left: 0;
    background: black;
}

nav#ddfullscreenmenu {
    /* Full screen nav menu */
    width: 100%;
    height: 100%;
    visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: scale(0.9);
    /* initially scale down nav size */
    transform: scale(0.9);
    background: #F5F7F9;
    /* menu background color */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    z-index: 100000;
    opacity: 0;
    overflow: hidden;
    overflow-y: auto;
    text-align: center;
    -webkit-transition: visibility 0s 0.5s, opacity 0.5s, -webkit-transform 0.5s;
    transition: visibility 0s 0.5s, opacity 0.5s, transform 0.5s;
}

nav#ddfullscreenmenu.openmenu {
    /* open menu class */
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition-delay: 0s;
    -transition-delay: 0s;
    flex-direction: column;
    padding-top: 0;
    background: url("../../img/Navbar/BGGradient.svg"), white;
    background-position: center;
    background-size: cover;
}

nav#ddfullscreenmenu div#closex {
    content: url("../../img/Navbar/Close.svg");
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    position: absolute;
    cursor: pointer;
    text-indent: -1000px;
    z-index: 10;
    top: 25px;
    right: 15px;
}

nav#ddfullscreenmenu div#closex::before,
nav div#closex::after {
    /* render large cross inside close button */
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    top: 50%;
    margin-top: -3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

nav#ddfullscreenmenu div#closex::after {
    /* render large cross inside close button */
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


div#ulwrapper {
    position: relative;
    width: 100%;
    /* menu UL width */
    padding-top: 20px;
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-perspective-origin: 50%;
    perspective-origin: 50%;
}

nav#ddfullscreenmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    max-height: 100%;
    font: bold 2em 'Bitter', sans-serif;
    /* use google font inside nav UL */
    -webkit-transition: all 0.5s .1s;
    transition: all 0.5s .1s;
}

nav#ddfullscreenmenu ul li {
    margin-bottom: 20px;
    position: relative;
    display: block;
}

nav#ddfullscreenmenu ul li.header>a:after {
    /* right arrow inside header LIs */
    content: '';
    position: absolute;
    right: 18px;
}

nav#ddfullscreenmenu ul.submenu {
    /* style for non "first page" ULs */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
}

nav#ddfullscreenmenu ul li a,
nav#ddfullscreenmenu ul li.breadcrumb {
    text-decoration: none;
    color: black;
    font-size: 15px;
    padding: 10px;
    display: block;
    border-radius: 20px;
    cursor: pointer;
    text-align: start;
    padding: 0;
}

nav#ddfullscreenmenu ul li.header a::after {
    content: url("../../img/Navbar/ArrowRight.svg");
}

nav#ddfullscreenmenu ul li.breadcrumb {
    background: #eee;
    position: relative;
    padding-left: 40px !important;
}

nav#ddfullscreenmenu ul li.breadcrumb:after {
    /* back arrow inside breadcrumb LI */
    content: url("../../img/Navbar/ArrowRight.svg");
    position: absolute;
    left: 0;
    top: 37%;
    transform: translateY(-41%) rotate(180deg);
    margin-left: 15px;
}

nav#ddfullscreenmenu ul li a:hover {
    background: #eee;
}


nav#ddfullscreenmenu ul.hidemenu {
    transform: rotateY(30deg) translateZ(-5px) !important;
    opacity: 0;
    pointer-events: none;
}

nav#ddfullscreenmenu ul.showmenu {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    pointer-events: auto;
    padding-top: 20px;
}

.top-bar {
    background-color: white;
    padding: 20px;
    padding-left: 15px;
}

.top-bar .logo {
    display: flex;
}