:root {
    --font-family: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;

    --font-size-h1: 18px;
    --font-size-h2: 14px;

    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-32: 32px;

    /* Primary Colors */
    --primary-1: #DD6E42;
    --primary-2: #1D3EB2;
    --primary-3: #D50EBD;
    --primary-4: #010E39;

    /* Secondary Colors */
    --secondary-1: #DD6E421F;
    --secondary-2: #008926;
    --secondary-3: #FD0000;
    --secondary-4: #D9D9D9;

    --default-white: #ffffff;
    --default-black: #000000;
    --background: #f2f2f2
}

h1 {
    font-family: var(--font-family);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    margin: 0;
}

h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-regular);
    line-height: 1.4;
    margin: 0;
}

/* Font weight utility classes */
.font-light {
    font-weight: var(--font-weight-light);
}

.font-regular {
    font-weight: var(--font-weight-regular);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

.page-header.report-header .box-layout.report-box-layout {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.report-date-time form .input-group input {
    min-width: none;
    width: 120px;
}

.report-date-time {
    display: flex !important;
    align-items: center;
}

.report-bar-title {
    color: var(--primary-4);
}

.report-graph-name {
    padding-left: 2rem !important;
    padding-top: 1rem !important;
}

.report-header {
    padding-top: 35px;
}

.report-filter,
.report-header {
    border: 0px transparent !important;
    box-shadow: none !important;
}

.report-header,
h3.report-title,
.report-status h4 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.report-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
}

.report-status span.label-success {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    background-color: var(--secondary-2);
    padding: 0.1em 0.9em !important;
    box-shadow: 0px 0px 4px 0px #00000040;
    text-transform: capitalize;
    border-radius: 4px;
}

.report-dynamic-filter label.control-label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-4);
}

.report-dynamic-filter ul.chosen-choices {
    background-color: #ffffff;
    padding: 1px !important;
}

.report-dynamic-filter ul.chosen-choices li.search-choice {
    margin-top: 5px !important;
}

.report-dynamic-filter ul.chosen-choices li.search-field input {
    width: 341px !important;
}

.chosen-drop ul.chosen-results {
    scrollbar-width: thin;
}

.chosen-container-multi ul.chosen-choices li.search-choice {
    margin: 3px !important;
}

.input-group-btn {
    width: auto !important;
}

.input-group-btn button {
    background: #dd6e42 !important;
    color: #ffff !important;
    border-radius: 4px !important;
}

.form-label label {
    margin-bottom: 0px !important;
}

.report-date-time {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row !important;
    gap: 4px;
}

.chosen-container .chosen-single {
    background-color: #ffff !important;
}

.btn {
    height: var(--spacing-08) !important;
    line-height: var(--spacing-08) !important;
}

.report-date-time a.report-quick-filter {
    height: 40px;
    background: var(--primary-1);
    color: var(--default-white);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family);
    border-radius: 4px;
}

.report-date-time a.report-quick-filter:hover {
    color: var(--default-white) !important;
}

/* Date Filter */
.report-date-time form .input-group {
    border: 1px solid var(--secondary-4);
    border-radius: 4px;
    padding: 0.05rem;
    display: flex;
    align-items: center;
    background: var(--default-white);
}

.report-date-time form .input-group input {
    border: 0px transparent !important;
    box-shadow: unset;
}

.report-date-time form .input-group input.form-control {
    color: var(--primary-4) !important;
}

.report-date-time form .input-group span.input-group-addon {
    border: 0px transparent;
    background: var(--default-white);
}

.search-field {
    position: relative;
}

.chosen-search-input {
    width: calc(100% - 30px);
    padding-right: 30px;
}

.search-field::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    /* right: 10px; */
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path d="M1.28338 1.93756L5.7264 6.41088L10.1997 1.96786" stroke="%23DD6E42" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    /* Down arrow */
}

.input-group input#daterange_date_from::after,
.input-group input#daterange_date_to::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path d="M1.28338 1.93756L5.7264 6.41088L10.1997 1.96786" stroke="%23DD6E42" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.search-field:focus-within::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path d="M1.28338 6.41088L5.7264 1.93756L10.1997 6.41088" stroke="%23DD6E42" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    /* Up arrow */
}

.input-group .input-group-btn button {
    height: 37px !important;
    border: 0px transparent;
    background: var(--secondary-4);
    color: var(--primary-4);
    font-size: 14px;
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
}

.report-box-layout {
    display: block !important;
}

.report-filter {
    margin-top: 30px;
    margin-bottom: 0px;
}

/* Widget CSS Start */
.widget-impression,
.widget-impression-2 {
    display: grid;
    gap: 1rem;
}

