﻿.Modal__Content {
  max-height: 500px;
  overflow-y: auto;
}

.container__modal .modal-header, .Modal__Content .modal-header {
  background-color: #e7e9ed;
  border-bottom: 2px solid red;
}
.container__modal .modal__form--react, .Modal__Content .modal__form--react {
  max-height: 500px;
  overflow-y: auto;
  padding: 15px 15px 15px 15px;
}
.container__modal .modal__form--react .form-save-button:active, .Modal__Content .modal__form--react .form-save-button:active {
  cursor: wait;
}
.container__modal .modal__form, .Modal__Content .modal__form, .container__modal .modal__form--react, .Modal__Content .modal__form--react {
  display: table;
  width: 100%;
}
.container__modal .modal__form .modal__form__question, .Modal__Content .modal__form .modal__form__question, .container__modal .modal__form--react .modal__form__question, .Modal__Content .modal__form--react .modal__form__question {
  display: table-row;
  height: 45px;
  width: 100%;
}
.container__modal .modal__form .modal__form__question .modal__form__section, .Modal__Content .modal__form .modal__form__question .modal__form__section, .container__modal .modal__form--react .modal__form__question .modal__form__section, .Modal__Content .modal__form--react .modal__form__question .modal__form__section {
  display: table-cell;
  width: 100%;
}
.container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__header, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__header, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header {
  border-bottom: 1px solid black;
  width: 100%;
}
.container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__header label, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__header label, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header label, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header label {
  font-size: 1.2em;
}
.container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__content, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__content, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content {
  display: table;
  width: 100%;
}
.container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item {
  display: table-row;
  height: 45px;
  width: 100%;
}
.container__modal .modal__form .modal__form__question .modal__form__question__label, .Modal__Content .modal__form .modal__form__question .modal__form__question__label, .container__modal .modal__form--react .modal__form__question .modal__form__question__label, .Modal__Content .modal__form--react .modal__form__question .modal__form__question__label {
  margin-top: 5px;
  font-size: 16px;
}
.container__modal .modal__form .modal__form__question .modal__form__question__input, .Modal__Content .modal__form .modal__form__question .modal__form__question__input, .container__modal .modal__form--react .modal__form__question .modal__form__question__input, .Modal__Content .modal__form--react .modal__form__question .modal__form__question__input {
  border-radius: 4px;
  height: 35px;
}
.container__modal .modal__form .modal__form__question .modal__form__question__input--textarea, .Modal__Content .modal__form .modal__form__question .modal__form__question__input--textarea, .container__modal .modal__form--react .modal__form__question .modal__form__question__input--textarea, .Modal__Content .modal__form--react .modal__form__question .modal__form__question__input--textarea {
  border-radius: 4px;
}
.container__modal .modal__form .modal__form__question .modal__form__question__input[readonly], .Modal__Content .modal__form .modal__form__question .modal__form__question__input[readonly], .container__modal .modal__form--react .modal__form__question .modal__form__question__input[readonly], .Modal__Content .modal__form--react .modal__form__question .modal__form__question__input[readonly] {
  background-color: darkgray;
}
.container__modal .modal__form .btn--save, .Modal__Content .modal__form .btn--save, .container__modal .modal__form--react .btn--save, .Modal__Content .modal__form--react .btn--save {
  margin-top: 10px;
  float: right;
}



/*Modal*/
 .btn, .Modal__Menu .btn--save, .container__modal .modal__form .btn--save, .Modal__Content .modal__form .btn--save, .container__modal .modal__form--react .btn--save, .Modal__Content .modal__form--react .btn--save {
        background-color: #CA0000;
        border: 1px solid #990000;
        color: white;
    }

.btn--cyan {
    background-color: #00b1b1;
    border: 1px solid #009898;
}

.Modal__Header--React {
    width: 100%;
    height: 50px;
    background: #e7e9ed;
    border-bottom: 1px solid red;
}

    .Modal__Header--React label {
        padding-left: 10px;
        padding-top: 5px;
        float: left;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 2em;
    }

    .Modal__Header--React .btn--close {
        float: right;
        margin-right: 10px;
        padding-top: 5px;
        border: none;
        background-color: transparent;
        color: dimgray;
        font-size: 2em;
    }

        .Modal__Header--React .btn--close:focus {
            outline: none;
        }

.Modal__Menu .btn--save {
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    float: right;
}
input[type=date]::-webkit-inner-spin-button {
    display: none;
}

.Modal__Content {
    max-height: 500px;
    overflow-y: auto;
}

    .container__modal .modal-header, .Modal__Content .modal-header {
        background-color: #e7e9ed;
        border-bottom: 2px solid red;
    }

    .container__modal .modal__form--react, .Modal__Content .modal__form--react {
        max-height: 500px;
        overflow-y: auto;
        padding: 15px 15px 15px 15px;
    }

        .container__modal .modal__form--react .form-save-button:active, .Modal__Content .modal__form--react .form-save-button:active {
            cursor: wait;
        }

    .container__modal .modal__form, .Modal__Content .modal__form, .container__modal .modal__form--react, .Modal__Content .modal__form--react {
        display: table;
        width: 100%;
    }

        .container__modal .modal__form .modal__form__question, .Modal__Content .modal__form .modal__form__question, .container__modal .modal__form--react .modal__form__question, .Modal__Content .modal__form--react .modal__form__question {
            display: table-row;
            height: 45px;
            width: 100%;
        }

            .container__modal .modal__form .modal__form__question .modal__form__section, .Modal__Content .modal__form .modal__form__question .modal__form__section, .container__modal .modal__form--react .modal__form__question .modal__form__section, .Modal__Content .modal__form--react .modal__form__question .modal__form__section {
                display: table-cell;
                width: 100%;
            }

                .container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__header, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__header, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header {
                    border-bottom: 1px solid black;
                    width: 100%;
                }

                    .container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__header label, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__header label, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header label, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__header label {
                        font-size: 1.2em;
                    }

                .container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__content, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__content, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content {
                    display: table;
                    width: 100%;
                }

                    .container__modal .modal__form .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item, .Modal__Content .modal__form .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item, .container__modal .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item, .Modal__Content .modal__form--react .modal__form__question .modal__form__section .modal__form__section__content .modal__form__section__content__item {
                        display: table-row;
                        height: 45px;
                        width: 100%;
                    }

            .container__modal .modal__form .modal__form__question .modal__form__question__label, .Modal__Content .modal__form .modal__form__question .modal__form__question__label, .container__modal .modal__form--react .modal__form__question .modal__form__question__label, .Modal__Content .modal__form--react .modal__form__question .modal__form__question__label {
                margin-top: 5px;
                font-size: 16px;
            }

            .container__modal .modal__form .modal__form__question .modal__form__question__input, .Modal__Content .modal__form .modal__form__question .modal__form__question__input, .container__modal .modal__form--react .modal__form__question .modal__form__question__input, .Modal__Content .modal__form--react .modal__form__question .modal__form__question__input {
                border-radius: 4px;
                height: 35px;
            }

            .container__modal .modal__form .modal__form__question .modal__form__question__input--textarea, .Modal__Content .modal__form .modal__form__question .modal__form__question__input--textarea, .container__modal .modal__form--react .modal__form__question .modal__form__question__input--textarea, .Modal__Content .modal__form--react .modal__form__question .modal__form__question__input--textarea {
                border-radius: 4px;
            }

            .container__modal .modal__form .modal__form__question .modal__form__question__input[readonly], .Modal__Content .modal__form .modal__form__question .modal__form__question__input[readonly], .container__modal .modal__form--react .modal__form__question .modal__form__question__input[readonly], .Modal__Content .modal__form--react .modal__form__question .modal__form__question__input[readonly] {
                background-color: darkgray;
            }

        .container__modal .modal__form .btn--save, .Modal__Content .modal__form .btn--save, .container__modal .modal__form--react .btn--save, .Modal__Content .modal__form--react .btn--save {
            margin-top: 10px;
            float: right;
        }

        
/*HR Track Online CSS*/
.ReactTable .-pagination .-btn {
    box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851, 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    color: #eeeeee !important;
    background-image: linear-gradient(to bottom, #ef9273, #ef9273) !important;
}

.react-table input {
    color: black;
}

.ReactTable .rt-thead .rt-th {
    border-right: 1px solid rgba(255, 255, 255, 0.5) !important;
    background: #863135e8;
    color: #EEEEEE;
}

.HRHeaderDiv {
    position: relative;
}

.HRHeaderButtonDiv {
    position: absolute;
    bottom: 10px;
    right: 0;
    float: right;
}

.HRHeaderButton {
    cursor: pointer;
    margin-right: 2px;
    height: 48px;
}

body {
    min-height: 100vh;
}

.delete {
    height: 15px;
    width: 15px;
    background-image: url('../images/delete.png');
    background-size: 15px 15px;
    cursor: pointer;
}

.taskTrackerButton {
    height: 15px;
    width: 15px;
    background-image: url('../Resources/Tracker.png');
    background-size: 15px 15px;
    cursor: pointer;
}

.delete:hover {
    /*background-image: none;*/
}

.approve {
    height: 15px;
    width: 15px;
    background-image: url('../images/checkmark.png');
    background-size: 15px 15px;
    cursor: pointer;
}

.unapprove {
    height: 15px;
    width: 15px;
    background-image: url('../images/undo.png');
    background-size: 15px 15px;
    cursor: pointer;
}

.table tr:hover a {
    color: white !important;
}

.table tr:hover .revassign {
    color: white !important;
}

.selected-row a {
    color: white !important;
}

.selected-row span {
    color: white !important;
}

.approve:hover {
    /*background-image: none;*/
}

.edit {
    height: 15px;
    width: 15px;
    background-image: url('../images/edit.png');
    background-size: 15px 15px;
    cursor: pointer;
}

    .edit:hover {
        /*background-image:none;*/
    }

.checkmark {
    height: 22px;
    /*width: 22px;*/
    background-image: url('../images/checkmark.png');
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
}

.x-mark {
    height: 22px;
    /*width: 22px;*/
    background-image: url('../images/x-mark.png');
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
}

.delete #progress-bar {
    width: 0%;
    background-color: green;
    height: 5px;
}

