/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
body {
	display: flex;
  	flex-direction: column;
  	font-family: Arial, Helvetica, sans-serif;
}




.zyancontent {
	flex: 1 0 auto;
	min-height:100px;
}


/* 20201102  */
/* https://moderncss.dev/css-button-styling-guide/ */
/* this rule prevent things like borders and padding from expanding the expected element size (ex. a 25% width remains 25%, not 25% + border width + padding). */
* {
  box-sizing: border-box;
}


.shadowRect01 {
	filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}

.shadowRect02 {
	filter: drop-shadow( 1px 1px 3px rgba(0, 0, 0, .7));
}

.shadowText01 {
	filter: text-shadow( 1px 1px 2px rgba(0, 0, 0, .5));
}

.shadowText02 {
	background: #0e8dbc;
	color: #ababab;
	text-shadow: 0 1px 0 #ccc,
				 0 2px 0 #c9c9c9,
				 0 3px 0 #bbb,
				 0 4px 0 #b9b9b9,
				 0 5px 0 #aaa,
				 0 6px 1px rgba(0,0,0,.1),
				 0 0 5px rgba(0,0,0,.1),
				 0 1px 3px rgba(0,0,0,.3),
				 0 3px 5px rgba(0,0,0,.2),
				 0 5px 10px rgba(0,0,0,.25),
				 0 10px 10px rgba(0,0,0,.2),
				 0 20px 20px rgba(0,0,0,.15);
}

.shadowText03 {
	text-shadow: 1px 1px 2px #777777;
}

.zyanfooter {
/* 	position: absolute; */
/* 	bottom: 0; */
/* 	z-index: 1200; */
/* 	width: 100%; */
	/* Set the fixed height of the footer here */
	flex-shrink: 0;
	background-color: #f5f5f5;
	border-top: 1px #999999 solid;
}

.zyanfooter>.container {
	padding-right: 15px;
	padding-left: 15px;
}



@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}

}


.selectorscale {
	width:250px;
}

@media screen and (max-width: 1080px) {
	.selectorscale {
  		width:200px;
  	}	
  	.xcv {
  		flex-wrap:wrap;
/*   		background-color:red; */
  	}
}

@media screen and (max-width: 850px) {
	.selectorscale {
  		width:150px;
  	}	
}

@media screen and (max-width: 850px) {
/*   	.mobilehide { */
/*     	display: none; */
/*   	} */
/*   	body { */
/*   		padding-top:280px; */
/*   	} */
/*   	.footer { */
/*   		height:300px; */
/*   	}   */
  	.selectorscale {
  		width:120px;
  	} 
}

@media screen and (max-width: 1250px) {
/* 	.bufferone { */
/*   		height:80px; */
/* /*   		background-color:red; */ */
/*   	} */
/*   	.mobilehide { */
/*     	display: none; */
/*   	} */
/*   	body { */
/*   		background-color:yellow; */
/*   	} */
}


@media screen and (min-width: 1250px) {
	.bufferone {
  		height:0px;
/*   		background-color:red; */
  	}
/*   	.mobilehide { */
/*     	display: none; */
/*   	} */
/*   	body { */
/*   		background-color:pink; */
/*   	} */
}


html {
	position: relative;
	min-height: 100%;
	overflow-y: scroll;
}

.hide {
	display: none;
}

#divloadingtext {
	position: fixed;
	width: 100%;
	z-index: 501;
	height: 200px;
	padding-top: 150px;
	color: steelblue;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	font-size: 40px;
	font-weight: bold;
/* 	background-color: #ababab; */
}

#divfadescreen {
	position: fixed;
/* 	top:90px; */
	width: 100%;
	height: 100%;
	background: rgba(255,255, 255,.7);
	z-index: 500;
}

/*
 * Global add-ons
 */
.sub-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
	border: 0;
}

.nav {}

@media (min-width: 768px)
	.navbar-nav {
/*     float: left; */
    margin: 0;
}

.nav li.menuitem {
	color: #9d9d9d;
	font-weight: normal;
	font-size: 16px;
	cursor: pointer;
	width:100px;
	padding-top:14px;
	text-align:center;
	height:50px;
	background-color: none;
}

.nav li.menuitem.active {
	color: #ff9900;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	width:100px;
	padding-top:14px;
	text-align:center;
	height:50px;
	background-color: #000000;
}

.nav li.menuitem.inactive:hover { 
  	color: #ffffff;
}


