body{
    font-family: Ubuntu, 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 12pt;
    margin: 0;
    position: relative;
}

i{
    transition: .2s all;
    cursor: pointer;
}

input{
    flex: 1;
}

select{
    flex: 1;
}

.preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader img {
	width: 70px; height: 70px;
	background-size: contain;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg) }
}

.pre-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: #fffcfcb0;*/
    z-index: 100;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    font-size: 12pt;
    font-weight: 500;
    background: #0058a3;
    height: 20pt;
    color: white;
}

.modal-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.modal-body {
    padding: 10px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    font-size: 17pt;
    font-weight: 500;
    background: #b5e4ff;
    height: 35pt;
    color: black;
}

.container{
    height: 100vh;
    width: 100vw;
}

.modal-screen {
    position: absolute;
    top:0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 35%);
}

.modal-form{
    background: white;
    overflow: hidden;
    border-radius: 5px;
    /*padding-bottom: 10px;*/
}

.data-list{
    padding: 0;
    margin: 0;
    height: calc(100% - 45pt);
    overflow-y: auto;
}

.data-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*width: 100%;*/
    min-height: 40px;
    height: auto;
    padding: 5px 5px 5px 10px;
    border-bottom: 1px solid #c6e8f1;
}

.data-list-no-items{
    color: #c9c9c9;
    font-size: 20pt;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.data-list li:hover{
    background: #d7efff!important; 
}

.data-list li:nth-child(2n) {
    background: #f6fbff; 
} 

.btn-box {
    display: flex;
    justify-content: center;
}

.mt-10{
    margin-top: 10px;
}

.mb-10{
    margin-bottom: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.file-date{
    font-size: 11px;
    font-weight: 700;
    color: #8e8e8e;
}

button{
    margin: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px #bcbcbc solid;
    cursor: pointer;
    min-width: 80px;
}

button:hover{
    background: white;
}

.org-row {
    display: flex;
    min-width: 300px;
    justify-content: space-between;
    padding: 0 0 10px;
}

.org-row label {
    width: 40%;
}

.pointer {
    cursor: pointer;
}

.org-files{
    font-size: 10pt;
    color: #2083b2;
}

.form-caption{
    font-size: 10pt;
}