/* MODALS START */
.modal-header-success {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #5cb85c;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-warning {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #f0ad4e;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-danger {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #d9534f;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-info {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #5bc0de;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-primary {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #428bca;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* MODALS END */

.page-header {
    margin: 5px 0 5px 0;
    color: #008269;
    border: none;
}

.page-header h1 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.panel-heading.page-header {
    margin: 0;
}

table.dataTable thead th {
    color: #fff;
    text-align: left;
    background-image: linear-gradient(#20c9a7, #008269);
}

.table-bordered {
    border: 1px solid #008269;
}

table.dataTable tbody:hover > tr:hover td {
    background: #fffcd3;
    color: #000;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1;
    border-radius: 3px;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-bottom-width: 0;
}

::selection {
    background: #008269 !important;
    color: #FFFFFF !important;
}

::-moz-selection { /* Firefox */
    background: #008269 !important;
    color: #FFFFFF !important;
}

a {
    color: #008269;
    text-decoration: none;
}

div.dataTables_wrapper div.dataTables_processing {
    background: #008269 !important;
    color: #FFFFFF !important;
    z-index: 9999999 !important;
    position: fixed !important;
    top: 100px !important;
}

.starter-template {
    padding: 40px 0;
}

.navbar-inverse {
    background-color: #fff;
    border-color: #ccc;
}

.navbar {
    #min-height: 60px;
}

.navbar-brand > img {
    margin-top: -1px;
}

.navbar-inverse .navbar-nav > li > a {
    display: block;
    color: #008269 !important;
    position: relative;
    line-height: 5px;
    vertical-align: middle;
    text-transform: capitalize;
    border-bottom: 4px solid transparent !important;
}

.navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
    color: #008269 !important;
    border-bottom: 4px solid #fede4b !important;
    background-color: transparent;
    color: #000 !important;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
    color: #008269 !important;
    border-bottom: 4px solid #fede4b !important;
    background-color: transparent !important;
    color: #000 !important;
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #008269;
}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: #ccc;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
    background-color: #eee;
}

.navbar-inverse {
    background-color: #fff;
    border-color: #ccc;
    border-top: 10px solid #008269;
}

.nav > li > a {
    padding: 10px 20px;
}

/* Submenu CSS start */
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display:block;
}
.dropdown-submenu>a:after {
    display:block;
    content:" ";
    float:right;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
    float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;
}
/* Submenu CSS END */

.main-content {
    margin-top: 50px;
    margin-bottom: 50px;
}

#loginpage .input-group {
    margin-bottom: 20px;
}

#loginpage {
    background: #008269;
}

.login-box {
    background: #FFF;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 30px 70px 30px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.login-box h2 {
    text-align: left;
}

.forgot-password {
    margin-top: -10px;
}

.h1, h1 {
    font-size: 26px;
    margin-bottom: 25px;
}

h1 span {
    display: block;
    font-size: 22px;
    margin-top: 10px;
}

.h2, h2 {
    font-size: 20px;
}

.h3, h3 {
    font-size: 18px;
}

.btn-green {
    color: #fff;
    background-color: #008269 !important;
    border-color: #008269 !important;
}

.btn-green:hover {
    color: #fff;
    opacity: 0.9;
}

.changepassword {
    max-width: 400px;
    margin: 0 auto;
}

.strong {
    font-weight: bold;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 0;
}

.details-tables td, th {
    padding: 5px 15px;
}

.red {
    color: #FF0000;
}

.green {
    color: #008269;
}

.blue {
    color: #06C;
}

.spacer-25 {
    margin-bottom: 25px;
}

.spacer-15 {
    margin-bottom: 15px;
}

.spacer-20 {
    margin-bottom: 20px;
}

.action-bt {
    color: #000;
    font-size: 20px;
}

.action-bt a {
    color: #000;
}