.tooltip .tooltiptext {
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
    opacity: 0;
    transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
    opacity: 1;
}
/*general css*/
html {
    min-height: 100%;
    position: relative;
}

.btn.btn-primary {
    background-color: #CA0000;
    border-color: #990000;
}

/*Remember to add min-width back in after development
*/
body {
    padding-top: 50px;
    padding-bottom: 20px;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    /* min-width: 1000px;*/
}

.fixedCol {
    position: sticky;
    left: 0;
    z-index: 2;
    color: white;
    background-color: grey;
    width: 200px;
}

.ganttOverflow {
    width: 500px;
    overflow-x: scroll;
    margin-left: 5em;
    overflow-y: visible;
    padding: 0;
}

.pageBack {
    /*box-shadow: 5px 10px #888888;*/
    background-color: white;
    border-radius: 4px;
    top: 100px;
    padding: 20px;
}

pre {
    background-color: #ffffff !important;
    border: none !important;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    white-space: pre-wrap;
    word-break: normal;
}

.pageBody {
    margin-left: 190px; /* Same as the width of the sidenav */
}

.pmPageBox {
    padding: 20px 0px;
    background-color: lightgray;
    box-shadow: 5px 10px #888888;
}

.sidenav {
    top: 100px;
    height: 100%;
    width: 190px;
    position: fixed;
    z-index: 1001;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 20px;
}

    .sidenav a {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
    }

        .sidenav a:hover {
            color: #f1f1f1;
        }

.subnav {
    background-color: white;
    position: fixed;
    width: 100%;
    z-index: 1002;
    top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 2px solid #ddd;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}

    .subnav li a {
        color: #333333;
    }

.active-nav {
    font-weight: normal;
    color: #e62c2c !important;
}

    .active-nav > li {
        margin: 13px 2px;
    }

.progress {
    margin-bottom: 0px !important;
}
/* Standardizing */
.standardize label {
    font-weight: normal !important;
}

.standardize th {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    padding: 6px 8px;
    font-weight: normal !important;
    text-align: center;
}

.standardize ul {
    list-style: none;
}

.standardize .nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    color: #333333;
}

.standardize .nav-item.active .nav-link,
.important {
    color: #e62c2c;
}

.standardize textarea {
    resize: none;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

#di-ra-nav,
#sidebar-wrapper,
#top-nav,
.page-header,
.page-subheader,
.sub-nav,
td.no-record-td,
#login-title {
    font-family: 'Roboto Condensed', sans-serif;
}

#sidebar-wrapper,
.navbar {
    background-color: #e7e9ed;
}
/*Bootstrap extensions/overrides*/
.page-header {
    font-size: 2rem;
    margin: 25px 0 15px;
    border-bottom: 1px solid #ddd !important;
}

.modal-header {
    font-family: 'Roboto Condensed', sans-serif;
}

.modal label {
    font-weight: normal;
}


/* Dev classes */
.temp-spacer-md {
    height: 70px;
}

/*custom classes*/
.active-navi {
    color: #e62c2c !important;
    font-weight: normal !important;
}



a.custom-btn,
a.custom-btn-red,
a.custom-btn-blue,
a.custom-btn-orange,
a.custom-btn-white,
a.custom-btn-green,
a.custom-btn-gray {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.bold {
    font-weight: bold;
}

.btn-orange {
    background-color: #e37222;
    border: 1px solid #e37222;
    padding: 5px 15px;
    border-radius: 3px;
    color: white;
}

.btn-blue {
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 8px 5px;
    background-image: linear-gradient(to bottom, #67a1bc, #4c8fad);
    border: 1px solid #53a6cc;
    box-shadow: inset 0 1px 0 #7cd4fc, inset 0 -1px 0 #2696c9, inset 0 0 0 1px #59b7e3, 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

    .btn-blue:hover {
        background: #3baadd;
        border-color: #004c6f;
        box-shadow: inset 0 1px 0 #7cd4fc, inset 0 -1px 0 #2696c9, inset 0 0 0 1px #59b7e3;
    }

.btn-transblue {
    color: #005c78;
    background-color: inherit;
    border: 1px solid #005c78;
    padding: 5px 15px;
    border-radius: 3px;
}

.btn-green {
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 8px 5px;
    background-image: linear-gradient(to bottom, #85b567, #7bb756);
    border: 1px solid #5f993a;
    box-shadow: inset 0 1px 0 #c6e6b3, inset 0 -1px 0 #79b356, inset 0 0 0 1px #a4cc8b, 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

    .btn-green:hover {
        background: #8bcc62;
        border-color: #326612;
        box-shadow: inset 0 1px 0 #c6e6b3, inset 0 -1px 0 #79b356, inset 0 0 0 1px #a4cc8b;
    }

.btn-transgreen {
    color: #5cb85c;
    background-color: inherit;
    border: 1px solid #5cb85c;
    padding: 5px 15px;
    border-radius: 3px;
}

.btn-blue2 {
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 8px 5px;
    background-image: linear-gradient(to bottom, #85b567, #7bb756);
    border: 1px solid #3083cb;
    box-shadow: inset 0 1px 0 #3083cb, inset 0 -1px 0 #3083cb, inset 0 0 0 1px #3083cb, 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

    .btn-blue2:hover {
        background: #3083cb;
        border-color: #3083cb;
        box-shadow: inset 0 1px 0 #3083cb, inset 0 -1px 0 #3083cb, inset 0 0 0 1px #3083cb;
    }

.btn-orange2 {
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 8px 5px;
    background-image: linear-gradient(to bottom, #f58a38, #ff9244);
    border: 1px solid #c25706;
    box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851, 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

    .btn-orange2:hover {
        background: #f57c20;
        border-color: #773300;
        box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851;
    }

.btn-transorange {
    color: #e37222;
    background-color: inherit;
    border: 1px solid #e37222;
    padding: 5px 15px;
    border-radius: 3px;
}

.btn-red {
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 8px 5px;
    background-image: linear-gradient(to bottom, #ed6d64, #ed574c);
    border: 1px solid #ba3329;
    box-shadow: inset 0 1px 0 #ffb0aa, inset 0 -1px 0 #d44d44, inset 0 0 0 1px #ed837b, 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

    .btn-red:hover {
        background: #ed574c;
        border-color: #870c03;
        box-shadow: inset 0 1px 0 #ffb0aa, inset 0 -1px 0 #d44d44, inset 0 0 0 1px #ed837b;
    }

.btn-transred {
    color: #d43f3a;
    background-color: inherit;
    border: 1px solid #d43f3a;
    padding: 5px 15px;
    border-radius: 3px;
}

.btn-transorange:hover {
    text-decoration: none;
    color: #e37222;
}

.custom-btn {
    border: 1px #d5d5d5 solid;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 1px 1px 1px 0px #808080;
}

    .custom-btn:hover {
        background-color: #d2d2d2;
        color: #ffffff;
    }

.custom-btn-red {
    background-color: #e62c2c;
    border: 1px solid #e62c2c;
    border-radius: 2px;
    color: #fff;
    box-shadow: 1px 1px 1px 1px #8e5252;
    padding: 4px 28px 2px 28px;
}

.custom-btn-blue {
    background-color: #3083cb;
    border: 1px solid #3083cb;
    border-radius: 2px;
    color: #fff;
    box-shadow: 1px 1px 1px 1px #3083cb;
    padding: 4px 42px 4px 42px !important;
    display: flex;
    width: fit-content;
}
.custom-btn-gray {
    background-color: #110f0f;
    border: 1px solid #110f0f;
    border-radius: 2px;
    color: #fff;
    box-shadow: 1px 1px 1px 1px #110f0f;
    padding: 4px 28px 4px 28px !important;
    
}
.custom-btn-green {
    background-color: #2a742b;
    border: 1px solid #2a742b;
    border-radius: 2px;
    color: #fff;
    box-shadow: 1px 1px 1px 1px #2a742b4f;
    padding: 4px 28px 4px 28px !important;
    
}

.custom-btn-white {
    background-color: #fff;
    border: 1px solid #e62c2c;
    border-radius: 2px;
    color: #e62c2c !important;
    box-shadow: 1px 1px 1px 1px #adadad;
    padding: 4px 28px 2px 28px;
}

.custom-btn-modal {
    margin: 2px;
    padding: 6px 12px !important;
    border-radius: 4px;
}

.custom-btn-lg {
    padding: 7px 43px 5px 43px;
}

.custom-btn-thin {
    font-size: 1.2rem;
    padding: 3px 22px 1px 22px;
}

.fixed-save-lg {
    position: fixed;
    right: 23px;
    font-size: 14px;
    margin-top: -14px;
    /*default top of any undefined z-index elements*/
    z-index: 1;
}

.inline {
    display: inline-block;
}

.inline-control {
    display: inline-block;
    width: auto;
}

.nav-subpage {
    margin-top: 69px;
}

.none {
    display: none;
}

.page-subheader {
    padding-bottom: 9px;
    /*margin: 20px 0 5px;*/
    font-size: 1.75rem;
}

.roboto-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

.stdize-checkbox {
    height: 32px;
    width: 32px;
}

td.no-record-td {
    font-size: 1.25em;
    padding-top: 10px;
}

.view-fixed-header {
    font-family: 'Roboto Condensed', sans-serif;
    position: fixed;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 14px 6px 6px 6px;
    border-bottom: 1px solid #d5d5d5;
}

.voucher-label.a {
    min-width: 17%;
    display: inline-block;
}

.voucher-label.b {
    min-width: 16%;
    display: inline-block;
}

.voucher-fields.form.a {
    width: 25%;
    display: inline-block;
}
/*Table Classes*/
.selected-row {
    background-color: #808080;
    color: #ffffff;
}

.table-hover > tbody > tr:hover {
    background-color: #808080;
    color: #ffffff;
}

/*Navbar collapse override*/
.navbar-collapse.collapse {
    display: block !important;
}

.navbar-nav > li, .navbar-nav {
    float: left !important;
}

    .navbar-nav.navbar-right:last-child {
        margin-right: -15px !important;
    }

.navbar-right {
    float: right !important;
}

.navbar-header {
    float: left !important;
}

.sub-nav {
    font-size: 1.5rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #ddd;
    /*position: fixed;*/
    background-color: #ffffff;
    z-index: 999;
}

    .sub-nav li {
        display: inline-block;
        margin: 13px 12px;
    }

        .sub-nav li a {
            color: #333333;
        }

            .sub-nav li a:hover {
                text-decoration: none;
            }

/* Breadcrumbs */
ul.breadcrumbs li {
    margin: 13px 2px;
}

    ul.breadcrumbs li a {
        padding-left: 7px;
    }

    ul.breadcrumbs li.icon::before {
        content: "->"
    }

/* Sidebar */
.sidebar-back::before {
    content: "";
    display: inline-block;
    background: url("../images/back.png") no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin: 0 6px 0 -26px;
}

#sidebar-container {
    padding-left: 200px;
    transition: all 0.4s ease 0s;
}

#sidebar-wrapper {
    margin-left: -200px;
    font-size: 1.75rem;
    top: 50px;
    left: 200px;
    width: 200px;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.4s ease 0s;
    border-right: 2px solid #e7e9ed;
    background-color: transparent;
}

    #sidebar-wrapper ul {
        padding: 0;
    }

        #sidebar-wrapper ul li {
            padding: 7px 0;
            text-align: center;
            cursor: pointer;
            border-bottom: 1px solid #d5d5d5;
            margin: 0px 16px;
        }

            #sidebar-wrapper ul li a {
                color: #333333;
                transition: 0.2s;
            }

                #sidebar-wrapper ul li a:hover {
                    /*letter-spacing: 0.5px;*/
                    text-decoration: none;
                    /*font-weight: bold*/;
                }

@media all and (max-width: 500px) {
    #sidebar-container {
        padding-left: 125px;
    }

    #sidebar-wrapper {
        margin-left: -125px;
        left: 125px;
        width: 125px;
    }
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* Printable Page */
#printable {
    padding-top: 0px;
   
}

.scrollbox {
    overflow-y: hidden;
}
.scrollbox:hover {
    overflow-y: auto;
}
@media print {
    @page {
        margin-top: 45px;
        margin-bottom: 45px;
        display: table;
        overflow: visible;
        height: auto;
        page-break-inside: avoid;
        page-break-after: auto;
       
      
    }
    body {
        display: block !important;
        width: auto !important;
        float: none !important;
        position: static !important;
        overflow: visible !important;
    }

    .snapshotnav, #pageOptions, .sub-nav, .subnav {
        display: none;
    }
     File review Print Format 
    pre.c-printable__comment {
        page-break-inside: auto;
        page-break-before: avoid; page-break-before: avoid; page-break-before: avoid; page-break-before: avoid;
    }
}

}

/*Layout Page*/
#top-nav .navbar-header .dropdown-toggle {
    font-size: 2rem;
}

