.asset-actions {
  display: flex;
  align-items: center;
}

.appModal .asset-actions {
  position: absolute;
  top: 30px;
  left: 30px;
}

.asset-actions-item {
  cursor: pointer;
  padding: 4px;
}

.asset-actions-item-inner {
  width: 225px;
  border-radius: 4px;
}

.asset-actions-item.active {
  background-color: var(--red);
  border-radius: 4px;
}

.asset-actions-item, .asset-actions-item i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.asset-actions-item:not(.active):hover {
  background-color: var(--app-background-box-hover);
}

.asset-actions-text {
  font-size: 0.75rem;
}

.asset-actions-item svg {
  width: 12px;
  height: 12px;
}

.tpsl-dropdown {
  padding: 5px;
  border: 1px solid var(--app-border);
  background: var(--app-background-section);
}

.tpsl-title {
  font-size: 0.85rem;
  padding-right: 15px;
  margin-bottom: 15px;
}

.tpsl-close {
  position: absolute;
  right: 6px;
  top: 6px;
  cursor: pointer;
}

.tpsl-close svg {
  fill: var(--svg-fill);
  width: 8px;
  height: 8px;
}

.tpsl-change-item {
  width: 50%;
}

.tpsl-change-item .label {
  font-size: 1rem;
  padding: 0 !important;
  margin-left: 15px;
  margin-right: 5px;
}

.tpsl-change, .tpsl-change-item {
  display: flex;
  align-items: center;
}

.tpsl-change-item .input-tpsl input {
  width: 60px;
}

.tpsl-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.tpsl-toggle .toggle {
  margin: 0 10px;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 20px;
  border-radius: 5px;
  background-color: var(--checkbox-background);
}

.tpsl-toggle.active .toggle {
  background-color: var(--checkbox-active-background);
}

.tpsl-toggle .toggle-indicator {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
  transition: 0.5s;
  background-color: var(--checkbox-indicator-background);
  border-radius: 3px;
}

.tpsl-toggle.active .toggle-indicator {
  left: calc(100% - 17px);
}

.tpsl-toggle .label {
  font-size: 0.85rem;
  padding: 0;
}

.tpsl-toggle .label-left {
  color: #fff !important;
}

.tpsl-toggle .label-right {
  color: var(--color-disabled) !important;
}

.tpsl-toggle.active .label-left {
  color: var(--color-disabled) !important;
}

.tpsl-toggle.active .label-right {
  color: #fff !important;
}
