@import "hamburgers.min.css";

#menu-title {
    font-family: plantin, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}

.hamburger {
    position: relative;
    z-index: 200;
    outline: none;
    display: inline-flex !important;
    align-items: center;
}

.active-color {
    color: #F7F5EF !important;
}

.active-color-bg, .active-color-bg::after, .active-color-bg::before {
    background-color: #CDA52A !important;
}

#menu-title {
    margin-left: 10px;
    display: inline-block;
    cursor: pointer;
}

/* The side navigation menu */
#sidenav-container {
    display: block !important;
    min-height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: width 0.5s ease-in-out;
}

/* Position and style the close button (top right corner) */
#sidenav-container .closebtn {
    color: white;
    position: absolute;
    top: 55px;
    left: 22px;
    font-size: 45px;
    margin-left: 50px;
}

#sidenav-content {
    width: 100vw;
    margin-top: var(--header-height);
    padding: 25px 0;
    box-sizing: border-box;
}

#sidenav-background {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(41, 42, 44, 0.75)
}

.sidedrawer__wrapper {
    display: flex;
    flex-flow: wrap;
    width: 100vw;
}

.sidedrawer__menu-container {
    width: 25%;
    min-width: 350px;
    display: flex;
    flex-flow: column;
    margin-bottom: 40px;
    text-transform: none;
}

.sidedrawer__heading {
    font-size: 24px;
    font-family: neue-haas-grotesk-display, sans-serif;
    color: var(--pmg-white);
}

.sidedrawer__heading a {
    color: unset;
    font-family: unset;
}

.sidedrawer__heading a:hover {
    color: var(--pmg-gold)
}

.sidedrawer__divider {
    width: 50px;
    border-color: white;
    margin: 8px 0;
}

.sidedrawer__entry {
    color: var(--pmg-white);
    transition: color .3s ease-out;
    line-height: 30px;
}

.sidedrawer__entry:hover {
    color: var(--pmg-gold)
}