﻿.td-graph-frame {
  display: flex;
  padding: 16px;
  width: fit-content;
  align-self: stretch;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 12px;
  border-radius: 6px;
  background-color: var(--White-900, #FFF);
}

.td-graph-text-frame {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.td-graph-content-frame {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.td-graph-number-frame {
  display: flex;
  padding-top: 8px;
  align-items: center;
  justify-content:space-between;
  gap: 8px;
}

.td-graph-content {
  display: flex;
  height: 48px;
  align-items: flex-end;
  gap: 2px;
  flex: 1 0 0;
}

.td-graph-content-bar {
  width: 14px;
  position: relative;
  flex: 1 0 0;
  bottom: 0;
}

  .td-graph-content-bar .hover-text {
    visibility: hidden;
    padding: 0.25em 0.5em;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    border-radius: 0.25em;
    white-space: nowrap;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 100%;
    transition-property: visibility;
    transition-delay: 0s;
  }

  .td-graph-content-bar:hover .hover-text {
    visibility: visible;
    transition-delay: 0.3s;
  }

.td-graphs-frame {
  display: flex;
  align-items: flex-start;
  align-content: center;
  justify-content: center;
  gap: 24px;
  align-self: stretch;
  flex-wrap: wrap;
}