:root {
  --color-cpr-blue: rgb(69, 69, 148);
  --color-cpr-purple: blueviolet;
  --color-cpr-gray: lightgrey;
}

body {
  font-size: 12px;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: inherit;
  margin: initial;
  padding: initial;
  font-size: inherit;
  font-family: inherit;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  transition: background-color 100ms
}

button:active, button:hover {
  background-color: red;
  box-shadow: 2px 2px rgba(0, 0, 0, .1);
}

input {
  border: none;
  background: white;
  border-radius: 3px;
  margin: 0;
  padding: 2px 6px;
}

input, label {
  font-size: inherit;
}

.input-group {
  padding: 2px;
}

.input-group > label {
  margin-right: 6px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 1 auto;
}

.column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 0 1 auto;
}

.no-wrap {
  flex-wrap: nowrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content:space-between;
}

.items-center {
  align-items: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.absolute-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.grow {
  flex-grow: 1;
}

.col-shrink {
  height: auto;
  max-height: 100%;
  min-height: 0;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-x-sm {
  margin-left: 6px;
  margin-right: 6px;
}
.margin-x-md {
  margin-left: 10px;
  margin-right: 10px;
}
.margin-x-lg {
  margin-left: 14px;
  margin-right: 14px;
}
.margin-x-xl {
  margin-left: 18px;
  margin-right: 18px;
}
.margin-y-sm {
  margin-top: 6px;
  margin-bottom: 6px;
}
.margin-y-md {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-y-lg {
  margin-top: 14px;
  margin-bottom: 14px;
}
.margin-y-xl {
  margin-top: 18px;
  margin-bottom: 18px;
}

.text-center {
  text-align: center;
}

.text-warning {
  color: red;
  font-weight: 600;
}

.scroll {
  overflow: scroll;
}

button {
  color: white;
  height: 2em;
  padding: .2em .8em;
  border-radius: .3em;
  font-weight: 600;
  background-color: var(--color-cpr-purple);
}


.font-weight-normal {
  font-weight:normal;
}

.font-smaller {
  font-size: 0.5em;
}
