@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;300&display=swap');

html {
    position: relative;
    min-height: 100%;
}

* {
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-x: hidden !important;
    padding-top: 50px;
}

#main {
    padding-right: 0 !important;
    padding-left: 0px !important;
}

.custom-form label {
    margin-top: 10px;
}

#footer {
    padding-left: 20px !important;
}

/*print-sql-report .dropdown {
    margin-top: 1px !important;
}*/

.glyphicon {
    top: 0 !important;
}

.container {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.panel {
    border: none;
    box-shadow: none;
}

.panel-body {
    background-color: #f5f5f5 !important;
}

.panel-heading {
    color: #000 !important;
    background-color: white !important;
}

.pull-right .btn {
    height: 40px;
}

.custom-table-heading {
    background: white;
    padding: 10px !important;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.custom-table-secondary-heading {
    background: #f1f1f1;
    padding: 12px 10px 16px !important;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}
/* Container check mark input */
.container-checkmark {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-weight: 200;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container-checkmark input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 5px !important;
    background-color: #ccc !important;
    transition: background-color 0.1s ease;
}

/* On mouse-over, add a grey background color */
.container-checkmark:hover input ~ .checkmark {
    background-color: #ccc !important;
}

/* When the checkbox is checked, add a blue background */
.container-checkmark input:checked ~ .checkmark {
    transition: background-color 0.1s ease;
    background-color: #2196F3 !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkmark input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkmark .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

* {
    box-sizing: border-box;
}

.wrapper {
    margin: 0 auto;
    width: 960px;
}

.pdf-controls {
    width: 100%;
    display: block;
    background: #eee;
    padding: 1em;
}

.rotate0 {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.rotate90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: 20px;
}

.rotate180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    transform-origin: -20px;
}

.fixed {
    position: fixed;
    top: 0;
    left: calc(50% - 480px);
    z-index: 100;
    width: 100%;
    padding: 1em;
    background: rgba(238, 238, 238,.9);
    width: 960px;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    color: #fff;
    background-color: #777;
    border-radius: 10px;
}

.badge-warning {
    background-color: #EBCB8B;
}

.btn-icon-round {
    border-radius: 50%;
    padding: 5px 7px;
}

.form-login {
    max-width: 330px;
    padding: 0px 15px 5px 15px;
    margin: 0 auto;
}

    .form-login .form-login-heading {
        margin-top: 30px;
        margin-bottom: 0;
        text-align: center;
        font-weight: 700;
    }

    .form-login .form-control {
        position: relative;
        height: auto;
        border: none;
        border-bottom: 1px solid #555;
        border-radius: 0;
        box-shadow: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 8px;
        font-size: 16px;
    }

        .form-login .form-control:focus {
            z-index: 2;
        }

    .form-login input[type="password"] {
        margin-top: 14px;
        margin-bottom: 5px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .form-login .btn[type="submit"] {
        border-radius: 22px;
        margin-top: 35px;
    }

    .form-login .img-wrap {
        text-align: center;
        padding: 35px 0;
    }

        .form-login .img-wrap img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            overflow: hidden;
        }

.dropdown-item {
    display: block;
    width: 100%;
    padding: 3px 1.5rem;
    clear: both;
    font-weight: 400;
    color: #292b2c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
}

.loader {
    border: 5px solid white;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width: 1200px;
    }
}

.button {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    background-color: orange;
}

.btn-round {
    border-radius: 50%;
}


.select2 > .select2-choice.ui-select-match {
    /* Because of the inclusion of Bootstrap */
    height: 29px;
}

.selectize-control > .selectize-dropdown {
    top: 36px;
}
/* Some additional styling to demonstrate that append-to-body helps achieve the proper z-index layering. */
.select-box {
    background: #fff;
    position: relative;
    z-index: 1;
}

.alert-info.positioned {
    margin-top: 1em;
    position: relative;
    z-index: 10000; /* The select2 dropdown has a z-index of 9999 */
}

.sketch {
    border: 1px dashed;
    height: 100%;
    position: relative;
}

.tmp_canvas {
    position: absolute;
    left: 0px;
    right: 0;
    bottom: 0;
    top: 0;
    cursor: crosshair;
}

table.th-style th {
    background-color: transparent !important;
}

.modal-ex-lg {
    width: 1150px;
}

/* Customize the label (the container) */
.container-ch {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container-ch input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-ch:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-ch input:checked ~ .checkmark {
    background-color: #337ab7;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-ch input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-ch .checkmark:after {
    left: 10px;
    top: 5px;
    width: 6px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-spinner .modal-content {
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    font-size: 15px;
}

.modal-spinner-text .modal-content {
    text-align: left;
}

.modal-spinner .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 300px;
}

.modal-spinner-text .modal-dialog {
    text-align: left;
    width: 250px;
}

input.invalid {
    border-color: red;
}

input.error {
    border: 1px solid red;
}

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #f8f8f8; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

    /* The navigation menu links */
    .sidenav h4 {
        padding-left: 8px;
        margin-bottom: 4px;
        text-decoration: none;
        /*font-size: 25px;*/
        /*color: #818181;*/
        display: block;
        transition: 0.3s;
    }

    .sidenav p {
        margin: 12px;
        text-decoration: none;
        /*font-size: 25px;*/
        /*color: #818181;*/
        display: block;
        transition: 0.3s;
    }

    /* When you mouse over the navigation links, change their color */
    /*.sidenav a:hover {
            color: #f1f1f1;
        }*/

    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

.related-topic-section {
    margin-top: 18px;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
}

.position-relative {
    position: relative;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: none;
    border-bottom: 1px solid #337ab7;
}

.nav-menu {
    display: flex;
    align-items: center;
}

    .nav-menu > * {
        margin-top: 13px;
        margin-right: 12px;
    }
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

.text {
    display: block;
    width: 120px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

li.help-item:hover {
    text-decoration: underline;
    color: #337ab7;
}

.border-0 {
    border-width: 0;
}

.bg-white {
    background-color: #fff;
}

.navbar-default {
    background: #37A2DB;
    background: #fff;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.cases-col-2 {
    padding-top: 8px;
}

.ui-select-bootstrap > .ui-select-match > .btn {
    border: 1px solid #909090;
}

.subtitle {
    color: #484848;
    font-size: 16px;
    font-weight: 600;
}

.table-label {
    color: #696969;
    font-size: 13px;
    margin: 5px 0;
}

.table > thead > tr > th {
    background-color: #FAFAFA;
    border-bottom: none;
    font-size: 13px;
    padding-top: 14px;
    padding-bottom: 14px;
    white-space: nowrap;
    vertical-align: middle;
    border-bottom: 3px solid #337ab7;
}

.table th, .table th a {
    color: #696969;
    text-decoration: none;
}

table > tbody > tr > td {
    color: #4D5054;
    font-weight: 600;
    vertical-align: middle !important;
    border-top: 2px solid #F8F8F8;
    white-space: nowrap;
}

table > tbody > tr:first-child > td {
    border-top: none !important;
}

.list-group-item {
    border: none;
    border-top: 2px solid #F8F8F8 !important;
}

@media (min-width: 992px) {
    .cases-col-2 {
        padding-top: 35px;
    }

    .cases-date-range {
        text-align: right;
    }
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding-top: 12px;
    border-top: 1px solid #337ab7;
}

.pagination { /*
    margin: 0 0 3px 125px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.5s ease;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5%;
}

.pagination-container {
    background: white
}

#wrapper.toggled .pagination {
    margin: 0 0 3px 25px;
    transition: all 0.5s ease;
}
/* Sidebar */
#wrapper {
    padding-left: 250px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-height: 100%;
    background: #f5f5f5 !important;
}

    #wrapper.toggled {
        padding-left: 50px;
    }

#sidebar-wrapper {
    z-index: 15;
    position: fixed;
    left: 0;
    width: 250px;
    height: 100%;
    display: flex;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 50px;
}

.sidebar-icon-bar {
    width: 50px;
    height: 100%;
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    flex-shrink: 0;
    z-index: 100;
}

.sidebar-brand-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.sidebar-brand-icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.sidebar-icons {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-y: auto;
    overflow-x: visible;
    padding-bottom: 55px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.sidebar-icons::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sidebar-icon-item {
    width: 50px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F5F5;
    font-size: 16px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.sidebar-icon-item i {
    width: 16px;
    text-align: center;
}

.sidebar-icon-item:hover {
    background: rgba(255,255,255,0.1);
}

.sidebar-icon-item {
    position: relative;
    z-index: 1000;
}

.icon-dropdown {
    display: none;
    position: fixed;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    z-index: 10000;
}

.sidebar-icon-item:hover .icon-dropdown {
    display: block;
}

.icon-dropdown.show {
    display: block;
}

.icon-dropdown-header {
    padding: 10px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #4D5054;
    font-size: 14px;
}

.icon-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon-dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.icon-dropdown-menu li:last-child {
    border-bottom: none;
}

.icon-dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #4D5054;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
}

.icon-dropdown-menu li a:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
    text-decoration: none;
}

.sidebar-content-area {
    width: 200px;
    height: 100%;
    background: #fff;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled .sidebar-content-area {
    width: 0;
    opacity: 0;
    overflow: hidden;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding-top: 50px;
    min-height: 100%;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}

.form-viewcase table {
    table-layout: fixed;
}

    .form-viewcase table > tbody > tr > td, .form-reviewletter table > tbody > tr > td {
        white-space: initial
    }

.customerDropForm .row div {
    padding-top: 8px;
}

.customerDropForm {
    width: 40em;
    height: 34em;
    overflow: auto;
}

/* Sidebar Styles */
.sidebar-nav {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 0;
    line-height: 40px;
    list-style: none;
    cursor: pointer;
    position: relative;
}

.sidebar-nav li ul {
    padding-left: 0;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #4D5054;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #000;
    background: rgba(0,0,0,0.05);
}

.sidebar-nav li a .arrow {
    flex-shrink: 0;
    margin-left: 5px;
    font-size: 12px;
}

.sidebar-nav > .sidebar-brand {
    font-size: 18px;
    line-height: 60px;
    width: 100%;
    margin: 0 0 15px;
    border-radius: 0;
    overflow: hidden;
}

.sidebar-nav > .sidebar-brand a {
    height: 50px;
    color: #999999;
    justify-content: center;
    width: 200px;
    padding-left: 5px;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

.sidebar-nav li .submenu-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    list-style: none;
    padding-left: 0;
    background: #fff;
}

.sidebar-nav li .submenu-collapse.submenu-open {
    max-height: 500px;
}

.sidebar-nav li .submenu-collapse li {
    line-height: 40px;
}

.sidebar-nav li .submenu-collapse li a {
    display: block;
    color: #4D5054;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
}

.sidebar-nav li .submenu-collapse li a:hover {
    background: rgba(0,0,0,0.05);
}

.arrow:before {
    content: "\f054";
}

.sidebar-nav li a[aria-expanded=true] .arrow:before,
.submenu-open + a .arrow:before {
    content: "\f078";
}

#wrapper.toggled .sidebar-nav > li:hover .submenu-collapse {
    position: absolute;
    left: 50px;
    top: 45px;
    background: #fff;
    width: 200px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0.5rem 0rem 0.5rem rgb(0 0 0 / 10%);
    z-index: 999;
}

