* {
	box-sizing: border-box;
}

.container {
	margin: 0 auto;
    margin-top: 15px;
	max-width: 800px;
}


.container::after {
	content: "";
	display: table;
	clear: both;
}

#left-sidebar {
	float: left;
	margin-left: -250px;
	width: 250px;
	padding: 0 16px;
}

#social {
    margin-left: 7px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.social_ico {
    display: inline;
    width: 20px;
    height: 20px;
    padding: 0px;
    border: 0px;
    border-radius: 0px;
    margin-top: 3px;
    margin-right: 3px;
    opacity: 0.75;
}

.social_ico:hover {
    opacity: 0.9;
}

#social a {
    text-decoration: none;
}

#menu {
    margin-left: 7px;
    margin-top: 2px;
}

#content {
	float: left;
	width: 100%;
	padding: 0 16px;
}

#logo {
    margin-top: 10px;
    width: 100%;
}




/* MOBILE (SMALL-WIDTH) */
.mobile-menu {
	display: none;
	padding: 0 16px 8px;
	border-bottom: 1px solid #eceff1;
	height: 60px;
	position: fixed;
	z-index: 99999;
	left: 0; right: 0;
	top: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
	transition: left .3s ease-in-out, right .3s ease-in-out;
}

[data-menu-position=open] .mobile-menu {
	left: -250px;
	right: 250px;
}

@media (max-width: 1300px) {
	#left-sidebar {
		float: none;
		margin: 0;
		display: none;
	}
	
	.container {
		padding-top: 64px;
	}
	
	.mobile-menu {
		display: block;
	}
	
	#content {
		float: none;
	}
	
	.to-top {
		display: none;
	}
}

.to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	background: #eceff1;
	border-radius: 4px;
	padding: 16px;
	cursor: pointer;
}

#logo-mobile {
    margin-top: 8px;
    height: 85%;
}