#app, .emptyLayout {
    height: 100%;
}

.vertical-overlay-menu .main-menu .navigation > li > a > i, .vertical-overlay-menu .main-menu .navigation > li > a > i > svg {
    margin-right: 14px;
    float: left;
    -webkit-transition: .2s ease all;
    transition: .2s ease all;
    height: 20px;
    width: 20px;
    opacity: 90%;
}

footer.footer span i, footer.footer span svg {
    height: 16px;
    width: 16px;
    font-size: 16px;
    margin-left: 0px;
    color: #fd2f51;
}

.label-table {
    padding-right: 0px;
    text-align: right;
}

.blockUI {
    z-index: 1000; 
    border: none; 
    margin: 0px; 
    padding: 0px; 
    width: 100%; 
    height: 100%; 
    top: 0px; 
    left: 0px; 
    background-color: rgb(0, 0, 0); 
    opacity: 0.5; 
    cursor:wait; 
    position: fixed;
}
.spinner-border{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
}
.loading {
  opacity: 0.5;
}

.imagewp {
    width: auto;
    max-height: 300px;
}
.imagewp:hover {
    opacity: 0.7;
    cursor: pointer;
  }

.docwp {
    color: white;
    text-decoration: underline;
}
.docwp:hover {
    color: white;
}
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 250, 250, 0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  .modal-content,
  #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {
      transform: scale(0)
    }
  
    to {
      transform: scale(1)
    }
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px) {
    .modal-content {
      width: 100%;
    }
  }