#wrapper.toggled .sidebar-nav > li:hover .submenu-collapse li a {
    padding-left: 15px;
}

.btn-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    outline: 0;
    border-radius: 0;
    padding: 0;
    font-size: 20px;
    color: #F5F5F5;
    background: #000;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.btn-toggle:hover {
    background: rgba(0,0,0,0.8);
}

.btn-toggle .fas::before {
    content: "\f100";
}

#wrapper.toggled .btn-toggle .fas::before {
    content: "\f101";
}

.navbar {
    margin-bottom: 0 !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 5;
}

.setting-dropdown .dropdown-menu {
    background: #FAFAFA;
    border: none;
    padding: 0;
    padding-bottom: 6px;
    text-align: left;
    top: initial;
    bottom: 42px;
    margin: 5px;
    left: 5px;
    right: initial;
}

    .setting-dropdown .dropdown-menu li {
        margin: 4px 6px 0;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
        background: #fff;
        padding: 0;
        text-indent: 0;
    }

    .setting-dropdown .dropdown-menu i {
        margin-right: 15px !important;
    }

    .setting-dropdown .dropdown-menu li a {
        padding: 4px 20px;
        display: block;
    }

    .setting-dropdown .dropdown-menu li.nav-divider {
        display: none !important;
    }
/* Profile Dropdown */
.profile-dropdown {
    float: right;
    margin-top: 12px;
    margin-right: 10px;
}

    .profile-dropdown > a {
        text-align: right;
        font-size: 12px;
        cursor: pointer;
    }

    .profile-dropdown .username {
        font-weight: 600;
        font-size: 12px;
    }

    .profile-dropdown .dropdown-menu {
        background: #FAFAFA;
        border: none;
        padding-bottom: 6px;
        text-align: left;
        right: 0;
        left: initial;
    }

        .profile-dropdown .dropdown-menu li:first-child {
            margin: 0;
            background: #5D91F4;
            color: #fff;
            margin-bottom: 4px;
            padding: 20px;
            line-height: 1;
        }

            .profile-dropdown .dropdown-menu li:first-child h5 {
                margin: 0;
                line-height: 1;
                font-weight: 600;
                margin-bottom: 4px;
                font-size: 16px;
            }

        .profile-dropdown .dropdown-menu li:not(:first-child) {
            margin: 4px 6px 0;
            box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
            background: #fff;
        }

        .profile-dropdown .dropdown-menu i {
            margin-right: 15px !important;
        }

        .profile-dropdown .dropdown-menu li a {
            padding: 10px 20px;
        }

        .profile-dropdown .dropdown-menu li.nav-divider {
            display: none;
        }

