.angular-popover-container {
	position: absolute;
	width: 0;
	height: 0;
	left: 0
}

.angular-popover {
	position: absolute;
	box-shadow: 0 0 7px 1px rgba(0, 0, 0, .2);
	background-color: #fff
}

.popover-floating-animation-top {
	animation: floatingtop 3s .5s ease-in;
	-webkit-animation: floatingtop 3s .5s ease-in
}

.popover-floating-animation-bottom {
	animation: floatingbottom 3s .5s ease-in;
	-webkit-animation: floatingbottom 3s .5s ease-in
}

.popover-floating-animation-left {
	animation: floatingleft 3s .5s ease-in;
	-webkit-animation: floatingleft 3s .5s ease-in
}

.popover-floating-animation-right {
	animation: floatingright 3s .5s ease-in;
	-webkit-animation: floatingright 3s .5s ease-in
}

@-webkit-keyframes floatingtop {
	from,
	to {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0)
	}
}

@-webkit-keyframes floatingbottom {
	from,
	to {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0)
	}
}

@-webkit-keyframes floatingright {
	from,
	to {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0)
	}
}

@-webkit-keyframes floatingleft {
	from,
	to {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0)
	}
}

.hide-popover-element {
	display: none
}

.angular-popover-triangle {
	width: 30px;
	height: 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 10px -17px rgba(0, 0, 0, .2)
}

.angular-popover-triangle:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background: #fff;
	transform: rotate(45deg);
	box-shadow: 0 0 7px 1px rgba(0, 0, 0, .2)
}

.angular-popover-triangle-top:after {
	top: -8.5px;
	left: 7px
}

.angular-popover-triangle-bottom:after {
	top: 23.5px;
	left: 7px
}

.angular-popover-triangle-right::after {
	top: 7.5px;
	left: 23.5px
}

.angular-popover-triangle-left::after {
	top: 7.5px;
	left: -8.5px
}

.popover-aside {
	position: relative
}
.angular-popover {
	padding: 1rem;
	box-sizing: border-box;
	color: #333;
	text-shadow: none;
}
.without--outline {
	outline-style: none !important;
}