/* navbar-favouritesmenu-item-wVCHcZBLAUZXgyj6dF40 */

/* =============================================== */


li.navbarfavouritesmenuitem {
	color: #9d9d9d;
	font-weight: normal;
	font-size: 14px;
	cursor: pointer;
	width:140px;
	padding-top:5px;
	padding-bottom:5px;
	text-align:center;
/* 	height:50px; */
	background-color: none;
	position: relative;
	display: block;
	float:right;
	
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}

li.navbarfavouritesmenuitem>a {
	position: relative;
	display: block;
/* 	padding: 10px 15px; */
	color: #9d9d9d;
	font-weight: normal;
	font-size: 14px;
	cursor: pointer;
	width:140px;
	padding-top:8px;
	padding-bottom:8px;
	text-align:center;
	
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}



li.navbarfavouritesmenuitem>a:focus, li.navbarfavouritesmenuitem>a:hover {
	text-decoration: none;
/* 	background-color: #eee; */
	color: #ffffff;
}

li.navbarfavouritesmenuitem.active>a {
	color: #ff9900;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
	background-color: #333333;
}

li.navbarfavouritesmenuitem.inactive:hover { 
  color: white;
}




li.navbarcompletemenuitem {
	color: #9d9d9d;
	font-weight: normal;
	font-size: 14px;
	cursor: pointer;
	width:100%;
	padding-top:2px;
	padding-bottom:2px;
/* 	text-align:center; */
	background-color: none;
/* 	position: relative; */
	display: block;
}

li.navbarcompletemenuitem>a {
/* 	position: relative; */
	display: block;
	padding: 10px 15px
}

li.navbarcompletemenuitem>a:focus, .nav>li>a:hover {
	text-decoration: none;
	background-color: #eee
}

li.navbarcompletemenuitem.active {
	color: #ff9900;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
	background-color: black;
}

li.navbarcompletemenuitem.inactive:hover { 
  color: #000000;
  background-color:#e6e8e0;
  border-radius: 0px 5px 5px 0px;
}




.favouritesradio:checked:after {
	width: 12px;
	height: 12px;
	border-radius: 12px;
	top: -2px;
	left: 1px;
	position: relative;
	background-color: #ff9900;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 0px solid white;
}





/* =============================================== */



@font-face {
 	font-family: "digitalModernBold";
	src: url(dsegfonts/DSEG7Modern-Bold.ttf) format("truetype");
}

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
	display: none;
}

@media ( min-width : 768px) {
	.sidebar {
		position: fixed;
		top: 51px;
		bottom: 0;
		left: 0;
		z-index: 1000;
		display: block;
		padding: 20px;
		overflow-x: hidden;
		overflow-y: auto;
/* 		Scrollable contents if viewport is shorter than content. */
		background-color: #f5f5f5;
		border-right: 1px solid #eee;
	}
}

/* Sidebar navigation */
.nav-sidebar {
	margin-right: -21px; /* 20px padding + 1px border */
	margin-bottom: 20px;
	margin-left: -20px;
}

.nav-sidebar>li>a {
	padding-right: 20px;
	padding-left: 20px;
}

.nav-sidebar>.active>a, .nav-sidebar>.active>a:hover, .nav-sidebar>.active>a:focus
	{
	color: #fff;
	background-color: #428bca;
}

/*
 * Main content
 */
.main {
	padding: 20px;
}

/* @media ( min-width : 768px) { */
/* 	.main { */
/* 		padding-right: 40px; */
/* 		padding-left: 40px; */
/* 	} */
/* } */

.main .page-header {
	margin-top: 0;
}


.domain {
  stroke: #cdcdcd;
}




/*============================================================================*/
.usercopyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: center;
	vertical-align: middle;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
}

.warningred {
	color: red;
	text-align: center;
	font-weight: bold;
	font-size: 25px;
	padding: 4px;
	margin: 4px;
}


.normaltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	text-align: left;
	padding: 2px;
}

.smallheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: center;
	font-style: normal;
	/*    font-weight: bold;  */
	text-decoration: none
}

.smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	text-decoration: none
}

.smalltextleft {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: left;
	font-style: normal;
	font-weight: normal;
	text-decoration: none
}

.smalltextright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: right;
	font-style: normal;
	font-weight: normal;
	text-decoration: none
}

.smalltextleftbold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-align: left;
	font-style: normal;
	font-weight: bold;
	text-decoration: none
}

