:root {
  --base-ajax-background-opacity: 0.65;
}

.module-container{
    width:100%;
    height:100%;
    min-height:100%;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: -webkit-flex; /* For Safari */
    -webkit-justify-content: center; /* For Safari */
    -webkit-align-items: center; /* For Safari */
}

.vertical-align {
    display: flex;
    align-items: center;
}

 /* Ajax Disable */
.page-content.disabled {
    pointer-events: none;
    opacity: var(--base-ajax-background-opacity);
}
#loading {
    position: fixed;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    z-index: 999;
    background: #fff;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

textarea {
    max-width: 100%; 
    max-height: 100%;
}

.table th, .table td {
    /*padding: 0.75rem;*/
    vertical-align: top;
    
    border-top: thin solid black;
    border-bottom: thin solid black;
}


tr {
    border: thin solid black; 
}

th {
    border: thin solid black;
}

td {
    border: thin solid black; 
}

.autoresize {  
    overflow:hidden;
    resize: both;
}