/* =========================================================
   CUSTOM CSS
   ---------------------------------------------------------
   @CreatedBy    Salman SHER Khan
   @CreatedOn    26 Jan 2024

   @CustomizedBy Himanshu Yadav
   @CustomizedOn 04 Jun 2026

   NOTE:
   Custom CSS must be included after all vendor/theme CSS.
========================================================= */

/* =========================================================
   01. THEME VARIABLES
========================================================= */

:root {

    /* -------------------------
       Task Type
    ------------------------- */

    --badge-task: #3B82F6;
    --badge-analysis: #8B5CF6;
    --badge-report: #0EA5A4;

    /* -------------------------
       Status
    ------------------------- */

    --badge-pending: #e16123;
    --badge-approved: #009378;
    --badge-disapproved: #e16123;
    --badge-completed: #06B6D4;


    /* -------------------------
       Header Counters
    ------------------------- */

    --badge-view-report: #fdae1f;
    --badge-campaign: #7C3AED;
    --badge-total: #1F2937;


    /* -------------------------
       Buttons
    ------------------------- */

    --btn-approve: #22C55E;
    --btn-disapprove: #EF4444;

    --btn-play: #0EA5A4;
    --btn-pause: #F59E0B;
    --btn-stop: #DC2626;

    --btn-disabled: #9CA3AF;


    /* -------------------------
       Common
    ------------------------- */

    --color-white: #FFFFFF;
}


/* =========================================================
   02. GLOBAL / BASE STYLES
========================================================= */

html {
    /* Global HTML styles if required */
}

body {
    /* Global body styles if required */
}

.table-responsive {
    color: #000000;
}

.text-black {
    color: #333333;
}

.pull-left {
    float: left !important;
}

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

.close {
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
    cursor: pointer;
    float: right !important;
}


/* =========================================================
   03. TYPOGRAPHY / TEXT
========================================================= */

.label-text {
    display: inline-block;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 700;
}

.text-blue {
    color: #2bb3c0;
}

.text-green {
    color: #009378;
}

.text-lightergray {
    color: #999;
}

.text-orange {
    color: #e16123;
}

.text-red {
    color: #ff4040;
}


/* =========================================================
   04. LABELS / BADGES
========================================================= */

.label {
    display: inline-block;
    padding: 1px 15px;
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    line-height: 30px;
    font-weight: 400;
    white-space: nowrap;
    cursor: default;
}

.label-default {
    background-color: #151515;
}

.label-view {
    background-color: #fdae1f !important;
}

.label-purple {
    background-color: #931aff !important;
}

.label-turquoise {
    background-color: #3ad3c4 !important;
}

.cus-label-pending {
    background: #888888;
}


/* -------------------------
   Custom Badges
------------------------- */

.badge {
    padding: 7px 12px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .5px;
}

.badge-task {
    background: var(--badge-task);
    color: var(--color-white);
}

.badge-analysis {
    background: var(--badge-analysis);
    color: var(--color-white);
}

.badge-report {
    background: var(--badge-report);
    color: var(--color-white);
}

.badge-pending {
    background: var(--badge-pending);
    color: var(--color-white);
}

.badge-approved {
    background: var(--badge-approved);
    color: var(--color-white);
}

.badge-disapproved {
    background: var(--badge-disapproved);
    color: var(--color-white);
}

.badge-completed {
    background: var(--badge-completed);
    color: var(--color-white);
}

.badge-view-report {
    background: var(--badge-view-report);
    color: var(--color-white);
}

.badge-campaign {
    background: var(--badge-campaign);
    color: var(--color-white);
}

.badge-total {
    background: var(--badge-total);
    color: var(--color-white);
}

a.badge-view-report:hover {
    color: white;
}


/* =========================================================
   05. BUTTONS
========================================================= */

.btn-icon {
    margin: 3px 3px 0 0;
}

.btn-view {
    background: #fdae1f !important;
    color: #ffffff !important;
}

.btn-assign {
    background: #342bc0 !important;
    color: #ffffff !important;
}

.btn-report {
    background: #50c02b !important;
    color: #ffffff !important;
}

.btn-chat-send {
    background: #00ad85 !important;
    color: #ffffff !important;
}

