﻿/* NAVIGATION  */

.menu-toggle {
    position: fixed;
    top: -4px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    padding: 0px;
    /*border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);*/
}
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #CCCCCC;
    transition: right 0.3s ease;
    padding-top: 70px;
    /*box-shadow: -2px 0 10px rgba(0,0,0,0.1);*/
    z-index: 1000;
    font-family: swiss;
}
.sidebar.active {
    right: 0;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li {
    padding: 15px 0px 15px 20px;
    border-bottom: 1px solid #eee;
}
.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 999;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
