h1 { 
  display: block;
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h3 { 
  display: block;
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

a {
  color: #323232;

  cursor: pointer;

  transition: color 0.4s;
}

a:hover {
  color: #ccc;
}

.table-bordered {
  border-collapse: collapse;
}

.table-bordered th {
  padding: 1em;

  background: #0f75bc;
  border: 1px solid #0f75bc;

  color: #fefefe;
}

.table-bordered td {
  padding: 5px;

  border: 1px solid #0f75bc;
}

.input-field {
  width: 30em;

  padding: 0.5em;

  background: transparent;
  border: 0.18em solid #0f75bc;
  border-radius: 0.5em;
  box-shadow: 0em 0.15em 0.15em rgba(0, 0, 0, 0.25);

  color: #0f75bc;
  font-size: 1em;
  font-family: Roboto;
  line-height: 1.5em;

  transition: background 0.4s;
}

.input-field:hover {
  background: #e1f1fd;
}

::placeholder {
  font-family: Roboto;

  opacity: 0.5;
}

.input-field-locked {
  background: #f3f3f3 !important;
  border: 0.18em solid #777;

  color: #777;

  cursor: default;
}

.input-field-wrong {
  border: 0.18em solid #ff3333;

  color: #ff3333;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;

  background: #e1f1fd;
}

textarea {
  resize: vertical;
}

.input-icon-container {
  display: inline-block;

  position: relative;
}

.input-icon {
  position: absolute;
  top: 50%;
  right: 0.5em;

  color: #0f75bc;
  font-size: 1.4em;

  transform: translateY(-50%);
  pointer-events: none;
}

.input-password-eye {
  cursor: pointer;
  pointer-events: initial !important;
}

.button {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;

  padding: 0.5em;
  padding-left: 2em;
  padding-right: 2em;

  background: #0f75bc;
  border: 0.18em solid #0f75bc;
  border-radius: 0.5em;
  box-shadow: 0em 0.15em 0.15em rgba(0, 0, 0, 0.25);

  color: #fefefe;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: 0.15em;

  cursor: pointer;
  user-select: none;

  -webkit-transition-duration: 0.4s;
  transition: background 0.4s, border 0.4s, color 0.4s;
}

.button:hover {
  background: #fefefe;
  color: #0f75bc;
}

.button-action {
  padding: 0.5em !important;
  padding-left: 0.8em !important;
  padding-right: 0.8em !important;

  font-size: 0.7em;
}

.button-disabled {
  background: #777 !important;
  border: 0.18em solid #777 !important;

  color: #fefefe !important;

  pointer-events: none;
}
.button-deselected {
  background: #fff !important;
  color: #1475bc !important;
}

.button-deselected:hover {
  background: #1475bc !important;
  color: #fff !important;
}

.button-save-container {
  margin-top: 2em;
  padding-top: 1em;

  border-top: 0.1em solid #0f75bc;

  text-align: center;
}

.content-container h2 {
  margin-top: 0em;
  margin-bottom: 0.5em;
}

.small-text {
  font-size: 0.8em;
}

.red-background {
  background: #ff3333;
  border: 0.18em solid #ff3333;
}

.red-background:hover {
  color: #ff3333;
}

.orange-background {
  background: #e2923e;
  border: 0.18em solid #e2923e;
}

.orange-background:hover {
  color: #e2923e;
}

.flashMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 1em;

  background-color: palegreen;
  border: 0.1em solid green;
  border-radius: 0.5em;
  opacity: 0.8;
  transform: translate(-50%, -50%);

  color: green;
  text-align: center;
  line-height: 1.25em;

  z-index: 99;

  -webkit-animation: moveLeft 1s forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-delay: 3s;
  animation: moveLeft 1s forwards;
  animation-iteration-count: 1;
  animation-delay: 3s;
}

@keyframes moveLeft {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    left: -100em;
  }
}
