:root {
    --bs-black: #000000;
    --bs-white: #ffffff;
    --primary-color: #3f6ad8;
    --secondary-color: #5ab3e4;
    --bs-gray-f1: #ced4da;
    --bs-primary-font: "Roboto";
    --bs-green-300: #3ac47d;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-secondary-gray: #6c757d;
    --bs-gray-700: #495057;
    --bs-primary-gray: #343a40;
    --bs-gray-900: #212529;
    /* media query*/
    --bs-width2xl: 1920px;
    --bs-min_widthxl: 1600px;
    --bs-max_widthxl: 1599px;
    --bs-min_width2lg: 1441px;
    --bs-max_width2lg: 1440px;
    --bs-widthxlg: 1249px;
    --bs-widthlg: 1199px;
    --bs-width2md: 1024px;
    --bs-min_widthmd: 992px;
    --bs-max_widthmd: 991px;
    --bs-min_width2sm: 768px;
    --bs-max_width2sm: 767px;
    --bs-widthsm: 640px;
    --bs-min_widthxs: 576px;
    --bs-max_widthxs: 575px;
}

:root {
    --bs-font-weight-light: 300;
    --bs-font-weight-regular: 500;
    --bs-font-weight-medium: 600;
    --bs-font-weight-bold: 700;
    --bs-line-height-fit: 100%;
    --bs-line-height-min: 120%;
    --bs-line-height-medium: 140%;
    --bs-line-height-max: 150%;
    --bs-font-size-small: 14px;
    --bs-font-size-medium: 16px;
    --bs-font-size-regular: 18px;
    --bs-font-size-max: 24px;
}

/*====================== FONTS STYLE =================*/
@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Medium.woff2") format("woff2"), url("../../fonts/Roboto-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Regular.woff2") format("woff2"), url("../../fonts/Roboto-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Light.woff2") format("woff2"), url("../../fonts/Roboto-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Black.woff2") format("woff2"), url("../../fonts/Roboto-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('/fonts/InstrumentSans-Bold.woff2') format('woff2'), url('/fonts/InstrumentSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: clip;
    font-family: Roboto, sans-serif !important;
}

img {
    max-width: 100%;
    height: auto;
}

.bg-primary-dark {
    background-color: var(--bs-primary-color);
}

.bg-secondary-blue {
    background-color: var(--bs-secondary-color);
}

.bg-black {
    background-color: var(--bs-black);
}

.bg-white {
    background-color: var(--bs-white);
}

.bg-gray {
    background-color: var(--bs-secondary-gray);
}

.bg-dark {
    background-color: var(--bs-primary-gray);
}

.bg-gray-light {
    background-color: var(--bs-gray-f1);
}

/*text */
h2 {
    font-size: 24px;
}

.text-primary-dark {
    color: var(--bs-primary-color);
}

.text-secondary-blue {
    color: var(--bs-secondary-color);
}

.text-black {
    color: var(--bs-black);
}

.text-white {
    color: var(--bs-white);
}

.text-gray {
    color: var(--bs-secondary-gray);
}

.text-dark {
    color: var(--bs-primary-gray);
}

.text-small {
    font-size: var(--bs-font-size-small);
}

.text-medium {
    font-size: var(--bs-font-size-medium);
}

.text-regular {
    font-size: var(--bs-font-size-regular);
}

.text-max {
    font-size: var(--bs-font-size-max);
}

.heading-main {
    font-size: 32px;
    line-height: var(--bs-line-height-max);
    font-weight: var(--bs-font-weight-bold);
}

.heading-max {
    font-size: 28px;
    line-height: var(--bs-line-height-max);
    font-weight: var(--bs-font-weight-regular);
}

.heading-regular {
    font-size: 24px;
    line-height: var(--bs-line-height-max);
    font-weight: var(--bs-font-weight-bold);
}

.heading-small {
    font-size: 20px;
    line-height: var(--bs-line-height-max);
    font-weight: var(--bs-font-weight-regular);
}


@media (max-width: 1024px) {
    .heading-main {
        font-size: 28px;
    }

    .heading-max {
        font-size: 24px;
    }

    .heading-regular {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .heading-main {
        font-size: 24px;
    }

    .heading-regular {
        font-size: 20px;
    }

    .heading-max {
        font-size: 22px;
    }
}

.body-max {
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
}

.body-regular {
    font-size: 16px;
    line-height: 140%;
    color: #000000;
}

.body-min {
    font-size: 14px;
    line-height: 140%;
}

.cursor-pointer {
    cursor: pointer;
}

.app-container .min-h-auto {
    min-height: auto;
}

.app-container .h-100 {
    height: 100% !important;
}

.btn {
    padding: 10px 18px !important;
}

.white-space-nowrap {
    white-space: nowrap !important;
}
/*scrollbar */
.scrollbar-sidebar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.scrollbar-sidebar::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}

.scrollbar-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--bs-black);
    border-radius: 40px;
}

.app-container .app-main {
    z-index: unset;
}

    .app-container .app-main .app-main__outer {
        z-index: unset !important;
        padding-bottom: 0;
    }
/*sidebar */
.app-container .app-sidebar {
    width: 315px;
    min-width: 315px;
    flex: 0 0 315px;
    z-index: 10;
    padding: 16px 18px;
    padding-bottom: 24px;
    gap: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s cubic-bezier(0.65, 0, 0.35, 1);
}

    .app-container .app-sidebar .scrollbar-sidebar {
        overflow-y: auto;
        overflow-x: hidden;
    }

        .app-container .app-sidebar .scrollbar-sidebar .app-sidebar__inner .vertical-nav-menu ul:before {
            display: none;
        }

.app-container.app-theme-white .app-sidebar .app-header__logo {
    display: block !important;
    position: relative;
    background: #fff;
}

.app-container .app-sidebar .app-header__logo .logo-src {
    height: 40px;
    width: 100%;
}

    .app-container .app-sidebar .app-header__logo .logo-src img {
        width: 40px;
        height: 35px;
        object-fit: contain;
    }

    .app-container .app-sidebar .app-header__logo .logo-src span {
        font-weight: 700;
        font-size: 25px;
        line-height: 110%;
        color: var(--bs-black);
        opacity: 1;
        visibility: visible;
    }

header a.logo-wrapper {
    height: 42px;
    width: 42px;
}

.app-container .header-btn-lg .head-icon {
    height: 23px;
    width: 23px;
    max-width: 24px;
    cursor: pointer;
}

.app-container .app-sidebar .user-options {
    gap: 5px;
}

