/**
 * @package         Tooltips
 * @version         7.3.0PRO
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://www.regularlabs.com
 * @copyright       Copyright © 2018 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
/*
 * You can override this stylesheet by creating your own in:
 * /templates/[YOUR TEMPLATE]/media/tooltips/css/style.min.css
 */
.rl_tooltips.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.rl_tooltips.popover.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.rl_tooltips.popover.fade.in {
  opacity: 1;
}
.rl_tooltips.popover.top {
  margin-bottom: 10px;
  margin-top: -6px;
}
.rl_tooltips.popover.right {
  margin-left: 10px;
}
.rl_tooltips.popover.bottom {
  margin-top: 13px;
}
.rl_tooltips.popover.left {
  margin-right: 10px;
  margin-left: -10px;
}
.rl_tooltips.popover .popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.rl_tooltips.popover .popover-title:empty {
  display: none;
}
.rl_tooltips.popover .popover-content {
  padding: 9px 14px;
}
.rl_tooltips.popover .arrow,
.rl_tooltips.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rl_tooltips.popover .arrow {
  border-width: 11px;
}
.rl_tooltips.popover .arrow:after {
  border-width: 10px;
  content: "";
}
.rl_tooltips.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.rl_tooltips.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.rl_tooltips.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.rl_tooltips.popover.right .arrow:after {
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.rl_tooltips.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.rl_tooltips.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.rl_tooltips.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.rl_tooltips.popover.left .arrow:after {
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
body > .rl_tooltips.popover .arrow:after {
  z-index: 0;
}
body > .rl_tooltips.popover.top .arrow:after,
body > .rl_tooltips.popover.bottom .arrow:after {
  left: 0;
  margin-left: -10px;
}
body > .rl_tooltips.popover.left .arrow:after {
  bottom: -10px;
}
body > .rl_tooltips.popover.right .arrow:after {
  bottom: -10px;
}
/* TOOLTIP LINK STYLES */
.rl_tooltips-link {
  cursor: pointer;
  display: inline-block !important;
}
.rl_tooltips-link.isimg {
  border-bottom: none;
}
.rl_tooltips-link.nostyle {
  border-bottom: none;
  cursor: inherit;
}
/* TOOLTIP POPOVER STYLES */
.rl_tooltips.popover {
  width: auto;
  max-width: 400px;
}
.rl_tooltips.popover.notitle .popover-title {
  display: none;
}
.rl_tooltips.popover.nocontent .popover-title {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border-bottom: none;
}
.rl_tooltips.popover.nocontent .popover-content {
  display: none;
}
.rl_tooltips.popover.isimg {
  text-indent: 0;
  max-width: none;
}
.rl_tooltips.popover.isimg .popover-content {
  padding: 4px;
}
.rl_tooltips.popover.blue h3.popover-title,
.rl_tooltips.popover.primary h3.popover-title {
  background-color: #dbecf9;
  color: #2384d3;
}
.rl_tooltips.popover.info h3.popover-title {
  background-color: #d9edf7;
  color: #31708f;
}
.rl_tooltips.popover.green h3.popover-title,
.rl_tooltips.popover.success h3.popover-title {
  background-color: #dff0d8;
  color: #3c763d;
}
.rl_tooltips.popover.orange h3.popover-title,
.rl_tooltips.popover.warning h3.popover-title {
  background-color: #fcf8e3;
  color: #8a6d3b;
}
.rl_tooltips.popover.red h3.popover-title,
.rl_tooltips.popover.danger h3.popover-title,
.rl_tooltips.popover.error h3.popover-title {
  background-color: #f2dede;
  color: #a94442;
}
.rl_tooltips.popover.grey h3.popover-title,
.rl_tooltips.popover.gray h3.popover-title {
  background-color: #eee;
  color: #999;
}