#defaultbar {
	border: 1px #cad0a4 solid;
	height: 4px;
}

#progressbar {
	height: 2px;
	background-color: #5cb85c;
}

.logout {
	color: #9D9D9D;
	margin-left: 10px;
}

.logout a {
	display: inline-block !important;
	padding-left: 5px !important;
}

.localization select {
	display: block;
	margin: 15px;
}


.border {
    border: 1px solid #d8d8d8;
}

.border2 {
    border: 2px solid #d8d8d8;
}

.border3 {
    border: 3px solid #d8d8d8;
}

.bordernone {
    border-left:0px;
    border-right:0px;
    border-top:0px;
    border-bottom:0px;
}

.borderbottom {
    border-left:0px;
    border-right:0px;
    border-top:0px;
}


.bordertop {
    border-left:0px;
    border-right:0px;
    border-bottom:0px;
}

.bordertopbottom {
    border-left:0px;
    border-right:0px;
}

.bordertopbottom3 {
	border: 2px solid #ff9900;
    border-left:		0px;
    border-right:		0px;
}


.borderright {
    border-left:0px;
    border-bottom:0px;
    border-top:0px;
}

.bordertopbottomright {
    border-left:0px;
}

.bordertopbottomleft {
    border-right:0px;
}

.borderleft {
    border-bottom:0px;
    border-right:0px;
    border-top:0px;
}

.borderleftright {
    border-bottom:0px;
    border-top:0px;
}

.borderbox {
    border: 0px solid #666666;
}

.borderred {
    border: 1px solid #ff0000;
}

.borderlightblue {
    border: 2px solid #d2e4fb;
}*/



/*Helper CSS*/
.fs9 {
	font-size: 9px;
}

.fs10 {
	font-size: 10px;
}

.fs11 {
	font-size: 11px;
}

.fs12 {
	font-size: 12px;
}

.fs13 {
	font-size: 13px;
}

.fs14 {
	font-size: 14px;
}

.fs15 {
	font-size: 15px;
}

.fs16 {
	font-size: 16px;
}

.fs18 {
	font-size: 18px;
}

.fs19 {
	font-size: 19px;
}

.fs20 {
	font-size: 20px;
}