/* .widget-header {
    text-align: center;
} */
.dashboard-widgets .card-header h4 {
    font-family: var(--font-family);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: 25.38px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-1);
}

.widget-impression {
    grid-template-columns: repeat(3, 1fr);
}

.widget-impression-2 {
    grid-template-columns: repeat(4, 1fr);
}

.widget-header .items {
    background: var(--default-white);
    border-radius: 10px;
    display: inline-flex;
    gap: 20px;
    padding: 0px 20px 10px !important;
    width: 100%;

}

.widget-header .items>span {
    flex-basis: 45px;
}

.widget-header .items .head {
    flex-basis: 100%;
    text-align: center;
    padding-right: 40px;
}

/*.widget-header .items .head {
    /* display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 0 0 0.5rem 0rem;
    gap: 0.5rem; 

    padding: 0px 18px;
    gap: 1em;
    max-width: 368px;
    margin: auto;
}*/

.widget-header .items .head h1 {
    font-family: var(--font-family);
    font-size: var(--font-size-32);
    font-weight: var(--font-weight-bold);
    line-height: 45.12px;
    color: var(--primary-4);
}

.widget-header .items h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-bold);
    line-height: 25.38px;
}

.widget-header .items h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-medium);
    line-height: 19.38px;
    color: var(--primary-4);
    margin: 0px;
}

/* Widget CSS End */


.header3 {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}


.header3 .items {
    background: var(--default-white);
    border-radius: 10px;
    min-width: 117px;
    display: flex;
    flex-direction: column;
}

.content-body,
.page-header {
    background: var(--background);
}

.graph-report {
    margin-top: 0px !important;
}

.header1 {
    background: var(--primary-1);
}

.header1 h1 {
    color: var(--default-white);
    font-size: var(--font-size-20);
    padding: 1rem;
}

.row.equal h1.title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-1);
}

.panel,
.panel2,
.panel:hover,
.panel2:hover {
    border: none !important;
    border-radius: 8px;
    background-color: #ffffff !important;
}

.panel .panel-body h5 {
    color: var(--primary-1);
}

.header1 {
    text-align: center;
    margin-bottom: 2rem;
}

.header {
    text-align: center;
    padding: 2rem;
}

.header h1.headings {
    font-size: var(--font-size-20);
    color: var(--primary-4);
    min-height: 110px;
    padding: 2rem;
}

.header .items {
    background: var(--default-white);
    border-radius: 10px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}

.impression {
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 131px;
    max-height: 131px;
}

.header .impression .items .head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .impression .items .head h1 {
    font-family: var(--font-family);
    font-size: var(--font-size-32);
    font-weight: var(--font-weight-bold);
    line-height: 45.12px;
    color: var(--primary-4);
    min-height: auto;
    padding: 0rem;
    padding-bottom: 12px;
    padding-top: 20px;
}

.header .impression .items h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-bold);
    line-height: 25.38px;
}

.header .impression .items h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-medium);
    line-height: 19.38px;
    color: var(--primary-4);
    margin: 0px;
}

.impression2 {
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-height: 131px;
    max-height: 131px;
}

.impression3 {
    display: block;
}

.report-content .col-md-12 .row.header1 {
    margin-left: auto;
    margin-right: auto;
}

.header3 .impression2 .items .head,
.header3 .impression3 .items .head {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding-left: 26px;
    padding-top: 20px;
    padding-bottom: 12px;
    justify-content: center;
}

.header3 .impression2 .items .head h1,
.header3 .impression3 .items .head h1 {
    font-family: var(--font-family);
    font-size: var(--font-size-32);
    font-weight: var(--font-weight-bold);
    line-height: 45.12px;
    color: var(--primary-4);
}

.header3 .impression2 .items h2,
.header3 .impression3 .items h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-bold);
    line-height: 25.38px;
}

.header3 .impression2 .items h3,
.header3 .impression3 .items h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-medium);
    line-height: 19.38px;
    color: var(--primary-4);
    margin: 0px;
}

/*  */
.panel-body {
    padding: 0px !important;
}

.table.funnel tbody tr td {
    border: 1px solid var(--secondary-4);
    text-align: center;
    vertical-align: middle;
    font-family: var(--font-family);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-regular);
    width: 25%;
}

.report-graph-name h2,
.funnel2 h2 {
    color: var(--primary-1);
}

.table.funnel tbody tr td:nth-child(1) {
    color: var(--primary-1);
    border-left: none !important;
}

.table.funnel tbody tr:first-child td {
    border-top: none !important;
}

.table.funnel tbody tr:last-child td {
    border-bottom: none !important;
}

.table.funnel tbody tr td:nth-child(4) {
    border-right: none !important;
}

