/* Burger Icon Hidden by Default */
.burger-menu {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
	margin-top: 5px;
}

/* Desktop: Show menu, hide burger */
@media screen and (min-width: 768px) {
    .burger-menu {
        display: none;
    }
	
    .menu.top_links {
        display: flex;
        justify-content: flex-end;
    }
}

/* Mobile: Show burger, hide menu unless active */
@media screen and (max-width: 767px) {
    .burger-menu {
        display: block;
		float: right;
    }
	
    .menu.top_links {
        display: none;
        flex-direction: column;
        background: var(--darkestblack);
        position: absolute;
        right: 0;
        top: 45px;
        width: 100%;
        z-index: -10;
		text-align: left !important;
		font-size: 12px;
    }
	
    .menu.top_links.active {
        display: flex;
    }
}
