.menublackout {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.menublackout.show {
    display: block;
}

.hamburger {
    display: none;
    position: absolute;
    top: -1px;
    right: 5px;
    cursor: pointer;
    z-index: 1003;
}

.hamburger .line {
    width: 20px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: all 0.3s ease;
	/*
	box-shadow: 0px 0px 1px 1px rgba(255,255,255,0.75);
	-webkit-box-shadow: 0px 0px 1px 1px rgba(255,255,255,0.75);
	-moz-box-shadow: 0px 0px 1px 1px rgba(255,255,255,0.75);
	*/
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 200px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 0px 10px 10px;
    box-sizing: border-box;
	font-size: .8em;
	color: #343A4B;
}

.menu a {
	text-decoration: none;
	color: inherit;
}

.menu-level {
    list-style: none;
    padding: 30px 20px 20px;
    box-sizing: border-box;
    margin: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
	/*
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform .4s ease;
	*/
}

.menu-item {
    padding: 5px 0;
    cursor: pointer;
    border-bottom: 1px dotted #333 !important;
	transition: 0.2s ease;
}

.menu-item.has-submenu::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
}

.menu-back {
    padding: 5px 0;
    cursor: pointer;
    border-bottom: 1px dotted #333;
    font-weight: bold;
	transition: 0.2s ease;
}

.menu-back:hover, .menu-item:hover {
	color: #fff;
	font-weight: bold;
	background-color: #343A4B;
	padding-left: 10px;
	padding-right: 10px;
}

.submenu {
    display: none;
}

.hamburger.open .line:nth-child(1) {
    transform: rotate(45deg) translate(1px, 6px);
}

.hamburger.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -9px);
}

.menu.open {
    transform: translateX(0);
}

.menu-level.active {
    display: block;
}

.menu-level.exit {
    display: none;
}

.menu-level.exit-left {
    transform: translateX(-120%);
}

.menu-level.exit-right {
    transform: translateX(100%);
}

.menu-level.enter {
    display: block;
    transform: translateX(100%);
}

.menu-level.enter-active {
    transform: translateX(0);
}

img.mobilelogo { display: none; visibility: collapse; }





/* ==========================================================================
   Display specific tweaks
   DEFAULT: 981px - 1249px
   ========================================================================== */

/* HANDHELD LANDSCAPE */
@media (max-width: 767px) {
	img.mobilelogo { display: block; visibility: visible; float: left; height: 20px !important; margin-right: -35px; margin-top: 1px; }
	#navfloat, .navbg, #apply { display: none; visibility: collapse; }
    .hamburger { display: block !important; }
	#gsearch { width: 40%; }
	#navgoogle div.g-all-c, #navgoogle div.g-all-c form { }
	#navgoogle { z-index: 1999; background-color: rgb(205,205,205,0.8) !important; }
	#navgoogle button { padding-top: 2px; padding-bottom: 0.5px; transform: translateY(1px); }
	#poster_in img { display: none; visibility: collapse; }
	#poster_in { height: 27px !important; background-color: rgb(205,205,205,0.8) !important; background-image: none !important; box-shadow: 0px 8px 12px -7px rgba(0,0,0,0.75); -webkit-box-shadow: 0px 8px 12px -7px rgba(0,0,0,0.75); -moz-box-shadow: 0px 8px 12px -7px rgba(0,0,0,0.75); }
	#navgoogle, #poster_in { position: fixed !important; top: 0; left: 0; width: 100%; }
	div.main_in { padding-top: 35px; }
}
