html {
    filter: hue-rotate(90deg);
}
body{
    display:flex;
    margin:0px;
    padding: 0px;
    width:auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    --black: #2B2B2B;
    --white: #ffffff;
    --grey: #666666;
    --lightGrey: #eeeeee;
    --blueGrey: #cbd7e4;
    --blue:#92C1EF;
    --lightBlue:#B6D9EF;
    --darkBlue:#789AC4;
    --darkestBlue:#5a7393;
    --green:#92ef92;
    --darkGreen:#529086;
    --yellow:#efe792;
    --red:#ef9292;
    --darkRed:#9a4040;
    --pink:#ffe0e5;
    --pay:#c4788b;
    --receive:#78c4b9;
    --payDark:#6a2f3e;
    --receiveDark:#2f6a61;
    --orange:#fdad37;
    --green:#69b9ac;
    color: var(--black);
    font-family: sans-serif;
    font-weight: lighter;
    overflow-x: hidden;
    height:100%;
}
a{
    text-decoration: none;
    color: var(--black);
    display: inline-block;
}
*:focus {
    outline-width: 0;
}
select,
input[type="text"],input[type="password"],input[type="date"],input[type="checkbox"],textarea{
    border: 0px;
    border-radius: 0px;
    color: var(--black);
    background: var(--white);
    font-size: 12px;
    font-family: sans-serif;
    font-weight: lighter;
    padding:5px;
}
select{
    border:4px solid var(--white);
    border-image: url(imgs/selectBG.png) 30 stretch;
    padding-left: 1px;
}
select:disabled{
    opacity: 1.0;
}
input[type="checkbox"]{
    margin:5px;
    width:18px;
    height:18px;
}
input[type="date"]{
    padding:3px;
}
input[type="button"],
button{
    font-size: 12px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 0px;
    border-radius: 0px;
    color: var(--white);
    background: var(--darkBlue);
    padding:5px 10px 5px 10px;
    user-select: none;
}
input[type="button"]:active,
button:active{
    background: var(--darkestBlue);
    color:var(--white);
}
#title{
    display:flex;
    background: #ffffff;
    flex-basis:50px;
    flex-grow: 0;
    flex-shrink: 0;
    width:100%;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 18px;
}    
#titleDivider{
    background: url(imgs/divBG.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    flex-basis:20px;
    flex-grow: 0;
    flex-shrink: 0;
}
#main{
    background: url(imgs/bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width:100%;
    flex-grow: 1;
    flex-shrink: 1;
    padding:10px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
#page{
    width: 1100px;
}
#footer{
    background: #92C1EF;
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
#footer div{
    margin:10px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: normal;
}
#footer a{
    margin: 1px;
}
#footerBase{
    background: var(--black);
    color: var(--white);
    width: 100%;
    flex-basis:25px;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 12px;
}
#title div{
}
#title div:last-child{
    padding-right: 5px;
    
    text-align: center;
}
#title img{
    height:50px;
    margin-left: 5px;
    position: relative;
}
#title a{
    text-decoration: none;
    color: var(--black);
    padding:10px;
    position: relative;
    bottom: -5px;
}
#title a[sel]{
    background: var(--blue);
    color: var(--white);
}

.head{
    font-size: 18px;
    padding: 5px 0px 0px 0px;
}
.head a{
    margin:0px;
    padding:5px 15px 5px 15px;
    border-left: 1px solid var(--black);
    text-transform: lowercase;
}
.head a:first-child{
    border-left: 0px;
}
.head .selected{
    background: var(--blue);
    color: var(--white);
}
.barThin{
    background: var(--blue);
    height:15px;
    margin-bottom: 5px;
}
.bar{
    background: var(--blue);
    min-height:30px;
    font-size: 18px;
    padding: 5px;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.bar *{
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0px 5px 0px 5px;
}

table{
    width:100%;
    border-collapse: collapse;
    margin:10px 0px 0px 0px;
    table-layout: fixed;
}
th,td{
    background: var(--white);
    border: 1px solid var(--grey);
    font-weight: lighter;
    font-size: 12px;
    color:var(--black);
    overflow: hidden;
    white-space: nowrap;
    padding-left:5px;
    padding-right:5px;
    vertical-align: top;
}
th{
    background: var(--lightGrey);
}
.sortable{
    cursor: pointer;
    user-select: none;
}
.sortable[order]{
    background: var(--blueGrey);
}
.sortable[order]::before {
    content: ">";
    display: inline-block;
    transform: rotate(90deg);
    margin-right: 8px;
}
.sortable[order=desc]::before {
    content: "<";
}
.rowHighlight{
    background:var(--lightBlue);
}
.clickable{
    cursor: pointer;
}

.searchCtrl{
    color:var(--white);
    padding-left:5px;
}
.newButton{
    background:var(--darkBlue);
    color:var(--white);
    margin:0px;
    padding:5px 15px 5px 15px;
    height:31px;
    font-size: 18px;
    float: right;
    top:0px;
    right:0px;
}
.pageControls{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.pageControls button{
    background: var(--blue);
    margin:5px;
    user-select: none;
}
.pageControls button:active{
    background: var(--darkestBlue);
}
.pageControls button[selected]{
    background: var(--darkBlue);
}
.pageControls button[dissabled]{
    background: var(--lightBlue);
}
.controls{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.controls *{
    margin:5px;
}
.marker{
    position:absolute;
    width:20px;
    height:20px;
    background: red;
}

.MSGPopup{
    width:100%;
    height:100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #b6d9efd6;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    text-align: center;
    
    font-size: 16px;
    font-family: sans-serif;
    font-weight: lighter;
    line-height: 28px;
}
.MsgPopupBox{
    width:400px;
    padding:20px;
    padding-bottom:0px;
    height:fit-content;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 5px 5px rgba(0,0,0,0.2);
}
.MsgPopupBox div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}
.MsgPopup button{
    margin:10px;
    min-width: 100px;
    background: var(--darkBlue);
    cursor: pointer;
}
.MsgPopup button:last-of-type{
    background: var(--blue);
}
.MsgPopup button:hover{
    background: var(--darkestBlue);
}
.MsgPopup button:last-of-type:hover{
    background: var(--darkBlue);
}
.NEG{
    color: red;
}
.POS{
}
#TrustTrans{
    background: var(--darkBlue);
    color: white;
}
#TrustTrans:last-of-type:hover{
    background: black;
}
#PracticeName{
    font-weight: 500;
    width: 100% !important;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}
