.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  width: 236px;
  padding: 1px;
  background-color: white;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: margin 0.3s ease, opacity 0.3s ease;
  transition: margin 0.3s ease, opacity 0.3s ease; }
  .popover.top {
    margin-top: 0; }
  .popover.right {
    margin-left: 0; }
  .popover.bottom {
    margin-top: 0; }
  .popover.left {
    margin-left: 0; }
  .popover.in.top {
    margin-top: -0.825em; }
  .popover.in.right {
    margin-left: 0.825em; }
  .popover.in.bottom {
    margin-top: 0.825em; }
  .popover.in.left {
    margin-left: -0.825em; }

.popover-title {
  margin: 0;
  padding: 0.571em 1em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.3;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 0.563em 0.875em;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5; }
  .popover-content p,
  .popover-content ul,
  .popover-content ol {
    margin-bottom: 0; }
  .popover-content ul,
  .popover-content ol {
    margin-left: 1.286em; }

.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover .arrow:after {
  content: "";
  z-index: -1; }

.popover.top .arrow {
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0;
  border-top-color: white; }
  .popover.top .arrow:after {
    border-width: 11px 11px 0;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -1px;
    left: -11px; }
.popover.right .arrow {
  top: 50%;
  left: -10px;
  margin-top: -10px;
  border-width: 10px 10px 10px 0;
  border-right-color: white; }
  .popover.right .arrow:after {
    border-width: 11px 11px 11px 0;
    border-right-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
    left: -1px; }
.popover.bottom .arrow {
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 0 10px 10px;
  border-bottom-color: white; }
  .popover.bottom .arrow:after {
    border-width: 0 11px 11px;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -1px;
    left: -11px; }
.popover.left .arrow {
  top: 50%;
  right: -10px;
  margin-top: -10px;
  border-width: 10px 0 10px 10px;
  border-left-color: white; }
  .popover.left .arrow:after {
    border-width: 11px 0 11px 11px;
    border-left-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
    right: -1px; }