@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
}

* {
    transition: all 0.25s; /* ANIMATE ALL THE THINGS */
    transition: top 0s;
    trasitiion: left 0s;
}

a, a:focus, a:hover {
    color: #000066;
}

html.dev {
    box-shadow: inset 0px 0px 0px 8px #DC5145;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
}

p, div {
    font-family: 'Open Sans', sans-serif;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

a {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(67, 145, 210, 0) 70%, rgba(32, 124, 202, 0.11) 83%, rgba(41, 137, 216, 0.21) 94%, rgba(36, 112, 185, 1) 97%, rgba(30, 87, 153, 1) 100%);
}

a:hover {
    text-decoration: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(35, 126, 203, 0) 82%, rgba(32, 124, 202, 0.1) 83%, rgba(39, 135, 213, 1) 92%, rgba(41, 137, 216, 1) 94%, rgba(30, 87, 153, 1) 100%);
}

a.no-hover, a.no-hover:hover{
    background: none;
}

.logo {
    font-size: 24pt;
    font-weight: bold;
    color: #333;
    margin: 0.5em 0 0.25em 0.5em;
    letter-spacing: -1pt;
}

.logo .number {
    color: #333;
    opacity: 0.1;
}

.navigation, .navfilter {
    /* margin-bottom: 1em; */
}

.navigation a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid #333;
    background: #333;
    color: #fff;
}

.navigation a:hover {
    color: #333;
    background: transparent;
}

/*
.container {
    border: 1px solid #ddd;
    margin-left: 33px !important;
    margin: 33px;
    border: none;
}

.container a {
    color: #333;
}

.container table {
    margin-top: 20px;
}

.container table thead td {
    background-color: #f5f5f5;
    padding: 4px 10px;
}

.container table tbody td {
    padding: 4px 10px;
}

.container .box {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 30px;
}

.container input {
    background-color: #f5f5f5;
    border: 0;
    padding: 5px 10px;
}

.container input[type="submit"] {
    background-color: #ccc;
    cursor: pointer;
}

.container input[type="submit"]:hover {
    background-color: #333;
    color: #fff;
}

.container button {
    background-color: #ccc;
    border: 0;
    padding: 5px 10px;
    cursor: pointer;
}

.container button:hover {
    background-color: #333;
    color: #fff;
}
*/

.footer {
    padding: 1.5em;
    text-align: right;
    font-size: 11px;
    opacity: 0.5;
    clear: both;
}

.footer a {
    color: #454545;
}

.activeController {
    box-shadow: inset 0px 0px 0px 2px red;
}

table tbody tr td {
    vertical-align: middle !important;
}

td.hoverCell {
    /* background: #e0ffd9 !important; */
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(16, 255, 0, 0.1)) !important;
    cursor: pointer;
    /* color: #333 !important; */
    color: #333;
    box-shadow: inset 0px 0px 0px 2px #11d000;
}

#lightboxBg_absolute, #lightboxBg_relative {
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
    font-weight: bold;
    font-size: 60pt;
}

#lightboxBg_absolute {
    position: fixed;
}

#lightboxBg_relative {
    position: relative;
}

#lightboxBg > div, #lightboxBg_absolute > div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.no-underline {
    background: none;
}

.no-underline:hover {
    background: none;
}

/* Editable fields show a tooltip, this is how it positions */
.ticketsTable tbody td{
    position: relative;
}

.ticketsTable tbody td span{
    position: absolute;
    background: #fff;
    border: 1px solid #333;
    padding: 1em;
    transform: translateY(-100%);
    top: 0;
    left: 0;
    font-weight: bold;
    min-width: 100%;
    box-shadow: 0px 0px 1em 0.25em rgba(0,0,0,0.5);
    z-index: 1;
}

.table-sticky-headers > thead tr th {
    position: sticky !important;
    top: -1px;
    filter: drop-shadow(0px 0px 1px #ddd);
    z-index: 1;
    background-color: #fff !important;
}


/* CSS LOADER */
.lds-spinner {
    color: #333;
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-spinner div {
    transform-origin: 32px 32px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 29px;
    width: 5px;
    height: 14px;
    border-radius: 20%;
    background: #333;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.disableScroll{
    overflow-y: hidden;
    margin-right: 17px;
}

/* NOTES */
.col_note {
    width: 25px;
    min-width: 25px;
    position: relative; /*REQUIRED FOR CHILD DIV ABSOLUTE POSITIONING*/
}

.noteDiv {
    text-shadow: none;
    display: none;
    position: absolute;
    text-align: left;
    right: 3.5em;
    background-color: #fff;
    border: 1px solid #333;
    top: 0.25em;
    box-shadow: 0 0 0 4px #eee;
    z-index: 1;
    white-space: normal;
    width: 50em;
    padding: 0.5em;

}

.noteLinkCapacity:hover .noteDiv {
    display: block;
}