.clearB{
    background: var(--grey);
}
.newButton{
    cursor: pointer;
}
#StopWatch[anim]{
    filter:invert(21%) sepia(100%) saturate(7414%) hue-rotate(359deg) brightness(94%) contrast(117%);
}
#StopWatch{
    height: 25px !important;
    width: 25px;
    top:20px;
    padding:10px;
    padding-right: 20px;
    cursor: pointer;
    
}
#TimerP{
    display: flex;
    flex-direction: column;
}
#TimerP div{
    display: flex;
    flex-direction: row;
    width: 100%;
}
#TimerP .top{
    justify-content: flex-start;
}
#TimerP .top div{
    flex-grow: 0;
    cursor: pointer;
}
#TimerP .top div.selected{
    background: var(--blue);
    color: var(--white);
}
#TimerP .top div.spacer{
    flex-grow: 1;
}
#TimerP .top div:last-of-type{
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: relative;
    top: -12;
    right: -10;
    font-size: 20;
    font-weight: bold;
    font-family: sans-serif;
    color: #656565;
}
#TPT{
    flex-direction: column !important;
    justify-content: flex-start;
}
#TPD{
    flex-direction: column !important;
    justify-content: flex-start;
}
#StartTimer{
    background: var(--green);
    color: white;
    cursor: pointer;
    margin-right: 5px;
    margin-top:10px;
}
#StartTimer:hover{
    background: var(--darkGreen);
}
#StopTimer{
    background: var(--red);
    color: white;
    margin-left: 5px;
    margin-top:10px;
    cursor: pointer;
}
#StopTimer[disabled]{
    opacity: 0.2;
}
#StopTimer:hover{
    background: var(--darkRed);
}
#TimerP .ctrls{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
#TimerP .ctrls div{
    margin:10px;
    min-width: 100px;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: lighter;
    border: 0px;
    border-radius: 0px;
    color: var(--white);
    background: var(--darkBlue);
    padding: 5px 10px 5px 10px;
    user-select: none;
    line-height: normal;
    cursor: pointer;
}
#TimerP .ctrls div:hover{
    background: var(--darkestBlue);
}
#TimerP .ctrls div:first-child{
    background: #FDAD37;
}
#TimerP .ctrls div:first-child:hover{
    background: #e58a02;
}
#TimerP .barThin{
    margin-bottom: 0px;
}
#TimerP table{
    margin:0px;
    margin-top:10px;
    width: 100%;
}
#TimerP td{
    font-size: 12px;
    padding:5px;
    font-weight: normal;
    vertical-align: middle;
}
#TimerP td:last-of-type{
    padding:0px;
}
#TimerP input{
    padding: 0px;
    padding-left: 5px;
    width:100%;
}
#TimerP matter{
    padding:0px;
    margin: 0px;
}
#TimerP matter button{
    margin:0px;
    min-width: unset;
}
#TimerP .ErrorMsg{
    position: absolute;
    color: red;
    font-weight: bold;
    font-size:12px;
    height: 25px;
    line-height: 25px;
    right:10px;
    width:initial;
}
#TPT input[name=duration][disabled]{
    color:red;
}
#TimerP tr{
    position: relative;
}
#LogoBox{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#DB_SEL{
    margin: 0px;
    padding: 0px;
    font-weight: 500;
    font-size: 18px;
    height: auto;
}