.app-container .notify-icon {
    cursor: pointer;
    position: relative;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar .app-sidebar__inner ul li a {
    justify-content: center;
    padding: 5px 0;
}

.app-container.closed-sidebar .app-sidebar:hover {
    flex: 0 0 80px !important;
    width: 80px !important;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar__inner ul.mm-show,
.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar__inner ul.mm-collapsing {
    display: none;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar:hover .app-sidebar__inner ul li a {
    text-indent: -300px;
    padding: 5px 0;
}

.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar__inner .vertical-nav-menu li a img.caret-down {
    opacity: 0;
    visibility: hidden;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-header__logo .logo-src span {
    display: none;
    transition: opacity .3s cubic-bezier(0.65, 0, 0.35, 1);
    opacity: 0;
    visibility: hidden;
}

.app-container.closed-sidebar.sidebar-mobile-open .app-sidebar:hover .app-sidebar__inner ul li a {
    padding: 0;
}

.app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner ul.inner-list li a {
    padding: 0;
}

.app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner .vertical-nav-menu ul.inner-list li {
    padding: 7px;
    padding-left: 20px;
}

.app-container.closed-sidebar-mobile .vertical-nav-menu ul {
    padding: 0;
}

.app-container .vertical-nav-menu ul {
    padding-left: 24px;
}

.app-container.closed-sidebar.sidebar-mobile-open .app-sidebar__inner .vertical-nav-menu ul.inner-list li {
    padding: 7px;
    padding-left: 20px;
}

.closed-sidebar .app-sidebar.sidebar-shadow {
    justify-content: start;
    padding: 15px 10px;
    padding-bottom: 30px;
}

.app-container.closed-sidebar .app-header__logo {
    display: flex !important;
    justify-content: start;
    padding: 0 !important;
    width: auto;
    margin: 0;
}

.app-container .app-header__logo {
    min-height: 60px;
}

.app-container.closed-sidebar.closed-sidebar-mobile .app-sidebar .app-header__logo .logo-src {
    margin: 0;
    width: 100%;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .user-options {
    flex-direction: column;
    border-bottom: 1px solid;
}

.app-container.closed-sidebar .app-sidebar .user-options .icon-wrap {
    padding: 12px 0;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar:hover .user-options .icon-wrap {
    padding: 12px;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar:hover .user-options {
    flex-direction: row;
    border-bottom: none;
}

.app-container.closed-sidebar .app-header__logo .logo-src img {
    height: 40px;
    width: 40px;
}

.app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar:hover .scrollbar-sidebar {
    position: relative !important;
    height: 100%;
    overflow: auto !important;
}

.closed-sidebar .app-sidebar__inner .vertical-nav-menu li a img {
    margin: 6px;
}

.app-container.fixed-sidebar .app-main .app-main__outer {
    padding-left: 310px;
    padding-bottom: 0;
    transition: 0.5s linear;
    overflow-x: hidden;
    max-height: 100dvh;
    max-height: calc(100vh - 65px);
    height: 100vh;
    height: 100dvh;
}

.app-container .app-main .app-main__inner {
    padding: 24px;
}

.app-container.closed-sidebar .app-main .app-main__outer {
    padding-left: 75px;
}

.app-container .app-sidebar .scrollbar-sidebar .app-sidebar__inner {
    padding: 0;
}

.app-container.closed-sidebar .app-sidebar .scrollbar-sidebar .app-sidebar__inner {
    padding: 0;
}

.app-sidebar__inner .vertical-nav-menu li a {
    font-size: 14px;
    padding: 11px 9px;
    margin: 0;
    height: auto;
    line-height: 100%;
    display: flex;
    gap: 8px;
    justify-content: start;
    align-items: center;
    border-radius: unset;
    border-left: 5px solid transparent;
    cursor: pointer;
    transition: text-indent 0.2s ease, color 0.4s ease;
    will-change: color, text-indent;
    transition-delay: 0s;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: var(--hamburger-color, #000) !important;
}

.app-sidebar__inner .vertical-nav-menu > li > a {
    text-wrap: wrap;
    position: relative;
}

.app-sidebar__inner .vertical-nav-menu li a {
    letter-spacing: 0.25px;
}

.app-sidebar__inner .vertical-nav-menu > li > a:hover, .app-sidebar__inner .vertical-nav-menu > li > a.mm-active, .app-sidebar__inner .vertical-nav-menu > li > a:focus {
    background-color: transparent;
    border-left: 5px solid #B5C3DF;
}

.app-sidebar .vertical-nav-menu li > a.mm-active,
.app-sidebar .vertical-nav-menu ul > li > a.mm-active,
.app-sidebar .vertical-nav-menu li a:hover {
    background: transparent;
}

.app-sidebar .vertical-nav-menu ul li a:hover {
    opacity: 0.8;
}

.app-sidebar .submenu li a {
    border-bottom: 1px solid transparent;
}

    .app-sidebar .submenu li a:hover {
        border-bottom: 1px solid var(--submenu-border-color);
        opacity: .8;
    }

.app-sidebar__inner .vertical-nav-menu li a img {
    height: 22px;
    width: 22px;
}

    .app-sidebar__inner .vertical-nav-menu li a img.caret-down {
        height: 8px;
        width: 15px;
        position: absolute;
        right: 10px;
        opacity: 1;
        visibility: visible;
        transition: all .4s ease;
    }

.app-sidebar__inner .vertical-nav-menu li label a:hover {
    background-color: unset;
}

.app-sidebar__inner .vertical-nav-menu ul.inner-list {
    background-color: #F8F8F8;
    border-left: 2px solid #cfcfcf;
    border-right: 2px solid #cfcfcf;
    padding: 5px 0;
}

    .app-sidebar__inner .vertical-nav-menu ul.inner-list li {
        padding-left: 20px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 4px;
        flex-wrap: nowrap;
    }

        .app-sidebar__inner .vertical-nav-menu ul.inner-list li a {
            padding: 12px 0;
            text-wrap: wrap;
            white-space: break-spaces;
        }

        .app-sidebar__inner .vertical-nav-menu ul.inner-list li:hover {
            background-color: var(--secondary-color);
        }

.app-sidebar__inner .vertical-nav-menu input[type="radio"] {
    appearance: none;
    border: 2px solid #ccc;
    border-radius: 50%;
    height: 17px;
    width: 17px;
    cursor: pointer;
}

    .app-sidebar__inner .vertical-nav-menu input[type="radio"]:checked {
        background: black;
        border-color: black;
    }

.app-sidebar__inner .vertical-nav-menu li lable a:focus input[type="radio"] {
    background: black;
    border-color: black;
}

.vertical-nav-menu li.mm-active > a img.caret-down {
    transform: rotate(-180deg);
}

.app-container .dropdown-toggle {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    padding: 0;
}

    .app-container .dropdown-toggle.show::after {
        transform: rotate(180deg);
        transition: 0.2s ease-in;
    }

    .app-container .dropdown-toggle.geo-list {
        margin: 6px 4px;
    }

    .app-container .dropdown-toggle:hover, .app-container .dropdown-toggle:active {
        color: #303030;
    }

.app-container .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    width: 100%;
}

    .app-container .dropdown-menu .dropdown-item {
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        padding: 6px 11px;
    }

        .app-container .dropdown-menu .dropdown-item:last-child {
            padding-bottom: 11px;
        }

        .app-container .dropdown-menu .dropdown-item:hover {
            background-color: #e5e9f1;
        }


.app-container .main-card {
    border-radius: 12px;
}

    .app-container .main-card .card-body {
        padding: 0;
    }

        .app-container .main-card .card-body .card-head {
            padding: 15px 17px;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

            .app-container .main-card .card-body .card-head .right-content {
                width: 100%;
                flex: 1;
            }

                .app-container .main-card .card-body .card-head .right-content .input-group {
                    min-width: 320px;
                    max-width: 320px;
                }

.multi-input .select2-container.select2-container--default, .multi-input input {
    min-width: 150px;
}

.app-container .main-card .card-body .card-head .right-content .form-select {
    min-width: 200px;
    max-width: 220px;
    padding: 11px;
}

#DesignationHierarchySelect + .select2-container--default {
    max-width: 250px;
    min-width: 250px;
}

#subDivisionSelect.sub-div-select + .select2-container--default, #industrySelect + .select2-container--default, #skillSelect + .select2-container--default {
    max-width: 300px;
    min-width: 300px;
}

.app-container .main-card .card-body .card-head .right-content .input-group .input-group-text {
    background-color: transparent;
    border-right: 0;
    padding-right: 0;
}

.right-content .input-group-lg > .input-group-text {
    padding: 7.5px 16px;
}

.app-container .main-card .card-body .card-head .right-content .input-group .input-group-text .input-img {
    height: 24px;
    width: 24px;
}

    .app-container .main-card .card-body .card-head .right-content .input-group .input-group-text .input-img img {
        object-fit: cover;
        object-position: center;
    }

.app-container .main-card .card-body .card-head .right-content > input.form-control {
    min-width: 320px;
    max-width: 320px;
    border-left: 1px solid #dee2e6;
    padding-left: 11px;
}

.app-container .main-card .card-body .card-head .right-content input.form-control.searchInput {
    border-left: 0;
}

.app-container .main-card .card-body .card-head .right-content .form-control {
    padding: 9.5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    padding-left: 5px;
}

    .app-container .main-card .card-body .card-head .right-content .form-control.startDateFilter,
    .app-container .main-card .card-body .card-head .right-content .form-control.endDateFilter {
        padding: 9.5px;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control#searchInput, #searchInputForCA, #multiplePartialSearchInput {
        border-left: 0;
    }


    .app-container .main-card .card-body .card-head .right-content .form-control:focus {
        background-color: transparent;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control:focus {
        box-shadow: unset;
        border-color: #dee2e6;
    }

.app-container .main-card .card-body .card-head .right-content .filter-btn {
    padding: 11px;
    border-radius: 6px;
}

    .app-container .main-card .card-body .card-head .right-content .filter-btn .filter-img {
        height: 24px;
        width: 24px;
    }

        .app-container .main-card .card-body .card-head .right-content .filter-btn .filter-img img {
            object-fit: cover;
            object-position: center;
        }

    .app-container .main-card .card-body .card-head .right-content .filter-btn .filter-text {
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
    }

.app-container .right-content .btn-group .btn,
.app-container .right-content .btn-group .add-btn {
    font-size: 16px;
    line-height: 140%;
    padding: 9px 18px;
    align-items: center;
    box-shadow: 0 0 3px 1px #00000033;
}

    .app-container .right-content .btn-group .btn .btn-icon-wrapper,
    .app-container .right-content .btn-group .add-btn .btn-icon-wrapper {
        height: 24px;
        width: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 24px;
    }

.app-container .main-card .card-body .card-head .right-content #bulkSyncBtn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    white-space: nowrap;
}

.app-container .main-card .card-body .card-head .right-content .btn-group .dropdown-toggle-split {
    width: 45px;
}

.app-container .main-card .divider {
    margin: 0;
}

.app-container .main-card .table-responsive.errorTable tr th:last-child, .app-container .main-card .table-responsive.errorTable tr td:last-child {
    max-width: 550px;
    min-width: 400px;
}

.app-container .main-card .table-responsive.errorTable .accordion-body table th {
    min-width: 200px;
}

.app-container .main-card .table-responsive {
    padding: 14px 12px;
    max-height: fit-content;
}

    .app-container .main-card .table-responsive .table {
        width: 100%;
        border: 1px solid #dde1e6 !important;
        border-collapse: collapse;
    }

        .app-container .main-card .table-responsive .table .icon-box {
            gap: 12px;
        }

            .app-container .main-card .table-responsive .table .icon-box i {
                font-size: 20px;
            }

            .app-container .main-card .table-responsive .table .icon-box .cc-icon,
            .app-container .main-card table .edit-icon,
            .app-container .main-card table .plus-icon,
            .app-container .main-card table .download-icon,
            .app-container .main-card table .history-icon,
            .app-container .main-card .table-responsive .table .icon-box .del-icon,
            .app-container .main-card .table-responsive .table .icon-box .view-icon {
                height: 24px;
                width: 24px;
                min-width: 24px;
                cursor: pointer;
            }

                .app-container .main-card .table-responsive .table .icon-box .cc-icon img,
                .app-container .main-card table .edit-icon img,
                .app-container .main-card table .plus-icon img,
                .app-container .main-card table .download-icon img,
                .app-container .main-card table .history-icon img,
                .app-container .main-card .table-responsive .table .icon-box .del-icon img {
                    max-width: 22px;
                    max-height: 22px;
                    object-fit: cover;
                    object-position: center;
                }

        .app-container .main-card .table-responsive .table thead {
            border: 1px solid #e9ecef;
            border-bottom: 0;
        }

            .app-container .main-card .table-responsive .table thead tr {
                width: 100%;
                background-color: #e5e9f2;
                vertical-align: middle;
                border-bottom: 1px solid #e9ecef;
            }

                .app-container .main-card .table-responsive .table thead tr th {
                    font-size: 14px;
                    line-height: 110%;
                    letter-spacing: 0.5px;
                    padding: 16px 12px;
                    background-color: #e5e9f2;
                    text-align: left;
                    cursor: pointer;
                    white-space: nowrap;
                    border-bottom: none;
                    background: unset;
                    border: 1px solid #c9d1d9;
                }

                    .app-container .main-card .table-responsive .table thead tr th:last-child {
                        width: 92px;
                        text-align: center;
                    }

                    .app-container .main-card .table-responsive .table thead tr th.sort img {
                        transform: rotate(180deg);
                        transition: 0.2s linear;
                    }

        .app-container .main-card .table-responsive .table tbody {
            overflow-x: hidden;
            border: 1px solid #e9ecef;
            border-bottom: 0;
            border-top: 0;
        }

            .app-container .main-card .table-responsive .table tbody tr {
                width: 100%;
                vertical-align: middle;
                border-bottom: 1px solid #e9ecef;
            }

                .app-container .main-card .table-responsive .table tbody tr td {
                    font-size: 14px;
                    line-height: 140%;
                    padding: 12px;
                    text-align: left;
                    border-bottom: none;
                }

                    .app-container .main-card .table-responsive .table tbody tr td:last-child {
                        width: 92px;
                        text-align: center;
                    }

        .app-container .main-card .table-responsive .table .table-checkbox {
            height: 16px;
            width: 16px;
            margin: 0 12px;
        }

    .app-container .main-card .table-responsive.list-variant-table .table .icon-box {
        gap: 12px;
    }

    .app-container .main-card .table-responsive.list-variant-table .table tr.hiddenRow {
        background-color: rgba(223, 223, 223, 0.2392156863);
        padding: 0;
    }

    .app-container .main-card .table-responsive.list-variant-table .table .hiddenRow .accordian-body .input-group {
        place-self: end;
    }

        .app-container .main-card .table-responsive.list-variant-table .table .hiddenRow .accordian-body .input-group input {
            font-size: 14px;
        }

    .app-container .main-card .table-responsive.list-variant-table .table.inner-table {
        margin: 0;
    }

.app-container .resource-detail {
    gap: 8px;
}

    .app-container .resource-detail .resource-thumb {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #dce2ee;
        display: flex;
    }

        .app-container .resource-detail .resource-thumb .thumb-img {
            border-radius: 50%;
        }

        .app-container .resource-detail .resource-thumb img {
            object-fit: cover;
            height: 40px;
            width: 40px;
            min-width: 40px;
        }

.app-container .main-card .table-responsive.list-variant-table .table.inner-table tbody {
    max-height: 250px;
}

.app-container .main-card .table-responsive.list-variant-table .table.inner-table th:last-child {
    width: 92px;
}

.app-container .main-card .table-responsive.list-variant-table .table.inner-table td:last-child {
    width: 92px;
}

.app-container .main-card .table-responsive.list-variant-table .table tbody {
    vertical-align: middle;
}

.app-container .main-card .table-responsive.list-variant-table .table .outer-row td:first-child {
    cursor: pointer;
}

.app-container .main-card nav.table-pagination .pagination {
    justify-content: flex-end;
    margin-bottom: 0;
}

.app-container .main-card .pagination-wrapper {
    place-self: center;
}

    .app-container .main-card .pagination-wrapper > div {
        flex: 1;
    }

    .app-container .main-card .pagination-wrapper .pagination-right-sec .sec > span {
        padding: 2px 12px;
    }

.app-container .main-card nav.table-pagination .pagination .page-item:first-child .page-link, .app-container .main-card nav.table-pagination .pagination .page-item:last-child .page-link {
    padding: 6px 8px;
    color: #3f6ad8;
}

.app-container .main-card nav.table-pagination .pagination .page-item.disabled .page-link {
    color: var(--bs-gray-500);
    background-color: transparent;
}


.app-container .main-card nav.table-pagination .pagination .page-item .page-link {
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 101%;
    font-weight: 500;
}

    .app-container .main-card nav.table-pagination .pagination .page-item .page-link .arr-img {
        height: 24px;
        width: 24px;
        background-repeat: no-repeat;
        background-position: center;
    }

        .app-container .main-card nav.table-pagination .pagination .page-item .page-link .arr-img.prev-arr {
            background-image: url(/images/svg/caret-left.svg);
        }

        .app-container .main-card nav.table-pagination .pagination .page-item .page-link .arr-img.next-arr {
            background-image: url(/images/svg/caret-right.svg);
        }

.app-container .main-card nav.table-pagination .pagination .page-item.disabled .page-link .arr-img.prev-arr {
    background-image: url(/images/svg/caret-left-grey.svg);
}

.app-container .main-card nav.table-pagination .pagination .page-item.disabled .page-link .arr-img.next-arr {
    background-image: url(/images/svg/caret-right-grey.svg);
}

.app-container .escalation-wrapper .main-card .card-head {
    padding: 11px 25px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.filter-modal .modal-dialog {
    max-width: 1084px;
    width: calc(100% - 124px);
    transform: translate(0, 25%) !important;
    height: 63.4%;
    max-height: 64vh;
    overflow-y: auto;
    border-radius: 12px;
}

    .filter-modal .modal-dialog .modal-header {
        padding: 19px 38px;
    }

    .filter-modal .modal-dialog .modal-body {
        padding: 32px;
        overflow-y: auto;
        font-size: 14px;
    }

        .filter-modal .modal-dialog .modal-body .label-wrapper {
            margin-bottom: 24px;
        }

        .filter-modal .modal-dialog .modal-body input,
        .filter-modal .modal-dialog .modal-body select {
            font-size: 14px;
            border-radius: 6px;
            padding: 12px;
        }

    .filter-modal .modal-dialog .modal-footer {
        padding: 23px 35px;
        background-color: transparent;
        gap: 12px;
    }

        .filter-modal .modal-dialog .modal-footer .btn {
            padding: 9px 18px;
            font-size: 16px;
            line-height: 150%;
            color: #000;
            margin: 0;
        }

            .filter-modal .modal-dialog .modal-footer .btn:hover {
                color: #fff;
            }

label .star {
    color: #dc3545;
}

.password-eye {
    cursor: pointer;
    user-select: none;
    z-index: 10;
    padding-bottom: 45px
}

.create-update-form {
    min-height: calc(100vh - 165px);
    display: flex;
    flex-direction: column;
}

    .create-update-form form {
        height: 100% !important;
        min-height: calc(100vh - 240px);
    }

    .create-update-form .card-head {
        padding: 19px 24px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .create-update-form .card-content {
        padding: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        font-size: 14px;
        flex: 1;
    }

    .create-update-form .label-wrapper {
        margin-bottom: 16px;
    }

    .create-update-form .card-content input,
    .create-update-form .card-content select:not(.choices) {
        font-size: 14px;
        border-radius: 6px;
        padding: 11px;
    }

    .create-update-form .card-footer {
        padding: 10px 25px;
        background-color: transparent;
        gap: 12px;
    }

        .create-update-form .card-footer .btn {
            padding: 10px 21px;
            font-size: 16px;
            line-height: 150%;
            color: #000;
            margin: 0;
        }

            .create-update-form .card-footer .btn.btn-gray {
                background-color: var(--bs-gray-400);
            }

            .create-update-form .card-footer .btn:hover {
                opacity: .85;
            }

    .create-update-form .divider {
        margin: 0;
    }

    .create-update-form.escalation-form .card-head {
        background-color: #dee2e6;
        padding: 21px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .create-update-form.escalation-form .card-content {
        padding: 40px 36px;
    }

        .create-update-form.escalation-form .card-content select {
            max-width: 534px;
            width: 100%;
        }

        .create-update-form.escalation-form .card-content .del-icon {
            cursor: pointer;
            height: 60px;
            width: 60px;
        }

    .create-update-form.escalation-form .inner-matrix-card {
        height: fit-content;
    }

        .create-update-form.escalation-form .inner-matrix-card .create-update-form {
            max-height: calc(100vh - 164px);
            height: fit-content;
        }

        .create-update-form.escalation-form .inner-matrix-card .card-head {
            background-color: #dee2e6;
            padding: 19px 12px;
        }

        .create-update-form.escalation-form .inner-matrix-card .card-content {
            padding: 17px 19px;
        }

        .create-update-form.escalation-form .inner-matrix-card select {
            max-width: 446px;
        }

    .create-update-form.template-form .card-content {
        padding: 15px 30px;
    }

        .create-update-form.template-form .card-content .add-btn {
            white-space: nowrap;
        }

    .create-update-form.template-form .table-responsive tbody td {
        padding: 5px 15px !important;
    }

    .create-update-form.template-form .table-responsive tbody .form-select {
        max-width: 267px;
        width: 100%;
    }

    .create-update-form .btn-group {
        width: fit-content;
    }

    .create-update-form .tab-content .add-btn {
        font-size: 16px !important;
    }

    .create-update-form .add-btn {
        font-size: 14px !important;
        align-items: center;
        padding: 11px 15px;
        line-height: 150%;
        font-weight: 500;
        border: 1px solid #bdbdbd;
        max-width: 160px;
    }

        .create-update-form .add-btn .btn-icon-wrapper {
            height: 24px;
            width: 24px;
        }

.app-container .app-header {
    z-index: 2;
    height: 65px;
}

    .app-container .app-header .app-header__logo {
        width: 350px;
        padding: 0;
    }

        .app-container .app-header .app-header__logo .hamburger {
            margin-left: 100px;
        }

.hamburger.is-active .hamburger-box {
    height: 10px;
}

.app-container.closed-sidebar .app-header__content {
    padding-left: 62px;
}

.app-wrapper-footer .app-footer .app-footer__inner {
    padding: 0 33px !important;
}

.switchSmall {
    display: inline-block;
}

    .switchSmall input {
        display: none;
    }

    .switchSmall small {
        display: inline-block;
        width: 32px;
        height: 16px;
        background: #9fa3a7;
        border-radius: 30px;
        position: relative;
        cursor: pointer;
    }

        .switchSmall small:before {
            content: "";
            position: absolute;
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: 0.3s;
            box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
        }

    .switchSmall input:checked ~ small {
        background: #212529;
        transition: 0.3s;
    }

        .switchSmall input:checked ~ small:before {
            transform: translate(16px, 0px);
            transition: 0.3s;
        }

.app-container .app-main .app-main__inner .main-card table tr .xl-cell {
    width: 500px;
}

.app-container .app-main .app-main__inner .main-card table tr .lg-min-cell {
    min-width: 180px;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------*/
/*New Added CSS - Do not modify or replace*/

.filter-modal .modal-dialog .modal-content {
    height: auto;
}


/*Modal z indexing */

.app-container .app-main {
    z-index: unset;
}

    .app-container .app-main .app-main__outer {
        z-index: unset !important;
    }

/*arrow up and down */
.table-responsive .table thead tr th.sort img {
    transform: rotate(180deg);
    transition: 0.2s linear;
}

/*toaster css*/
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

    #toast-container > div {
        padding: 0.6rem 25px 0.6rem 50px !important;
    }

.toast {
    min-width: 250px;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

    .toast.show {
        opacity: 1;
        transform: translateX(0);
    }

    .toast.success {
        background-color: #3ac47d;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
    }

    .toast.info {
        background-color: #16aaff;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
    }

    .toast.error {
        background-color: #d92550;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
    }

    .toast.warning {
        background-color: #f7b924;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
    }

    .toast .close-btn {
        position: absolute;
        top: 8px;
        right: 10px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        line-height: 1;
    }

.right-content .select2-container.select2-container--default {
    min-width: 150px;
    max-width: 160px;
    text-align: left;
}

.role-edit .select2-container.select2-container--default {
    min-width: 150px;
    max-width: 160px;
}

.selection .select2-selection {
    height: 45px !important;
    border-radius: 6px !important;
    border: 1px solid #dee2e6 !important;
}

    .selection .select2-selection .select2-selection__rendered {
        padding: 7px;
    }

.select2-container--default .selection .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.app-container .select2-container--default .select2-selection--multiple {
    padding: 8px;
    padding-top: 3px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .app-container .select2-container--default .select2-selection--multiple .select2-selection__choice {
        margin-left: 4px;
        margin-top: 6px;
    }

.app-container .select2-container .select2-search--inline .select2-search__field {
    margin-top: 9px;
    margin-left: 2px;
}

.app-container .select2-selection__choice__remove {
    display: flex;
    align-items: center;
    height: 21px;
}

    .app-container .select2-selection__choice__remove span {
        height: 22px;
    }

.select2-container--default .select2-selection--multiple {
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}

    .select2-container--default .select2-selection--multiple::after {
        content: '';
        border-color: #888 transparent transparent transparent;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
        pointer-events: none;
    }

.select2-container--default.select2-container--open .select2-selection--multiple::after {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 1.2rem; /* Bigger clear button */
    padding: 10px 0px;
    cursor: pointer;
}

.logo-wrapper {
    border-radius: 8px;
    cursor: pointer;
}

.logo-integration {
    width: 20px;
    height: 20px;
}

.logo-integration-zoho {
    width: 40px;
    height: 20px;
}

.max-h-100 {
    height: 100% !important;
    max-height: 100% !important;
}

.app-container .resource-persona-section .main-card {
    max-height: 590px;
    height: 590px;
    background-color: var(--bs-white);
    border-radius: 12px;
    margin: 0;
}

    .app-container .resource-persona-section .main-card:not(.tab-card) {
        width: 100%;
    }

.app-container .resource-persona-section .card-header, .app-container .user-profile-section .card-header {
    font-size: 18px;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--bs-black);
    padding: 12px 19px;
    margin-bottom: 12px;
    border-radius: 12px 12px 0 0;
    height: auto;
}

.app-container .resource-persona-section .card-body {
    font-size: 14px;
    line-height: 150%;
    color: var(--bs-black);
    padding: 12px 19px;
    padding-top: 0;
    gap: 15px;
    overflow-y: auto;
    overflow-x: hidden;
}

.app-container .resource-persona-section .tab-card .card-body {
    padding: 14px 17px;
    padding-top: 0;
}

.app-container .tab-card .create-update-form .card-content {
    padding: 15px;
    overflow: visible;
}

.app-container .tab-card .create-update-form form {
    overflow: visible;
}

.app-container .tab-card .create-update-form .card-head {
    padding: 15px;
    padding-bottom: 6px;
}

.app-container .tab-card .create-update-form .card-header {
    background: transparent;
}

    .app-container .tab-card .create-update-form .card-header .card-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1;
    }

.app-container .tab-card .create-update-form .card-body {
    padding: 0;
}

.app-container .tab-card .create-update-form .table-responsive {
    padding: 14px 0;
}

    .app-container .tab-card .create-update-form .table-responsive.list-variant-table table.inner-table {
        width: 85%;
        margin: auto;
    }

.app-container .resource-persona-section .tab-content table {
    border: 1px solid #DDE1E6;
    border-collapse: collapse;
    height: 100%;
    width: 100%;
}

    .app-container .resource-persona-section .tab-content table th {
        background-color: #E5E9F2;
    }

    .app-container .resource-persona-section .tab-content table th, .app-container .resource-persona-section .tab-content table td {
        padding: 13px 12px;
        border: 1px solid #DDE1E6;
    }

.app-container .resource-persona-section .badge {
    font-size: 12px;
    padding: 6px 7px;
}

.app-container .resource-persona-section .card {
    border-radius: 12px;
}

.app-container .resource-persona-section .tab-content table:not(.horizontal-table) th, .app-container .resource-persona-section .tab-content table:not(.horizontal-table) td {
    border-right: 0;
    border-left: 0;
}

.app-container .resource-persona-section table:not(.horizontal-table) th.action-cell {
    width: 100px;
    text-align: center;
}

.app-container .resource-persona-section table:not(.horizontal-table) td.action-data {
    text-align: center;
}

.app-container .resource-persona-section .card-body p {
    font-weight: 500;
    margin-bottom: 0;
}

.resource-persona-section .edit-icon {
    cursor: pointer;
    width: max-content;
}

.app-container .card-body .resource-image {
    height: 80px;
    width: 80px;
    background-color: #D9D9D9;
    border-radius: 12px;
    border: 1px solid var(--bs-card-border-color);
}

    .app-container .card-body .resource-image img {
        width: 100%;
        border-radius: 12px;
    }

.app-container .resource-persona-section .resource-detail {
    border: 1px solid #DDE1E6;
    background: #F8F8F8;
    width: 270px;
    position: relative;
    padding: 8px 12px;
    cursor: pointer;
}

    .app-container .resource-persona-section .resource-detail:hover {
        background: var(--primary-color);
        color: var(--bs-white);
    }

.app-container .resource-persona-section .accordion-wrapper table th {
    min-width: 150px;
    white-space: nowrap;
}

.app-container .resource-persona-section .accordion-wrapper .resource-detail {
    background: transparent;
    border: none;
    padding: 0;
    cursor: default;
}

    .app-container .resource-persona-section .accordion-wrapper .resource-detail:hover {
        color: var(--bs-black);
    }

    .app-container .resource-persona-section .accordion-wrapper .resource-detail:hover {
        color: var(--bs-black);
    }

.app-container .resource-persona-section .accordion-wrapper .card-header-tab {
    padding-bottom: 0;
}
/* tabs */
.app-container .tab-card .card-header {
    padding: 0;
    padding-bottom: 0;
    margin-bottom: 12px;
    height: auto;
}

.app-container .card-header > .nav {
    height: auto;
    gap: 5px;
}

    .app-container .card-header > .nav .nav-link {
        background-color: #F8F8F8;
        border: 1px solid #BDBDBD;
        border-radius: 6px 6px 0 0;
        padding: 9px 10px;
        font-size: 14px;
    }

        .app-container .card-header > .nav .nav-link.active {
            background-color: var(--primary-color);
            color: var(--bs-white);
        }

        .app-container .card-header > .nav .nav-link::before {
            display: none;
        }

.card-header .nav-tabs .nav-link.active:hover {
    color: #fff !important;
}

/*accordion */
.collapse .accordion-collapse {
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

.app-container .accordion-wrapper {
    border: none;
}

.errorTable .accordion .accordion-toggle {
    min-height: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
}

#accordion .accordion-toggle i {
    transition: all .3s linear;
}

/*.btn-link {
    flex: .1;
}*/

.btn-link:focus, .btn.btn-link:active:focus {
    box-shadow: unset;
    outline: none;
}

/* notification */
.notification-menu_content {
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    transform: translateY(-100%);
    transition: .3s cubic-bezier(.25,.8,.5,1);
    max-width: 550px;
}

    .notification-menu_content.menuable__content__active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .notification-menu_content .list-item > .list_tile {
        gap: 20px;
    }

    .notification-menu_content .modal-title {
        font-size: 20px;
    }

    .notification-menu_content .subheader {
        padding: 16px 16px 0;
    }

    .notification-menu_content .list-group {
        max-height: 250px;
        overflow-x: auto;
    }

    .notification-menu_content ul li {
        list-style-type: none;
    }

    .notification-menu_content .list-item {
        border-bottom: 1px solid #B5C3DF;
        padding: 10px 16px;
    }

        .notification-menu_content .list-item:hover {
            background: var(--primary-color);
            color: var(--bs-white);
        }

            .notification-menu_content .list-item:hover small {
                color: #fff !important;
            }

        .notification-menu_content .list-item:last-child {
            border-bottom: none;
        }

    .notification-menu_content .title {
        font-size: 16px;
    }

    .notification-menu_content .sub-title {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 420px;
    }
/* Attendence info */
.attendence-info-group .info-content {
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    transition: .3s cubic-bezier(.25,.8,.5,1);
    max-width: 550px;
    min-width: 750px;
    top: 55px;
    right: 0;
    z-index: 8;
}

    .attendence-info-group .info-content.content__active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .attendence-info-group .info-content .modal-title {
        font-size: 20px;
    }

    .attendence-info-group .info-content .layout {
        padding: 10px 8px;
    }

    .attendence-info-group .info-content .info-box-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

.attendence-info-group .attendence-info {
    padding: 9px !important;
}

.attendence-info-group .info-content .info-box {
    border: 1px solid #BFBDBD;
    padding: 10px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .20);
}

.table-responsive #workTemplateTable tr th:first-child, .table-responsive #workTemplateTable tbody tr td:nth-child(2) {
    min-width: auto;
    width: 50px;
}

#workTemplateTable td .form-group {
    width: fit-content;
    margin: auto;
}

.app-container .app-main .app-main__inner {
    padding: 20px;
}

.app-container .main-card .table-responsive #workTemplateTable .select2-container {
    min-width: 260px;
}

#entityDropdownWrapper .select2-container {
    max-width: 320px;
}

.att-box {
    width: 120px;
}

.data-input {
    height: 16px;
    width: 16px;
}

.client-data input.form-control {
    min-width: 200px;
}
/*designation-heirarchy*/
.collapse_wrapper {
    min-height: 20px;
    padding: 0 20px;
    margin-bottom: 20px;
    overflow-y: auto;
}

    .collapse_wrapper li {
        list-style-type: none;
        margin: 0;
        padding: 15px 5px 0 5px;
        position: relative
    }

        .collapse_wrapper li::before, .collapse_wrapper li::after {
            content: '';
            left: -20px;
            position: absolute;
            right: auto
        }

        .collapse_wrapper li::before {
            border-left: 1px solid #3E3E3E;
            bottom: 50px;
            height: 100%;
            top: 0;
            width: 1px
        }

        .collapse_wrapper li::after {
            border-top: 1px solid #3E3E3E;
            height: 20px;
            top: 50px;
            width: 25px
        }

.info a i,
.info-box a i {
    cursor: pointer;
}

.collapse_wrapper li .info-box {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #000;
    border: 1px solid #DDE1E6;
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    background-color: #F8F8F8;
}

.collapse_wrapper li.parent_li > .info-box {
    cursor: pointer;
}

.collapse_wrapper > ul > li::before, .collapse_wrapper > ul > li::after {
    border: 0
}

.collapse_wrapper li:last-child::before {
    height: 50px
}

.collapse_wrapper li > .info-box:hover, .collapse_wrapper li > .info-box:hover .text-muted {
    background: var(--primary-color);
    color: #fff !important;
}

.collapse_wrapper div.info-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 65px;
    min-width: 272px;
    margin-right: 20px;
}

.collapse_wrapper .info-box .profile-img img {
    border-radius: 50%;
}

.collapse_wrapper .info-box .profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #DCE2EE;
}

.collapse_wrapper .info-box .fa-info-circle {
    margin-left: auto;
}

.collapse_wrapper ul:not(:first-child) {
    padding-left: 135px;
}

.hierarchy-card .btn-icon-wrapper, .hierarchy-card .btn-icon-wrapper img {
    height: 24px;
    width: 24px;
    display: inline-block;
}

.hierarchy-card .card-head {
    padding: 20px;
    padding-bottom: 0;
}

    .hierarchy-card .card-head .right-content .form-select {
        padding: 8px;
    }

    .hierarchy-card .card-head .right-content {
        flex: .5;
    }

canvas#canvas {
    height: 70px;
    width: 70px;
    border: 1px solid #dee2e6;
    background-color: #f8f8f8;
    border-radius: 6px;
}

#uploadIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    pointer-events: auto;
}

