/* CSS Document */
@charset "utf-8";

@font-face {
  font-family: "Agency FB"; /* set name */
  src: url("fonts/AGENCYB.TTF"); /* url of the font */
}

:root {
 	--kqth-yellow: #ffd339; 
	--kqth-orange: #ee9320;
}


html {
		
}

body {
	font-family: "Arial", sans-serif;
}

hr {
	border: 4px dashed #f3f3f3;
}

iframe {
	border-radius: 20px;
}

.mainBodyContainer .finePrintText {
	font-size: 11pt;
	color: #5c5c5c;
}

a, a:visited {
	color: #929292;
}

a:hover {
	color: #3a3a3a;
	transition: 0.3s;
}

a.fill-div {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.userMessage {
	font-weight: bold;
	color: red;
}

#footer {
	margin-top: 100px;
	color: #929292;
	font-size: 13pt;
}

#footer a, #footer a:visited {
	color: #929292;
}

#footer a:hover {
	color: #393939;
}

#showPasswordText {
	color: #393939;
}

.mainBodyContainer {
	margin:0 auto 80px auto;
	width: 800px;
	text-align: center;
}

.mainBodyContainer p {
	line-height: 130%;
	font-size: 13pt;
}

.logoImage {
	width: 600px;
}

h1, h2, h3 {
	font-family: "Agency FB", sans-serif;
}

h1 {
	font-size: 28pt;
}

h2 {
	font-size: 22pt;
}

h3 {
	font-size: 20pt;
}

h2#statusTracker {
	margin-bottom: 0;
}

.accountBar {
	font-weight: bold;
	font-size: 11pt;
}

.formFieldTitle {
	font-family: "Agency FB", sans-serif;
	font-size: 20pt;
}

.textField {
	width: 300px;
	height: 40px;
	font-size: 16pt;
	border: 1px solid #bbbbbb;
	padding: 0 10px;
}

.instructionsTextArea {
	font-family: Arial, Helvetica, sans-serif;
	width: 300px;
	font-size: 14pt;
	border: 1px solid #bbbbbb;
	padding: 10px;	
}

.formEntryElement {
	margin-top: 10px;
}

.formLabel {
	margin-top: 40px;
}

.submitButtonArea {
	margin-top: 40px;
}

#submitButton {
	opacity: 0.6; /* Initially disabled */
    pointer-events: none; /* Initially disabled */
}

#submitButton.enabled {
	opacity: 1; /* Enabled */
    pointer-events: auto; /* Enabled */
}

#errorMessage {
	font-weight: bold;
	font-weight: 11pt;
	padding: 5px;
	display: none; /* start off hidden */
}

#emailErrorMessage {
	font-weight: bold;
	font-weight: 11pt;
	padding: 5px;
	display: none; /* start off hidden */
}

.error {
	color: #ff000e;
}

.success {
	color: #6e7157;
}

.primaryButton {
	background-color: var(--kqth-yellow);
	font-family: "Agency FB", sans-serif;
	font-size: 20pt;
	text-transform: uppercase;
	width: 300px;
	height: 40px;
	border: 1px solid var(--kqth-orange);
}

.primaryButton:hover {
	background-color: var(--kqth-orange);
	transition: 0.3s;
}

.secondaryButton {
	background-color: #6F6F6F;
	color: white;
	font-family: "Agency FB", sans-serif;
	font-size: 16pt;
	text-transform: uppercase;
	width: 300px;
	height: 40px;
	border: 1px solid #515151;
}

.secondaryButton:hover {
	background-color: #1F1F1F;
	transition: 0.3s;
}

.unfinishedItem, .unfinishedItem a, .unfinishedItem a:visited {
	color: red;
	text-decoration: none;
}

.unfinishedItem a:hover {
	color: #5e0000;
	transition: 0.3s;
}

.finishedItem, .finishedItem a, .finishedItem a:visited {
	color: green;
	text-decoration: none;
}

.finishedItem a:hover {
	color: #005e14;
	transition: 0.3s;
}

.textEntryDescription {
	font-size: 10pt;
	color: #5c5c5c;
}

.portalSectionIcon {
	height: 40px;
}

.portalSection {
	padding: 40px;
	margin: 20px;
	border-radius: 20px;
	border: 1px solid #bbbbbb;
}

.portalSection:hover {
	background-color: #f0f0f0;
	transition: 0.3s;
}

a.portalLink, a.portalLink:visited {
	text-decoration: none;
}

#trackingNumberBar {
	margin-top: 5px;
	display: none;
	text-align: center;
}

#trackingNumberButton {
	margin: 0 auto;
}

#trackingInfoText {

}

#trackingInfoLink {

}

#linksBar {
	margin: 20px 0;
}

