@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Arsenal');
/*
@import url('https://fonts.googleapis.com/css?family=Arimo');
@import url('https://fonts.googleapis.com/css2?family=Roboto');
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans");
*/

/* chat.css */

body {
	overflow: hidden;
	padding: 0; margin: 0; 
	top:0; bottom:0; left:0; right:0; 
	background: gray;
/*	background: url(../img/mapbg2.jpg) center repeat; */
}

body, td, center, p, div,
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'Arsenal', Arial narrow, Arial, Verdana, Helvetica, sans-serif !important;	
}

body, td, center, p, div {
    font-size: 9pt;
}

a         {text-decoration: none;}
a:link    {color: #5050BB;}
a:hover   {color: #FF5050; text-decoration: underline;}
a:visited {color: #5050BB;}

input, select, textarea, select {
    color: #000080;
    background: #E0E0FF;
    border: 1px solid gray;
 }

*, *::before, *::after {
    box-sizing: border-box;
}
		
.spaScreen { 
/*	flex: 1;*/
	display: none; flex-direction: column; justify-content: flex-start; align-content: stretch;
	margin: 0 auto; padding: 0;
	bottom: 10px; 
	height: 100vh;
	min-width: 100px;
/*	width: 100vw;*/
/*	max-width: 600px;*/
/*	overflow: hidden;*/
	background: white;
}


/* correct ui */
.ui-button .ui-button-text {line-height: 1.0;}


/* misc */
.small {
   font-size: 9pt;
 }
.main_menu {
   font-size: 9pt;
   font-weight:bold
 }
.subtitle {
   font-size: 12pt;
   font-weight: bold;
   color: #C0C0FF;
   filter: shadow(Direction=120, Strength=1, color=000000);
   width: 100%;
 }
.shadow {
   filter: shadow(Direction=120, Strength=1, color=000000);
   width: 100%;
 }
.scrollToTop {
	float: left;
	width: 48px; height: 46px;
	padding: 0px;
	background: #fff url(img/blue_up.gif) no-repeat scroll center center;
	box-shadow: 0px 0px 3px #888;
	border-radius: 15px;
	position: fixed; right:5px; bottom:5px; 
	display: none;
	z-index: 8000;
	transition: all 0.2s linear 0s;
	text-align:center; vertical-align: middle;
}

.bg-default {background: lightGray;}
.bg-primary {background: lightBlue;}
.bg-success {background: lightGreen;}
.bg-warning {background: lightYellow;}
.bg-danger  {background: lightPink;}


/* local menu button */
.localMenuBtn {
	flex: 0;
	border: 1px solid darkGray;	
	border-radius: 3px;
	background: lightGray;
	padding: 1px 2px; 
  margin: 1px;
	cursor: pointer;
	font-size: larger;
/*  overflow: hidden;*/
	vertical-align: middle;
}
.localMenuBtn:hover {
	background: white;
  transform: scale(1.05);
}
.localMenuBtn:focus {	
	border: 1px solid lightblue; 
	background: white;
}
.localMenuBtn:active {
/* transform: translate(0.1em, 0.2em);*/
/*  transform: translate(2px, 2px);*/
  transform: scale(1);
}


.badgeTop {
	position: absolute; top: 2px; right: 2px;
	min-width: 7px; border-radius: 3px; padding: 1px 4px;
	background: pink; color: navy; border: lightGray 1px solid; 
	text-align: center; font-weight: bold; font-size: 12px; line-height: 12px;
}

.blinky {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}


/* loaders */
.loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 64px;
  height: 64px;
  animation: spin 2s linear infinite;
	position: absolute;
	top: 40%;
	left: 50%;    
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.combLoader {	
	flex: 0 1 auto;
	position: absolute;
	top: 30%;
	left: 10%; right: 10%; 
  background-color: none;
	color: red;
	z-index: 99999;
	display: none; flex-direction: column; align-items: stretch; justify-content: flex-start;
	text-align: center;
}
.combSpin {
	border: 6px solid #f3f3f3;
  border-top: 6px solid blue;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 2s linear infinite;
	margin-left: 45%;
}
.combText {
	text-align: center;
	font-size: 1em;
	color: blue;
	font-weight: bold;
	text-shadow: 2px 2px 6px white;
	margin-top: 5px;
}


/* from html */
@media print {
	a[href]:after {
		content: none !important;
	}
}


/* panels */
.titleBar {
	flex: 0;
	position: sticky; 
	top:0; left:0; right:0;
	text-align: left;
	background: navy;
  color: white;
	padding: 2px;
}
.pageTitle {
   font-size: larger;
   font-weight: bold;
   color: white;
 }
.infoLine {
	flex: 0;
	padding: 1px 5px; 
	background: lightgray;
	color: black;
  border-top: solid white 1px;
  border-bottom: double darkgray 3px;
}
.connStatus {
	flex: 0; 
  color: white; 
  background: red;
  font-size: smaller;
  padding: 1px 6px;
  text-align: left;
  display: none;
}
#messList {
	flex: 2;
	display:flex; flex-direction:column; align-items:stretch; justify-content:flex-start;
	top: 0; bottom: 0; left: 0; right: 0;
	overflow: hidden;
}
#messDiv {
	flex: 1;
	display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;	
	width: 100%;
	overflow-y: auto;
}
#panelBot{
	flex: 0;
	display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
	background: lightGray;
	border-bottom: 1px solid white;
}
#panelMap {
	flex 1; 
	display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
	width: 100%; 
	height: 100%;
	padding: 0; margin: 0;
	background: lightCyan;
}
#panelMyPos {
	flex: 0;
	display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
	top: 0; left: 0; right: 0;
	text-align: left;
	background: white;
	padding: 2px; margin: 0;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	display: none;
}
#panelFilter {
	flex: 0;
	display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
	top: 0; left: 0; right: 0;
	text-align: left;
	background: white;
	padding: 2px; margin: 0;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	display: none;
}

