html {
  font-size: 15px; /* Sets 1rem to equal 15px */
}

body {
  font-size: 0.875rem !important; /* Sets the body font size to 0.875rem (13.125px) */
}

/* Works on Firefox */
* {
  scrollbar-color: rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}

.chartHoverable{
  transition: all 300ms cubic-bezier(0.39, 0.58, 0.57, 1);
  transition-property: transform, opacity; 
  will-change: transform, opacity;
  pointer-events: all;
}
.scaleIt{
  transform: scale(1.06);
}

.inactive{
  opacity:0.6;
}
#tooltip, .sunBurstTooltip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  width: 272px;
  height: 114px;
  opacity: 0;
  background-color: white;
  transition: opacity 250ms ease-in-out;
}
#tooltipTitle, .sunBurstTooltipTitle{
margin:0;
text-transform: capitalize;
font-weight: 600;
border-bottom: 1.5px solid #dbdbdb;
}
#tooltipScale, .sunBurstTooltipTitle{
font-size: 0.75rem;
text-transform: capitalize;
}
.fulcrum{
  transition: transform 350ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
