html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.button-none {
  border: none;
  background: none;
}

.button-empty {
  display: inline-block;
  width: 28px;
  height: 16px;
}

.link-button {
  text-decoration: none;
  padding: 2px 6px;
  color: black;
}

.field-validation-error {
  color: red;
  font-size: 14px;
}

.required::after {
  content: '*';
  color: red;
}

.image-preview {
  max-height: 300px;
  cursor: pointer;
  display: block;
}

h-100 {
  height: 100%;
}

a.navbar-brand img {
  max-height: 32px;
}

.section-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
  padding: 0;
}

  .section-types li {
    list-style: none;
  }

    .section-types li a {
      display: block;
      text-decoration: none;
      border: 1px solid grey;
      border-radius: 10px;
      padding: 20px 10px;
      text-align: center;
      background-color: #EEE;
    }

      .section-types li a:hover {
        background-color: #DDD;
      }
 