/* BRT Customizer - Hot ticket indicator */

.brt-hot-ticket-toggle {
  margin-right: 8px;
  text-decoration: none !important;
}

.brt-hot-ticket-indicator-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  vertical-align: middle;
  box-sizing: border-box;
}

.brt-hot-ticket-indicator-wrap.brt-hot-ticket-style-icon {
  width: 20px;
  min-width: 20px;
}

.brt-hot-ticket-indicator-wrap.brt-hot-ticket-style-coverage {
  width: 20px;
  min-width: 20px;
}

.brt-hot-ticket-indicator {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 14px;
}

.brt-hot-ticket-tooltip {
  position: fixed;
  min-width: 180px;
  max-width: 360px;
  padding: 8px 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  white-space: pre-line;
  text-align: left;
  line-height: 1.35;
  font-size: 12px;
  font-weight: 400;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease;
  z-index: 9999;
}

.brt-hot-ticket-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #cfcfcf;
}

.brt-hot-ticket-tooltip.is-below::after {
  top: auto;
  bottom: 100%;
  border-top: 0;
  border-bottom: 6px solid #cfcfcf;
}

.brt-hot-ticket-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}

.brt-hot-ticket-icon {
  display: inline-block;
  line-height: 1;
}

.brt-hot-ticket-level-cold {
  color: #4f97cf;
}

.brt-hot-ticket-level-warm {
  color: #2fc509;
}

.brt-hot-ticket-level-hot {
  color: #f5f111;
}

.brt-hot-ticket-level-critical {
  color: #f04401;
}

.brt-hot-ticket-level-insufficient {
  color: #8a8f98;
}

.brt-hot-ticket-coverage {
  display: inline-grid;
  grid-template-columns: repeat(4, 3px);
  align-items: end;
  column-gap: 2px;
  width: 18px;
  height: 14px;
}

.brt-hot-ticket-coverage-bar {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #cfd5de;
}

.brt-hot-ticket-coverage-bar-1 {
  height: 5px;
}

.brt-hot-ticket-coverage-bar-2 {
  height: 8px;
}

.brt-hot-ticket-coverage-bar-3 {
  height: 11px;
}

.brt-hot-ticket-coverage-bar-4 {
  height: 14px;
}

.brt-hot-ticket-coverage-bar.is-active {
  background: currentColor;
}
