﻿body {
}

#MiniLeftNav li {
    list-style: outside none none;
    margin: 20px 0;
    padding: 0;
    width: 48px;
}

    #MiniLeftNav li a {
        border: solid 1px #ffcc00;
        background-color: #ffcc00;
        border-radius: 26px;
        display: block;
        padding: 7px;
        position: relative;
    }

#MiniLeftNav span {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    bottom: 0;
    right: 0px;
    line-height: 38px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 0;
    /* CSS3 Transition: */
    -webkit-transition: 0.50s;
    /* Future proofing (these do not work yet): */
    -moz-transition: 0.50s;
    transition: 0.50s;
}

#MiniLeftNav a:hover span {
    width: auto;
    padding: 0 30px;
    overflow: visible;
}

#MiniLeftNav a:hover {
    text-decoration: none;
}

#MiniLeftNav a span {
    background-color: #ffcc00;
    color: #fff;
    border-radius: 20px
}
.button {
    background-color: #f7c605;
    border: none;
    border-radius: 40px;
    color: white;
    padding: 13px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.responsive-nav-icon::before,
.responsive-nav-close::before {
    color: #93a748;
    content: "\f0c9";
    font-family: FontAwesome;
    font-size: 22px;
    position: relative;
}

.responsive-nav-close::before {
    color: #93a748;
    content: "\f00d";
    font-size: 18px;
}

.responsive-nav-icon {
    background: #fff;
    line-height: normal;
    padding: 5px 8px 4px;
    top: 5%;
    left: 5%;
}

    .responsive-nav-icon:hover,
    .responsive-nav-close:hover {
        opacity: .7;
    }

.responsive-nav-close {
    top: 10px;
    right: 10px;
}

.responsive-nav-icon,
.responsive-nav-close {
    cursor: pointer;
    display: none;
}

#overlay {
    background: 0 0 rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    width: 100%;
    z-index: 90;
}

@media only screen and (max-width: 960px) {
    .responsive-nav-icon,
    .responsive-nav-close {
        display: block;
        position: absolute;
        z-index: 1;
    }

    nav {
        height: 100%;
        padding: 20px;
        position: fixed;
        top: 0;
        left: -400px;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -ms-transition: all 0.2s linear 0s;
        transition: all 0.2s linear 0s;
        width: 0;
    }

        nav.slide-in {
            left: 0;
            overflow-y: scroll;
            width: 280px;
            z-index: 100;
        }

        nav .menu-item {
            display: block;
        }

    .mobile-container {
        max-width: 480px;
        margin: auto;
        background-color: none;
        height: 500px;
        color: white;
        border-radius: 10px;
    }

    .topnav {
        overflow: hidden;
        background-color: none;
        position: relative;
    }

        .topnav #myLinks {
            display: none;
        }

        .topnav a {
            color: white;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
            display: block;
        }

            .topnav a.icon {
                background: black;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
            }

            .topnav a:hover {
                background-color: #ddd;
                color: black;
            }

    .active {
        background-color: none;
        color: white;
    }