.tooltip-container {
  position: fixed;
  width: 120px;
  height: auto;
  background: var(--color-white);
  box-shadow: 7px 10px 20px rgba(30, 33, 48, 0.45);
  border-radius: 8px;
  padding: 10px 4px;
  display: none;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: var(--header-bg-color);
  z-index: 100;
}

.tooltip-container:after {
  content: '';
  position: absolute;
  left: 48px;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid var(--tooltip-arrow-color);
  clear: both;
}

.with-operation.tooltip-container {
  display: flex;
  width: 150px;
}

.with-operation span {
  margin: auto;
}

.tooltip-container.with-operation:after {
  left: 63px;
}

.tippy-tooltip-text-a {
  display: none;
}

/* @media screen and (max-width: 768px) { */
@media screen and (max-width: 1150px) {
  .tippy-tooltip-text-a {
    display: block;
  }
  .tippy-tooltip-text-span {
    display: none;
  }
  /* @media screen and (max-width: 1200px) { */
  .mobile-tooltip {
    position: relative;
    cursor: pointer;
  }

  .tooltip-container div:nth-child(2) {
    color: var(--text-success-color);
  }

  .touch-active.tooltip-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
