﻿@import url("https://fonts.googleapis.com/css?family=Open+Sans");

:root {
   --light-fg: #ffffff;
   --light-bg: #eeeeee;
   --light-content: #ffffff;

   --dark-fg: #000000;
   --dark-bg: #1d1d1d;
   --dark-content: #2c2c2c;

   --status-gray: #bbbbbb;
   --status-green: #00aa00;
   --status-red: #cc0000;
   --status-orange: #ffa500;

}

@font-face {
   font-family: "Font Awesome 5 Pro Brands";
   src: url('../typefaces/Font Awesome 5 Pro/fa-brands-400.woff2') format('woff2'), 
      url('../typefaces/Font Awesome 5 Pro/fa-brands-400.woff') format('woff'), 
      url('../typefaces/Font Awesome 5 Pro/fa-brands-400.ttf') format('truetype')
}

.fab {
   font-family: 'Font Awesome 5 Pro Brands'
}

@font-face {
   font-family: "Font Awesome 5 Pro Regular";
   src: url('../typefaces/Font Awesome 5 Pro/fa-regular-400.woff2') format('woff2'), 
      url('../typefaces/Font Awesome 5 Pro/fa-regular-400.woff') format('woff'),
      url('../typefaces/Font Awesome 5 Pro/fa-regular-400.ttf') format('truetype')
}

.far {
   font-family: 'Font Awesome 5 Pro Regular'
}

@font-face {
   font-family: "Font Awesome 5 Pro Solid";
   src: url('../typefaces/Font Awesome 5 Pro/fa-solid-900.woff2') format('woff2'), 
      url('../typefaces/Font Awesome 5 Pro/fa-solid-900.woff') format('woff'), 
      url('../typefaces/Font Awesome 5 Pro/fa-solid-900.ttf') format('truetype')
}

.fas {
   font-family: 'Font Awesome 5 Pro Solid'
}

body {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
   color: #000000;
	color: var(--dark-fg);
}

body.dark-theme {
   color: #ffffff;
   color: var(--light-fg);
}

* {
   box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
}

a 
{
	text-decoration: none;
}

form {
   width: 100%;
}

input[type=text], 
input[type=password],
input[type=email], 
.select,
select {
   width: 100%;  
   height: 30px; 
   border: solid 1px #bbbbbb;
   border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   margin: 0px 0px 0px 0px;
   padding: 0px 5px;
   font-family: unset;
   font-size: 1em;
   line-height: 30px;
   background: var(--light-content);
   color: var(--dark-fg);
}

body.dark-theme input[type=text], 
body.dark-theme input[type=password],
body.dark-theme input[type=email], 
body.dark-theme .select,
body.dark-theme select {
   color: var(--light-content);
}

.disabled,
.body.dark-theme .disabled {
   color: var(--status-gray);
}


label 
{
	display: inline-block;
	vertical-align: middle;
}

input[type=checkbox], input[type=radio] {
   margin: 0px;
	display: inline-block;
	vertical-align: middle;
}

.button, input[type=submit], 
input[type=button], button {
   display: inline-block;
   vertical-align: middle;
   padding: 0px 10px;
   border-radius: 5px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   text-align: center;
   font-size: .9em;
   margin: 0px 0px 0px 0px;
   border: none;
   cursor: pointer;
   width: 100%;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	font-family: unset;
	line-height: 30px;
   align-self: flex-start;
}

textarea {
	max-width: 100%;
	min-width: 100%;
	min-height: 100px;
	border: solid 1px #bbbbbb;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 10px;
	font-family: unset;
   font-size: unset;
	margin: 0px;
   background: var(--light-content);
}

.fa-trash,
.fa-edit {
	cursor: pointer;
}

body.dark-theme textarea {
   color: var(--light-fg);
}

/*CUSTOM SELECTS*/
.selLbl 
{
   flex-basis: 100%;
   width: 100%;
   font-weight: bold;
   margin-top: 0px;
   margin-bottom: 5px;
}