.checkbox-scroll {
    height: 150px;
    overflow: auto;
    width: 100%;
    background: #eee;
    padding: 6px 10px;
    margin-bottom: 15px;
}

.checkbox-scroll label {
    display: block;
    font-weight: normal;
}

.addcustomer-field {
    margin: 0 0 -15px 0;
}

.displaying-text {
    float: right;
    margin-top: 14px;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    vertical-align: inherit;
}

.table tr:first-child {
    background: #eee;
    text-transform: capitalize;
}

#myaccount-page .table tr:first-child {
    background: #FFF;
}

#Report-page .table tr:first-child {
    background: #FFF;
}

.counsels-field {
    max-width: 180px;
    margin: 0 auto;
}

.role-description {
    margin-top: 5px;
}

.welcomebox {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.welcomebox h3 {
    margin: 0 0 0 0;
}

.small, small {
    font-size: 60%;
}

.file-listing-main {
    background: #eee;
    padding: 10px;
    min-height: 55px;
}

.note {
    background: #fbd1d0;
    padding: 6px 10px;
}

.payments-lists {
    text-align: right;
    float: right;
    line-height: 10px;
}

.pagination {
    float: right;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #008269;
    border-color: #008269;
}

.pagination > li > a, .pagination > li > span {
    color: #333;
}

.searchbox {
    position: relative !important;
    margin-bottom: 60px;
}

.red-highlight {
    background: rgba(244, 67, 54, 0.14);
}

.graybox {
    background: rgba(0, 130, 105, 0.18);
    color: #FFFFFF;
    padding: 20px 20px;
    margin: 0px 15px;
    float: left;
    width: 30%;
    text-transform: capitalize;
    font-size: 18px;
}

.graybox2 {
    background: rgba(0, 130, 105, 0.18);
    color: #FFFFFF;
    padding: 20px 20px;
    margin: 0px 2%;
    float: left;
    width: 21%;
    text-transform: capitalize;
    font-size: 18px;
}

.graybox3 {
    background: rgba(0, 130, 105, 0.18);
    color: #FFFFFF;
    padding: 20px 20px;
    margin: 0px 18px;
    float: right;
    width: 250px;
    text-transform: capitalize;
    font-size: 18px;
    min-height: 120px;
}

.inctax {
    font-size: 12px !important;
    margin: 0px 0 0px 0px;
    display: block;
}

.box-num {
    font-size: 30px;
    display: block;
    margin-bottom: -10px;
}

.green-bg {
    background: #0db595;
}

.red-bg {
    background: #FF5E5E;
}

.blue-bg {
    background: #48A4FF;
}

.yellow-bg {
    background: #ff9e11;
}

.lightcoral-bg {
    background: #f08080;
}

label {
    text-transform: capitalize;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    text-transform: capitalize;
}

::-moz-placeholder { /* Firefox 19+ */
    text-transform: capitalize;
}

:-ms-input-placeholder { /* IE 10+ */
    text-transform: capitalize;
}

:-moz-placeholder { /* Firefox 18- */
    text-transform: capitalize;
}

.panel-title {
    font-size: 18px;
}

div#paymentBlueBox {
    margin-right: 0px !important;
}

.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.case-details-box {
    max-width: 400px;
}

.table-responsive {
    margin: 0 0 20px 0;
}

/*Desktop*/