.dashboard-widget {
    background-color: #337ab7;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    margin-bottom: 10px;
}

    .dashboard-widget .d-flex {
        display: flex;
        height: 90px;
    }

        .dashboard-widget .d-flex .icon-wrap {
            background: rgba(255, 255, 255, 0.1);
            flex-basis: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }

        .dashboard-widget .d-flex .title-wrap {
            flex-grow: 1;
            justify-content: center;
            padding-left: 20px;
            display: flex;
            flex-direction: column;
        }

            .dashboard-widget .d-flex .title-wrap .title {
                font-size: 30px;
                font-weight: 700;
                margin: 0;
            }

            .dashboard-widget .d-flex .title-wrap .sub-title {
                opacity: 0.8;
            }

.filter-dropdown button.btn.btn-default {
    outline: none;
}

.filter-dropdown {
    position: initial;
}

    .filter-dropdown > .dropdown-menu {
        right: 0;
        left: initial;
        max-width: fit-content;
        min-width: none;
        width: 100%;
        padding: 20px;
        top: calc(100% + 15px);
        border: none;
    }

.letter-title:hover {
    background-color: #ebebeb
}

.filter-dropdown.open .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}

.filter-dropdown .dropdown-menu h4 {
    color: #484848;
    font-size: 16px;
    font-weight: 600;
}