input#fileInput {
    max-width: 230px;
}

.text-format {
    white-space: nowrap;
}

.main-card .left-sec {
    flex: .7;
    border-right: 1px solid #dee2e6;
}

.main-card .right-sec {
    grid-template-columns: 1fr 1fr;
    height: fit-content;
    flex: 1;
    font-size: 18px;
}

.main-card .info-box {
    grid-template-columns: 1fr 1fr;
}

.main-card.info-card {
    font-size: 16px;
    height: 100%;
}

    .main-card.info-card p {
        margin: 0
    }

.main-card .profile-wrapper {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

    .main-card .profile-wrapper .user-profile {
        height: 80px;
        width: 80px;
        min-width: 80px;
        border-radius: 50%;
    }

/* error-pages */
.error-page-container {
    width: 100%;
    padding: 50px;
    background-color: var(--bs-gray-100);
    color: #2b3d41;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: left;
    position: relative;
    overflow: hidden;
}

    .error-page-container:before,
    .error-page-container:after {
        content: '';
        position: absolute;
        height: 600px;
        width: 280px;
        background-color: #05a968e6;
        transform: rotate(40deg);
        box-shadow: 0 0 10px 0;
    }

    .error-page-container:before {
        top: -240px;
        left: -80px;
    }

    .error-page-container:after {
        bottom: -240px;
        right: -80px;
    }

    .error-page-container .wrapper {
        width: 70%;
    }

.error-code {
    font-size: 12vw;
    line-height: 100%;
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 3px var(--primary-color);
    margin-bottom: 10px;
    font-family: Instrument Sans, Tahoma, Geneva, Verdana, sans-serif;
}

.error-message {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.error-description {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.home-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .home-button span {
        font-size: 22px;
        line-height: 20px;
    }

    .home-button:hover {
        background-color: #3051a5;
    }

.app-main__outer .app-wrapper-footer .app-footer {
    position: relative;
}

input[readonly] {
    background-color: #EEEEEE;
}

.app-container .widget-content .widget-content-left .widget-heading {
    opacity: 1;
}

.badge-wrapper {
    display: flex;
    justify-content: start;
    gap: 4px;
    min-width: 160px;
    flex-wrap: wrap;
}

.app-container .main-card .card-body .card-head.Designation-head .right-content .button-group-wrapper.btn-group-lg .btn-group {
    width: fit-content;
    max-width: 100%;
}

.app-container .main-card .card-body .card-head.Designation-head .right-content .button-group-wrapper.btn-group-lg {
    flex-wrap: nowrap;
    width: fit-content;
}

.app-container .main-card .card-body .card-head.Designation-head .right-content .select2-container.select2-container--default {
    max-width: 220px;
}

.app-container .main-card .card-content .select-wrapper .select2-container--default.select2-container {
    width: 100% !important;
}

.accordian-body {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955), padding .5s ease;
}

    .accordian-body table {
        width: 99%;
    }

    .accordian-body.open {
        padding-top: 15px;
        padding-bottom: 15px;
        max-height: 4000px;
    }

        .accordian-body.open table {
            width: 100%;
        }

.collapse-icon i:before {
    font-weight: 500 !important;
}

.app-sidebar .submenu li a:hover:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #343a40;
    opacity: .6;
}

.app-container .tab-card .card-body {
    padding: 12px;
}

.app-container .tab-card .card-head .form-select {
    padding: 10px;
    min-width: 110px;
}

.detail-wrapper {
    border: 1px solid #343a4078;
    border-radius: 8px;
}

.create-update-form .card-content input.value-input {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.blank-head {
    width: 50px;
}

.form-select.table-select ~ .select2-container.select2-container--default {
    min-width: 150px;
}

.upload-label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.upload-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    max-width: 400px;
}

    .upload-box span {
        color: #999;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 320px;
    }

    .upload-box i {
        font-size: 18px;
        color: #666;
        margin-left: 10px;
    }

.clientAgreement .cc-icon {
    min-width: 15px;
    cursor: pointer;
}

.clientAgreement .inner-table th:first-child {
    width: 140px;
}

#fullscreenBtn.btn {
    --bs-btn-border-width: 0;
}

    #fullscreenBtn.btn:focus, #fullscreenBtn.btn:active:focus {
        box-shadow: unset;
    }

    #fullscreenBtn img:focus-visible, #fullscreenBtn.btn:active {
        outline: none;
        border: none;
    }