.btn-approve {
    background: var(--btn-approve);
    border-color: var(--btn-approve);
    color: var(--color-white);
}

.btn-disapprove {
    background: var(--btn-disapprove);
    border-color: var(--btn-disapprove);
    color: var(--color-white);
}

.btn-play {
    background: var(--btn-play);
    border-color: var(--btn-play);
    color: var(--color-white);
}

.btn-pause {
    background: var(--btn-pause);
    border-color: var(--btn-pause);
    color: var(--color-white);
}

.btn-stop {
    background: var(--btn-stop);
    border-color: var(--btn-stop);
    color: var(--color-white);
}

.btn-disabled,
.btn:disabled {
    background: var(--btn-disabled);
    border-color: var(--btn-disabled);
    color: var(--color-white);
}

.btn-secondary.focus,
.btn-secondary:focus {
    color: #fff !important;
}

a.custom-button {
    color: white;
}

a.custom-button.theme-one {
    color: white !important;
}


/* =========================================================
   06. FORMS / VALIDATION
========================================================= */

.required-error {
    color: #ff2600;
    font-weight: 600;
}

.form-control.is-invalid {
    border-color: #ff0018;
}

span.is-invalid {
    color: #ff2600;
    font-weight: 600;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: 0 0 0 0.2rem rgb(217 73 6 / 25%);
}

.form-group .form-label,
.form-group label.form-check-label {
    font-weight: 700;
    margin-bottom: 7px;
    color: #6B7280;
    font-size: 14px;
}


/* =========================================================
   07. SELECT2
========================================================= */

.select2-selection.select2-selection--single {
    height: 40px;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    line-height: 40px;
    padding-left: 20px;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    top: 7px;
}


/* =========================================================
   08. PASSWORD VISIBILITY
========================================================= */

.password-input-wrapper {
    position: relative;
    background-color: #F5F5F5;
}

.password-toggle-btn {
    position: absolute;
    top: 20px;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: #6B7280;
    z-index: 2;
}

.password-toggle-btn:hover {
    color: #2563EB;
}

.password-toggle-btn:focus {
    outline: none;
    box-shadow: none;
}

.password-input-wrapper .form-control {
    padding-right: 45px;
}


/* =========================================================
   09. ALERTS / NOTIFICATIONS
========================================================= */

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-success .alert-link {
    color: #0c4128;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-danger .alert-link {
    color: #6a1a21;
}

.alert.notification_alerts_class {
    /* margin-top: -15px !important; */
}


/* =========================================================
   10. TABLES
========================================================= */

.table {
    border-spacing: 0 8px;
}

.table th,
.table td {
    padding: .50rem;
    vertical-align: middle;
    text-align: center;
}

.table-responsive {
    color: #000000;
}