.filter-dropdown .dropdown-menu label {
    color: #696969;
    font-size: 13px;
    font-weight: 600;
    margin-top: 7px;
}

.filter-dropdown .dropdown-menu .btn-primary {
    margin-left: 5px;
}

@media(max-width:767px) {
    .d-xs-hide {
        display: none !important;
    }

    .profile-dropdown {
        float: right;
        margin-right: 8px;
        margin-top: 12px !important;
    }

    #wrapper.toggled .sidebar-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.2);
        z-index: 2;
    }

    .sidebar-nav {
        overflow: hidden;
        margin-top: 50px;
    }

    .sidebar-nav-bottom {
        bottom: 5px;
        top: initial;
    }

    .btn-toggle {
        display: block;
    }

    .scrollable-tabs .panel-body {
        height: calc(100vh + -310px);
        overflow-y: auto;
    }

    .scrollable-tabs.casesubmission .panel-body {
        height: calc(100vh + -235px);
    }

    .nav > li > a {
        padding: 5px 2px;
    }
}

@media(min-width:768px) {
    #wrapper {
        padding-left: 250px;
    }

    .d-md-hide {
        display: none !important;
    }

    #wrapper.toggled {
        padding-left: 50px;
    }

        #wrapper.toggled .content-logo {
            display: initial !important;
        }

    #sidebar-wrapper {
        min-width: 260px;
    }

    .sidebar-nav-bottom {
        bottom: 50px;
        top: initial;
    }

    .sidebar-nav li {
        margin: 2px;
        border-radius: 10px;
        overflow: hidden;
    }

        .sidebar-nav li ul {
            padding-left: 16px;
        }

    #wrapper.toggled .sidebar-nav > li > .collapse {
        display: none;
    }

    #wrapper.toggled .sidebar-nav > li:hover {
        overflow: visible;
        position: relative;
        margin-right: -4px;
        background: #fff;
        border-radius: 10px 0 0 10px;
    }

        #wrapper.toggled .sidebar-nav > li:hover a > span > i {
            color: #337ab7;
        }

        #wrapper.toggled .sidebar-nav > li:hover a {
            overflow: hidden;
        }

        #wrapper.toggled .sidebar-nav > li:hover .collapse {
            position: absolute;
            background: #fff;
            z-index: 100000000;
            left: 0;
            margin-left: 50px;
            display: block !important;
            top: 0;
            padding: 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0.5rem 0rem 0.5rem rgb(0 0 0 / 10%);
        }

            #wrapper.toggled .sidebar-nav > li:hover .collapse li {
                padding-left: 0;
            }

    #wrapper.toggled #sidebar-wrapper {
        width: 50px;
    }

    #wrapper.toggled.sidebar-hover {
        /* padding-left: 250px; */
    }

        #wrapper.toggled.sidebar-hover #sidebar-wrapper {
            /* width: 250px; */
        }

    #page-content-wrapper {
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }

    .sidebar-icon-bar .btn-toggle {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 50px;
        outline: 0;
        border-radius: 0;
        padding: 0;
        font-size: 20px;
        color: #F5F5F5;
        background: transparent;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
    }

        .sidebar-icon-bar .btn-toggle:hover {
            background: rgba(255,255,255,0.1);
        }

        .sidebar-icon-bar .btn-toggle .fas::before {
            content: "\f100"
        }

    #wrapper.toggled .sidebar-icon-bar .btn-toggle .fas::before {
        content: "\f101"
    }

    .sidebar-content-area .sidebar-nav {
        margin-top: 0;
    }

    .sidebar-content-area .sidebar-brand {
        text-align: center;
        height: 60px;
        line-height: 60px;
        margin-bottom: 15px;
    }

    .sidebar-content-area .sidebar-nav li {
        margin: 2px;
        border-radius: 10px;
        overflow: hidden;
    }

    .sidebar-content-area .sidebar-nav li a {
        color: #4D5054;
        font-weight: 600;
    }

    .sidebar-content-area .sidebar-nav li a:hover {
        background: rgba(0,0,0,0.05);
    }

    .sidebar-content-area .sidebar-nav li a .arrow {
        flex-shrink: 0;
        margin-left: 5px;
    }

    .sidebar-content-area .sidebar-nav li a .arrow:before {
        content: "\f054";
    }

    .sidebar-content-area .sidebar-nav li .submenu-open + a .arrow:before {
        content: "\f078";
    }



    .sidebar-nav li[aria-expanded=true] a .arrow:before {
        content: "\f078";
    }

    .sidebar-nav li:hover a, .sidebar-nav li[aria-expanded=true] a {
        color: #000;
    }

        .sidebar-nav li:hover a > span > i, .sidebar-nav li[aria-expanded=true] a > span > i {
            color: #fff;
        }

    .navbar {
        left: 0;
    }

    #wrapper.toggled .navbar {
        left: 50px;
    }
    /* End Sidebar */

    .md-datepicker-calendar-pane {
        z-index: 9999999999999999999999999 !important;
    }

    .h-100 {
        height: 100%;
    }

    .nav.nav-tabs-wizard {
        display: flex;
        position: relative;
        border: none;
        justify-content: space-between;
    }

        .nav.nav-tabs-wizard:before {
            position: absolute;
            content: '';
            width: 100%;
            top: 50%;
            border-bottom: 1px solid gray;
        }

        .nav.nav-tabs-wizard > li {
            float: none;
            margin: 0;
        }

            .nav.nav-tabs-wizard > li > a {
                border-radius: 50%;
                border: 1px solid #ddd;
            }

    .scrollable-tabs .panel-body {
        height: calc(100vh + -252px);
        overflow-y: auto;
    }

    .scrollable-tabs.casesubmission .panel-body {
        height: calc(100vh + -215px);
    }
}

