:host {
  cursor: pointer;
  position: relative;
  width: 100%;

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

    width: 100%;
    height: 8px;

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

  &:hover {
    .overlay {
      visibility: visible;
    }
  }

  .overlay {
    position: absolute;
    z-index: 600;
    top: -50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 8px;

    width: 300px;
    padding: 10px;

    visibility: hidden;
    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;
      }
    }
  }
}
