/* 
- Name: Responsive overlay menu framework
- Version: 1.0
- Latest update: 15.9.2015.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* OPEN / CLOSE BTNS */
.menu-btn {
    position: absolute;
    top: -10px;
    right: 0px;
    z-index: 999;
    display: inline;
    font-size: 32px;
}
.menu-btn a {
    display: inline-block;
    text-decoration: none;
    /* safari hack */
}
.btn-open:after {
    color: #0286a8;
    content: "\f394";
    font-family: "Ionicons";
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}
.btn-open:hover:after {
    color: #34B484;
}
.btn-close:after {
    color: #fff;
    content: "\f2d7";
    font-family: "Ionicons";
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}
.btn-close:hover:after {
    color: #34B484;
}
/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    z-index: 99;
    display: none;
    overflow: auto;
    margin: 0;
    padding: 0;
    width: 70%;
    height: 100%;
    background: #333;
}
.menu {
    width: 100%;
    height: 100%;
}
.menu ul {
    margin: 0;
    padding: 0;
    width: 90%;
    height: 90%;
}
.menu li {
    display: table;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 10%;
    list-style: none;
    text-align: center;
	border-bottom:#999 solid 1px;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}
.menu li a {
    display: table-cell;
    color: #fff;
    vertical-align: middle;
	text-decoration: none; 
}
.menu li:hover {
    background: #34495e;
}
/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .menu-btn {
        right: 25px;
    }
}

.allexamples{
  position:absolute;
  bottom:0;
  font-size:18px;
  font-weight:bold;
  width:100%;
  text-align:center;
  background:#e9e9e9;
  padding:20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color:#333;
  position:fixed;
} 