@import url('https://fonts.googleapis.com/css2?family=Quantico&family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300');

* {
	margin:0px;
	padding:0px; 
}

html, body {
	height:100%; 
}

#header {
	min-height: 35px;
	background-color: #da0f0f;
	color:white;
	font-size:1.5em;
	padding: 5px;
	text-align: center;
}

body {
	background: #E5E7E7;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size:12px;
}

.main-logo {
	width:35%;
	margin-bottom: 25px;
}

.big-h-line {
	background-color: #268F3A;
	width: 100%;
	height: 15px;
	line-height: 80%;
	margin-bottom: 25px;
}

.h-line {
	background-color: #268F3A;
	width: 100%;
	height: 5px;
	line-height: 80%;
	margin-bottom: 25px;
}

#doswindow {
	width: 50%;
	max-width: 800px;
	position: relative;
	top:30px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#doswindow p {
	color: #000;
	font-size: 24px;
	font-weight:bolder;
	margin-bottom: 25px;
}

#logon-box {
	text-align: center;
}

#logon { 
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: #268F3A;
	width: 50%;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	-webkit-transition: all 0.3 ease;
	margin: 0 0 15px;
	transition: all 0.3 ease;
	cursor: pointer;
}

#logon:hover {
	background: #4CAF50;
}

#terminal-test {
	height: 250px;
}

.info-window-one {
	width: 60%;
	max-width: 1200px;
	max-height: 1024px;
	overflow-y: scoll;
	position: relative;
	display: none;
	top: 50px;
	margin-left: auto;
	margin-right: auto;
}

.top-bar {
	width:100%;
	height:20px;
	background-color: #bdbdbd;
}

.top-bar p {
	float:right;
	margin-top: 2px;
	margin-right: 5px;
}

.top-bar i {
	font-size:15px;
	color:#000;
	padding-left: 5px;
	text-align: right;
}

.nav-bar {
	width:100%;
	height:40px;
	background-color: #808080;
}

.nav-bar p {
	width:100%;
	height:40px;
	display: table-cell;
	vertical-align: middle;
	font-size:16px;
	color:black;
	padding-left: 15px;
}

.nav-bar .nav-blackout {
	color:#bdbdbd;
	padding:2px 5px;
	background-color: black;
}

.content {
	background: black;
	border: 1px solid #808080;
	min-height: 200px
}

.info-window-content {
	padding:10px;
	font-size:24px;
}

.info-window-content h1 {
	font-size:1em;
	color: #b8b8b8;
	text-decoration: underline #b8b8b8;
	text-underline-offset: 8px;
}

.info-window-content h1 span {
	color:white;
}

.info-window-content p span {
	color: #b8b8b8;
} 

.info-window-content .mugshot {
	float:left;
	padding:0 10px 5px 0;
	width:350px;
	height:350px;
}

.info-window-content .imgmap {
	margin-top: 10px;
}

#output {
	min-height: 200px;
	height:calc(100% - 40px);
	overflow-y: scroll;
	overflow-x: hidden;
	padding:5px;
	font-size:14px;
}

.bottom {
	height:30px;
	line-height:30px;
	font-size:14px;
	background: black;
	padding-left:5px;
	border: 1px solid #808080;
}

.bottom button {
	font-weight: bold;
	padding: 0 5px 0 5px;
	margin-left: 5px;
}

.bottom-bar {
	height:20px;
	font-size:10px;
	line-height: 20px;
	background: black;
	text-align: right;
	border: 1px solid #808080;
	padding-right: 5px;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
	opacity: 0;
  }
}

#video-player {
	display: none;
}

#input input[type=text] {
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: #f2f2f2;
	width: 50%;
	border: 0;
	margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
}

#input input[type=password] {
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: #f2f2f2;
	width: 50%;
	border: 0;
	margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
}

.fullscreen-video {
	position: fixed;
	overflow: hidden;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
	z-index: -10;
}

.bg-overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.6;
	z-index: -9;
}

form {
	margin: 0 auto;
	text-align: center;
}

#access-btn { 
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: #268F3A;
	width: 50%;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	-webkit-transition: all 0.3 ease;
	margin: 0 0 15px;
	transition: all 0.3 ease;
	cursor: pointer;
}

#access-btn:hover {
	background: #4CAF50;
}