.app-container .main-card .table-responsive.attendence-table {
    padding-left: 300px;
}

    .app-container .main-card .table-responsive.attendence-table th:nth-of-type(1) {
        background-color: #e5e9f2;
    }

    .app-container .main-card .table-responsive.attendence-table th:nth-of-type(1),
    .app-container .main-card .table-responsive.attendence-table td:nth-of-type(1) {
        position: sticky;
        left: 0;
        min-width: 230px;
    }

    .app-container .main-card .table-responsive.attendence-table td.attendance-cell:has(.edit-marker) {
        cursor: pointer;
    }

    .app-container .main-card .table-responsive.attendence-table td.attendance-resource-cell {
        z-index: 1;
    }

    /* Make the td relative so absolute icon is positioned correctly */
    .app-container .main-card .table-responsive.attendence-table td.attendance-cell {
        position: relative;
    }

        /* Icon top-right corner */
        .app-container .main-card .table-responsive.attendence-table td.attendance-cell .manually-updated-icon {
            position: absolute;
            top: 4px; /* distance from top of cell */
            right: 4px; /* distance from right of cell */
            font-size: 0.9em; /* smaller than text */
            color: #f0ad4e; /* warning/orange color */
            cursor: default;
        }


.app-container .main-card .table-responsive.budget-table {
    margin: 12px;
    padding: 0;
    border-left: 1px solid #c9d1d9;
    border-right: 1px solid #c9d1d9;
}

    .app-container .main-card .table-responsive.budget-table tr th.sticky-head {
        background-color: #e5e9f2;
        position: sticky;
        border: 1px solid #c9d1d9;
    }

    .app-container .main-card .table-responsive.budget-table tr td.sticky-col {
        position: sticky;
    }

        .app-container .main-card .table-responsive.budget-table tr th.sticky-head:first-of-type,
        .app-container .main-card .table-responsive.budget-table tr td.sticky-col:first-of-type {
            left: 0;
            min-width: 140px;
            width: 140px;
        }

        .app-container .main-card .table-responsive.budget-table tr th.sticky-head:nth-of-type(2),
        .app-container .main-card .table-responsive.budget-table tr td.sticky-col:nth-of-type(2) {
            left: 139px;
            min-width: 110px;
            width: 110px;
        }

        .app-container .main-card .table-responsive.budget-table tr th.sticky-head:nth-of-type(3),
        .app-container .main-card .table-responsive.budget-table tr td.sticky-col:nth-of-type(3) {
            left: calc(139px + 109px);
            min-width: 100px;
            width: 100px;
        }

        .app-container .main-card .table-responsive.budget-table tr th.sticky-head:nth-of-type(4),
        .app-container .main-card .table-responsive.budget-table tr td.sticky-col:nth-of-type(4) {
            left: calc(139px + 109px + 99px);
            min-width: 110px;
            width: 110px;
        }

        .app-container .main-card .table-responsive.budget-table tr th.sticky-head:nth-of-type(5),
        .app-container .main-card .table-responsive.budget-table tr td.sticky-col:nth-of-type(5) {
            left: calc(139px + 109px + 99px + 109px);
            min-width: 110px;
            width: 110px;
        }