.fs25 {
	font-size: 25px;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.p10 {
	padding: 10px;
}

.btn-zyan {
	background-color: #6aace6;
	border-color: #5097d5;
}

.btn-zyan:hover {
	background-color: #5097d5;
	border-color: #6aace6;
}



.hover {
	color: white;
}

.hover:hover {
	color: #ff9900;
	cursor: pointer;
}
.hover:active {
	font-size:16px;
}




.zyanadmin-headertab {
	font-size:15px;
	font-weight:bold;
	padding:5px;
	padding-top:0px;
	padding-bottom:0px;
	color:#000000;
	text-align:center;
	margin-bottom:20px;
	border-bottom:1px #b1b3aa solid;
}


.form-style {
	max-width: 750px;
/* 	background: #FAFAFA; */
	padding: 10px;
/* 	padding-top:20px; */
	padding-top:0px;
	padding-bottom:0px;
	margin: 50px auto;
	margin-top:10px;
	margin-bottom:0px;
/* 	box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.35); */
/* 	border-radius: 6px; */
/* 	border: 3px solid #a4c2db; */
}

.form-style ul li{
	display: block;
/* 	margin-bottom: 2px; */
	min-height: 32px;
}

.form-style ul li  .headerleft-style{ 
	padding: 2px;
	padding-left:4px;
	outline: none;
	font-size:11px;
	width: 49%;
	float:left;
}

.form-style ul li  .headerright-style{ 
	padding: 2px;
	padding-left:4px;
	outline: none;
	font-size:11px;
	width: 49%;
	float:right;
	text-align:left;
}



.form-style ul li  .field-style{
	box-sizing: border-box; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	padding: 8px;
	padding-top:2px;
	padding-bottom:2px;
	outline: none;
	border: 1px solid #B0CFE0;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;

}
.form-style ul li  .field-style:focus{
	box-shadow: 0 0 5px #B0CFE0;
	border:1px solid #B0CFE0;
}
.form-style ul li .field-split{
	width: 49%;
}
.form-style ul li .field-full{
	width: 100%;
}
.form-style ul li input.align-left{
	float:left;
}
.form-style ul li input.align-right{
	float:right;
}
.form-style ul li textarea{
	width: 100%;
/* 	height: 100px; */
}
.form-style ul li input[type="button"], 
.form-style ul li input[type="submit"] {
	-moz-box-shadow: inset 0px 1px 0px 0px #3985B1;
	-webkit-box-shadow: inset 0px 1px 0px 0px #3985B1;
	box-shadow: inset 0px 1px 0px 0px #3985B1;
	background-color: #216288;
	border: 1px solid #17445E;
	display: inline-block;
	cursor: pointer;
	color: #FFFFFF;
	padding: 8px 18px;
	text-decoration: none;
	font: 12px Arial, Helvetica, sans-serif;
}
.form-style ul li input[type="button"]:hover, 
.form-style ul li input[type="submit"]:hover {
	background: linear-gradient(to bottom, #2D77A2 5%, #337DA8 100%);
	background-color: #28739E;
}



.zyanbutton {
	background-color:#a4e5b6;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:18px;
	border:2px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#333333;
	font-family:Arial;
	font-size:26px;
	padding:7px 31px;
	text-decoration:none;
/* 	text-shadow:0px 2px 5px #2f6627; */
}



.zyanbutton:active {
	position:relative;
	top:1px;
}



.hovergreen:hover {
/* 	color:#18ab29; */
	color:#129412;
/* 	text-shadow:0px 2px 2px #2f6627; */
}

.hoverred:hover {
/* 	color:#18ab29; */
	color:#ff0000;
	text-shadow:0px 2px 2px #2f6627;
}



.hoverwhite:hover {
/* 	color:#18ab29; */
	color:#129412;
	text-shadow:0px 1px 1px #ffffff;
}


.hoverbutton:hover:not([disabled]) {
/* 	background-color:#84ca8c; */
/* 	text-shadow: 0px 3px 3px #ffffff; */
	color:#111111;
	font-weight:bold;
	cursor:pointer;
}


/* The Modal (background) */
/* .modal { */
/*   display: none; 	Hidden by default */
/*   position: fixed; 	Stay in place */
/*   z-index: 10000; 		Sit on top */
/*   left: 0; */
/*   top: 0; */
/*   width: 100%; 		Full width */
/*   height: 100%; 	Full height */
/*   overflow: auto; 	Enable scroll if needed */
/*   background-color: rgb(0,0,0); Fallback color */
/*   background-color: rgba(0,0,0,0.6); Black w/ opacity */
/* } */

/* Modal Content/Box */
/* .modal-content { */
/*   background-color: #fefefe; */
/*   margin: 100px auto; 15% from the top and centered */
/*   padding: 20px; */
/*   border: 1px solid #888; */
/*   width: 400px; Could be more or less, depending on screen size */
/* } */

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}



/* Side navigation */

#dashboardsettings {
	transition: 2s;
}


.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1100;
  top: 20;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  white-space: nowrap;
  transition: 0.3s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 12px;
  text-decoration: none;
  font-size: 15px;
  color: #d2d2d2;
  display: block;
  transition: 0.2s;
}

.sidenav a:hover {
  	color: cornflowerblue;
}

.closebtn {
  cursor:pointer;
}


/* Tabs */

.tabrow {
	overflow: hidden;
/* 	border-bottom: 1px solid #ababab; */
}

.tabbuttondiv {
	float: left;
	border-right: 4px solid transparent;
}

.tabrow button {
  margin-bottom:-1px;
  outline: none;
  cursor: pointer;
  padding-left: 16px;
  padding-right: 16px;
  padding-top:	6px;
  padding-bottom:4px;
  transition: 0.3s;
  font-size: 18px;
  background-color: #ffffff;
  border: 1px solid #ababab;
  border-radius: 8px 8px 0px 0px;
  font-weight:bold;
  color:#777777;
}

.tabrow button:hover {
	background-color: ##9bdba2;
	font-weight:bold;
}

.tabrow button.active {
	background-color: #e8e8e8;
	font-weight:bold;
	color:		#129412;
	text-shadow:0px 1px 1px #ffffff;
}

.tabcontent {
	display: none;
/* 	background-color: #ffffff; */
/* 	border: 1px solid #d8d8d8; */
	min-height:200px;
}

.tabblock {
	width:50%;
}


/* tab used for menu management */
/*  202101-08 */