#top-nav .navbar-header {
    width: 200px;
    text-align: center;
}

#top-nav .navbar-brand {
    float: none;
}

#top-nav {
    font-size: 1.75rem;
    border-bottom: 1px solid #e62c2c;
    height: 50px;
}

    #top-nav li a {
        color: #333333 !important;
    }


/*Admin User Manager Authorization Page */
#user-manager-authorization input[type="checkbox"] {
    width: 20px;
    height: 20px;
    vertical-align: bottom;
    padding: 10px;
}

/*PBCA Props Page*/
#prop-bottom-view {
    transition: 0.5s;
}

#property-select-table_wrapper {
    font-size: 12px;
    padding-top: 6px;
    height: 294px;
}

    #property-select-table_wrapper #property-select-table_filter {
        position: absolute;
        top: 15px;
        right: 50px;
        z-index: 999;
    }

        #property-select-table_wrapper #property-select-table_filter input {
            height: 20px;
        }

    #property-select-table_wrapper tbody tr {
        font-size: 11px;
    }

    #property-select-table_wrapper thead tr th {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 1.5rem;
        padding: 6px 8px;
    }

    #property-select-table_wrapper tbody tr td {
        padding: 6px;
    }

.panel-heading a:after {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    color: grey;
}

.panel-heading a.collapsed:after {
    content: "\e080";
}

#toggle-props {
    position: fixed;
    z-index: 9999;
    top: 70px;
    /*right: 280px;*/
    height: 20px;
    font-size: 10px;
}

/*PBCA Props Info Page*/
#prop-info .form-group {
    margin-bottom: 7px;
}

#prop-info .nav > li > a {
    padding: 7px 15px;
}

#prop-info .tab-content {
    font-size: 12px;
}

    #prop-info .tab-content .form-control {
        height: 28px;
    }

/*Props TaskActionRA*/
.taskactionRA-list-items {
    border: 1px solid #d5d5d5;
    margin: 10px;
    font-size: 12px;
    padding: 8px 0px;
}

    .taskactionRA-list-items .statusOpen {
        color: green;
    }

    .taskactionRA-list-items .statusClosed {
        color: red;
    }

.taskactionRA-li-body .row {
    margin: 2px 0px;
}

.taskactionRA-li-fundingexp {
    /*border: 1px solid #d5d5d5;
    background-color: #d5d5d5;*/
    font-weight: bold;
    color: #435ab3;
}

#taskactionRA-list {
    padding: 0;
}

/*RA budget page*/
#BudgetGrid {
    float: none;
}

    #BudgetGrid textarea {
        resize: vertical;
    }

    #BudgetGrid #edit-audit-lbl,
    #BudgetGrid #collapse-comments {
        font-weight: normal;
        font-size: 11px;
    }

    #BudgetGrid table thead tr th {
        text-align: center;
        vertical-align: bottom;
        font-size: 13px;
    }

    #BudgetGrid table tbody tr td,
    #BudgetGrid table tbody tr td input,
    #BudgetGrid textarea {
        font-size: 12px;
    }

        #BudgetGrid table tbody tr td,
        #BudgetGrid table tbody tr td input {
            text-align: center;
        }

    #BudgetGrid table tbody tr td {
        padding: 2px 3px;
    }

        #BudgetGrid table tbody tr td input {
            padding: 0;
        }

    #BudgetGrid .totals h5 {
        font-weight: bold;
        text-transform: uppercase;
    }

    #BudgetGrid .division-total td {
        padding: 12px 3px;
    }

    #BudgetGrid .division-title h5 {
        font-weight: bold;
    }

/*RA Data Input */
#di-ra-nav {
    font-size: 1.5rem;
    letter-spacing: 1px;
    border-bottom-width: 2px;
    position: fixed;
    background-color: #ffffff;
    z-index: 999;
}

    #di-ra-nav li a {
        color: #333333;
    }

    #di-ra-nav .active-nav,
    #admin-nav .active-nav,
    .sub-nav .active-nav {
        font-weight: normal;
        color: #e62c2c;
    }


/*RA Data Input Units*/
#di-ra-units input[type="text"]:not(.no-format),
#di-ra-units select {
    padding: 0;
    text-align: center;
}

#di-ra-units .rcs-adj-rents {
    transition: background-color .15s ease-in-out;
}

#di-ra-units table thead tr th {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    padding: 6px 8px;
    font-weight: normal !important;
    text-align: center;
}

#di-ra-units table tfoot td {
    padding-top: 10px;
}

#di-ra-units .header-thin-btn {
    padding: 0px 0px 10px;
}

.s8-ut td, .non-s8-ut td {
    padding: 0px 5px 10px;
}

/*RA Data Input Payroll*/
.payroll-record td {
    padding: 0px 5px 5px;
}

#di-ra-payroll input[type="text"].valid,
#di-ra-payroll input[type="text"].comma-valid {
    padding: 0;
    text-align: center;
}
/*RA Data Input Reserve*/
#di-ra-reserve td {
    padding: 0px 5px 10px;
}
/*RA Data Input Comments*/
#comments-form textarea {
    width: 100%;
    resize: none;
    height: 200px;
}


/* RA Review Page */
#ra-review input[type="checkbox"] {
    width: 30px;
    height: 30px;
}

#ra-review textarea {
    width: 100%;
}

#ra-review table th.checkbox-th {
    text-align: initial;
    padding: 0px 15px 15px 15px;
    font-family: inherit;
    font-size: 14px;
}

#ra-review .checklistGroupContainer {
    border: 1px solid #ddd;
    border-radius: 3px;
}

#ra-review #generalComments textarea {
    height: 120px;
}

#ra-review .getPreviousComments {
    position: absolute;
    padding: 0px;
    right: -2px;
    bottom: 33px;
    height: 15px;
    width: 15px;
}

#ra-review .getPreviousGeneralComments {
    font-size: 14px;
    padding: 0px 8px;
}

#ra-review .getPreviousComments__td {
    position: relative;
}

#addQuestionModal .modal-header,
#textExpandModal .modal-header,
#previousCommentsModal .modal-header {
    background-color: #e7e9ed;
}


/* RA Reports */
#ra-reports input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
}

#ra-reports li a {
    margin-left: 6px;
    font-size: 16px;
}


/***** FILE REVIEW MODULE  *****/

/* File Review Admin Options Page*/
.c-fr-admin-options__list {
    list-style: none;
}

    .c-fr-admin-options__list li {
        font-size: 1.75rem;
        padding: 5px 0px;
    }