.app-container .main-card .table-responsive.seat-feedback-table {
    margin: 12px;
    padding: 0;
    border-left: 1px solid #c9d1d9;
    border-right: 1px solid #c9d1d9;
}

    .app-container .main-card .table-responsive.seat-feedback-table tr:first-child th.first-head,
    .app-container .main-card .table-responsive.seat-feedback-table tr:nth-child(2) th.sec-col {
        background-color: #e5e9f2;
        position: sticky;
        border: 1px solid #c9d1d9;
    }

    .app-container .main-card .table-responsive.seat-feedback-table tr td.sticky-col {
        position: sticky;
    }

    .app-container .main-card .table-responsive.seat-feedback-table tr:first-child th:nth-child(1),
    .app-container .main-card .table-responsive.seat-feedback-table tr:nth-child(2) th:nth-child(1),
    .app-container .main-card .table-responsive.seat-feedback-table tr td:nth-child(1) {
        left: 0;
        min-width: 160px;
        width: 160px;
    }

    .app-container .main-card .table-responsive.seat-feedback-table tr:nth-child(2) th.col-two,
    .app-container .main-card .table-responsive.seat-feedback-table tr td:nth-child(2) {
        left: 160px;
        min-width: 105px;
        width: 105px;
    }

    .app-container .main-card .table-responsive.seat-feedback-table tr:nth-child(2) th.col-three,
    .app-container .main-card .table-responsive.seat-feedback-table tr td:nth-child(3) {
        left: calc( 160px + 105px);
    }

.app-container .main-card .table-responsive.agreement-feedback-table {
    margin: 12px;
    padding: 0;
    border-left: 1px solid #c9d1d9;
    border-right: 1px solid #c9d1d9;
}

    .app-container .main-card .table-responsive.agreement-feedback-table tr:first-child th.sticky-head,
    .app-container .main-card .table-responsive.agreement-feedback-table tr:nth-child(2) th.sticky-head {
        background-color: #e5e9f2;
        position: sticky;
        border: 1px solid #c9d1d9;
    }

    .app-container .main-card .table-responsive.agreement-feedback-table tr td.sticky-col {
        position: sticky;
    }

    .app-container .main-card .table-responsive.agreement-feedback-table tr:first-child th:nth-child(1),
    .app-container .main-card .table-responsive.agreement-feedback-table tr:nth-child(2) th:nth-child(1),
    .app-container .main-card .table-responsive.agreement-feedback-table tr td:nth-child(1) {
        left: 0;
        min-width: 160px;
        width: 160px;
    }

    .app-container .main-card .table-responsive.agreement-feedback-table tr:nth-child(2) th:nth-child(2),
    .app-container .main-card .table-responsive.agreement-feedback-table tr td:nth-child(2) {
        left: 160px;
    }

