.lock-tooltip {
  position: relative;
  cursor: pointer;
}

.lock-tooltip .tooltip-text {
  position: fixed;
  width: 112px;
  height: auto;
  background: var(--color-bg3, #ffffff);
  box-shadow: 7px 10px 20px rgba(30, 33, 48, 0.45);
  border-radius: 8px;
  padding: 10px 0px;
  display: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: var(--header-bg-color, #0c0d11);
  z-index: 10000;
}

.tooltip-text div:nth-child(2) {
  color: var(--color-dark-green, #3aac4c);
}

.tooltip-text: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, #e6e6e6);
  clear: both;
}

.lock-tooltip.hover_active .tooltip-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tooltip-container {
  position: fixed;
  width: 120px;
  height: auto;
  background: var(--color-bg3, #ffffff);
  box-shadow: 7px 10px 20px rgba(30, 33, 48, 0.45);
  border-radius: 8px;
  padding: 10px 4px;
  display: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: var(--header-bg-color, #0c0d11);
  z-index: 10000;
}

.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, #e6e6e6);
  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;
}

.tippy-root {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
}

.tippy-box {
  position: relative;
  width: 112px;
  height: auto;
  background: var(--table-sec-background);
  box-shadow: 7px 10px 20px rgba(30, 33, 48, 0.45);
  border-radius: var(--rounded-lg);
  padding: 10px 0;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--color-text);
}

.tippy-box[data-state="hidden"] {
  visibility: hidden;
}

.tippy-arrow {
  color: white;
}

.tippy-arrow::before {
  color: var(--table-sec-background);
}

.tippy-content {
  text-align: center;
  border-bottom: none !important;
  padding: 0;
  font-size: 12px;
}

.search-results-table .tippy-box {
  width: auto;
  padding: 10px 7px;
  font-size: 12px;
  color: var(--header-bg-color);
}

.sub-rows-content .tippy-box {
  display: none;
}

.tippy-box[data-theme~="mdo-tooltip"] {
  padding: 8px 10px;
  font-size: 12px;
  line-height: 14px;
  background: var(--table-sec-background, #fafafa);
  color: var(--text-color, #000000);
}

.tippy-box[data-theme~="mdo-tooltip"]>.tippy-arrow {
  color: var(--table-sec-background, #fafafa);
  filter: drop-shadow(0 3px 6px var(--tippy-shadow, rgba(30, 33, 48, 0.451)));
}

.tippy-box[data-theme~="mdo-tooltip"]>.tippy-arrow::before {
  color: inherit;
}

.tippy-box[data-theme~="mdo-tooltip"] .tippy-content {
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tippy-box[data-theme~="trial-username-tooltip"] .tippy-content {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tippy-box[data-theme~="mdo-tooltip"][data-theme~="error"] {
  background: #ffecec;
  color: #7d1d1d;
}

.tippy-box[data-theme~="mdo-tooltip"][data-theme~="success"] {
  background: #eaf8ee;
  color: #1d6b2f;
}

@media screen and (max-width: 1150px) {
  .lock-tooltip.hover_active .tooltip-text {
    display: none;
  }

  .tippy-tooltip-text-a {
    display: block;
  }

  .tippy-tooltip-text-span {
    display: none;
  }

  .mobile-tooltip {
    position: relative;
    cursor: pointer;
  }

  .tooltip-container div:nth-child(2) {
    color: var(--color-dark-green, #3aac4c);
  }

  .touch-active.tooltip-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sub-rows-content .tippy-box {
    display: block;
  }
}
