@media screen {
    .sticky-header {
        position: fixed; /* Set the navbar to fixed position */
        top: 0; /* Position the navbar at the top of the page */
        width: 100%; /* Full width */
    }

    .region.region-subhead {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
        background-color: #000;
        height: 60px;
        padding: 15px;
        border-bottom: 1px solid #294058;
    }

    .region.region-subhead #block-thagen-branding {
        font-family: "Orbitron", Arial, Tahoma, sans-serif;
        margin-top: 5px;
    }

    .region.region-subhead #block-thagen-branding .site-name a {
        font-size: 12px;
        text-transform: uppercase;
    }

    .region.region-subhead #block-thagen-main-menu ul.menu {
        display: flex;
        flex-direction: row;
        margin: 0;
    }

    .region.region-subhead #block-thagen-main-menu ul.menu li a {
        font-size: 15px;
        padding-top: 0;
        padding-right: 15px;
        text-transform: uppercase;
        font-family: "Orbitron", Arial, Tahoma, sans-serif;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu {
        display: flex;
        flex-direction: row;
        margin: 2px 0 0 0;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a {
        font-size: 12px;
        padding-top: 0;
        padding-right: 15px;
        text-transform: uppercase;
        font-family: "Orbitron", Arial, Tahoma, sans-serif;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger .menu-btn {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger .menu-btn .menu-btn__burger {
        width: 20px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all .5s ease-in-out;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger .menu-btn .menu-btn__burger:before,
    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger .menu-btn .menu-btn__burger:after {
        content: '';
        position: absolute;
        width: 20px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all .5s ease-in-out;
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger .menu-btn .menu-btn__burger:before {
        transform: translateY(-6px);
    }

    .region.region-subhead #block-thagen-account-menu ul.menu li a#menu-burger .menu-btn .menu-btn__burger:after {
        transform: translateY(6px);
    }

     /* The side navigation menu */
    .sidenav {
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        right: 0;
        background-color: #000; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px 15px 15px 15px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    }

    .sidenav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* The navigation menu links */
    .sidenav a {
        font-family: "Orbitron", Arial, Tahoma, sans-serif;
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 15px;
        color: var(--header-color);
        display: block;
        transition: 0.3s;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
        color: #ddd;
    }

    /* Position and style the close button (top right corner) */
    .sidenav #menu-close-burger {
        position: absolute;
        font-size: 36px;
        margin-left: 150px;
        margin-top: 120px;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
        transition: margin-left .5s;
        padding: 20px;
    }

    .right-side-menu-items {
        margin-top: 200px;
    }
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}