.ui-select-bootstrap .ui-select-match {
    overflow: hidden;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ddd;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #888;
}


.lookup-value-title {
    padding: 0px !important
}

.filter-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.table-lookup-value {
    margin-top: 15px;
    border: #337ab7 1px solid
}

.table-lookup-header {
    background: white !important;
    border-bottom: 0 !important;
    /*font-size: 1.6rem !important;*/
    height: 6rem !important
}

.table-lookup-value tr {
    border: 1px solid #ddd !important;
    background: #FAFAFA
}

    .table-lookup-value tr:hover {
        background: #f1f1f1 !important
    }

    .table-lookup-value tr:last-child td:first-child {
        border-radius: 10px !important;
    }

    .table-lookup-value tr:last-child td:last-child {
        border-radius: 10px !important;
    }

}

.ui-select-choices-row-inner {
    height: 25px;
}

.form-warning {
    display: block;
    color: #FF8A80;
    margin-top: 4px;
    margin-left: 10px;
}

table > tbody > tr > td {
    white-space: unset;
}


/*  table > tbody > tr > td:first-child {
        vertical-align: unset !important;
    }*/

.edit-me span {
    border-color: #cccccc !important;
}

.ledger-table-body:before {
    content: "@";
    display: block;
    line-height: 10px;
    text-indent: -99999px;
}