.selectContainer {
   position: relative;
   width: 100%;  
   padding: 0px;
   height: 30px;
   margin-bottom: 10px;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

.fnt 
{
   padding: 0px 10px;
}
 
.sfnt 
{
   margin: 0px;
}

.select {
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 30px;
   padding: 0px 10px 0px 5px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

i.fas.selectImg {
   position: absolute;
   right: 5px;
   height: 30px;
   line-height: 30px;
   z-index: 2;
   cursor: pointer;
   text-align: center;
}

.selectList
{
   position: absolute;
   top: 32px;
   width: 100%;
   flex-basis: 100%;
   max-height: 200px;
   overflow-x: hidden;
   overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
   z-index: 5;
   border: solid 1px #bbbbbb;
   border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   background: var(--light-content);
   color: var(--dark-fg);
   display: none;
	line-height: 30px;
}

.selectList > *
{
   padding: 0px 0px 0px 5px;
   cursor: pointer;
}

.selectedItem
{
   position: absolute;
   width: 265px;
   overflow: hidden;
   z-index: 5;
}


/*END CUSTOM SELECTS*/

.container {
	margin: auto;
	width: 100%;
   background: #eeeeee;
	background: var(--light-bg);
	position: relative;
	clear: both;
	top: 0px;
   display: flex;
   flex-direction: column;
}

.header {
   width: 100%;
   padding: 20px;
	position: relative;
   display:flex;
   justify-content: space-between;
   flex-wrap: wrap;
   align-items: center;
}

.messagePop {
   background: var(--status-red);
   color: var(--light-fg);
   font-size: 1em;
   padding: 10px;
	width: 100%;
	position: fixed;
	bottom: -100%;
	left: 0px;
	transition: bottom 500ms cubic-bezier(0.215, .61, .355, 1);
	-webkit-transition: bottom 500ms cubic-bezier(0.215, .61, .355, 1);
	z-index: 5;
	line-height: 1.25em;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-direction: column;
   gap: 10px;
}

.messagePopOpen 
{
	bottom: 0px;
	transition: bottom 500ms cubic-bezier(0.215, .61, .355, 1);
	-webkit-transition: bottom 500ms cubic-bezier(0.215, .61, .355, 1);
}

.closePop {
   float: right;
   color: #ffffff;
	cursor: pointer;
}

.mpContainer {
   flex: 2;
   width: 100%;
   margin-bottom: 10px;
}

#betaNav {
   background: var(--status-red);
   color: #ffffff;
   text-align: center;
   padding: 5px 10px;
   margin: 10px auto 0px auto;
   width:100%;
   font-size: 14px;
}

.mainNav {
   flex-basis: 100%;
   width: 100%;
   overflow: hidden;
   position: relative;
	vertical-align: middle;
   gap: 10px;
   display: flex;
   flex-direction: column;
   height: 0px;
   align-items: center;
}

.mainNavOpen {
   height: auto;
   padding: 10px 0px;
}

.fas.mmBtn {
   display: inline-block;
   vertical-align: middle;
   width: 24px;
   height: 24px;
   text-align: center;
   line-height: 24px;
   font-size: 24px;
}

.navLink {
   width: 100%;
   font-weight: bold;   
   text-decoration: none;
   cursor: pointer;
   margin: 0px 0px 0px 0px;
   text-align: center;
   padding: 5px 0px;
}

.navLink:hover {
   text-decoration: underline;
}

.mLogo {

   max-width: 280px;
}

.mainContent {
   width: 100%;
   margin: 0px auto;
   padding: 20px;
   background: #ffffff;
   background: var(--light-content);
   flex-grow: 2;
}

.quote {
    float: left;
    height: auto;
    width: 560px;
    margin: 140px 0px 0px 0px;
}

.buttons {
    float: left;
    height: auto;
    width: auto;
}

.footer {
	width: 100%;
	text-align: center;
	margin: 0px 0px;
	bottom: 0px;
	padding: 20px 0px;
}

.error {
   float: left;
   clear: both;
   margin: 10px 0px 0px 0px;
   font-weight: bold;
}

.msgBg {
   position: fixed;
   height: 100%;
   width: 100%;
   background-color: #000000;
   opacity: .75;
   top: 0px;
   left: 0px;
   z-index: 1;
}

#messageWrapper {
   position: fixed;
   z-index: 0;
   width: 100%;
   top: 0px;
   left: 0px;
}

