/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.aristos-popover {
  z-index: 99999;
  position: relative;
}
.aristos-popover .content {
  font: normal 11px verdana, tahoma, helvetica;
  white-space: normal;
  z-index: 2;
  display: none;
  text-align: left;
  position: absolute;
  padding: 0 10px;
  background: #F9F9F9;
  border: 1px solid #E6E6E6;
  border-radius: 0;
}
.aristos-popover .content .arrow {
  content: '';
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  background: #F9F9F9;
  border-left: 1px solid #E6E6E6;
  border-top: 1px solid #E6E6E6;
}
.aristos-popover .loading {
  color: #333333;
  display: none;
}
.aristos-popover.ajax .content .loading {
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.9;
  position: absolute;
  display: block;
  text-align: center;
}
.aristos-popover.ajax .content .loading i {
  background: none;
  opacity: 1;
  font-size: 5em;
  margin: 40% 0;
}

