@charset "utf-8";
/* CSS Document */
/*.cal365-tooltip {
	position: relative;
}
*/.cal365-tooltip span {
	left: 50%;
	transform: translate(-45%, 8px);
	position: absolute;
	padding: 3px 15px;
	background-color: #fff;
	height: 30px;
	display: flex;
	align-items: center;
	visibility: hidden;
	border-radius: 4px;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2);
	font-size: 14px;
	text-transform:lowercase;
	color: var(--color-texto-principal);
}
.cal365-tooltip span::after {
	content: '';
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
  transform: translateX(-50%);
	width: 0;
	height: 0;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}
.abajo span {
	bottom: -35px;
}
.arriba span {
	top: -46px;
}
.abajo span::after {
	top: -8px;
	border-bottom: 8px solid #fff;
	margin-left: -12px;
}
.arriba span::after {
	bottom: -8px;
	border-top: 8px solid #fff;
	margin-left: -4px;
}
.cal365-tooltip:hover span {
	visibility: visible;
	margin: 0;
	left: 50%;
	z-index: 9999999;
}
