@import "../style/colors";


$tooltipWidth : 166px;
$tooltipHeight : 75.3px;
$tooltipBoxwhadow : 1px 2px 14px 0 rgba(3, 20, 34, 0.08);
$tooltipPrimaryColor : $midnight-1;
$tooltipSecondaryColor : $white;
$tooltipPadding : 10px 15px;
$tooltipBorderRadius : 10px;
$indicatorTopMargin : -8px auto 0;
$indicatorBottomMargin : 0 auto -10px;
$indicatorLeftMargin : 0 -8px 0 0;
$indicatorRightMargin : 0 0 0 -8px;
$tooltipBorderWidth : 25px;
.la_tooltip__background{
  width: $tooltipWidth;
  height: $tooltipHeight;
  box-shadow: $tooltipBoxwhadow;
  padding: $tooltipPadding;
  border-radius: $tooltipBorderRadius;
}
.dark_theme_background{
  background-color: $tooltipPrimaryColor;
}
.light_theme_background{
  background-color: $tooltipSecondaryColor;
}
.dark_theme_color{
  color : $tooltipSecondaryColor;
}
.light_theme_color{
  color : $tooltipPrimaryColor;
}
.dark_theme_top_indicator{
  border-top : $tooltipBorderWidth solid $tooltipPrimaryColor;
}
.light_theme_top_indicator{
  border-top: $tooltipBorderWidth solid $tooltipSecondaryColor;
}
.top_indicator{
  width: 0;
  height: 0;
  margin: $indicatorTopMargin;
  border-left: $tooltipBorderWidth solid transparent;
  border-right: $tooltipBorderWidth solid transparent;
}
.dark_theme_bottom_indicator{
  border-bottom : $tooltipBorderWidth solid $tooltipPrimaryColor;
}
.light_theme_bottom_indicator{
  border-bottom: $tooltipBorderWidth solid $tooltipSecondaryColor;
}
.bottom_indicator{
  width: 0;
  height: 0;
  margin : $indicatorBottomMargin;
  border-left: $tooltipBorderWidth solid transparent;
  border-right: $tooltipBorderWidth solid transparent;
}
.left_indicator{
  width: 0;
  height: 0;
  margin: $indicatorLeftMargin;
  border-top: $tooltipBorderWidth solid transparent;
  border-bottom: $tooltipBorderWidth solid transparent;
}
.dark_theme_left_indicator{
  border-left: $tooltipBorderWidth solid $tooltipPrimaryColor;
}
.light_theme_left_indicator{
  border-left: $tooltipBorderWidth solid $tooltipSecondaryColor;
}
.right_indicator{
  width: 0;
  height: 0;
  margin: $indicatorRightMargin;
  border-top: $tooltipBorderWidth solid transparent;
  border-bottom: $tooltipBorderWidth solid transparent;
}
.dark_theme_right_indicator{
  border-right: $tooltipBorderWidth solid $tooltipPrimaryColor;
}
.light_theme_right_indicator{
  border-right: $tooltipBorderWidth solid $tooltipSecondaryColor;
}
.left_and_right_placement{
  display: flex;
  align-items: center;
}
.flex_order{
  order: 2;
}
