@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Comfortaa:wght@300&family=Grape+Nuts&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
}

body{
	position: relative;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
}

.sidebar{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 78px;
	background: #0047AB;
	padding: 6px 14px;
	transition: all 0.5s ease;
}

.sidebar.active{
	width: 240px;
}

.sidebar .logo_content .logo{
	color: #fff;
	display: flex;
	height: 50px;
	width: 100%;
	align-items: center;
	opacity: 0;
	pointer-events: none;
}

.sidebar.active .logo_content .logo{
	opacity: 1;
	pointer-events: none;
}

.logo_content .logo .logo_name{
	font-family: 'Grape Nuts', cursive;
	font-size: 30px;
}

.sidebar #btn{
	position: absolute;
	color: #fff;
	left: 90%;
	top: 6px;
	left: 50%;
	font-size: 20px;
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 50px;
	transform: translateX(-50%);
}

.sidebar.active #btn{
	left: 90%;
}

.sidebar ul{
	margin-top: 20px
}

.sidebar ul li{
	position: relative;
	height: 50px;
	width: 100%;
	margin: 0 5px;
	list-style: none;
	line-height: 50px;
}

.sidebar ul li .tooltip{
	position: absolute;
	left: 122px;
	top: 0;
	transform: translate(-50%, -50%);
	border-radius: 6px;
	height: 35px;
	width: 122px;
	background: #fff;
	line-height: 35px;
	text-align: center;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	transition: 0s;
	opacity: 0;
	pointer-events: none;
	display: block;
	z-index: 100;
}

.sidebar.active ul li .tooltip{
	display: none;
}

.sidebar ul li:hover .tooltip{
	transition: all 0.5s ease;
	opacity: 1;
	top: 50%;
	z-index: 100;
}

.sidebar ul li a{
	color: #bdb8d7;
	display: flex;
	align-items: center;
	transition: all 0.4s ease;
	border-radius: 12px;
	white-space: nowrap;
}

.sidebar ul li a:hover{
	color: #fff;
	background: #6495ED;
}

.sidebar ul li a i{
	height: 50px;
	min-width: 50px;
	border-radius: 12px;
	line-height: 50px;
	text-align: center;
}

.sidebar .links_name{
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

.sidebar.active .links_name{
	opacity: 1;
	pointer-events: auto;
}

.sidebar .profile_content{
	position: absolute;
	color: #bdb8d7;
	bottom: 0;
	left: 0;
	width: 100%;
}

.sidebar.active .profile_content .profile:hover{
	color: #fff;
	background: #6495ED;
	cursor: pointer;
}

.sidebar .profile_content .profile{
	position: relative;
	padding: 10px 6px;
	height: 60px;
	background: none;
	transition: all 0.5s ease;
}

.sidebar .profile_content .profile a{
	color: #bdb8d7;
}

.sidebar .profile_content .profile_details{
	display: flex;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
}

.sidebar.active .profile_content .profile_details{
	opacity: 1;
	pointer-events: auto;
}

.profile_content .profile_details .name_role{
	margin-left: 30px;
	margin-top: 11px;
}

.profile_content .profile_details .logout{
	font-size: 21px;
}

.profile #log_out{
	position: absolute;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	min-width: 50px;
	line-height: 50px;
	font-size: 20px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.5 ease;
	background: #0a58c5;
}

.profile #log_out:hover{
	color: #fff;
	background: #6495ED;
	cursor: pointer;
}

.sidebar.active .profile #log_out{
	left: 88%;
	background: none;
}

.wallpaper{
	position: absolute;
	background-image: url("../img/wallpaper.jpg");
	z-index: -5;
	height: 100%;
	width: calc(100% - 78px);
	left: 78px;
	transition: all 0.5s ease;
}

.sidebar.active ~ .wallpaper{
	width: calc(100% - 240px);
	left: 240px;
}

.home_content{
	position: absolute;
	height: 100%;
	width: calc(100% - 78px);
	left: 78px;
	transition: all 0.5s ease;
}

.sidebar.active ~ .home_content{
	width: calc(100% - 240px);
	left: 240px;
}

.row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 70px 0;
	position: relative;
}

.col-1{
	flex-basis: 75%;
	position: relative;
	margin-left: 100px;
	max-height: 600px;
}

table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
	font-size: 20px;
  }
  
  table caption {
	font-size: 1.5em;
	margin: .5em 0 .75em;
  }
  
  table tr {
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	padding: .35em;
  }
  
  table th,
  table td {
	padding: .625em;
	text-align: center;
  }
  
  table th {
	font-size: .85em;
	letter-spacing: .1em;
	text-transform: uppercase;
  }
  
    table .button{
        display: block;
        height: 45px;
        width: 75px;
        outline: none;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        cursor: pointer;
        transition: .5s;
        background-image: linear-gradient(to right, #303ce0, #8990f1, #303ce0);
        background-size: 200%;
        margin-left: 35%;
    }
    
    table .button:hover{
        /* transform: scale(0.99); */
        background-position: right;
    }
  
  @media screen and (max-width: 1200px) {
	table {
	  border: 0;
	}
  
	table caption {
	  font-size: 1.3em;
	}
	
	table thead {
	  border: none;
	  clip: rect(0 0 0 0);
	  height: 1px;
	  margin: -1px;
	  overflow: hidden;
	  padding: 0;
	  position: absolute;
	  width: 1px;
	}
	
	table tr {
	  border-bottom: 3px solid #ddd;
	  display: block;
	  margin-bottom: .625em;
	}
	
	table td {
	  border-bottom: 1px solid #ddd;
	  display: block;
	  font-size: .8em;
	  text-align: right;
	}
	
	table .scanButton{
	    height: 60px;
	}
	
	table .button{
	    float: right;
	    width: 75px;
	}
	
	table td::before {
	  /*
	  * aria-label has no advantage, it won't be read inside a table
	  content: attr(aria-label);
	  */
	  content: attr(data-label);
	  float: left;
	  font-weight: bold;
	  text-transform: uppercase;
	}
	
	table td:last-child {
	  border-bottom: 0;
	}
  }