/* stylelint-disable selector-class-pattern */
.guns-tooltip {
  --tooltip-theme-bg-color: var(--bgColor6);
  --tooltip-theme-font-color: #ffffff;
  --tooltip-theme-min-width: 2em;
  --tooltip-theme-min-height: 2em;
  --tooltip-theme-max-width: 250px;
  --tooltip-theme-max-hegiht: fit-contnet;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.guns-tooltip__content {
  position: absolute;
  z-index: 1;
  padding: 8px 12px;
  width: -moz-max-content;
  width: max-content;
  min-width: var(--tooltip-theme-min-width);
  max-width: var(--tooltip-theme-max-width);
  min-height: var(--tooltip-theme-min-height);
  max-height: var(--tooltip-theme-max-hegiht);
  font-size: 14px;
  line-height: 1.57;
  border-radius: 4px;
  text-align: start;
  color: var(--tooltip-theme-font-color);
  background-color: var(--tooltip-theme-bg-color);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
  word-wrap: break-word;
}
.guns-tooltip .top {
  top: 0;
  left: 50%;
  translate: -50% calc(-100% - 1em);
}
.guns-tooltip .topLeft {
  top: 0;
  left: 0;
  translate: 0 calc(-100% - 1em);
}
.guns-tooltip .topRight {
  top: 0;
  right: 0;
  translate: 0 calc(-100% - 1em);
}
.guns-tooltip .bottom {
  bottom: 0;
  left: 50%;
  translate: -50% calc(100% + 1em);
}
.guns-tooltip .bottomLeft {
  bottom: 0;
  left: 0;
  translate: 0 calc(100% + 1em);
}
.guns-tooltip .bottomRight {
  right: 0;
  bottom: 0;
  translate: 0 calc(100% + 1em);
}
.guns-tooltip .left {
  top: 50%;
  left: 0;
  translate: calc(-100% - 1em) -50%;
}
.guns-tooltip .leftTop {
  top: 0;
  left: 0;
  translate: calc(-100% - 1em) 0;
}
.guns-tooltip .leftBottom {
  bottom: 0;
  left: 0;
  translate: calc(-100% - 1em) 0;
}
.guns-tooltip .right {
  top: 50%;
  right: 0;
  translate: calc(100% + 1em) -50%;
}
.guns-tooltip .rightTop {
  top: 0;
  right: 0;
  translate: calc(100% + 1em) 0;
}
.guns-tooltip .rightBottom {
  right: 0;
  bottom: 0;
  translate: calc(100% + 1em) 0;
}
.guns-tooltip__arrow {
  position: absolute;
  width: 1em;
  height: 1em;
  background-color: inherit;
  clip-path: polygon(50% 50%, 0 0, 100% 0);
}
.guns-tooltip .top .guns-tooltip__arrow {
  bottom: 1px;
  clip-path: polygon(50% 50%, 0 0%, 100% 0);
  transform: translateY(100%);
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
.guns-tooltip .topLeft .guns-tooltip__arrow {
  bottom: 1px;
  clip-path: polygon(50% 50%, 0 0%, 100% 0);
  transform: translateY(100%);
  left: 12px;
}
.guns-tooltip .topRight .guns-tooltip__arrow {
  bottom: 1px;
  clip-path: polygon(50% 50%, 0 0%, 100% 0);
  transform: translateY(100%);
  right: 12px;
}
.guns-tooltip .bottom .guns-tooltip__arrow {
  top: 1px;
  clip-path: polygon(50% 50%, 0 100%, 100% 100%);
  transform: translateY(-100%);
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
}
.guns-tooltip .bottomLeft .guns-tooltip__arrow {
  top: 1px;
  clip-path: polygon(50% 50%, 0 100%, 100% 100%);
  transform: translateY(-100%);
  left: 12px;
}
.guns-tooltip .bottomRight .guns-tooltip__arrow {
  top: 1px;
  clip-path: polygon(50% 50%, 0 100%, 100% 100%);
  transform: translateY(-100%);
  right: 12px;
}
.guns-tooltip .left .guns-tooltip__arrow {
  right: 1px;
  clip-path: polygon(50% 50%, 0 100%, 0% 0);
  transform: translateX(100%);
  top: 50%;
  transform: translateX(100%) translateY(-50%);
}
.guns-tooltip .leftTop .guns-tooltip__arrow {
  right: 1px;
  clip-path: polygon(50% 50%, 0 100%, 0% 0);
  transform: translateX(100%);
  top: 12px;
}
.guns-tooltip .leftBottom .guns-tooltip__arrow {
  right: 1px;
  clip-path: polygon(50% 50%, 0 100%, 0% 0);
  transform: translateX(100%);
  bottom: 12px;
}
.guns-tooltip .right .guns-tooltip__arrow {
  left: 1px;
  clip-path: polygon(50% 50%, 100% 100%, 100% 0);
  transform: translateX(-100%);
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}
.guns-tooltip .rightTop .guns-tooltip__arrow {
  left: 1px;
  clip-path: polygon(50% 50%, 100% 100%, 100% 0);
  transform: translateX(-100%);
  top: 12px;
}
.guns-tooltip .rightBottom .guns-tooltip__arrow {
  left: 1px;
  clip-path: polygon(50% 50%, 100% 100%, 100% 0);
  transform: translateX(-100%);
  bottom: 12px;
}
.guns-popover.guns-tooltip {
  --tooltip-theme-bg-color: var(--bgColor5);
  --tooltip-theme-font-color: rgb(var(--gray));
  --tooltip-theme-min-width: 150px;
}
.guns-popover__title {
  padding: 8px 4px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.guns-popover__content {
  padding: 8px 4px;
  text-align: justify;
  font-size: 14px;
  line-height: 1.57;
  color: rgba(var(--gray), 0.72) !important;
}