#instructionsButton, #videosButton, #graphicsButton {
	font-family: "Agency FB", sans-serif;
	font-size: 16pt;
	text-transform: uppercase;
	width: 150px;
	height: 100px;
	border: 1px solid var(--kqth-orange);
}

#instructionsButton:hover, #videosButton:hover, #graphicsButton:hover {
	background-color: var(--kqth-orange);
	color: white;
	transition: 0.3s;
}

.videoArea {
	margin-bottom: 60px;
}

#gamesSummaryTable {
	width: 100%;
	border: 1px solid #bbbbbb;
}

#gamesSummaryTable th {
	background-color: #d9d9d9;
	padding: 10px;
	border-bottom: 1px solid #bbbbbb;
	font-weight: bold;
	text-align: left;
}

#gamesSummaryTable th a {
	color: rgb(43, 43, 43);
	text-decoration: none;
}

#gamesSummaryTable td {
	padding: 10px;
	border-bottom: 1px solid #bbbbbb;
	text-align: left;
}

tr:hover {
	background-color: #f3f3f3;
	transition: 0.3s;
}

td a, td a:visited {
	color: rgb(43, 43, 43);
	text-decoration: none;
}

#gamesSummaryTable th.sort-active {
	font-weight: bold;
	background-color: var(--kqth-yellow);
}

#gamesSearchBarArea {
	margin-bottom: 20px;
}

.dropDownSelect {
	text-align: center;
	height: 40px;
	font-size: 16pt;
	border: 1px solid #bbbbbb;
}

.dropDownSelect option {
	outline: none;
	border: 1px solid #bbbbbb;
}

.pathImage {
	width: 250px;
	padding: 30px;
}

/* COUNTDOWN */

.countdown {
	background-image: url("images/dvd-room-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
  	background-color: black;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	justify-content: center;
  	align-items: center;
  	display: flex;
	padding: 0;
	margin: 20px 0;
  	margin-bottom: 40px;
  	border: 1px solid #ffe9d1;
  	border-radius: 20px;
	min-height: 300px;
}
.countdown .day, .countdown .hour, .countdown .min, .countdown .sec {
  padding: 20px;
  text-align: center;
}
.countdown .day .num, .countdown .hour .num, .countdown .min .num, .countdown .sec .num {
	display: block;
	font-size: 80px;
	font-family: "Agency FB", sans-serif;
    color: #fff1d4;
}
.countdown .day .word, .countdown .hour .word, .countdown .min .word, .countdown .sec .word {
  display: block;
  font-size: 20px;
  color: #75e5fd;
}

#hypeBar {
	/* font-family: "Agency FB", sans-serif; */
	font-size: 16px;
	color: #eb9220;
	font-weight: bold;
}

.treasureInfoBox {
	width: 800px;
	background-image: url("images/glowing-chest.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-color: #000000;
	border-radius: 20px;
	min-height: 360px;
	padding: 0;
	margin: 0 auto;
}

.treasureInfoBox h2, .treasureInfoBox h2 a {
	color: #ffa455;
	padding: 0;
	margin: 0;
	padding-top: 40px;
	text-decoration: none;
}

.treasureInfoBox p {
	color: white;
	padding: 0px 20px;
	padding-bottom: 260px;
}

.locationClueBox {
	width: 800px;
	background-image: url("images/paper-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0 auto;
	box-shadow: inset 0 0 40px #fff;
	border-radius: 20px;
	border: 1px solid #ebd5b7
}

.locationClueBox img {
	padding-top: 40px;
}

.locationClueBox h2 {
	margin: 0;
	padding: 0;
	padding-top: 20px;
	color: #311c0d;
}

.locationClueBox p {
	padding: 20px;
	margin: 0;
	padding-bottom: 40px;
	font-size: 18pt;
	font-style: italic;
	color: #311c0d;
}

.investigateLivestreamBox {
	width: 800px;
	background-image: url("images/static-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0 auto;
	border-radius: 20px;
	border: 1px solid #d8e5e9;
	box-shadow: inset 0 0 40px #fff;
}

.investigateLivestreamBox img {
	padding-top: 40px;
}

.investigateLivestreamBox h2 {
	margin: 0;
	padding: 0;
	padding-top: 20px;
	color: #004155;
}

.investigateLivestreamBox p {
	padding: 20px;
	margin: 0;
	padding-bottom: 40px;
	font-size: 16pt;
	font-weight: normal;
	color: #004155;
}

.investigateLivestreamBox a, .investigateLivestreamBox a:visited {
	color: #004155;
	text-decoration: none;
}

/* .trackerBar {
  opacity: 0.5;
  animation: pulse 2s infinite;
}@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
} */