@media (min-width: 768px) {
    .navbar-nav {
        float: right;
        margin-top: 13px;

    }

    .navbar-nav > li {
        border-right: 1px solid #ccc !important;
    }

    .navbar-nav > li > a {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .login-box {
        padding: 50px 100px 70px 100px;
    }

    .pull-right2 {
        float: right !important;
    }

    .create-rolls {
        width: 500px !important;
        float: left !important;
    }

    .select-rolls {
        width: 300px !important;
        float: right !important;
    }

    .col-md-22 {
        width: 14% !important;
        float: left;
        margin-right: 12px;
    }

    .col-md-11 {
        width: 8% !important;
        float: left;
        margin-right: 10px;
    }

    .counsels-fields {
        margin-left: 10%;
    }

    .col-md-2 input[type=date] {
        width: 140px !important;
        padding: 0 0px 0 8px;
    }

    .paymenthistory {
        float: right;
        width: 430px;
        margin-bottom: -50px !important;
    }

    .paymenthistory-title {
        margin: 20px 0 -10px 0;
    }

    .note {
        margin-top: 26px;
    }

    .payments-lists {
        width: 352px;
        position: relative;
        top: 48px;
    }

    .searchbox {
        left: 130px !important;
    }

    .input-w78 {
        width: 78%;
        float: left;
    }

    .action-bt2 {
        float: left;
        position: relative;
        left: 10px;
    }

    .spacer-25-2 {
        margin-bottom: 25px;
    }

    .myright {
        float: right;
        max-width: 500px;
        margin-right: 22px !important;
    }

    .buttons-excel {
        color: #fff;
        background-color: #008269 !important;
        border-color: #008269 !important;
        font-weight: bold !important;
    }

    .buttons-excel:hover {
        color: #fff !important;
        opacity: 0.9 !important;
    }

    div#redFlagTable_filter {
        float: right !important;
        margin-bottom: 6px !important;
    }

}

@media (max-width: 990px) {
    .select2-container {
        width: 100% !important;
    }

    label {
        margin-top: 14px;
    }

    div#divLawFirm {
        margin-top: -18px;
    }
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #008269;
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #333;
    }

    .details-tables {
        margin-top: 35px;
    }

    .addcustomer-field {
        margin: 0 0 10px 0;
    }

    .upload-browser {
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .paymenthistory-title {
        margin-bottom: 12px;
    }

    .searchbox .col-md-5 {
        width: 80%;
        float: left;
    }

    .searchbox .col-md-2 {
        width: 20% !important;
        float: left;
    }

    .changecounsel-bt {
        margin-top: 10px;
    }

    .graybox {
        margin: 5px 5px;
        width: 30%;
    }

    .table-responsive {
        -ms-overflow-style: scrollbar !important;
        border: 0px solid #ddd !important;
        padding-bottom: 24px !important;
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
        white-space: unset !important;
    }

    div#redFlagTable_filter {
        float: right;
        margin-bottom: 6px;
    }

}

@media only screen and (min-width: 960px) and (max-width: 991px) {
    .graybox {
        margin: 0px 10px;
    }

    .graybox2 {
        min-height: 120px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .navbar-nav > li > a {
        padding: 12px 10px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .graybox {
        margin: 0px 1%;
    }

    .graybox2 {
        margin: 5px 5px;
        width: 48%;

    }
}

/*---------------iPhone & Samsung Mobiles landscape---------------*/
/*___________________________________________________________________*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .graybox2 {
        margin: 5px 5px;
        width: 48%;

    }

}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .graybox {
        margin: 5px 0;
        width: 100%;
    }

    .graybox2 {
        margin: 5px 0;
        width: 100%;
    }

    .graybox3 {
        margin: 5px 0;
    }

}

span.file-listing {
    word-wrap: break-word;
}

table td {
    max-width: 90px !important;
    word-wrap: break-word !important;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: normal !important;
}

/*Table in Payment Details on Payments page Create Tab*/
table#tbl {
    width: 100% !important;
}

table#printRecieptBudgetTable td {
    max-width: none !important;
}

table.dataTable {
    width: 100% !important;
}

.help-block {
    position: relative;
    font-size: 12px;
    top: 5px;
    margin-top: 0px !important;
    padding: 0 20px 0 0;
    line-height: normal;
    margin-bottom: -24px !important;
}