.zyantab {
	min-width:83px;
	padding:4px;
	font-size:13px;
	font-weight:bold;
	margin-top:5px;
	margin-right:2px;
/* 	text-align:center; */
/* 	border-radius: 5px 5px 0px 0px; */
/* 	border: 1px #b1b3aa solid; */
/* 	border-bottom-width: 0px; */
	background-color: #e6e8e0;
	color: #333333;
/* 	text-shadow:0px 1px 1px #ffffff; */
    cursor: pointer;
}

.zyantabsystem {
	border-radius: 8px 8px 0px 0px;
	text-align:center;
/* 	border: #101010 solid 1px; */
/* 	background-color: #101010; */
	color: #9d9d9d;
}

.zyantab:hover {
/* 	background-color: #edcb98; */
	color: #ff9900;
}

.zyantab.active {
/* 	border: #ff9900 solid 1px; */
	background-color: #101010;
	color: #ff9900;
	font-weight:bold;
}



.zyantab2 {
	background-color: #d3e9d7;
/* 	padding:2px; */
}


.zyan-tabs-2ndtierholder {
	background-color: #e6e8e0;
	border-top: #b1b3aa solid 1px;
	padding:2px;
}

.zyantabtier2.active {
	background-color: #fff8ee;
	font-weight:bold;
	color: #111111;
	border-bottom:#ff9900 dotted 2px;
}


.zyantabtier2 {
	padding-top:2px;
	padding-bottom:0px;
	font-weight:normal;
}


/* end of tabs */



@media print {
  .pagebreakafter { 
    page-break-after: always;
  }
}

.svg-container {
/*   display: inline-block; */
/*   position: relative; */
/*   width: 100%; */
  vertical-align: top;
  overflow: hidden;
}

.svg-content-responsive {
  /* display: inline-block; 
  position: absolute;
  top: 0;
  left: 0; */
}

.homepara {
	line-height:1.5;
	font-size:18px;
	color:#696969;
	padding-top:30px;
} 











/* custom selector  202101-09 */

.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: steelBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 16px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}



/* on/off switch */
/* 2020-01-10 */

.zyanonoffswitch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  border-radius: 6px;
}

/* Hide default HTML checkbox */
.zyanonoffswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.zyanonoffslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #67aeba;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 6px;
}

.zyanonoffslider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .2s;
  transition: .2s;
  border-radius: 6px;
}

input:checked + .zyanonoffslider {
  background-color: #fa9292;
}

input:focus + .zyanonoffslider {
  box-shadow: 0 0 1px #fa9292;
}

input:checked + .zyanonoffslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.zyanonoffslider.round {
  border-radius: 24px;
}

.zyanonoffslider.round:before {
  border-radius: 50%;
}





/* Autocomplete inout box */
/* 2021-01-12 */

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete > input {
/*   border: 1px solid transparent; */
  background-color: #f1f1f1;
  padding: 4px;
  font-size: 13px;
}
.autocomplete > input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
.autocomplete > input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 4px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}


/* invitations badge
/* 2021-01-15 */

.zyanbadge:after {
	content:attr(value);
	font-size:14px;
	font-family: Trebuchet MS;
	background: #000000;
	font-weight:bold;
	border-radius:40%;
	padding:2px;
	position:relative;
	left:-6px;
	top:-10px;
	opacity:0.9;
}

.zyanbadgedark:after {
	content:attr(value);
	font-size:14px;
	font-family: Trebuchet MS;
	background: #111111;
	font-weight:bold;
	border-radius:40%;
	padding:2px;
	position:relative;
	left:-6px;
	top:-10px;
	opacity:0.9;
}

.zyanbadgelive:after {
	content:attr(value);
	font-size:14px;
	font-family: Trebuchet MS;
	background: pink;
	font-weight:bold;
	border-radius:40%;
	padding:2px;
	position:relative;
	left:-6px;
	top:-10px;
	opacity:0.9;
}


.opacity90 {
    background: rgba(255, 255, 255, 0.1);
}






.svgtesting {
    pointer-events: none;
    path {
        pointer-events: auto;
    }

    path {
        cursor: pointer;
        opacity: .7;

        &:hover {
            opacity: 1;
        }
    }
}

/* Lifepaper classes =============================================================================== */

.lpheader {
	color: #617f97;
	font-size:20px;
	font-weight:bold;
	padding:2px;
	text-shadow:#ababab 1px 1px 3px; 
}
	

