.navbar {
    display: block;
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 80px;
    padding-right: 18px;

    min-width: 440px;

    overflow: hidden;

    background-color: steelblue;


    z-index: 50;

    color: white;
    fill: white;

    box-shadow: black 0 0 10px 0;
    -webkit-box-shadow: black 0 0 10px 0;
    -moz-box-shadow: black 0 0 10px 0;
    -o-box-shadow: black 0 0 10px 0;
}



.navbar-logo-container {
    display: inline-block;
    height: 100%;
    width: 30%;
    vertical-align: middle;
    text-align: center;
}

.navbar-logo {
    display: inline;
    height: 60px;
    width: auto;
    max-width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    vertical-align: middle;



    /*color: #a9abae;*/
    /*fill: #a9abae;*/

    fill: white;

    -webkit-filter: drop-shadow(-0px -0px 3px #000);
    filter: drop-shadow(-0px -0px 3px #000);
}

.navbar-logo-hidden {
    display: none;
}

.navbar-items {
    display: inline-block;
    height: 100%;
    width: 70%;
    vertical-align: middle;
}

.navbar-item {
    display: inline-block;
    height: 100%;
    width: 240px;
    cursor: pointer;
    /*color: rgb(169,171,174)*/
    color: white;
    fill: white;
    text-align: center;
}

.navbar-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.navbar-item:hover {
    /*border-top: darkseagreen 2px solid;*/

    /*font-weight: bold;*/
    color: white;
    fill: white;
    -webkit-filter: drop-shadow(-0px -0px 5px #000);
    filter: drop-shadow(-0px -0px 5px #000);

}

.navbar-item-selected {
    font-weight: bold;
    color: white !important;
    fill: white !important;
    -webkit-filter: drop-shadow(-0px -0px 5px #000);
    filter: drop-shadow(-0px -0px 5px #000);

}

.navbar-item-selected:hover {
    color: white;
    fill: white;
}

.navbar-item-img {
    display: inline-block;
    width: 80px;
    height: 100%;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;

    vertical-align: middle;

    color: white;
    fill: white;


}


.navbar-item-text {
    display: inline-block;
    width: auto;
    height: auto;
    text-align: left;
    padding-left: 10px;
    vertical-align: middle;
    font-family: Arial, Tahoma, serif;
    font-size: 1.5rem;
}

@media screen and (max-width: 1060px){

    .navbar-item-text {
        display: none;
    }

    .navbar-item {
        width: 29%;
        min-width: 80px;
    }

    .navbar-item-img {
        width: 60px;

    }

    .navbar-logo-container {
        width: 40%;
    }

    .navbar-items {
        width: 60%;
    }


    .navbar-logo {
        height: 65px;
    }

}