/*

Important static shit

*/
html, body{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	color: #fff;
}
body{
	background-image: url(../_img/fN.png);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/*

Some theme layout shit shit

*/
nav {
  overflow: hidden;
  background-color: #333;
}
.navbar {
  overflow: hidden;
  background-color: #333;
}

nav a {
  float: left;
  font-size: 16px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

nav a:hover, .dropdown:hover .dropbtn {
  background-color: #6E6E6E;
}
nav a[title]:hover::after{
	color: #d01a43;
    background: linear-gradient(75deg, #10960e 13%,#FFFF00 57%, #940a0a 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

main{
	margin-top: 25px;
	color: #fff;
	margin-left:3%;
	width: 94%;
	height: auto;
	display: inline-flex;
}
article
{
	width: 70%;
	background-color: #6E6E6E;
	float: left;
	padding-left: 15px;
	margin-left: 15px;
}
aside{
  width: 20%;
  height: 100%;
  padding-left: 15px;
  margin-left: 15px;
  float: right;
  background-color: #848484;
}
footer{
	background-color: lightgray;
	width: 100%;
	height: 50px;
	bottom:0px;
}

/*
	Users
*/

h1{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}
table{
  width:100%;
  table-layout: fixed;
}
.tbl-header{
  background-color: rgba(255,255,255,0.3);
 }
.tbl-content{
  height:300px;
  overflow-x:auto;
  margin-top: 0px;
  border: 1px solid rgba(255,255,255,0.3);
}
th{
  padding: 20px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}
td{
  padding: 15px;
  text-align: left;
  vertical-align:middle;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,0.1);
}

/* for custom scrollbar for webkit browser*/

::-webkit-scrollbar {
    width: 6px;
} 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
} 
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}

/**/
section#photos 
{
	width: 70%;
}
#photos
{
  /* Prevent vertical gaps */
  line-height: 0;
   
  -webkit-column-count: 5;
  -webkit-column-gap:0px;
  -moz-column-count:5;
  -moz-column-gap:0px;
  column-count:5;
  column-gap:0px;
    

}

#photos img
{
  /* Just in case there are inline attributes */

  width: 100% !important;
  height: auto !important;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(to left, #743ad5, #d53a9d);

}
.img
{
	position:relative;
}
img
{
	opacity: 1;
	backface-visibility: hidden;
	display: block;
}
.info
{
	opacity: 0;
	position: absolute;
	top:20px;
	left: 13px;

}
.img:hover img {
  opacity: 0.3;
}

.img:hover .info {
  opacity: 1;
}
.info div
{
	color: #000;
	line-height: 1;
}
@media (max-width: 1200px)
{
	section#photos
	{
		width: 100%;
	}
  #photos
  {
    -moz-column-count:4;
    -webkit-column-count:4;
    column-count:4;
  }
}
@media (max-width: 1000px)
{
	section#photos
	{
		width: 100%;
	}
  #photos
  {
    -moz-column-count:3;
    -webkit-column-count:3;
    column-count:3;
  }
}
@media (max-width: 800px)
{
	section#photos
	{
		width: 100%;
	}
  #photos
  {
    -moz-column-count:2;
    -webkit-column-count:2;
    column-count:2;
  }
}
@media (max-width: 400px) 
{
	section#photos
	{
		width: 100%;
	}
  #photos
  {
    -moz-column-count:1;
    -webkit-column-count:1;
    column-count:1;
  }
}