/* Copyright AbyssGuard, www.abyssguard.com */
@charset "utf-8";
html {
	height: 100%;
}
body {
	margin: 60px 20px 20px;
	font-family: Roboto;
	font-size: 14px;
	color: #666;
	background-color: #ebeae8;
}
.loginPage, .error404Page {
	background-image: url(../images/loginbg.jpg);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
}
#loginForm {
	max-width: 400px;
	margin: 10% auto;
	padding: 50px;
	border-radius: 8px;
	border: 1px solid white;
	color: #6c6c6c;
	text-shadow: 1px 1px 1px white;
	background-color: rgba(0,0,0,0.03);
}
.logo {
	width: 228px;
	height: 40px;
	background-image: url(../images/logo.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
}
.input {
	padding: 12px;
	border-radius: 4px;
	border: 1px solid #c1bdba;
	background-color: white;
}
select.input {
	padding: 11px;
}
.Safari select.input {
	-webkit-appearance: none;
}
.input.error, .settingsInput.error {
	border-color: #cc0000;
}
.input.success, .settingsInput.success {
	border-color: #669933;
}
#messages {
	position: fixed;
	z-index: 100;
	top: 35px;
	right: 35px;
	width: 360px;
}
#messages .messagesX {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 12px;
	height: 12px;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	background-image: url(../images/icons.png);
	background-size: auto 12px;
	background-position: -264px 0px;
}
#messages .message {
	position: relative;
	width: 100%;
	padding: 20px;
	margin-bottom: 10px;
	border: 1px solid white;
	border-style: solid;
	border-radius: 3px;
	background-color: #ccc;
	font-size: 16px;
	color: white;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	word-break: break-all;
}
#messages .message.green {
	background-color: rgba(102,153,51,0.85);
}
#messages .message.red {
	background-color: rgba(204,0,0,0.85);
}
#messages .message.yellow {
	background-color: rgba(218,185,0,0.85);
}
#messages .message.active {
	opacity: 1;
	filter: alpha(opacity=100);
}
@-webkit-keyframes anim-rotate {
	0% {
		-webkit-transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes anim-rotate {
	0% {
		transform: rotate(0);
		-ms-transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
		-ms-transform: rotate(360deg);
	}
}
#loading {
	position: fixed; 
	z-index: 1000; 
	top: 35%; 
	left: 50%;
	margin-left: -54px;
	background-color: rgba(255,255,255,0.8); 
	border: 1px solid white; 
	padding: 10px; 
	border-radius: 4px;	
}
#loader {
	display: inline-block;
	animation: anim-rotate 3s infinite linear;
	-webkit-animation: anim-rotate 3s infinite linear;
	color: #fff;
	background-image: url(../images/loader.png);
	width: 86px;
	height: 86px;
}
#bodyLeft {
	min-height: 1px;
	float: left;
	margin-right: 15px;
}
#bodyLeft, .mainNavContainer.fixed {
	width: 220px;	
}
#bodyLeft.inactive, #bodyLeft.inactive .mainNavContainer.fixed {
	width: 91px;	
}
#bodyRight {
	position: relative;
	min-height: 300px;
	opacity: 0;
	filter: alpha(opacity=0);
	right: 0px;
	overflow: hidden;
	-webkit-transition: 0.4s linear;
	-moz-transition: 0.4s linear;
	-ms-transition: 0.4s linear;
	-o-transition: 0.4s linear;
	transition: 0.4s linear;
}
#bodyRight.active {
	opacity: 1;
	filter: alpha(opacity=100);
}
.installPage #bodyRight {
	max-width: 968px;
	margin: auto;
}
#mobileNav {
	position: absolute;
	z-index: 20;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: rgba(43,170,225,0.85);
}
#mobileNav .logo {
	width: 50%;
	margin-top: 5px;
}
#mobileNav.inactive {
	top: -50px;
}
.mobileNavDimmer {
	position: fixed;
	z-index: 2;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(255,255,255,0.5);
}
.mobileNavIcon {
	margin-top: 13px;
}
.mobileNavIcon div {
	width: 24px;
	height: 4px;
	margin-bottom: 4px;
	background-color: #eee;
}
.mobileNavIcon div:last-child {
	margin-bottom: 0px;
}
.mobileNavIcon.close div:nth-child(1), .mobileNavIcon.close div:nth-child(3) {
	position: absolute;
    top: 8px;
}
.mobileNavIcon.close div:nth-child(1) {
    transform: rotate(45deg);
}
.mobileNavIcon.close div:nth-child(2) {
	visibility: hidden;
}
.mobileNavIcon.close div:nth-child(3) {
	transform: rotate(-45deg);
}
#bodyLeft.active {
	display: block;
	left: 0px;
	opacity: 1;
	filter: alpha(opacity=100);
	position: relative
}
#bodyLeft.inactive .toggleNavElement {
	display: none;
}
.mainNavContainer.fixed {
	top: 10px;
	left: 20px;
	position: fixed !important;
}
.container, .alert {
	margin-bottom: 15px;
	border-radius: 4px;
}
.container {
	border: 1px solid #d8d7d4;
	background-color: #f4f4f4;
}
.containerHeader {
	padding: 15px;
	border-radius: 6px 6px 0px 0px;
	font-weight: bold;
	font-size: 18px;
	color: #56a1d5;
	background-color: white;
}
.mainNavContainer .userContainer {
	padding: 10px 10px 10px 16px;
	background-color: white;
}
.userPhoto {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 5px solid #ebeae8;
	background-size: cover;
	background-position: top center;
}
.userPhoto div {
	width: 40px;
	height: 40px;
	margin: 5px auto;
	background-image: url(../images/icons.png);
	background-size: auto 40px;
	background-position: -280px 0px;
}
.mainNavLink {
	padding: 15px 30px;
	text-decoration: none;
	color: #777;
	border-top: 1px solid #eee;
}
.mainNavLink:hover:not(.active) {
	color: #222;
}
.mainNavLink.active {
	background-color: white;
	color: #56a1d5;
}
[class^="mainNavIcon-"], [class*=" mainNavIcon-"] {
	width: 24px;
	height: 24px;
	margin-right: 5px;
	display: inline-block;
	vertical-align: middle;
	background-image: url(../images/icons.png);
	background-size: auto 24px;
}
.mainNavIcon-dashboard {
	background-position: -192px 0px;
}
.mainNavIcon-settings {
	background-position: -216px 0px;
}
.mainNavIcon-banlist {
	background-position: -240px 0px;
}
.mainNavIcon-simulation {
	background-position: -264px 0px;
}
.mainNavIcon-blacklist {
	background-position: -288px 0px;
}
.mainNavIcon-whitelist {
	background-position: -312px 0px;
}
.mainNavIcon-statistics {
	background-position: -336px 0px;
}
.mainNavIcon-logout {
	background-position: -360px 0px;
}
.mainNavIcon-hosts {
	background-position: -384px 0px;
}
.mainNavIcon-exempts {
	background-position: -408px 0px;
}
.mainNavIcon-logs {
	background-position: -432px 0px;
}
.dashboardCircle, .dashboardCircleInner {
	border-radius: 100%;
	background-color: white;
	border-style: solid;
	border-color: #ccc;
}
.dashboardCircle {
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-width: 10px;
	color: #777;
}
.dashboardCircleInner {
	width: 13px;
	height: 13px;
	right: 0px;
	top: 76%;
	border-width: 5px;
}
.dashboardCircle.green, .dashboardCircle.green .dashboardCircleInner {
	border-color: #66cc99;
}
.dashboardCircle.red, .dashboardCircle.red .dashboardCircleInner {
	border-color: #cc3366;
}
.dashboardCircle.purple, .dashboardCircle.purple .dashboardCircleInner {
	border-color: #9999ff;
}
.dashboardCircle.pinkish, .dashboardCircle.pinkish .dashboardCircleInner {
	border-color: #cc66cc;
}
.dashboardResponsiveContainer {
	float: left;
	width: 25%;
}
.alert {
	padding: 15px;
	color: white;
}
.alert.red {
	background-color: #d21554;
}
[class^="alertIcon-"], [class*=" alertIcon-"] {
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	border-radius: 100%;
	border: 6px solid white;
}
.alertIcon-warning:before {
	content: "!";
}
.ttype:hover {
	color: #3399CC;
}
.logsSearchControls {
	top: 10px;
	left: 10px;
}
.logsSearchLabel.active {
	color: #56a1d5;
}
.popupContainer {
	z-index: 99;
}
.popupContainer, .popupDimmer {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}
.popupDimmer {
	background-color: rgba(0,0,0,0.5);
}
.popup {
	overflow: hidden;
	width: 600px;
	min-height: 200px;
	max-height: 600px;
	position: fixed;
	top: 20%;
	left: 50%;
	margin-left: -300px;
	padding-bottom: 20px;
	background-color: white;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	border-radius: 4px;
}
.popupHeader {
	color: #56a1d5;
}
.popupContent, .popupHeader {
	padding: 20px;
}
.popupContent {
	line-height: 1.5em;
	font-size: 15px;
}
.separator {
	border-top: 1px dotted #ddd;
}
.button, .settingsInput {
	padding: 11px 15px;
	color: #3399cc;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #ccc;
}
.button {
	text-align: center;
	min-width: 100px;
	text-decoration: none;
	cursor: pointer;
	text-shadow: 1px 1px 0px white;
	font-size: 14px;
	font-weight: bold;
	background: -webkit-linear-gradient(bottom, #f9f9f9, #ffffff);
	background: -moz-linear-gradient(bottom, #f9f9f9, #ffffff);
	background: -ms-linear-gradient(bottom, #f9f9f9, #ffffff);
	background: -o-linear-gradient(bottom, #f9f9f9, #ffffff);
	background: linear-gradient(bottom, #f9f9f9, #ffffff);
}
.button:hover {
	background: #f9f9f9;
}
.button.block, .bigbutton.block {
	width: 100%;
}
.button.blue {
	background: #66ccff;
	color: white;
	border-color: #3399cc;
	text-shadow: 1px 1px 1px #3399cc;
}
.settingsInput {
	font-size: 14px;
	border-radius: 0px 4px 4px 0px;
	border-left: 1px solid #3399cc;
}
.switch {
	position: relative;
	width: 100px;
	height: 40px;
	line-height: 42px;
	color: white;
	font-family: Arial, serif;
	font-weight: bold;
	font-size: 16px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.3) inset;
	background-color: #ff7c41;
}
.switch.on {
	background-color: #80d7ff;
}
.switch .sbutton {
	position: absolute;
	z-index: 1;
	top: 6px;
	left: 6px;
	width: 25px;
	height: 25px;
	border: 1px solid #fff;
	border-radius: 100px;
	box-shadow: 1px 1px 1px white inset, 0px 4px 5px rgba(0,0,0,0.2);
	background-color: #eee;
	background: -webkit-linear-gradient(bottom, #eee, #fff);
	background: -moz-linear-gradient(bottom, #eee, #fff);
	background: -ms-linear-gradient(bottom, #eee, #fff);
	background: -o-linear-gradient(bottom, #eee, #fff);
	background: linear-gradient(bottom, #eee, #fff);
}
.switch.on .sbutton {
	left: 66px;
}
.switch .switchon {
	display: none;
}
.switch.on .switchon {
	display: block;
}
.switch.on .switchoff {
	display: none;
}
.sbutton div {
	width: 15px;
	height: 15px;
	margin: 5px;
	border-radius: 100px;
	background-color: #eee;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.1) inset;
}
.tableWhite {
	background-color: white;
}
.tableWhite td {
	padding: 10px;
	border-bottom: 1px solid #eee;
}
.tableWhite tr:last-child td {
	border-bottom: 0px;
}
.tableWhiteHeader {
	font-weight: bold;
	color: #999;
	background-color: #f4f4f4;
}
.tableWhite a {
	color: #005C9C;
	text-decoration: none;
}
.tableWhite a:hover {
	text-decoration: underline;
}
.xcircle {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 100%;
	cursor: pointer;
	font-size: 17px; 
	line-height: 18px;
	color: #cc0000;
	font-weight: bold;
}
.xcircle:hover {
	border-color: #cc0000;
}
[class^="icon-"], [class*=" icon-"] {
	width: 24px;
	height: 24px;
	cursor: pointer;
	background-image: url(../images/icons.png);
	background-size: auto 24px;
}
.icon-ag {
	background-position: 0px 0px;
}
.icon-world {
	background-position: -24px 0px;
}
.icon-honeypot {
	background-position: -48px 0px;
}
.icon-delete {
	opacity: 0.5;
	background-position: -72px 0px;
}
.icon-warning {
	opacity: 0.5;
	background-position: -96px 0px;
}
.icon-delete:hover, .icon-warning:hover {
	opacity: 1;
}
.xWidth {
	width: 20px;
}
.searchContainer {
	display: table;
	width: 100%;
}
.searchCell {
	display: table-cell;
	vertical-align: top;
}
.opacity {
	opacity: 0;
	filter: alpha(opacity: 0);
}
.opacity.active {
	opacity: 1;
	filter: alpha(opacity: 100);
}
/*logs*/
#gmap {
	height: 350px;
}
.ttable {
	background-color: #F8F8F8;
	border: 1px solid #DDDDDD;
	border-collapse: collapse;
	vertical-align: top;
	width: 100%;
	position: relative;
	z-index: 0;
	table-layout: fixed;
	font-family: 'Times New Roman', serif;
	word-break: break-all;
}
.ttable td {
	padding: 12px 0px 13px;
}
.ttable tr {
	border: 1px solid #DDDDDD;
}
.ttable tr:nth-child(even) {
	background-color: white;
}
.ttable tr:nth-child(odd) {
	background-color: #F8F8F8;
}
.ttable tr {
	border: 1px solid #DDDDDD;
	border-color: transparent;
}
.infotdInner {
	background-color: transparent;
	border-color: transparent;
}
.infotdInner td {
	padding: 2px;
	border-color: transparent;
}
.infotdInner tr:nth-child(even) {
	background-color: transparent;
}
.infotdInner tr:nth-child(odd) {
	background-color: transparent;
}
.infotdInner tr td:first-child {
	width: 110px;
}
.infotdInner td, .infotdInner tr {
	background: transparent !important;
}
.ablue {
	color: #005C9C;
}
.ablack {
	color: black;
}
.threat a {
	color: maroon;
	font-weight: bold;
	text-decoration: none;
}
.date {
	color: black;
	font-size: small;
}
.ttablefooter td {
	padding: 5px 10px !important;
	color: white;
	border-top: 1px solid #003366;
	box-shadow: 0 -2px 1px rgba(0, 0, 0, 0.4);
	position: relative;
	bottom: -1px;
	background-color: #333;
}
.countryflag {
	width: 32px;
	height: 32px;
	border: none;
}
.tdw1 {
	width: 50px;
	text-align: center;
}
.tdw2 {
	width: 50px;
}
.tdw3 {
	width: 240px;
}
.logsPageButtons {
}
.logsPageButtons .logsPageButton {
	float: left;
    width: 10px;
    height: 20px;
    line-height: 16px;
	margin-top: 5px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
	background-color: #eee;
    color: #777;
    font-size: 24px;
    text-shadow: 1px 1px 0px white;
}
.logsPageButtons .logsPageButton:first-child {
	border-radius: 6px 0px 0px 6px;
	border-color: #ccc;
}
.logsPageButtons .logsPageButton:last-child {
	border-radius: 0px 6px 6px 0px;
	border-color: #ccc #ccc #ccc #fff;
}
.logsPageButtons .logsPageButton:hover {
	border-color: #aaa;
}
.logsPageButton {
	padding: 5px 10px;
}
#searchInput {
	padding-left: 80px;
}
.logsQuickInput {
	border-color: #ddd;
}
.logsQuickInput[disabled] {
	background: transparent;
}
.quickAddRed:hover {
	color: #cc0000;
}
.quickAddBlue:hover {
	color: #2baae1;
}
.searchPaging {
	padding: 5px;
}
.logsResultBox a {
	text-decoration: none;
	border-bottom: 0px;
}
.logsResultBoxContent {
	margin: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: white;
	font-size: 1.2em;
}
.resultBoxFooter {
	padding: 10px;
	background-color: #eee;
	box-shadow: 0px 2px 1px rgba(0,0,0,0.1) inset;
	text-shadow: 1px 1px 1px white;
}
.logsResultAttempts {
	padding: 5px 5px 4px;
	background-color: #eee;
	text-align: center;
	border: 1px solid #ddd;
	color: #666;
	font-size: 0.7em;
}
.datesCal {
	width: 340px;
}

/*users*/
.dropArea {
	border-radius: 10px;
	border: 3px dashed #ccc;
	color: #ccc;
	font-size: 1.5em;
}
.usersTable {
	display: table;
	width: 100%;
}
.usersTable .usersRow:first-child {
	margin-top: 0px;
}
.usersTable .usersRow:last-child .separator {
	display: none;
}
.usersTable .usersRow:last-child {
	margin-bottom: 0px;
}
.usersCell {
	display: table-cell;
	vertical-align: middle;
}
.logsIconsContainer {
	float: left;
}
.calendarClose {
    top: 0px;
    right: 0px;
    padding: 8px;
}
.calendarClose:before {
	content: "x";
	color: #cc0000;
	font-size: 18px;
	font-weight: bold;
}
.calendarIcon {
	position: absolute;
	top: 12px;
	left: 5px;
	width: 16px;
	height: 16px;
	pointer-events: none;
	background-image: url(../images/icons.png);
	background-size: auto 16px;
	background-position: -80px 0px;
}
.startDate input, .endDate input {
	padding-left: 25px;
}
.refreshIcon {
	width: 16px;
	height: 16px;
	background-image: url(../images/icons.png);
	background-size: auto 16px;
	background-position: -96px 0px;
}
.gplusIcon {
	width: 22px;
	height: 22px;
	background-image: url(../images/icons.png);
	background-position: -418px 0px;
	background-size: auto 22px;
}

/*theme*/
.bulbIcon {
	width: 32px;
	height: 32px;
	background-image: url(../images/icons.png);
	background-size: auto 32px;
	background-position: -640px 0px;
}
.bulbIcon.active {
	background-position: -672px 0px;
}
.themeDark {
	background-color: #c7c4be;
}
.themeDark #mobileNav {
	background-color: rgba(0,0,0,0.85);
}
.themeDark .container, .themeDark .tableWhite {
	background-color: #ebeae8;
}
.themeDark .containerHeader, .themeDark .mainNavLink.active {
	color: #BB3939;
}
.themeDark .ttable tr:nth-child(even) {
    background-color: #EFEFEF;
}
.themeDark .ttable tr:nth-child(odd), .themeDark .tableWhiteHeader {
    background-color: #F3F3F3;
}
.themeDark .tableWhite td {
	border-bottom-color: #f5f5f5;
}
.themeDark .tableWhite tr:hover, .themeDark .logsResultBoxContent {
	background-color: #f5f5f5;
}
.themeDark .button.blue {
    background: #BB3939;
    border-color: #8C3939;
    text-shadow: 1px 1px 1px #7B1919;
}
.themeDark .mainNavLink {
	border-top: 1px solid #ddd;
}

/*error pages*/
.error404img {
	display: block;
	width: 100%;
}

/*angular animate*/
.ng-enter-stagger {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.ng-enter, 
.ng-leave.ng-leave-active, 
.ng-hide, 
.ng-enter.ng-enter-active, 
.ng-leave {
	-webkit-transition: 0.25s linear;
	transition: 0.25s linear;
}
.ng-enter, 
.ng-leave.ng-leave-active, 
.ng-hide {
	opacity: 0;
	filter: alpha(opacity=0);
}
.ng-enter.ng-enter-active, 
.ng-leave {
	opacity: 1;
	filter: alpha(opacity=100);
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}