@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* ========================================
   MODERN UI DESIGN SYSTEM - 2026
   ======================================== */

:root {
    /* btn-hover-Colors */
    --btn-multi-delete-bg-color: #EF4444;
    --btn-delete-bg-color: #EF4444;
    --btn-reset-bg-color: #6C757D;
    --btn-create-bg-color: #3B82F6;
    --btn-edit-bg-color: #2E90FA;
    --btn-color: #FFF;

    /* Primary Colors */
    --color-primary: #2E90FA;
    --color-primary-hover: #258eff;
    --color-primary-light: #F5F3FF;

    /* Neutral Colors */
    --color-text-primary: #1A1D1F;
    --color-text-secondary: #6F767E;
    --color-text-tertiary: #9A9FA5;

    /* Background Colors */
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F7F8FA;
    --color-bg-tertiary: #EFEFEF;

    /* Status Colors */
    --color-success: #00BA88;
    --color-success-light: #E6F9F4;
    --color-warning: #FFAB00;
    --color-warning-light: #FFF8E6;
    --color-danger: #FF6A55;
    --color-danger-light: #FFE8E5;
    --color-info: #2F86EB;
    --color-info-light: #E6F2FF;

    /* Border & Divider */
    --color-border: #EFEFEF;
    --color-border-light: #F4F4F4;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* @import company_url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Jost:wght@400;500;600;700&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap'); */

body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    scroll-behavior: smooth;
    background-color: #f5f6f8;
    color: var(--color-text-primary);
    font-size: 14px;
    line-height: 1.5;
}

h1 {
    font-size: clamp(16px, 2vw, 22px) !important;
    font-weight: 600 !important;
}

h2 {
    font-size: clamp(16px, 2vw, 20px) !important;
}

h3 {
    font-size: clamp(16px, 2vw, 18px) !important;
}

h4 {
    font-size: clamp(14px, 1.5vw, 16px) !important;
}

h5 {
    font-size: clamp(12px, 1.8vw, 15px) !important;
}

h6 {
    font-size: clamp(11px, 1.8vw, 14px) !important;
}

.theme-icon-color {
    filter: brightness(0) saturate(100%) invert(28%) sepia(65%) saturate(4011%) hue-rotate(211deg) brightness(103%) contrast(98%);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/*button css code start*/
.icon-btn {
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    display: flex;

}

.icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.create-btn:hover {
    color: var(--btn-color) !important;
    background-color: var(--btn-create-bg-color) !important;
    border: 1px solid var(--btn-create-bg-color) !important;
}

.reset-btn:hover {
    color: var(--btn-color) !important;
    background-color: var(--btn-reset-bg-color) !important;
    border: 1px solid var(--btn-reset-bg-color) !important;
}

.multi_delete:hover {
    color: var(--btn-color) !important;
    background-color: var(--btn-multi-delete-bg-color) !important;
    border: 1px solid var(--btn-multi-delete-bg-color) !important;
}

/* .delete:hover {
    color: var(--btn-color) !important;
    background-color: var(--btn-multi-delete-bg-color) !important;
    border: 1px solid var(--btn-multi-delete-bg-color) !important;
}

.edit:hover {
    color: var(--btn-color) !important;
    background-color: var(--btn-edit-bg-color) !important;
    border: 1px solid var(--btn-edit-bg-color) !important;
} */

.btn-gallery-action:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);

}

.btn-gallery-action.edit:hover {
    background: #dfecfd;
    border-color: #88a9f3;
}

.btn-gallery-action.details:hover {
    background: #e5eafb;
    border-color: #a9b7e5;
}

.btn-gallery-action.delete:hover {
    background: #fff1f1;
    border-color: #fb7d7d;
}

#bulk-edit-btn:hover {
    color: var(--btn-color) !important;
    background-color: var(--btn-edit-bg-color) !important;
}

/*button css code end*/

/*border css code start*/
.border-secondary {
    border-color: #e1e1e1 !important;
}

/*border css code end*/



/* Background Colors */
.bg-light-gray {
    background-color: var(--color-bg-secondary) !important;
}

.bg-white {
    background-color: var(--color-bg-primary) !important;
}

.bg-primary-light {
    background-color: var(--color-primary-light) !important;
}

/* Text Colors */
.text-primary-dark {
    color: var(--color-text-primary) !important;
}

.text-secondary {
    color: var(--color-text-secondary) !important;
}

.text-tertiary {
    color: var(--color-text-tertiary) !important;
}

.accent-purple {
    color: var(--color-primary) !important;
}

