.app-nav .nav-icon{
    top: .5rem;
}
.app-nav .submenu-arrow{
    top: .9rem;
}
.app-nav .nav-icon .bi{
    font-size: 1.25rem;
}
.app-nav .nav-item{
    background-color: transparent;
}
.app-nav .submenu-link.active{
    color: #15a362;
}
.bg-secondary .app-nav .nav-link,.bg-secondary .app-nav .submenu-link{
    color: #fff;
}
.bg-secondary .app-nav .nav-link.active {
    color: #15a362;
} 
.app-card .app-icon-holder{
    padding-top: 5px;
}
.app-card .app-icon-holder .bi{
    font-size: 1.5rem;
}
.form-control[type=file]{
    padding-top:.4rem;
    padding-bottom:.4rem;
    height: 2.4rem;
}
.app-auth-wrapper .app-logo .logo-icon{
    width: 200px;
    height: auto;
}
textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 42px);
}
.signature-body{
    height: 350px;
    border: 2px solid rgba(0,0,0,.3);
    background: #fff;
    padding: 20px 20px;
    width: 100%;
    position: relative;
    margin-bottom: 5px;
}
.signature-body canvas{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.loading-indicator{
    position:fixed;left:10px;bottom:10px;
    z-index: 1041;
  }
  .loading-overlay{
    position: fixed;
      top: 0;
      left: 0;
      z-index: 1040;
      width: 100vw;
      height: 100vh;
      background-color: #000;
      transition: opacity .15s linear;
      opacity: .5;
  }
  /* loader-ellips
------------------------- */

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
  }
  
  .loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555;
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
  }
  
  .loader-ellips__dot:nth-child(1),
  .loader-ellips__dot:nth-child(2) {
    left: 0;
  }
  .loader-ellips__dot:nth-child(3) { left: 1.5em; }
  .loader-ellips__dot:nth-child(4) { left: 3em; }
  
  @keyframes reveal {
    from { transform: scale(0.001); }
    to { transform: scale(1); }
  }
  
  @keyframes slide {
    to { transform: translateX(1.5em); }
  }
  
  .loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
  }
  
  .loader-ellips__dot:nth-child(2),
  .loader-ellips__dot:nth-child(3) {
    animation-name: slide;
  }

  .page-load-status {
    display: none;
    padding-top: 20px;
    /* border-top: 1px solid #777; */
    text-align: center;
    color: #777;
}

.table{
  width: 100%!important;
}
.table tr td .dropdown{
  display: inline-block;
}

.img-upload-button{
  width: 180px;
  height: 180px;
  max-width: 100%;
  background-image: url('../images/upload-img.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  cursor: pointer;
}

.dropzone .dz-preview .dz-image {
  width: 207px;
  height: 207px;
}
.dropzone .dz-preview .dz-progress {
  width: 120px;
  margin-left: -60px;
}