.edBar {
	flex: 1;
  display: flex; flex-direction: row; align-items: stretch;  justify-content: flex-start;
	padding: 3px; 
	color: white;
	background: navy; 
}

#quickListDiv {
  flex: 1; 
	display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
  overflow-y: auto; 
  margin: 0;
  user-select: none;
}
.qmDiv {
	flex: 0;
  padding: 4px 7px;
  text-align: left;
  font-size: larger;
	background: lightYellow;
	color: black;
  border: 1px solid gray;
  cursor: pointer;
}
.qmDiv:hover {	
	background: navy;
	color: white;
}
.qmDivSel {
	background: blue;
	color: white;
}

/* messages */
.messEl {
	flex: 0;
  display: flex; flex-direction: row; align-items: stretch;  justify-content: flex-start;
  padding: 1px 2px 0;
	border-bottom: 1px solid lightgray;
	text-align: left;
  color: black;
  user-select: none;
/*  cursor: pointer;*/
}
.messEl:hover {
  text-weight: bold;
  color: blue !important;
  border: solid 1px navy;
}
.messElSel {
  color: blue !important;
  border: solid 1px navy;
}
.messIcon {
  flex: 0;
	margin: 2px;
  vertical-align: middle;
}
.messTyp {
  flex: 0;
	margin: 2px;
  vertical-align: middle;
  opacity: 0.5;
}
.messContent {
  flex: 1;
  font-size: larger;
}
.messTime {
  flex: 0;
	font-size: smaller;	
	text-align: right;
	color: #333;
  float: right;
/*  cursor: default;*/
}

.escItem { /* context menu esc item */
  font-size: larger;
  color: #1E0505 !important;
  background-color: #F4E8E8 !important;
  text-align: right;
}
.cmItem { /* context menu item */
  font-size: large;
  color: #1E0505 !important;
  background-color: #F4E8E8 !important;
}
.titItem { /* menu title item */
  color: white !important;
  background-color:#777 !important;
}

.leaflet-marker-icon {
  background-color: transparent !important;
  border: none !important;
}

.confirmTitle {font-size: 1.3em !important;}
