.tp-wrapper {
  position: relative;
  display: inline-block;
}

/* Компактный инпут */
.tp-input {
  width: 100%;
  min-width: 70px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--white3);
  background: transparent;
  color: var(--white2);
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  box-sizing: border-box;
}

.tp-input:hover {
  border-color: var(--dslite);
}

.tp-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: max-content;
  min-width: 120px;

  max-height: 230px;
  overflow-y: auto;

  background: #141414;
  border: 1px solid var(--white3);
  border-radius: 8px;
  padding: 6px 0;
  z-index: 100;
}

.tp-item {
  padding: 8px 12px;
  cursor: pointer;
  color: var(--white2);
}

.tp-item:hover {
  background: var(--white05);
}

.tp-item.active {
  background: var(--dslite);
  color: white;
}
