.toolbar_button {
  display: flex;
  height: 30px;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 5px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.button_toolbar {
  display: flex;
}

/* All Blue buttons - general buttons */

.button_blue {
  background: #0082fa;
}

.button_blue:hover {
  background: #0473db;
}

.button_blue:active {
  background: #03488a;
}

/* Red Buttons - Critical buttons */

.button_red {
  background: #de354a;
}

.button_red:hover {
  background: #d42c3f;
}

.button_red:active {
  background: #c02a3b;
}

/* Green button - commit buttons  */

.button_purple {
  background: #aa3f9c;
}

.button_purple:hover {
  background: #97358a;
}

.button_purple:active {
  background: #77266c;
}

/* Green button - commit buttons  */

.button_green {
  background: #009578;
}

.button_green:hover {
  background: #008168;
}

.button_green:active {
  background: #006e58;
}

.button__text {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  height: 100%;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  color: #fff;
  height: 100%;
  font-size: 15px;
  background: rgba(97, 15, 15, 0.08);
}
