.garnet {
	color: #73000a;
}

.hidden {
	display: none;
}

div.head_box {
	box-shadow: 0px 5px 20px black;
	margin-bottom: 10px;
}

div.head_redbar {
	height: 18px;
	width: 100%;
	background-color: #73000a;
}

div.head_blackbar {
	display: flex;
	flex-direction: column;
	background-color: black;
	text-align: center;
}

img.head_image {
	max-height: 70px;
	padding: 10px;
	margin-top: 5px;
}

div.login {
	padding: 5px;
}

body {
	background-color: #ffffff;
	font-family: Arial;
	font-size: 100%;
	margin: 0 auto 0% auto;
	max-width: 1024px;
	background-color: Gray;
	box-shadow: 0px 10px 20px black;
	height: 100%;
}

div.body_div {
	background-color: White;
	padding-bottom: 20px;
}

div.techhelp {
	width: 50%;
	max-height: 200px;
	margin: 4px auto 12px auto;
	border: solid 5px #73000a;
	text-align: left;
	box-shadow: 0px 5px 10px gray;
	padding-left: 10px;
	padding-right: 10px;
}

div.MainDiv {
	margin: auto;
	text-align: center;
	display: flex;
	width: 90%;
	flex-wrap: wrap;
}

div.MiniDiv {
	margin: 0 auto auto auto;
	flex: 0 0 40%;
}

button {
	text-align: center;
	font-size: 1em;
}

h1 {
	font-size: 1.5em;
	background-color: lightGray; 
	border: solid 2px; 
	border-color: Gray;
	padding: 2px;
}

p {
	width: unset;
	font-size: 1em;
}

p.pcst, p.pcoutcode {
	margin-top: 4px;
	margin-bottom: 4px;
}

p.pcst {
	font-size: 1.5em;
}

p.pcoutcode {
	font-size: 2.5em;
    font-family: monospace;
	font-weight: bold;
}

p.justified {
	text-align: justify;
}

p.techhelp {
	margin-top: 5px;
	margin-bottom: 5px;
}

p.technote {
	text-align: center;
	font-size: .75em;
	margin-top: 5px;
	margin-bottom: 5px;
}

footer {
	text-align: center;
	position: fixed;
	/* left: 0; */
	bottom: 0;
	width: 100%;
	margin: 0 auto 0% auto;
	min-width: 280px;
	max-width: 1024px;
	background-color: Gray;
	color: white;
	font-family: 'Consolas';
	max-height: 20px;
}

/* Changes for smaller screens (phones, tablets, etc...) */
@media only screen and (max-width: 1023px) {
  html {
	height: 100%;
  }
  body {
	width: 100%;
	margin: 0;
	box-shadow: none;
	background-color: #73000a;
  }
  div.login {
	padding: 1px;
  }
  div.body_div {
	min-height: 100%;
  }
  div.techhelp {
	width: 330px;
	max-height: 220px;
	margin: 10px auto auto auto;
	box-shadow: none;
  }
  div.MainDiv {
	flex-direction: column;
  }
  div.MiniDiv {
	width: 100%;
	margin: unset;
  }
  /* footer {
	 background-color: #73000a; 
  } */
}

/* Fix for very small screen */
@media only screen and (max-width: 349px) {
  img.head_image {
    width: 275px;
  }
  div.techhelp {
	width: 290px;
  }
}

/* Popup container */
.popup {
  position: relative;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
}