.table thead th {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

thead.table-theme-color {
    background: #0e6779;
    color: #ffffff;
}

.table tbody {
    background: #fff;
}

.table tbody td {
    background: #fff;
}

.table tbody tr:first-child td:first-child {
    border-top-left-radius: 30px;
}

.table tbody tr:first-child td:last-child {
    border-top-right-radius: 30px;
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}


/* =========================================================
   11. TABLE COLUMN WIDTHS
========================================================= */

.cus_sr_no_col {
    width: 50px !important;
}

.cus_chk_box_col {
    width: 50px !important;
}

.cus_action_btns_1_col {
    width: 75px !important;
}

.cus_action_btns_2_col {
    width: 100px !important;
}

.cus_action_btns_3_col {
    width: 160px !important;
}

.cus_action_btns_4_col {
    width: 285px !important;
}

.cus_action_btns_with_a_d_col {
    width: 315px !important;
    text-align: center !important;
}

.cus_td_btns_with_a_d_col {
    text-align: right !important;
}

.cus_status_col {
    width: 111px !important;
}

.cus_created_on_col {
    width: 115px !important;
}

.cus_sort_order_col {
    width: 100px !important;
}

.cus_img_col {
    width: 70px !important;
}


/* =========================================================
   12. PAGINATION
========================================================= */

.cus-pagination {
    margin-top: 20px;
}

.cus-pagination-links nav {
    float: right;
}


/* =========================================================
   13. COMMON COMPONENTS
========================================================= */

.no-records {
    border: 1px solid #d7d7d7;
    border-radius: 30px;
    padding: 15px;
    background: #e9e9e9;
    font-weight: bold;
}

.custome_page_title {
    display: inherit;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
}

.created-by-main-div {
    color: #ff0000;
    padding: 15px;
    font-weight: 600;
}

.created-by-sub-div {
    border: 1px solid #ccc;
    padding: 15px;
}

.created-updated-div {
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 10px;
    color: red;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
}

.disabled-background {
    background: #00000080;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: x-large;
    text-align: center;
    line-height: 50px;
}

.hidden_text_box_for_validation {
    width: 0;
    margin-left: -5px;
    border: 0;
}

.hidden_text_box_for_validation:focus-visible {
    outline: none;
}


/* =========================================================
   14. LOADER
========================================================= */

.main-page-loader {
    background: #00000080;
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000001;
    left: 0;
    top: 0;
}

.image-upload-loader {
    background: #00000080;
    width: 94%;
    height: 100% !important;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000001;
    left: 0;
    top: 0;
    margin: 0 10px;
}


/* =========================================================
   15. NAVBAR / HEADER
========================================================= */

.app-topbar {
    position: fixed;
    width: 100%;
}

.navbar--btn {
    padding: 15px 0 15px 30px;
}

.navbar--nav .nav-link {
    padding: 15px 15px;
}

.navbar--nav .nav--user img {
    object-fit: cover !important;
    height: 50px;
}

.navbar--nav .nav--user:before {
    top: 50px;
}

.navbar--nav .dropdown.notification-bell-container > a {
    color: unset;
    font-size: 18px;
}


/* =========================================================
   16. LOGO
========================================================= */

.logo-box {
    padding: 0 !important;
}

.logo-box .logo-sm {
    max-width: 100px !important;
    margin-right: auto;
    height: unset !important;
}

img.logo-sm {
    max-width: 65px !important;
    height: 25px;
}

.logo-lg {
    width: 230px !important;
    height: 66px !important;
}


/* =========================================================
   17. SIDEBAR
========================================================= */

.sidebar {
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: unset;
}

html[data-sidebar-size=condensed] .app-sidebar {
    position: fixed !important;
    width: var(--minimia-sidebar-width-sm);
    min-width: var(--minimia-sidebar-width-sm);
}

.menu li .submenu {
    width: 190px;
}

ul#submenu-indicate {
    left: -50px !important;
}


/* =========================================================
   18. DYNAMIC LOGO
========================================================= */

.logo-box .logo-mini {
    display: none;
}

.logo-box .logo-full {
    display: block;
}

body.sidebar-mini .logo-box .logo-full {
    display: none;
}

body.sidebar-mini .logo-box .logo-mini {
    display: block;
    max-height: 65px;
    width: auto;
}


/* =========================================================
   19. NAVIGATION TABS
========================================================= */

.custom-nav {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    list-style: none;
    gap: 4px;
    background: white;
    border: 1.5px solid #f0e4df;
    border-radius: 60px;
    padding: 5px 6px;
}

