html,
body {
  height: 100%;
  background-color: #b9c0c5;
  font-family: 'Montserrat', sans-serif;
}

/*div.container-fluid {
    padding: 0px;
}*/

div.header {
  position: fixed;
  z-index: 101;
  background-color: #222222;  
  border-bottom: 1px solid #fff;
  height: 50px;
  width: 100%;
  margin-right: -15px;
  margin-left: -15px;
}

div.icon {
    width: 50px;
}

div.header .row {
    height: 50px;
}
div.header .headerItem {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 15px;
}
div.header .headerItem div.menu {
  display: inline-block;
  float:left;
}

div.header .headerItem .profile {
    position: relative;
    width: 200px;
    float:right;
    height: 50px;
    display: inline-block;
    color: #fff;
    border-right: 1px solid #a0a0a0;
    line-height: 50px;
    padding: 0 10px;
}

div.header ul.headerItem li.profile a {
    cursor: pointer;
}

div.header .headerItem .menu {
    border-right: 1px solid #a0a0a0;
}

div.header .headerItem .menu a {
    display: inline-block;
    line-height: 50px;
}

div.header .headerItem .icon a {
    width: 50px;
    color: white;
    text-align: center;
    font-size: 125%;
}

div.header .headerItem .profile ul {
    top: 50px;
    right: 0;
    left: auto;
    width: 210px;
}

div.header .headerItem div a.menu:hover {
  background-color: #fff;
  color: #000;
}

div.header .headerItem .breadcrumb {
  text-align: left !important;
  background-color: inherit;
  font-size: 125%;
  margin-bottom: 0px;
  color: white;
  padding: 0px 15px;
}

div.header .headerItem .header-center {
  position: relative;
  width: calc(100% - 250px);
  height: 50px;
  float: left;
}

div.header .headerItem .breadcrumb > li:first-child.active {
  height: 50px;
  align-items: center;
  display: flex;
}

.header-center button {
  background-color: #2a2a2a;
  border: solid 1px grey;
  color: white;
  outline: none;
  margin: 0px 10px;
}

.header-center button:hover {
  background-color: #393939;
  color: white;;
}

.header-center button:focus {
  background-color: #393939;
  color: white;;
  outline: none;
}

#navPageButtons {
  position: absolute;
  right: 9px;
  top: 0px;
  height: 50px;
  display: flex;
  align-items: center;
}

div.body {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
}
div.body div.content {
  padding-right: 15px;
}
div.mainmenu {
  position: fixed;
  top: 50px;
  bottom: 0;
  left: -310px;
  visibility: hidden;
  width: 310px;
  height: 100%;
  z-index: 5;
  -moz-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
  background-color: #222222;
}
div.mainmenu.show {
  visibility: visible;
  left: 0;
}
div.mainmenu h1 {
  color: #fff;
  text-shadow: 1px 1px 5px #000;
  margin: 0 0 0 7px;
}
div.mainmenu ul {
  padding: 0;
  cursor: pointer;
}

div.mainmenu ul li:first-child {
  border-top: 1px solid #fff;
}
div.mainmenu ul li {
  list-style-type: none;
  border-bottom: 1px solid #fff;
}
div.mainmenu ul li a {
  display: block;
  color: #fff;
  height: 50px;  
  line-height: 50px;
  padding-left: 25px;
}
div.mainmenu ul li a:hover {
  color: #FFF;
  background-color: #000;
  text-decoration: none;
}
div.mainmenu ul li a i {
  width: 20px;
  margin-right: 5px;
}

.listItem {
  position: relative;
  display: block;
  min-height: 26px;
    -moz-animation: slideOut 0.3s forwards;
  -o-animation: slideOut 0.3s forwards;
  -webkit-animation: slideOut 0.3s forwards;
  animation: slideOut 0.3s forwards;
}
.listItem:hover{
  -moz-animation: slideIn 0.3s forwards;
  -o-animation: slideIn 0.3s forwards;
  -webkit-animation: slideIn 0.3s forwards;
  animation: slideIn 0.3s forwards;
}

.verticalCenter {
    display: flex !important;
    margin: auto;
    justify-content: center;
    align-items: center;
}

#pApiVersion {
  position: absolute;
  color: white;
  bottom: 50px;
  right: 15px;
  font-size: 1.3em;
}