.help-block2 {
    font-size: 12px;
    color: #a94442;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

.page-errors .form-group {
    margin-bottom: 42px !important;
}

.buttons-excel {
    color: #fff;
    background-color: #008269 !important;
    border-color: #008269 !important;
    font-weight: bold !important;
}

.buttons-excel:hover {
    color: #fff !important;
    opacity: 0.9 !important;
}

.select2-container .select2-selection--single {
    height: 33px;
}

/*Custom CSS*/
#status_graph {
    max-width: 1140px !important;
    text-align: center !important;
}

#status_graph .graybox2 {
    width: 360px !important;
    margin: 0px 0px 10px 7px !important;
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important;
}

#status_graph2 {
    max-width: 1140px !important;
    text-align: center !important;
}

#status_graph2 .graybox2 {
    width: 360px !important;
    margin: 0px 0px 10px 7px !important;
    float: none !important;
    display: inline-block !important;
    vertical-align: top !important;
}

.graybox2 > span {
    bottom: 14% !important;
}

.select2-container {
    height: 50px !important;
    margin-bottom: -10px !important;
}

.wrapper > div.dataTables_length {
    display: inline;
    float: left;
}

.wrapper > div.dataTableBuilder_processing {
    display: inline;
    float: right;
}

.searchcontainer {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    #padding-right: 8px;
    position: relative;
    z-index: 99;
}

.searcharea {
    float: right;
}

.searchfield {
    float: left;
    margin-right: 10px;
    max-width: 68%;
}

.searchbutton {
    float: left;
    margin-top: 25px;
}

.table-bordered {
    border: 1px solid #ddd !important;
}

.disabled {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

.dataTable tfoot {
    display: table-header-group;
}

.rtitle {
    white-space: normal;
    line-height: 16px;
}

.message span {
    font-size: 18px;
    border: 1px solid #cccccc;
    padding: 5px 15px;
    margin-top: 7px;
    text-align: center !important;
    display: block;
    background: rgba(254, 222, 75, 0.21);
}

.check-highlight label.control-label {
    background: #f9efc3;
    padding: 2px 10px 2px 30px;
    margin: 19px 0 0 0;
}

.dateFieldPadding {
    padding: 6px 12px 6px 12px !important;
    cursor: pointer;
}

.input-field-error {
    border: 1px solid #a94442;
}

.label-red {
    color: #a94442;
}

.check-highlight label.control-label {
    background: #f9efc3;
    padding: 2px 10px 2px 30px;
    margin: 19px 0 0 0;
}

.timeBarredRows {
    background-color: #ffcccc !important;
    color: black;
}

/*For File Uploader Required*/
#rquploader {
    margin: -26px 0px 0 20px;
    color: red;
}

#rquploaderdel{
    margin: -26px 0px 0 20px;
    color: red;
}

.deleted:before {
    content: "Deleted";
    font-size: 24px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255 0 0 / 5%);
    text-align: right;
    padding: 3%;
    text-transform: uppercase;
    color: red;
}

.disabled-checkbox:before {
    content: "";
    background: transparent;
    padding: 15px 70px;
    position: absolute;
    z-index: 999;
}

/*Styles for SBP Logo*/
.navbar-brand {
    height: auto;
    padding: 5px 0px 5px 0px;
}

.navbar-brand > img {
    margin-top: 0;
}

.navbar-inverse .navbar-nav > li > a {
    padding-top: 30px;
    padding-bottom: 25px;
    font-weight: bold !important;
}