.dmElementsCtr {
   margin: 80px auto 0px auto;
   width: 350px;
   background-color: #ffffff;
   border-radius: 5px;
   padding: 10px;
   position: relative;
   z-index: 2;
}

.displayMessage {
   color: #222222;
   width: 100%;
   line-height: 1.25em;
}

.continueButton {
   margin: 10px 0px 0px 0px;
   clear: both;
}

.welcomeContainer {
   width: 100%;
   
   font-weight: bold;
   font-size: 1em;
   margin: 0px 0px 0px 0px;
   padding: 0px 0px 0px 0px;
   text-align: center;
}

.mmaBtn, .logo
{
	display: none;
}

.msgButtonContainer {
   display: flex;
   flex-direction: column;
   width: 100%;
   gap: 5px;
}
   
.msgButton 
{
	width: 100%;
	margin: 0px;
	text-align: center;
	padding: 5px 0px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
   background: var(--light-content);
   color: var(--dark-fg);
}

.chkWrap {
   display: flex;
   margin: 0px 5px 0px 0px;
	gap: 5px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 5px;
}

.chkWrap label {
   width: auto;
}

.buttonRow {
   width: 100%;
   display: flex;
   gap: 5px;
   flex-direction: column;
}

/*COMMON SITE CLASSES*/

/*END COMMON SITE CLASSES*/

@media all and (min-width: 768px) {
   .mainContent {
      width: calc(100% - 40px);
      margin: 20px auto;
   }   
   
   .mLogo {
      float: none;
		max-width: 280px;
   }

   .fas.mmBtn {
      display: none;
   }

   .mainNav {
      display: flex;
      flex-direction: row;
      align-items: center;
      height: auto;
      flex-basis: auto;
      width: auto;
	}
   
   .navLink {
		width: auto;
		font-size: 1em;
		position: relative;
   }

   input[type=text], input[type=password],
   input[type=email], .select, .selectContainer {
      width: 100%;
   }

	.button, input[type=submit], input[type=button], button 
   {
      width: auto;
   }

   .messagePop {
      flex-direction: row;
   }

   .mpContainer {
      width: auto;
      margin-bottom: 0px;
   }

   .msgButtonContainer {
      flex-direction: row;
      width: auto;
   }
   
   .msgButton 
   {
   	width: auto;
		padding: 5px 10px;
		cursor: pointer;
      clear: none;
   }
   
   .mpText 
   {
   	float: left;
   	clear: left;
   }

   textarea 
   {
		width: 100%;
		max-width: 100%;
		min-width: 350px;
   }

   input[type=text], input[type=password],
   input[type=email], .select, .selectContainer {
      width: 350px;
   }

   .buttonRow {
      flex-direction: row;
   }

   #betaNav {
      width: auto;
      border-radius: 3px;
      margin: 0px 10px 0px auto;
      font-size: 16px;
   }
}

@media all and (min-width: 1025px) {
   .mainContent {
      max-width: 1170px;
      border-radius: 5px;
      padding: 30px;
   }   

   .fas.mmBtn {
      display: none;
   }

	.mLogo {
		float: none;
		max-width: 400px;
	}

	.navLink {
		width: auto;
		font-size: 1em;
		position: relative;
	}
}

@media all and (min-width: 1367px) {
   .fas.mmBtn {
      display: none;
   }
   
   .mainContent {
      max-width: 1440px;
   }

   .mLogo {
      float: none;
      max-width: 600px;
   }
}