.app-container .main-card .table-responsive.attendence-table thead tr:first-child th {
    font-size: 16px;
}

.app-container .main-card .table-responsive.attendence-table thead tr th {
    padding: 14px;
    text-align: center;
}

.app-container .main-card .table-responsive.attendence-table thead tr:nth-child(2) th:first-child,
.app-container .main-card .table-responsive.attendence-table tbody tr td {
    padding: 10px 20px;
    text-align: center;
}

    .app-container .main-card .table-responsive.attendence-table tbody tr td:first-child {
        text-align: left;
    }

.app-container .present {
    background: #e2ffe2;
}

.app-container .holiday {
    background: #cad1f7;
}

.app-container .halfday {
    background: #fff3e2;
}

.app-container .weekoff {
    background: #e8e8e8;
}

.app-container .present-late {
    background: #d1d2f7;
}

.app-container .present-early {
    background: #fdf6d6;
}

.app-container .absent {
    background: #f8d7da;
}

.app-container .halfday-sick {
    background: #f9e1f0;
}

.app-container .halfday-holiday {
    background: #e3f2fd;
}

.app-container .sick-leave {
    background: #f3d9fa;
}

.app-container .annual-leave {
    background: #cecdf9;
}

.app-container .seat-remove {
    background: #adadad;
}

.app-container .resigned {
    background: #fddde6;
}

.app-container .moved {
    background: #e0f7f6;
}

.app-container .tab-card #seat .card-head .btn {
    padding: 8.5px 18px !important;
}

.form-wrapper {
    width: 100%;
    border: 1px solid #BDBDBD;
    border-radius: 6px;
    margin-bottom: 20px;
}

/*Progress-bar Style */
.app-container .progressbar-container {
    width: 100%;
    position: relative;
}

.app-container .progressbar {
    display: flex;
    justify-content: start;
    position: relative;
    border: 1px solid #E5E9F2;
    flex-wrap: nowrap;
}

    .app-container .progressbar::before {
        content: "";
        position: absolute;
        top: 75px;
        left: 0;
        height: 4px;
        width: 100%;
        background-color: #e0e0e0;
        z-index: -1;
    }

.app-container .progress {
    position: absolute;
    top: 51px;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #0033a0;
    z-index: 2;
    transition: width 0.4s ease;
}

.progress-step {
    position: relative;
    text-align: center;
    font-size: 13px;
    color: #888;
    flex: 1;
    white-space: nowrap;
}

    .progress-step:not(.active):not(.completed):hover {
        background-color: #f7f7f7;
    }

    .progress-step .nav-link {
        padding: 16px 12px;
        font-size: 14px;
        color: var(--bs-black);
        border: 1px solid transparent;
        width: 100%;
        justify-content: center;
    }

    .progress-step.nav-item .nav-link.active,
    .progress-step.nav-item .nav-link:focus {
        color: var(--bs-black) !important;
        border: 1px solid transparent;
        background-color: #F2F4F8;
        border-radius: unset;
    }

    .progress-step.nav-item .nav-link:not(.active):hover {
        border: 1px solid transparent;
        color: var(--bs-black) !important;
    }

    .progress-step .nav-link::before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: #fff;
        border: 3px solid #e0e0e0;
        transition: 0.3s;
    }

    .progress-step.active {
        color: #0033a0;
        font-weight: bold;
    }

        .progress-step.active .nav-link::before {
            border: 3px solid #0033a0;
        }

    .progress-step.completed {
        color: #4caf50;
        background-color: #F2F4F8;
    }

        .progress-step.completed .nav-link::before {
            background-color: transparent;
            content: "\2713";
            color: #25A249;
            font-size: 18px;
            text-align: center;
            line-height: 100%;
            border: none;
        }

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .buttons button {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        background: #0033a0;
        color: #fff;
        font-size: 14px;
    }

.create-update-form .card-footer .buttons button:hover {
    opacity: .9;
}

.buttons button:disabled {
    background: #3f3f3f;
    cursor: not-allowed;
}

.dropdown-menu.select-dropdown {
    --bs-dropdown-min-width: 160px;
    min-width: 160px;
}

