button,
a.button {
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: var(--border-radius);
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  padding: 6px 12px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  margin: 3px;
  transition: background-color 0.5s, color 0.5s;
  background: #ccc;
  box-shadow: var(--box-shadow);
  white-space: nowrap;
}

button:hover,
a.button:hover {
  filter: brightness(90%);
  text-decoration: none;
}

input[type="submit"] {
  -webkit-appearance: none;
}

button i,
a.button i {
  margin-right: 5px;
}

.info_button {
  font-size: 16px;
  border-style: none;
  outline: none;
  background: none;
  color: var(--body-text-color);
  cursor: help !important;
  transition: 1s;
  box-shadow: none;
}

.info_button:hover {
  color: var(--primary-color);
}

.filter_button {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 6px 10px;
  background: none;
  cursor: pointer;
  color: var(--body-text-color);
  transition: color 0.8s;
}

.no_button_style {
  background: none;
  border: none;
  padding: 0;
  color: var(--body-text-color);
  cursor: pointer;
  box-shadow: none;
}

.form_button {
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  padding: 6px 12px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  margin: 3px;
  background: none;
  background-color: var(--form-background-color);
  color: var(--form-text-color);
  transition: background-color 0.5s, color 0.5s;
  margin: 0;
  border: 1px solid #ccc;
  box-shadow: none;
}

.form_button:hover {
  filter: brightness(90%);
}

button[data-axi="clear_filter"] {
  display: none;
  margin-left: 10px;
}

.icon_button i {
  margin: 0 !important;
}
