:host {
  pointer-events: none;
  position: relative;
  width: 100%;

  .has-hint {
    pointer-events: all;
    cursor: pointer;
  }

  .wrapper {
    overflow: hidden;
    display: flex;
    gap: 1px;

    width: 100%;
    height: 8px;

    background-color: var(--color-gray-eee);
    border-radius: 4px;
  }
}

.overlay {
  display: flex;
  flex-direction: column;
  gap: 8px;

  width: 300px;
  padding: 10px;

  color: var(--color-gray-222);

  background-color: var(--color-gray-fff);
  filter: drop-shadow(0 1px 5.8px rgb(0 0 0 / 18%));
  border-radius: 2px;

  transition-delay: 0.3s;

  .title {
    margin-bottom: 6px;
    font-weight: bold;
  }

  .entry {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .count {
      display: flex;
      align-items: center;
      justify-content: center;

      height: 16px;
      padding: 0 8px;

      border-radius: 8px;
    }
  }
}
