body,
html {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #2c3546;
  background-color: #f8f8fb;
}

.bg-primary-color {
  background-color: #5e40bf;
}

.primary-color {
  color: #5e40bf;
}

.tab-button {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  color: #5d6980;
  margin-right: 24px;
  border-bottom: 1px solid transparent;
  padding-bottom: 16px;
}

.active-tab {
  border-bottom: 1px solid #5e40bf;
  color: #5e40bf;
  font-weight: 600;
}

.sub-heading {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 1.2px;
  color: #495057;
  text-transform: uppercase;
  font-weight: 600;
}

.dotted-line {
  border-bottom: 1px dashed #ccc;
  width: 100%;
}
.part {
  display: grid;
  padding-top: 8px;
  grid-template-columns: max-content 1fr min-content;
  column-gap: 4px;
  line-height: 16px;
}

.hide-dropdown {
  display: none;
}
.show-dropdown {
  display: block;
}

.barParent {
  flex: 1;
  height: 100%;
  border-right: 1px solid #dcdee6;
  display: flex;
  justify-items: center;
  align-items: end;
  z-index: 10;
}

.bar {
  width: 70%;
  margin: 0 auto;
  transition: height 0.5s ease;
}

.channel_active {
  background-color: #5e40bf !important;
  color: white !important;
}

.tooltip {
  position: relative;
}

.tooltip:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background-color: #333;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}

.tooltip:hover:before {
  visibility: visible;
  opacity: 1;
}