.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

button {
  cursor: pointer;
}

.button {
  font-family: Roboto, serif;
  box-sizing: border-box;
  height: 36px;
  min-width: 36px;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #212121;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.button-content {
  display: block;
  padding: 0 16px;
}

.icon-left,
.icon-right {
  margin-top: 4px;
}

.iconleft {
  padding-left: 8px;
}

.iconleft .button-content {
  padding-left: 4px;
}

.iconright {
  padding-right: 8px;
}

.iconright .button-content {
  padding-right: 4px;
}

.notext {
  padding: 0 6px;
}

.button:active {
  background: rgba(17, 17, 17, 0.2);
  border: 1px solid #d5d5d5;
}

.blackout {
  background: #363636;
  border: 1px solid #363636;
  color: white;
}

.blackout:active {
  background: #212121;
  border: 1px solid #212121;
}

.primary {
  background: #1479c6;
  border: 1px solid #1479c6;
  color: white;
}

.primary:active {
  background: #1464a2;
  border: 1px solid #1464a2;
}

.borderless {
  background: transparent;
  border: none;
  color: #212121;
}

.borderless:active {
  background: rgba(17, 17, 17, 0.2);
  border: none;
}

.borderless-circle {
  background: transparent;
  border: none;
  color: #212121;
  border-radius: 50%;
}

.borderless-circle:active {
  border: none;
}

.borderless-circle:focus {
  border-color: transparent;
}

.danger {
  background: #dc0000;
  border: 1px solid #dc0000;
  color: white;
}

.danger:active {
  background: #b00000;
  border: 1px solid #b00000;
}

.disabled {
  background: #aeaeae;
  border: none;
  color: #4c4c4c;
  cursor: not-allowed;
}

.disabled:active {
  background: #aeaeae;
  border: none;
  color: #4c4c4c;
  cursor: not-allowed;
}

@media (hover: hover) {
  .button:hover {
    background: rgba(17, 17, 17, 0.1);
    border: 1px solid #d5d5d5;
  }

  .primary:hover {
    background: #146eb3;
    border: 1px solid #146eb3;
  }

  .borderless:hover {
    background: rgba(17, 17, 17, 0.1);
    border: none;
  }

  .borderless-circle:hover {
    background: rgba(17, 17, 17, 0.1);
    border: none;
  }

  .danger:hover {
    background: #c60000;
    border: 1px solid #c60000;
  }

  .disabled:hover {
    background: #aeaeae;
    border: none;
    color: #4c4c4c;
    cursor: not-allowed;
  }

  .blackout:hover {
    background: #212121;
    border: 1px solid #212121;
  }
}
:host {
  display: inline-block;
}

tttx-icon {
  cursor: inherit;
}

.spacingleft {
  margin-left: 8px;
}