.progress {
    height: 48px;
    margin-bottom: 0;
    overflow: hidden;
    background-color: var(--default-white);
    border-radius: unset;
    display: ruby;
}

.progress-bar {
    background-color: var(--primary-1);
    background-image: linear-gradient(to bottom, var(--primary-1) 0, var(--primary-1) 100%);
    line-height: 48px;
    font-family: var(--font-family);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-regular);
    color: var(--primary-4);
}

.panel-collapse.funnel2 {
    background: var(--default-white);
    border-radius: 10px;
    padding: 2rem;
}

.table.funnel tbody tr:first-child td {
    font-family: var(--font-family) !important;
    font-size: var(--font-size-18) !important;
    font-weight: var(--font-weight-medium) !important;
}

.table.funnel tbody tr:first-child td:nth-child(2) .progress-bar {
    color: var(--primary-4) !important;
    font-weight: var(--font-weight-medium) !important;
}

.table.funnel tbody tr:first-child td:nth-child(3),
.table.funnel tbody tr:first-child td:nth-child(4) {
    color: var(--primary-1);
}

.xdsoft_datetimepicker .xdsoft_calendar th {
    background: #f1f1f1 !important;
}


.email-widget {
    background: var(--primary-1);
    border-radius: 10px;
    overflow: auto;
    padding: 18px 10PX;
}

.email-widget-header h1 {
    font-size: 2rem;
    color: var(--default-white);
}

.email-widget-body {
    font-size: xx-large;
    color: var(--default-white);
}

/* .chart-wrapper canvas {
    height: inherit !important;
    width: auto !important;
}

@media (max-width: 1440px) and (min-width: 769px) {
    #dashboard-widgets .widget {
        width: auto !important;
        display: block !important;
        max-width: none !important;
    }
}
@media (max-width: 768px) {
    #dashboard-widgets .widget {
        width: 100% !important;
        display: block !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
} */

div.dataTables_filter label input {
    margin-left: 0.5em;
    display: inline-block;
    margin: 0px !important;
    height: 29px !important;
    width: 110px !important;
    border: 1px solid var(--secondary-4) !important;
    background: var(--default-white) !important;
    border-radius: 4px !important;
    box-shadow: 0px 0px 4px 0px #00000040 !important;
    padding: 5px !important;
}

div.dataTables_filter label {
    margin: 0 !important;
}

table.dataTable thead>tr>th.sorting {
    padding-right: 0px !important;
}

table.dataTable thead th {
    padding: 10px !important;
    text-align: center !important;
    white-space: nowrap !important;
}

table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_desc:after {
    display: none !important;
}

table.dataTable thead .sorting_asc {
    background-image: unset !important;
}

.footer-bottom .dataTables_length label,
.dataTables_paginate .single-page-pagination span.current-page {
    margin: 0px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
    font-size: 14px;
    line-height: 141%;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
    color: #010E39 !important;
}

.dataTables_paginate .single-page-pagination span.current-page {
    font-size: 18px !important;
}

.footer-bottom .dataTables_length label select {
    margin: 0px !important;
    width: 45px !important;
    border: 1px solid var(--secondary-4) !important;
    background: var(--default-white) !important;
    border-radius: 4px !important;
    box-shadow: 0px 0px 4px 0px #00000040 !important;
    padding: 5px !important;
}

.dataTables_paginate.paging_simple_numbers {
    padding: 0px !important;
}

.dataTables_paginate .single-page-pagination {
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary-4) !important;
    border-radius: 4px !important;
    box-shadow: 0px 0px 4px 0px #00000040 !important;
}

.dataTables_paginate .single-page-pagination button,
.dataTables_paginate .single-page-pagination span.current-page {
    margin: 0px !important;
    width: 45px !important;
    background: var(--default-white) !important;
    border-radius: 4px !important;
    padding: 5px !important;
    height: 34px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0px !important;
}

.dataTables_paginate .single-page-pagination button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

div.dt-button-collection button.dt-button.active:not(.disabled) {
    background-color: unset !important;
    background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
    background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
    background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
    background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
    background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
    box-shadow: inset 1px 1px 3px #fdfdfd !important;
    text-align: left !important;
}

div.dt-button-collection button.dt-button.active:not(.disabled)::after {
    content: '✔';
    color: #28a745;
    margin-left: 8px;
    font-weight: bold;
    font-size: 14px;
    text-align: end;
    float: inline-end;
}

div.dt-button-collection button.dt-button {
    text-align: left !important;
    height: auto !important;
    box-shadow: unset !important;
}

div.dt-button-collection {
    width: auto !important;
    padding: 0px !important;
    min-width: 200px !important;
    left: -98px !important;
}

table.dataTable {
    margin: 0px !important;
}

button.buttons-colvis span {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    padding: 0.5rem !important;
}