#navbar {
  position: fixed;
  width: 14%;
  height: 100%;
}
#navbar .nav-bar-mobile {
  display: none;
}
#navbar .nav-bar-visible {
  height: 100%;
}
#navbar .nav-bar-visible .nav-bar-list {
  background-color: #383838;
  height: 100%;
  list-style: none;
  padding-left: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
#navbar .nav-bar-visible .nav-bar-list .nav-bar {
  background-color: #383838;
  height: 50px;
  width: 100%;
  text-align: center;
  line-height: 50px;
}
#navbar .nav-bar-visible .nav-bar-list .nav-bar:hover {
  background-color: purple;
}
#navbar .nav-bar-visible .nav-bar-list .nav-bar a {
  display: block;
  text-decoration: none;
  color: #ffffff;
}
#navbar .nav-bar-visible .nav-bar-list .nav-bar a:hover {
  color: #ffffff;
}

#header {
  margin-left: 14%;
  width: 86%;
  background-color: #383838;
  height: 50px;
  line-height: 50px;
}
#header .header-button {
  display: inline-block;
  width: 200px;
  text-align: center;
}
#header .header-button a {
  text-decoration: none;
  display: block;
  color: #ffffff;
}
#header .header-button:hover {
  background-color: purple;
}

#footer {
  margin-left: 14%;
  width: 86%;
}

#content {
  margin-left: 14%;
  width: 86%;
  padding: 15px;
}

@media (max-width: 768px) {
  #navbar {
    width: 100%;
    position: relative;
    margin: 0;
  }
  #navbar .nav-bar-visible {
    display: none;
  }
  #navbar:hover .nav-bar-visible {
    display: block;
  }
  #navbar .nav-bar-mobile {
    display: block;
    color: #ffffff;
    height: 40px;
    line-height: 38px;
    background-color: #383838;
    text-align: center;
  }
  #navbar .nav-bar-mobile:hover .nav-bar-visible {
    display: block;
  }

  #content {
    margin-left: 0px;
    width: 100%;
  }
}
.bold {
  font-weight: bold;
}

.left-float {
  float: left !important;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.select-type .type-parent {
  font-weight: 900;
  font-style: italic;
}
.select-type .type-sub-parent {
  font-weight: 600;
  font-style: italic;
}

.mg-l-50 {
  margin-left: 50px;
}

.mg-r-10 {
  margin-right: 10px;
}

.mg-r-20 {
  margin-right: 20px;
}

.mg-r-50 {
  margin-right: 50px;
}

.mg-lr-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mg-t-15 {
  margin-top: 15px;
}

.mg-t-20 {
  margin-top: 20px;
}