/* Status Colors */
.text-success {
    color: var(--color-success) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.text-danger {
    color: #c21e39 !important;
}

.text-info {
    color: var(--color-info) !important;
}

.bg-success-light {
    background-color: var(--color-success-light) !important;
}

.bg-warning-light {
    background-color: var(--color-warning-light) !important;
}

.bg-danger-light {
    background-color: var(--color-danger-light) !important;
}

.bg-info-light {
    background-color: var(--color-info-light) !important;
}

/* Borders */
.border-light {
    border-color: var(--color-border) !important;
}

.border-lighter {
    border-color: var(--color-border-light) !important;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Border Radius */
.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-md {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

/* Transitions */
.transition-fast {
    transition: all var(--transition-fast) !important;
}

.transition-base {
    transition: all var(--transition-base) !important;
}

.transition-slow {
    transition: all var(--transition-slow) !important;
}

.bi {
    font-size: 23px;
}

/* ========================================
   MODERN SIDEBAR STYLES
   ======================================== */

/* Sidebar Container */
.ivoryMenu {
    background-color: var(--color-bg-primary) !important;
    background-image: none;
    transition: width var(--transition-base);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    z-index: 1030;
}


/* Sidebar Menu Items */
.ivoryMenu .scroll>ul>li>a {
    color: var(--color-text-secondary) !important;
    padding: 12px 15px;
    border-radius: 0px;
    transition: all var(--transition-fast);
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ivoryMenu .scroll>ul>li>a:hover {
    background-color: var(--color-bg-secondary) !important;
    color: var(--color-text-primary) !important;
}

.ivoryMenu .scroll>ul>li>a.active {
    background-color: var(--color-primary-light) !important;
    color: var(--color-primary) !important;
    font-weight: 600;
    border-right: 3px solid var(--color-primary);
}

/* Submenu Styles */
.ivoryMenu ul ul {
    background-color: transparent;
    border-radius: 0px;
    padding-left: 12px;
}

.ivoryMenu ul ul li a {
    color: var(--color-text-secondary) !important;
    padding: 8px 12px;
    font-size: 13px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.ivoryMenu ul ul li a:hover {
    background-color: var(--color-bg-secondary) !important;
    color: var(--color-text-primary) !important;
}

.ivoryMenu ul ul li a.active-sub {
    color: var(--color-primary) !important;
    font-weight: 600;
    position: relative;
    background-color: var(--color-primary-light) !important;
    padding-left: 20px !important;
}

.ivoryMenu ul ul li a.active-sub::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

/* Tree Connectors - Hide for modern design */
.tree ul li a::before,
.tree ul li::after,
.tree ul li::before {
    display: none;
}

/* Menu Icon (Hamburger) */
.menuIcon span {
    background-color: var(--color-text-secondary) !important;
    transition: all var(--transition-fast);
}

.menuIcon:hover span {
    background-color: var(--color-text-primary) !important;
}

/* Arrow Icons for Submenus */
.arrow-icon {
    transition: transform var(--transition-fast);
}

.has-sub.open .arrow-icon {
    transform: rotate(90deg);
}

/* Collapsed State */
.ivoryMenu.collapsed .menu-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.ivoryMenu.collapsed .arrow-icon {
    display: none;
}

/* Header Styles */


/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
}

.breadcrumb-item {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.breadcrumb-item.active {
    color: var(--color-text-primary);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--color-text-tertiary);
    font-size: 16px;
}

.custom-wrap {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Profile Dropdown */
.userSettings {
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}


.userSettings i {
    font-size: 13px;
}

/* Main Content Area Adjustment */
body:not(.menu-collapsed) .ivoryContent {
    margin-left: 300px !important;
}

body .ivoryContent {
    margin-left: 92px !important;
}

/* body.menu-collapsed .ivoryContent {
    margin-left: 100px !important;
} */

.ivoryContent {
    transition: margin-left var(--transition-base);
    /* padding-top: 85px; */
    min-height: 100vh;
}

/* Hide inner page breadcrumbs - we have breadcrumbs in header */
.breadcrumbTop {
    display: none !important;
}

/* Remove extra padding/margin from content area */
.mainWrapper {
    margin: 0 !important;
    /* Sidebar is fixed, so mainWrapper needs no left margin */
}

.wrapperInner,
.pageContent {
    padding: 0 !important;
    margin: 0 !important;
}

.tab-header hr {
    border-color: #dddddd !important;
    opacity: 1;
}

button {
    outline: none !important;
}

.tab-header button {
    padding: 12px 4px;
    font-size: 15px;
    font-weight: 600;
    color: #6B7280;
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

/* Fix title row with buttons */


/* Content spacing */
.pageContent>.row+div,
.pageContent>.row+.mx-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Fix submenu visibility and accessibility */
.ivoryMenu ul ul {
    background-color: transparent !important;
    border-radius: var(--radius-md);
    padding: 0 32px;
    max-height: none !important;
    overflow: visible !important;
}

.ivoryMenu .has-sub.open>ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    padding: 0px 32px;
}

/* ========================================
   MODERN DASHBOARD STYLES
   ======================================== */

/* Modern Stat Cards */
.modern-stat-card {
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.modern-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg) !important;
    border-color: transparent;
}

/* Colored Left Borders */
.border-left-primary {
    border-left: 4px solid var(--color-primary) !important;
}

.border-left-info {
    border-left: 4px solid var(--color-info) !important;
}

.border-left-warning {
    border-left: 4px solid var(--color-warning) !important;
}

.border-left-success {
    border-left: 4px solid var(--color-success) !important;
}

.border-left-danger {
    border-left: 4px solid var(--color-danger) !important;
}

/* Icon Wrapper */
.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.stat-icon-text {
    font-size: 24px;
    color: inherit;
}

/* Stat Typography */
.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-footer {
    margin-top: auto;
}

/* Soft Badges */
.badge-primary-soft {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 500;
}

.badge-info-soft {
    background-color: var(--color-info-light);
    color: var(--color-info);
    font-weight: 500;
}

.badge-warning-soft {
    background-color: var(--color-warning-light);
    color: var(--color-warning);
    font-weight: 500;
}

.badge-success-soft {
    background-color: var(--color-success-light);
    color: var(--color-success);
    font-weight: 500;
}

.badge-danger-soft {
    background-color: var(--color-danger-light);
    color: var(--color-danger);
    font-weight: 500;
}

.badge-secondary-soft {
    background-color: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Dashboard Stats Section */
.dashboard-stats-section .row {
    margin: 0 -8px;
}

.dashboard-stats-section .row>[class*="col-"] {
    padding: 0 8px;
}

@media (max-width: 768px) {
    body:not(.menu-collapsed) .ivoryContent {
        margin-left: 0px !important;
    }

    .headerHub3 .bg-white {
        border-radius: 0px !important;
    }

    .stat-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .stat-icon {
        width: 24px;
        height: 24px;
    }
}

/* Chart Containers */
.contentPanel {
    transition: all var(--transition-base);
}

/* Community Pages Styling */
.community-list thead th {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 13px;
    padding: 12px;
}

.community-list tbody tr:hover {
    background-color: var(--color-bg-secondary);
}

/* Modern Form Styling */
.form-control {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    /* padding: 10px 12px; */
    font-size: 14px;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(108, 93, 211, 0.1);
}

/* Button Variants */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background-color: #5a4bc4;
    border-color: #5a4bc4;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: white;
    font-weight: 500;
}

.btn-success:hover {
    background-color: #00a077;
    border-color: #00a077;
}

/* Badge Styling */
.badge-secondary {
    background-color: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
}

/* Legacy Color Overrides - Keep for backward compatibility */
.color-primary {
    color: var(--color-primary) !important;
}

.color-secondary {
    color: var(--color-text-secondary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-bg-secondary) !important;
}

.bg-363636 {
    background-color: var(--color-primary) !important;
}

.bg-color-shadow {
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

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

.custom-select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--color-primary);
}

/* ========================================
   MODERN BUTTON STYLES
   ======================================== */

.btn {
    font-weight: 500;
    border-radius: var(--radius-md);
    padding: 8px 16px;
    font-size: 14px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background-color: var(--color-success) !important;
    border-color: var(--color-success) !important;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #00A378 !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-danger {
    background-color: var(--color-danger) !important;
    border-color: var(--color-danger) !important;
    color: #fff !important;
}

.btn-danger:hover {
    background-color: #FF5542 !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-warning {
    background-color: var(--color-warning) !important;
    border-color: var(--color-warning) !important;
    color: #fff !important;
}

.btn-warning:hover {
    background-color: #E69A00 !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-bg-primary) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text-primary) !important;
}

.btn-secondary:hover {
    background-color: var(--color-bg-secondary) !important;
    border-color: var(--color-text-tertiary) !important;
}

.btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

/* ========================================
   CARD COMPONENTS
   ======================================== */

.card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 20px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.card-body {
    padding: 20px;
}

.card-footer {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 12px 20px;
}

/* ========================================
   STATUS BADGES
   ======================================== */

.badge {
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.badge-success {
    background-color: var(--color-success-light) !important;
    color: var(--color-success) !important;
}

.badge-warning {
    background-color: var(--color-warning-light) !important;
    color: var(--color-warning) !important;
}

.badge-danger {
    background-color: var(--color-danger-light) !important;
    color: var(--color-danger) !important;
}

.badge-info {
    background-color: var(--color-info-light) !important;
    color: var(--color-info) !important;
}

.badge-primary {
    background-color: var(--color-primary-light) !important;
    color: var(--color-primary) !important;
}

/* ========================================
   TABLE STYLES
   ======================================== */

.toast {
    z-index: 999999999;
}

.w-30 {
    width: 30px !important;
}

.toast.toastBox {
    width: 380px;
    flex-basis: 380px;
    max-width: 380px;
    border: none;
    z-index: -1;
}

.toast:not(.show) {
    display: none !important;
}

.toast.toastBox.show {
    z-index: 9999;
}

.successBorder {
    border-left: 7px solid #47d764 !important;
}

.warningBorder {
    border-left: 7px solid #ffc021 !important;
}

.infoBorder {
    border-left: 7px solid #2f86eb !important;
}

.dangerBorder {
    border-left: 7px solid #e82030 !important;
}

.ts-title {
    font-size: 18px;
    color: #02080d;
    font-weight: 600;
}

.ts-messge {
    font-size: 14px;
    color: #898989;
    font-weight: 400;
}

.toastBox .toastIcon {
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.toastBox .ti-check {
    background: #47d764;
}

.toastBox .fa-exclamation {
    background: #ffc021;
}

.toastBox .ti-info {
    background: #2f86eb;
}

.toastBox .fa-times {
    background: #e82030;
}

.toastBox .fa-trash-alt {
    background: #e33c31;
}

.toast.toastBox .close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #b7b7b7;
    outline: none;
}

.toast.toastBox .close:hover {
    opacity: 1;
}

.toastBox .ti-close {
    font-size: 16px;
    font-weight: 600;
}

.toastBox .ti-close:hover {
    color: #000;
}

.customMenuScroll,
.customGrayScroll {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f7f6f2 transparent;
}

.customMenuScroll::-webkit-scrollbar,
.customGrayScroll::-webkit-scrollbar {
    width: 6px;
}

.customMenuScroll::-webkit-scrollbar-track,
.customGrayScroll::-webkit-scrollbar-track {
    background: transparent;
}

.customMenuScroll::-webkit-scrollbar-thumb {
    background-color: #f1bdc4;
    border-radius: 3px;
}

.customGrayScroll::-webkit-scrollbar-thumb {
    background-color: #d4d4d4;
    border-radius: 3px;
}

.customVerScroll {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e6e6e6 transparent;
}

.customVerScroll::-webkit-scrollbar {
    width: 4px;
}

.customVerScroll::-webkit-scrollbar-track {
    background: transparent;
}

.customVerScroll::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    border-radius: 3px;
}

.w-30px {
    width: 30px !important;
}

.fs-12-02080D {
    color: #02080d;
    font-size: 12px;
}

.boxShadowLight .dropdown-menu {
    box-shadow: 0px 4px 14px rgb(0 0 0 / 4%);
    border-color: #eaebef;
    border-radius: 2px;
}

.mainWrapper {
    width: 100%;
    min-height: 100vh;
    padding-left: 0px;
    -webkit-transition: padding-left 0.3s ease 0s;
    transition: padding-left 0.3s ease 0s;
}

.headerPart {
    width: 100%;
    background: #fbfaf6;
    height: 65px;
    padding: 10px 20px;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #dedede;
    z-index: 1;
}

.pageContent {
    padding-top: 65px;
}

.breadcrumbTop .breadcrumb-item+.breadcrumb-item::before {
    position: absolute;
    content: "";
    border-left: 13px solid #f8f8f8;
    border-right: 10px solid transparent;
    border-bottom: 17px solid transparent;
    border-top: 17px solid transparent;
    left: 0px;
}

.breadcrumbTop .breadcrumb-item a {
    font-size: 14px;
    color: #02080d;
    text-decoration: none;
}

.breadcrumbTop .breadcrumb-item {
    font-size: 15px;
    color: #02080d;
    padding: 0px 10px 0px 22px;
    margin: 0px 5px;
    background: #fff;
    position: relative;
    height: 34px;
    line-height: 32px;
    border-top: 1px solid #4a4a4a0f;
    border-bottom: 1px solid #4a4a4a0f;
    box-shadow: 12px 1px 30px -4px #ebebebdd;
}

.breadcrumbTop .breadcrumb-item:first-child {
    padding: 0px 5px 0px 8px;
    margin: 0px 10px;
}

.breadcrumbTop .breadcrumb-item img {
    width: 16px;
    position: relative;
    top: -1px;
}

.breadcrumbTop .breadcrumb-item:after {
    position: absolute;
    content: "";
    border-left: 10px solid #fff;
    border-right: 10px solid transparent;
    border-bottom: 17px solid transparent;
    border-top: 17px solid transparent;
    right: -20px;
}

.breadcrumbTop .breadcrumb-item.active {
    font-size: 14px;
    color: #02080d;
}

.breadcrumbTop .breadcrumb-item a:hover {
    color: #175fa7;
}

.contentRight {
    width: 100%;
}

.alertBlue {
    color: #295e6d !important;
    z-index: 1024;
}

.alertBlue .ti-info {
    color: #fff;
    background: #8eb8c6;
    padding: 3px;
    border-radius: 30px;
    margin-right: 5px;
}

.alertGreen.alert-success {
    background-color: rgba(121, 212, 81, 0.8);
    z-index: 1024;
}

.alertGreen .ti-check {
    color: #fff;
    background: rgba(60, 118, 61, 0.7);
    padding: 3px;
    border-radius: 30px;
    margin-right: 5px;
}

.fs-17-600 {
    font-size: 17px !important;
    font-weight: 600 !important;
}

.fs-18-700 {
    font-size: 18px;
    font-weight: 700;
}

.fs-20-700 {
    font-size: 20px;
    font-weight: 700;
}

.boxShadow {
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
}

.boxShadow2 {
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 8%);
}

.boxShadow3 {
    border: 1px solid #eaebef;
    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.06);
}

.form-wrap .floating input:focus+label,
.form-wrap .floating textarea:focus+label {
    font-size: 13px !important;
    padding: 2px 2px;
    z-index: 2;
    font-weight: 400 !important;
}

.form-wrap .floating input {
    color: #02080d;
    font-size: 16px;
    padding: 18px 8px 4px;
    height: auto;
    font-weight: 600;
    width: 100%;
    z-index: 1;
    background: #ffffff;
    border: 1px solid #eaebef;
    box-sizing: border-box;
    border-radius: 2px;
    outline: none;
    height: 44px;
}

.form-wrap .floating input.invalid+span.invalid {
    opacity: 1 !important;
    position: absolute;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    left: 7px;
    bottom: -22px;
    padding: 6px 10px;
    color: #ed4545;
    text-align: left;
    z-index: 0;
}

.form-wrap .floating textarea {
    background: none;
    width: 100%;
    resize: none;
    color: #02080d;
    font-weight: 500;
    padding: 20px 8px 10px 8px;
    resize: none;
    border: 1px solid #eaebef;
    box-sizing: border-box;
    border-radius: 2px;
    z-index: 1;
    outline: none;
    line-height: 16px;
}

.form-wrap .floating textarea.invalid {
    border: solid 1px #ed4545;
    position: relative;
}

.form-wrap .floating textarea.invalid+span.invalid {
    opacity: 1 !important;
    position: absolute;
    width: 100%;
    z-index: 0;
    font-size: 12px;
    font-weight: 600;
    left: 7px;
    bottom: -22px;
    padding: 6px 10px;
    color: #ed4545;
}

span.error,
span.invalid {
    font-size: 12px;
    color: #e82030;
    font-weight: 500;
}

.form-wrap .floating label {
    font-weight: 400;
    color: #878a9c;
    font-size: 13px;
    transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s,
        left 0.2s;
    position: absolute;
    padding: 13px 25px;
    margin: 0;
}

.form-wrap .floating textarea {
    display: block;
    resize: vertical;
}

.disabledIn label {
    top: -10px !important;
    color: #878a9c !important;
    left: 15px !important;
    width: 95% !important;
    outline: none !important;
    padding: 11px 10px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

form.go-bottom .form-wrap .floating label {
    top: 0;
    bottom: 0;
    width: 100%;
    outline: none;
    left: 15px;
    width: 95%;
    outline: none;
    padding: 11px 16px;
    font-weight: 400;
}

.go-bottom .form-wrap .floating input:focus+label,
.go-bottom .form-wrap .floating textarea:focus+label,
.go-bottom .form-wrap .floating input:focus+span.error+label,
.go-bottom .form-wrap .floating textarea:focus+span.error+label,
.go-bottom .form-wrap .floating input:focus+span.invalid+label,
.go-bottom .form-wrap .floating textarea:focus+span.invalid+label {
    top: -10px;
    color: #878a9c;
    left: 15px;
    width: 95%;
    outline: none;
    padding: 11px 10px;
    font-weight: 500;
}

.go-bottom .form-wrap .floating input.invalid~label,
.go-bottom .form-wrap .floating textarea.invalid~label,
.go-bottom .form-wrap .floating input.valid~label,
.go-bottom .form-wrap .floating textarea.valid~label {
    font-size: 13px !important;
    z-index: 2;
    font-weight: 400;
    top: -10px;
    color: #878a9c;
    left: 15px;
    width: 95%;
    outline: none;
    padding: 11px 10px;
}

.form-wrap .floating .confirm.error,
.form-wrap .floating .alert.invalid {
    margin: 0;
    color: #333;
    font-weight: 400;
}

.form-wrap .floating .confirm.error i,
.form-wrap .floating .alert.invalid i {
    font-style: italic;
}

.form-wrap .floating .invalid,
.form-wrap .floating .error {
    margin: 0;
}

.form-wrap .floating input.error,
.has-float-label textarea.error {
    border: 1px solid #efa3a3;
}

.form-wrap .floating input.invalid {
    border: 1px solid #efa3a3;
    position: relative;
    background: none;
}

.form-wrap .submit {
    float: left;
    width: 100%;
    text-align: left;
    clear: both;
    margin-top: 10px;
}

.form-wrap .submit button:hover {
    background: rgba(246, 38, 38, 0.8);
}

.form-wrap .submit button {
    background: #e91e1e;
    width: 150px;
    font-size: 12px;
    border: none;
    color: #fff;
    margin: 20px 0px;
    float: none;
    padding: 10px 10px;
    text-transform: uppercase;
    transition: 0.5s;
    cursor: pointer;
}

.ad-rd {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.cs-rad [type="radio"]:checked,
.cs-rad [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.cs-rad [type="radio"]:checked+label,
.cs-rad [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #02080d;
    font-weight: 500;
    font-size: 12px;
}

.cs-rad [type="radio"]:checked+label:before,
.cs-rad [type="radio"]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.cs-rad [type="radio"]:checked+label:after,
.cs-rad [type="radio"]:not(:checked)+label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #e82030;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.cs-rad [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cs-rad [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

ul.cs-rad {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
}

.chk-topp [type="checkbox"]:not(:checked)+label,
.chk-topp [type="checkbox"]:checked+label {
    padding-left: 30px;
}

.cs-rad li {
    padding-right: 50px;
}

.formLabel {
    color: #7c7f91;
    font-size: 14px;
    font-weight: 400;
}

.chkLabel input[type="checkbox"]+.error,
.chkLabel input[type="checkbox"]+.invalid {
    position: absolute;
    bottom: -20px;
    white-space: nowrap;
    left: 0;
}

.cs-rad input[type="radio"]+.error,
.cs-rad input[type="radio"]+.invalid {
    position: absolute;
    bottom: 5px;
}

.floating-labelSrc+span.invalid {
    position: absolute;
    bottom: -21px;
}

.cs-rad [type="radio"]:checked+span.error+label,
.cs-rad [type="radio"]:not(:checked)+span.error+label,
.cs-rad [type="radio"]:not(:checked)+span.invalid+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #02080d;
    font-weight: 500;
    font-size: 14px;
}

.cs-rad [type="radio"]:checked+span.error+label:before,
.cs-rad [type="radio"]:not(:checked)+span.error+label:before,
.cs-rad [type="radio"]:not(:checked)+span.invalid+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.cs-rad [type="radio"]:checked+span.invalid+label:before,
.cs-rad [type="radio"]:not(:checked)+span.invalid+label:before,
.cs-rad [type="radio"]:not(:checked)+span.invalid+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.cs-rad [type="radio"]:checked+span.error+label:after,
.cs-rad [type="radio"]:checked+span.invalid+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cs-rad [type="radio"]:checked+span.error+label:after,
.cs-rad [type="radio"]:checked+span.invalid+label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #e82030;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.has-float-label label,
.has-float-label>span {
    position: relative;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
    line-height: 1;
    padding: 0 1px;
    pointer-events: none;
}

.has-float-label label::after,
.has-float-label>span::after {
    content: " ";
    display: block;
    position: absolute;
    background: transparent;
    height: 2px;
    top: 50%;
    left: -0.2em;
    right: -0.2em;
    z-index: -1;
}

.has-float-label .form-control::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.has-float-label .form-control::-moz-placeholder {
    opacity: 1;
    transition: all 0.2s;
}

.has-float-label .form-control:-ms-input-placeholder {
    opacity: 1;
    transition: all 0.2s;
}

.has-float-label .form-control::placeholder {
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
    opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus)+* {
    color: #8c9094;
    opacity: 1;
    font-size: 13px;
}

.has-float-label textarea.form-control:placeholder-shown:not(:focus)+* {
    top: 8px;
}

.has-float-label .form-control::placeholder {
    color: transparent;
    opacity: 1;
    top: 10px;
    left: 29px;
    font-size: 12px;
}

.input-group .has-float-label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.has-float-label input.form-control+.invalid,
.has-float-label input.form-control+.error {
    opacity: 1 !important;
    position: absolute;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    top: auto;
    left: 5px;
    bottom: auto;
    padding: 6px 10px;
    color: #ed4545;
    text-align: left;
    z-index: 0;
    white-space: nowrap;
}

.has-float-label input.form-control+.error:hover,
.has-float-label input.form-control+.invalid:hover {
    overflow: visible;
}

.has-float-label .form-control:placeholder-shown:not(:focus)+.invalid {
    opacity: 1 !important;
    position: absolute;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    top: auto;
    left: 5px;
    bottom: auto;
    /* padding: 4px 10px; */
    color: #ed4545;
    text-align: left;
    z-index: 0;
}

.has-float-label textarea {
    background: none;
    width: 100%;
    resize: none;
    color: #02080d;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 8px 8px 8px;
    border: 1px solid #eaebef;
    box-sizing: border-box;
    border-radius: 2px;
    z-index: 1;
    outline: none;
    line-height: 16px;
}

.has-float-label input {
    background: none;
    width: 100%;
    height: clamp(44px, 4vw, 50px) !important;
    resize: none;
    color: #02080d;
    font-weight: 500;
    padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 18px) !important;
    box-sizing: border-box;
    z-index: 1;
    outline: none;
}

.has-float-label input:focus {
    resize: none;
    color: #02080d;
}

.has-float-label textarea+span.invalid {
    opacity: 1 !important;
    position: absolute;
    width: 100%;
    font-size: 12px !important;
    font-weight: 500;
    left: 18px !important;
    top: auto !important;
    padding: 2px 0px;
    color: #ed4545 !important;
    text-align: left;
    z-index: 0;
    margin: 0 !important;
}

.has-float-label textarea.invalid,
.has-float-label input.invalid {
    border: 1px solid #efa3a3;
    position: relative;
    background: none;
}

.has-float-label textarea+label,
.has-float-label textarea.valid+label {
    background: #fff;
    width: calc(100% - 57px);
    padding: 4px 0px;
    margin-top: -4px;
    margin-bottom: 0;
    z-index: 1;
}


.has-float-label .form-control.date-float::placeholder {
    color: #333;
}

.has-float-label .date-float+label {
    font-size: 13px !important;
    left: 12px;
}

.go-bottom .form-wrap .floating input.valid~label,
.go-bottom .form-wrap .floating textarea.valid~label,
form.go-bottom .form-wrap .floating input[value]+label {
    height: 1px;
}

.sel-wrap .select2-container.error .select2-selection {
    border: 1px solid #efa3a3;
}

.has-float-label .input-group.acDate {
    border-radius: 2px;
}

.has-float-label .input-group.acDate>.form-control {
    color: #02080d;
    font-size: 15px;
    padding-top: 22px;
    font-weight: 500;
    border: none;
    border-right: 1px solid #e0e0e0;
    border: 1px solid #eaebef;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.input-group>.form-control.date-float:focus {
    z-index: 1;
}

.has-float-label .input-group.acDate .input-group-append {
    border: 1px solid #eaebef;
    height: 44px;
}

.has-float-label .acDate span.ti-calendar,
.has-float-label .acDate span.ti-time {
    border: none;
    padding: 13px 12px;
    color: #878a9c;
}

.acDate span.ti-calendar,
.acDate span.ti-time {
    padding: 13px 12px;
    color: #878a9c;
    font-size: 15px !important;
}

.has-float-label .input-group.acDate .input-group-append.inputBlue {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.has-float-label .input-group.acDate .input-group-append {
    border: 1px solid #eaebef;
    height: 44px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group>.input-group-append.inputBlue>.input-group-text {
    background: #edeff3;
    border: none !important;
    font-size: 13px;
    color: #1f459f;
    font-weight: 600;
}

.has-float-label .form-control.date-float:placeholder-shown:not(:focus)+* {
    left: 12px;
    font-size: 13px;
}

.has-float-label .date-float.valid+label {
    left: 13px;
    background: transparent;
}

.has-float-label .form-control.date-float:focus+.bootstrap-datetimepicker-widget+label,
.has-float-label .form-control.date-float:visited+.bootstrap-datetimepicker-widget+label,
.has-float-label .form-control.date-float:active+.bootstrap-datetimepicker-widget+label {
    left: 12px;
    font-size: 13px;
}

.has-float-label input.date-float {
    padding: 0.375rem 0.75rem;
}

.errorPlace .chkLabel+.invalid {
    display: block;
    width: 100%;
}

.boxOut,
#boxOut {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.go-bottom .form-wrap .floating input:active+label,
.go-bottom .form-wrap .floating input:visited+label {
    top: -10px;
    color: #878a9c;
    left: 14px;
    width: 95%;
    outline: none;
    padding: 11px 10px;
    font-weight: 400;
}

.has-float-label>span.error {
    position: absolute;
    font-size: 12px !important;
    color: #e82030 !important;
    font-weight: 500;
    bottom: -13px !important;
    top: auto !important;
    left: 15px !important;
}

.form-wrap .has-float-label input.error,
.form-wrap .has-float-label input.invalid {
    border: 1px solid #efa3a3;
    position: relative;
    background: none;
}

.input-group.csSelect2 {
    position: relative;
    width: 100%;
}

.input-group.csSelect2 select {
    width: 100% !important;
}

.sel-wrap>select2 {
    width: 100%;
}

.input-group.csSelect2>label {
    position: absolute;
    top: 12px;
    left: 15px;
    z-index: 1;
    transition: 0.2s ease-out;
    pointer-events: none;
    font-size: 13px;
    color: #878a9c;
}

.input-group.csSelect2>label.filled {
    left: 10px;
    transform: translateY(-53%);
    display: inherit;
    font-size: 12px;
    font-weight: 600 !important;
}

.input-group.csSelect2>label.active {
    color: #878a9c;
    font-weight: 500 !important;
}

.sel-wrap {
    width: 100%;
}

.sel-wrap .select2 .selection .select2-selection {
    border: 1px solid #eaebef;
    box-sizing: border-box;
    border-radius: 2px;
    height: 44px !important;
}

.selectstyle .sel-wrap .select2 .selection .select2-selection {
    border-radius: 6px !important;
}

.sel-wrap .select2-container *:focus {
    outline: none;
}

.sel-wrap .select2-dropdown--below {
    margin-top: 10px;
}

.sel-wrap span.select2-container--open .select2-results__options .select2-results__option {
    padding: 10px 16px 16px 10px;
    color: black;
}

.sel-wrap span.select2-container--open .select2-results__options .select2-results__option[aria-selected="true"] {
    background-color: Silver;
}

.sel-wrap span.select2-container--open .select2-results__options .select2-results__option--highlighted {
    background-color: Gainsboro;
}

.sel-wrap span.select2-container--open .select2-dropdown {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.19), 0 8px 17px rgba(0, 0, 0, 0.2);
    border: 1px solid #eee;
}

.sel-wrap span.select2-container--open .select2-dropdown .select2-search--dropdown {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
    width: 95%;
    margin: 10px auto;
    border-radius: 1px;
}

.sel-wrap span.select2-container--open .select2-dropdown .select2-search--dropdown input {
    border-radius: 1px;
}

.sel-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -8px;
    margin-top: 5px;
}

.sel-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    color: #02080d;
    font-weight: 600;
    font-size: 12px;
    margin-top: 5px;
}

.sel-wrap .select2-container--default .select2-selection--single .select2-selection__clear {
    top: -4px;
    right: 5px;
    opacity: 0;
}

.sel-wrap .select2-container.error .select2-selection {
    border: 1px solid #efa3a3;
}

.select2-container--default .select2-results>.select2-results__options {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #b5b5b5 transparent;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: transparent;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #b5b5b5;
    border-radius: 5px;
}

.select2-results__option {
    font-size: clamp(13px, 1.2vw, 15px) !important;
    padding: clamp(6px, 1vw, 8px) clamp(10px, 1.8vw, 15px) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline-offset: 0;
    font-size: 16px !important;
}

span.select2-container--open .select2-dropdown {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 0 none;
    z-index: 99;
    border-radius: 8px;
    top: 3px;
}

.comlistOnly .sel-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
}