.custom-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.custom-nav-tabs-inner {
    background: #fff;
    border: 1.5px solid #f0e4df;
    border-radius: 60px;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

a.custom-nav-link {
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    color: #6a6a80;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-bottom: 2.5px solid transparent;
    transition: color .2s, border-color .2s;
    user-select: none;
}

a.custom-nav-link.active {
    background: #15172b;
    color: #fff;
    box-shadow: 0 8px 20px rgba(21, 23, 43, 0.25);
    display: block;
}

.custom-nav-link i.fa-solid {
    width: 26px;
    height: 26px;
    background: #fce3dc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.custom-nav-link.active .fa-solid {
    background: #DA4E26;
    color: #fff;
}

a.custom-nav-link.active:hover {
    color: white;
}


/* =========================================================
   20. TAB CONTENT
========================================================= */

.custom-tab-pane {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
    z-index: 2;
    padding: 20px;
    margin: 0 auto;
    background-color: white;
    display: none;
    animation: fadeUp .22s ease;
    border-radius: 20px;
}

.custom-tab-pane.active {
    display: block;
}

.custom-tab-pane p {
    font-size: 14.5px;
    margin-bottom: 12px;
}

.custom-tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   21. ACCORDION / TAB CARD
========================================================= */

.tab-card {
    border: 1px solid #dee2e6 !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px;
}

.tabs-wrapper .card {
    border: unset;
    border-radius: 30px;
    position: relative;
    overflow: visible;
    background-color: unset;
}

.tabs-wrapper .card-header {
    border-radius: 30px !important;
    background-color: white;
    width: 100%;
    position: relative;
}

.tabs-wrapper .card-body {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
    border: unset;
    position: relative;
    top: 15px;
    background-color: white;
    border-radius: 30px;
    width: 98%;
    margin: auto;
    padding: 10px;
}

.tabs-wrapper .card:has(.collapse.show) + .card {
    margin-top: 55px !important;
}

.tabs-wrapper .card:has(.collapse.show)::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 15px;
    width: 18px;
    height: 60%;
    z-index: -1;
    border-right: 3px solid #FF7615;
    border-top: 3px solid #FF7615;
    border-bottom: 3px solid #FF7615;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.tabs-wrapper .card:has(.collapse.show)::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 15px;
    width: 18px;
    height: 60%;
    z-index: -1;
    border-left: 3px solid #FF7615;
    border-top: 3px solid #FF7615;
    border-bottom: 3px solid #FF7615;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.card-header .btn-link {
    z-index: 2;
}


/* =========================================================
   22. CHAT
========================================================= */

.chat--content {
    color: #000000;
    background-color: #c8e5eb;
}

.chat--left .chat--content {
    color: #ffffff;
    background-color: #0e353c;
}

.chat--time {
    color: #0e353c;
    font-weight: 600;
}

.chat--left .chat--time {
    color: #c8e5eb;
    font-weight: 600;
}

.chat--user {
    font-weight: bold;
}

.cus-message-text-area {
    overflow-y: hidden;
    height: 40px !important;
    min-height: 10px !important;
    resize: none;
}

.no-chat-msg {
    margin-top: 15px;
    font-weight: 700;
}

.click-hi-start-msg {
    font-weight: bold;
}


/* =========================================================
   23. TOGGLE SWITCH
========================================================= */

.cus-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cus-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cus-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.cus-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .cus-slider {
    background-color: #2079bb;
}

input:focus + .cus-slider {
    box-shadow: 0 0 1px #28f321;
}

input:checked + .cus-slider:before {
    transform: translateX(26px);
}

.cus-slider.round {
    border-radius: 34px;
}

.cus-slider.round:before {
    border-radius: 50%;
}


/* =========================================================
   24. PRESS SWITCH
========================================================= */

.cus-press-switch {
    height: 50px;
    width: 50px;
    -webkit-appearance: none;
    box-shadow: -10px -10px 15px rgba(255, 255, 255, .5),
    10px 10px 15px rgba(70, 70, 70, .12);
    border-radius: 50%;
    border: 3px solid #b4c9cb;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #dde5e7;
}

.cus-press-switch::after {
    font-family: 'Font Awesome 5 Free';
    content: "\f011";
    color: #7a7a7a;
    font-size: 15px;
    font-weight: 900;
}

.cus-press-switch:checked {
    box-shadow: -10px -10px 15px rgba(255, 255, 255, .5),
    10px 10px 15px rgba(70, 70, 70, .12),
    inset -10px -10px 15px rgba(255, 255, 255, .5),
    inset 10px 10px 15px rgba(70, 70, 70, .12);
}

.cus-press-switch:checked::after {
    color: #15e38a;
}


/* =========================================================
   25. CAMPAIGN / PROJECT
========================================================= */

.campaign_main_title_div {
    width: 100%;
    background: #0e6779;
    padding: 4px 10px;
    color: #fff;
}

#package_category_div {
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 15px 0;
}

#package_category_sub_div {
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 15px;
    width: 98% !important;
}

#selected_packages {
    background: #fcff3e;
}

.extra_contact_remove_btn_child_div {
    margin-top: 35px;
}

.extra_contact_add_btn_child_div {
    margin-bottom: 20px;
}