.print-letter-container .print-report {
    right: unset !important;
}

.setting-menu {
    overflow: auto;
    height: 500px
}

.ack-footer {
    position: fixed;
    left: 0;
    bottom: 20px;
    color: white !important;
    background-color: red !important;
    width: 100%;
    text-align: center;
}


/*styles for the expire page*/
.expire-main {
    padding: 30px
}

.expire-inner {
    background: white;
    height: 77vh;
    border: 1px solid #dddddd;
}

.expire-inner-parent {
    padding-top: 10%;
    margin-left: auto;
    display: flex;
    justify-content: center;
}

.expire-icon {
    font-size: 17rem;
    height: 34px;
    color: red;
}

.expire-text {
    font-size: 3rem;
    font-weight: bold;
    padding-top: 65px;
    padding-left: 15px;
    color: #213967;
}

/* ========================================
   CUSTOMER LEVEL REPORTS STYLES
   Styles for customer and service level reporting pages
   ======================================== */

#customerReportsContainer {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

#customerReportsContainer * {
    box-sizing: border-box;
}

#customerReportsContainer .toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#customerReportsContainer .toast {
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 500px;
    font-size: 14px;
    color: #fff;
}

#customerReportsContainer .toast-success {
    background-color: #51A351;
    border-color: #51A351;
}

