@import "../settings/variables";
@import "../tools/arrows";

.popover {
  color: $popover-text-color;
  background-color: $popover-background-color;
  border-radius: 4px;
  display: inline-block;
  max-width: 250px;
  position: relative;

  &__container {
    display: inline-block;
  }

  // dropshadow
  -webkit-filter: $popover-webkit-dropshadow;
  filter: $popover-webkit-dropshadow;
  -ms-filter: $popover-ms-dropshadow;
  filter: $popover-ms-dropshadow;

  // IE 10 and 11 dropshadow
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    box-shadow: $popover-ms-boxshadow;
  }

  @include arrow-placements($popover-arrow-size, $popover-arrow-color);

  &--fluid {
    max-width: none;
  }
}