.extra_contact_child_div {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.cus-bulk-task-assignment-btn-div-cls {
    position: sticky;
    top: 90px;
    z-index: 9;
    text-align: right;
    background: #fff;
    padding: 5px 0;
}

.cus-bulk-task-assignment-btn-div-disabled-cls {
    z-index: 0 !important;
}


/* =========================================================
   26. PROJECT / GENERAL MODALS
========================================================= */

#general_modules_modal_main_div,
#approve_disapprove_history_main_div {
    z-index: 9999 !important;
}

#general_modules_modal_body {
    color: #696969;
}

.cus-approved-disapproved-label-div {
    position: absolute !important;
    right: 30px !important;
}

.show-approve-disapprove-history {
    cursor: pointer;
    font-weight: bold;
}


/* =========================================================
   27. IMAGE
========================================================= */

.cus-img-div {
    max-width: 100%;
    width: 80%;
    text-align: center;
}

.cus-img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    height: auto;
}

.cus-cover-image-cls {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

img.view-image {
    background-color: #fff;
    border: none !important;
    border-radius: .25rem;
    max-width: 100% !important;
    width: 160px !important;
    height: 140px !important;
}

img.image-update {
    max-width: 100%;
    width: 130px;
    height: 80px !important;
}


/* =========================================================
   28. ACTIVITY LOG
========================================================= */

.activity-timeline {
    position: relative;
    padding-left: 50px;
}

.activity-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 22px;
    width: 3px;
    background: #dbe4ff;
}

.activity-card {
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.activity-icon {
    position: absolute;
    top: 20px;
    left: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #edf2ff;
    z-index: 2;
}

.activity-body {
    width: 100%;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.activity-header .badge {
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
}

.activity-date {
    font-size: 12px;
    font-weight: 500;
    color: #64748B;
    white-space: nowrap;
}

.activity-description {
    color: #475569;;
    line-height: 1.8;
    word-break: break-word;
}

.activity-description strong {
    color: #0F172A;
}

.activity-description a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.activity-description a:hover {
    text-decoration: underline;
}

.cus-cat-label {
    display: inline-block;
    margin: 0 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
}

.change-parent-container {
    margin-top: 18px;
}

.change-parent-container .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.change-parent-container .col-md-6 {
    padding: 8px;
}

.change-parent-container .column {
    padding: 16px;
    background: #fafbfc;
    border: 1px solid #e8edf3;
    border-radius: 12px;
}

.change-parent-container .add-info {
    border-left: 4px solid #dc3545;
}

.change-parent-container .edit-info {
    border-left: 4px solid #198754;
}

.change-heading {
    margin: 0 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    font-weight: 700;
    color: #212529;
}

.info {
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.7;
    word-break: break-word;
}

.info:last-child {
    margin-bottom: 0;
}

.field-name {
    display: inline-block;
    font-weight: 600;
    color: #212529;
}

.info a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}

.info a:hover {
    text-decoration: underline;
}

.activity-footer {
    padding-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
}

.activity-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    border-radius: 25px;
    padding: 6px 14px;
    background-color: #745faa;
    border: 1px solid #745faa;
    color: #fff !important;
    transition: all .2s ease-in-out;
}

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

.activity-details-btn:active {
    border-color: #5a4588;
}


/* =========================================================
   29. PROFILE PAGE
========================================================= */

.profile-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.profile-cover {
    height: 90px;
    text-align: right;
    padding: 30px;
    position: relative;
}

.profile-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 10px rgba(17, 24, 39, .08);
    margin-top: -54px;
}

.avatar-edit-wrap {
    position: relative;
    display: inline-block;
}

.info-icon {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 9px;
    background: #fdf8f6;
    color: #DF542A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .75rem .9rem;
    border: 1px solid var(--ring);
    border-radius: 12px;
    background: #fff;
    transition: .2s;
}

.info-item:hover {
    border-color: #c7d2fe;
    background: #fafbff;
}

.info-label {
    color: #6B7280;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.info-value {
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}

.section-title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 20px;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
}

.top-actions .btn {
    font-size: .85rem;
    padding: .4rem .85rem;
    border-radius: 9px;
}

div#viewMode .col-md-6,
div#viewMode .col-md-4,
div#viewMode .col-md-8 {
    margin-top: 1rem;
}