#customerReportsContainer .toast-error {
    background-color: #BD362F;
    border-color: #BD362F;
}

#customerReportsContainer .toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-left: 16px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

#customerReportsContainer .toast-close:hover {
    opacity: 1;
}

#customerReportsContainer .panel-primary {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

#customerReportsContainer .panel-primary > .panel-heading {
    background-color: #337ab7 !important;
    border-color: #337ab7 !important;
    color: #fff !important;
    padding: 10px 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: 0;
    display: block !important;
    visibility: visible !important;
}

#customerReportsContainer .panel-primary > .panel-heading h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
    display: block !important;
    visibility: visible !important;
}

#customerReportsContainer .panel-body {
    padding: 20px;
    background: #fff;
}

#customerReportsContainer .ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
    height: 26px;
    line-height: 22px;
}

#customerReportsContainer .ui-select-multiple.ui-select-bootstrap {
    height: auto !important;
    min-height: 34px;
}

#customerReportsContainer .ui-select-multiple.ui-select-bootstrap .ui-select-match {
    height: auto !important;
    min-height: 34px;
}

#customerReportsContainer .form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#customerReportsContainer .form-group {
    margin-bottom: 0;
}

#customerReportsContainer .form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

#customerReportsContainer .form-control {
    height: 34px;
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
}

#customerReportsContainer .form-control:focus {
    border-color: #66afe9;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

#customerReportsContainer .radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

#customerReportsContainer .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: #333;
    font-weight: normal;
}

#customerReportsContainer .radio-label input[type="radio"] {
    margin-right: 6px;
    margin-top: 0;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

#customerReportsContainer .date-range-section {
    margin-bottom: 15px;
}

#customerReportsContainer .date-range-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

#customerReportsContainer .date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

#customerReportsContainer .date-preset-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#customerReportsContainer .btn-preset {
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

#customerReportsContainer .btn-preset:hover {
    background: #e6e6e6;
    border-color: #adadad;
}

#customerReportsContainer .btn-preset:active {
    background: #d4d4d4;
}

#customerReportsContainer .btn-preset.active {
    background: #337ab7;
    border-color: #2e6da4;
    color: #fff;
}

#customerReportsContainer .btn-preset.active:hover {
    background: #286090;
    border-color: #204d74;
}

#customerReportsContainer .btn-preset:disabled {
    cursor: not-allowed;
}

#customerReportsContainer .btn-preset:disabled:hover {
    background: #fff;
    border-color: #ccc;
}

#customerReportsContainer .btn-preset.active:disabled {
    background: #337ab7;
    border-color: #2e6da4;
    color: #fff;
    cursor: not-allowed;
}

#customerReportsContainer .btn-preset.active:disabled:hover {
    background: #337ab7;
    border-color: #2e6da4;
}

#customerReportsContainer .form-control:disabled {
    cursor: not-allowed;
}

#customerReportsContainer .full-width-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#customerReportsContainer .required-indicator {
    color: #d9534f;
    margin-left: 2px;
    font-weight: bold;
}

#customerReportsContainer .action-buttons {
    display: flex;
    gap: 8px;
    padding-top: 15px;
}

#customerReportsContainer .btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid;
    font-weight: normal;
}

#customerReportsContainer .btn-default {
    background: #fff;
    border-color: #ccc;
    color: #333;
}

#customerReportsContainer .btn-default:hover:not(:disabled) {
    background: #e6e6e6;
    border-color: #adadad;
}

#customerReportsContainer .btn-primary {
    background: #337ab7;
    border-color: #2e6da4;
    color: #fff;
}

