.tbp-container {
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: transform 0.3s ease;
}

/* Класс для скрытия только кнопки */
.tbp-container.only-arrow {
  pointer-events: none; /* вся обёртка не мешает */
}

.tbp-container.only-arrow .tbp-toggle-arrow {
  pointer-events: auto; /* но стрелка работает */
}

.tbp-container.only-arrow .tbp-action-button {
  transform: translateX(-200px);
  opacity: 0;
  pointer-events: none;
}

.tbp-toggle-arrow {
  cursor: pointer;
  display: flex;
  background-color: #080c0e;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  transition: transform 0.3s ease;
  user-select: none;
  justify-content: center;
  align-items: center;
  border: 0;
}

.tbp-toggle-arrow.rotated {
  transform: rotate(495deg);
}

.tbp-action-button {
  margin-left: 10px;
  background-color: #080c0e;
  color: #fff;
  padding: 5px 27px;
  height: 50px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.3s ease;
  border: 0;
}

.getstarted-arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.getstarted-button-icon {
  margin-left: 13px;
}

.tbp-toggle-arrow:hover, .tbp-action-button:hover {
  background-color: #1659ee;
}