* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: rgba(255, 255, 255, 0.767);
  margin: 1rem 0rem 1rem 0;
}

header {
  border-radius: 0.5rem;
  background-color: #005bcb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #FFF;
}

main {
  padding: 0.25rem 0rem 0rem 0rem;
  height: calc(100vh - 95px);
}

.container__schema {
  padding: 1rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.schemaSelection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 2px solid #c4c4c4;
  padding: 0 20px;
}

.schemaSelection a {
  margin-bottom: -2px;
  margin-right: 10px;
  padding: 0rem 0rem;
  min-width: 150px;
  border: 2px solid #c4c4c4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: whitesmoke;
  text-decoration: none;
}

.schemaSelection a:hover, .schemaSelection a:focus {
  background-color: #FFF;
  color: #0097ee;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.schemaSelection a.active {
  background-color: rgba(255, 255, 255, 0.767);
  color: #212529;
  border-bottom: 2px solid rgba(255, 255, 255, 0.767);
}

.schemaSelection__spacer {
  width: 2rem;
}

.container__welcome {
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

section {
  margin: 0.25rem;
  border-radius: 5px;
}

.schema {
  background-color: whitesmoke;
  padding: .5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.schema__description {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-bottom: 1rem;
}

.schema__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.schema__name ul {
  padding: 5px;
}

.schema__name ul > li {
  list-style-type: none;
  padding: .25rem;
  border-bottom: 1px solid #c4c4c4;
}

.schema__name ul > li:hover {
  cursor: default;
  background-color: #c4c4c4;
}

.schema__info {
  visibility: hidden;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.schema h2 {
  border-bottom: 2px solid #c4c4c4;
  margin-bottom: .5rem;
}

.schema__family {
  font-size: 1.25rem;
}

.schema__family__spacer {
  width: 100%;
  border: 1px solid #c4c4c4;
}

.accordeon__collapsed:after {
  display: inline-block;
  /* add this */
  float: right;
  content: "+";
}

.accordeon__expanded:after {
  display: inline-block;
  /* add this */
  float: right;
  content: "-";
}

.entry,
.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: whitesmoke;
  margin: 2px 0;
  padding: 5px;
  border-radius: 3px;
}

.entry__name {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  max-width: 150px;
  text-transform: capitalize;
}

.entry__value {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.field__ID {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  max-width: 150px;
}

.field__type {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.field__description {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

#schema__title {
  padding: 5px 0;
}

#buttonDisplayTable {
  display: none;
}
/*# sourceMappingURL=style.css.map */