.input-group.error .custom-file-input.invalid+.custom-file-label {
    border: 1px solid #efa3a3;
}

.gray-text2 {
    color: #959595;
    font-size: 12px;
    font-weight: 400;
}

.color-black {
    color: #02080d !important;
}

.textRed {
    /* color: #e82030; */
    color: #21618c;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

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

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.rounded-2 {
    border-radius: 6px !important;
}

.smTitle {
    font-size: 15px;
    color: #02080d;
}

.text-red {
    color: #e43d32 !important;
}

.grayText2 {
    margin: 0;
    font-size: 14px;
    color: rgb(2 8 13 / 60%);
}

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

.del-icon {
    color: #fff;
    background-color: #e82030;
    cursor: pointer;
    padding: 1.5px 4.5px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    align-content: center;
}

.del-icon i {
    font-size: 11px;
}

.del-icon:hover {
    /* color: #e82030; */
    background-color: #b84c44;
    color: #ffffff;
}

.btn-red {
    color: #fff;
    background: #e82030;
    padding: 7px 20px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 600;
    outline: none;
}

.btn-green {
    color: #fff;
    background: #26a78d;
    padding: 7px 20px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    outline: none;
}

.btn-lightblue {
    color: #fff;
    background: #0695cd;
    padding: 7px 20px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    outline: none;
}

.manage-list-data {
    background-color: #f8f8f8 !important;
}

.plus-icon {
    height: clamp(12px, 1.5vw, 14px) !important;
    width: clamp(12px, 1.5vw, 14px) !important;
}

.manage-list-data h5 {
    color: #000 !important;
}

.ckeckcox-lable {
    padding: 4px 0px 0px 5px !important;
}

.delete-icon:hover {
    background-color: #b84c44;
    color: #ffffff;
}

.pulse-icon {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    color: #fff;
    border-radius: 3px;
    background-color: #5dade2;
}

.pulse-icon:hover {
    background-color: #3c4e79;
}

.tab-section {
    border-bottom: 1px solid#e5e4e4;
}

.themeBlue {
    color: #fff;
    /* background: #1F459F; */
    background: #5dade2;
    padding: 7px 20px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 600;
    outline: none;
}

.btn-red:hover,
.btn-green:hover,
.btn-blue:hover,
.btn-lightblue:hover,
.themeBlue:hover {
    color: #fff;
    background-color: #0980ff !important;
}

.fixedSave {
    position: fixed;
    top: 74px;
    right: 0;
    z-index: 9;
}

.listFix .fixedSave {
    right: 15px;
}

.defix .fixedSave {
    right: 15px;
}

.blackTitle {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eaebef;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.06);
    color: #5dade2;
    font-size: 20px;
    padding: 10px 18px;
    font-weight: 600;
}

