.navbar-selected {
  background-color: #fff;
  box-shadow: 0 3px 17px rgba(0,0,0,0.2);
  border-top: 5px solid rgba(0, 169, 246, .80);
}

.sidebar-selected {
  border-left: 5px solid rgba(0, 169, 246, .80)!important;
}

#main > div > ul {
  color: #999;
  font-size: 1.1em;
  font-weight: 300;
}

.imageGuide {
  height: auto!important;
}

#side a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

#navbar-doc a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.scroll {
  white-space: nowrap;
  overflow-x: scroll;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

@media (max-width: 768px) {
  .col-side {
    display: none;
  }
}

.div-side {
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll::-webkit-scrollbar {
  display: none;
}

.documentationAnchor {

  cursor: pointer;

}

.documentationAnchor i.fa.fa-link {

  color: #e6e6e6;
  font-size: 2.0rem;

}

.esitoCopy {

  font-size: 0.7rem;

}

#button {
  display: inline-block;
  background-color: #00296b;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}