:root
{
	--apollo-dark:   #171717ff;
	--apollo-gray:   #595956ff;
	--apollo-green:  #77ff77ff;
	--apollo-yellow: #fee839ff;
	--apollo-red:    #fe7c7fff;
	--apollo-lite:   #f1f1f1ff;
	--apollo-a: #fff;
	--apollo-b: #fff;
	--apollo-c: #fff;
	--apollo-d: #fff;
}




.dot
{
	margin-left: 3px;
	margin-right: 3px;
	height: 19px;
	width: 19px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
}

.apollo-dark{  background-color: var(--apollo-dark);}
.apollo-gray{  background-color: var(--apollo-gray);}
.apollo-green{ background-color: var(--apollo-green);}
.apollo-yellow{background-color: var(--apollo-yellow);}
.apollo-red{   background-color: var(--apollo-red);}
.apollo-lite{  background-color: var(--apollo-lite);}



.flex-container-limited
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
}

.flex-container
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
}

.flex-container > div
{
	border: 0px solid black;
	bmargin: 4px 34px 4px 34px;
	text-align: center;
}

.flex-container > div > img
{
	filter:saturate(0.85);
}


.flex-item-left
{
	padding: 12px;
	flex: 50%;
}

.flex-item-right
{
	padding: 12px;
	flex: 50%;
}

.flex-item-right-custom
{
	padding: 12px;
	flex: 50%;
}

.flex-item-left-custom
{
	/* padding: 12px; */
	flex: 80%;
}

@media (max-width: 490px)
{
	.flex-container
	{
		flex-direction: column;
	}
}

body
{
	width: 100vw;
}

html, body
{
	font-family: "Lato", sans-serif !important;
	font-size: 17px !important;
	line-height: 1.5;
	
}

html, body, h1, h2, h3, p, i
{
	color: #1d1d1f !important;
}

.fa-bars
{
	color:white !important;
}

.apollo_forceimgcache
{
	display:none;
}

xparagraphtos
{
	text-align: left !important;
}

img#notag
{
	user-drag: none !important;
	-webkit-user-drag: none !important;
	user-select: none !important;
	-moz-user-select: none !important;
	-webkit-user-select: none !important;
	-ms-user-select: none !important;
}

h1
{
	font-size: 44px !important;
}

h2
{
	font-size: 36px !important;
}

h3
{
	font-size: 30px !important;
	text-align: left !important;
}


.w3-padding-64
{
	padding-top: 26px !important;
	padding-bottom: 48px !important;
}

.w3-bar, h1, h2, h3
{
  font-family: Apollo-Main !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.w3-button
{
	font-size: 26px !important;
}

.w3-padding-large
{
	padding: 14px 18px !important;
}

li
{
	text-align: left;
	padding: 1px;
}

.w3-opacity, .w3-hover-opacity:hover
{
    opacity: 0.70;
}

.w3-wide
{
	letter-spacing: 1px !important;
}

.apollo_ajaxlink:hover
{
	cursor: pointer;
}

.apollo_imglink
{
	filter: opacity(99%);
}







a:hover, .apollo_textlink:hover
{
	color:gray !important;
}

.apollo-navbar
{

	position: fixed;
	top: 0px;
	width: 100vw;
	padding-right: 20px;
	z-index: 10000;
}





.apollo_textlink
{
	text-decoration-line: underline;
	cursor: pointer;
}

.apollo_imgrightnohover
{
	background-color: orange;
	float: right;
	margin: 10px;
}

.apollo_sentinelscrn
{
	background-color: orange;
	float: right;
	margin-left: 20px;
	margin-top: 0px;
    margin-right: 20px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 15px rgba(1,1,1,0.2);
}

.sentinelappcontainer
{
	display: inline-block;
}

.videoradiusdiv
{
	border-radius: 10px;
	overflow: hidden;
	/* float: left; */
	/* z-index: 1; */
	width: 150px;
	height: 325px;
	margin: 0px;
}

.apollo_imgright
{
	float: right;
	margin: 10px;
	/* margin-left: 10px;
	margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px; */
}

/*.apollo_imgright:hover{
    color: #424242; 
  -webkit-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  -ms-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
  opacity: 1;
  transform: scale(1.5);
  -ms-transform: scale(1.5); /* IE 9
  -webkit-transform: scale(1.5); /* Safari and Chrome
} */

#navMenu
{
	xposition: absolute !important;
	background: #222 !important;
	display: none;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
}

.collapsible:after {
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	font-size: 13px;
	color: white;
	float: right;
	margin-left: 5px;
  }
  
  .active:after {
	content: "\2796"; /* Unicode character for "minus" sign (-) */
  }
  
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
	background-color: #ccc;
}
  
/* Style the collapsible content. Note: hidden by default */
.collapsedcontent {
	padding: 10px;
	display: none;
	overflow: hidden;
	background-color: #f1f1f1;
} 

/* table { 
    table-layout:fixed;
} */

td { 
    overflow: hidden; 
    text-overflow: ellipsis; 
    word-wrap: break-word;
}

.button {
	border: none;
	color: white;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
  }

  .button1 {
	background-color: white;
	color: black;
	border: 2px solid #4CAF50;
  }
  
  .button1:hover {
	background-color: #4CAF50;
	color: white;
  }

.button2 {background-color: #008CBA;} /* Blue */