body{
	color:  #fff;
	background: url('bg.jpg')no-repeat fixed 50% ;
	background-size: cover;
	font-size: 13px;
	min-height: 100vh;
}
main {
	min-height: 90vh;
}
footer {
  bottom: 0;
  width:100%;
}
.container{
	background: rgba(0, 0, 0, 0.3);
}

.md-overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 100; /* opacity: 0; */ 
	background: rgba(0, 0, 0, 0.45);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s; /* transition: all 0.3s; */
}
.md-show~.md-overlay {
	opacity: 1;
	visibility: visible;
}
video{
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-webkit-transform: translateX(-50%)translateY(-50%);
	transform: translateX(-50%)translateY(-50%);
	background-size: cover;
	-webkit-transition: 1s opacity;
	transition: 1s opacity;
}
video#bgvid{ /* width: 100%; height: 100%; margin-top: -60px;*/
}
.video-overlay{
	position: fixed;
	width: 100%;
	height: 100%; /* visibility: hidden; */ top: 0;
	left: 0;
	z-index: -100; /* opacity: 0; */ background: rgba(0, 0, 0, 0.44);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s; /* transition: all 0.3s; */
}
#dot-matrix{
	background: url('../images/dot.png');
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: -98;
}
canvas{
	display: block;
}

#loader {
	position: absolute;
	left: 50% ;
	top: 50% ;
	z-index: 1;
	margin: -75px 0 0-75px;
	border: 8px solid #f3f3f3;
	border-radius: 50% ;
	border-top: 8px solid #347edb;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite
}
#modal-loader {
    position: relative;
    z-index: 1;
    left: 50%;
    margin: 0px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #347edb;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
 @-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg)
	}
}
 @keyframes spin {
	0%{
		transform: rotate(0)
	}
	100%{
		transform: rotate(360deg)
	}
}


select {
  border: 1px solid #347edb;
  background: #555;
}
.table-responsive{
	border : none;
}
.table-hover>tbody>tr:hover{
	background-color:rgba(0, 0, 0, .7);
}

.dataTables_filter input{
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
    background: transparent;
	border: 1px solid #347edb; 
	color:#eee;
}

.dataTables_length select{
    width: 75px;
    display: inline-block;
    background: transparent; 
	background-color: #555;
    border: 1px solid #347edb;
	color:#eee;
} 

pre {
    height: 300px !important;
    overflow-x: hidden;
    background-color: #505050;
    color: #e0e0e0;
    border: 1px solid #676767;
}
.modal-content {
    position: relative;
	background: rgb(25, 25, 25,.95);
}
button.close{
	color:#fff;
	opacity: .5;
}