﻿.fixed-nav-bar {
    position: fixed;
    float: right;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 150px;
    font-weight: normal;
    background-color: #555;
}

/* RESPONSIVE - TOP - NAV */
.fixed-nav-bar li,
.fixed-nav-bar a {
    height: 50px;
    line-height: 50px;
}

.menu {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

.menu a,
.menu a:visited {
    font-weight: 400;
    font-size: 1.2em;
}

.menu a:hover,
.menu a:target {
    color: #555;
}

.menu-items {
    display: flex;
    justify-content: flex-end;
}

/*
a.sitename, 
a.sitename:visited {
  color: #555;
} */

.menu-items li {
    display: inline-block;
    /*margin-right: 15px;*/
    /*margin-left: 15px;*/
    margin: 15px;
}

.menu-items a {}

.show,
.hide {
    display: none;
    padding-left: 15px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center left;
    color: #555;
}

.show {}

.hide {}


/*MEDIA-SCREEN*/
@media only screen and (max-width: 800px) {
    .menu {
        position: relative;
        width: 100%;
    }

    .logo {
        position: absolute;
        top: 0;
        left: 15px;
        margin-left: 0;
    }

    .menu-items {
        display: none;
        width: 100%;
        height: 100%;
        /* margin-top: 50px; */
        background-color: rgba(252, 175, 23, 0.9);
    }

    .menu-items li {
        margin: 15px;
        display: block;
        text-align: center;
    }

    .show,
    .hide {
        position: absolute;
        top: 30px;
        right: 15px;
    }

    .show {
        display: inline-block;
    }

    .hide {
        display: none !important;
    }

    #menu:target .show {
        display: none !important;
    }

    #menu:target .hide,
    #menu:target .menu-items {
        display: flex;
        flex-direction: column;
    }
}
}

@media only screen and (max-width: 220px) {

    .sitename,
    .show,
    .hide {
        font-size: 14px;
    }
}