.tagparentbutton2 {
	background-color:#d2dbe0;
	color: #555555;

	display:inline-block;
	cursor:pointer;
	font-family:Arial;
	font-size:14px;
	
	height: 25px;
  	line-height: 20px;
  	
/* 	padding:3px 3px 0 0;	T-R-B-L */
	padding:3px 8px 3px 5px;

	text-decoration:none;
	display:flex;
	align-items: center;
	justify-content:center;
	margin:5px;
	font-weight:bold;
	
	border-top-left-radius:6px;
	border-top-right-radius:6px;
	border-width:2px;
	
	text-shadow: 0 1px rgba(255,255,255,0.4);  
}

.tagparentbutton2:hover {
/* 	color: #ff5000; */
/* 	text-shadow: 0 1px rgba(0,0,0,0.4);   */
	background-color:#8ae37b;
}
	
.tagparentbutton2.active {
	border-width:2px;	
}


/* ==================================================================================================== */
/* Child with selector */
/* ==================================================================================================== */

.tagchildbutton, .maptagchildbutton {
	background-color:#d2dbe0;
	color: #555555;

	display:inline-block;
	cursor:pointer;
	font-family:Arial;
	font-size:14px;
	
	height: 22px;
/* 	height: 22px; */
  	line-height: 20px;
  
/* 	padding:3px 3px 0 0;	T-R-B-L */
	padding:1px 8px 1px 5px;
	
	text-decoration:none;
	display:flex;
	align-items: center;
	justify-content:center;
	margin:5px;
	
	font-weight:bold;
	

/* 	border-top-left-radius:5px; */
/* 	border-bottom-left-radius:5px; */
	border-top-right-radius:6px;
	border-bottom-right-radius:6px;

/* 	border-top-left-radius:5px; */
/* 	border-top-right-radius:5px; */
	
	text-shadow: 0 1px rgba(255,255,255,0.4);  
}

.tagchildbutton:hover, .maptagchildbutton:hover{ 
/* 	color: #fc0000; */
/* 	text-shadow: 0 -1px rgba(255,255,255,0); */
	background-color:#8ae37b;
}

.tagchildbutton.active, .maptagchildbutton.active, .tagchilddisplaybutton.active {
	border-width:2px;
}

.tagchildbuttonlarge, .maptagchildbuttonlarge {
	font-size:15px;
}

/* ==================================================================================================== */
/* Child display only */
/* ==================================================================================================== */

.tagchilddisplaybutton {
	background-color:#d2dbe0;
	color: #555555;

	display:inline-block;
	cursor:pointer;
	font-family:Arial;
	font-size:14px;
	
	min-height: 22px;
/* 	height: 22px; */
  	line-height: 20px;
  
/* 	padding:3px 3px 0 0;	T-R-B-L */
	padding:1px 8px 1px 5px;
	text-decoration:none;
	display:flex;
	align-items: center;
	justify-content:center;
	margin:3px;
	font-weight:bold;	
	border-top-right-radius:8px;
	border-bottom-right-radius:8px;
	text-shadow: 0 1px rgba(255,255,255,0.4);
	
	border:red dashed 2px;  
}

.tagchilddisplaybutton:hover { 
/* 	color: white; */
/* 	text-shadow: 0 1px rgba(0,0,0,0.4);   */
	background-color:#8ae37b;
}





.tagchilddisplaysmallbutton {
	background-color:#d2dbe0;
	color: #555555;

	display:inline-block;
	cursor:pointer;
	font-family:Arial;
	font-size:9px;
	
	min-height: 18px;
  	line-height: 16px;
  
/* 	padding:3px 3px 0 0;	T-R-B-L */
	padding:1px 8px 1px 5px;
	text-decoration:none;
	display:flex;
	align-items: center;
	justify-content:center;
	margin:3px;
	font-weight:bold;	
	border-top-right-radius:8px;
	border-bottom-right-radius:8px;
	text-shadow: 0 1px rgba(255,255,255,0.4);
	
	border:red dashed 2px;  
}

.tagchilddisplaysmallbutton:hover { 
/* 	color: white; */
/* 	text-shadow: 0 1px rgba(0,0,0,0.4);   */
	background-color:#8ae37b;
}

.tagchilddisplaysmallbutton.active { 
		background-color:#8ae37b;
		border-width: 2px;
	}

/* ==================================================================================================== */
/* ==================================================================================================== */
/* ==================================================================================================== */