span#v_company,
#v_name {
    font-weight: 700;
}

.sidebar--profile .profile--img img {
    object-fit: cover !important;
    width: 80px;
    height: 80px;
}


/* =========================================================
   30. OTHER COMMON PAGE STYLES
========================================================= */

.class-single-content ul li {
    list-style: disc;
}

.text-box-nlrp {
    padding: 0 5px;
}

.diagonal-strike-through {
    font-size: smaller;
    font-weight: 700;
}

.diagonal-strike-through del {
    color: red;
}

.search-btns {
    align-self: center;
    margin-top: 36px !important;
}

.meta-add-btn {
    margin: 0 10px;
    padding: 15px 24px;
}


/* =========================================================
   31. COLOR LEGEND
========================================================= */

.cus-legend-wrapper-main-div {
    margin: -15px 0;
}

.cus-legend-wrapper {
    background: #fff;
    border: 1px solid #dddddd;
    padding: 15px 15px 5px;
    margin-bottom: 25px;
}

.cus-legend-wrapper .cus-legend-key {
    height: 20px;
    margin-right: 5px;
}

.cus-legend-wrapper .cus-legend-value {
    margin-right: 10px;
    vertical-align: middle;
}

.cus-legend-wrapper .cus-legend-key,
.cus-legend-wrapper .cus-legend-value {
    display: inline-flex;
}


/* =========================================================
   32. DESKTOP RESPONSIVE
========================================================= */

@media (min-width: 1200px) {

    body.sidebar-mini .navbar--header {
        width: 0;
    }

    body.sidebar-mini .sidebar--nav ul li a span {
        display: none;
    }

    .sidebar-mini .sidebar {
        width: 95px;
        left: -10px;
    }

    .sidebar-mini .sidebar--profile .profile--name,
    .sidebar-mini .sidebar--profile .profile--nav {
        display: none;
    }

    .sidebar-mini .main--container {
        padding-left: 80px;
    }

    .sidebar-mini .sidebar--nav .is-dropdown > a:before,
    .sidebar-mini .sidebar--nav .is-dropdown.open > a:after {
        display: none;
    }

    .sidebar-mini .sidebar--nav ul ul ul a {
        padding-left: 16px !important;
        text-align: center;
    }

    .sidebar-mini .sidebar--nav i {
        margin-right: 0;
    }

    .sidebar-mini .profile--img {
        max-width: 55px;
    }

    .sidebar-mini .navbar--header {
        left: -185px;
        width: unset !important;
    }

    .navbar--header {
        transition: unset;
    }

    .navbar--nav .nav--user:before {
        left: 55px;
    }
}


/* =========================================================
   33. TABLET RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    body:not(.sidebar-mini) .logo-box .logo-full {
        display: none;
    }

    body:not(.sidebar-mini) .logo-box .logo-mini {
        display: block;
        max-height: 65px;
        width: auto;
    }

    body.sidebar-mini .logo-box .logo-full {
        display: block;
    }

    body.sidebar-mini .logo-box .logo-mini {
        display: none;
    }
}


/* =========================================================
   34. MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .mobile-table-scroll {
        overflow-x: auto;
    }

    .mobile-table-scroll table {
        min-width: 630px;
        white-space: nowrap;
    }

    .navbar--header .navbar--btn {
        display: block;
    }

    .navbar--header {
        left: -345px;
        transition: none;
    }

    ul.custom-nav {
        flex-direction: column;
        width: 100%;
        border-radius: 25px;
        padding: 10px;
    }

    .activity-header {
        flex-direction: column;
        align-items: normal;
        gap: 10px;
    }

    .activity-timeline {
        padding-left: 35px;
    }

    .activity-timeline::before {
        left: 16px;
    }

    .activity-card {
        padding: 15px;
    }

    .activity-icon {
        left: -28px;
        width: 34px;
        height: 34px;
    }

    .activity-date {
        white-space: normal;
    }

    .field-name {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
    }

    .change-parent-container .column {
        margin-bottom: 12px;
    }
}


/* =========================================================
   35. SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .profile-cover {
        height: 70px;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
        margin-top: -45px;
    }
}


/* =========================================================
   END OF CUSTOM CSS
========================================================= */