.deny-button { 
	background-color: #da0f0f;
	color:white;
	padding: 10px;
	margin-top: 10px;
	margin-left: 15px;
	font-weight: bold;
}

input#console {
	border: 1px solid white;
	background-color: black;
	color: white;
	padding-top: 5px;
	padding-bottom: 5px;
	width:100%;
}
input#console:focus {
	outline: 0;
}

.hidden {
	display: none !important;
}

.security-question {
	text-align: center;
	margin:0 auto;
}

#open-security { 
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: #268F3A;
	width: 50%;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	-webkit-transition: all 0.3 ease;
	margin: 0 0 15px;
	transition: all 0.3 ease;
	cursor: pointer;
}

#open-security:hover {
	background: #4CAF50;
}






:root {
	/* primary color */
	--Dark-Blue: hsl(233, 26%, 24%);
	--Lime-Green: hsl(136, 65%, 51%);
	--Bright-Cyan: hsl(192, 70%, 51%);
  
	/* neutral color */
	--Grayish-Blue: hsl(233, 8%, 62%);
	--Light-Grayish-Blue: hsl(220, 16%, 96%);
	--Very-Light-Gray: hsl(0, 0%, 98%);
	--White: hsl(0, 0%, 100%);
  
	/* fonts */
	--h1: 2.3rem;
	--h2: 1.8rem;
	--h3: 1.3rem;
	--h4: 0.8rem;
	--Fw-light: 300;
	--Fw-regular: 400;
	--Fw-bold: 700;
  
	/* others */
	--Transition: all 0.3s ease-in-out;
	--Light-boxshadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	--Dark-boxshadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	--Line-height: 1.5;
	--Opacity: 0.8;
  }

.next-page {
	float:right;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: #268F3A;
	width: 15%;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 10px;
	font-weight: bold;
	-webkit-transition: all 0.3 ease;
	margin: 15px;
	transition: all 0.3 ease;
	cursor: pointer;
}
.value-section {
	text-align: center;
	font-size: 16px;
	font-weight:lighter;
}

.value-section span {
	font-size: 14px;
	font-weight:lighter;
}

.desc {
	padding: 3.5em 0;
}
.value {
	display:inline-block;
	width:49%;
	margin-bottom: 2.3em;
}
.value-4 {
	margin-bottom: 0;
	padding-bottom: 3.5em;
}
.value .icon,
.value h3 {
	margin-bottom: 1.4rem;
}
  
footer {
	background-color: #268F3A;
	padding: 3.5em 0 2.5em;
  }
  .footer-items {
	text-align: center;
	margin-bottom: 2em;
  }
  .ftr-item-1,
  .ftr-item-2 {
	margin-bottom: 2em;
  }
  .social > a {
	display: inline-block;
	transform: scale(1.3);
	margin: 0 0.5em;
	transition: var(--Transition);
  }
  .social > a img:hover {
	filter: invert(0.05) sepia(1) saturate(8.5) hue-rotate(50.4deg)
	  brightness(0.92);
  }
  .ftr-logo {
	margin-bottom: 2em;
  }
  .ftr-nav li {
	line-height: 2;
  }
  .ftr-nav a {
	color: var(--White);
	transition: var(--Transition);
  }
  .ftr-nav a:hover {
	color: var(--Bright-Cyan);
  }
  .cta-3 {
	margin-bottom: 2em;
  }
  .attribution {
	text-align: center;
	color: var(--White);
  }
  .attribution a {
	color: var(--Lime-Green);
	font-weight: var(--Fw-bold);
  }
  .hero-section.blur {
	filter: blur(3px);
  }
  .copyright {
	color:#fff
  }

  .table-wrap {
	max-width: 800px;
	margin: 80px auto;
	overflow-x: auto;
  }
  
  table, td, th {
	border: 1px solid #ddd;
	text-align: left;
	font-size:18px;
	text-transform:capitalize;
  }
  th{
	  background: #268F3A;
	  color: #fff;
  }
  
  table {
	border-collapse: collapse;
	width: 100%;
  }
  
  th, td {
	padding: 15px;
	white-space: nowrap;
  }
  
  table tbody tr:nth-child(odd) {
	  background: #c8eccf;
	  color: #000;
	  font-weight: 500;
  }
  
  .box-wrap {
	padding: 0px 16px;
  }/*# sourceMappingURL=main.css.map */
  