.navbar-nav {
    margin-top: 0;
}
.checkbox-align {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.tag-parent{
    display: flex;
    width: 100%;
    border: 1px solid #cccccc;
    padding: 4px;
    min-height: 35px;
    border-radius: 4px;
}
.tag-container{
    display: flex;
    margin: 0px 8px;
}
.tag-main{
    width: fit-content;
    border: 1px solid black;
    padding: 2px 4px;
    border-radius: 3px;
    background: #cccccc57;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper{margin:0px 5px}
.remove-tag{
    border: 1px solid grey;
    padding: 0px 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
    border-radius: 3px;
    background: #eeeeee;
}

.tag-container {
    display: block !important;
    max-width: 1080px;
}

.tag-main {
    border: 1px solid #777 !important;
}

.tag-container .wrapper {
    display: inline-block;
    margin-bottom: 6px;
}


/*Custom CSS Styles */


#status_graph2 {
    max-width: 1152px !important;
    text-align: center !important;
    position: relative;
    left: -5px;
    width: 103% !important;
}

#status_graph2 .graybox2 {
    padding: 14px 10px 14px 15px !important;
    /* height: auto; */
    text-align: center;
    font-size: 24px;
    margin: 0px 6px 0px 6px !important;
    border-radius: 5px;
    font-weight: 600;
}

#status_graph2 .graybox2 .box-num {
    float: none;
    background: rgb(255 255 255 / 30%);
    padding: 3px 10px 3px 10px;
    width: 130px;
	margin: 0 auto;
    border: 2px solid rgb(255 255 255 / 45%);
    line-height: normal;
    text-align: center;
    font-size: 26px;
	margin-top: 10px
}




#status_graph {
    max-width: 1200px !important;
    text-align: center !important;
    position: relative;
    left: -15px;
    width: 104% !important;
}

#status_graph .graybox2 {
    padding: 14px 10px 14px 15px !important;
    /* height: auto; */
    text-align: center;
    font-size: 19px;
    margin: 4px 6px !important;
    border-radius: 5px;
    font-weight: 600;
	width: 32% !important;
}

#status_graph .graybox2 .box-num {
    float: none;
    background: rgb(255 255 255 / 30%);
    padding: 3px 10px 3px 10px;
    width: 130px;
	margin: 5% auto;
    border: 2px solid rgb(255 255 255 / 45%);
    line-height: normal;
    text-align: center;
    font-size: 26px;
	/* margin-top: 10px */
}


.fc-day-grid-event .fc-content .fc-title span {
    font-weight: 800;
    margin-right: 0;
    text-align: left !important;
    padding: 5px 0px 2px 0px;
    display: block;
    border-top: 0px solid #ffffff7a;
}

.fc-day-grid-event .fc-content {
    white-space: normal !important;
}

td.fc-event-container {
    padding-bottom: 15px !important;
}

.fc-event, .fc-event-dot {
    background-color: #c6e8da !important;
    color: #333 !important;
    border: 0px solid #008269 !important;
    padding: 5px 10px !important;
	box-shadow: 0px 15px 10px -15px #11111173;
}

.fc-event:hover {
	opacity: 0.9;
}

.sub-table-details tr:first-child {
    background: transparent !important;
}


.sub-table-details tr td {
    border: 5px solid #FFF;
    padding: 7px 10px 7px 10px;
}

.sub-table-details tbody tr td:first-child {
    width: auto !important;
    max-width: unset !important;
}

.case-no-status {
    margin: -10px 0 0 0;
    border: 1px solid #ddd;
    float: left;
    width: 100%;
    padding: 0 10px;
    border-bottom: none;
}

.case-no-status h4.casenumber {
    float: left;
	font-size: 20px;
}

.case-no-status h4.casestatus {
    float: right;
	font-size: 20px;
}

.casetable tr.table-header td {
    padding: 10px 20px 10px 13px;
    font-size: 18px;
}

/*Mobile ONLY*/
@media screen and (max-width: 768px) {
#status_graph2 .graybox2 {
		font-size: 16px;
		line-height: 36px;
		width: 96% !important;
		margin-bottom: 10px !important;
	}

	#status_graph2 .graybox2 .box-num {
		padding: 3px 10px 3px 10px;
		width: 98px;
		font-size: 20px;
	}

	#status_graph .graybox2 {
		margin: 0px 6px 10px 6px !important;
		width: 100% !important;
	}

	#status_graph {
		left: -5px !important;
		width: 104% !important;
	}

	.case-no-status h4.casestatus {
		float: left;
	}

}
