/* Dark blue */

/* Container */
.tooltip-dark {
  background: #5e707d;
  max-width: 300px;
  color: #fff;
}

/* Pointer */
.tooltip-dark .tip {
	margin-left: -14px;
}
.tooltip-dark .tip:before {
	background: #5e707d;
}


/* Blue border */

/* Container */
.tooltip-blueborder {
	border-radius: 5px;
	border: 2px solid #52a2cb;
	max-width: 300px;
}

/* Pointer */
.tooltip-blueborder .tip {
	margin-left: -18px;
}

.tooltip-blueborder .tip:before {
	border: 2px solid #52a2cb;
}

.tooltip-blueborder.tooltip-top .tip:before {
	box-shadow: 0px 0px 0px rgba(0, 0, 0, .3);
}

.tooltip-blueborder.tooltip-bottom .tip:before {
	box-shadow: 0px 0px 0px rgba(0, 0, 0, .3);
}