/* File Review Checklist Page */
#fr-checklist-review textarea {
    width: 100%;
}

#fr-checklist-review #comparison-view {
    font-size: 13px;
}

#fr-checklist-review .stdLangMenuOuterDiv {
    position: relative;
}

#fr-checklist-review .stdLangMenu {
    position: absolute;
    /*border: 1px solid red;*/
    top: 12px;
    right: -5px;
    height: 15px;
    width: 15px;
    cursor: pointer;
    background: url("../images/edit.png") no-repeat;
    background-size: 15px 15px;
}

/* File Review Income Calc Page */
#fr-income-calculation tr.income-row td,
#fr-income-calculation tr.asset-row td {
    padding-bottom: 7px;
}

#fr-income-calculation tr.asset-row::before,
#fr-income-calculation tr.asset-row::after,
#fr-income-calculation tr.asset-header-row::before,
#fr-income-calculation tr.asset-header-row::after,
#fr-income-calculation tr.asset-footer-row::before,
#fr-income-calculation tr.asset-footer-row::after {
    content: none;
}

#fr-income-calculation tr.asset-header td,
#fr-income-calculation tr.asset-row td,
#fr-income-calculation tr.asset-footer-row td,
#fr-income-calculation tr.asset-footer-row td {
    padding-left: 2px;
    padding-right: 2px;
}

#fr-income-calculation tr.income-footer-row td,
#fr-income-calculation tr.asset-footer-row td {
    padding-top: 20px;
}

/* File Review Income Calc Page */
#fr-income-calculation tr.income-row td,
#fr-income-calculation tr.asset-row td {
    padding-bottom: 7px;
}

#fr-income-calculation tr.asset-row::before,
#fr-income-calculation tr.asset-row::after,
#fr-income-calculation tr.asset-header-row::before,
#fr-income-calculation tr.asset-header-row::after,
#fr-income-calculation tr.asset-footer-row::before,
#fr-income-calculation tr.asset-footer-row::after {
    content: none;
}

#fr-income-calculation tr.asset-header td,
#fr-income-calculation tr.asset-row td,
#fr-income-calculation tr.asset-footer-row td,
#fr-income-calculation tr.asset-footer-row td {
    padding-left: 2px;
    padding-right: 2px;
}

#fr-income-calculation tr.income-footer-row td,
#fr-income-calculation tr.asset-footer-row td {
    padding-top: 20px;
}

/**** End File Review Module ****/



/*more helper spacing classes*/
.offset-left-margin {
    margin-left: -55px;
}

.line-height-lg {
    line-height: 59px;
}

/* Padding and Margin */
.padding-xs {
    padding: .25em;
}

.padding-sm {
    padding: .5em;
}

.padding-md {
    padding: 1em;
}

.padding-lg {
    padding: 1.5em;
}

.padding-xl {
    padding: 3em;
}

.padding-x-xs {
    padding: .25em 0;
}

.padding-x-sm {
    padding: .5em 0;
}

.padding-x-md {
    padding: 1em 0;
}

.padding-x-lg {
    padding: 1.5em 0;
}

.padding-x-xl {
    padding: 3em 0;
}

.padding-y-xs {
    padding: 0 .25em;
}

.padding-y-sm {
    padding: 0 .5em;
}

.padding-y-md {
    padding: 0 1em;
}

.padding-y-lg {
    padding: 0 1.5em;
}

.padding-y-xl {
    padding: 0 3em;
}

.padding-top-xs {
    padding-top: .25em;
}

.padding-top-sm {
    padding-top: .5em;
}

.padding-top-md {
    padding-top: 1em;
}

.padding-top-lg {
    padding-top: 1.5em;
}

.padding-top-xl {
    padding-top: 3em;
}

.padding-right-xs {
    padding-right: .25em;
}

.padding-right-sm {
    padding-right: .5em;
}

.padding-right-md {
    padding-right: 1em;
}

.padding-right-lg {
    padding-right: 1.5em;
}

.padding-right-xl {
    padding-right: 3em;
}

.padding-bottom-xs {
    padding-bottom: .25em;
}

.padding-bottom-sm {
    padding-bottom: .5em;
}

.padding-bottom-md {
    padding-bottom: 1em;
}

.padding-bottom-lg {
    padding-bottom: 1.5em;
}

.padding-bottom-xl {
    padding-bottom: 3em;
}

.padding-left-xs {
    padding-left: .25em;
}

.padding-left-sm {
    padding-left: .5em;
}

.padding-left-md {
    padding-left: 1em;
}

.padding-left-lg {
    padding-left: 1.5em;
}

.padding-left-xl {
    padding-left: 3em;
}

.margin-xs {
    margin: .25em;
}

.margin-sm {
    margin: .5em;
}

.margin-md {
    margin: 1em;
}

.margin-lg {
    margin: 1.5em;
}

.margin-xl {
    margin: 3em;
}

.margin-x-xs {
    margin: .25em 0;
}

.margin-x-sm {
    margin: .5em 0;
}

.margin-x-md {
    margin: 1em 0;
}

.margin-x-lg {
    margin: 1.5em 0;
}

.margin-x-xl {
    margin: 3em 0;
}

.margin-y-xs {
    margin: 0 .25em;
}

.margin-y-sm {
    margin: 0 .5em;
}

.margin-y-md {
    margin: 0 1em;
}

.margin-y-lg {
    margin: 0 1.5em;
}

.margin-y-xl {
    margin: 0 3em;
}

.margin-top-xs {
    margin-top: .25em;
}

.margin-top-sm {
    margin-top: .5em;
}

.margin-top-md {
    margin-top: 1em;
}

.margin-top-lg {
    margin-top: 1.5em;
}

.margin-top-xl {
    margin-top: 3em;
}

.margin-right-xs {
    margin-right: .25em;
}

.margin-right-sm {
    margin-right: .5em;
}

.margin-right-md {
    margin-right: 1em;
}

.margin-right-lg {
    margin-right: 1.5em;
}

.margin-right-xl {
    margin-right: 3em;
}

.margin-bottom-xs {
    margin-bottom: .25em;
}

.margin-bottom-sm {
    margin-bottom: .5em;
}

.margin-bottom-md {
    margin-bottom: 1em;
}

.margin-bottom-lg {
    margin-bottom: 1.5em;
}

.margin-bottom-xl {
    margin-bottom: 3em;
}

.margin-left-xs {
    margin-left: .25em;
}

.margin-left-sm {
    margin-left: .5em;
}

.margin-left-md {
    margin-left: 1em;
}

.margin-left-lg {
    margin-left: 1.5em;
}

.margin-left-xl {
    margin-left: 3em;
}

.spacer-lg {
    height: 24px;
}

/*Project Management CSS*/
.dropdown-header {
    color: black;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
}

.projectManagement .navbar {
    background-color: #222;
}


/*more helper spacing classes*/
.offset-left-margin {
    margin-left: -55px;
}

.line-height-lg {
    line-height: 59px;
}

/* Padding and Margin */
.padding-xs {
    padding: .25em;
}

.padding-sm {
    padding: .5em;
}

.padding-md {
    padding: 1em;
}

.padding-lg {
    padding: 1.5em;
}

.padding-xl {
    padding: 3em;
}

.padding-x-xs {
    padding: .25em 0;
}

.padding-x-sm {
    padding: .5em 0;
}

.padding-x-md {
    padding: 1em 0;
}

.padding-x-lg {
    padding: 1.5em 0;
}

.padding-x-xl {
    padding: 3em 0;
}

.padding-y-xs {
    padding: 0 .25em;
}

.padding-y-sm {
    padding: 0 .5em;
}

.padding-y-md {
    padding: 0 1em;
}

.padding-y-lg {
    padding: 0 1.5em;
}

.padding-y-xl {
    padding: 0 3em;
}

.padding-top-xs {
    padding-top: .25em;
}

.padding-top-sm {
    padding-top: .5em;
}

.padding-top-md {
    padding-top: 1em;
}

.padding-top-lg {
    padding-top: 1.5em;
}

.padding-top-xl {
    padding-top: 3em;
}

.padding-right-xs {
    padding-right: .25em;
}

.padding-right-sm {
    padding-right: .5em;
}

.padding-right-md {
    padding-right: 1em;
}

.padding-right-lg {
    padding-right: 1.5em;
}

.padding-right-xl {
    padding-right: 3em;
}

.padding-bottom-xs {
    padding-bottom: .25em;
}

.padding-bottom-sm {
    padding-bottom: .5em;
}

.padding-bottom-md {
    padding-bottom: 1em;
}

.padding-bottom-lg {
    padding-bottom: 1.5em;
}

.padding-bottom-xl {
    padding-bottom: 3em;
}

.padding-left-xs {
    padding-left: .25em;
}

.padding-left-sm {
    padding-left: .5em;
}

.padding-left-md {
    padding-left: 1em;
}

.padding-left-lg {
    padding-left: 1.5em;
}

.padding-left-xl {
    padding-left: 3em;
}

.margin-xs {
    margin: .25em;
}

.margin-sm {
    margin: .5em;
}

.margin-md {
    margin: 1em;
}

.margin-lg {
    margin: 1.5em;
}

.margin-xl {
    margin: 3em;
}

.margin-x-xs {
    margin: .25em 0;
}

.margin-x-sm {
    margin: .5em 0;
}

.margin-x-md {
    margin: 1em 0;
}

.margin-x-lg {
    margin: 1.5em 0;
}

.margin-x-xl {
    margin: 3em 0;
}

.margin-y-xs {
    margin: 0 .25em;
}

.margin-y-sm {
    margin: 0 .5em;
}

.margin-y-md {
    margin: 0 1em;
}

.margin-y-lg {
    margin: 0 1.5em;
}

.margin-y-xl {
    margin: 0 3em;
}

.margin-top-xs {
    margin-top: .25em;
}

