
* {
/*  font-family: "Raleway";*/
  box-sizing: border-box;
}

   
body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
/*      height: 100vh;*/
    }
header {
/* 	width: 100%;
 	max-width: 950px;
 	margin-left: auto;
 	margin-right: auto;
 	height: 30px;
	border-bottom: 1px solid #494949;
	display: flex;
	align-items: center;
	column-gap: 5px;
 	background-color: gray;*/
}
.dataTables .container{
	padding-right: 20px;
}
.content{
    	width: 100%;
/*    	max-width: 950px;*/
    	margin-left: auto;
    	margin-right: auto;
    	position: relative;
    	height: calc(100% - 150px);
    	overflow: scroll-y;
    	background-color: white;
/*    	border: solid 1px gray;*/
    	border-radius: 10px;
}
.logo{
 	float: right;
 	width: 50px;
 	height: 30px;
 	background-color: white;
 	border: solid 1px black;
 	border-radius: 2px;
 	display: inline-block;
}
.boxed{
 	background: white;
 	color: black;
 	border-radius: 4px;
}
.farright{
	margin-left: 150px;
}
header a.menu_icon {
	transition: .2s ease;
}
header menu_icon:hover {
	color: red;
}
nav.menu {
	width: 300px;
	min-height: 10em;
	background-color: #03a9f4;
	position: absolute;
	left: -300px;
	transition: .3s all;
	z-index: 0;
}
nav.menu > a {
    display: block;
    padding: 5px;
    margin: 15px 0 0px 20px;
    color: #494949;
    text-transform: uppercase;
}
.menu_show {
	left: 0!important;
	z-index: 50;
}