/* --- CSS COMMON VARIABLES --- */
:root {
    --primary-color: #78BE20;
    --secondary-color: #262F36;
    --tertiary-color: #455460;
    --white-color: #fff;
    --black-color: #000;
    --font-size: 16px;
    --btn-font-size: 14px;
    --spacing-20: 20px;
    --spacing-10: 10px;
    --w-100: 100%;
    --h-100: 100%;
    --line-height: 140%;
    --border-circle: 30px;
    --border-curve: 10px;

    /* FONT SIZE VARIABLES WITH RESPONSIVE */
    --font-size-18: clamp(14px, 0.938vw, 18px); /* Font-size: 0.938vw; */
    --font-size-16: clamp(12px, 0.84vw, 16px); /* Font-size: 0.84vw; */

    /* BRAND LOGO WIDTH  */
    --logo-width-160: clamp(140px, 13vw, 160px);
    --aside-width-256: clamp(240px, 13vw, 256px);

  }

/* --- CSS COMMON DESIGN FOR PROJECT --- */
* { margin: 0; padding: 0; }

body { overflow: hidden; background-color: #f8f8f8; font-family: 'Lexend', sans-serif !important;}

@media (max-width: 575px) { body { overflow: auto; } }

img { max-width: 100%; height: auto; }

ul li { list-style: none; }

.wrapper { height: var(--h-100); }

.arrowTransform { transform: rotate(180deg); }

.arrowIcon { transition: all 0.3s ease; }

.overflowVisible { overflow: visible !important; }

/* COMMON SCROLLBAR FOR INNER CONTENT */
.scroll-container { overflow-y: auto; overflow-x: hidden; height: 250px; }

.scroll-container::-webkit-scrollbar { height: 5px; width: 5px; }

.scroll-container::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #e8e8e8; border-radius: 10px; border: 5px solid #b4b4b4; }

.scroll-container::-webkit-scrollbar-thumb { background: #455460; border-radius: 10px; }

.responsiveMargin-small.table-responsive::-webkit-scrollbar-track { margin: 20px; padding-bottom: 15px; }

.custom-scrollbar-thin::-webkit-scrollbar { height: 5px; width: 5px; }

.custom-scrollbar-thin::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #e8e8e8; border-radius: 10px; border: 5px solid #b4b4b4; }

.custom-scrollbar-thin::-webkit-scrollbar-thumb { background: #455460; border-radius: 10px; }

.custom-scrollbar-thin::-webkit-scrollbar-thumb:hover { background: #455460; }

/* SELECT PICKER DROPDOWN CUSTOM SCROLLBAR */
.dropdown-menu .inner:not(.dropdown-menu) { overflow-y: auto; overflow-x: hidden; }

.dropdown-menu .inner:not(.dropdown-menu)::-webkit-scrollbar { height: 4px; width: 4px; }

.dropdown-menu .inner:not(.dropdown-menu)::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #e8e8e8; border-radius: 10px; border: 5px solid #b4b4b4; margin: 50px; }

.dropdown-menu .inner:not(.dropdown-menu)::-webkit-scrollbar-thumb { background: #455460; border-radius: 10px; }

/* --- COMMON BUTTON DESIGN --- */
.btn { will-change: auto; min-height: 40px; font-size: var(--btn-font-size); margin-bottom: 0; }

.btn img { transition: all 0.3s ease; }

.flex-align { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Icon Buttons */
.sidePanel-btn-wrapper button { border: 1px solid transparent; background: transparent; padding: 0; margin: 0; }

.sidePanel-btn-wrapper .custom-tooltip::before { white-space: nowrap; font-weight: 400; }

.img-primary { filter: brightness(0) saturate(100%) invert(64%) sepia(52%) saturate(623%) hue-rotate(44deg) brightness(92%) contrast(91%); }

.btn-icon-primary { background: transparent; border: 1px solid transparent; padding: 5px 6px; border-radius: 100%; transition: all 0.3s ease; height: 32px; width: 32px; }

.btn-icon-primary .btn-icon-primaryImg { transition: all 0.3s ease; }

.btn-icon-primary:hover { transform: translateY(-4px); }

/* .btn-icon-primary:hover { background: #78BE20; border: 1px solid #78BE20; }

.btn-icon-primary:hover .btn-icon-primaryImg { filter: brightness(100) saturate(0%); }

.btn-icon-primary:hover .btnImage { filter: brightness(100) saturate(0%); } */

/* .min-height-230 { min-height: 300px; transition: all 0.3s ease; } */


/* #openFilterSidebarBtn .btn-icon-primary img { width: 17px; height: 17px; } */

/* ------ Button Primary [ Green Button ] ------ */
.btn.btn-primary ,

.btn.btn-primary:focus { background-color: var(--primary-color); border: 1px solid var(--primary-color); color: var(--white-color); border-radius: 30px; font-weight: 600; line-height: 1.2; display: flex; justify-content: center; align-items: center; text-transform: capitalize; margin-bottom: 0; min-width: 130px; transition: all 0.3s ease-in-out; padding: 10px 30px; }

.btn.btn-primary:hover { background-color: #FFF; border: 1px solid var(--primary-color); color: var(--primary-color); }

.btn.btn-primary:hover img { filter: brightness(0) saturate(100%) invert(64%) sepia(52%) saturate(623%) hue-rotate(44deg) brightness(92%) contrast(91%); }

.advanceFilterBtn.active:hover img { filter: none; }

/* ------ Button Secondary [ Black Transperent Button ] ------ */
.btn.btn-secondary { background-color: transparent; border: 1px solid var(--secondary-color); border-radius: 30px; color: var(--secondary-color); font-weight: 600; text-transform: capitalize; margin-bottom: 0; min-width: 100px; display: flex; justify-content: center; align-items: center; line-height: normal; }

.btn.btn-secondary:hover { background-color: var(--secondary-color); color: var(--white-color); border: 1px solid var(--secondary-color); }

/* ------ Button tertiary [ Select Buttons ] ------ */
.btn.btn-tertiary { padding: var(--spacing-10); border-radius: 30px; min-width: 140px; border: 1px solid rgba(0, 0, 0, 0.12); background: #F2F2F2; color: var(--tertiary-color); font-weight: 400; width: auto; display: flex; justify-content: center; align-items: center; text-transform: capitalize; line-height: normal; }

.btn-active { background: #78be20 !important; color: #FFF !important; }

.btn-active img { filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(9%) hue-rotate(171deg) brightness(103%) contrast(103%); opacity: 1; }


/* .btn.btn-tertiary:hover, .btn.btn-tertiary:focus { background-color: var(--white-color); } */


/* ------ Button Primary [ Transperent Button ] ------ */
.btn.btn-primary.bgTransf-btn { border: 1px solid #78BE20; background: transparent; color: #78BE20;}

.btn.btn-primary.bgTransf-btn:hover { border: 1px solid #78BE20; background: #78BE20; color: #FFFFFF; }

.btn.btn-primary.bgTransf-btn:hover img { filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(142deg) brightness(112%) contrast(101%); }

/* ------ SWal Buttons [ Button Primary ] ------ */
.swal2-styled.swal2-confirm:focus { outline: 0; box-shadow: none; }

.swal2-container.swal2-center .swal2-popup .swal2-actions .swal2-confirm { display: flex !important; align-items: center; justify-content: center; background-color: var(--primary-color) !important; border: 1px solid var(--primary-color) !important; color: var(--white-color); border-radius: 30px; font-weight: 600; line-height: 1.2; display: flex; justify-content: center; align-items: center; text-transform: capitalize; margin-bottom: 0; min-width: 130px; transition: all 0.3s ease-in-out; padding: 10px 15px !important; height: 40px; margin: 0; }

.swal2-container.swal2-center .swal2-popup .swal2-actions .swal2-confirm:hover { background-color: #FFF !important; border: 1px solid var(--primary-color) !important; color: var(--primary-color); background-image: none !important; }

/* ------ SWal Buttons [ Button Secondary ] ------ */
.swal2-container.swal2-center .swal2-popup .swal2-actions .swal2-cancel { display: flex !important; align-items: center; justify-content: center; background-color: transparent !important; border: 1px solid var(--secondary-color) !important; border-radius: 30px; color: var(--secondary-color); font-weight: 600; text-transform: capitalize; transition: all 0.3s ease-in-out; margin-bottom: 0; min-width: 100px; padding: 10px 15px !important; height: 40px; margin: 0; }

.swal2-container.swal2-center .swal2-popup .swal2-actions .swal2-cancel:hover { background-color: var(--secondary-color) !important; color: var(--white-color); border: 1px solid var(--secondary-color) !important; }

/* BUTTONS RESPONSIVE */
/* @media (max-width: 575px) { .btn { min-width: unset !important; min-height: 40px; padding: 10px 30px !important; } } */
@media (max-width: 480px) { .btn { font-size: 14px !important; width: 100%; } }

/* COMMON INPUT FIELDS DESIGNS */
.form-control.commonInputs { padding: 12px 20px; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 40px; font-weight: 400; font-size: 14px; line-height: 1.2; color: #000000b3; }
.form-control.normalSelect button { position: relative; text-align: left; background: #F2F2F2; border-radius: var(--border-circle); padding: 12px var(--spacing-20); border: 1px solid #0000001a !important; font-weight: 400; font-size: 14px; line-height: 1.2; color: #000000b3 !important; }
.modal .form-control.normalSelect button { background: #FFF !important; }

.form-control.normalSelect2 button { background: var(--white-color); }

.selectBox-arrow { height: 7px; width: 12px; background: url(/images/dropdown-arrow.svg) no-repeat center; background-size: cover; margin-left: 10px; position: absolute; top: 17px; right: 15px; }

.form-control.themeSelect button { background: #F2F2F2; border: 1px solid #0000001f !important; padding: 12px 20px; border-radius: 30px; font-weight: 400; font-size: 14px; line-height: 1.2; color: #000000b3; }

/* --- COMMON CUSTOM CLASSES START --- */
/* Gap Classes */
.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.gap-25 { gap: 25px; }
.gap-30 { gap: 30px; }

/* Min-Max Width Classes */
@media (min-width: 480px) {
    .min-wid-150 { min-width: 150px; }
    .min-wid-230 { min-width: 230px; }
}

/* Common White Box , Shedow and padding */
.whiteBgShedow { background: #FFFFFF; box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; border-radius: var(--border-curve);}
.boxPd-20 { padding: 20px; }

/* Responsive class design */
.responsiveMargin-small.table-responsive::-webkit-scrollbar-track { margin: 20px; padding-bottom: 15px; }

/* To make Image White */
.img-whiteFilter { transition: all 0.3s ease; filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7496%) hue-rotate(153deg) brightness(107%) contrast(100%); }
.cursor-pointer { cursor: pointer; }

/* Common Spacing Classes  */
.headerBtn-content { margin-top: 20px; margin-bottom: 20px; }

.headerBtn-content-text { font-weight: 500; font-size: 16px; line-height: 1.3; color: #000000; margin-bottom: 0; text-align: left; }

.badge-active { color: var(--primary-color); background-color: #eef5e6; padding: 5px 10px; border-radius: 5px; }

.lable-text { font-weight: 300 !important; font-size: 16px !important; align-items: center; color: #000 !important; }

.my-30 { margin-top: 30px !important; margin-bottom: 30px !important; }

.min-wid-unset { min-width: unset !important; }

.dropdown-menu li.selected.active { background: #f1f1f1; }

/* BOOTSTRAP TOOLTIP DESIGN */
.tooltip-inner { padding: 5px 10px; background-color: #fff; color: #000; font-size: 13px; font-weight: 600; border-radius: 5px; box-shadow: 0px 4px 30px 3px rgba(0, 0, 0, 0.08); }
.custom-tooltip-style .tooltip-inner { font-size: 17px; }

/* FLEX CLASSES */
@media (max-width: 991px) { .flex-column-991 { flex-direction: column; } }
@media (max-width: 575px) {
    .flex-column-575 { flex-direction: column; }
    .btn-width-full-575 { width: 100%; }
    .global-search input,
    .global-search-feedback input { width : 100% !important; }
}
@media (max-width: 480px) { .btn-width-full-480 { width: 100%; } }

/* COMMON GRID SYSTEM DESIGN */
.grid-3-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 20px; }

.grid-4-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }

.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; } /* 2 Box */

.grid-container.grid-991 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

/* RESPONSIVE DESIGN */
@media (max-width: 575px){
    .grid-3-box { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important; }
}
@media (max-width: 480px) {
    .GridFor-Header { display: grid !important; grid-template-columns: 1fr; gap: 10px; }
    .right-actionbar { width: 100%; }
    .page_filter { white-space: nowrap; width: 100%; }
    .page_filter span { width: 100%; }
    .grid-4-box { grid-template-columns: 1fr; }
    .grid-container { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); }
}

/* BACKGROUND CLASSED */
.bg-bodyDark { background: #F2F2F2 !important; }

.pointer-events-none { pointer-events: none !important; }

.bottomLine-popUp {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    border-top: 0 !important;
    position: absolute;
    top: 100%;
    width: 100%;
    max-width: calc(100% - 30px);
    margin: auto; */
    display: none;
}

/* COMMON FONT DESIGNS */
.template-text { color: var(--black-color) !important; font-size: 14px; font-weight: 400; line-height: 1.3; text-align: left; display: flex; align-items: baseline; gap: 5px; margin-bottom: 0; }
@media (max-width: 767px) { .template-text { font-size: 12px; line-height: 1.3; } }

/* TEXT OVERFLOW COMMON CLASSES */
.txt-ellipsis-fullWidth { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 15px); }


/* --- COMMON CUSTOM CLASSES END --- */

/* --- COMON MODAL DESIGN START --- */
.modal { padding: 0 20px !important; }

.modal .modal-dialog .modal-content ,
.swal2-popup { padding: 20px 30px; }

.modal .modal-dialog .modal-content .modal-header ,
.swal2-header ,
.modal .modal-dialog .modal-content .position-modal-head { display: flex; align-items: center; padding: 0 0 15px; border-bottom: 1px solid #00000026; margin-bottom: 20px; }

.modal .modal-dialog .modal-content .modal-header button ,
.modal .modal-dialog .modal-content .position-modal-head button { padding: 0; position: static; display: flex; align-items: center; margin: 0; }

.modal .modal-dialog .modal-content .modal-header button span ,
.modal .modal-dialog .modal-content .position-modal-head button span { display: flex; align-items: center; }

.modal .modal-dialog  , .modal.show .modal-dialog { transform: translate(0); }

.modal .modal-dialog .modal-content .modal-header .modalHeader-title ,
.modal .modal-dialog .modal-content .position-modal-head .modalHeader-title ,
.modal .modal-dialog .modal-content .modal-header .modal-title ,
.swal2-title ,
.modal .modal-dialog .modal-content .position-modal-head .modal-title { font-weight: 500; font-size: 18px; line-height: 1.3; color: #000000; margin-bottom: 0; }

.modal .modal-dialog .modal-content .modal-body { padding: 0px; } /*  max-height: calc(100vh - 400px); overflow: auto; max-width: 100%; overflow-x: hidden; padding-right: 5px; */

.modal .modal-dialog .modal-content .modal-body .model-labels { font-weight: 400; font-size: 14px; line-height: 1; color: #000000; }

.modal .modal-dialog .modal-content .modal-body .position-detail { margin-bottom: 20px; }

.modal .modal-dialog .modal-content .modal-body .position-detail:last-child { margin-bottom: 0px; }

.modal .modal-dialog .modal-content .modal-body .position-detail label { font-weight: 400 !important; font-size: 14px !important; line-height: 1.2; color: #000000 !important; margin-bottom: 10px; }

.modal .modal-dialog .modal-content .modal-body input::placeholder,
.modal .modal-dialog .modal-content .modal-body textarea::placeholder ,
.modal .modal-dialog .modal-content .modal-body input,
.modal .modal-dialog .modal-content .modal-body textarea { font-weight: 400 !important; font-size: 14px !important; line-height: 1.2 !important; color: #000000b3 !important; opacity: 1; }

.modal .modal-dialog .modal-content .modal-body input[type='text'],
.modal .modal-dialog .modal-content .modal-body textarea { border: 1px solid rgba(0, 0, 0, 0.12) !important; background: #FFF !important; padding: 10px 20px; }

/* Body Scrollbar */
.modal-body::-webkit-scrollbar { height: 7px; width: 7px; }
.modal-body::-webkit-scrollbar-track { border-radius: 10px; border: 1px solid #b4b4b4; background-color: #F5F5F5; margin: 30px; }
.modal-body::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #455460; }

@media (max-width: 575px) {
    .modal .modal-dialog .modal-content .modal-header .modalHeader-title ,
    .modal .modal-dialog .modal-content .position-modal-head .modalHeader-title ,
    .modal .modal-dialog .modal-content .modal-header .modal-title ,
    .modal .modal-dialog .modal-content .position-modal-head .modal-title { font-size: 15px; }
    .modal .modal-dialog .modal-content .modal-header .close img ,
    .modal .modal-dialog .modal-content .position-modal-head .close img ,
    .modal .modal-dialog .modal-content .modal-header .close img ,
    .modal.modal-dialog .modal-content .position-modal-head .close img { height: 13px; width: 13px; }
}

/* --- COMON MODAL DESIGN START --- */

/* COMMON SEARCH BUTTON DESIGN */
.global-search input, .global-search-feedback input { padding: var(--spacing-10) 35px; border-radius: 30px; min-width: 100px; border: 1px solid rgba(0, 0, 0, 0.12); background: #F2F2F2; color: var(--tertiary-color) !important; font-size: var(--btn-font-size); font-weight: 400; width: 200px; }

.global-search, .global-search-feedback { position: relative; }

.global-search .search-icon, .global-search-feedback .search-icon { position: absolute; top: calc(50% - 7px); left: 15px; z-index: 99999; }

.global-search input::placeholder, .global-search-feedback input::placeholder {
    font-size: var(--btn-font-size);
}

/* ------ COMMON TABLE DESIGN START ------ */
.modal table.table { min-height: 250px; }

table.table { background-color: var(--white-color); border-radius: 10px; margin-bottom: 20px; }

table.table thead th { color: #000; padding: 15px 20px; background: transparent; /* font-size: 16px; font-size: 0.84vw; */ font-size: clamp(13px, 0.84vw, 16px); font-weight: 500; line-height: 18px; white-space: nowrap; border: none; } /* text-align: center !important; */

.modal table.table thead { background: #FFF; }

table.table thead th:last-child { text-align: center; }

table.table tbody td:last-child { text-align: center; }

table.table tbody td { white-space: nowrap; padding: 10px 20px !important; vertical-align: middle; } /*  text-align: center; */

table.table tbody td a:hover { color: #000; }

table.table thead tr, table.table tbody tr { border-bottom: 1px solid #D9D9D9; }

table.table tbody tr:last-child { border-bottom: none; }

.boxPdRT-20Spacings::before ,

.boxPdRT-20Spacings::after { position: absolute; content: ''; height: calc(100% - 20px); width: 20px; background: #FFF; top: 0; z-index: 1; }

.boxPdRT-20Spacings::before { left: 15px; border-radius: 10px 0 0 10px; }

.boxPdRT-20Spacings::after { right: 15px; border-radius: 0 10px 10px 0; }

.dataTables_wrapper .sorting:after { color: #ccc; }

.status-text-form a { color: #000000b3; font-weight: 500 !important; }

.table-responsive { height: auto; padding-bottom: 30px; }

/* Showing Entries Text Design */
.dataTables_wrapper .dataTables_info { font-weight: 400; font-size: 14px; line-height: 1.2; color: #000000; text-align: left; opacity: 0.7; }
/* ------ COMMON TABLE DESIGN END ------ */

/* ------ PAGINATION DESIGN START ------ */
#fileUploadDatatable_wrapper.dataTables_paginate .pagination { margin: 30px 15px 114px 0; }

#FeedbackListDatatable_wrapper .dataTables_paginate .pagination { margin: 30px 15px 120px 0; }

.dataTables_paginate .pagination { gap: 10px; }

.dataTables_wrapper .dataTables_paginate .pagination .paginate_button .page-link { height: 100%; padding: var(--spacing-10); border-radius: 8px; margin: 0; z-index: 0; color: #333333; background: #FFF; border: 1px solid #F1F1F1; font-size: 14px; font-weight: 600; line-height: normal; }

@media (max-width: 767px) { .dataTables_wrapper .dataTables_paginate .pagination .paginate_button .page-link { padding: 4px; display: flex; justify-content: center; align-items: center;} }

.dataTables_wrapper .dataTables_paginate .pagination .paginate_button.active .page-link, .dataTables_wrapper .dataTables_paginate .pagination .paginate_button:hover .page-link { background: var(--primary-color); color: var(--white-color); border: 1px solid var(--primary-color); }

.paginate_button.disabled:hover .page-link { color: #333333 !important; background-color: var(--white-color) !important; }
/* ------ PAGINATION DESIGN END ------ */

/* FEEDBACK PAGE DESIGN START */
.feedbackPage-section .feedback-content p{ text-align: left; font-weight: 400; font-size: 14px; line-height: 1.2; color: #000000; margin-bottom: 30px; }

.feedbackPage-section .feedback-label ,

.feedbackPage-section .bug-label { font-weight: 400; font-size: 14px; line-height: 1; text-transform: capitalize; color: #000000; margin-bottom: 0; }

.feedbackPage-section .list-bug p,

.feedbackPage-section .list-feedback p,

.feedbackPage-section .list-client-feedback p { font-weight: 600; font-size: 14px; line-height: normal; color: #000000b3; padding: 0; margin-bottom: 7px; }

.feedbackPage-section .list-bug p.popup-feedback-date { font-weight: 400; font-size: 14px; line-height: 21px; color: #000000b3; margin: 0; }
/* FEEDBACK PAGE DESIGN END */

/* HELP PAGE DESIGN START */
.helpPage-section .noHelp-content { font-weight: 500; font-size: 16px; line-height: 1; color: #000000; margin-bottom: 0; }

.helpPage-section .help-accordian .btn-link .accordianIcon { height: 14px; width: 14px; position: relative; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }

.helpPage-section .help-accordian .btn-link .accordianIcon::after { position: absolute; content: ''; height: 14px; width: 14px; background: url(/images/help-up.svg) no-repeat; background-position: center; background-size: cover; transition: all 0.3s ease; }

.helpPage-section .help-accordian .btn-link:not(.collapsed) .accordianIcon::after { height: 3px; background: url(/images/help-down.svg) no-repeat; background-position: center; background-size: cover; transform: rotate(180deg); }

.btn-link.focus, .btn-link:focus, .btn-link:hover { text-decoration: none; }

.add-help-container .form-group { margin: 0 0 30px; }

.add-help-container .grid-container > div > div:last-child .form-group { margin-bottom: 0; }

.add-help-container .grid-container .feedback-text-area .form-group { margin-bottom: 0; }
/* HELP PAGE DESIGN END */

/* ------  COMMON LAYOUT DESIGN START ------ */
.content-wrapper { padding: 10px 0px 10px 10px; position: relative; transition: all 0.3s ease-in-out 0s; display: flex; height: var(--h-100); }
/* ------  COMMON LAYOUT DESIGN END ------ */

img.no-data-img { max-width: 250px; min-width: 250px; padding: 50px !important; }

/* ------ HEADER SECTION DESIGN START ------ */
.header-section { position: sticky; top: 0px; z-index: 99; color: var(--black-color); padding: var(--spacing-10) 0; box-shadow: none; gap: 15px; }

.header-section::after { content: ''; position: absolute; bottom: 0px; border-bottom: 1px solid #ccc; width: calc(100% - 30px); left: 15px; }

.header-section .orgmaps-breadcrumbs .breadcrumbs-label { color: var(--black-color); font-weight: 600; font-size: 20px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }

.header-section .orgmaps-breadcrumbs .breadcrumbs-label span { color: #8c8c8c; }

.header-section .header-rightContent .profileImage-wrapper { height: 44px; width: 44px; border-radius: 50px; overflow: hidden; border: 1px solid #888; }

.header-section .header-rightContent .profileName { font-weight: 600; font-size: 16px; line-height: 1; text-transform: capitalize; color: #000000; margin-bottom: 0px; }

.header-section .header-rightContent .accountType { font-weight: 400; font-size: 12px; line-height: 1; text-transform: capitalize; color: #000000; opacity: 0.7; }

.header-section .header-rightContent .dropdown-Togglemenu { display: none; position: absolute; top: calc(100% + 10px); background: #FFF; width: 100%; box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); border-radius: 10px; padding: 8px; z-index: 1; }

.header-section .header-rightContent .dropdown-Togglemenu .header-dropdown-item , .header-section .header-rightContent .dropdown-Togglemenu .header-dropdown-item:active { font-weight: 400; font-size: 16px; line-height: 1.2; color: #000000; margin-left: 0; border-bottom: 1px solid rgb(0, 0, 0, 0.2); padding: 12px; display: flex; align-items: center; gap: 10px; background-color: #FFF; }

.header-section .header-rightContent .dropdown-Togglemenu .header-dropdown-item .menu-item-name { margin-left: 0; }

.header-section .header-rightContent .dropdown-Togglemenu .header-dropdown-item:hover { color: var(--primary-color); }

.header-section .header-rightContent .dropdown-Togglemenu ul li:last-child .header-dropdown-item { border-bottom: 1px solid transparent; }

.header-section .orgmaps-breadcrumbs ul { margin-bottom: 0; }

/* Responsive Design */
@media (max-width: 991px) {
    .header-section { z-index: 1; }
}
@media (max-width: 575px) {
    .header-section .header-rightContent .dropdown-Togglemenu { right: 0; width: 250px !important; }

    .header-section .header-rightContent .profileImage-wrapper { height: 35px; width: 35px; }

    .header-section .header-rightContent .dropdown-Togglemenu .mobile-username { display: block; text-align: center; border-bottom: 1px solid #888; padding-bottom: 10px; margin-bottom: 5px; }
}

@media (max-width: 480px) {
    .header-section .orgmaps-breadcrumbs .breadcrumbs-label { font-size: 14px; line-height: 1; }
}

/* ------ HEADER SECTION DESIGN END ------ */


/* ------ LEFT MENU DESIGN START ------ */
.leftmenu { width: 256px; background: var(--secondary-color); border-radius: 10px; flex-shrink: 0; z-index: 1; position: sticky; top: 10px; height: var(--h-100); }

.leftmenu.min-width-sidebar { width: 66px !important; }

/* .leftmenu.min-width-sidebar .logo-box .navbar-brand { width: 45px; } */

.leftmenu.min-width-sidebar .logo-box .navbar-brand img { min-width: 110px; }

.leftmenu .logo-box { padding: 14px 16px 10px; transition: all 0.2s ease; }

.leftmenu .logo-box .navbar-brand { overflow: hidden; width: 100%; transition: all 0.3s ease; padding-top: 2px; padding-bottom: 0; }

.leftmenu .logo-box .navbar-brand img {  min-width: 160px;  transition: all 0.3s ease; }

.leftmenu ul { max-height: 70vh; overflow-y: auto; overflow-x: hidden; }

.leftmenu ul li a { color: #fff; font-size: 16px; padding: 14px 21px; display: flex; align-items: center; font-weight: 600; border-left: 3px solid transparent; }

.leftmenu ul li.active > a ,

.leftmenu ul li:hover > a { background-color: #333F48; color: #78BE20; border-left: 3px solid #78BE20; }

.leftmenu ul li .menu-item-name { margin-left: 23px; text-transform: capitalize; }

.leftmenu ul li.setting-dropdown.active .img-whiteFilter { transform: rotate(180deg); }

.leftmenu ul li .setting-dropdown-content .nav-item a::before { content: ""; position: absolute; background-color: #78be20; border-radius: var(--border-circle); width: 10px; height: 10px; }

.leftmenu ul li .setting-dropdown-content .nav-item .menu-item-name { margin-left: 20px; font-size: 14px; }

.leftmenu .menu-toggle-screen { position: absolute; top: calc(0% + 28px); right: calc(0% + 10px); width: 30px; height: 30px; background: #e4e5eb; border: 1px solid var(--tertiary-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: all 0.4s ease; }

.leftmenu .menu-toggle-screen.min-menu-toggle-btn { right: calc(0% - 10px); transform: rotate(180deg); }

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .leftmenu { z-index: 9999; position: absolute; left: 10px; }

    .right-side-bar { max-width: calc(100% - 70px) !important; margin-left: auto; }
}

/* ------ LEFT MENU DESIGN END ------ */

/* ------ PROFILE PAGE DESIGN START ------ */
.profilePage-section { padding: 30px 0; }
/* ------ PROFILE PAGE DESIGN END ------ */

/* ------ RIGHT CONTAINER DESIGN START ------ */
.right-side-bar { width: var(--w-100); display: flex; flex-direction: column; max-width: 100%; overflow: auto; }

.right-side-bar .main-container { overflow: auto; height: var(--h-100); transition: all 0.3s ease; }

.right-side-bar .main-container::-webkit-scrollbar { height: 7px; width: 7px; padding-left: 20px; margin-left: 20px; }

.right-side-bar .main-container::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #e8e8e8; border-radius: 10px; border: 5px solid #b4b4b4; }

.right-side-bar .main-container::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 10px; }

.right-side-bar .main-container::-webkit-scrollbar-thumb:hover { background: var(--secondary-color); }

/* .right-side-bar .main-container:has(:scrollbar) { padding-right: 20px; } */
/* .main-container { padding-right: 0; transition: padding-right 0.2s ease; } */
/* .main-container.scrollbar-visible { padding-right: 0px; } */

/* ------ RIGHT CONTAINER DESIGN END ------ */

/* ------ DASHBOARD PAGE DESIGN START ------ */

.dashboard-inner .dashboard-box { background-color: var(--white-color); height: var(--h-100); border-radius: 10px; padding: 20px; padding-right: 40px; box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; position: relative; }

.dashboard-inner .disableDash-link { cursor: default; }

.dashboard-inner .dashboard-box:hover { box-shadow: 4px 12px 10px 0px rgba(0, 0, 0, 0.1); }

.dashboard-inner .dashboard-box .dashboard-head-text { color: var(--black-color); font-weight: 600; font-size: 18px; }

.dashboard-inner .dashboard-box .dashboard-inner-text { color: var(--black-color); /* font-size: var(--font-size); */ font-size: 14px; margin-top: 30px; }

.dashboard-inner .dashboard-box .img-container { position: relative; }

.dashboard-inner .dashboard-box .img-container::after { content: ""; position: absolute; left: 0; bottom: -15px; width: 50px; height: 3px; background-color: var(--primary-color); }

.right-actionbar .welcomeText { color: var(--secondary-color); font-size: 18px; text-transform: capitalize; font-weight: 400; line-height: 1.3; margin-bottom: 0; }

.right-actionbar .welcomeText span { text-transform: lowercase; color: #868686; }

.dashboard-inner .dashboard-box .icon-right { background-color: var(--primary-color); border-radius: var(--border-circle); width: 30px; height: 30px; display: flex; justify-content: center; align-items: center; position: absolute; right: 15px; bottom: 10px; transition: all 0.3s ease; }

.dashboard-inner .dashboard-box .icon-right img { transition: all 0.3s ease; }

.dashboard-inner .dashboard-box:hover .icon-right { background-color: var(--white-color); border: 1px solid var(--primary-color); transform: translateX(5px); }

.dashboard-inner .dashboard-box:hover .icon-right img { filter: brightness(0) saturate(100%) invert(69%) sepia(48%) saturate(686%) hue-rotate(40deg) brightness(87%) contrast(92%); }
/* ------ DASHBOARD PAGE DESIGN END ------ */

/* ------ CREATE NEW PROJECT DESIGN START ------ */
.createProject-section .project-left , .createProject-section  .project-right { background-color: var(--white-color); border-radius: 10px; padding: var(--spacing-20); width: 100%; }

.createProject-section .select-drop { min-width: 200px; }

.createProject-section .file-msg { color: #000000b3 !important; font-size: 18px !important; text-align: center; font-weight: 400; line-height: 18px; align-items: center; }

.createProject-section .project-status-radio { display: flex; justify-content: flex-start; align-items: center; gap: 10px; padding: 8px 0px; }

.main-container .uploadbox-text { color: var(--black-color); font-size: 18px; font-weight: 500; text-align: left; }

.main-container .template .upload-sec .userimg-sec .img-dropbox { border-radius: 10px; border: 2px dashed var(--primary-color); background: #78be200f; }

.main-container .template .upload-sec .selected-file { width: calc(100%); margin-left: 15px; opacity: 0; visibility: hidden; display: none; }

.main-container .template .upload-sec .selected-file.active { opacity: 1; visibility: visible; display: block; }

.main-container .camp-info { color: var(--black-color); font-size: 20px; margin-bottom: 30px; font-weight: 600; }

.main-container .userimg-sec .img-dropbox input { opacity: 0; position: absolute; width: 100%; height: 100%; left: 0; top: 0; cursor: pointer; }

.project-form .lable-text { align-items: baseline; }

#campaignForm .project-form .lable-text { align-items: center !important; }

#campaignForm .project-form .lable-text h6 { margin-bottom: 0; }

.createProject-section .select-drop2 { max-width: 200px; }

.createProject-section .select-drop2 select { max-width: 100%; overflow: hidden; text-overflow: ellipsis; padding: 10px 25px; height: auto !important; }

/* Responsive Design */
@media (max-width: 575px) {
    .createProject-section .select-drop { min-width: unset; width: 100%; }

    .createProject-section .file-msg { font-size: 14px !important; }
}
/* ------ CREATE NEW PROJECT DESIGN END ------ */

/* ------ HR DATA PAGE DESIGN START ------ */
.filterIcon { opacity: 0.3; }

.hrData-section .customFilterSelects .normalSelect button { padding: 10px 40px; height: 43px; position: relative; }

.customFilterSelects .dropdown-menu { width: 100%; max-width: 100%; min-width: 100% !important; }

@media (min-height: 575px) {
    .customFilterSelects .dropdown-menu .inner { max-height: 250px !important; }
}
.customFilterSelects .dropdown-menu.inner {
    margin: 0 !important;
}

.help-accordian .card {box-shadow: none !important;}

.hrData-section .customFilterSelects .normalSelect .inner { max-height: 200px !important; }

.hrData-section .customFilterSelects .normalSelect button::after { position: absolute; content: ''; height: 7px; width: 12px; background: url(/images/dropdown-arrow.svg) no-repeat center; background-size: cover; right: 20px; top: calc(50% - 3.5px); }

.hrData-section .right-actionbar .show-hide-filters,
.hrData-section .right-actionbar .dropdown_custom,
.hrData-section .right-actionbar .innerDrops {
    line-height: normal;
 }

/* GRID System For HR data page Top Buttons */
.hrData-section .demo { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); width: 100%; }

.hrData-section .actionBtns { position: sticky; background: #FFF !important; right: 0; }

/* RESPONSIVE */
@media (max-width: 767px) {
    .hrData-section .actionBtns { position: static; }
}
/* ------ HR DATA PAGE DESIGN END ------ */

/* ------ BOTTOM MENU DESIGN START ------ */
.bottomMenu-wrapper .tabcontainer { display: flex; justify-content: center; position: fixed; bottom: 20px; width: 50%; border: 1px solid var(--primary-color); background: #f8f8f8; border-radius: var(--border-circle); padding: 5px; }

.bottomMenu-wrapper .tabcontainer .tablink { width: 100%; color: var(--black-color); text-align: center; padding: 5px; display: flex; justify-content: center; align-items: center; gap: 10px; }

.bottomMenu-wrapper .tabcontainer .tablink:hover { background: var(--primary-color); color: var(--white-color); text-align: center; border-radius: var(--border-circle); transition: all 0.4s ease-in-out; }

.bottomMenu-wrapper .tabcontainer .tablink:hover img { filter: brightness(0) saturate(100%) invert(93%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%); transition: all 0.4s ease-in-out; }

.bottomMenu-wrapper .tabcontainer .tablink.isActive { background: var(--primary-color); color: var(--white-color); text-align: center; border-radius: var(--border-circle); }

.bottomMenu-wrapper .tabcontainer .tablink.isActive img { filter: brightness(0) saturate(100%) invert(93%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%); }

@media (max-width: 1200px) {
    .bottomMenu-wrapper .tabcontainer { width: auto; }
}

/* ------ BOTTOM MENU DESIGN END ------ */

/* ------ ACTIVITY TRECKER PAGE DESIGN START ------ */
.main-container .activity-dashboard-btns { border: 1px solid #0000001a; border-radius: 30px; padding: 10px; display: flex; align-items: center; background: #F2F2F2; font-size: 13px; }
/* ------ ACTIVITY TRECKER PAGE DESIGN END ------ */

/* ------ AS-IS-ORG PAGE DESIGN END ------ */
/* FILTERS SIDE PANEL DESIGN Start */
.main-container .panel-header { font-weight: 500; font-size: 16px; line-height: 1.2; color: #000000; margin-bottom: 20px; }

.main-container .color-settings label{ font-weight: 400; font-size: 14px; line-height: 1.2; color: #000000; margin-bottom: 15px; }

.main-container .color-settings .inner { display: flex; align-items: center; border-radius: 30px; border: 1px solid #00000026; margin-bottom: 10px; height: 40px; gap: 10px; padding: 6px; }

.main-container .color-settings .inner input[type="color"] { border: none; width: 28px; height: 28px; border-radius: 30px; }

.main-container .custom-scroll-cont { overflow-y: auto; overflow-x: hidden; max-height: calc(100vh - 210px); }

.main-container .everySidebarCommonClass .panel-content { text-align: initial; display: grid; grid-template-columns: 1fr 1fr; background: #FFFFFF; }

.main-container .everySidebarCommonClass .panel-content:nth-child(even) { background: #f8f8f8; }

.main-container .header-filter { font-weight: 500; font-size: 14px; line-height: 1.3; color: #000000; padding: 13px 20px; border-radius: 10px; }

.main-container .everySidebarCommonClass .select2-container { width: 100% !important; display: block; }

.main-container .everySidebarCommonClass .select2-selection { background: #f5f5f5; border-radius: 30px; padding: 10px; height: 100%; display: flex; align-items: center; }

.main-container .everySidebarCommonClass .select2-container .select2-search__field { margin-top: 0; width: 100% !important; }

.main-container .everySidebarCommonClass .filter-row { margin-bottom: 15px; }

.multi-tab-filter .dropdown-item span.check-mark { display: none !important; }

.multi-tab-filter .bootstrap-select .dropdown-menu { min-width: 150px !important; }

.multi-tab-filter .dropdown-menu .inner { width: 100%; overflow-x: hidden; max-height: 150px !important; }

.multi-tab-filter .dropdown-menu .inner::-webkit-scrollbar { width: 4px; height: 4px; }

.multi-tab-filter .bootstrap-select .dropdown-menu .dropdown-item .text { margin-right: 5px; line-height: 1.2; overflow: hidden; text-overflow: unset; white-space: normal; }

.multi-tab-select select { display: none !important; }

.multi-tab-filter .bootstrap-select .dropdown-menu { max-height: 150px !important; }

.multi-tab-filter .multi-tab-select { background: #f5f5f5 !important; border-radius: 30px; height: 100%; display: flex; }

.multi-tab-filter .multi-tab-select button { padding: 0px 13px; border-radius: 30px; }

.main-container .everySidebarCommonClass .custom-scroll-cont .filter-option-inner-inner { text-align: left; }

.main-container .everySidebarCommonClass .form-control.commonInputs { padding: 6px 20px; height: 100%; border: 1px solid #aaa; border-radius: 30px; }

.col-4.tab-filter span { order: 2; }

.col-4.tab-filter .checkbox.position-static { order: 1; }

.col-md-5.tab-filter span { order: 2; }

.col-md-5.tab-filter .checkbox.position-static { order: 1; }

.sidebar input.custom-inputs[type="checkbox"] + label { margin-right: 0 !important; }
/* FILTERS SIDE PANEL DESIGN END */

/* ------ AS-IS-ORG PAGE DESIGN END ------ */

/* ------ TO BE MODELLING PAGE DESIGN START ------ */
.toBeModellingBtns .scenario-tab { z-index: 10; position: relative; transition: all 0.2s ease; }

.toBeModellingBtns .scenario-tab .scenario-tab-inner { padding: 0px 15px; display: flex; flex-direction: column; }

.toBeModellingBtns .scenario-tab .scenario-tab-inner .scenario-inner { overflow: hidden; width: 100%; }

.toBeModellingBtns .scenario-tab .btn-primary { min-width: 200px; max-width: 200px; }

.toBeModellingBtns .scenario-tab .btn-primary .selectScenarioBtn { color: #FFF; background: transparent; border: 0; padding: 0; margin: 0; }

.toBeModellingBtns .scenario-tab .btn-primary .selectScenarioBtn .scenarioName { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.toBeModellingBtns .scenario-tab .btn-primary .tab-edit-show i { color: #FFF; }

.toBeModellingBtns .scenario-tab .btn-primary .img-wrapper img { filter: brightness(100) saturate(0%); transition: all 0.3s ease; }

.toBeModellingBtns .scenario-tab .btn-primary:hover .selectScenarioBtn ,
.toBeModellingBtns .scenario-tab .btn-primary:hover .tab-edit-show i { color: var(--primary-color); }

.toBeModellingBtns .scenario-tab .btn-primary:hover .img-wrapper img { filter: none; }

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper { display: none; max-height: 300px; position: absolute; background: #FFF; top: calc(100% + 3px); left: 0; box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 13px 0px; padding-bottom: 0; border-radius: 10px; }

.toBeModellingBtns .scenarioOptions-wrap { width: calc(100% - 40px); z-index: 2; }

.toBeModellingBtns .scenarioOptions-wrap ul { width: 100%; text-align: center; }

.toBeModellingBtns .scenario-tab .dropup-menu ul { top: 5px; bottom: unset; left: 5px; }

.toBeModellingBtns .scenario-tab .dropup-menu ul li { border-bottom: 1px solid #ccc; margin: 0 10px; }

.toBeModellingBtns .scenario-tab .dropup-menu ul li:last-child { border-bottom: 1px solid transparent; margin: 0 10px; }

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper .add-scenario { cursor: pointer; border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 15px; padding-bottom: 10px; margin-bottom: 10px; position: sticky; top: 0; background: #FFF; z-index: 1; }

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper span { font-weight: 500; font-size: 14px; line-height: 1.2; color: var(--primary-color); }

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper .tab-inner { border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding-bottom: 10px; margin-bottom: 10px; gap: 10px; transition: all 0.3.s ease; }

/* .toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper .tab-inner:last-child { border-bottom: 1px solid transparent; margin-bottom: 0px; } */

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper .tab-inner:hover { background: #fefefe; }

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper .tab-inner a { white-space: nowrap; font-weight: 400; font-size: 14px; line-height: 1.3; color: rgb(0, 0, 0); overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 0px); display: block; padding: 0; }

.toBeModellingBtns .scenario-tab .scenario-DropDown-wrapper .tab-inner.active .tab-edit-show i { color: var(--primary-color); }

.toBeModellingBtns .scenario-tab .tab-inner.active { order: -1; }

.toBeModellingBtns .scenario-tab .tab-inner.active .scenarioName { color: var(--primary-color);  }
/* ------ TO BE MODELLING PAGE DESIGN END ------ */

/* ------ COMPARE SCENARIO PAGE DESIGN START ------ */

.comparision-box-inner .comparision-box-content .img-wrapper { height: 50px; width: 50px; display: flex; justify-content: center; align-items: center; border: 1px solid #78BE20; border-radius: 6px; }

/* ------ COMPARE SCENARIO PAGE DESIGN END ------ */

/* ------ CLIENT ACTIVITY PAGE DESIGN END ------ */
.user-details-inner { display: grid; grid-template-columns: 70% 30%; padding: 20px; background: #F8F8F8; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 10px; width: 100%; }

.user-details-inner .img-wrapper { min-width: 50px; height: 50px; background: #FFFFFF; border: 1px solid #78BE20; border-radius: 8px; display: flex; justify-content: center; align-items: center; }

.user-details-inner .box-titles { font-weight: 600; font-size: 17px; line-height: 1.2; color: #000000; text-align: left; margin: 0; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; cursor: default; padding-right: 10px; }

.user-details-inner .img-wrapper img { filter: brightness(0) saturate(100%) invert(58%) sepia(100%) saturate(334%) hue-rotate(44deg) brightness(92%) contrast(99%); }

.user-details-right { display: flex; gap: 10px; align-items: center; justify-content: end; }

.user-details-right .box-counts { font-weight: 600; font-size: 20px; line-height: 1.3; color: #78BE20; text-align: end; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; cursor: default; }

.user-details.grid-3-box { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.show-active-user { background: transparent; border: 1px solid #78be20; border-radius: 30px; cursor: pointer; min-width: 40px; height: 40px; transition: all 0.3s ease; }

.show-active-user i { color: #78be20; transition: all 0.3s ease; }

.show-active-user:hover { background: #78be20; border: 1px solid #78be20; }

.show-active-user:hover i { color: #FFF; }

/* RESPONSIVE DESIGN */
@media (max-width: 480px) {
    .user-details-inner { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 15px; }
}
/* ------ CLIENT ACTIVITY PAGE DESIGN END ------ */
















.btn_add_field,
.btn_remove_field { cursor: pointer; }
.add-template-container,
.template-table-container { background-color: var(--white-color); padding: 20px; border-radius: var(--border-curve); }
.template-page-heading { color: var(--black-color); font-size: 18px; font-weight: 500; margin-bottom: 20px; text-transform: capitalize; }
.selected_field_area { border-radius: var(--border-curve); border: none !important; background: #F8F8F8; position: relative; flex-wrap: wrap; cursor: pointer; }
.badge-secondary { border-radius: var(--border-circle); background: transparent !important; display: flex; padding: 5px 15px; border: 1px dashed #D9D9D9; align-items: center; gap: 10px; color: #455460 !important; font-size: 14px; margin: 2px; font-weight: 400; text-align: left; white-space: normal; min-height: 26px; }
/* .template-table tbody td, thead th { text-align: left !important; } */
.template-table tbody td:nth-child(2) { white-space: normal !important; font-size: 12px !important; font-weight: 300 !important; line-height: 14px !important; width: 100%; text-align: left !important; }
.template-table tbody td:nth-child(1) { font-weight: 500; }
.template-table th { width: auto !important; font-weight: 500 !important; }
.template-table tbody { margin-top: 10px; }
.template-table-container { padding-left: 30px; }
.template-select-container { border-radius: 10px 10px 0px 0px; border: 1px solid #D0D0D0; background: #FFF; box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.10); }
.template-select-box button { border-radius: 20px !important; background: #455460 !important; padding: 4px 20px !important; color: #CDCDCD !important; font-size: 14px !important; font-weight: 400 !important; min-width: auto !important; }
.template-select-box label { color: #455460 !important; font-size: 14px !important; font-style: normal; font-weight: 400; line-height: normal; }
.template-select-container { height: 400px; }
.template-select-headtext { gap: 35px; }
.template-select-headtext p { color: #455460; font-size: 14px; font-style: normal; font-weight: 400; margin-bottom: 15px; margin-top: 5px; }
.template-select-headtext p:first-child { padding-left: 20px; }
.template-inner { display: flex; align-items: center; gap: 85px; }
.template-inner::-webkit-scrollbar { display: none; }
.template-inner .form-check-input { position: relative; margin-left: 30px; height: 20px !important; width: 20px !important; margin-top: 8px !important; }
.template-dropdown-icon { position: absolute; top: 5px; right: 10px; rotate: 180deg; cursor: pointer; border-radius: 50px; overflow: hidden; }
.template-dropdown-icon2 { position: absolute; top: 9px; right: 10px; rotate: 0deg; border-radius: 50px; overflow: hidden; }
.template-dropdown-icon img { background-color: var(--white-color); border-radius: 50px; }
.template-select-container { border-radius: 10px 10px 0px 0px; border: 1px solid #D0D0D0 !important; background: #FFF; box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.10); }

/* clients tabs */
.client-head-btn { gap: 15px; margin-top: 20px; margin-bottom: 20px; }
.tab-list { border: 1px solid var(--primary-color); border-radius: var(--border-circle); width: fit-content; padding: 5px; }
.tab-list a { padding: 5px 15px !important; color: var(--secondary-color); text-transform: capitalize; font-size: 16px !important; position: relative; }
.tab-list .nav-pills .nav-link.active, .nav-pills .show > .nav-link, .tab-list .nav-pills .nav-link:hover { background-color: var(--primary-color); color: #fff; border-radius: var(--border-circle); transition: all 0.3s ease-in-out; }
.tab-list .nav-link { display: flex; position: relative; align-items: center; justify-content: center; }
.tab-list .nav-item:last-child { border-right: 0 !important; }
#clientAddForm .grid-container { padding: var(--spacing-20); }

/* CLIENTS OVERVIEW */
.btn_upload{ cursor: pointer; display: inline-block; overflow: hidden; position: relative; color: var(--black-color); background-color: #78be200f; border: 2px dashed var(--primary-color); border-radius: var(--border-curve); padding: 5px var(--spacing-10); width: 100%; }
.btn_upload input { cursor: pointer; height: 100%; position: absolute; filter: alpha(opacity=1); -moz-opacity: 0; opacity: 0; }
.remove-img-parent { position: absolute; top: 5px; right: 5px; height: 30px; width: 30px; background: #ffffff; border-radius: 5px; display: flex; justify-content: center; align-items: center; }
.ImgPreview1 { width: 100%; height: auto; max-height: 185px; object-fit: contain; }
.rmv { cursor: pointer; display: inline-block; }
.logo-upload { height: 130px; width: 100%; display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 15px; }
.client-upload label { color: var(--black-color) !important; font-weight: 400; font-size: 16px; }
.client-upload input { width: 100%; border-radius: var(--border-circle); border: 1px solid rgba(38, 47, 54, 0.2); padding: 10px 15px; }
.client-upload input:focus { outline: none; }
.client-upload input::placeholder { color: #868686; }
/* .client-btn-container button, .client-btn-container a { font-size: 16px !important; } */
.logo-upload span { color: #040833; font-weight: 300; font-size: 16px; text-align: center; }
.tabControl .fade.show { background: transparent; }
.tabControl { padding: 20px; }
#pills-4 .fade.show { background: #00000047; }

/* THEME COLOR */
@media (min-width: 991px) {
    .theme-color { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
}

.theme-color .theme-color-inner .color-shades { border: 1px solid #E8E8E8; border-radius: 5px; padding: 10px; display: flex; align-items: center; gap: 5px; }
.theme-color .theme-color-inner .color-shades .bmd-form-group { padding: 0; }
.theme-color .theme-color-inner .color-shades input { border: none; background: none; border-radius: 5px; width: 30px; height: 30px; }
.theme-color-heading { color: var(--black-color); font-size: 20px; font-weight: 400; }
.theme-color .theme-color-inner label { color: #000000 !important; font-size: 14px; font-weight: 300; }
.tab-content .dotted-line { display: none; }
.theme-color-pelette .color-settings2 { margin: 0 !important; }
.theme-color-pelette .color-pallete-container { border: 0; padding: 0; }
/* color Pallete */
.color-site-breadcrumb { margin-top: 10px; margin-bottom: 30px; }
.color-site-breadcrumb ul li { margin-top: 0; margin-bottom: 0; }
.color-pallete-container { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
#EditCustomFields .modal-dialog { max-width: 600px !important; }
#EditCustomFields .position-detail input { width: 100%; }

@media (max-width: 1480px) {
    .color-pallete-container { grid-template-columns: 1fr 1fr; }
    .profile-edit { grid-template-columns: 1fr; }
    .panel_2 { max-height: 100% !important; }
}

@media (max-width: 1120px) {
    .color-pallete-container { grid-template-columns: 1fr !important; }
    #color_template_palette_model.model-dialog-kanban { transform: translate(0%, 2%) !important; }
}

@media (max-width: 767px) {
    .color-settings2 { grid-template-columns: 1fr; overflow: hidden; gap: 10px; }
    .theme-color .theme-color-inner label { margin-top: 7px; }
    .mobile-feed-help .dropdown-menu { left: -50px; border-radius: 5px; }
}

.color-template-palette-html .color-pallete-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 10px; }


@media (max-width: 575px) {
    .color-template-palette-html .color-pallete-container ,
    .color-settings { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); }
}

#addColorTemplateForm.form-group { margin-top: 0px; margin-bottom: 15px; }
.template-text2 { color: #455460; font-size: 24px; font-weight: 400; text-transform: capitalize; margin-bottom: 5px; }
/* #color_template_palette_model .modal-title { margin-bottom: 15px; } */
#color_template_palette_model.modal-footer button { color: #fff !important; margin-top: 22px !important; }
#color_template_palette_model.modal-footer button:hover { background: #043c49; }
#addColorTemplateForm { margin-bottom: 0; }
#addColorTemplateForm .color-template-btn { margin-top: 20px; }
/* CLIENTS PROJECTS */

.client-project-list { max-height: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.client-project-list::-webkit-scrollbar { height: 7px; width: 7px; }
.client-project-list::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #e8e8e8; border-radius: 10px; border: 5px solid #b4b4b4; margin: 50px; }
.client-project-list::-webkit-scrollbar-thumb { background: #455460; border-radius: 10px; }
.client-project-list::-webkit-scrollbar-thumb:hover { background: #455460; }
.checkbox-inner { gap: 10px; display: flex; align-items: center; }
.checkbox-inner label { margin-bottom: 0; color: #455460 !important; font-weight: 400; cursor: pointer; }
.project-head .bmd-form-group { padding-top: 0; padding-bottom: 20px; }
.tab-content .btn { padding: 8px 15px; min-width: 140px; }
.error { color: var(--black-color); margin-bottom: 0; font-size: 18px; font-weight: 500; color: red; font-size: 14px !important; }
.tab-content p { color: var(--black-color); margin-bottom: 0; font-size: 18px; font-weight: 500; font-size: 14px !important; }
.client-project-list input[type=checkbox] { height: 20px; width: 20px; min-width: 20px; border: 1px solid var(--primary-color); border-radius: 5px; appearance: none; background-color: #fff; cursor: pointer; display: flex; justify-content: center; align-items: center; }
.client-project-list input[type=checkbox]:checked { border-color: var(--secondary-color); }
.client-project-list input[type=checkbox]:checked::after { content: ''; display: block; width: 6px; height: 10px; border: solid var(--primary-color); border-width: 0 2px 2px 0; transform: rotate(45deg); }
#positionSearch { position: sticky; top: 0; padding: 8px 35px; border-radius: var(--border-circle); min-width: 100px; border: 1px solid rgba(0, 0, 0, 0.12); background: #F2F2F2; color: var(--tertiary-color) !important; font-size: 14px; font-weight: 400; width: 200px; }
#positionSearch::placeholder { color: #868686 !important; }
#positionSearch:focus { outline: none; }

/* RESPONSIVE DESIGN */
@media (max-width: 991px) { .client-project-list { max-width: 100%; } }
@media (max-width: 767px) { .client-project-list { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); } }



/* CLIENTS USER */

.client-user { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.client-user .client-user-inner { background: #F8F8F8; border-radius: 10px; padding: 10px; }

.client-user-top { display: flex; justify-content: end; align-items: center; }

/* .client-user-top button { border: none; background: none; } */

.client-user-top img { cursor: pointer; }

.client-user-middle { display: flex; align-items: flex-end; gap: 15px; margin-top: 10px; margin-bottom: 30px; }

.client-details p { font-size: 18px; line-height: 140%; margin-bottom: 0; }

.client-details span { font-size: 16px; font-weight: 600; display: block; max-width: 185px; word-wrap: break-word; overflow-wrap: break-word; white-space: normal; }

.client-user-bottom { display: flex; align-items: center; margin-top: 0px; }

.client-user-bottom .admin-name ,
.client-user-bottom .user-name { color: #858585; }

.no-user-found img { width: 200px; opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 1400px) { .client-user { grid-template-columns: 1fr 1fr; } .client-user-middle { flex-wrap: wrap; } }
@media (max-width: 767px) { .client-user { grid-template-columns: 1fr; } }


@media (max-width: 480px) {
    .client-image { min-width: 30px; min-height: 30px; max-width: 30px; max-height: 30px; }
    .client-details p { font-size: 14px; }
    .client-details span { font-size: 12px; }
}



/* AS IS Analysis Dashboard */

.as-is-analysis-dashboard {
    padding-bottom: 50px;
}

.chart-container-one {
    display: grid;
    /* grid-template-columns: 49% auto; */
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 20px;
}

.chart-container-one .free-pivot-chart {
    /* cursor: pointer; */
    max-width: 100%;
    overflow: auto;
}

.chart-container-one .free-pivot-chart::-webkit-scrollbar {
    height: 3px;
    width: 3px;
}
.chart-container-one .free-pivot-chart::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e8e8e8;
    border-radius: 10px;
    border: 5px solid #b4b4b4;
}
.chart-container-one .free-pivot-chart::-webkit-scrollbar-thumb {
    background: #455460;
    border-radius: 10px;
}
.chart-container-one .free-pivot-chart::-webkit-scrollbar-thumb:hover {
    background: #455460;
}

.chart-container-one .right {
    padding: 30px;
}

.chart-container-one .free-pivot-chart-inner {
    display: flex;
    justify-content: space-between;
}

.span-box {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    background: var(--white-color);
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    padding: 0px 10px 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highcharts-background {
    fill: #f8f8f8;
}

.span-box h3 {
    color: var(--black-color);
    font-size: 24px;
    font-weight: 600;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.span-box p {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin: 0;
    padding-top: 10px;
}

.span-inner .inner {
    display: flex;
    justify-content: space-between;
}

.span-inner .left {
    padding: 30px 0;
}

.span-inner .left .span-layer-chart {
    /* cursor: pointer; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.span-inner h2 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.span-chart-border {
    border-radius: 6px;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.span-chart-border table.table {
    background-color: transparent;
}

.scroll-box {
    overflow: auto;
    max-height: 600px;
}

.scroll-box-small {
    overflow: auto;
    height: 290px;
}

.scroll-box-small-header {
    position: sticky;
    top: 0;
    z-index: 1;
    padding-bottom: 25px;
    background-color: #f8f8f8;
}

.scroll-box::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.scroll-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e8e8e8;
    border-radius: 10px;
    border: 5px solid #b4b4b4;
}
.scroll-box::-webkit-scrollbar-thumb {
    background: #455460;
    border-radius: 10px;
}
.scroll-box::-webkit-scrollbar-thumb:hover {
    background: #455460;
}

.scroll-box-small::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.scroll-box-small::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e8e8e8;
    border-radius: 10px;
    border: 5px solid #b4b4b4;
}
.scroll-box-small::-webkit-scrollbar-thumb {
    background: #455460;
    border-radius: 10px;
}
.scroll-box-small::-webkit-scrollbar-thumb:hover {
    background: #455460;
}

.chart-container-two {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.chart-container-two .scroll-container {
    height: 210px;
}

.chart-container-heading {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    padding-left: 15px;
    position: sticky;
    text-transform: capitalize;
    width: 100%;
}

.geography-band .geography-band-inner {
    padding-top: 20px;
    padding-left: 15px;
}

.chart-container-two .geography-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.geography-band .geography-band-inner h6 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.geography-band .geography-band-inner p {
    color: #9D9D9D;
    font-size: 8px;
    font-weight: 500;
    gap: 5px;
}

.geography-band .geography-band-inner .report-span1 {
    border-radius: var(--border-curve);
    background: var(--secondary-color);
    color: var(--white-color);
    height: 20px;
    width: 20px;
}

.geography-band .geography-band-inner .report-span2 {
    border-radius: 6px;
    background: #CAEAFA;
    color: #000000;
    height: 20px;
    width: 20px;
}

.chart-container-three {
    display: grid;
    /* grid-template-columns: 49% auto; */
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 20px;
}

.chart-container-three .chart-3 .inner-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
}

.chart-container-four, .chart-container-five {
    margin-top: 20px;
}

.chart-container-four-inner {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1350px) {
    .chart-container-four-inner {
        flex-wrap: wrap;
    }
    .chart-container-four-inner .right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .chart-container-four-inner .right .span-box:last-child {
        max-width: 195px;
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .chart-container-four-inner .right {
        padding: 80px 30px 20px 30px !important;
    }
}

.chart-container-four .chart-3 {
    width: 85%;
}

.chart-container-four-inner .right {
    padding: 80px 30px 10px 10px;
}

.progress-inner .progress {
    height: 24px;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    background-color: var(--secondary-color);
}

.progress-inner .progress .progress-bar {
    color: white;
    width: 100% !important;
    background-color: transparent;
}

.progress-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    white-space: normal;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    justify-items: center;
    background: #f2f2f2;
    border: 1px solid #aaaaaa;
    padding: 5px 15px;
    align-items: center;
    margin: 0px 10px 5px 10px;
    border-radius: 5px;
}

.progress-flex1 {
    display: flex;
    justify-content: space-between;
}

.progress-flex p {
    color: #262626;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.download-chart-btn img {
    width: 25px;
}

.maximize {
    width: 25px;
    cursor: pointer;
}

.minimize {
    width: 25px;
    display: none;
    cursor: pointer;
}

.full-screen {
    position: absolute !important;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    height: 100% !important;
}

.as-is-analysis-dashboard {
    position: relative;
}

.full-screen::-webkit-scrollbar {
    display: none;
}

.span-chart-border {
    position: relative;
    min-height: 200px;
    width: 100%;
}

@media (max-width: 1350px) {
    /* .second_graph {
        margin-left: 0;
    }
    .chart-container-two {
        grid-template-columns: 1fr 1fr;
    } */

    /* .chart-container-one .free-pivot-chart-inner {
        display: grid;
        gap: 10px;
        justify-content: normal;
    } */

    /* .span-inner .inner {
        display: grid;
        gap: 10px;
        justify-content: normal;
    } */

    /* .chart-container-one .right {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    } */
}

@media (max-width: 991px) {
    .chart-container-two {
        grid-template-columns: 1fr;
    }

    .profile-edit .profile-right .profile-right-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .profile-edit {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .chart-container-one { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); }
    .chart-container-one .right {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
    .span-box {
        margin-bottom: 0;
    }

    .chart-container-four-inner .right .span-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 1180px) {

    .chart-container-one .free-pivot-chart-inner {
        display: grid !important;
        gap: 10px;
    }

    .span-inner .inner {
        display: grid !important;
        gap: 10px;
    }
}

@media (max-width: 1390px) {
    /* .chart-container-one {
        grid-template-columns: 1fr;
    } */

    .chart-container-one .free-pivot-chart-inner {
        gap: 10px;
        overflow: auto;
    }

    .span-inner .inner {
        overflow: auto;
    }
}

@media (max-width: 1250px) {
    .chart-container-three {
        grid-template-columns: 1fr;
    }

    .span-chart-border {
        overflow: auto;
    }

    .bottomMenu-wrapper .tabcontainer .tablink {
        font-size: 12px;
    }

    .bottomMenu-wrapper .tabcontainer .tablink { padding: 5px 0; gap: 5px; }

    .tabcontainer { gap: 5px !important; }

    .tabcontainer .tablink img { width: 20px; }

    .bottomMenu-wrapper .tabcontainer .tablink.isActive { padding: 0 0px 0 10px; text-align: left; }
}

@media (max-width: 675px) {
    .span-border {
        max-width: 450px;
        overflow: auto;
    }
}

/* .hr-data-filter-reset-btn {
    font-size: 12px;
    font-style: normal;
    font-weight: 600 !important;
    padding: 3px;
    border-radius: 5px;
} */

.bottom-left-menu {
    position: absolute;
    bottom: 80px;
    width: 100%;
}

.drop-down-span {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.geography-band .geography-band-inner .left {
    background: #fff;
    cursor: pointer;
    order: 1;
}

.fte-breakdown-btn button {
    padding: 0;
}

.fte-breakdown-btn .btn.btn-tertiary { min-width: auto; padding: 5px var(--spacing-10); max-width: 85px; }

.fte-breakdown-btn .btn.btn-tertiary .filter-option-inner-inner { overflow: hidden; text-overflow: ellipsis; }

/* JOB TITLE */

.job-title-container .job-inner {
   display: flex;
   justify-content: flex-start;
   gap: 15px;
   flex-wrap: wrap;
}

.job-inner .span-box:last-child {
    width: 200px;
    height: auto;
}

.job-charts {
    padding-top: 20px;
}

.job-charts-inner .tab-label {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
    padding-left: 15px;
}

.job-chart-data {
    background-color: #f8f8f8;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--border-curve);
    height: 500px;
    margin-bottom: 20px;
}

.job-title-container .job-inner .span-box {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .job-title-container .job-inner .span-box { width: 100%; }
}

.job-chart-data .chart-container-top .tab-label {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .job-charts .job-charts-inner {
        grid-template-columns: 100%;
    }
}

@media (max-width: 767px) {
    .span-box p {
        font-size: 12px;
        padding-top: 5px;
    }
    .span-box h3 {
        font-size: 18px;
    }
    .job-charts-inner .tab-label {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .job-charts-inner .tab-label { font-size: var(--btn-font-size); }
}


/* FREE PIVOT PAGE */

.panel-head-area { background-color: var(--secondary-color); padding: var(--spacing-20); border-radius: 10px 10px 0px 0px; }

.free-pivot-panel-header { color: var(--white-color); font-size: var(--font-size); font-weight: 500; margin-bottom: 0; }

.free-pivot-box { background-color: #f8f8f8; padding: var(--spacing-20); }

.free-pivot-table-container table.table { background-color: #f8f8f8; }

.panel-sub-heading { margin-bottom: 20px; }

.panel-sub-heading p { color: #B5B5B5; font-size: 12px; font-weight: 400; margin-bottom: 0; }

.free-pivot-panel-content h3 { color: #455460; font-size: 14px; font-weight: 600; }

.panel-content-2 { display: flex; justify-content: space-between; align-items: center; background-color: var(--white-color); border-radius: var(--border-circle); border: 1px solid rgba(0, 0, 0, 0.12); padding: 10px; cursor: pointer; margin-bottom: 10px; }

.panel-content-2 h4 { color: #455460; font-size: 14px; font-weight: 400; margin: 0; }

.panel-content-2:last-child { margin-bottom: 0; }

.free-pivot-container {
    flex-wrap: nowrap;
    transition: all 0.6s ease;
}

.free-pivot-container, .free-pivot-container2 {
    background-image: url(/images/free-pivot-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    border-radius: var(--border-curve);
}

.free-pivot-container .panel-sidebar { max-width: 450px; width: 100%; transition: all 0.6s ease; position: relative; }
.free-pivot-container .panel-sidebar.widthChanged { max-width: 0px; }

.panel {
    overflow: hidden;
    background: #f8f8f8;
    border-width: 0;
    box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.10);
    z-index: 1;
    text-align: left;
    position: static;
    margin: 0;
    padding: 0;
    width: 0%;
    max-height: 0px;
    border-radius: 0px 0px 10px 10px;
    transition: all 0.6s ease;
}

.panel.panelOpened {
    max-height: 100%;
    width: 100%;
}

.panelsWrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-left: auto;
    margin-bottom: 20px;
}

.free-pivot-table-container {
    padding-left: 20px;
}

.free-pivot-table-container table thead th {
    border-bottom: 1px solid #fff;
}

.free-pivot-table-container .table-responsive {
    max-height: 720px !important;
    padding-bottom: 0 !important;
}

.free-pivot-table-container .table-responsive::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e8e8e8;
    border-radius: 10px;
    margin: 100px;
    border: 5px solid #b4b4b4;
}

.activeAcc_2 {
    position: relative;
    left: 100%;
}

.panel_2 {
    left: initial;
    z-index: auto;
}

.panel-head-area-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-arrow {
    background-color: var(--secondary-color);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    opacity: 0;
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    cursor: pointer;
    transition: all 0.6s ease;
}

.open-arrow.show {
    opacity: 1;
    z-index: 99;
}

@media (max-width: 1120px) {
    .free-pivot-container, .free-pivot-container2 { flex-direction: column; }
    /* #chart-container.background-dotted { padding: 100px 0px 200px; } */
}


/* SPAN & LAYERS */

/* .span-layers-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
} */


/* Grade Compression */

.band-compression-table table.table {
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 0;
}

.band-compression-data table.table {
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

/* 1:1 & 1:2 Reporting  */

.one-two-table table.table tbody tr:first-child td:first-child  {
    vertical-align: middle;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.one-two-table table.table {
    padding-bottom: 0;
}

.grade_compression {
    font-size: var(--font-size);
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--black-color);
}

#oneOnOneDatatable th {
    width: 700px;
    /* font-size: 16px; */
}

#oneOnTwoDatatable th {
    width: 700px;
    /* font-size: 16px; */
}

#oneOnOneDatatable td {
    /* font-size: 16px !important; */
}

#oneOnTwoDatatable td {
    /* font-size: 16px !important; */
}

/* PIE CHART PAGE */

/* .highcharts-container  {
    margin: auto;
} */


.pie-chart-data.grid-container {
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: repeat(auto-fit, minmax(560px, 1fr)); */
}

@media (max-width: 1600px) {
    .pie-chart-data.grid-container {
        /* grid-template-columns: 1fr 1fr; */
        grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
    }
}

.pie-chart-container {
    text-align: center;
    border-radius: var(--border-curve);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f8f8f8;
    position: relative;
    height: 100%;
}

.pie-chart-container h3 {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;
}

.pie-chart-container hr {
    margin-left: 30px;
    margin-right: 30px;
    border-top: 2px solid #E4E5EB !important;
}

.pie-chart-container .inner-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 50px;
    margin-top: 20px;
}

.employees_by_grade {
    margin-bottom: 30px !important;
}

.employees_by_Employment_status {
    margin-bottom: 30px !important;
}

.pie-chart-container-head-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: var(--spacing-20);
}

.pie-chart-container .export-fig-drop.btn-primary {
    background-color: transparent;
}

.pie-chart-container.whiteBgShedow .highcharts-background {
    fill: #fff;
}

.pie-chart-container.whiteBgShedow {
    border: 0;
    background: var(--white-color);
}

/* GEOGRAPHY PAGE */

.table-countries {
    max-height: 510px;
    overflow: auto;
}

.table-countries table.table {
    margin-bottom: 0;
}

.table-countries::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.table-countries::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e8e8e8;
    border-radius: 10px;
    border: 5px solid #b4b4b4;
}
.table-countries::-webkit-scrollbar-thumb {
    background: #455460;
    border-radius: 10px;
}
.table-countries::-webkit-scrollbar-thumb:hover {
    background: #455460;
}
.table-countries table.table {
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

/**/

.tbl_col_filter .checkbox label, label.checkbox-inline {
    padding-left: 0;
}

.tbl_col_filter input.custom-inputs[type="checkbox"] + label {
    padding-left: 15px;
}

.tbl_col_filter .checkbox {
    border-bottom: 1px solid #D9D9D9;
    padding: 10px 0 10px 0;
}

.tbl_col_filter .checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    color: #000 !important;
    font-weight: 300;
}

.span-layers-minitable table.table {
    background: transparent !important;
}

/* ACTIVITY TRACKER DASHBOARD */

.widgets-icon {
    background: var(--white-color);
    height: 50px;
    min-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-curve);
    border: 1px solid var(--primary-color);
}

.help-block p {
    margin-bottom: 0;
    color: red;
    font-weight: 400;
    font-size: 14px;
}

.help-block strong { font-weight: 400 !important; }

.mt-30 {
    margin-top: 30px;
}

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

.profile-right .form-control {
    border-radius: 30px;
}

.profile-right label {
    color: var(--black-color) !important;
    font-weight: 300 !important;
}


.z-index-0 {
    z-index: 0 !important;
}

.boxPdRT-20 {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

/* table.table thead th:first-child {
    padding-left: 0 !important;
} */

/* table.table tbody td:first-child {
    padding-left: 0 !important;
} */

.profile-right .status-p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
}

.disabled-radio {
    opacity: 0.5;
    pointer-events: none;
}

.hr-data-modal-inner input::placeholder {
    font-weight: 200 !important;
}

.disable-radio-btn {
    opacity: 0.5;
}

.radio label .bmd-radio:after, label.radio-inline .bmd-radio:after { border: 1px solid rgba(0,0,0,.54); }


.customFilterSelects #daterange-btn { border: 1px solid rgba(0, 0, 0, 0.1); background-color: var(--white-color);}

.customFilterSelects .select2-container--default .select2-selection--multiple { border: 1px solid rgba(0, 0, 0, 0.1); }

.customFilterSelects .custom-filter-label { color: var(--black-color); font-size: 14px; font-weight: 400;}

.tooltip-new {
    position: relative;
    right: -135px;
    top: -15px;
}



/* CLIENT ACTIVITY PAGE RESPONSIVE */

@media (max-width: 575px) {
    .chart-activity ul { padding: 0; }
    .chart-activity { padding: 15PX; }
}

.currency-dropdown {
    width: 100% !important;
}

.search-employee-btn .select2-search__field { padding-left: 20px !important; }

/* COMMON LOADER */

.loader-q5-logo {
    position: fixed;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-q5-logo img {
    width: 60px;
}

.loader-q5-logo p {
    color: var(--white-color);
    margin-bottom: 0;
}

.loader-q5-logo1 {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.loader-q5-logo1 img {
    width: 60px;
}

.select2-dropdown ul li {
    font-size: 15px;
}

/* FTE TOGGLE BUTTON DESIGN */

.filterSidebar .label { height: 20px; width: 44px; background-color: transparent; border: 1px solid #78BE20; border-radius: 30px; display: flex; align-items: center; cursor: pointer; position: relative; transition: transform 0.4s; margin-bottom: 0; }
.filterSidebar span { font-weight: 400; font-size: 14px; line-height: 1.2; text-transform: capitalize; color: #78BE20; transition: all 0.3s ease; }
.filterSidebar span.Visualiza-text { color: #262626 }
.filterSidebar .toggleCheckbox { display: none; }
.filterSidebar .toggleCheckbox:checked ~ .label::before { left: 18px; background-color: #78BE20; transition: all 0.4s ease; }
.filterSidebar .label.checkedlb::before { left: 18px; background-color: #78BE20; transition: all 0.4s ease; }
.filterSidebar .label::before { position: absolute; content: ""; height: 12px; width: 20px; border-radius: 50px; background-color: #78BE20; left: 4px; transition: all 0.4s ease; }


.custom-selectpicker button { height: 40px !important; }

.add_company .normalSelect2 button.form-control { padding: 12px 10px; }

/* TEMPARORY CSS */
.dashboard-inner.grid-4-box { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.advanceFilter-model .modal-body .filter-tag { margin-top: 15px; }

@media (max-width: 1600px) {

    .leftmenu { width: 240px; }
    .leftmenu ul li.active>a { font-size: 14px; }

    .leftmenu ul li a { font-size: 14px; }

    .right-actionbar .welcomeText { font-size: 16px; }


    .dashboard-inner .dashboard-box .dashboard-head-text { color: var(--black-color); font-weight: 600; font-size: 14px; }
    .dashboard-inner .dashboard-box .dashboard-inner-text { color: var(--black-color); font-size: 13px; margin-top: 30px; }

    .custom-selectpicker .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) { width: 160px !important; }
    .chart-container-heading { font-size: 12px !important; }
    .filterSidebar span { font-size: 13px !important; }

    .theme-color .theme-color-inner label { font-size: 11px; }
    .user-details-inner .box-titles { font-size: 15px; }
    .widgets-icon { height: 40px; width: 40px; padding: 10px; }

    .header-section .orgmaps-breadcrumbs .breadcrumbs-label { font-size: 16px; }

    .header-section .header-rightContent .profileName { font-size: 14px; }

    .header-section .header-rightContent .accountType { font-size: 10px; }

    .main-container .uploadbox-text { font-size: 16px; }

    .main-container .camp-info { font-size: 16px; }

    .createProject-section .file-msg { font-size: 14px !important; }

    #campaignForm .project-form .lable-text h6 { font-size: 13px; }

    .form-control.normalSelect button { font-size: 12px; }

    #addHrDataForm .form-control { font-size: 12px; }

    .btn { font-size: 12px; }

    .global-search input , .global-search input::placeholder , .global-search-feedback input { font-size: 12px; }

    .dataTables_wrapper .dataTables_paginate .pagination .paginate_button.active .page-link , .dataTables_paginate .pagination .paginate_button .page-link { font-size: 12px !important; display: flex; justify-content: center; align-items: center; padding: 5px 10px !important; }

    .dataTables_wrapper .dataTables_info { font-size: 13px; }

    .headerBtn-content-text { font-size: 14px; }

    .form-control.commonInputs { font-size: 12px; min-height: 40px;  }

    .text-danger { font-size: 13px; }

    .template .upload-sec .selected-file .file-list .file-name { font-size: 14px; }

    .template .upload-sec .selected-file .file-close { width: 20px; height: 20px; font-size: 14px; display: flex; justify-content: center; align-items: center; }

    .radio-option { font-size: 12px; }

    .profile-right label { font-size: 14px !important; }

    .profile-right .status-p { font-size: 14px; }

    .profile-edit.rd_ProfilePage .profile-left .selected-profileimg { height: 130px; width: 130px; }

    .profile-edit.rd_ProfilePage .profile-left .userimg-sec .defult-img .edit-btn img { height: 35px; width: 36px; }

    .template-text { font-size: 12px; }

    .template-page-heading { font-size: 16px; }

    .lable-text { font-size: 14px !important; }


    .form-group input ,
    .form-group input::placeholder { font-size: 12px; }

    .badge-secondary { font-size: 12px; }


    .template-select-headtext p { font-size: 13px; }

    .template-select-box label { color: #455460 !important; font-size: 12px !important; }


    .main-container .color-settings label { font-size: 11px; }

    .color-settings .outer .color-num { font-size: 12px; }

    .modal .modal-dialog .modal-content .modal-body input::placeholder, .modal .modal-dialog .modal-content .modal-body textarea::placeholder, .modal .modal-dialog .modal-content .modal-body input, .modal .modal-dialog .modal-content .modal-body textarea { font-size: 12px; }


    .customFilterSelects .custom-filter-label { font-size: 12px; }

    .page_filter { font-size: 12px; }


    .download-export-btn span { font-size: 12px !important; }

    .tbl_col_filter .checkbox label { font-size: 12px; }


    .custom-selectpicker .filter-option-inner-inner { font-size: 12px !important; }

    .modal .modal-dialog .modal-content .modal-body input::placeholder, .modal .modal-dialog .modal-content .modal-body textarea::placeholder, .modal .modal-dialog .modal-content .modal-body input, .modal .modal-dialog .modal-content .modal-body textarea { font-size: 12px !important; }
    #addUser .bootstrap-select button .filter-option-inner-inner { font-size: 12px !important; }

    #addHrDataForm .form-group label { font-size: 12px; }

    .modal .modal-dialog .modal-content .modal-header .modalHeader-title, .modal .modal-dialog .modal-content .position-modal-head .modalHeader-title, .modal .modal-dialog .modal-content .modal-header .modal-title, .swal2-title, .modal .modal-dialog .modal-content .position-modal-head .modal-title { font-size: 14px; }


    .sidebar .sidebar-header-wrap .header-title { font-size: 16px; }

    .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple { font-size: 12px !important; height: 40px !important; }

    .span-box h3 { font-size: 17px; }

    .span-box p { font-size: 12px; }

    .select2-container--default .select2-selection--single .select2-selection__rendered span, .select2-container--default .select2-selection--multiple .select2-selection__rendered span { display: flex; align-items: center; }

    .chart-container-buttons { padding-right: 6px; padding-left: 6px; }

    .as-is-analysis-dashboard .custom-selectpicker button { padding: 3px !important; }

    .as-is-analysis-dashboard .custom-selectpicker .filter-option-inner-inner::after { height: 9px !important; width: 9px !important; top: calc(50% - 4.5px) !important; right: 7px; }

    .select2-dropdown ul li { font-size: 12px; }

    .advanceFilter-model .saved-filter-wrapper h4.text-dark { font-size: 16px; }

    #advancedFilterDataForm label { font-size: 12px !important; }

    .filter-content-wrapper { margin-top: 15px; }

    .dropdown-menu .dropdown-item { font-size: 12px !important; }

    .advanceFilter-model .btn { font-size: 12px !important; }

    .span-layers-row .tab-label { font-size: 13px !important; }

    .job_hand h1, p { font-size: 12px !important; }

    .breadcrumb-head-org-chart .modeling-switch { padding: 7px 10px !important; gap: 5px; }

    :root { --font-size: 12px;  }

    .pie-chart-container h3 { font-size: 14px; }


    .tab-list a { font-size: 14px !important; }

    .client-upload label { font-size: 14px; }

    .client-upload input , .client-upload input::placeholder { font-size: 13px; }

    .theme-color-heading { font-size: 16px; }

    .theme-color .theme-color-inner .color-shades { font-size: 13px; }

    .custom-color-pallet { font-size: 13px; }

    .push-changes { font-size: 12px; }

    .activity-dashboard-btns input { color: var(--tertiary-color); }

    .chart-activity ul li { font-size: 13px; }

    .page_filter select { font-size: 12px; }

    .template-select-headtext p:first-child { padding-left: 28px; }

    .template-checkbox > div { margin-left: 5px; }

    .logo-upload span { font-size: 14px; }

    .header-section .header-rightContent .dropdown-Togglemenu .header-dropdown-item {
        font-size: 13px;
    }

    .add-help-container .grid-container label {
        font-size: 13px !important;
    }

    #addHelpForm input::placeholder, #addHelpForm textarea::placeholder, #addHelpForm select {
        font-size: 12px !important;
    }
    .swal2-container.swal2-center .swal2-popup .swal2-actions .swal2-confirm,
    .swal2-container.swal2-center .swal2-popup .swal2-actions .swal2-cancel { font-size: 12px; }
    .action-text { font-size: 16px !important; }


}

/**/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background-color: var(--white-color) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset !important;
    color: #000000b3 !important;
    -webkit-text-fill-color: #000000b3 !important;
    opacity: 1 !important;
}

.filterbtn-new .btn { width: 100%; }

.highlight-dropdown.active .export-down-arrow {
    transform: rotate(180deg);
}










/* Temporary CSS  */
#activityPopup .top-data-table .table, #top10activityPopup .top-data-table .table { max-height: calc(100vh - 185px); }
.no-data-div img { width: auto; opacity: 0.5; max-width: 250px; padding: 50px; }
.textOverFlowDots { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 30px); }

@media (max-width: 575px) {
    .checkbox-decorator, label { font-size: 13px !important; }
    .tab-list a { font-size: 13px !important; }
    .theme-color-heading { font-size: 16px; }
    .theme-color .theme-color-inner .color-shades { font-size: 14px; }
    .user-details-inner .box-titles { font-size: 14px; }
    .user-details-right .box-counts { font-size: 20px; }
    .user-details-inner { gap: 5px; }
    .chart-activity ul li { font-size: 14px; }
    .main-container .camp-info { font-size: 17px; }
    .main-container .project-form h6 { font-size: 15px; }
    .headerBtn-content-text { font-weight: 400; font-size: 14px; }
    .right-actionbar .welcomeText { font-size: 15px;}


    .text-animation {
        animation: none !important;
        width: auto !important;
        opacity: 1 !important;
        white-space: normal !important;
      }

    .function-color-hide { max-width: 300px; }
    .function-color-head h5 { font-size: 14px; }

    .toBeModellingBtns .scenario-tab { z-index: 999; }

}

@media (max-width: 480px) {
    .createProject-section .select-drop { max-width: 100%; }
}



.export-down-arrow { position: absolute; right: 15px; }

.download-export-btn { border: 0; background-color: transparent; color: var(--tertiary-color); cursor: pointer; }

.download-export-btn span { display: flex; align-items: flex-start; gap: 10px; text-align: left; font-size: 14px; }

.download-export-btn .export_1 span { border-bottom: 1px solid rgb(0, 0, 0, 0.2); padding-bottom: 10px;
    margin-bottom: 7px; }

.download-export-btn span img { padding-top: 2px; }

.dropdown-content1 { padding: 15px; }

.cursor-not-allowed { cursor: not-allowed; }

.toBeModelling-section .scenario-tab.cursor-not-allowed { cursor: not-allowed; }

.matrix-text { font-size: 14px; }

/* ALL ANIMATION CSS */

/* Left menu icons animation */

.leftmenu ul li:hover > a .flip-icon,
.header-dropdown-item:hover .flip-icon,
.node-info-inner:hover .flip-icon,
.radio-option:hover .flip-icon {
    animation: flip 0.9s ease-in-out;
}

@keyframes flip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}

/* Welcome text */

   @keyframes typing {
    0% { width: 0; opacity: 1; }
    50% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 1; }
  }

  .text-animation {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 0;
    animation: typing 9s ease-in-out forwards;
    animation-delay: 2s;
  }


/* Button animation */

.btn.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in;
    z-index: 0;
}

.btn.btn-primary::before,
.btn.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.6s;
    overflow: hidden;
    z-index: -1;
}

.btn.btn-primary::before {
    background-color: var(--white-color);
}

.btn.btn-primary::after {
    background-color: var(--white-color);
}

.btn.btn-primary.bgTransf-btn::before {
    background-color: var(--primary-color);
}

.btn.btn-primary.bgTransf-btn::after {
    background-color: var(--primary-color);
}

.btn.btn-primary.bgTransf-btn.loginPageBtns:hover::before {
    background-color: var(--primary-color);
}

.btn.btn-primary.bgTransf-btn.loginPageBtns:hover::after {
    background-color: var(--primary-color);
}

.btn.btn-primary.login-btn-animation::before {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn.btn-primary.login-btn-animation::after {
    background-color: #00000033;
}

.btn.btn-primary:hover::before,
.btn.btn-primary:hover::after {
    width: 100%;
}

.btn.btn-primary.loginPageBtns:hover::before,
.btn.btn-primary.loginPageBtns:hover::after {
    width: 100%;
}

/**/

.btn.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in;
    z-index: 1;
}

.btn.btn-secondary::before,
.btn.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.6s;
    overflow: hidden;
    z-index: -1;
}

.btn.btn-secondary::before {
    left: -10px;
    background-color: var(--secondary-color);
}

.btn.btn-secondary::after {
    right: -10px;
    background-color: var(--secondary-color);
}

.btn.btn-secondary:hover::before,
.btn.btn-secondary:hover::after {
    width: 100%;
}

/**/

.bottomMenu-wrapper .tabcontainer .tablink {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in;
    z-index: 1;
}

.bottomMenu-wrapper .tabcontainer .tablink::before,
.bottomMenu-wrapper .tabcontainer .tablink::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.6s;
    overflow: hidden;
    z-index: -1;
}

.bottomMenu-wrapper .tabcontainer .tablink::before {
    left: -10px;
    background-color: var(--primary-color);
}

.bottomMenu-wrapper .tabcontainer .tablink::after {
    right: -10px;
    background-color: var(--primary-color);
}

.bottomMenu-wrapper .tabcontainer .tablink:hover::before,
.bottomMenu-wrapper .tabcontainer .tablink:hover::after {
    width: 100%;
}



table.table tbody tr {
    transition: all 0.3s ease;
}

table.table tbody tr:hover {
    background: #f8f9fa;
}

/**/

.user-identity { color: var(--primary-color) !important; text-transform: capitalize !important; font-weight: 500; }

.dashboard-box:hover {
    transform: translateY(5px);
}

.dashboard-inner .dashboard-box {
    box-shadow: 3px 4px 3px 1px #78be2047;
}

.dashboard-inner .dashboard-box .img-container::after {
    width: 100px;
    height: 2px;
}

.dashboard-inner .dashboard-box .dashboard-inner-text {
    color: #868686;
 }

 .highlight-dropdown .export-new-btn {
    padding-left: 20px;
 }


 /* --------------------------------------
        ORGCHART PADDING ADJUSTING
   -------------------------------------- */

@media (min-width: 1921px) {
    #chart-container.background-dotted { padding: 100px 690px 200px 690px; }
}


@media (max-width: 1920px) {
    #chart-container.background-dotted { padding: 100px 690px 200px 690px; }
}

@media (max-width: 1650px) {
    #chart-container.background-dotted { padding: 100px 500px 200px 500px; }
}

@media (max-width: 1250px) {
    #chart-container.background-dotted { padding: 100px 470px 200px 470px; }
}

@media (max-width: 1120px) {
    #chart-container.background-dotted { padding: 100px 320px 200px 320px; }
}

@media (max-width: 767px) {
    #chart-container.background-dotted { padding: 100px 60px 200px 60px; }
}

.export-png-btn { cursor: pointer; }

.loginPage-section .navbar-brand .branding-logo { margin: auto; }
.navbar-brand:hover .branding-logo { display: none; }
.navbar-brand:hover .branding-logo.hoverImg { display: block; opacity: 1; }
.branding-logo { transition: all 0.5s ease; }
.branding-logo.hoverImg { display: none; opacity: 0; }


.other-q5-user-link .bootstrap-select .filter-option-inner-inner { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 30px); }
.removecolumn.custom-selectpicker button ,
.other-q5-user-link.custom-selectpicker button {
    background: var(--white-color) !important;
    /* padding: unset !important;
    border: unset !important; */
    height: unset !important;
}

.removecolumn.custom-selectpicker .bootstrap-select button ,
.other-q5-user-link.custom-selectpicker .bootstrap-select button {
    background: var(--white-color) !important;
    /* padding: unset !important;
    border: unset !important; */
    height: 40px !important;
}

a.dropdown-item.select-item.active.selected { justify-content: space-between; }
.accordion_2.openedButton:hover { transform: translateX(-10px); }
.accordion_2 { transition: all 0.3s ease; }

/* @media (min-width: 1920px) { .custom-container { max-width: 1800px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; } } */

/* MOBILE DEVICE DESIGN */

.mobile-nav {
    display: none;
}

@media screen and (max-width: 768px) {
    .leftmenu {
        display: none;
    }
    .mobile-nav {
        position: relative;
        display: block;
    }

    .menu-toggle-screen {
        display: none;
    }

    .mobile-menu-show {
        position: fixed;
        top: 80px;
        right: -250px;
        width: 250px;
        height: auto;
        background: var(--secondary-color);
        color: white;
        list-style: none;
        padding: 20px;
        transition: right 0.3s ease-in-out;
    }

    .mobile-menu-show .top-left-menu {
        padding-left: 15px;
        overflow-y: inherit;
        overflow-x: inherit;
    }

    .mobile-menu-show li {
        padding: 10px 0;
    }

    .mobile-menu-show a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Show menu */
    .mobile-menu-show.active {
        right: 0;
        z-index: 9999;
    }

    .setting-dropdown-content li.nav-item.sub-item a {
        padding-left: 30px;
    }

    .setting-dropdown-content li {
        padding: 10px 0px 0px 10px;
        font-size: 12px;
    }

    .header-rightContent .btn-group {
        align-items: center !important;
    }
    .content-wrapper {
        padding: 5px;
    }
    .right-side-bar {
        margin-left: inherit;
        max-width: 100% !important;
    }
    .min-width-sidebar {
        width: 100%;
    }
    .menu-active .btn.btn-primary,
    .menu-active .boxPdRT-20Spacings::before,
    .menu-active .boxPdRT-20Spacings::after,
    .menu-active .tooltip-question,
    .menu-active .body,
    .menu-active .nodeInfo-container,
    .menu-active .zoom-btn-div,
    .menu-active .childNode-custom,
    .menu-active .bottomPanel-wrap,
    .menu-active .toBeModellingBtns .scenario-tab,
    .menu-active .model-focus-breadcrumb,
    .menu-active .node-info-inner {
        z-index: auto !important;
    }
}

.active-inActive-btn {
    border-radius: 10px;
    padding: 5px 15px;
    border: 1px solid #78BE20;
    color: #78BE20;
    background: #78be2005;
    font-size: 14px;
}

.active-inActive-btn.userInActive-btn {
    border: 1px solid #babfb4;
    color: #babfb4;
    display: none;
}

.sync-icon, .status-btn-img { padding-bottom: 2px; }
/* SET FIX WIDTH IN STRUCTURE ANALYSIS PAGES */
@media (min-width: 1920px) {
    .wrapper  { max-width: 2500px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
    .bottomMenu-wrapper .tabcontainer { max-width: 1900px; margin-left: auto; margin-right: auto; }
 }


 /* TO SOLVE MANAGER 2 FIELD ERROR MESSAGE POSITION IN MASSEDIT */
 .managerIdFields .dropdown.bootstrap-select { position: relative; }
 .managerIdFields .dropdown.bootstrap-select > .bmd-form-group { position: unset; }
 .managerIdFields .dropdown.bootstrap-select > .bmd-form-group .help-block.text-danger { position: absolute; white-space: nowrap; top: 100%; bottom: unset; margin-bottom: 0; }

/* BREADCRUMB ARROW DESIGN */
 .transformRight { transform: rotate(-90deg); }

 /* ACTIVE USER AND INACTIVE USER DESIGN */
 .userActiveInactive.switch-btn[type="checkbox"]:not(:checked) { border: 1px solid #858585; }
 .userActiveInactive.switch-btn[type="checkbox"]:not(:checked)::before { background: #858585; }
 .custom-selectpicker .hr-data-employee-type button.form-control ~ .dropdown-menu {max-height: max-content !important;}

 #addUser input::placeholder { text-transform: capitalize; }


 #editHrDataFromOrgChart .dropdown.bootstrap-select .filter-option-inner-inner { max-width: fit-content; margin: auto; position: relative; }
 #editHrDataFromOrgChart .dropdown.bootstrap-select .filter-option-inner-inner::after { height: 10px; width: 10px; right: 0; top: calc(50% - 4px); }

/* HISTORY SIDEPANEL CUSTOM SCROLL */
.getHistoryScroll.custom-scroll-cont { max-height: calc(100vh - 80px); padding-right: 20px; }
.getHistoryScroll.custom-scroll-cont::-webkit-scrollbar-track { margin: 100px; }
.deleteUserSweetAlert { display: flex; align-items: center; gap: 10px; }
.deleteUserSweetAlert button.btn { font-size: 14px !important; padding: 5px 10px !important; margin: 0; }

#addHrDataForm .custom-selectpicker .filter-option-inner-inner { max-width: 280px; }
#addHrDataForm .bootstrap-select button.dropdown-toggle .filter-option { display: flex; align-items: center; }
#addHrDataForm .bootstrap-select .dropdown-toggle:focus, #addHrDataForm .bootstrap-select>select.mobile-device:focus+.dropdown-toggle { outline: 0 !important; }
#addHrDataForm ul.dropdown-menu.inner.show { min-width: unset !important; }

#editHrDataFromOrgChart ul.dropdown-menu.inner.show { min-width: unset !important; }
.deleteUserSweetAlert button.btn { padding: 5px 10px !important; margin: 0; }

.colorPicker-wrapper { border: 1px solid #eee; border-radius: 10px; padding: 20px; background-color: #FFF; }
.colorSetting-label { font-weight: 400; font-size: 12px; line-height: normal; color: #000000b3; }
.search-input { width: 100%; border-radius: 30px; padding: 12px 20px; border: 1px solid #eee; color: #000000b3; margin-bottom: 20px; }
.highlightedColor , .colorPicker-wrapper .pickr .pcr-button { height: 20px; width: 64px; display: block; border-radius: 30px; border: 1px solid #cacaca; }
.colorPicker-wrapper .pickr .pcr-button::before , .colorPicker-wrapper .pickr .pcr-button::after { border-radius: 35px; }
.formButtons-wrap { display: flex; gap: 20px; align-items: center; margin: 15px auto; justify-content: center; }

.filterSidebarBody .team-selector .bootstrap-select { width: 100% !important; }