.margin-top-sm {
    margin-top: .5em;
}

.margin-top-md {
    margin-top: 1em;
}

.margin-top-lg {
    margin-top: 1.5em;
}

.margin-top-xl {
    margin-top: 3em;
}

.margin-right-xs {
    margin-right: .25em;
}

.margin-right-sm {
    margin-right: .5em;
}

.margin-right-md {
    margin-right: 1em;
}

.margin-right-lg {
    margin-right: 1.5em;
}

.margin-right-xl {
    margin-right: 3em;
}

.margin-bottom-xs {
    margin-bottom: .25em;
}

.margin-bottom-sm {
    margin-bottom: .5em;
}

.margin-bottom-md {
    margin-bottom: 1em;
}

.margin-bottom-lg {
    margin-bottom: 1.5em;
}

.margin-bottom-xl {
    margin-bottom: 3em;
}

.margin-left-xs {
    margin-left: .25em;
}

.margin-left-sm {
    margin-left: .5em;
}

.margin-left-md {
    margin-left: 1em;
}

.margin-left-lg {
    margin-left: 1.5em;
}

.margin-left-xl {
    margin-left: 3em;
}

.spacer-lg {
    height: 24px;
}

/*Project Management CSS*/
.projectManagement .navbar {
    background-color: #222;
}










/*CSS Loaders*/

/*Ellipsis loader
Implementation <div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>*/
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 27px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #e62c2c;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 6px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 6px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 26px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 45px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}


/*Ring Loader*/
/*Implementation <div class="lds-dual-ring"></div>*/
.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 46px;
        height: 46px;
        margin: 1px;
        border-radius: 50%;
        border: 5px solid #e62c2c;
        border-color: #e62c2c transparent #e62c2c transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.calculate {
    height: 15px;
    width: 15px;
    background-image: url('../images/calculator.png');
    background-size: 15px 15px;
    cursor: pointer;
}

.btn-findings {
    height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 1px 1px;
    padding-left: 2px;
    padding-right: 2px;
    border: 1px solid #8A8A8A;
    border-radius: 4px;
}

    .btn-findings:hover {
        background-color: #9A9A9A
    }

.findings-item {
    height: 35px;
    border: 1px solid #7A7A7A;
    background-color: #CACACA;
    border-radius: 4px;
}

    .findings-item:hover {
        box-shadow: 0 0 2px 2px #CACACA;
    }

.findings-checkbox {
    cursor: pointer;
    margin-top: 9px !important;
    transform: scale(1.1);
}

.linklabel, .linkbox, .match-icon {
    margin-top: 7px;
}

.initToReview {
    background-color: #CA0000;
    color: white;
    border-radius: 4px;
    border: 1px solid #990000;
    margin-top: 5px;
}

    .initToReview:hover {
        background-color: #ff0000;
    }



/*Following code is for circular progress bars
        found here: https://www.cssscript.com/pure-css-circular-percentage-bar/
        License: MIT
    */
.rect-auto,
.c100.p51 .slice,
.c100.p52 .slice,
.c100.p53 .slice,
.c100.p54 .slice,
.c100.p55 .slice,
.c100.p56 .slice,
.c100.p57 .slice,
.c100.p58 .slice,
.c100.p59 .slice,
.c100.p60 .slice,
.c100.p61 .slice,
.c100.p62 .slice,
.c100.p63 .slice,
.c100.p64 .slice,
.c100.p65 .slice,
.c100.p66 .slice,
.c100.p67 .slice,
.c100.p68 .slice,
.c100.p69 .slice,
.c100.p70 .slice,
.c100.p71 .slice,
.c100.p72 .slice,
.c100.p73 .slice,
.c100.p74 .slice,
.c100.p75 .slice,
.c100.p76 .slice,
.c100.p77 .slice,
.c100.p78 .slice,
.c100.p79 .slice,
.c100.p80 .slice,
.c100.p81 .slice,
.c100.p82 .slice,
.c100.p83 .slice,
.c100.p84 .slice,
.c100.p85 .slice,
.c100.p86 .slice,
.c100.p87 .slice,
.c100.p88 .slice,
.c100.p89 .slice,
.c100.p90 .slice,
.c100.p91 .slice,
.c100.p92 .slice,
.c100.p93 .slice,
.c100.p94 .slice,
.c100.p95 .slice,
.c100.p96 .slice,
.c100.p97 .slice,
.c100.p98 .slice,
.c100.p99 .slice,
.c100.p100 .slice {
    clip: rect(auto, auto, auto, auto);
}

