﻿body {
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif !important;
    background-color: #FAF9F6;
}

    /*body.cursorWait, body.cursorWait * {
        cursor: wait !important;
    }

    body.cursorProgress, body.cursorProgress * {
        cursor: progress !important;
    }*/


    /* Body Scrollbar customisations */
    body::-webkit-scrollbar {
        width: 20px; /* width of the entire scrollbar */
    }

    body::-webkit-scrollbar-track {
        background: #335e73; /* color of the tracking area */
    }

    body::-webkit-scrollbar-thumb {
        background-color: #abc33a; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 3px solid #335e73; /* creates padding around scroll thumb */
    }
/* End of Body Scrollbar customisations */


label {
    font-weight: 500;
}


.gravatarProfileImg {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.faviconProfileImg {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}


/* Bootstrap Overwrite */

a {
    text-decoration: none !important;
}

.table {
    background-color: #FFFFFF;
    font-size: 0.85rem;
}

    .table > :not(:last-child) > :last-child > * {
        font-weight: 500 !important;
        border-bottom-color: #adb5bd !important;
    }


/*Fix the table header in place when scrolling. */
/** {
    box-sizing: border-box;
}

.wrapper2 {
    height: 30vw;
    overflow-y: scroll;
}*/

.tablealign {
    /*float: right;*/
    width: 100%;
    height: 100%;
    border-radius: 3px;
    padding-bottom: 0px;
}

.tbodyGeneral {
    overflow-y: scroll;
    overflow-x: auto;
    height: 700px;
    display: block;
}

.tbodyTA {
    overflow-y: scroll;
    overflow-x: auto;
    height: 300px;
    display: block;
}

.tbodySR {
    overflow-y: scroll;
    overflow-x: auto;
    height: 80px;
    display: block;
}

thead {
    display: table;
    width: calc(100% - 17px);
    /*table-layout: fixed;*/
    table-layout: fixed;
    word-wrap: normal;
}

.theadNonScrollTable {
    display: table;
    width: 100%;
    /*table-layout: fixed;*/
    table-layout: fixed;
    word-wrap: normal;
}

tbody tr {
    table-layout: fixed;
    display: table;
    width: 100%;
    word-wrap: break-word;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    /*margin: 0% auto;*/
    position: relative;
    /*padding: 34px;*/
    color: #444;
    cursor: pointer;
    overflow-x: auto;
    width: 1300px;
}

.cardGeneral {
    background-color: #F2F2F2;
    border-radius: 10px;
    margin: 0% auto;
    /*position: relative;*/
    /*padding: 34px;*/
    color: #FAF9F6;
    cursor: pointer;
    /*overflow-x: auto;*/
    width: 600px;
}

.card:before {
    display: block;
    position: absolute;
    background-color: #ccc;
    z-index: -1;
    box-shadow: 0 0 40px #999999;
    transition: box-shadow .2s ease-in-out;
}

.card.level-3:hover:before {
    box-shadow: 0 0 80px #999999;
}
/* End of table header fixing when scrolling */

/* Table Scrollbar customisations */
tbody::-webkit-scrollbar {
    width: 18px; /* width of the entire scrollbar */
}

tbody::-webkit-scrollbar-track {
    background: #335e73; /* color of the tracking area */
}

tbody::-webkit-scrollbar-thumb {
    background-color: #abc33a; /* color of the scroll thumb */
    border-radius: 10px; /* roundness of the scroll thumb */
    border: 3px solid #335e73; /* creates padding around scroll thumb */
}
/* End of Table Scrollbar customisations */






.form-check-label {
    font-weight: 400;
}

.form-label {
    font-weight: bold;
    color: #335e73 !important;
}

.tooltip-inner {
    max-width: 600px !important;
    text-align: left !important;
}


/* Bootstrap Additions */

x-small, .x-small {
    font-size: 0.750em;
}


.table-md > :not(caption) > * > * {
    padding: 0.25rem 0.5rem;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 0.125rem 0.25rem;
    font-size: 0.75rem;
    border-radius: 0.15rem;
}

.rounded-4 {
    border-radius: 0.5rem !important;
}

.rounded-5 {
    border-radius: 1rem !important;
}

/* Modal Loading popup on Visits Index */

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 255, 255, 255, .8 ) url('/images/FhHRx.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .modal {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}