.simulator-content-box {
  max-width: 300px;
  max-height: 100px;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 12px;
}

.bs-common-tooltip {
  position: absolute;
  z-index: 1500;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 20px;
}

.bs-common-tooltip-hidden {
  display: none;
}

.bs-common-tooltip-placement-top,
.bs-common-tooltip-placement-topLeft,
.bs-common-tooltip-placement-topRight {
  padding: 5px 0 9px 0;
}

.bs-common-tooltip-placement-right,
.bs-common-tooltip-placement-rightTop,
.bs-common-tooltip-placement-rightBottom {
  padding: 0 5px 0 9px;
}

.bs-common-tooltip-placement-bottom,
.bs-common-tooltip-placement-bottomLeft,
.bs-common-tooltip-placement-bottomRight {
  padding: 9px 0 5px 0;
}

.bs-common-tooltip-placement-left,
.bs-common-tooltip-placement-leftTop,
.bs-common-tooltip-placement-leftBottom {
  padding: 0 9px 0 5px;
}

.bs-common-tooltip-inner {
  padding: 4px 10px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: #33383D;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
}

.bs-common-tooltip-inner .content-box {
  max-width: 300px;
  max-height: 100px;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 12px;
}

.bs-common-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.bs-common-tooltip-placement-top .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-topLeft .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-topRight .bs-common-tooltip-arrow {
  bottom: 4px;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #33383D;
}

.bs-common-tooltip-placement-top .bs-common-tooltip-arrow {
  left: 50%;
}

.bs-common-tooltip-placement-topLeft .bs-common-tooltip-arrow {
  left: 15%;
}

.bs-common-tooltip-placement-topRight .bs-common-tooltip-arrow {
  right: 15%;
}

.bs-common-tooltip-placement-right .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-rightTop .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-rightBottom .bs-common-tooltip-arrow {
  left: 4px;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #33383D;
}

.bs-common-tooltip-placement-right .bs-common-tooltip-arrow {
  top: 50%;
}

.bs-common-tooltip-placement-rightTop .bs-common-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}

.bs-common-tooltip-placement-rightBottom .bs-common-tooltip-arrow {
  bottom: 15%;
}

.bs-common-tooltip-placement-left .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-leftTop .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-leftBottom .bs-common-tooltip-arrow {
  right: 4px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #33383D;
}

.bs-common-tooltip-placement-left .bs-common-tooltip-arrow {
  top: 50%;
}

.bs-common-tooltip-placement-leftTop .bs-common-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}

.bs-common-tooltip-placement-leftBottom .bs-common-tooltip-arrow {
  bottom: 15%;
}

.bs-common-tooltip-placement-bottom .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-bottomLeft .bs-common-tooltip-arrow,
.bs-common-tooltip-placement-bottomRight .bs-common-tooltip-arrow {
  top: 4px;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #33383D;
}

.bs-common-tooltip-placement-bottom .bs-common-tooltip-arrow {
  left: 50%;
}

.bs-common-tooltip-placement-bottomLeft .bs-common-tooltip-arrow {
  left: 15%;
}

.bs-common-tooltip-placement-bottomRight .bs-common-tooltip-arrow {
  right: 15%;
}

.bs-common-tooltip.bs-common-tooltip-zoom-enter,
.bs-common-tooltip.bs-common-tooltip-zoom-leave {
  display: block;
}

.bs-common-tooltip-zoom-enter,
.bs-common-tooltip-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-play-state: paused;
}

.bs-common-tooltip-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-play-state: paused;
}

.bs-common-tooltip-zoom-enter.bs-common-tooltip-zoom-enter-active,
.bs-common-tooltip-zoom-appear.bs-common-tooltip-zoom-appear-active {
  animation-name: rcToolTipZoomIn;
  animation-play-state: running;
}

.bs-common-tooltip-zoom-leave.bs-common-tooltip-zoom-leave-active {
  animation-name: rcToolTipZoomOut;
  animation-play-state: running;
}

@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}

@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }

  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
