body{ 
	font-family: 'Poppins', sans-serif!important;
}
h1{
	font-size: 3em!important;
	font-family: 'Righteous', cursive!important;
}
a, h1, h2, h3   { color: #377BA8; }
h1, h2          { font-family: 'Georgia', serif; margin: 0; }
h2              { font-size: 1.4em; }
h3              { font-size: 1.1em; }

.page           { margin: 1em auto; border: 5px solid #ccc;
                  padding: 0.8em; background: white; }
.entries        { list-style: none; margin: 0; padding: 0; }
.entries li     { margin: 0.8em 1.2em; }
.entries li h2  { margin-left: -1em; }
.add-entry      { font-size: 0.9em; border-bottom: 1px solid #ccc; }
.add-entry dl   { font-weight: bold; }
.metanav        { text-align: right; font-size: 0.9em; padding: 0.3em;
                  margin-bottom: 1em; background: #fafafa;
                  border-top: 2px solid #eee; }
.flash          { background: #CEE5F5; padding: 0.5em; text-align: center;
                  border: 1px solid #AACBE2; }
.error          { background: #F0D6D6; padding: 0.5em; text-align: center;
                  border: 1px solid #AACBE2; }
.footer         { font-size: 0.7em; }
.rowname        { color: #377BA8; font-weight: bold; }



/*****************************/
#operations .form-group{
	margin-bottom:0px!important;
}
#operations{
	//background-color: #cce5ff;
	//padding: 6px;
	//border: 1px solid #b8daff;
	//border-radius: 5px;
	//margin-right:0px;
}

.form-control{
	border: 1px solid #333333!important;
}




/* tables ===================================================================*/
th              { color: white; }
td {padding:1px 4px;border:1px solid black;}
th {padding:1px 4px;border:1px solid black;}
table {border-collapse:collapse;}
table.top {border:0px solid white;}
table.top td {padding:1px 4px;border:0px solid white;}
table.top th {padding:1px 4px;border:0px solid white;}


table.tablesorter {
	background-color: #377BA8;
	margin:10px 0pt 15px;
	text-align: left;
}
table.tablesorter thead tr .header {
	padding: 1px 15px;
	background-image: url(bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
	color: white;
}
table.tablesorter tbody td {
	background-color: #FFF;
	vertical-align: middle;
}
table.tablesorter tbody tr.odd td {
	background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url(asc.gif);
}
table.tablesorter thead tr .headerSortDown {
	background-image: url(desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}

/* autocomplete =============================================================*/
.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	/*
	if width will be 100% horizontal scrollbar will apear
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/*
	it is very important, if line-height not setted or setted
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #8dbdd8;
	color: white;
}


/*********************************/


/**************  AVESOMECOMPLETE  *******************/
.visually-hidden{
	display:none;
}

.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.awesomplete {
    display: inline-block;
    position: relative;
}

.awesomplete > input {
    display: block;
}

.awesomplete > ul {
    position: absolute;
    left: 0;
    z-index: 1;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.awesomplete > ul:empty {
    display: none;
}

.awesomplete > ul {
	border-radius: .3em;
	margin: .2em 0 0;
	//background: hsla(0,0%,100%,.9);
	//background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
	border: 1px solid rgba(0,0,0,.3);
	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
	text-shadow: none;
}

@supports (transform: scale(0)) {
	.awesomplete > ul {
		transition: .3s cubic-bezier(.4,.2,.5,1.4);
		transform-origin: 1.43em -.43em;
	}
	
	.awesomplete > ul[hidden],
	.awesomplete > ul:empty {
		opacity: 0;
		transform: scale(0);
		display: block;
		transition-timing-function: ease;
	}
}

	/* Pointer */
	.awesomplete > ul:before {
		content: "";
		position: absolute;
		top: -.43em;
		left: 1em;
		width: 0; height: 0;
		padding: .4em;
		background: white;
		border: inherit;
		border-right: 0;
		border-bottom: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.awesomplete > ul > li {
		position: relative;
		padding: .2em .5em;
		cursor: pointer;
	}
	
	.awesomplete > ul > li:hover {
		background: hsl(200, 40%, 80%);
		color: black;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: hsl(205, 40%, 40%);
		color: white;
	}
	
		.awesomplete mark {
			background: hsl(65, 100%, 50%);
		}
		
		.awesomplete li:hover mark {
			background: hsl(68, 100%, 41%);
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: hsl(86, 100%, 21%);
			color: inherit;
		}

/*********************************/
