﻿
/* SHOP MOBILE MENU */

nav.mobile {display: none;}
	
/*==============================
	Mobile Nav Styles
================================*/
  #menu-button {
    display: inline-block;
	box-sizing: border-box;
  }		
  nav.mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #333;
    z-index: 9999;
    overflow: auto;
  }
  .mobile.open {
    -webkit-box-shadow: 6px 0px 13px -5px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 6px 0px 13px -5px rgba(0, 0, 0, 0.35);
    box-shadow: 6px 0px 13px -5px rgba(0, 0, 0, 0.35);
  }
  /* MENU HEADER STYLES */
  nav.mobile .mobile_top {
    position: relative;
    display: flex;
    justify-content: flex-start;
    color: #888;
    font-size: 18px;
    font-weight: 400;
	padding-bottom: 60px;
  }
  /* MENU CLOSE 'X' BUTTON */
  nav.mobile .menu-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 8px 3px;
    font-family: 'Bree Serif', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-decoration: none;
  }
  nav.mobile .menu-toggle:hover {
    color: #fff;
	background: #3b541f;
	border-radius: 5px;
  }
  /* MENU LIST STYLE */
  nav.mobile ul {
    list-style: none;
    font-weight: 300;
    margin: 0;
    padding: 0;
  }
  nav.mobile ul li {
    border-bottom: 1px solid #fff;
    position: relative;
  }
  nav.mobile ul ul li {
    border-bottom: none;
    position: relative;
  }
  /* FIRST LEVEL */
  nav.mobile ul li a {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    font-size: 18px;
	line-height: 1.2;
	font-weight: normal;
	cursor: pointer;
    width: 100%;
    padding: 14px 10px 14px 20px;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
	font-family: 'Bree Serif', sans-serif;
  }
  nav.mobile ul li a:hover {
	color: #fff;
	background: #3B541F;
  }
  /* SECOND LEVEL */ 
  nav.mobile ul li li:last-child, nav.mobile ul li li li:last-child {
    border: none;
  }
  nav.mobile ul li li a {
    background: #444;
    position: relative;
    display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
    padding: 12px 35px;
    color: #fff;
    text-decoration: none;
	text-transform: uppercase;
	font-family: 'Bree Serif', sans-serif;
  }
  nav.mobile ul li li a:hover {
    background: #3B541F;
	color: #fff;
  }
  /* THIRD LEVEL */
  nav.mobile ul li li li:last-child {
    border: none;
  }
  nav.mobile ul li li li a {
    background: #555;
    position: relative;
    display: block;
    padding: 7px 10px 7px 35px;
    color: #fff;
    text-decoration: none;
	text-transform: capitalize;
	font-family: 'Bree Serif', sans-serif;
  }
  nav.mobile ul li li li li a {
    background: #111;
    position: relative;
    display: block;
    padding: 7px 10px 7px 35px;
    color: #fff;
    text-decoration: none;
	text-transform: capitalize;
  }
  nav.mobile ul li li li a:hover, nav.mobile ul li li li li a:hover {
    background: #000;
	color: #fff;
  }
	
  .mobile .social-container {padding: 25px;}
  .mobile .social-container i {font-size: 22px; color: #fff;}
  .mobile .social-container a {
    margin-right: 25px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .mobile .social-container a i:hover {opacity: 0.75; transition: all 0.3s ease-in-out;}
	
  .nav-footer {
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    padding: 20px;
	font-family: 'Bree Serif', sans-serif;
  }
  .has-sub-menu a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  /* FONT AWESOME ICONS */
  nav.mobile ul li a .fa {
    width: 25px;
    font-weight: 100;
    padding: 8px 3px;
    margin: 0 6px 0 0;
    text-align: center;
    background: #292929;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  }

@media screen and (max-width: 480px) {
	
}