.pie,
.c100 .bar,
.c100.p51 .fill,
.c100.p52 .fill,
.c100.p53 .fill,
.c100.p54 .fill,
.c100.p55 .fill,
.c100.p56 .fill,
.c100.p57 .fill,
.c100.p58 .fill,
.c100.p59 .fill,
.c100.p60 .fill,
.c100.p61 .fill,
.c100.p62 .fill,
.c100.p63 .fill,
.c100.p64 .fill,
.c100.p65 .fill,
.c100.p66 .fill,
.c100.p67 .fill,
.c100.p68 .fill,
.c100.p69 .fill,
.c100.p70 .fill,
.c100.p71 .fill,
.c100.p72 .fill,
.c100.p73 .fill,
.c100.p74 .fill,
.c100.p75 .fill,
.c100.p76 .fill,
.c100.p77 .fill,
.c100.p78 .fill,
.c100.p79 .fill,
.c100.p80 .fill,
.c100.p81 .fill,
.c100.p82 .fill,
.c100.p83 .fill,
.c100.p84 .fill,
.c100.p85 .fill,
.c100.p86 .fill,
.c100.p87 .fill,
.c100.p88 .fill,
.c100.p89 .fill,
.c100.p90 .fill,
.c100.p91 .fill,
.c100.p92 .fill,
.c100.p93 .fill,
.c100.p94 .fill,
.c100.p95 .fill,
.c100.p96 .fill,
.c100.p97 .fill,
.c100.p98 .fill,
.c100.p99 .fill,
.c100.p100 .fill {
    position: absolute;
    border: 0.08em solid #307bbb;
    width: 0.84em;
    height: 0.84em;
    clip: rect(0em, 0.5em, 1em, 0em);
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.pie-fill,
.c100.p51 .bar:after,
.c100.p51 .fill,
.c100.p52 .bar:after,
.c100.p52 .fill,
.c100.p53 .bar:after,
.c100.p53 .fill,
.c100.p54 .bar:after,
.c100.p54 .fill,
.c100.p55 .bar:after,
.c100.p55 .fill,
.c100.p56 .bar:after,
.c100.p56 .fill,
.c100.p57 .bar:after,
.c100.p57 .fill,
.c100.p58 .bar:after,
.c100.p58 .fill,
.c100.p59 .bar:after,
.c100.p59 .fill,
.c100.p60 .bar:after,
.c100.p60 .fill,
.c100.p61 .bar:after,
.c100.p61 .fill,
.c100.p62 .bar:after,
.c100.p62 .fill,
.c100.p63 .bar:after,
.c100.p63 .fill,
.c100.p64 .bar:after,
.c100.p64 .fill,
.c100.p65 .bar:after,
.c100.p65 .fill,
.c100.p66 .bar:after,
.c100.p66 .fill,
.c100.p67 .bar:after,
.c100.p67 .fill,
.c100.p68 .bar:after,
.c100.p68 .fill,
.c100.p69 .bar:after,
.c100.p69 .fill,
.c100.p70 .bar:after,
.c100.p70 .fill,
.c100.p71 .bar:after,
.c100.p71 .fill,
.c100.p72 .bar:after,
.c100.p72 .fill,
.c100.p73 .bar:after,
.c100.p73 .fill,
.c100.p74 .bar:after,
.c100.p74 .fill,
.c100.p75 .bar:after,
.c100.p75 .fill,
.c100.p76 .bar:after,
.c100.p76 .fill,
.c100.p77 .bar:after,
.c100.p77 .fill,
.c100.p78 .bar:after,
.c100.p78 .fill,
.c100.p79 .bar:after,
.c100.p79 .fill,
.c100.p80 .bar:after,
.c100.p80 .fill,
.c100.p81 .bar:after,
.c100.p81 .fill,
.c100.p82 .bar:after,
.c100.p82 .fill,
.c100.p83 .bar:after,
.c100.p83 .fill,
.c100.p84 .bar:after,
.c100.p84 .fill,
.c100.p85 .bar:after,
.c100.p85 .fill,
.c100.p86 .bar:after,
.c100.p86 .fill,
.c100.p87 .bar:after,
.c100.p87 .fill,
.c100.p88 .bar:after,
.c100.p88 .fill,
.c100.p89 .bar:after,
.c100.p89 .fill,
.c100.p90 .bar:after,
.c100.p90 .fill,
.c100.p91 .bar:after,
.c100.p91 .fill,
.c100.p92 .bar:after,
.c100.p92 .fill,
.c100.p93 .bar:after,
.c100.p93 .fill,
.c100.p94 .bar:after,
.c100.p94 .fill,
.c100.p95 .bar:after,
.c100.p95 .fill,
.c100.p96 .bar:after,
.c100.p96 .fill,
.c100.p97 .bar:after,
.c100.p97 .fill,
.c100.p98 .bar:after,
.c100.p98 .fill,
.c100.p99 .bar:after,
.c100.p99 .fill,
.c100.p100 .bar:after,
.c100.p100 .fill {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.c100 {
    position: relative;
    font-size: 120px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    float: left;
    margin: 0 0.1em 0.1em 0;
    background-color: #cccccc;
}

    .c100 *,
    .c100 *:before,
    .c100 *:after {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .c100.center {
        float: none;
        margin: 0 auto;
    }

    .c100.big {
        font-size: 240px;
    }

    .c100.small {
        font-size: 80px;
    }

    .c100 > span {
        position: absolute;
        width: 100%;
        z-index: 1;
        left: 0;
        top: 0;
        width: 5em;
        line-height: 5em;
        font-size: 0.2em;
        color: #cccccc;
        display: block;
        text-align: center;
        white-space: nowrap;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.2s;
        -moz-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s;
        -webkit-transition-timing-function: ease-out;
        -moz-transition-timing-function: ease-out;
        -o-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .c100:after {
        position: absolute;
        top: 0.08em;
        left: 0.08em;
        display: block;
        content: " ";
        border-radius: 50%;
        background-color: #f5f5f5;
        width: 0.84em;
        height: 0.84em;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.2s;
        -moz-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s;
        -webkit-transition-timing-function: ease-in;
        -moz-transition-timing-function: ease-in;
        -o-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    .c100 .slice {
        position: absolute;
        width: 1em;
        height: 1em;
        clip: rect(0em, 1em, 1em, 0.5em);
    }

    .c100.p1 .bar {
        -webkit-transform: rotate(3.6deg);
        -moz-transform: rotate(3.6deg);
        -ms-transform: rotate(3.6deg);
        -o-transform: rotate(3.6deg);
        transform: rotate(3.6deg);
    }

    .c100.p2 .bar {
        -webkit-transform: rotate(7.2deg);
        -moz-transform: rotate(7.2deg);
        -ms-transform: rotate(7.2deg);
        -o-transform: rotate(7.2deg);
        transform: rotate(7.2deg);
    }

    .c100.p3 .bar {
        -webkit-transform: rotate(10.8deg);
        -moz-transform: rotate(10.8deg);
        -ms-transform: rotate(10.8deg);
        -o-transform: rotate(10.8deg);
        transform: rotate(10.8deg);
    }

    .c100.p4 .bar {
        -webkit-transform: rotate(14.4deg);
        -moz-transform: rotate(14.4deg);
        -ms-transform: rotate(14.4deg);
        -o-transform: rotate(14.4deg);
        transform: rotate(14.4deg);
    }

    .c100.p5 .bar {
        -webkit-transform: rotate(18deg);
        -moz-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        -o-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    .c100.p6 .bar {
        -webkit-transform: rotate(21.6deg);
        -moz-transform: rotate(21.6deg);
        -ms-transform: rotate(21.6deg);
        -o-transform: rotate(21.6deg);
        transform: rotate(21.6deg);
    }

    .c100.p7 .bar {
        -webkit-transform: rotate(25.2deg);
        -moz-transform: rotate(25.2deg);
        -ms-transform: rotate(25.2deg);
        -o-transform: rotate(25.2deg);
        transform: rotate(25.2deg);
    }

    .c100.p8 .bar {
        -webkit-transform: rotate(28.8deg);
        -moz-transform: rotate(28.8deg);
        -ms-transform: rotate(28.8deg);
        -o-transform: rotate(28.8deg);
        transform: rotate(28.8deg);
    }

    .c100.p9 .bar {
        -webkit-transform: rotate(32.4deg);
        -moz-transform: rotate(32.4deg);
        -ms-transform: rotate(32.4deg);
        -o-transform: rotate(32.4deg);
        transform: rotate(32.4deg);
    }

    .c100.p10 .bar {
        -webkit-transform: rotate(36deg);
        -moz-transform: rotate(36deg);
        -ms-transform: rotate(36deg);
        -o-transform: rotate(36deg);
        transform: rotate(36deg);
    }

    .c100.p11 .bar {
        -webkit-transform: rotate(39.6deg);
        -moz-transform: rotate(39.6deg);
        -ms-transform: rotate(39.6deg);
        -o-transform: rotate(39.6deg);
        transform: rotate(39.6deg);
    }

    .c100.p12 .bar {
        -webkit-transform: rotate(43.2deg);
        -moz-transform: rotate(43.2deg);
        -ms-transform: rotate(43.2deg);
        -o-transform: rotate(43.2deg);
        transform: rotate(43.2deg);
    }

    .c100.p13 .bar {
        -webkit-transform: rotate(46.800000000000004deg);
        -moz-transform: rotate(46.800000000000004deg);
        -ms-transform: rotate(46.800000000000004deg);
        -o-transform: rotate(46.800000000000004deg);
        transform: rotate(46.800000000000004deg);
    }

    .c100.p14 .bar {
        -webkit-transform: rotate(50.4deg);
        -moz-transform: rotate(50.4deg);
        -ms-transform: rotate(50.4deg);
        -o-transform: rotate(50.4deg);
        transform: rotate(50.4deg);
    }

    .c100.p15 .bar {
        -webkit-transform: rotate(54deg);
        -moz-transform: rotate(54deg);
        -ms-transform: rotate(54deg);
        -o-transform: rotate(54deg);
        transform: rotate(54deg);
    }

    .c100.p16 .bar {
        -webkit-transform: rotate(57.6deg);
        -moz-transform: rotate(57.6deg);
        -ms-transform: rotate(57.6deg);
        -o-transform: rotate(57.6deg);
        transform: rotate(57.6deg);
    }

    .c100.p17 .bar {
        -webkit-transform: rotate(61.2deg);
        -moz-transform: rotate(61.2deg);
        -ms-transform: rotate(61.2deg);
        -o-transform: rotate(61.2deg);
        transform: rotate(61.2deg);
    }

    .c100.p18 .bar {
        -webkit-transform: rotate(64.8deg);
        -moz-transform: rotate(64.8deg);
        -ms-transform: rotate(64.8deg);
        -o-transform: rotate(64.8deg);
        transform: rotate(64.8deg);
    }

    .c100.p19 .bar {
        -webkit-transform: rotate(68.4deg);
        -moz-transform: rotate(68.4deg);
        -ms-transform: rotate(68.4deg);
        -o-transform: rotate(68.4deg);
        transform: rotate(68.4deg);
    }

    .c100.p20 .bar {
        -webkit-transform: rotate(72deg);
        -moz-transform: rotate(72deg);
        -ms-transform: rotate(72deg);
        -o-transform: rotate(72deg);
        transform: rotate(72deg);
    }

    .c100.p21 .bar {
        -webkit-transform: rotate(75.60000000000001deg);
        -moz-transform: rotate(75.60000000000001deg);
        -ms-transform: rotate(75.60000000000001deg);
        -o-transform: rotate(75.60000000000001deg);
        transform: rotate(75.60000000000001deg);
    }

    .c100.p22 .bar {
        -webkit-transform: rotate(79.2deg);
        -moz-transform: rotate(79.2deg);
        -ms-transform: rotate(79.2deg);
        -o-transform: rotate(79.2deg);
        transform: rotate(79.2deg);
    }

    .c100.p23 .bar {
        -webkit-transform: rotate(82.8deg);
        -moz-transform: rotate(82.8deg);
        -ms-transform: rotate(82.8deg);
        -o-transform: rotate(82.8deg);
        transform: rotate(82.8deg);
    }

    .c100.p24 .bar {
        -webkit-transform: rotate(86.4deg);
        -moz-transform: rotate(86.4deg);
        -ms-transform: rotate(86.4deg);
        -o-transform: rotate(86.4deg);
        transform: rotate(86.4deg);
    }

    .c100.p25 .bar {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .c100.p26 .bar {
        -webkit-transform: rotate(93.60000000000001deg);
        -moz-transform: rotate(93.60000000000001deg);
        -ms-transform: rotate(93.60000000000001deg);
        -o-transform: rotate(93.60000000000001deg);
        transform: rotate(93.60000000000001deg);
    }

    .c100.p27 .bar {
        -webkit-transform: rotate(97.2deg);
        -moz-transform: rotate(97.2deg);
        -ms-transform: rotate(97.2deg);
        -o-transform: rotate(97.2deg);
        transform: rotate(97.2deg);
    }

    .c100.p28 .bar {
        -webkit-transform: rotate(100.8deg);
        -moz-transform: rotate(100.8deg);
        -ms-transform: rotate(100.8deg);
        -o-transform: rotate(100.8deg);
        transform: rotate(100.8deg);
    }

    .c100.p29 .bar {
        -webkit-transform: rotate(104.4deg);
        -moz-transform: rotate(104.4deg);
        -ms-transform: rotate(104.4deg);
        -o-transform: rotate(104.4deg);
        transform: rotate(104.4deg);
    }

    .c100.p30 .bar {
        -webkit-transform: rotate(108deg);
        -moz-transform: rotate(108deg);
        -ms-transform: rotate(108deg);
        -o-transform: rotate(108deg);
        transform: rotate(108deg);
    }

    .c100.p31 .bar {
        -webkit-transform: rotate(111.60000000000001deg);
        -moz-transform: rotate(111.60000000000001deg);
        -ms-transform: rotate(111.60000000000001deg);
        -o-transform: rotate(111.60000000000001deg);
        transform: rotate(111.60000000000001deg);
    }

    .c100.p32 .bar {
        -webkit-transform: rotate(115.2deg);
        -moz-transform: rotate(115.2deg);
        -ms-transform: rotate(115.2deg);
        -o-transform: rotate(115.2deg);
        transform: rotate(115.2deg);
    }

    .c100.p33 .bar {
        -webkit-transform: rotate(118.8deg);
        -moz-transform: rotate(118.8deg);
        -ms-transform: rotate(118.8deg);
        -o-transform: rotate(118.8deg);
        transform: rotate(118.8deg);
    }

    .c100.p34 .bar {
        -webkit-transform: rotate(122.4deg);
        -moz-transform: rotate(122.4deg);
        -ms-transform: rotate(122.4deg);
        -o-transform: rotate(122.4deg);
        transform: rotate(122.4deg);
    }

    .c100.p35 .bar {
        -webkit-transform: rotate(126deg);
        -moz-transform: rotate(126deg);
        -ms-transform: rotate(126deg);
        -o-transform: rotate(126deg);
        transform: rotate(126deg);
    }

    .c100.p36 .bar {
        -webkit-transform: rotate(129.6deg);
        -moz-transform: rotate(129.6deg);
        -ms-transform: rotate(129.6deg);
        -o-transform: rotate(129.6deg);
        transform: rotate(129.6deg);
    }

    .c100.p37 .bar {
        -webkit-transform: rotate(133.20000000000002deg);
        -moz-transform: rotate(133.20000000000002deg);
        -ms-transform: rotate(133.20000000000002deg);
        -o-transform: rotate(133.20000000000002deg);
        transform: rotate(133.20000000000002deg);
    }

    .c100.p38 .bar {
        -webkit-transform: rotate(136.8deg);
        -moz-transform: rotate(136.8deg);
        -ms-transform: rotate(136.8deg);
        -o-transform: rotate(136.8deg);
        transform: rotate(136.8deg);
    }

    .c100.p39 .bar {
        -webkit-transform: rotate(140.4deg);
        -moz-transform: rotate(140.4deg);
        -ms-transform: rotate(140.4deg);
        -o-transform: rotate(140.4deg);
        transform: rotate(140.4deg);
    }

    .c100.p40 .bar {
        -webkit-transform: rotate(144deg);
        -moz-transform: rotate(144deg);
        -ms-transform: rotate(144deg);
        -o-transform: rotate(144deg);
        transform: rotate(144deg);
    }

    .c100.p41 .bar {
        -webkit-transform: rotate(147.6deg);
        -moz-transform: rotate(147.6deg);
        -ms-transform: rotate(147.6deg);
        -o-transform: rotate(147.6deg);
        transform: rotate(147.6deg);
    }

    .c100.p42 .bar {
        -webkit-transform: rotate(151.20000000000002deg);
        -moz-transform: rotate(151.20000000000002deg);
        -ms-transform: rotate(151.20000000000002deg);
        -o-transform: rotate(151.20000000000002deg);
        transform: rotate(151.20000000000002deg);
    }

    .c100.p43 .bar {
        -webkit-transform: rotate(154.8deg);
        -moz-transform: rotate(154.8deg);
        -ms-transform: rotate(154.8deg);
        -o-transform: rotate(154.8deg);
        transform: rotate(154.8deg);
    }

    .c100.p44 .bar {
        -webkit-transform: rotate(158.4deg);
        -moz-transform: rotate(158.4deg);
        -ms-transform: rotate(158.4deg);
        -o-transform: rotate(158.4deg);
        transform: rotate(158.4deg);
    }

    .c100.p45 .bar {
        -webkit-transform: rotate(162deg);
        -moz-transform: rotate(162deg);
        -ms-transform: rotate(162deg);
        -o-transform: rotate(162deg);
        transform: rotate(162deg);
    }

    .c100.p46 .bar {
        -webkit-transform: rotate(165.6deg);
        -moz-transform: rotate(165.6deg);
        -ms-transform: rotate(165.6deg);
        -o-transform: rotate(165.6deg);
        transform: rotate(165.6deg);
    }

    .c100.p47 .bar {
        -webkit-transform: rotate(169.20000000000002deg);
        -moz-transform: rotate(169.20000000000002deg);
        -ms-transform: rotate(169.20000000000002deg);
        -o-transform: rotate(169.20000000000002deg);
        transform: rotate(169.20000000000002deg);
    }

    .c100.p48 .bar {
        -webkit-transform: rotate(172.8deg);
        -moz-transform: rotate(172.8deg);
        -ms-transform: rotate(172.8deg);
        -o-transform: rotate(172.8deg);
        transform: rotate(172.8deg);
    }

    .c100.p49 .bar {
        -webkit-transform: rotate(176.4deg);
        -moz-transform: rotate(176.4deg);
        -ms-transform: rotate(176.4deg);
        -o-transform: rotate(176.4deg);
        transform: rotate(176.4deg);
    }

    .c100.p50 .bar {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .c100.p51 .bar {
        -webkit-transform: rotate(183.6deg);
        -moz-transform: rotate(183.6deg);
        -ms-transform: rotate(183.6deg);
        -o-transform: rotate(183.6deg);
        transform: rotate(183.6deg);
    }

    .c100.p52 .bar {
        -webkit-transform: rotate(187.20000000000002deg);
        -moz-transform: rotate(187.20000000000002deg);
        -ms-transform: rotate(187.20000000000002deg);
        -o-transform: rotate(187.20000000000002deg);
        transform: rotate(187.20000000000002deg);
    }

    .c100.p53 .bar {
        -webkit-transform: rotate(190.8deg);
        -moz-transform: rotate(190.8deg);
        -ms-transform: rotate(190.8deg);
        -o-transform: rotate(190.8deg);
        transform: rotate(190.8deg);
    }

    .c100.p54 .bar {
        -webkit-transform: rotate(194.4deg);
        -moz-transform: rotate(194.4deg);
        -ms-transform: rotate(194.4deg);
        -o-transform: rotate(194.4deg);
        transform: rotate(194.4deg);
    }

    .c100.p55 .bar {
        -webkit-transform: rotate(198deg);
        -moz-transform: rotate(198deg);
        -ms-transform: rotate(198deg);
        -o-transform: rotate(198deg);
        transform: rotate(198deg);
    }

    .c100.p56 .bar {
        -webkit-transform: rotate(201.6deg);
        -moz-transform: rotate(201.6deg);
        -ms-transform: rotate(201.6deg);
        -o-transform: rotate(201.6deg);
        transform: rotate(201.6deg);
    }

    .c100.p57 .bar {
        -webkit-transform: rotate(205.20000000000002deg);
        -moz-transform: rotate(205.20000000000002deg);
        -ms-transform: rotate(205.20000000000002deg);
        -o-transform: rotate(205.20000000000002deg);
        transform: rotate(205.20000000000002deg);
    }

    .c100.p58 .bar {
        -webkit-transform: rotate(208.8deg);
        -moz-transform: rotate(208.8deg);
        -ms-transform: rotate(208.8deg);
        -o-transform: rotate(208.8deg);
        transform: rotate(208.8deg);
    }

    .c100.p59 .bar {
        -webkit-transform: rotate(212.4deg);
        -moz-transform: rotate(212.4deg);
        -ms-transform: rotate(212.4deg);
        -o-transform: rotate(212.4deg);
        transform: rotate(212.4deg);
    }

    .c100.p60 .bar {
        -webkit-transform: rotate(216deg);
        -moz-transform: rotate(216deg);
        -ms-transform: rotate(216deg);
        -o-transform: rotate(216deg);
        transform: rotate(216deg);
    }

    .c100.p61 .bar {
        -webkit-transform: rotate(219.6deg);
        -moz-transform: rotate(219.6deg);
        -ms-transform: rotate(219.6deg);
        -o-transform: rotate(219.6deg);
        transform: rotate(219.6deg);
    }

    .c100.p62 .bar {
        -webkit-transform: rotate(223.20000000000002deg);
        -moz-transform: rotate(223.20000000000002deg);
        -ms-transform: rotate(223.20000000000002deg);
        -o-transform: rotate(223.20000000000002deg);
        transform: rotate(223.20000000000002deg);
    }

    .c100.p63 .bar {
        -webkit-transform: rotate(226.8deg);
        -moz-transform: rotate(226.8deg);
        -ms-transform: rotate(226.8deg);
        -o-transform: rotate(226.8deg);
        transform: rotate(226.8deg);
    }

    .c100.p64 .bar {
        -webkit-transform: rotate(230.4deg);
        -moz-transform: rotate(230.4deg);
        -ms-transform: rotate(230.4deg);
        -o-transform: rotate(230.4deg);
        transform: rotate(230.4deg);
    }

    .c100.p65 .bar {
        -webkit-transform: rotate(234deg);
        -moz-transform: rotate(234deg);
        -ms-transform: rotate(234deg);
        -o-transform: rotate(234deg);
        transform: rotate(234deg);
    }

    .c100.p66 .bar {
        -webkit-transform: rotate(237.6deg);
        -moz-transform: rotate(237.6deg);
        -ms-transform: rotate(237.6deg);
        -o-transform: rotate(237.6deg);
        transform: rotate(237.6deg);
    }

    .c100.p67 .bar {
        -webkit-transform: rotate(241.20000000000002deg);
        -moz-transform: rotate(241.20000000000002deg);
        -ms-transform: rotate(241.20000000000002deg);
        -o-transform: rotate(241.20000000000002deg);
        transform: rotate(241.20000000000002deg);
    }

    .c100.p68 .bar {
        -webkit-transform: rotate(244.8deg);
        -moz-transform: rotate(244.8deg);
        -ms-transform: rotate(244.8deg);
        -o-transform: rotate(244.8deg);
        transform: rotate(244.8deg);
    }

    .c100.p69 .bar {
        -webkit-transform: rotate(248.4deg);
        -moz-transform: rotate(248.4deg);
        -ms-transform: rotate(248.4deg);
        -o-transform: rotate(248.4deg);
        transform: rotate(248.4deg);
    }

    .c100.p70 .bar {
        -webkit-transform: rotate(252deg);
        -moz-transform: rotate(252deg);
        -ms-transform: rotate(252deg);
        -o-transform: rotate(252deg);
        transform: rotate(252deg);
    }

    .c100.p71 .bar {
        -webkit-transform: rotate(255.6deg);
        -moz-transform: rotate(255.6deg);
        -ms-transform: rotate(255.6deg);
        -o-transform: rotate(255.6deg);
        transform: rotate(255.6deg);
    }

    .c100.p72 .bar {
        -webkit-transform: rotate(259.2deg);
        -moz-transform: rotate(259.2deg);
        -ms-transform: rotate(259.2deg);
        -o-transform: rotate(259.2deg);
        transform: rotate(259.2deg);
    }

    .c100.p73 .bar {
        -webkit-transform: rotate(262.8deg);
        -moz-transform: rotate(262.8deg);
        -ms-transform: rotate(262.8deg);
        -o-transform: rotate(262.8deg);
        transform: rotate(262.8deg);
    }

    .c100.p74 .bar {
        -webkit-transform: rotate(266.40000000000003deg);
        -moz-transform: rotate(266.40000000000003deg);
        -ms-transform: rotate(266.40000000000003deg);
        -o-transform: rotate(266.40000000000003deg);
        transform: rotate(266.40000000000003deg);
    }

    .c100.p75 .bar {
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .c100.p76 .bar {
        -webkit-transform: rotate(273.6deg);
        -moz-transform: rotate(273.6deg);
        -ms-transform: rotate(273.6deg);
        -o-transform: rotate(273.6deg);
        transform: rotate(273.6deg);
    }

    .c100.p77 .bar {
        -webkit-transform: rotate(277.2deg);
        -moz-transform: rotate(277.2deg);
        -ms-transform: rotate(277.2deg);
        -o-transform: rotate(277.2deg);
        transform: rotate(277.2deg);
    }

    .c100.p78 .bar {
        -webkit-transform: rotate(280.8deg);
        -moz-transform: rotate(280.8deg);
        -ms-transform: rotate(280.8deg);
        -o-transform: rotate(280.8deg);
        transform: rotate(280.8deg);
    }

    .c100.p79 .bar {
        -webkit-transform: rotate(284.40000000000003deg);
        -moz-transform: rotate(284.40000000000003deg);
        -ms-transform: rotate(284.40000000000003deg);
        -o-transform: rotate(284.40000000000003deg);
        transform: rotate(284.40000000000003deg);
    }

    .c100.p80 .bar {
        -webkit-transform: rotate(288deg);
        -moz-transform: rotate(288deg);
        -ms-transform: rotate(288deg);
        -o-transform: rotate(288deg);
        transform: rotate(288deg);
    }

    .c100.p81 .bar {
        -webkit-transform: rotate(291.6deg);
        -moz-transform: rotate(291.6deg);
        -ms-transform: rotate(291.6deg);
        -o-transform: rotate(291.6deg);
        transform: rotate(291.6deg);
    }

    .c100.p82 .bar {
        -webkit-transform: rotate(295.2deg);
        -moz-transform: rotate(295.2deg);
        -ms-transform: rotate(295.2deg);
        -o-transform: rotate(295.2deg);
        transform: rotate(295.2deg);
    }

    .c100.p83 .bar {
        -webkit-transform: rotate(298.8deg);
        -moz-transform: rotate(298.8deg);
        -ms-transform: rotate(298.8deg);
        -o-transform: rotate(298.8deg);
        transform: rotate(298.8deg);
    }

    .c100.p84 .bar {
        -webkit-transform: rotate(302.40000000000003deg);
        -moz-transform: rotate(302.40000000000003deg);
        -ms-transform: rotate(302.40000000000003deg);
        -o-transform: rotate(302.40000000000003deg);
        transform: rotate(302.40000000000003deg);
    }

    .c100.p85 .bar {
        -webkit-transform: rotate(306deg);
        -moz-transform: rotate(306deg);
        -ms-transform: rotate(306deg);
        -o-transform: rotate(306deg);
        transform: rotate(306deg);
    }

    .c100.p86 .bar {
        -webkit-transform: rotate(309.6deg);
        -moz-transform: rotate(309.6deg);
        -ms-transform: rotate(309.6deg);
        -o-transform: rotate(309.6deg);
        transform: rotate(309.6deg);
    }

    .c100.p87 .bar {
        -webkit-transform: rotate(313.2deg);
        -moz-transform: rotate(313.2deg);
        -ms-transform: rotate(313.2deg);
        -o-transform: rotate(313.2deg);
        transform: rotate(313.2deg);
    }

    .c100.p88 .bar {
        -webkit-transform: rotate(316.8deg);
        -moz-transform: rotate(316.8deg);
        -ms-transform: rotate(316.8deg);
        -o-transform: rotate(316.8deg);
        transform: rotate(316.8deg);
    }

    .c100.p89 .bar {
        -webkit-transform: rotate(320.40000000000003deg);
        -moz-transform: rotate(320.40000000000003deg);
        -ms-transform: rotate(320.40000000000003deg);
        -o-transform: rotate(320.40000000000003deg);
        transform: rotate(320.40000000000003deg);
    }

    .c100.p90 .bar {
        -webkit-transform: rotate(324deg);
        -moz-transform: rotate(324deg);
        -ms-transform: rotate(324deg);
        -o-transform: rotate(324deg);
        transform: rotate(324deg);
    }

    .c100.p91 .bar {
        -webkit-transform: rotate(327.6deg);
        -moz-transform: rotate(327.6deg);
        -ms-transform: rotate(327.6deg);
        -o-transform: rotate(327.6deg);
        transform: rotate(327.6deg);
    }

    .c100.p92 .bar {
        -webkit-transform: rotate(331.2deg);
        -moz-transform: rotate(331.2deg);
        -ms-transform: rotate(331.2deg);
        -o-transform: rotate(331.2deg);
        transform: rotate(331.2deg);
    }

    .c100.p93 .bar {
        -webkit-transform: rotate(334.8deg);
        -moz-transform: rotate(334.8deg);
        -ms-transform: rotate(334.8deg);
        -o-transform: rotate(334.8deg);
        transform: rotate(334.8deg);
    }

    .c100.p94 .bar {
        -webkit-transform: rotate(338.40000000000003deg);
        -moz-transform: rotate(338.40000000000003deg);
        -ms-transform: rotate(338.40000000000003deg);
        -o-transform: rotate(338.40000000000003deg);
        transform: rotate(338.40000000000003deg);
    }

    .c100.p95 .bar {
        -webkit-transform: rotate(342deg);
        -moz-transform: rotate(342deg);
        -ms-transform: rotate(342deg);
        -o-transform: rotate(342deg);
        transform: rotate(342deg);
    }

    .c100.p96 .bar {
        -webkit-transform: rotate(345.6deg);
        -moz-transform: rotate(345.6deg);
        -ms-transform: rotate(345.6deg);
        -o-transform: rotate(345.6deg);
        transform: rotate(345.6deg);
    }

    .c100.p97 .bar {
        -webkit-transform: rotate(349.2deg);
        -moz-transform: rotate(349.2deg);
        -ms-transform: rotate(349.2deg);
        -o-transform: rotate(349.2deg);
        transform: rotate(349.2deg);
    }

    .c100.p98 .bar {
        -webkit-transform: rotate(352.8deg);
        -moz-transform: rotate(352.8deg);
        -ms-transform: rotate(352.8deg);
        -o-transform: rotate(352.8deg);
        transform: rotate(352.8deg);
    }

    .c100.p99 .bar {
        -webkit-transform: rotate(356.40000000000003deg);
        -moz-transform: rotate(356.40000000000003deg);
        -ms-transform: rotate(356.40000000000003deg);
        -o-transform: rotate(356.40000000000003deg);
        transform: rotate(356.40000000000003deg);
    }

    .c100.p100 .bar {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .c100:hover {
        cursor: default;
    }

        .c100:hover > span {
            width: 3.33em;
            line-height: 3.33em;
            font-size: 0.3em;
            color: #307bbb;
        }

        .c100:hover:after {
            top: 0.04em;
            left: 0.04em;
            width: 0.92em;
            height: 0.92em;
        }

    .c100.dark {
        background-color: #777777;
    }

        .c100.dark .bar,
        .c100.dark .fill {
            border-color: #c6ff00 !important;
        }

        .c100.dark > span {
            color: #777777;
        }

        .c100.dark:after {
            background-color: #666666;
        }

        .c100.dark:hover > span {
            color: #c6ff00;
        }

    .c100.green .bar,
    .c100.green .fill {
        border-color: #4db53c !important;
    }

    .c100.green:hover > span {
        color: #4db53c;
    }

    .c100.green.dark .bar,
    .c100.green.dark .fill {
        border-color: #5fd400 !important;
    }

    .c100.green.dark:hover > span {
        color: #5fd400;
    }

    .c100.orange .bar,
    .c100.orange .fill {
        border-color: #dd9d22 !important;
    }

    .c100.orange:hover > span {
        color: #dd9d22;
    }

    .c100.red .bar,
    .c100.red .fill {
        border-color: red !important;
    }

    .c100.red:hover > span {
        color: #dd9d22;
    }

    .c100.orange.dark .bar,
    .c100.orange.dark .fill {
        border-color: red !important;
    }

    .c100.orange.dark:hover > span {
        color: #e08833;
    }

#page-topbar .page-topbar-link {
    cursor: pointer;
    padding: 7px 8px;
    transition: 0.1s;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #f58a38, #ff9244);
    border: 1px solid #c25706;
    box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851, 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

    #page-topbar .page-topbar-link:hover {
        background-image: linear-gradient(to bottom, #f57c20, #f57c20);
        border-color: #773300;
        color: black;
        box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851;
    }

#page-topbar {
    list-style-type: none;
    padding: 0px;
    margin: 12px 15px;
}

    #page-topbar li {
        margin-top: 10px;
        padding-left: 4px;
        display: inline-block;
    }

#notificationsList tr:hover {
    background-color: #f5f5f5;
}

#notificationsList .dropdown-header {
    color: #777;
    text-align: left;
    font-size: 12px;
}

#heading #page-topbar-container {
    display: inline-block;
    width: unset;
    float: unset;
    font-weight: normal;
}

.disabledDiv {
    pointer-events: none;
    opacity: 0.4;
    cursor:not-allowed;
}
.disabledContainer {
    opacity: 0.4;
    cursor:not-allowed;
}
@media print {
    div {
        page-break-before: avoid;
        page-break-after: avoid;
    }
    
    #printNoDisplay {
        display: none !important;

    }

    .page-breaker {
        page-break-before: always;
    }
}