.btn-orange {
    /* background: #FCB30E;    */
    background-color: #000000;
    color: #fff;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    height: 40px !important;
    border: none;
}

.btn-orange:hover {
    color: #fff;
    background: #5dade2;
}

.btn-blue {
    /* background: #1F459F; */
    background: #2E90FA;
    color: #fff;
    padding: 7px 20px;
    outline: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    height: 35px;
    line-height: 22px;
}

.btn-blue:hover {
    color: #fff;
    background-color: #0980ff;
}

.theme-white {
    background: #fff;
    color: #02080d;
    padding: 5px 10px;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #eaebef;
    box-sizing: border-box;
}

.btn-right {
    top: 75px;
    right: 17px;
    z-index: 3;
}

.position-fixed {
    position: fixed !important;
}

.dtPart table.dataTable th,
.tableNormal .table thead th {
    color: #4e5b62;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 8px;
    border: 0px;
    font-weight: 800;
}

.dtPart .table td {
    border: none;
    color: #02080d;
    font-size: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid #edeff3;
}

.tableNormal table td {
    line-height: 32px;
}

.dtPart .table th {
    border: none !important;
    outline: none !important;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    opacity: 0.5 !important;
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
    opacity: 1 !important;
}

.dtPart div.dataTables_wrapper div.dataTables_filter label,
.dtPart div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_info {
    color: #677a84;
    font-size: 13px;
}

.dtPart .page-link {
    font-size: 13px;
    padding: 0.3rem 0.55rem;
}

.manage-listinput .has-float-label label {
    left: 10px;
}


.shorting-list table.dataTable thead .sorting_asc:nth-child(3):after,
.shorting-list table.dataTable thead .sorting_asc:nth-child(3):before {
    display: none;
}

.shorting-list2 table.dataTable thead .sorting:nth-child(5):after,
.shorting-list2 table.dataTable thead .sorting:nth-child(5):before {
    display: none;
}

.dtPart .page-item.active .page-link {
    /* background-color: #e43d32;
    border-color: #e43d32; */
    background-color: #c21e39 !important;
    border-color: #c21e39 !important;
}

.listTable table.dataTable td {
    color: #02080d;
    font-size: 14px;
    padding: 10px 8px;
    font-weight: 500;
}

.listTable table.dataTable .innerTable td {
    padding: 10px 15px !important;
}

.innerTable thead {
    background: #eaebef;
    width: 100%;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc:after {
    bottom: 0;
    top: 0;
    align-items: center;
    display: flex;
}

table.dataTable thead .sorting:before {
    right: auto !important;
    left: 0.7em !important;
}

table.dataTable thead .sorting:after {
    right: auto !important;
    left: 1.2em !important;
}

.expandTable.expNext table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
.expandTable.expNext table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
    left: 35px;
    top: 20px;
    height: 20px;
    width: 20px;
    line-height: 21px;
    font-size: 18px;
    z-index: 2;
}

.expandTable table.dataTable th {
    padding: 12px 8px 12px 30px !important;
    vertical-align: bottom !important;
}

.expandTable table.dataTable th {
    white-space: nowrap;
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
    opacity: 1 !important;
    color: #000 !important;
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
    opacity: 1 !important;
    color: #000 !important;
    left: 0.7em !important;
}

table.dataTable thead .sorting_desc:after {
    left: 1.2em !important;
}

table.dataTable thead .sorting_desc:before {
    left: 0.7em !important;
}

table.dataTable thead .sorting_asc:after {
    left: 1.2em !important;
    right: auto !important;
}

table.dataTable thead .sorting:before {
    right: auto !important;
    left: 0.7em !important;
}

table.dataTable thead .shorting-icon:after,
table.dataTable thead .shorting-icon:before {
    display: none;
}

table.dataTable thead .sorting:after {
    right: auto !important;
    left: 1.2em !important;
}

.expandTable table.dataTable td {
    vertical-align: middle !important;
    padding: clamp(10px, 1.5vw, 15px) clamp(14px, 2vw, 20px) !important;
    border-bottom: 2px solid #f5f6f8 !important;
}

.expandTable table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
.expandTable table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
    top: 48%;
    left: 35px;
    height: 19px;
    width: 19px;
    color: #000;
    border: none;
    border-radius: 2px;
    box-shadow: none;
    line-height: 20px;
    content: "+";
    font-size: 18px;
    background-color: #d6d6d6;
    z-index: 2;
}

.expandTable table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,
.expandTable table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before {
    content: "-";
    background-color: #d6d6d6;
}

.expandTable .dtr-control .check-top .custom-control-label::before,
.expandTable .dtr-control .check-top .custom-control-label::after {
    top: 2px;
}

.expandTable.expNext table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
.expandTable.expNext table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
    top: 48%;
    left: 35px;
    height: 19px;
    width: 19px;
    line-height: 21px;
    font-size: 18px;
    z-index: 2;
}

.expandTable.expNext .chkLabel label {
    padding-left: 0px;
}

table.dataTable thead .sorting_asc:after {
    opacity: 0.4 !important;
}

.actionBlock {
    text-decoration: none;
    color: #02080d;
    font-size: 14px;
    padding: 0 5px;
}

.clCount {
    color: #e82030;
    background: #f7ebeb;
    padding: 4px 7px;
    border-radius: 30px;
    margin-left: 5px;
}

.actionBlock:hover {
    color: #02080d;
    text-decoration: none;
}

.cmaSection .cmHeading {
    margin-bottom: 0px !important;
}

a.aLots {
    position: relative;
    width: 100px;
    color: #1876db;
    display: inline;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

a.aLots:hover {
    color: #106acb;
    text-decoration: none;
}

td .aLots,
tr.shown td .aLots {
    position: relative;
}

td .aLots::before {
    content: "\e64b";
    position: relative;
    bottom: -1px;
    left: 0px;
    font-size: 10px;
    font-family: "themify";
    color: #106acb;
    cursor: pointer;
}

tr.shown td .aLots::before {
    content: "\e648";
    position: relative;
    bottom: -1px;
    left: 0px;
    font-size: 10px;
    color: #106acb;
    font-family: "themify";
    cursor: pointer;
}

.dtPart.listTable table.dataTable th {
    padding: 5px 25px 5px 8px;
    border-bottom: 1px solid #edeff3 !important;
}

.dtPart.listTable table.dataTable .innerTable th {
    padding: 12px 15px !important;
}

.colorRed {
    color: #e82030 !important;
}

.expandTable table.dataTable th {
    white-space: nowrap;
}

.listTable table.dataTable .innerTable td {
    background: #ffffff;
}

.listTable table.dataTable .innerTable tr {
    border-bottom: 1px solid #e4e4e4;
}

table.innerTable {
    border: 1px solid #e5eef8;
}

.listTable table.dataTable .innerTable td {
    background: #fbfdff;
}

.dtPart.listTable table.dataTable th.pl-0.sorting_disabled {
    padding-left: 10px !important;
}

.expandTable table.dataTable td[colspan] {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.check-top .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    /* border-color: #e82030;
    background-color: #e82030; */
    border-color: #21618c;
    background-color: #21618c;
    border-radius: 2px;
}

.check-top .custom-control-label::after {
    width: 1.2rem;
    height: 1.2rem;
    border: none;
    overflow: none;
    box-shadow: none;
}

.check-top .custom-control-label::before {
    width: 1.2rem;
    height: 1.2rem;
    overflow: none;
    box-shadow: none;
    border: #c6c9cc solid 1px;
}

.check-top .custom-checkbox .custom-control-label::before {
    border-radius: 2px;
}

.check-top input[type="checkbox"]:active,
.check-top input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.check-top .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.chkLabel label {
    font-weight: 500;
    color: #02080d;
    padding-left: 0px;
    cursor: pointer;
    font-size: 13px;
    padding-top: 6px;
}

.check-top .custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #ffffff;
    border-color: #b3d7ff;
}

/* div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    padding-top: 5px;
} */
.paging_simple_numbers .pagination {
    display: flex;
    gap: 10px;
    margin: 0px;
}

[tooltip] {
    position: relative;
}

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    font-size: 13px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: "";
    border: 5px solid transparent;
    z-index: 1001;
}

[tooltip]::after {
    content: attr(tooltip);
    font-family: "aktiv-grotesk", sans-serif;
    text-align: center;
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 7px;
    font-size: 12px;
    box-sizing: content-box;
    border-radius: 3px;
    box-shadow: none;
    background: #333;
    color: #fff;
    z-index: 1000;
}

[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

[tooltip=""]::before,
[tooltip=""]::after {
    display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -0.5em);
}

