﻿a {
    color: #ffffff;
}

    a:hover, a:active, a:focus {
        outline: 0;
        text-decoration: none;
    }

    a:hover, a:focus, a.link {
        color: #0c2e4e;
    }

        a.link:hover {
            color: black;
        }

.italic-font {
    font-style: italic;
}

.popover-content {
    min-width: 550px;
    max-width: 600px;
}

.popover {
    min-width: 300px;
    max-width: 600px;
}

.overflower {
    max-width: 100000px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.longerOverflower {
    max-width: 100000px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mycontent-left {
    border-right: 1px solid #333;
}

.bold-link {
    font-weight: bolder !important;
}

.table-scroller {
    overflow-x: scroll;
}

.select2 > .select2-choice.ui-select-match {
    /* Because of the inclusion of Bootstrap */
    height: 29px;
}

.selectize-control > .selectize-dropdown {
    top: 36px;
}
/* Some additional styling to demonstrate that append-to-body helps achieve the proper z-index layering. */
.select-box {
    background: #fff;
    position: relative;
    z-index: 1;
}

[ng\:cloak], [my-cloak], [ng-cloak], [data-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

.linkLike {
    cursor: pointer;
}


/* Customize the label (the container) */
.checkBoxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkBoxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 2px solid #ffffff;
}

/* On mouse-over, add a grey background color */
.checkBoxContainerr:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkBoxContainer input:checked ~ .checkmark {
    background-color: #a6be74;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkBoxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkBoxContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.white {
    color: #FFFFFF;
}

<style >
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.chartWrapper {
    position: relative;
}

.chartWrapper > canvas {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.chartAreaWrapper {
    overflow-x: scroll;
}

#chart {
    width: auto !important;
    height: 400px !important;
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width: 1200px;
    }
}

.tiny-input{
    width:60px !important;
}

.LowPadding {
    padding: 10px;
}

.btn-inprogress {
    color: black;
    background-color: #e3efda;
    border-color: #e3efda;
}

.btn-completed {
    color: black;
    background-color: #AACE8E;
    border-color: #AACE8E;
}

.btn-notstarted {
    color: black;
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-waiting {
    color: black;
    background-color: #FDC010;
    border-color: #FDC010;
}

.btn-deferred {
    color: black;
    background-color: #ED1E24;
    border-color: #ED1E24;
}