.date-range-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .date-range-wrapper input {
        width: 100%;
        border: var(--bs-border-width) solid var(--bs-border-color);
        cursor: pointer;
    }

    .date-range-wrapper .calendar-icon {
        position: absolute;
        right: 12px;
        height: 24px;
        width: 24px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

.billing-summary {
    border-collapse: collapse;
}

    .billing-summary table {
        width: 100%;
        border-spacing: 0 8px;
    }

        .billing-summary table td {
            vertical-align: middle;
            padding: 4px 8px;
        }

    .billing-summary .label {
        text-align: left;
        white-space: nowrap;
        font-weight: 600;
    }

    .billing-summary .value {
        text-align: right;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 4px;
        padding: 4px 10px 4px 6px;
    }

    .billing-summary input[type="text"] {
        width: 75px;
        padding: 4px 6px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

.summary-wrapper {
    width: 80%;
    border: 1px solid #272727;
    background-color: #F9F9F9;
}

    .summary-wrapper h4 {
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 16px;
    }

.info-table {
    padding: 20px;
    padding-top: 0;
}

    .info-table .details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .info-table .detail-item {
        display: flex;
        justify-content: start;
        gap: 8px;
    }

        .info-table .detail-item label {
            font-weight: bold;
            display: inline-block;
            width: 160px;
            min-width: 160px;
        }

.summary-wrapper .data-table, .summary-wrapper .bonus-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

.data-table th,
.bonus-table th {
    border: 1px solid #272727;
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

.data-table td, .bonus-table td {
    border: 1px solid #0000006b;
    text-align: center;
    padding: 8px;
}

.summary-wrapper tfoot td {
    font-weight: bold;
    padding: 8px;
}

.summary-wrapper .footer {
    width: 85%;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    text-align: center;
    font-weight: 700;
}

.summary-wrapper .num-cell {
    width: fit-content;
    min-width: 120px;
}
/*email-template-section */
.email-template-section .form-control {
    font-size: 14px;
    border-radius: 6px;
    padding: 11px;
}

.app-container .main-card .card-body .table-responsive .table .remark-col {
    max-width: 500px;
    width: auto;
    min-width: 250px;
}
/*lineChart */
.lineChartContainer {
    width: 100%;
    height: 400px;
    border: 1px solid #E5E9F1;
}

/*polarChart */
.polarWrapper {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-start;
    gap: 40px;
}

.polarChartContainer {
    width: 500px;
    height: 300px;
    flex-shrink: 0;
}

.legendContainer {
    font-size: 14px;
    color: #777;
    line-height: 22px;
}

.legendItem {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.legendColorDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legendPercent {
    font-weight: bold;
    margin-left: auto;
    color: #444;
}


.tab-dropdown {
    width: 100%;
    max-width: fit-content;
}

    .tab-dropdown .select2-container.select2-container--default {
        max-width: 350px;
    }

.dropdown-menu.select-dropdown {
    --bs-dropdown-min-width: 160px;
    min-width: 160px;
}


.searchInputPersona {
    border-left: 0;
}

.common-select ~ .select2-container.select2-container--default {
    min-width: 85%;
}

.minWidthForBudgetTable {
    min-width: 100px
}

.tab-content .content {
    display: grid;
    grid-template-columns: 200px auto 1fr;
    align-items: center;
}

@media (min-width: 1900px) {
    .resource-persona-section .card-header > .nav .nav-link {
        font-size: 18px;
    }
}

@media (max-width: 1599px) {
    .app-container .main-card .card-body .card-head .right-content {
        flex-wrap: wrap;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        flex: 1;
    }

    .app-container .main-card .table-responsive #workTemplateTable .select2-container {
        min-width: 240px;
    }

    .progress-step .nav-link {
        padding: 8px 3px;
        font-size: 12px;
        gap: 2px !important;
    }

    .progress-step:last-child .nav-link {
        width: 100%;
    }

    .app-container .progress {
        top: 33px;
        height: 2px;
    }

    .progress-step .nav-link::before {
        width: 14px;
        height: 14px;
    }

    .progress-step.completed .nav-link::before {
        font-size: 16px;
    }
}

@media (max-width: 1440px) {
    .app-container .app-sidebar {
        min-width: 250px;
        width: 250px;
        padding: 12px;
        padding-bottom: 24px;
        gap: 15px;
    }

    .app-container.fixed-sidebar .app-main .app-main__outer {
        padding-left: 250px;
    }

    .app-container.fixed-sidebar.closed-sidebar .app-main .app-main__outer {
        padding-left: 75px;
    }

    .app-container .app-main .app-main__inner {
        padding: 15px;
    }

    .app-container .app-wrapper-footer .app-footer .app-footer__inner {
        margin-left: 240px;
    }

    .app-container .app-header .app-header__logo {
        width: 280px;
    }

    .app-container .header-btn-lg::before {
        display: none;
    }

    .app-sidebar__inner .vertical-nav-menu li a {
        font-size: 12px;
        padding: 10px 9px;
    }

    .app-sidebar__inner .vertical-nav-menu > li > a {
        padding-right: 25px;
    }

    .app-sidebar__inner .vertical-nav-menu li a img {
        height: 18px;
        width: 18px;
    }

        .app-sidebar__inner .vertical-nav-menu li a img.caret-down {
            height: 6px;
            width: 12px;
        }

    .app-container .app-sidebar .app-header__logo {
        width: auto;
    }

    .app-container .app-sidebar .user-options .icon-wrap {
        padding: 8px;
    }

    .app-container .main-card .card-body {
        max-height: 100%;
    }

        .app-container .main-card .card-body .card-head .right-content > input.form-control {
            min-width: 180px;
            max-width: 180px;
        }

        .app-container .main-card .card-body .card-head .right-content .input-group {
            min-width: 180px;
            max-width: 200px;
        }

    .app-container .main-card .table-responsive .table tbody {
        overflow-y: visible;
        max-height: 100%;
    }

    .create-update-form.template-form .table-responsive thead th:first-child {
        min-width: 240px;
    }

    .create-update-form.template-form .table-responsive tbody .form-select {
        min-width: 200px;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control {
        padding: 10px 6px;
        font-size: 14px;
    }

        .app-container .main-card .card-body .card-head .right-content .form-control.input-lg {
            padding: 11px 6px;
        }

    .right-content .input-group-lg > .input-group-text {
        padding: 7.5px 10px;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control.startDateFilter,
    .app-container .main-card .card-body .card-head .right-content .form-control.endDateFilter {
        padding: 11px;
    }

    .hierarchy-card .card-head .right-content {
        flex: .7;
    }

    .attendence-info-group .info-content {
        min-width: 250px;
        top: 55px;
        right: 0;
        z-index: 8;
    }

        .attendence-info-group .info-content.content__active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .attendence-info-group .info-content .modal-title {
            font-size: 16px;
        }

        .attendence-info-group .info-content .layout {
            padding: 8px;
        }

        .attendence-info-group .info-content .info-box-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .attendence-info-group .info-content .info-box {
            padding: 8px;
            white-space: nowrap;
        }

    .info-table .details {
        grid-template-columns: 60% 1fr;
    }
}

@media (max-width: 1249px) {
    .app-container.closed-sidebar .app-sidebar:hover {
        flex: 0 0 250px !important;
        width: 250px !important;
    }

    .app-container.closed-sidebar:not(.sidebar-mobile-open) .app-sidebar:hover .app-sidebar__inner ul li a {
        text-indent: initial;
        padding: 6px 9px;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-header__logo .logo-src span {
        display: inline-block;
        vertical-align: middle;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner ul li a {
        justify-content: start;
    }

    .app-sidebar:hover .app-sidebar__inner .vertical-nav-menu li a img.caret-down {
        opacity: 1;
        visibility: visible;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-header__logo .logo-src span {
        display: block;
        transition: opacity .3s ease;
        opacity: 1;
        visibility: visible;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner ul.mm-show {
        padding: 0;
        display: block;
        padding-left: 10px;
    }

    .app-container .app-sidebar .app-header__logo {
        margin: 0 auto;
    }

        .app-container .app-sidebar .app-header__logo .logo-src {
            width: 100%;
        }

    .app-container.fixed-sidebar .app-main .app-main__outer {
        padding-left: 75px;
    }

    .app-container .app-main .app-main__inner {
        padding: 20px;
    }

    .app-container.closed-sidebar.closed-sidebar-mobile .app-sidebar .app-header__logo {
        width: auto;
        padding: 0 !important;
    }

    .app-container .main-card .card-body .card-head .right-content .input-group {
        min-width: 150px;
        max-width: 180px;
    }

    .app-container.closed-sidebar.closed-sidebar-mobile:not(.sidebar-mobile-open) .app-sidebar:hover .app-header__logo .logo-src {
        display: flex !important;
        width: 85%;
        margin-right: 15px;
    }

    .closed-sidebar-mobile .app-header__logo .logo-src {
        background-image: url(~/images/svg/close-icon-blue.svg)
    }

    .app-container.closed-sidebar .app-header__content {
        padding-left: 0;
    }

    .app-container .app-sidebar .app-header__logo .logo-src span {
        font-size: 20px;
    }

    .app-container.closed-sidebar .app-header__logo .logo-src img {
        height: 35px;
        width: 35px;
    }

    .closed-sidebar.closed-sidebar-mobile .app-sidebar:hover .app-header__logo {
        width: 250px;
    }
}

@media (max-width: 1199px) {
    .detail-box {
        gap: 15px 0;
    }

    .horizontal-table .info-box {
        justify-content: space-between !important;
    }

    .main-card .right-sec {
        flex: 1.2;
    }

    #entityDropdownWrapper .select2-container {
        max-width: 450px;
    }

    .info-table .detail-item label {
        width: 130px;
        min-width: 130px;
    }

    .progress-step {
        flex: 0;
    }

        .progress-step .nav-link {
            width: fit-content;
        }

    .app-container .progressbar {
        flex-wrap: wrap;
    }

    .progress-step .nav-link::before {
        width: 12px;
        height: 12px;
    }

    .app-container .progress {
        display: none;
    }
}

@media (max-width:991px) {
    .app-container .main-card .table-responsive .table {
        overflow-y: auto;
    }

    .btn {
        padding: 8px 16px !important;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control, .selection .select2-selection .select2-selection__rendered {
        padding: 10px;
    }

    .right-content .input-group-lg > .input-group-text {
        padding: 6px 14px;
    }

    .selection .select2-selection {
        height: 42px !important;
    }

    .create-update-form .card-content {
        padding: 16px;
    }

    .app-container .main-card .table-responsive .table .table-checkbox {
        margin: 0 4px 0 0;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control.input-lg {
        padding: 10px 6px;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control.startDateFilter,
    .app-container .main-card .card-body .card-head .right-content .form-control.endDateFilter {
        padding: 9.5px;
    }

    .app-container .main-card .pagination-wrapper {
        flex-wrap: wrap;
        justify-content: end;
        align-items: end !important;
        flex-direction: column-reverse;
    }

    .app-container .main-card .card-body .card-head {
        flex-direction: column !important;
    }

    #approvalFlow .card-head {
        flex-direction: row !important;
    }

    .app-container .main-card .card-body .detail-wrapper .card-head {
        flex-direction: row !important;
    }

    .app-container .main-card .card-body .card-head .right-content .btn-group .btn,
    .app-container .main-card .card-body .card-head .right-content .btn-group .add-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .app-container .main-card .card-body .card-head .right-content .button-group-wrapper {
        width: 100%;
    }

        .app-container .main-card .card-body .card-head .right-content .button-group-wrapper.btn-group-lg {
            flex-wrap: wrap;
        }

            .app-container .main-card .card-body .card-head .right-content .button-group-wrapper.btn-group-lg .btn-group {
                width: 100%;
                max-width: calc(25% - 6px);
            }

    .app-container .main-card .card-body .card-head .right-content .sync-btn-group .add-btn {
        padding: 8px 10px !important;
    }

    .app-container .main-card .card-body .card-head .right-content .input-group {
        max-width: calc(50% - 4px);
        width: 100%;
        min-width: auto;
    }

    .app-container .main-card .card-body .card-head .odd-filter-count.right-content .input-group {
        max-width: 100% !important;
    }

    .app-container .main-card .card-body .card-head .right-content .btn-group {
        max-width: 100%;
        width: 100%;
    }

    .app-container .main-card .card-body .card-head .right-content .select2-container.select2-container--default {
        min-width: unset;
        max-width: calc(50% - 4px);
    }

    .app-container .main-card .card-body .card-head .right-content .select2-container.select2-container--default {
        min-width: unset;
        max-width: calc(50% - 4px);
        width: 100% !important;
    }

    #DesignationHierarchySelect + .select2-container--default {
        max-width: 100%;
    }

    #subDivisionSelect.sub-div-select + .select2-container--default, #industrySelect + .select2-container--default, #skillSelect + .select2-container--default {
        max-width: 230px;
        min-width: 230px;
    }

    .app-container .select2-container .select2-search--inline .select2-search__field {
        margin-top: 5px;
    }

    .app-container .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: normal;
    }

    .app-container .main-card .card-body .card-head .right-content .form-select {
        min-width: unset;
        max-width: calc(50% - 4px);
    }

    .app-container .main-card .card-body .card-head .right-content .date-filter-group {
        min-width: unset;
        max-width: calc(25% - 6px);
        width: 100%;
    }

    .app-container .main-card .card-body .card-head .right-content .feedback-date-filter-group {
        min-width: unset;
        max-width: calc(50% - 4px);
        width: 100%;
    }

    .app-container .main-card .table-responsive #workTemplateTable .select2-container {
        min-width: unset;
    }

    .hierarchy-card .card-head .right-content {
        flex: .9;
    }

    .main-card.info-card {
        font-size: 14px;
    }

    .main-card .right-sec span {
        display: block;
        font-size: 16px;
        line-height: 110%;
    }

    .error-page-container {
        padding: 30px;
        text-align: center;
    }

        .error-page-container:before {
            width: 200px;
        }

        .error-page-container:after {
            width: 200px;
        }

    .error-code {
        -webkit-text-stroke: 2px var(--primary-color);
    }

    .error-message {
        font-size: 32px;
        line-height: 42px;
    }

    .error-description {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .home-button span {
        font-size: 20px;
        line-height: 16px;
    }

    .app-container .main-card .table-responsive.errorTable .accordion-body table th {
        min-width: 150px;
    }


    .app-container .main-card .card-body .card-head.Designation-head .right-content .select2-container.select2-container--default {
        max-width: calc(50% - 4px);
    }


    .app-container .main-card .card-body .card-head.Designation-head .right-content .button-group-wrapper.btn-group-lg {
        max-width: calc(50% - 4px);
        width: 100%;
    }

        .app-container .main-card .card-body .card-head.Designation-head .right-content .button-group-wrapper.btn-group-lg .btn-group {
            width: 100%;
            max-width: 100%;
        }

            .app-container .main-card .card-body .card-head.Designation-head .right-content .button-group-wrapper.btn-group-lg .btn-group .btn {
                white-space: nowrap;
            }

    .app-container .tab-card .card-head .form-select {
        min-width: 100px;
    }

    .app-container .resource-persona-section .card-header, .app-container .user-profile-section .card-header {
        padding: 8px 10px;
        margin-bottom: 8px;
        border-radius: 8px 8px 0 0;
    }

    .app-container .resource-persona-section .card-body {
        padding: 8px 10px;
    }

    .app-container .resource-persona-section .tab-card .card-body {
        padding: 8px 10px;
    }

    #entityDropdownWrapper .select2-container {
        max-width: 320px;
    }

    .attendence-info-group .info-content .info-box {
        font-size: 12px;
    }

    .summary-wrapper {
        width: 95%;
    }

    .info-table .details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .polarChartContainer {
        width: 300px;
        height: 300px;
        flex-shrink: 0;
    }

    .tab-content .content {
        grid-template-columns: auto 1fr;
    }
}

@media (max-width: 767px) {
    .white-space-nowrap {
        white-space: normal !important;
    }

    .app-container.closed-sidebar .app-sidebar {
        width: 250px !important;
    }

    .app-header-right {
        margin: 0 auto;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner ul li a {
        padding: 0;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner ul.mm-show {
        padding-left: 0;
    }

    .create-update-form.escalation-form .card-content select {
        max-width: 100%;
    }

    .create-update-form.escalation-form .card-content .del-icon {
        height: 40px;
        width: 40px;
    }

    .create-update-form.escalation-form .inner-matrix-card select {
        max-width: 100%;
    }

    .create-update-form.template-form .card-content {
        padding: 15px;
        padding-left: 25px;
    }

    .create-update-form.template-form .table-responsive {
        overflow-x: auto;
    }

    .create-update-form .label-wrapper {
        margin-bottom: 14px;
    }

    .app-container.closed-sidebar .app-wrapper-footer .app-footer .app-footer__inner {
        margin-left: 0px !important;
    }

    .app-container .main-card .card-body .card-head .right-content .form-control {
        padding: 9px 5px;
    }

    .app-container .main-card .card-body .card-head .right-content .btn-group .btn, .app-container .main-card .card-body .card-head .right-content .btn-group .add-btn {
        padding: 9px 11px;
    }

    .sidebar-mobile-open .app-header .app-header__mobile-menu {
        width: 300px;
        justify-content: end;
        transition: width .3s ease;
    }

    .app-container.closed-sidebar.sidebar-mobile-open .user-options {
        flex-direction: row;
    }

        .app-container.closed-sidebar.sidebar-mobile-open .user-options .icon-wrap {
            padding: 8px;
        }

    .app-container.sidebar-mobile-open.closed-sidebar-mobile .app-sidebar .app-header__logo .logo-src {
        width: 100% !important;
        display: flex !important;
        gap: 5px;
        vertical-align: middle;
    }

    .app-container.sidebar-mobile-open .app-sidebar .app-sidebar__inner ul li a {
        padding: 0;
    }

    .app-container.sidebar-mobile-open .app-sidebar .app-sidebar__inner ul.mm-show {
        padding: 0;
    }

    .app-container.closed-sidebar .app-header__content.header-mobile-open {
        padding: 10px 20px;
    }

    .sidebar-mobile-open .app-sidebar .app-sidebar__inner .vertical-nav-menu ul > li > a {
        height: 2rem;
        line-height: 2rem;
    }

    .app-container.closed-sidebar .app-sidebar:hover .app-sidebar__inner ul.mm-show > li > a {
        height: auto;
    }

    .hierarchy-card .card-head .right-content {
        flex: 1;
    }

    .collapse_wrapper div.info-box {
        min-width: 250px;
        max-width: 250px;
        gap: 5px;
    }

    .main-card .right-sec {
        grid-template-columns: auto auto;
    }

    .app-container .card-header > .nav .nav-link {
        padding: 6px;
    }

    .blank-head {
        width: 25px;
    }

    .app-container .main-card .table-responsive.attendence-table thead tr th,
    .app-container .main-card .table-responsive.attendence-table thead tr:nth-child(2) th:first-child,
    .app-container .main-card .table-responsive.attendence-table tbody tr td {
        padding: 10px;
    }

    .dropdown-menu.select-dropdown {
        position: absolute !important;
        top: 0 !important;
        width: fit-content !important;
        transform: translateY(23px) !important;
    }

    #entityDropdownWrapper .select2-container {
        max-width: calc(100% - 50px);
    }

    .dropdown-menu.select-dropdown {
        position: absolute !important;
        top: 0 !important;
        width: fit-content !important;
        transform: translateY(23px) !important;
    }

    .create-update-form .card-content input,
    .create-update-form .card-content select:not(.choices) {
        padding: 7px;
    }

    .tab-content-wrapper.addon-tab .row {
        width: 100%;
        margin: auto;
    }

    .tab-content-wrapper.addon-tab .first {
        order: 1;
    }

    .tab-content-wrapper.addon-tab .second {
        order: 3;
    }

    .tab-content-wrapper.addon-tab .third {
        order: 5;
    }

    .tab-content-wrapper.addon-tab .fourth {
        order: 2;
    }

    .polarWrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .legendContainer {
        width: 50%;
    }

    .app-container .main-card .table-responsive.seat-feedback-table tr:first-child th.first-head,
    .app-container .main-card .table-responsive.seat-feedback-table tr:nth-child(2) th.sec-col,
    .app-container .main-card .table-responsive.seat-feedback-table tr td.data-col {
        position: static;
    }

    .common-select ~ .select2-container.select2-container--default {
        min-width: 75%;
    }

    .app-container .main-card .table-responsive.budget-table tr th.sticky-head,
    .app-container .main-card .table-responsive.budget-table tr td.sticky-col {
        position: static;
    }
}

@media (max-width: 575px) {
    .text-format {
        white-space: wrap;
    }

    .filter-modal .modal-dialog .modal-body {
        padding: 20px;
    }

    .filter-modal .modal-dialog .modal-footer {
        justify-content: center;
    }

    .create-update-form.template-form .table-responsive thead th {
        padding: 10px;
    }

    .create-update-form .card-head {
        padding: 12px 19px;
    }

    .create-update-form.template-form .table-responsive thead th:first-child {
        min-width: 180px;
    }

    .filter-modal .modal-dialog {
        margin-right: auto;
        margin-left: auto;
        width: 90%;
    }

    .app-container .main-card .pagination-wrapper {
        width: 90%;
        place-self: end;
    }

    .deleteModal .modal-dialog {
        margin: 20px;
    }

    .create-update-form.template-form .table-responsive tbody .form-select {
        min-width: 160px;
    }

    .app-container.sidebar-mobile-open .app-header .app-header__logo {
        display: none !important;
    }

    .sidebar-mobile-open .app-header .app-header__mobile-menu {
        width: 280px;
    }

    .app-container.sidebar-mobile-open .app-header__mobile-menu {
        padding-right: 0;
        padding-left: 215px;
        transition: 0.15s ease-in;
    }

    .button-group-wrapper {
        width: 100%;
    }

    .app-container .resource-persona-section .accordion-wrapper ul.nav {
        margin: 0;
        display: flex !important;
    }

    .app-container .select2-container--default .select2-selection--multiple {
        overflow: hidden;
        height: auto !important;
    }

    .hierarchy-card .card-head {
        flex-direction: column;
        padding: 15px;
        padding-bottom: 0;
    }

    .hierarchy-card .top-sec {
        flex-direction: column;
    }

    .hierarchy-card .card-head .right-content {
        width: 100%;
    }

        .hierarchy-card .card-head .right-content span {
            display: none;
        }

        .hierarchy-card .card-head .right-content .form-select {
            padding: 6px;
        }

    .hierarchy-card .card-head .button-group-wrapper {
        width: auto;
    }

    .collapse_wrapper ul:not(:first-child) {
        padding-left: 70px;
    }

    .app-container .main-card .card-body .card-head .right-content .date-filter-group {
        min-width: unset;
        max-width: calc(50% - 4px);
        width: 100%;
    }

        .app-container .main-card .card-body .card-head .right-content .date-filter-group ~ .input-group {
            max-width: 100%;
        }

    .app-container .main-card .pagination-wrapper .pagination-right-sec .sec {
        flex-wrap: wrap;
    }

    .app-container .main-card nav.table-pagination .pagination .page-item .page-link {
        padding: 8px 12px;
    }

    .app-container .main-card nav.table-pagination .pagination .page-item:first-child .page-link, .app-container .main-card nav.table-pagination .pagination .page-item:last-child .page-link {
        padding: 4px 8px;
    }

    .app-container .main-card .card-body .card-head .right-content .button-group-wrapper.btn-group-lg .btn-group {
        width: 100%;
        max-width: calc(50% - 4px);
    }

    .app-container .main-card .card-body .card-head .right-content #bulkSyncBtn {
        width: auto;
        font-size: 14px;
        line-height: 110%;
        align-items: center;
        white-space: wrap;
    }

    .main-card .left-sec {
        flex: 1;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .main-card .right-sec {
        width: 100%;
        flex: 1;
    }

    .main-card .profile-wrapper {
        height: 60px;
        width: 60px;
    }

        .main-card .profile-wrapper .user-profile {
            height: 60px;
            width: 60px;
            min-width: 60px;
        }

    .error-page-container .wrapper {
        width: 90%;
    }

    .error-page-container:before {
        width: 150px;
        top: -100px;
        height: 300px;
    }

    .error-page-container:after {
        width: 150px;
        bottom: -100px;
        height: 300px;
    }

    .error-code {
        font-size: 100px;
    }

    .error-message {
        font-size: 24px;
        line-height: 30px;
    }

    .app-wrapper-footer .app-footer .app-footer__inner {
        padding: 0 20px !important;
        justify-content: center;
    }

    .app-container .app-main .app-main__inner {
        padding: 16px;
    }

    .app-container .main-card .card-body .card-head.Designation-head .right-content {
        flex-direction: column;
    }

        .app-container .main-card .card-body .card-head.Designation-head .right-content .select2-container.select2-container--default {
            max-width: 100%;
        }

        .app-container .main-card .card-body .card-head.Designation-head .right-content .button-group-wrapper.btn-group-lg {
            max-width: 100%;
        }

    .app-container .tab-card .card-head .sec {
        width: 100%;
    }

    .app-container .tab-card #seat .card-head {
        flex-direction: column !important;
    }

    .app-container .tab-card .create-update-form .table-responsive.list-variant-table table.inner-table {
        width: 100%;
    }

    .card-footer.sync-footer {
        padding: 12px;
    }

    .attendence-info-group .info-content {
        top: 45px;
    }

        .attendence-info-group .info-content .info-box {
            white-space: normal;
            height: 100%;
        }

    #entityDropdownWrapper .select2-container {
        max-width: 60%;
    }

    .summary-wrapper {
        width: 90%;
    }

        .summary-wrapper .num-cell {
            min-width: auto;
        }

        .summary-wrapper .footer {
            width: 100%;
            margin: 10px auto;
            padding: 0 10px;
            font-size: 12px;
        }

    .info-table {
        padding: 10px;
    }

        .info-table .detail-item label {
            width: 90px;
            min-width: 90px;
        }

    .legendContainer {
        width: 100%;
    }

    .polarChartContainer {
        width: 100%;
    }

    .app-container .main-card .table-responsive.agreement-feedback-table tr:first-child th.sticky-head,
    .app-container .main-card .table-responsive.agreement-feedback-table tr:nth-child(2) th.sticky-head,
    .app-container .main-card .table-responsive.agreement-feedback-table tr td.sticky-col {
        position: static;
    }

    tab-content .content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    .app-container .tab-card .create-update-form .card-head {
        flex-direction: column !important;
    }

        .app-container .tab-card .create-update-form .card-head .sec {
            width: 100%;
        }

    #entityDropdownWrapper .select2-container {
        max-width: 250px;
    }

    .progress-step {
        flex: 1;
    }
}