@keyframes tooltips-vert {
    to {
        opacity: 0.9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: 0.9;
        transform: translate(0, -50%);
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

.insideTable .dataTables_length {
    width: 50%;
    float: left;
}

.customtool {
    width: 50%;
    float: right;
    text-align: right;
}

.custom-search input.form-control {
    background: #ffffff;
    border: 1.5px solid #e9e9e9;
    border-radius: 6px;
    font-size: 14px;
    border-right: none;
    height: 36px;
}

.custom-search input.form-control::placeholder {
    color: #858585;
}

.custom-search .btn {
    background: #ffffff;
    border: 1.5px solid #e9e9e9;
    border-radius: 6px;
    border-left: none;
    height: 40px;
    line-height: 25px;
}

.custom-search .ti-search {
    color: #c6c6c6;
}

.sa-button-container button.confirm.btn,
.sa-button-container .btn-primary:not(:disabled):not(.disabled):active {
    background: #1f459f;
    border: 1px solid #1f459f;
    padding: 12px 18px;
    font-size: 14px;
    box-shadow: none;
    outline: none;
}

.sa-button-container button.cancel.btn {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 12px 22px;
    box-shadow: none;
    outline: none;
}

.sweet-alert {
    z-index: 9999;
}

.sweet-alert .lead {
    font-size: 1.2rem;
}

.sweet-alert h2 {
    font-size: 1.7rem;
    margin-top: 30px;
}

.sweet-alert.showSweetAlert {
    outline: none;
}

.expandTable table.client-list.dataTable td {
    white-space: nowrap;
}

/* .expandTable table.dataTable td.details-control{
    padding-left: 28px !important;
} */
.expandTable table.dataTable>tbody>tr.child ul.dtr-details {
    background: linear-gradient(0deg, #fafcff, #fafcff), #fff;
    border: 1px solid #e5eef8;
    padding: 5px 10px;
    width: 100%;
}

table.dataTable>tbody>tr.child ul.dtr-details {
    display: flex !important;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.expandTable table.dataTable>tbody>tr.child ul.dtr-details>li {
    border-bottom: 1px solid transparent;
}

.expandTable span.dtr-data {
    white-space: break-spaces;
}

.expandTable table.dataTable>tbody>tr.child span.dtr-title {
    position: relative;
    color: #677a84;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    white-space: break-spaces;
}

.expandTable table.dataTable>tbody>tr.child ul.dtr-details>li {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
    word-break: break-word;
}


.expandTable table.dataTable>tbody>tr.child ul.dtr-details>li {
    border-bottom: 1px solid transparent;
}


.dtPart i.fa.fa-paper-plane {
    color: #02080d;
    font-size: 12px;
    margin-left: 5px;
}

.val-imp {
    position: relative;
    font-size: 6px;
    color: #ef1627;
    top: -5px;
    left: -2px;
}

.csSelect2 .val-imp {
    top: 3px;
}

.contentRight h5 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: #545871;
}

.themeFileInput .custom-file-label,
.borderColor-eaebef,
.themeEditor .fr-box.fr-basic .fr-wrapper,
.themeEditor .fr-toolbar.fr-bottom {
    border-color: #eaebef;
}

.themeEditor .fr-box.fr-basic.fr-bottom .fr-wrapper,
.themeEditor .fr-toolbar.fr-bottom {
    border-radius: 3px;
}

.themeFileInput .custom-file-input:focus~.custom-file-label {
    border-color: #f7ebeb;
    box-shadow: none;
}

.themeFileInput .custom-file-label::after,
.themeFileInput .custom-file-input:lang(en)~.custom-file-label::after {
    display: none;
}

.themeFileInput .input-group-text,
.themeInputGroup .input-group-text {
    background-color: transparent;
    border-color: #eaebef;
}

.themeInputGroup.form-wrap .floating .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.bgEAEBEF-200-100 {
    background-color: #eaebef;
    width: 200px;
    height: 100px;
}

.bgEAEBEF-200-150 {
    background-color: #eaebef;
    width: 200px;
    height: 150px;
}

.objectRes {
    object-fit: cover;
    object-position: center;
}

.msSelect label {
    color: #878a9c;
    width: 87%;
    background: #fff;
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    transition: all 0.2s ease 0s;
    pointer-events: none;
}

.msSelect label.selected {
    width: 87%;
    top: 1px;
    font-size: 12px;
    transform: translateY(0);
    background: #fff;
    padding: 0px 5px;
    left: 20px;
}

.msSelect .select2-container--default .select2-selection--multiple {
    color: #02080d;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    border: 1px solid #eaebef;
    box-sizing: border-box;
    border-radius: 2px;
    outline: none;
    height: 45px !important;
}

.msSelect .select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: #02080d;
    font-weight: 500;
    display: flex;
    gap: 3px;
    justify-content: space-evenly;
    font-size: 11px;
    background: #eaeef6;
    border: 1px solid #eaeef6;
    border-radius: 4px;
    padding: 2px 6px;
    margin-top: 13px;
}

.msSelect .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 7px 10px;
    height: 45px !important;
    overflow-y: auto;
}

.msSelect .select2-container .select2-search--inline .select2-search__field {
    padding-top: 6px;
    font-size: 14px;
}

.msSelect .select2-container {
    width: 100% !important;
}

.msSelect {
    position: relative;
}

.msSelect span.error,
.msSelect span.invalid {
    position: absolute;
    bottom: 0px;
}

.msSelect span.error,
.msSelect span.invalid {
    position: absolute;
    bottom: 0px;
}

.hgt80Error.msSelect span.error,
.msSelect span.invalid {
    bottom: -23px;
}

.hgt80Error .select2-container .select2-search--inline .select2-search__field {
    margin-top: 15px;
}

.radAlert span.invalid {
    display: block;
    width: 100%;
    padding-left: 20px;
}

.cmBg {
    /* background: linear-gradient(180deg, rgba(22, 134, 209, 0.5) 0%, #1686D1 100%); */
    background-color: #5dade2;
}

/* .delete-data-icon {
    background-color: #e82030;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: #fff;
    border-radius: 3px;
}

.delete-data-icon:hover {
    background-color: #b84c44;
    color: #ffffff;
    text-decoration: none !important;
} */

.edBg {
    background: linear-gradient(180deg,
            rgba(255, 182, 30, 0.5) 0%,
            #ffb61e 100%);
}

.actbtns {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: #fff;
    border-radius: 3px;
}

a.actbtns:hover {
    color: #fff;
    text-decoration: none;
    background: #3c4e79;
}

.bgGray {
    background: #e7e7e7 !important;
}

.bgGray2 {
    background: #f8f8f8 !important;
}

.bgGray3 {
    background: #edeff3 !important;
}

.bgGreen {
    background-color: #2ba144 !important;
    /* margin-left: 20px; */
}

.bgBlue {
    /* background-color: #165fa8 !important; */
    background-color: #5dade2;
    /* margin-left: 20px; */
}

.bgRed {
    background-color: #e82030 !important;
    /* margin-left: 20px; */
}

.w-85px {
    width: 85px;
}



.grayLabel {
    background: #ebebeb;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
}

.nowrap {
    white-space: nowrap !important;
}

/* .expandTable table.client-list.dataTable th.sorting_disabled {
    padding-left: 30px !important;
} */
.logo {
    border-bottom: 1px solid #ebedf1;
}

.logo img {
    height: clamp(46px, 3.5vw, 50px);
}

.mtFiles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #eaebef;
    padding: 10px;
}

.mtFiles .btn-file {
    border: 1px dashed #dbdce1;
}

.btn-file {
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #363636;
    font-weight: 500;
}

.filesmulty {
    list-style: none;
    margin-bottom: 0px;
    width: 100%;
    padding-left: 0px;
}

.mtFiles h6 {
    color: #363636;
    font-size: 14px;
    font-weight: 500;
}

.mtFiles .fas.fa-cloud-upload-alt {
    color: #959597;
    font-size: 16px;
}

.btn-file input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    color: #363636;
    font-size: 14px;
    font-weight: 500;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

.filesmulty li {
    font-size: 12px;
    padding-top: 5px;
}

/* .mulmail-attach.mtFiles {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 10px;
} */

.mulmail-attach .filesmulty {
    display: flex;
    flex-wrap: wrap;
}

.mulmail-attach .filesmulty li {
    color: #ababab;
    padding: 2px 5px;
    margin-right: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    margin-bottom: 5px;
    background-color: #e9ecef;
}

.fileDesign {
    display: flex;
    align-items: center;
    background: #e9ecef;
    border: 1px solid #dfdfdf;
    width: 31.7%;
    padding: 6px 10px;
    border-radius: 3px;
}

.fs-14-e82030 {
    color: #5dade2;
    font-size: 14px;
}

.h-44px {
    height: 44px !important;
}

.w-40px {
    width: 40px !important;
}

.boxAdvanceSearch .h-100 {
    height: calc(100% - 65px) !important;
}

.deskCustom .custom-file-label {
    height: 44px !important;
}

.matchComponent .custom-file-label,
.matchComponent .input-group-text {
    border-radius: 2px;
}

.matchComponent .custom-file-label {
    line-height: 30px;
}

.borderColor-eaebef,
.themeEditor .fr-box.fr-basic .fr-wrapper,
.themeEditor .fr-toolbar.fr-bottom,
.themeFileInput .custom-file-label {
    border-color: #eaebef;
    border-radius: 3px;
}

.inputSO input {
    width: 60px;
    border-radius: 2px;
    border: 1px solid #eaebef;
    color: #02080d;
    font-size: 14px;
    padding: 4px 8px;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.inputSO .input-group-text {
    font-size: 12px;
    color: #02080d;
    cursor: pointer;
    border-radius: 2px;
    border: 0;
    background-color: #eaebef;
    padding: 4px 8px;
}

.decoration-none {
    text-decoration: none !important;
}

.decoration-none:hover {
    text-decoration: none !important;
}

.fs-14-02080D {
    color: #02080d;
    font-size: 14px;
}

.file-management .single-delete:hover {
    color: #e82030;
}

.modal-header {
    padding: 15px 22px;
    border-bottom: 1px solid #f7ebeb;
    /* background: #363636; */
    background: #2E90FA;
    border-radius: 0.2rem;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.modal-header .close {
    margin: 0;
    color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 0px !important;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    transition: all 0.3s ease;
    outline: none !important;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    border: 0 none !important;
}

.modal-content .clp-dt-footer {
    display: none !important;
}


.modal-header .close:hover {
    opacity: 0.5;
}

.modal-header .close span {
    position: relative;
    top: -1px;
}

.modal-title {
    font-size: 21px;
}

.btnWhite {
    padding: 10px 40px;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #efefef;
}

.boxAdvanceSearch {
    position: fixed;
    width: 33.333%;
    top: 65px;
    background-color: #fff;
    z-index: 9;
    height: 100%;
    right: -33.333%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #eaebef;
    box-sizing: border-box;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.04);
}

.boxAdvanceSearch.boxASVisible {
    right: 0;
}

.boxAdvanceSearch .h-100 {
    height: calc(100% - 65px) !important;
}

.boxAdvanceSearch.deskCustom {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    border: none;
    box-sizing: border-box;
    box-shadow: none;
    z-index: 2;
    margin-left: 0px !important;
    overflow: hidden;
}

.deskCustom .custom-file-label {
    height: 44px !important;
}

.deskCustom .has-float-label .form-control:placeholder-shown:not(:focus)+.invalid {
    bottom: 0;
}

.deskCustom .has-float-label input.form-control+.invalid,
.deskCustom .has-float-label input.form-control+.error {
    bottom: 0;
}

.addMob2 {
    background: #e82030;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px 3px;
    line-height: 18px;
    border-radius: 2px;
}

.expandTable table.dataTable td.pl-35 {
    padding-left: 35px !important;
}

.advFilter a,
.clearFilter {
    color: #677a84;
    font-size: 14px;
    padding: 0 5px;
    text-decoration: underline;
}

.filterTitle {
    background: linear-gradient(0deg, #edeff3, #edeff3), #ffeeee;
    /*  background: linear-gradient(0deg,#dbe6fd, #e9e9e9), #FFEEEE; */
    box-shadow: 0px 2px 2px rgb(41 94 109 / 12%);
    border-radius: 2px;
}

.filterTitle h4 {
    /* color: #E82030; */
    color: #21618c;
    font-size: 18px;
    font-weight: 500;
}

.addLot {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    /* border: 1px solid #E82030; */
    border: 1px solid #1f459f;
    box-sizing: border-box;
    padding: 3px 10px;
    /* background: #E82030; */
    background-color: #21618c;
    border-radius: 3px;
}

.cursor-pointer {
    cursor: pointer;
}

.listOnly .expandTable .table.dataTable td.lotTd {
    min-width: 100px;
    height: 40px;
}

.lotTd {
    display: flex;
    align-items: center;
}

.lotTd a {
    display: flex;
    color: #02080d;
    margin-right: 10px;
    font-weight: 500;
}

.lotTd .fa-angle-right {
    position: relative;
    top: 2px;
    color: #e82030;
    font-size: 16px;
}

.lotTd a:hover {
    color: #1a73bd;
    text-decoration: none;
}

.tblInput {
    background: #fff;
    border: 1px solid #f7ebeb;
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 12px;
    color: #02080d;
    font-weight: 600;
    display: inline-block;
    padding: 10px 5px;
    min-width: 50px;
}

.wcus-tbl {
    width: 100px !important;
}

.expandTable .collapsedData {
    display: inline-block;
}

.dtSelect2 {
    color: #02080d;
    font-size: 13px;
    width: 91px;
    padding: 5px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #f7ebeb;
    box-sizing: border-box;
    border-radius: 8px;
    height: 42px;
}

.expandTable .dtSelect2 {
    width: auto;
    height: 34px;
}

.input-group.inputSelect {
    width: 100%;
}

.inputSelect .input-group-prepend {
    width: 200px;
    border-right: none;
}

.inputSelect .form-control {
    font-size: 16px;
    font-weight: 600;
    height: 44px;
    color: #02080d;
    border: 1px solid #eaebef;
    background-color: #fff;
    border-radius: 2px;
}

.input-group.inputSelect>.custom-select {
    font-size: 14px;
    font-weight: 400;
    height: 44px;
    color: #8f9192;
    border: 1px solid #eaebef;
    background-color: #fff;
    border-radius: 2px;
    border-left: 1px solid #fff;
}

.filterBottom {
    position: relative;
    top: -44px;
    height: 0px;
    left: 6px;
}

.z-indx9 {
    z-index: 9 !important;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #eee !important;
    height: 44px;
    border-radius: 2px;
}

.custom-select:disabled {
    background-color: #eee !important;
}

.custom-checkbox .custom-control-label:before {
    border-radius: 2px !important;
}

.linkBlue {
    color: #1771d1;
}

.linkBlue:hover {
    text-decoration: none;
}

.linkBox {
    color: #ffffff;
    background: #5699e1;
    padding: 2px 5px;
    border-radius: 3px;
}

a.linkBox:hover {
    color: #ffffff;
    background: #3e85d1;
    text-decoration: none;
}

.titleFilter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bgTrans {
    background: transparent !important;
}

.deskMargin {
    margin-left: 6px;
}

.lotFields li {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    /* color: #e82030; */
    color: #5dade2;
    list-style: none;
    border-right: 1px solid #ddbdc7;
}

.tabPart .nav.nav-pills {
    /* background: #363636; */
    background-color: #5dade2;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eaebef;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.06);
}

.tabPart .nav-pills .nav-link,
.tabPart .nav-pills .show>.nav-link {
    background-color: transparent;
    outline: none;
    cursor: pointer;
    color: #edf5f7;
    color: #5dade2;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin: 12px 18px 0px;
    padding-bottom: 8px;
}

.tabPart .nav-pills .nav-link.active,
.tabPart .nav-pills .show>.nav-link {
    /* border-bottom: 3px solid #e82030; */
    border-bottom: 3px solid #000000;
    color: #edf5f7;
    color: #5dade2;
}

.contentRow .navbar {
    width: 25%;
    background: #ffffff;
    box-shadow: 0px 1px 1px 2px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
    z-index: 2 !important;
    top: 25px;
    padding: 25px 30px;
    border-right: 1px solid #e5e5e5;
}

.mdTitle3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #02080d;
    position: relative;
}

.fs-13 {
    font-size: 13px !important;
}

.color878a9c {
    color: #878a9c !important;
}

.datepicker td,
.datepicker th {
    font-size: 14px;
    padding: 5px;
}

.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom,
.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-top {
    padding: 4px;
    z-index: 1055 !important;
}

.sweet-alert+.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-top,
.sweet-alert+.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom {
    z-index: 999 !important;
}

.input-group.acDate>.form-control {
    font-size: 14px;
    height: 44px;
}

.acDate .date-float.error {
    border: 1px solid #efa3a3 !important;
}

.has-float-label .input-group.acDate>.form-control.invalid {
    border: 1px solid #efa3a3;
}

.has-float-label .input-group.acDate+.invalid {
    opacity: 1 !important;
    position: absolute;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    top: auto;
    left: 5px;
    bottom: auto;
    padding: 6px 10px;
    color: #ed4545;
    text-align: left;
    z-index: 0;
}

.acDate span.ti-calendar {
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 0 3px 3px 0px;
}

.datepicker table tr td.active.active {
    background-color: #5dade2 !important;
    background-image: none !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
    background-color: #e43d32;
    background-image: -moz-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: -ms-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: -webkit-gradient(linear,
            0 0,
            0 100%,
            from(#e43d32),
            to(#f35449));
    background-image: -webkit-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: -o-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: linear-gradient(to bottom, #e43d32, #e43d32);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e43d32', endColorstr='#0044cc', GradientType=0);
    border-color: #e43d32 #e43d32 #ca2015;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
}

.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover {
    background-color: #363636;
    background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: -webkit-gradient(linear,
            0 0,
            0 100%,
            from(#363636),
            to(#363636));
    background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: linear-gradient(to bottom, #363636, #363636);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
    border-color: #363636 #363636 #363636;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover {
    background-color: #e43d32;
    background-image: -moz-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: -ms-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: -webkit-gradient(linear,
            0 0,
            0 100%,
            from(#e43d32),
            to(#e43d32));
    background-image: -webkit-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: -o-linear-gradient(to bottom, #e43d32, #e43d32);
    background-image: linear-gradient(to bottom, #e43d32, #e43d32);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e43d32', endColorstr='#0044cc', GradientType=0);
    border-color: #e43d32 #e43d32 #e43d32;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
}

.w-125p {
    width: 125px;
}

.w-200 {
    width: 200px !important;
}

.h-0 {
    height: 0 !important;
}

.borderleftLine {
    border-left: 3px solid #08a1dd;
}

.borderLine {
    background: #eaebef;
    height: 1px;
    width: 100%;
    margin-top: 10px;
    margin-left: 5px;
}

.linkText {
    font-weight: 500;
    color: #02080d;
    cursor: pointer;
    font-size: 13px;
    padding-top: 4px;
}

.inputdd .custom-select {
    width: auto;
    height: 44px !important;
    border: 1px solid #eaebef !important;
    border-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    outline: none;
}

.has-float-label.acDate span.ti-angle-down {
    border: none;
    padding: 14px 12px;
    font-size: 12px;
    font-weight: 600;
}

.aliment-issue {
    padding-right: 22px;
}

.has-float-label.input-group.acDate .input-group-append.borderLeft {
    border-left: 1px solid transparent !important;
}

.has-float-label.input-group.acDate .input-group-append {
    border: 1px solid #eaebef;
    height: 44px;
}

.has-float-label.input-group.acDate>.form-control.borderRight {
    border-right: 1px solid transparent !important;
}

.has-float-label.input-group.acDate>.form-control {
    color: #02080d;
    font-size: 15px;
    padding-top: 22px;
    font-weight: 600;
    border: none;
    border-right: 1px solid #e0e0e0;
    border: 1px solid #eaebef;
    border-radius: 0;
}

.checkAddon {
    border: 1px solid #eaebef;
    border-left: 0px;
    border-right: 0px;
    height: 44px;
    padding: 7px 15px;
    border-right: 1px solid #eaebef;
}

.fileAddon .custom-file-label {
    height: 44px;
    padding: 14px 8px 5px 1px;
    border-left: 0px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #8f9192;
}

.themeFileInput.fileAddon .input-group-text {
    height: 44px;
    border-right: 0px;
    margin-left: -2px;
}

.cursorNot {
    cursor: not-allowed;
}

.overflowHidden {
    overflow: hidden;
}

.mFileupload {
    width: 100%;
    margin-top: -5px;
}

.mFileupload .fileinput-button {
    position: relative;
    overflow: hidden;
    height: 44px;
    width: 100%;
    padding: 13px 15px;
    border-left: 0px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #8f9192;
    border: 1px solid #eaebef;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.mFileupload .fileinput-button input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    direction: ltr;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.mFileupload .thumb {
    display: none;
    height: 80px;
    width: 100px;
    border: 1px solid #000;
}

.mFileupload ul.thumb-Images li {
    width: 96%;
    float: left;
    vertical-align: top;
    height: auto;
    display: flex;
    position: relative;
    margin-bottom: 5px;
}

.mFileupload .thumb-Images {
    width: 100%;
    padding-left: 20px;
}

.mFileupload .img-wrap {
    position: relative;
    display: inline-block;
    font-size: 0;
}

.mFileupload .img-wrap .close {
    position: absolute;
    top: 0px;
    right: 2px;
    z-index: 100;
    background-color: #d0e5f5;
    padding: 5px 2px 2px;
    color: #000;
    font-weight: bolder;
    cursor: pointer;
    opacity: 0.5;
    font-size: 17px;
    line-height: 10px;
    border-radius: 50%;
}

.mFileupload .img-wrap:hover .close {
    opacity: 1;
}

.mFileupload .FileNameCaptionStyle {
    font-size: 11px;
    color: #02080d;
}

.mFileupload output {
    display: flex;
    position: relative;
    left: 0;
    top: 5px;
    width: 100%;
}

.tskInfo {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ededed;
}

.tskRow label {
    color: #363636;
    font-size: 12px;
}

.tskRow {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.lbtitle {
    width: 22%;
    position: relative;
}

.tlColon {
    position: absolute;
    right: 5px;
    font-weight: 600;
}

.lbvalue {
    width: 77%;
}

.tskThumb {
    width: 33.3%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 4px;
}

.tskThumb img {
    width: 100%;
    height: 70px;
    top: 0;
    left: auto;
    right: auto;
    display: block;
    position: relative;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.gutter-space {
    margin-left: -8px;
    margin-right: -8px;
}

.sidepanelHgtdesk {
    height: calc(100vh - 120px);
}

.repDat {
    color: #898989;
    font-size: 12px;
}

.repDesc {
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

.repSub {
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    background: #dde7ff85;
}

.repFiles .tskThumb {
    width: 33.3%;
    height: 88px;
}

.tskReply {
    width: 90%;
    margin-left: auto;
    margin-bottom: 20px;
}

.tskSend {
    width: 90%;
}

.sendSub {
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0px 0px 10px 3px #e1e1e1;
}

.bgDisabled {
    background: #eeeeee !important;
}

.infoContent {
    background: url(../img/profile-bg.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    background-size: cover;
}

.profImage {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 60%;
}

.profImage img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

.proOnly .formCard-top .labelValue {
    width: 70%;
}

.borderLeft {
    border-left: 1px solid #edeff3;
}

.mdTitle {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    color: #02080d;
}

.lgTitle {
    font-weight: 600;
    font-size: 20px;
    color: #02080d;
}

.formCard {
    border: 1px solid #edeff3;
}

.formLabel3 {
    color: #888888;
    font-size: 14px;
}

.labelValue {
    font-size: 14px;
    color: #363636;
    font-weight: 600;
}

.formCard-top .formLabel3 {
    width: 25%;
}

.formCard-top .labelValue {
    width: 25%;
}

.formlabelLeft,
.formlabelRight {
    width: 50%;
}

.prfRound {
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.objectRes {
    cursor: pointer;
}

.objectRes {
    object-fit: cover;
    object-position: center;
}

.h-100 {
    height: 100% !important;
}

.themeFileInput .input-group-text,
.themeInputGroup .input-group-text {
    background-color: transparent;
    border-color: #eaebef;
}

.fileNext .input-group-text {
    background-color: #fff !important;
}

.fileNext .custom-file-input {
    cursor: pointer;
}

.fileRemove {
    color: #dd0c06;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 10px;
    cursor: pointer;
}

.fileRemove2 {
    color: #dd0c06;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 10px;
    cursor: pointer;
}

.objectRes.logoUp {
    object-position: left;
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 50px auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: "FontAwesome";
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #f8f8f8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* UI isssue */
.toolButtons {
    align-items: center;
}

.search-box-hidden div.dataTables_wrapper div.dataTables_filter input {
    display: none !important;
}

.search-box-hidden div.dataTables_wrapper div.dataTables_filter label {
    display: none !important;
}

.dtPart div.dataTables_wrapper div.dataTables_length label {
    padding: 0px 10px !important;
}

.title-input {
    padding-left: 0px;
}

.title-input .form-control:placeholder-shown:not(:focus)+* {
    left: 17px !important;
}

.title-input label {
    left: 10px !important;
}

.deskCustom .title-input .form-control:placeholder-shown:not(:focus)+.invalid {
    left: -10px !important;
}

.community-select {
    padding-left: 0px !important;
    padding-right: 13px !important;
}

.container-input {
    margin-left: 0px;
}

.password-aliment-issue span.error {
    margin-top: 20px;
}

.old-toggle-password {
    position: absolute;
    right: 23px;
    bottom: 0px;
}

.new-toggle-password {
    position: absolute;
    right: 23px;
    bottom: 0px;
}

.conf-toggle-password {
    position: absolute;
    right: 23px;
    bottom: 0px;
}

table.dataTable thead .sorting:before {
    left: 5px !important;
}

table.dataTable thead .sorting_asc:before {
    left: 5px !important;
}

table.dataTable thead .sorting_desc:before {
    left: 5px !important;
}

.error-aliment input[type="checkbox"]+.invalid {
    position: absolute;
    bottom: 2px;
    white-space: nowrap;
    left: -126px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) {
    .title-input {
        padding-left: 15px !important;
    }

    .title-input .form-control:placeholder-shown:not(:focus)+* {
        left: 29px !important;
    }

    .title-input label {
        left: 23px !important;
    }

    .community-select {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .image-input {
        padding-right: 0px !important;
    }

    .delete-icon {
        bottom: 15px;
    }

    .title-input {
        padding-left: 0px !important;
    }

    .sort-input {
        padding-left: 0px !important;
    }

    .community-select {
        padding-left: 9px !important;
        padding-right: 8px !important;
    }

    .error-aliment {
        margin-top: 10px;
    }

    /* div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: -26px !important;
    } */

    .lot_pagination div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: unset !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 668px) {
    .password-aliment-issue span.error {
        display: inline-block;
        width: 100%;
        margin-left: 17px;
        margin-top: 0px;
    }

    .delete-icon {
        bottom: 15px;
    }

    .logo img {
        width: 150px !important;
    }

    .soures-ui-aliment {
        margin-top: 8px;
    }

    .error-aliment input[type="checkbox"]+.invalid {
        position: absolute;
        bottom: -20px;
        white-space: nowrap;
        left: 0;
    }

    .deskCustom .title-input .form-control:placeholder-shown:not(:focus)+.invalid {
        left: 5px !important;
    }

    .error-aliment {
        margin-top: 10px;
    }

    .radio-btn-aliment ul li {
        width: 50%;
    }

    .table-resp {
        overflow: scroll;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
    .community-select {
        padding-left: 0px !important;
    }
}

@media only screen and (max-width: 320px) {
    .logo img {
        width: 130px !important;
    }
}

/* DASHBOARD PAGE */

.h-35 {
    height: 35px;
}

.bg-skynew {
    background-color: #5dade2;
}

.bg-bluenew {
    background-color: #21618c;
}

.bg-yellownew {
    background-color: #f8ae0b;
}

.bg-orangenew {
    background-color: #f56200;
}

.bg-blacknew {
    background-color: #2c3436;
}

.icons-alignment {
    display: flex;
    justify-content: start;
    align-items: center;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (min-width: 320px) and (max-width: 440px) and (-webkit-min-device-pixel-ratio: 1) {
    .dashboard-content {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (min-width: 441px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
    .dashboard-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .dashboard-content-left {
        width: 75%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .dashboard-content {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .dashboard-content-left {
        width: 80%;
    }

    .dashboard-quick-links {
        width: 20%;
    }
}

@media (min-width: 768px) {
    .dashboard-quick-links {
        width: 20%;
    }
}

@media (min-width: 1025px) {
    .dashboard-content-left {
        width: 80%;
    }
}

.dashboard-quick-links {
    background-color: #f9f9fb;
    overflow: auto !important;
    left: auto;
    right: 0;
    min-width: 210px;
    position: fixed;
    top: 65px;
    bottom: 0;
    z-index: 15;
    background-color: transparent;
    border-right: 1px solid #eaebef;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.dashboard-quick-links .quick_link {
    padding: 15px 15px;
}

.dashboard-quick-links .quick_link a {
    color: #363636;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    line-height: normal;
    letter-spacing: normal;
}

.dashboard-quick-links .quick_link a:hover {
    text-decoration: unset;
    color: #165fa8 !important;
    transition: all 0.3s;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    grid-gap: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.quick-links-grid div {
    background-color: #f4f4f4;
    border-radius: 6px;
    border: 1px solid #e9e9e9;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.quick-links-grid div a.dashboard-nav-item {
    font-size: 12px;
    transition: all 0.3s ease-in;
    padding: 10px;
    height: 100%;
}

.quick-links-grid div a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #4c4c4c !important;
}

.quick-links-grid div:hover {
    transition: all 0.3s ease-in;
    background-color: #ffffff;
    color: #000000 !important;
    text-decoration: unset;
}

.quick-links-grid div:hover a {
    text-decoration: unset;
}

.dashboard-nav-item img {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .res-fullview {
        overflow-y: auto;
        overflow-x: auto;
    }

    .chart-wd800 {
        white-space: nowrap;
        width: 800px;
        overflow: hidden;
    }

    .pl_sm_0 {
        padding-left: 0;
        margin-left: 0px !important;
    }
}

.monthby-chart {
    overflow-x: auto !important;
}

.dashboard-toolbar a {
    color: #363636;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    line-height: normal;
    letter-spacing: normal;
}

@media (max-width: 767px) {
    .dashboard-quick-links {
        min-width: 0% !important;
        width: 0;
    }

    .dashboard-quick-links.mobile-show {
        min-width: 65% !important;
    }

    .dashboard-quick-links .quick_link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.res-fullview .chartOverlay+.hand-scroll {
    z-index: -1;
}

.hand-scroll {
    position: absolute;
    top: 48px;
    left: 40px;
}

.hand-scroll img {
    width: 50px;
    image-rendering: -webkit-optimize-contrast;
}

.carouselBenifts .carousel-item {
    padding: 10px 0px !important;
}

.carouselBenifts .carousel-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carouselBenifts .carousel-item img {
    object-fit: contain !important;
}

.carouselBenifts .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

.carousel-inner {
    background: #fff;
}

.carousel-control-next,
.carousel-control-prev {
    color: #ccc;
}

.ti-angle-left,
.ti-angle-right {
    background: #21618c;
    padding: 6px 0px;
    border-radius: 20px;
    text-align: center;
    width: 30px;
    height: 30px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 10%;
}

.carouselBenifts2 .carousel-item {
    padding: 10px 0px !important;
}

.carouselBenifts2 .carousel-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carouselBenifts2 .carousel-item img {
    object-fit: contain !important;
}

.carouselBenifts2 .carousel-inner {
    padding: 0 60px;
}

.carouselBenifts2 .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

.carousel-item .second-header {
    font-size: 17px !important;
    font-style: italic;
    line-height: 30px !important;
}

.carousel-item .paragraph {
    background: #5dade2;
    width: max-content;
    position: relative;
    padding: 5px 8px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

.carousel-inner {
    border-radius: 10px;
}

header.dashboard-toolbar {
    text-align: right;
    padding-right: 10px;
    padding-left: 10px;
}

@media (max-width: 767px) {
    .carouselBenifts2 {
        margin-bottom: 25px;
    }

    .mainWrapper {
        background-color: #ffffff00;
    }

    .carouselBenifts2 .carousel-inner {
        padding: 0 30px;
    }

    .carousel-item .second-header {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .carousel-item .paragraph {
        font-size: 14px !important;
    }

    .carousel-item h6 {
        margin-top: 1.5rem !important;
    }
}

@media (min-width: 441px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
    .carouselBenifts2 {
        margin-bottom: 25px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .carouselBenifts .carousel-item {
        height: 270px;
    }

    .carouselBenifts2 .carousel-item {
        height: 270px;
    }

    .carousel-item .second-header {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .carousel-item .paragraph {
        font-size: 14px !important;
    }

    .carouselBenifts2 .carousel-inner {
        padding: 0 40px;
    }

    .carousel-item h6 {
        margin-top: 1.5rem !important;
    }
}

/* DASHBOARD PAGE */

/* THEME BUG FIXES */


.fa,
.far,
.fas {
    font-size: clamp(11px, 0.9vw, 13px);
}

.fa-star {
    font-size: 5px !important;
}

.ml-minus10 {
    margin-left: -10px;
}

.fs-14-e82030.addFiles .fas {
    background: #5dade2;
    padding: 3.5px 4px;
    color: #fff !important;
    border-radius: 2px;
}

.chkLabel label {
    padding-top: 4px;
}

/* table nowrap */

.expandTable table.dataTable td {
    white-space: nowrap !important;
    max-width: 115px;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.expandTable table.dataTable td:nth-child(2) {
    overflow: unset !important;
}

.manage_master_data .expandTable table.dataTable .dataTables_empty {
    text-align: center !important;
}

.manage_master_data .expandTable table.dataTable td:last-child {
    overflow: unset !important;
    text-align: right;
}

.sel-wrap.cus-select .select2 .selection .select2-selection {
    border: 1px solid #f7ebeb;
    border-radius: 8px;
    height: 32px !important;
}

.sel-wrap.cus-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 22px;
}

.sel-wrap.cus-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 18px;
}

.close {
    text-shadow: none !important;
}

.custom-flex {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.gender_aliment input[type="radio"]+.invalid {
    bottom: -11px;
}

@media (min-width: 853px) {
    /* div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: -26px !important;
    } */

    .lot_pagination div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: unset !important;
    }
}

/* Qmi list page Ui-design */
.qmi_list_table .dataTables_length {
    width: auto !important;
}

.qmi_list_table table.table_overflow td:nth-child(2) {
    overflow: hidden !important;
}

.qmi_list_table table.table_overflow td:last-child {
    overflow: unset !important;
}

.checkbox_aliment {
    position: relative;
    bottom: 1.5px;
}

.qmi_list_table .customtool {
    width: auto !important;
    margin-bottom: 15px;
}

.action_btn_aliment {
    white-space: initial !important;
    display: flex;
}

.qmi_list_table table.table_overflow th:first-child {
    padding-right: 30px !important;
}

.checkbox_input_box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-blue-qmi {
    background-color: #6d86c1;
    color: #fff;
    align-items: center !important;
    display: flex !important;
    gap: 5px;
    justify-content: center !important;
}

.btn-red-qmi {
    background-color: #f06e78;
    color: #fff;
    align-items: center !important;
    display: flex !important;
    gap: 5px;
    justify-content: center !important;
}

.btn-skyblue-qmi {
    background-color: #67b0e1;
    color: #fff;
    align-items: center !important;
    display: flex !important;
    gap: 5px;
    justify-content: center !important;
}

.btn-green-qmi {
    background-color: #aed78a;
    color: #fff;
    align-items: center !important;
    display: flex !important;
    gap: 5px;
    justify-content: center !important;
}

.btn-blue-qmi:hover {
    border: 1px solid #6d86c1;
    color: #6d86c1;
    background-color: #fff;
}

.btn-red-qmi:hover {
    border: 1px solid #f06e78;
    color: #f06e78;
    background-color: #fff;
}

.btn-skyblue-qmi:hover {
    border: 1px solid #67b0e1;
    color: #67b0e1;
    background-color: #fff;
}

.btn-green-qmi:hover {
    border: 1px solid #aed78a;
    color: #aed78a;
    background-color: #fff;
}

.table_btns {
    padding: 0px 10px;
}

.btn_line_height {
    line-height: 1 !important;
}

/* Drapzone */
.images_uploaded {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.main-dropzone-box .multi_delete {
    visibility: hidden;
}

.main-dropzone-box:hover .multi_delete {
    visibility: visible;
}

.back_url .custom-control-input:checked~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='htt…38-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E") !important;
}

@media (max-width: 767px) {
    .qmi_list_table .dataTables_length {
        width: 100% !important;
    }

    .qmi_list_table .customtool {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .table_btns {
        gap: 5px;
        justify-content: center !important;
    }

    .iph5-hide {
        font-size: 10px !important;
    }

    /* Drapzone */
    .main-dropzone-box {
        flex-wrap: wrap;
    }

    .file_image_delete {
        width: 60% !important;
    }

    .file_text {
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        max-width: 115px !important;
    }

    .checkbox_input_box {
        gap: 5px;
    }
}

/* role and user css*/
.role_list_table .customtool {
    width: 80% !important;
}

.user_list_table .customtool {
    width: 100% !important;
}

.role_list_table .dataTables_length,
.user_list_table .dataTables_length {
    width: auto !important;
}

.modal_table table.dataTable th {
    padding: clamp(10px, 1.5vw, 15px) clamp(14px, 2vw, 20px) !important;
    vertical-align: middle !important;
    color: #4e5b62;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 8px;
    border: 0px;
    font-weight: 800;
    background: #e7e9ed;
}

.modal_table table.dataTable th:first-child {
    border-radius: 8px 0px 0px 8px;
}

.modal_table table.dataTable th:last-child {
    border-radius: 0px 8px 8px 0px;
}

.modal_table table.dataTable td {
    border: none;
    color: #02080d;
    font-size: 14px;
}

.modal_table .role_list_table .modal_table .modal_table {
    overflow: auto;
}

.modal_table input[type="checkbox"]:focus {}

.modal_table {
    max-height: calc(100vh - 190px);
    overflow: auto;
}

.h-40-btn {
    height: 40px !important;
}

.modal_table::-webkit-scrollbar,
.modal_table::-webkit-scrollbar {
    width: 6px;
}

.modal_table::-webkit-scrollbar-track {
    background: transparent;
}

.modal_table::-webkit-scrollbar-thumb {
    background-color: #b5b5b5;
    border-radius: 5px;
}

.gap-10 {
    gap: 10px;
}

.modal_table table.dataTable thead .sorting:before,
.modal_table table.dataTable thead .sorting_asc:before,
.modal_table table.dataTable thead .sorting:after,
.modal_table table.dataTable thead .sorting_asc:after {
    bottom: 12px !important;
}

.modal_table .role_add_table {
    overflow: auto !important;
}

.multi_select_roles {
    top: 26% !important;
}

.image-h-54 {
    height: 54px !important;
}

.export_dropdown {
    min-width: 7rem !important;
}

@media (max-width: 766px) {
    .user_list_table .dataTables_length {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .role_list_table .customtool {
        width: 100% !important;
    }

    .role_list_table .dataTables_length {
        width: 100% !important;
    }

    .px-sm-padding {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .user_list_table .customtool {
        width: 75% !important;
    }
}

@media (min-device-width: 1025px) {
    .user_list_table .customtool {
        width: 87% !important;
    }
}

.fr-quick-insert {
    display: none !important;
    /* Hide the Quick Insert dropdown */
}

/* bug Fixing */
.shorting_icon_alig.dataTable thead .sorting:before,
.shorting_icon_alig.dataTable thead .sorting:after {
    top: 12px !important;
}

.text_line_clamp_3 {
    word-break: break-word !important;
}

.modal {
    z-index: 1055;
}

.pagination_aligment,
.padding_aligment {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.add_btns_aligment {
    padding: 10px 30px !important;
}

.pagination_aligment .dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin-top: unset !important;
}

.btns_line_height {
    line-height: 16px !important;
}

.error_aligment .has-float-label .form-control:placeholder-shown:not(:focus)+.invalid,
.error_aligment .has-float-label input.form-control+.invalid {
    bottom: auto !important;
}

.cus_table_mob table.dataTable td {
    word-break: break-word !important;
    white-space: wrap !important;
}

@media only screen and (min-device-width: 360px) and (max-device-width: 824px) and (orientation: landscape) {
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center !important;
    }

    .lot_pagination div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: unset !important;
    }

    div.dataTables_wrapper div.dataTables_info {
        text-align: center !important;
    }
}

.form-wrap .has-float-label input.invalid,
.sel-wrap .select2-container.error .select2-selection,
.has-float-label input.invalid {
    border: 1px solid #eaebef !important;
}

@media (max-width: 1024px) {
    .client_list_table table.dataTable td:nth-child(2) .lot_details {
        word-wrap: break-word;
        display: block;
    }
}

#gender-error {
    position: absolute;
    bottom: -18px;
}

.lotList .expandTable table.dataTable td:nth-child(2) {
    overflow: hidden !important;
}

.lot_modal {
    margin-top: -20px !important;
}

@media (max-width: 768px) {
    input.wcus-tbl {
        width: 55px !important;
    }

    .lotFields {
        gap: 10px;
        margin-top: 10px !important;
    }
}

.single_file_delete {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    width: 22px;
    height: 22px;

}

.single_file_delete:hover {
    text-decoration: none !important;
}

.community_ckeckbox {
    margin-top: 15px !important;
}

.line_height_center {
    line-height: 18px;
}

#taskdate-error {
    padding-top: 1px;
}

@media (max-width: 1250px) {
    .lot_pagination .dt-bootstrap4 .row:nth-child(2) .col-sm-12 {
        overflow: auto;
    }
}

@media (max-width: 767px) {
    .date_text {
        width: 100%;
        text-align: right;
    }

    .date_text .pe-0 {
        width: 100%;
    }

    .dropzone .dz-preview.dz-error .dz-error-message {
        opacity: 1;
        pointer-events: auto;
    }
}

.clear_all_btn {
    background-color: #6c757d;
    color: #fff;
    align-items: center;
    display: flex;
    font-size: 14px;
    border-radius: 5px;
    padding: 10px;
    justify-content: center;
}

.clear_all_btn:hover {
    text-decoration: none;
    background-color: #5a6268;
    color: #fff;
}

.w-50 {
    width: 50px !important;
}

div.custable-mob .innerTable td:nth-child(2) {
    overflow: hidden !important;
}

@media only screen and (max-width: 320px) {
    .w-50 {
        width: 80px !important;
    }
}

.modal-dialog-center_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
    transform: translate(-50%, -50%) !important;
}

.tab_tables_list .expandTable table.dataTable td:nth-child(2) {
    overflow: hidden !important;
}

.construct_contentPanel {
    flex-wrap: wrap;
}

.line_height_0 {
    line-height: 0px !important;
}

.select_box_cont .select2-container--default {
    width: fit-content !important;
}

.select_box_cont .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 27px !important;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: unset !important;
    }
}

@media (min-width: 1200px) {
    .mx_mb-3 {
        margin-top: 6px;
        margin-bottom: 6px;
    }
}

.cuty-code_box {
    display: flex;
}

.cuty-code_box .input_box .select2-container--default .select2-selection--single {
    height: 44px;
    display: flex;
    align-items: center;
    color: #02080d;
    font-size: 12px;
    border: 1px solid #eaebef !important;
    padding-left: 12px;
    padding-right: 20px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    width: 80px;
    justify-content: center;
}

.cuty-code_box .input_box .select2-container .select2-selection--single .select2-selection__rendered {
    max-width: 85px;
    padding-right: 0px;
    padding-left: 0
}

.cuty-code_box .has-float-label .form-control {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
}

.cuty-code_box .input-group label {
    z-index: 9;
}

.cuty-code_box .input_box .select2-selection__arrow {
    top: 8px;
    right: 8px;
}

.cuty-code_box .mob_num {
    left: 100px !important;
}

/*selection box hidden when SweetAlert2 modal is open*/
body.swal2-shown span.selection {
    display: none !important;
}

.arches-red {
    width: 100% !important;
    padding: 20px !important;
    line-height: normal !important;
    background-color: #c21e39 !important;
    border: 1px solid #c21e39 !important;
    border-radius: 8px !important;
    color: #fff !important;
}

.arches-red:hover {
    color: #c21e39 !important;
    background-color: #fff !important;
    border-color: #c21e39 !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-md) !important;
}

.img-rotate {
    transform: rotate(180deg);
}

img.sent-icon {
    height: clamp(14px, 2vw, 17px) !important;
    width: clamp(14px, 2vw, 17px) !important;
}

img.close-icon {
    height: clamp(10px, 2vw, 13px) !important;
    width: clamp(10px, 2vw, 13px) !important;
}


/*select2 only  Create Account page css code start*/
.premium-right .select2 {
    padding: 0px !important;
}

/*select2 only  Create Account page css code end*/

div input,
div .select2,
div textarea {
    border: 2px solid #e7e9ed !important;
    outline: none !important;
    background: #FFF;
}

/*select2 css code start*/
.select2 {
    padding: 14px 18px !important;
    border: 0 none !important;
    color: #8c92a0 !important;
    background-color: #fff;
    border: 1px solid #E2E4E9;
    border-radius: 8px;
    height: 46px;
    align-items: center;
    display: flex !important;
}

.select2-container--default .select2-selection--single {
    border: 0 none !important;
    border-radius: 0px !important;
    padding: 0px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0px !important;

}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: clamp(12px, 1vw, 14px);
    position: relative;
    top: 1px;
}

.select2-container--open .select2-selection__arrow::after {
    content: "\f286";
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 14px !important;
    top: 0px !important;
    height: 100% !important;
    justify-content: center;
    align-items: center;
    display: flex;
    right: 17px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #c21e39;
    color: #FFF;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2E90FA !important;
    color: #FFF;
}

.select2-container--default .select2-results__option--selected {
    background-color: #2E90FA !important;
    color: #FFF;
}



.cm-page .select2-container .select2-selection--multiple {
    border: 0 none !important;
    padding: 0px !important;
}

.cm-page .select2-container .select2-selection--multiple textarea {
    margin: 0px !important;
}

.cm-page .select2-container.select2-container--open {
    border-color: #2E90FA !important;
}

@media (max-width: 767px) {
    body.menu-collapsed .ivoryContent {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .cm-card {
        padding: 20px 20px !important;
    }
}

.mainWrapper.bg-white.profile-blade {
    padding: 0px !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #bdbdbd;
    /* border color */
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background: #dae8ff !important;
    border-color: #dae8ff !important;
}

input[type="checkbox"]:checked::after {
    content: "\F26E";
    font-family: "bootstrap-icons";
    color: #0d6efd;
    font-size: 15px;
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    margin: auto;
    vertical-align: middle;
    right: 0;
    justify-content: center;
    align-items: center;
    display: flex;
}


.max-content {
    width: max-content !important;
}

.cm-page #homeDesigns+.select2-container,
.cm-page #nearbyCommunities+.select2-container {
    height: auto !important;
}


.table-check-box,
.custom-checkbox {
    display: flex !important;
    align-items: center !important;
}

@media (max-width: 991px) {
    .filt-btn-wrap-cont-1 {
        display: flex !important;
        flex-flow: wrap;
    }

    .filt-order-2 {
        order: 1;
        justify-content: end !important;
    }

    .filt-order-1 {
        order: 2;
    }
}

@media (max-width:520px) {
    .pagination-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px !important;
    }
}

@media (min-width:1024px) {

    .home-design-list-page .select2-container,
    .model-home-list-page .select2-container {
        min-width: 200px !important;
    }
}

.selection {
    width: 100%;
}

.swal2-container .select2 {
    display: none !important;
}

.confirm-btn {
    background-color: #0d6efd !important;
}

.cancel-btn {
    background-color: #282828 !important;
}

.heading-part {
    background-color: #e7e9ed;
}

.qmi-header,
.footer-sec {
    height: var(--logo-height);
}

.cm-card-title {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 1;
}

.cm-card-title img {
    width: 24px;
    height: 24px;
}

label {
    font-size: clamp(13px, 1.2vw, 15px) !important;
    font-weight: 600;
    color: #1a1d1f;
}

#ImageProAdd {
    width: 80px !important;
    height: 80px !important;
}

.heading-bg {
    background: #e7e9ed;
}

.phone-input-group .select2 {
    width: 100px !important;
    border-radius: 0px !important;
    border: 0 none !important;
}

.phone-input-group input {
    border-radius: 0px !important;
    border: 0 none !important;
}

.phone-input-group {
    border: 2px solid #e7e9ed !important;
    outline: none !important;
}

.phone-input-group input {
    padding-left: 0px !important;
}

textarea.cm-input {
    min-height: clamp(68px, 5vw, 75px) !important;
}

/*form-user-role-new*/
#form-user-role-new input::placeholder,
#form-user-role-update input::placeholder {
    color: #a1a1aa !important;
    font-size: clamp(13px, 1.2vw, 15px) !important;
}

#form-user-role-new input::-webkit-input-placeholder,
#form-user-role-update::-webkit-input-placeholder {
    /* Chrome, Safari */
    color: #a1a1aa !important;
    font-size: clamp(13px, 1.2vw, 15px) !important;
}

#form-user-role-new input:-ms-input-placeholder,
#form-user-role-update input:-ms-input-placeholder {
    /* IE */
    color: #a1a1aa !important;
    font-size: clamp(13px, 1.2vw, 15px) !important;
}

#form-user-role-new input::-ms-input-placeholder,
#form-user-role-update input:-ms-input-placeholder {
    /* Edge (old) */
    color: #a1a1aa !important;
    font-size: clamp(13px, 1.2vw, 15px) !important;
}

#form-user-role-new .custom-search input,
#form-user-role-update .custom-search input {
    height: clamp(44px, 4vw, 50px) !important;
    padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 18px) !important;
}