/**
 * TMZL v1.0.0 (http://www.tmzl.com.cn/)
 * Copyright 2015-2018 TMZL Team
 
 */
.webui-popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1800;
	display: none;
	width: 276px;
	min-height: 32px;
	padding: 0;
	text-align: left;
	white-space: normal;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	        background-clip: padding-box;
	border: 1px solid #e4eaec;
	border: 1px solid rgba(204, 213, 219, .8);
	border-radius: 4px;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
	        box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}
.webui-popover.top, .webui-popover.top-left, .webui-popover.top-right {
	margin-top: -6px;
}
.webui-popover.right, .webui-popover.right-top, .webui-popover.right-bottom {
	margin-left: 6px;
}
.webui-popover.bottom, .webui-popover.bottom-left, .webui-popover.bottom-right {
	margin-top: 6px;
}
.webui-popover.left, .webui-popover.left-top, .webui-popover.left-bottom {
	margin-left: -6px;
}
.webui-popover.pop {
	-webkit-transition: -webkit-transform .15s cubic-bezier(.3, 0, 0, 1.5);
	     -o-transition:      -o-transform .15s cubic-bezier(.3, 0, 0, 1.5);
	        transition: -webkit-transform .15s cubic-bezier(.3, 0, 0, 1.5);
	        transition:         transform .15s cubic-bezier(.3, 0, 0, 1.5);
	        transition:         transform .15s cubic-bezier(.3, 0, 0, 1.5), -webkit-transform .15s cubic-bezier(.3, 0, 0, 1.5), -o-transform .15s cubic-bezier(.3, 0, 0, 1.5);
	-webkit-transform: scale(.8);
	    -ms-transform: scale(.8);
	     -o-transform: scale(.8);
	        transform: scale(.8);
}
.webui-popover.fade {
	-webkit-transition: opacity .15s linear;
	     -o-transition: opacity .15s linear;
	        transition: opacity .15s linear;
}
.webui-popover.in {
	opacity: 1;
	-webkit-transform: none;
	    -ms-transform: none;
	     -o-transform: none;
	        transform: none;
}
.webui-popover-inner .close {
	float: right;
	margin: 5px 10px 0 0;
	font-family: arial;
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;
	color: #000;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
}
.webui-popover-inner .close:hover, .webui-popover-inner .close:focus {
	filter: alpha(opacity=50);
	opacity: .5;
}
.webui-popover-title {
	padding: 8px 14px;
	margin: 0;
	font-size: 14px;
	background-color: #f3f7f9;
	border-bottom: 1px solid #e2ecf1;
	border-radius: 3px 3px 0 0;
}
.webui-popover-content {
	padding: 20px;
	overflow: auto;
}
.webui-no-padding .webui-popover-content {
	padding: 0;
}
.webui-no-padding .list-group-item {
	border-right: none;
	border-left: none;
}
.webui-no-padding .list-group-item:first-child {
	border-top: 0;
}
.webui-no-padding .list-group-item:last-child {
	border-bottom: 0;
}
.webui-popover > .webui-arrow, .webui-popover > .webui-arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.webui-popover > .webui-arrow {
	border-width: 7px;
}
.webui-popover > .webui-arrow:after {
	content: "";
	border-width: 6px;
}
.webui-popover.top > .webui-arrow, .webui-popover.top-right > .webui-arrow, .webui-popover.top-left > .webui-arrow {
	bottom: -7px;
	left: 50%;
	margin-left: -7px;
	border-top-color: #a8bbc2;
	border-top-color: rgba(204, 213, 219, .85);
	border-bottom-width: 0;
}
.webui-popover.top > .webui-arrow:after, .webui-popover.top-right > .webui-arrow:after, .webui-popover.top-left > .webui-arrow:after {
	bottom: 1px;
	margin-left: -6px;
	content: " ";
	border-top-color: #fff;
	border-bottom-width: 0;
}
.webui-popover.right > .webui-arrow, .webui-popover.right-top > .webui-arrow, .webui-popover.right-bottom > .webui-arrow {
	top: 50%;
	left: -7px;
	margin-top: -7px;
	border-right-color: #a8bbc2;
	border-right-color: rgba(204, 213, 219, .85);
	border-left-width: 0;
}
.webui-popover.right > .webui-arrow:after, .webui-popover.right-top > .webui-arrow:after, .webui-popover.right-bottom > .webui-arrow:after {
	bottom: -6px;
	left: 1px;
	content: " ";
	border-right-color: #fff;
	border-left-width: 0;
}
.webui-popover.bottom > .webui-arrow, .webui-popover.bottom-right > .webui-arrow, .webui-popover.bottom-left > .webui-arrow {
	top: -7px;
	left: 50%;
	margin-left: -7px;
	border-top-width: 0;
	border-bottom-color: #a8bbc2;
	border-bottom-color: rgba(204, 213, 219, .85);
}
.webui-popover.bottom > .webui-arrow:after, .webui-popover.bottom-right > .webui-arrow:after, .webui-popover.bottom-left > .webui-arrow:after {
	top: 1px;
	margin-left: -6px;
	content: " ";
	border-top-width: 0;
	border-bottom-color: #fff;
}
.webui-popover.left > .webui-arrow, .webui-popover.left-top > .webui-arrow, .webui-popover.left-bottom > .webui-arrow {
	top: 50%;
	right: -7px;
	margin-top: -7px;
	border-right-width: 0;
	border-left-color: #a8bbc2;
	border-left-color: rgba(204, 213, 219, .85);
}
.webui-popover.left > .webui-arrow:after, .webui-popover.left-top > .webui-arrow:after, .webui-popover.left-bottom > .webui-arrow:after {
	right: 1px;
	bottom: -6px;
	content: " ";
	border-right-width: 0;
	border-left-color: #fff;
}
.webui-popover-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1799;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .65);
}
.webui-popover-primary .webui-popover-title {
	color: #fff;
	background-color: #62a8ea;
	border-color: #62a8ea;
}
.webui-popover-primary.bottom .webui-arrow {
	border-bottom-color: #62a8ea;
}
.webui-popover-primary.bottom .webui-arrow:after {
	border-bottom-color: #62a8ea;
}
.webui-popover-success .webui-popover-title {
	color: #fff;
	background-color: #46be8a;
	border-color: #46be8a;
}
.webui-popover-success.bottom .webui-arrow {
	border-bottom-color: #46be8a;
}
.webui-popover-success.bottom .webui-arrow:after {
	border-bottom-color: #46be8a;
}
.webui-popover-info .webui-popover-title {
	color: #fff;
	background-color: #57c7d4;
	border-color: #57c7d4;
}
.webui-popover-info.bottom .webui-arrow {
	border-bottom-color: #57c7d4;
}
.webui-popover-info.bottom .webui-arrow:after {
	border-bottom-color: #57c7d4;
}
.webui-popover-warning .webui-popover-title {
	color: #fff;
	background-color: #f2a654;
	border-color: #f2a654;
}
.webui-popover-warning.bottom .webui-arrow {
	border-bottom-color: #f2a654;
}
.webui-popover-warning.bottom .webui-arrow:after {
	border-bottom-color: #f2a654;
}
.webui-popover-danger .webui-popover-title {
	color: #fff;
	background-color: #f96868;
	border-color: #f96868;
}
.webui-popover-danger.bottom .webui-arrow {
	border-bottom-color: #f96868;
}
.webui-popover-danger.bottom .webui-arrow:after {
	border-bottom-color: #f96868;
}