.wide-modal-window .modal-dialog {
  width: 95vw;
}
.medium-modal-window .modal-dialog {
  width: 60vw;
}
.small-modal-window .modal-dialog {
  width: 40vw;
}
.login-container {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  background-image: url('../images/loginbackground.png');
  animation-name: MOVE-BG;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes MOVE-BG {
   from {
     transform: scale(100%);
   }
   to {
     transform: scale(110%);
   }
}
.login-panel {
  z-index: 2;
  border-radius: 1em;
  opacity: 0.8;
}
input.login {
  font-size: 20px;
  text-align:center;
  border-radius: 10px;
  height: 40px;
}
.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    width: 100%;
    text-align: center;
    padding: 25px;
}
.dragover {
    border: 5px dashed blue;
}
.panel-dropbox {
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100%' width='100%'><text x='50%' y='70%' text-anchor='middle' fill='gray' font-size='50' fill-opacity='30%'>Drop Files Here to Add</text></svg>");
}
.table-hover > tbody > tr.select-row:hover > td,
.bg-primary > td {
  background-color: #428bca !important;
  color: white;
}
.bg-primary {
  background-color: #428bca !important;
  color: white;
}
.bg-warning > td {
  background-color: #f0ad4e !important;
  color: white;
}
.bg-warning {
  background-color: #f0ad4e !important;
  color: white;
}
.bg-danger {
  background-color: #843534 !important;
  color: white;
}
.bg-info {
  background-color: #5bc0de !important;
  color: white;
}
.table-hover > tbody > tr.select-row:hover > td,
.bg-dark > td {
  background-color: silver !important;
  color: white;
}
.bg-dark {
  background-color: silver !important;
  color: white;
}
.vgap {
  margin-top: 5px;
}
.vvgap {
  margin-top: 10px;
}
.hgap {
  margin-right: 5px;
}
#main-view {
  height: 100%;
  max-height: 100%;
}
#home-panel {
  height: calc( 100vh - 40px - 30px);
}
#tree-header {
  padding-top: 0px;
  padding-bottom: 0px;
  height: 40px;
}
#document-panel {
  height: 50vh;
  margin-bottom: 5;
}
#document-header {
  padding-top: 0px;
  padding-bottom: 0px;
  height: 40px;
}
#tree-body {
  height: calc( 100vh - 40px - 30px - 40px );
  overflow: auto;
}
#document-tab {
  //background-color: green;
  height: calc( 50vh - 40px - 30px - 10px );
}
.override {
  text-decoration: line-through;
}
.btn-sm {
  padding: 1px 10px;
}
.btn-tiny {
  padding: 0px 8px;
  font-size: 12px;
}
.btn-gap {
  margin-bottom: 3px;
}
.btn-outline {
  background-color: white;
  border-color: gray;
  color: black;
}
.full-height {
  height: calc( 100vh - 100px );
  overflow-y: auto;
}
.half-height {
  height: calc( 50vh - 100px );
  overflow-y: auto;
}
.bottom-half-height {
  height: calc( 50vh );
  overflow-y: auto;
}
.pointer {
  cursor: pointer;
}
.pointer span:hover {
  color: #333 !important;
}
.strike-through {
  text-decoration: line-through;
}
form {
  > input[type="text"],
  > input[type="email"],
  > input[type="search"],
  > input[type="password"] {
    &:invalid {
      background-color: #f0ad4e !important;
	}
  }
}
input.ng-invalid {
  background-color: #f0ad4e !important;
}
.email-block {
  background-color: beige;
  padding: 10px;
}
.drag {
  background-color: blue;
}
.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
}
.overlay {
  background-color: silver;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.no-padding {
  padding: 0px;
}
