body,
html {
  background: white;
  color: black;
  height: 100%;
}

.app {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.app-content {
  width: 100%;
  height: 94%;
  overflow: hidden;
}

.app-nav {
  width: 100%;
  z-index: 2000;
  background: white;
}

.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

div {
  -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.5s; /* Firefox < 16 */
  -ms-animation: fadein 0.5s; /* Internet Explorer */
  -o-animation: fadein 0.5s; /* Opera < 12.1 */
  animation: fadein 0.5s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

div {
  position: relative;
}

#divLoading {
  height: 100%;
  z-index: 500;
  background: #ffffffad;
  position: absolute;
  width: 100%;
  /* margin-left: 35%; */
  /* margin-top: 40%; */
  text-align: center;
}

.divSidebar {
  overflow: hidden;
}

.sidebar-body {
  overflow: auto;
  height: 100%;
}

#divCenterModal {
  width: 80%;
  height: 60%;
  margin-top: 40%;
  margin-left: 10%;
  position: absolute;
  z-index: 1000;
  background: white;
}

#divBottomSidebar {
  width: 100%;
  height: 95%;
  bottom: 0px;
  position: absolute;
  z-index: 1000;
  background: white;
}

.btnSidebarHidden {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1000;
  font-weight: bolder;
  cursor: pointer;
  font-size: 23px;
  background: #1ca1c5;
  color: white;
  padding-left: 16px;
}

.display-none {
  display: none;
}

.form-control {
  background-color: #1ca1c5;
  font-size: 14px;
}
