[btn] {
  height: 43px;
  transition: background .2s ease;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  background: var(--color-primary);
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 3px solid #00000030;
  cursor: pointer;
}

[btn]:active,
[btn]:hover:active {
  border-bottom: 1px solid transparent;
  background-color: var(--color-primary-dark);
  color: white;
  border-color: var(--color-primary-dark);
  border: none;
}

[btn]:hover {
  background-color: var(--color-primary-light);
}

[btn]:disabled,
[btn]:active:disabled {
  border-width: 1px;
  background-color: #d9d9d9 !important;
  border: 1px solid #b9b9b9 !important;
  color: #7e7e7e !important;
  cursor: default;
}

[btn].btn-squad.mini {
  height: 30px;
  border-bottom-width: 3px;
  padding-top: 1px;
  border-radius: calc(var(--border-radius) - 2px);
}

[btn].btn-squad.ativo {
  background-color: #333;
  border-color: #333;
  border-bottom: 1px;
  border-top: 2px solid #1a1a1a;
  color: white;
}

[btn].btn-squad {
  aspect-ratio: 1;
  padding: 0;
  padding-top: 2px;
  text-align: center;
}

[btn="gray"] {
  background-color: #303030;
  border-color: #1e1e1e;
}

[btn="gray"]:not(:disabled):hover {
  background-color: #888;
  color: white !important;
}

[btn="gray"]:active,
[btn="gray"]:hover:active {
  background-color: #404040;
}

[btn="green"] {
  background-color: #19cb38;
  border-color: #14a32c;
}

[btn="green"]:not(:disabled):hover {
  background-color: #1ddc3f;
  color: white !important;
}

[btn="green"]:active,
[btn="green"]:hover:active {
  background-color: #00bb1f;
}


[btn="red"] {
  background-color: #cb1919;
  border-color: #a31414;
}

[btn="red"]:not(:disabled):hover {
  background-color: #dc1d1d;
  color: white !important;
}

[btn="red"]:active,
[btn="red"]:hover:active {
  background-color: #bb0000;
}


[btn="blue"] {
  background-color: #2251f3;
  border-color: #0e2bc9;
}

[btn="blue"]:not(:disabled):hover {
  background-color: #3b67ff;
  color: white !important;
}

[btn="blue"]:active,
[btn="blue"]:hover:active {
  background-color: #001fcc;
}


[btn="orange"] {
  background-color: #f39504;
  border-color: #c36f00;
}

[btn="orange"]:not(:disabled):hover {
  background-color: #ffbb1d;
}

[btn="orange"]:active,
[btn="orange"]:hover:active {
  background-color: #cc9f00;
}

[btn][mini] {
  height: 34px;
  aspect-ratio: 1;
  max-width: 36px;
  width: 36px;
  padding: 0;
}