/* line 5, ../../app/stylesheets/popover.scss */
.popover {
  position: absolute;
  display: none;
  opacity: 0;
  cursor: auto;
  color: black;
  background-color: #f5f5f5;
/*   border-top: 3px solid #f5f5f5; */
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 31px 9px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0 0 31px 9px rgba(0,0,0,0.3);
  -o-box-shadow: 0 0 31px 9px rgba(0,0,0,0.3);
  box-shadow: 0 0 31px 9px rgba(0,0,0,0.3);
  width: 188px;
}
/* line 17, ../../app/stylesheets/popover.scss */
.popover.active {
  opacity: 1;
}
/* line 21, ../../app/stylesheets/popover.scss */
.popover > .triangle {
  position: absolute;
  width: 0px;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid transparent;
  border-style: dashed;
}
/* line 29, ../../app/stylesheets/popover.scss */
.popover > .triangle.top {
  bottom: -40px;
  border-top: 20px solid #f5f5f5;
}
/* line 34, ../../app/stylesheets/popover.scss */
.popover > .triangle.bottom {
  top: -40px;
  border-bottom: 20px solid #f5f5f5;
}
/* line 39, ../../app/stylesheets/popover.scss */
.popover > .triangle.left {
  right: -40px;
  border-left: 20px solid #f5f5f5;
}
/* line 44, ../../app/stylesheets/popover.scss */
.popover > .triangle.right {
  left: -40px;
  border-right: 20px solid #f5f5f5;
}
/* line 50, ../../app/stylesheets/popover.scss */
.popover > .header {
  display: none !important;
  font-weight: normal;
  margin: 0;
  padding: 3px 10px;
  line-height: 21px;
  color: #858787;
  background: none;
  text-align: left;
/*   border-bottom: 1px solid #cfd0d1; */
  font-size: 12px;
  overflow: hidden;
}
.popover > .header .element-name {
  color: #444;
  font-weight: bold;
  font-size: 14px;	
}
/* line 64, ../../app/stylesheets/popover.scss */
.popover > .content {
  background: none;
/*   min-width: 15em; */
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px 0 0 0;
/*   border-top: 1px solid white; */
  text-align: center;
}
