﻿#loginForm a {
    color: turquoise;
}
.bottomnavbar {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    bottom: 0;
    width: 100%;
}

    .bottomnavbar a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

        .bottomnavbar a:hover {
            background-color: #ddd;
            color: black;
        }

        .bottomnavbar a.active {
            background-color: #04AA6D;
            color: white;
        }

    .bottomnavbar .icon {
        display: none;
    }

@media screen and (max-width: 600px) {
    .bottomnavbar a:not(:first-child) {
        display: none;
    }

    .bottomnavbar a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .bottomnavbar.responsive .icon {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .bottomnavbar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

