.gui-buttons {
  user-select: none;
  background-color: #fff;
}
.gui-buttons-rows > .gui-button,
.gui-buttons-columns > .gui-button {
  height: 44px;
  color: #1470CC;
  background: #fff;
  border: 1px solid #1470CC;
  border-radius: 0;
  flex: 1;
  font-size: 17px;
}
.gui-buttons-rows > .gui-button:last-child,
.gui-buttons-columns > .gui-button:last-child {
  margin-right: 0;
}
.gui-buttons-rows > .gui-button:active,
.gui-buttons-columns > .gui-button:active {
  background-color: #A1C6EB;
}
.gui-buttons-rows .button-primary,
.gui-buttons-columns .button-primary {
  border: none;
  background-color: #1470CC;
  color: #fff;
}
.gui-buttons-rows .button-primary:active,
.gui-buttons-columns .button-primary:active {
  background-color: #116bb9;
}
.gui-buttons-rows .button-warning,
.gui-buttons-columns .button-warning {
  border: none;
  background-color: #ff6400;
  color: #fff;
}
.gui-buttons-rows .button-warning:active,
.gui-buttons-columns .button-warning:active {
  background-color: #CC5000;
}
.gui-buttons-rows .button-error,
.gui-buttons-columns .button-error {
  border: none;
  background-color: #EB2F2F;
  color: #fff;
}
.gui-buttons-rows .button-error:active,
.gui-buttons-columns .button-error:active {
  background-color: #BC2525;
}
.gui-buttons-rows {
  display: flex;
  padding: 15px;
}
.gui-buttons-rows > button {
  margin-right: 10px;
}
.gui-buttons-columns {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.gui-buttons-columns > .gui-button {
  margin-bottom: 10px;
  margin-right: 0;
}
.gui-buttons-columns > .gui-button:last-child {
  margin-bottom: 0;
}
.gui-buttons-small {
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #666;
}
.gui-buttons-small .gui-button {
  font-size: 14px;
  height: 32px;
  background: #fff;
  border-radius: 0;
  border: 1px solid #1674D4 !important;
  color: #333;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 10px;
  flex: inherit;
}
.gui-buttons-small .gui-button:last-child {
  margin-right: 0;
}
.gui-buttons-small .gui-button:active {
  color: #333;
  background: #A1C6EB;
}
