/* tooltip */
.customizedTooltip {
  position: relative;
  display: inline-block;
  color: #4a78e2;
  text-decoration: underline;
}

.customizedTooltip .customizedTooltipText {
  visibility: hidden;
  width: 250px;
  background-color: #fff;
  color: #000;
  text-align: left;
  border-radius: 0px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: -30px;
  margin-left: -0px;
  opacity: 0;
  transition: opacity 0.3s;

  font-size: 10px;
  color: #000000;
  text-align: left;
  line-height: 14px;
  background: #ffffff;
  /*box-shadow: 0 0 24px 0 rgba(0,0,0,0.22), 0 24px 24px 0 rgba(0,0,0,0.30);*/
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.22), 0 13px 19px 0 rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}

.customizedTooltip .customizedTooltipText::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 35px;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.customizedTooltip:hover .customizedTooltipText {
  visibility: visible;
  opacity: 1;
}

.mat-tooltip.tooltip_class  {
  background: #F2F2F2;
  box-shadow: -2px -2px 8px 0 rgba(0,0,0,0.20), 2px 2px 8px 0 rgba(0,0,0,0.20)!important; 
  height: 33px !important;
  width: 465px !important;
  font-family: var(--font-inter-regular);
  font-size: 14px;
  color: #000000;
  line-height: 22px;
  font-weight: 400;
  max-width: 100% !important;
  position: relative;
}
/* - tooltip */
