﻿.body_left_menu{
	position: relative;
	margin-left: 250px;
	width: 90%;
	-webkit-transition: margin 0.3s;
	-moz-transition: margin 0.3s;
	transition: margin 0.3s;
}

.left_menu{
	position: absolute;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #252525;
	z-index: 2;
	transition: transform 0.3s ease;
}

.left_menu_active{
	margin-left: 250px;
	width: 90%;
}

.left_menu ul{
	position: fixed;
	width: 250px;
	top: 100px;
	margin: 0 0 0 0;
	padding: 0;
	border-top: 1px solid #3e3e3e;
}

.left_menu ul li{
	list-style: none;
	border-bottom: 1px solid #3e3e3e;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
}

.left_menu ul li a{
	display: block;
	font-family: "Segoe ui", "Helvetica Neue", "HelveticaNeueCyr", "Helvetica", "Arial";
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 400;
	color: #b2b2b2;
	font-size: 14px;
	line-height: 44px;
	padding: 0 0 0 20px;
}

.left_menu ul li:hover{
	background: #323232;
}

.left_menu ul li a:hover{
	color: #fff;
}

.mobile_m_item{
	display: none;
}

.left_menu_social_count{
	position: relative;
	margin: -380px 0 0 20px;
	width: 900px;
	height: 22px;
}


@media screen and (max-width: 900px) {

.left_menu{
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100vh !important;
	z-index: 20;
	transform: translateX(-100%);
	background: #0f1014;
	box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.left_menu.left_menu--visible{
	transform: translateX(0);
}

.left_menu ul{
	position: absolute !important;
	top: 80px;		
	z-index: 25;
	width: 100% !important;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

.left_menu ul li {
	top: 0;
	width: 100%;
}

.left_menu ul li a{
	font-size: 21px;
	line-height: 60px;
	padding: 0 24px;
}
	
.mobile_m_item{
	display: block;
}

.mobile_m_item_small a{ 
	font-size: 18px !important;
}

.mobile_m_item_small{ 
	padding-left: 15px !important;	
}
	
.left_menu_social_count{
	display: none;
}

}