#sidebar {
	display: flex;
	position: fixed;
	right: 0px;
	top: 0px;
	bottom: 0;
	z-index: 1;

}

#sb_handle {
	background-color: #B71234;
	border-bottom-left-radius: 10px;
	cursor: pointer;
	height: 38px;
	box-shadow: 0 0 10px 0 #17171775;
	margin-left: -36px;
}

#sb_handle img {
	height: 36px;
}

#sb_content {
	background-color: #FFF;
	min-width: 180px;
	box-shadow: 0 30px 10px 0 #17171775;
	border-left: 10px solid #B71234;
}

#sb_content ul{
	padding: 0px;
	color: white;
	list-style-type: none;
}

#sb_content ul li{
	position: relative;
	padding: 0 30px;
	border-bottom: 1px solid #d9d9d9;
	text-align: left;
}

#sb_content a{
	color: #000;
	line-height: 2.5;
	font-family: "Times New Roman", Georgia, Serif;
	font-style: italic;
	font-size: 20px;
	text-transform: uppercase;
	border-bottom: 1px solid #FFFFFF00;
	transition: color .5s, border-bottom .5s;
}

#sb_content a:hover{
	border-bottom: 1px solid #a4d65e;
	color: #a4d65e;
}

#sb_content ul a::before {
	content: "";
	border-left: 3px solid #a4d65e;
	position: absolute;
	height: 31px;
	display: inline-block;
	transform: skewX(-15deg);
	left: 20px;
	top: 7px;
}

#m_icons {
	position: absolute;
	bottom: 0;
	text-align: center;
	background-color: white;
	display: flex;
	border-top: 1px solid #d9d9d9;
	width: 100%;
}

#m_icons a {
	margin: 0 10px;
}