#customerReportsContainer .btn-primary:hover:not(:disabled) {
    background: #286090;
    border-color: #204d74;
}

#customerReportsContainer .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#customerReportsContainer .btn i {
    margin-right: 4px;
}

#customerReportsContainer .summary-section {
    margin-top: 25px;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#customerReportsContainer .summary-filters-display {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
}

#customerReportsContainer .filter-item {
    font-size: 12px;
    color: #555;
}

#customerReportsContainer .filter-item strong {
    color: #333;
    margin-right: 5px;
}

#customerReportsContainer .status-badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

#customerReportsContainer .status-active {
    background: #d1fae5;
    color: #065f46;
}

#customerReportsContainer .status-pending {
    background: #fef3c7;
    color: #92400e;
}

#customerReportsContainer .status-completed {
    background: #dbeafe;
    color: #1e40af;
}

#customerReportsContainer .status-closed {
    background: #e5e7eb;
    color: #374151;
}

#customerReportsContainer .empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

#customerReportsContainer .results-count {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
}

#customerReportsContainer .summary-section table thead th {
    font-weight: bold !important;
}

#customerReportsContainer .table thead th {
    font-weight: bold !important;
}

#customerReportsContainer .summary-section table thead th:nth-child(7),
#customerReportsContainer .summary-section table tbody td:nth-child(7) {
    min-width: 250px;
    max-width: 350px;
}

#customerReportsContainer .print-only-content {
    display: none;
}

#customerReportModal .table thead th {
    font-weight: bold !important;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(1),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(1) {
    min-width: 220px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(2),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(2) {
    min-width: 180px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(3),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(3) {
    min-width: 150px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(4),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(4) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(5),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(5) {
    min-width: 140px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(6),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(6) {
    min-width: 200px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(7),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(7) {
    min-width: 400px;
    max-width: 600px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(8),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(8) {
    min-width: 130px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(9),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(9) {
    min-width: 100px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(10),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(10) {
    min-width: 100px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(11),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(11) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(12),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(12) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(13),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(13) {
    min-width: 150px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(14),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(14) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(15),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(15) {
    min-width: 130px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(16),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(16) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(17),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(17) {
    min-width: 180px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(18),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(18) {
    min-width: 150px;
}

#customerReportModal .table thead[ng-if*="customer"] th:nth-child(n+19),
#customerReportModal .table tbody[ng-if*="customer"] td:nth-child(n+19) {
    min-width: 150px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(1),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(1) {
    min-width: 250px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(2),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(2) {
    min-width: 220px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(3),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(3) {
    min-width: 180px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(4),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(4) {
    min-width: 150px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(5),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(5) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(6),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(6) {
    min-width: 140px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(7),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(7) {
    min-width: 200px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(8),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(8) {
    min-width: 400px;
    max-width: 600px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(9),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(9) {
    min-width: 130px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(10),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(10) {
    min-width: 100px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(11),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(11) {
    min-width: 100px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(12),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(12) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(13),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(13) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(14),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(14) {
    min-width: 150px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(15),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(15) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(16),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(16) {
    min-width: 220px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(17),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(17) {
    min-width: 130px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(18),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(18) {
    min-width: 120px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(19),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(19) {
    min-width: 180px;
}

#customerReportModal .table thead[ng-if*="service"] th:nth-child(20),
#customerReportModal .table tbody[ng-if*="service"] td:nth-child(20) {
    min-width: 150px;
}

@media (max-width: 768px) {
    #customerReportsContainer .form-row-2col,
    #customerReportsContainer .date-row,
    #customerReportsContainer .full-width-row {
        grid-template-columns: 1fr;
    }

    #customerReportsContainer .action-buttons {
        flex-direction: column;
    }

    #customerReportsContainer .btn {
        width: 100%;
    }
}

/* ======================================== END CUSTOMER LEVEL REPORTS STYLES */
