@charset "utf-8";

.-balloon {
	--bkgnd: #000000;
	--anchor-radius: 6px;
	
	position: absolute;
	left: 0;
	top: 0;

	padding: 0.8rem 1.0rem;

	font-size: 1.2rem;
	font-weight: 300;

	
	color: #FFFFFF;
	background: var(--bkgnd);
	/*
	background: rgba(0, 0, 0, 0.72);
	*/
	
	border-radius: 0.4rem;
	
	/*
	box-shadow: 0 1px 2px 0 rgba(60,64,67,0.70), 0 1px 3px 1px rgba(60,64,67,0.60);
	*/

	/*
	background-color: rgba(0, 0, 0, 0.72);
	border: 1px solid #000000;
	*/
	
	/*
	color: #FFFFFF;
	background-color: var(--color-700);
	border: 1px solid var(--color-800);
	*/
	
	/*
	box-shadow: 1px 1px 3px #000000;
	*/
	/*box-shadow: 0 1px 2px 0 rgba(0,0,0,0.70), 0 1px 3px 1px rgba(0,0,0,0.60);*/

	/*box-shadow: 0 1px 5px #2d2d2d;*/
	
	white-space: nowrap;
	
	opacity: 1;
	
	visibility: hidden;
	
	z-index: 9999;
	
	pointer-events: none;
}

.-balloon.-trans {
	transition-property: opacity;
	transition-duration: 20000ms;
	transition-timing-function: linear;
}


.-balloon ._anchor {
	position: absolute;
	left: 0;
	top: 0;
	
	width: 0;
	height: 0;

	/*--width: 6px;*/
	/*--background: #000000;*/
	/*
	--background: rgba(0, 0, 0, 0.72);
	*/
	
	line-height: 0;
	
	/*
	background: #000000;
	*/

	/*	
	border-style: solid;
	border-color: #ff0000;

	transform: rotate(45deg);
	*/
	
	pointer-events: none;
}


.-balloon ._anchor.-left {
	right: calc(var(--anchor-radius) * -1);
	left: auto;
	top: 8px;

	border-right: var(--anchor-radius) solid none;
	border-left: var(--anchor-radius) solid var(--bkgnd);
	border-top: var(--anchor-radius) solid transparent;
	border-bottom: var(--anchor-radius) solid  transparent;
}
.-balloon ._anchor.-right {
	left: calc(var(--anchor-radius) * -1);
	top: 8px;
	
	border-left: var(--anchor-radius) solid none;
	border-right: var(--anchor-radius) solid var(--bkgnd);
	border-top: var(--anchor-radius) solid transparent;
	border-bottom: var(--anchor-radius) solid  transparent;
}
.-balloon ._anchor.-top {
	left: 0;
	top: auto;
	bottom: calc(var(--anchor-radius) * -1);
	
	border-bottom: var(--anchor-radius) solid none;
	border-top: var(--anchor-radius) solid var(--bkgnd);
	border-left: var(--anchor-radius) solid transparent;
	border-right: var(--anchor-radius) solid  transparent;
}
.-balloon ._anchor.-bottom {
	left: 0;
	top: calc(var(--anchor-radius) * -1);
	
	border-top: var(--anchor-radius) solid none;
	border-bottom: var(--anchor-radius) solid var(--bkgnd);
	border-left: var(--anchor-radius) solid transparent;
	border-right: var(--anchor-radius) solid  transparent;
}
