:root {
  --categoric-variables: hsl(216, 100%, 89%);
  --categoric-variables-strong: hsl(216, 100%, 75%);
  --numeric-variables: hsl(91, 100%, 89%);
  --numeric-variables-strong: hsl(91, 100%, 75%);
}

body {
  margin: 0;
  font-family: Azuro;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Azuro;
  font-style: normal;
  font-weight: bold;
  margin: 0 0 0.5em 0;
  line-height: 1.3;
}
h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
}
h4 {
  font-size: 16px;
  text-transform: uppercase;
}
a {
  color: inherit;
}

code,
pre {
  font-family: menlo, inconsolata, monospace;
  font-size: calc(1em - 2px);
  color: #555;
  background-color: #f0f0f0;
  padding: 0.2em 0.4em;
  border-radius: 2px;
  tab-size: 10em;
}

button {
  display: flex;
  flex-direction: row;
  padding: 12px 24px;

  background: #fc4e51;
  border: 2px solid #fc4e51;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  border-radius: 8px;

  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;
  margin: 0.5em 0 0.5em 0.5em;
}

button:disabled {
  background: #bbb;
  border-color: #ddd;
}
button.secondary {
  color: #fc4e51;
  background: transparent;
  border-color: #fc4e51;
  box-shadow: none;
  outline: none;
  display: inline-block;
}
button.borderless {
  margin: 12px 0px;
  cursor: pointer;
  color: #fc4e51;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  outline: none;
  display: inline-block;
}

.buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}

form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

form label {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  margin-bottom: 1em;
}

label span {
  color: rgba(0, 0, 0, 0.5);
}

input[type="number"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  border-radius: 4px;
  width: 132px;
  height: 32px;
  font-size: 15px;
  line-height: 20px;
  text-align: right;
  padding: 0.3em;
  color: rgba(0, 0, 0, 0.85);
}

select {
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  border-radius: 4px;
  width: 289px;
  height: 32px;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  padding: 0.3em;
}
