@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap";
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');

@media print {
    .pagebreak {
        page-break-before: always;
    }

    /* page-break-after works, as well */
    body * {
        visibility: hidden;
    }

    #content-wrapper,
    #content-wrapper * {
        visibility: visible;

        font-size: 10pt !important;
    }

    #content-wrapper {
        position: absolute;
        width: 100% !important;
        top: 10px !important;
        /* left: -300px !important; */
    }

    .hide-print {
        display: none !important;
    }
}

:root {
    --bs-primary: #ec2326;
    --bs-primary2: #8e1517;
    --bs-secondary: #2a4357;
    --bs-secondary-80L: #d4d9dd;
    --bs-info: #95a1ab;
    --bs-dark: #131313;
    --bs-light: #fbfbfc;
    --bs-purple: #4a3b58;

    --benchmark-positive: #EAEFF6;
    --benchmark-green-text: #45AC14;

    --color-primary-base: #ec2326;
    --color-primary-base-rgb: 236, 35, 38;
	--color-primary-10L: #ee393c;
	--color-primary-20L: #f04f51;
	--color-primary-30L: #f26567;
	--color-primary-40L: #f47b7d;
	--color-primary-50L: #f69193;
	--color-primary-60L: #f7a7a8;
	--color-primary-70L: #f9bdbe;
	--color-primary-80L: #fbd3d4;
	--color-primary-90L: #fde9e9;
	--color-primary-100L: #ffffff;
	--color-primary-10D: #d42022;
	--color-primary-20D: #bd1c1e;
	--color-primary-30D: #a5191b;
	--color-primary-40D: #8e1517;
	--color-primary-50D: #761213;
	--color-primary-60D: #5e0e0f;
	--color-primary-70D: #470a0b;
	--color-primary-80D: #2f0708;
	--color-primary-90D: #180304;
	--color-primary-100D: #000000;
    --color-secondary-base: #2a4357;
	--color-secondary-10L: #3f5668;
	--color-secondary-20L: #556979;
	--color-secondary-30L: #6a7b89;
	--color-secondary-40L: #7f8e9a;
	--color-secondary-50L: #95a1ab;
	--color-secondary-60L: #aab4bc;
	--color-secondary-70L: #bfc7cd;
	--color-secondary-80L: #d4d9dd;
	--color-secondary-90L: #eaecee;
	--color-secondary-100L: #ffffff;
	--color-secondary-10D: #263c4e;
	--color-secondary-20D: #223646;
	--color-secondary-30D: #1d2f3d;
	--color-secondary-40D: #192834;
	--color-secondary-50D: #15222c;
	--color-secondary-60D: #111b23;
	--color-secondary-70D: #0d141a;
	--color-secondary-80D: #080d11;
	--color-secondary-90D: #040709;
	--color-secondary-100D: #000000;
    --color-tertiary-base: #b8cbe0;
    --color-tertiary-10L: #bfd0e3;
    --color-tertiary-60L: #e3eaf3;
    --color-tertiary-80L: #f1f5f9;
}

.border-t60L {
    border-color: var(--color-tertiary-60L) !important;
}

.border-color-secondary-base {
    border-color: var(--color-secondary-base) !important;
}

.text-color-secondary-base {
    color: var(--color-secondary-base) !important;
}

.bg-t60L {
    background-color: var(--color-tertiary-60L) !important;
}

.bg-primary-50L {
    background-color: var(--color-primary-50L) !important;
}

.border-color-primary-base {
    border-color: var(--color-primary-base) !important;
}

.btn-outline-dark:hover {
    background-color: var(--color-secondary-base) !important;
    color: white !important;
}

.btn-outline-dark {
    border-color: var(--color-secondary-base) !important;
    color: var(--color-secondary-base) !important;
}

/* Primary */
.text-primary {
    --bs-text-opacity: 1;
    color: var(--bs-primary) !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.rounded-border {
    border: var(--bs-border-width) var(--bs-border-style) #e3e3e3 !important;
    border-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
}

.rounded-border tr:last-child > td {
    border-bottom: 0;
}

.rounded-border thead > tr > th:first-child {
    border-radius: 10px 0 0 0;
}

.rounded-border thead > tr > th:last-child {
    border-radius: 0 10px 0 0;
}

.rounded-border tr:last-child > td:first-child {
    border-radius: 0 0 0 10px;
}

.rounded-border tr:last-child > td:last-child {
    border-radius: 0 0 10px 0;
}

.rounded-border-matrix-fix tbody tr:nth-last-child(2) > td {
    border-bottom: 0;
}

.rounded-border-matrix-fix tbody tr:nth-last-child(2) > td:first-child {
    border-radius: 0 0 0 10px;
}

.rounded-border-matrix-fix tbody tr:nth-last-child(2) > td:last-child {
    border-radius: 0 0 10px 0;
}

/* Danger */
.text-danger {
    --bs-text-opacity: 1;
    color: var(--bs-danger) !important;
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: var(--bs-danger) !important;
}

.border-danger {
    border-color: var(--bs-danger) !important;
}

/* Info */
.text-info {
    --bs-text-opacity: 1;
    color: var(--bs-info) !important;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: var(--bs-info) !important;
}

.border-info {
    border-color: var(--bs-info) !important;
}

/* Dark */
.text-dark {
    --bs-text-opacity: 1;
    color: var(--bs-dark) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: var(--bs-dark) !important;
}

.border-dark {
    border-color: var(--bs-dark) !important;
}

/* Light */
.text-light {
    --bs-text-opacity: 1;
    color: var(--bs-light) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: var(--bs-light) !important;
}

.border-light {
    border-color: var(--bs-light) !important;
}

/* Apply blur when modal is open */
.blur-background {
    filter: blur(5px);
}

#unread-message-count {
    position: absolute;
    background-color: var(--bs-primary);
    border-radius: 50%;
    height: 20px;
    width: 20px;
    top: 0;
    font-size: 12px;
    right: 22px;
    text-align: center;
    line-height: 20px;
}

.inline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-danger);
    display: inline-block;
}

.benchmark-table td {
    border-left: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    border-bottom: 0;
}

.benchmark-table {
    border-collapse: separate; /* This is crucial for border-radius to work on tables */
    border-spacing: 0; /* To avoid gaps between cells */
    border-radius: 8px; /* Adjust radius as needed */
}

.benchmark-table thead tr:first-child th:first-child {
    border-top-left-radius: 16px;
}

.benchmark-table thead tr:first-child th:last-child {
    border-top-right-radius: 16px;
}

.benchmark-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.benchmark-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.benchmark-table tbody tr:last-child td {
    border-bottom: 1px solid #dee2e6;
}

.benchmark-table tbody td:last-child {
    border-right: 1px solid #dee2e6;
}

.benchmark-table thead th {
    background-color: rgb(43 66 87);
    color: white;
    border-bottom: 0;
}

.benchmark-table tbody a {
    color: rgba(42, 67, 87, 1);
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.filter-button {
    display: inline-block;
    text-decoration: none;
    color: #7E809B;
    line-height: 27px;
    font-weight: 400;
    font-size: 16px;
    background-color: transparent;
    border: none;
}

.filter-button.active {
    text-decoration: none;
    color: var(--bs-dark);
    font-weight: 600;
    background-color: #DFEDF8;
    border: 1px solid var(--bs-dark);
    border-radius: 7px;
}

.tooltip-label {
    font-size: 10px;
    color: var(--color-secondary-40L);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(61, 99, 228, 0.05); /* Replace with your desired color */
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: initial !important;
    --bs-table-bg-type: initial !important;
}

.text-left {
    text-align: left !important;
}

.vertical-text {
    transform: rotate(270deg);
    transform-origin: center;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-align: center;
}

.nested-table {
    width: 100%;
}

.nested-table td {
    background-color: white !important;
    height: 20px;
    font-size: 14px;
    white-space: nowrap;
    text-align: center !important;
    width: auto !important;
}

.nested-table thead th {
    color: rgba(47, 67, 85, 1) !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 10em;

}

.dashed-line {
    border: 1px dashed gray;
    display: none;
    width: calc(100% - 150px);
    margin: 0;
}

.card-header {
    background-color: rgb(43 66 87);
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 15px 15px 0 0 !important;
}

.selector {
    float: right;
    margin-left: 10px;
    text-decoration: none;
    color: var(--color-secondary-base);
    font-weight: 600;
    background-color: var(--color-tertiary-60L);
    border: 1px solid var(--color-secondary-base);
    border-radius: 7px;
    width: fit-content;
}

#dealerSearchInput {
    outline: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    padding: 10px;
    height: 50px;
    border-color: #ccc;
}

.card-bar-chart {
    height: 86px !important;
}

.hidden {
    display: none !important;
}

.child-table tr:nth-child(odd) {
    background-color: rgba(61, 99, 228, 0.05);
}

table.child-table thead th {
    background-color: rgba(177, 193, 244, 1) !important;
    color: black;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.modal-content {
    width: 600px;
}

.modal-body ul {
    margin: 0;
    padding: 10px;
    display: inline-flex;
    list-style: none;
    flex-wrap: wrap;
}

.modal-body li {
    padding: 10px;
}

.card-menu::after {
    content: "";
    display: block;
    border-bottom: 0px solid #ccc;
    width: 100%;
    margin-top: 5px;
}

.card-menu.active::after {
    border-bottom-width: 2px;
    border-top-left-radius: 25%;
    border-top-right-radius: 25%;
    border-bottom-color: var(--color-secondary-base);
    color: var(--color-secondary-base);
}

/* Set focus color to black for all input elements, buttons, and links */
input:focus, textarea:focus, select:focus, button:focus {
    outline: 2px solid black;
    outline-offset: 2px;
}

/* Optional: Customize the focus styles further */
input:focus, textarea:focus, select:focus, button:focus {
    border-color: black; /* For input borders */
    box-shadow: none; /* Remove default box-shadow */
}

/* Specific Bootstrap classes overrides for form-control elements */
.form-control:focus {
    border-color: black;
    box-shadow: none;
}

/* Override focus color for buttons */
.btn:focus, .btn:active {
    box-shadow: none;
}

/* Override focus color for form-floating labels */
.form-floating .form-control:focus ~ label {
    color: black;
}

/* Set focus color to black for accordion buttons */
.accordion-button:focus {
    outline: 2px solid black;
    outline-offset: 2px;
    box-shadow: none; /* Remove default box-shadow */
}



/* Apply primary color only to switches */
.form-switch .form-check-input:checked {
    background-color: var(--color-primary-base);
    border-color: var(--color-primary-base);
}

.form-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-base-rgb), 0.25);
}

.form-switch .form-check-input:active {
    background-color: var(--color-primary-base);
    border-color: var(--color-primary-base);
    box-shadow: none;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:not([value=""]) ~ label {
    transform: translateY(-40%) scale(0.85); /* Adjust the scale and position */
    font-weight: bold;
}

.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: .625rem;
    padding-bottom: .625rem;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
    text-align: center;
}

.pointer {
    cursor: pointer;
}

.nav-link {
    color: var(--color-secondary-40L);
}

.nav-link:hover {
    color: var(--color-secondary-base);
}

table td:first-child, table th:first-child {
    white-space: nowrap;
}

.child-table thead th:first-child {
    border-left: none !important;
}

.child-table thead th:last-child {
    border-right: none !important;
}

#id_notes {
    width: 100%;
    height: 85%;
}

.finance-table thead th,
.finance-table thead td {
    padding: 10px 5px !important;
    border-bottom: 1px solid #111;
}

.finance-table tbody th,
.finace-table tbody td {
    padding: 1px 2px !important;
}

.finance-table {
    font-size: 12px;
}

.chart-blue-background {
    background: linear-gradient(to right, #2a4357 0%, #2a4f63 60%, #385471 100%) !important;
    height: 400px;
}

.panel-header {
    height: 260px;
    padding-top: 80px;
    padding-bottom: 45px;
    background: #141E30;
    /* fallback for old browsers */
    background: linear-gradient(to right, #2a4357 0%, #2a4f63 60%, #385471 100%);
    position: relative;
    overflow: hidden;
}

.panel-header-lg {
    height: 380px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

table.smaller-table-header {
    width: 100%;
    table-layout: fixed;
}

table.smaller-table-header * > tr > th {
    padding-left: 0px !important;
    padding-right: 0px !important;
    text-align: center !important;
}

.pin .splitter {
    padding: 0 5px;
    color: black;
    font-size: 24px;
}

.pin > input {
    width: 30px !important;
    height: 50px !important;
    background-color: #f1f1f1;
    border: none;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 200;
    color: black;
    margin: 0 2px;
    border-radius: 5px;
}

.pin > input:invalid {
    color: red;
    caret-color: #000;
}

.pin > input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--bs-danger);
}

.select-editable {
    position: relative;
    width: 80px;
    height: 18px;
}

.card-category {
    font-size: 14px;
}

.total-font {
    font-weight: bold;
}

.select-editable select {
    position: absolute;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    top: 0px;
    left: 0px;
    height: 22px;
    width: 80px;
    margin: 0;
}

.select-editable input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    padding: 1px;
    font-size: 12px;
    border: 1px solid #E3E3E3;
    border-radius: 30px;
    text-align: center;
}

.select-editable select:focus,
.select-editable input:focus {
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-dark);
    border-color: var(--bs-dark);
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--bs-dark);
    border-color: transparent;
    color: #fff;
}

.daterangepicker .ranges li.active {
    background-color: var(--bs-dark);
    color: #fff;
}

.daterangepicker {
    font-family: 'Alexandria Bold', sans-serif;
}

.loading {
    width: 50px;
    height: 50px;
    border: 3px solid #DFEDF8;
    border-radius: 50%;
    border-top-color: var(--bs-dark);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 200px;
    backdrop-filter: blur(6px);
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.funnel-spacer {
    height: 20px;
    width: 100%;
}

body.preload * {
    animation-duration: 0s !important;
    -webkit-animation-duration: 0s !important;
    transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;
}

.notes-box {
    height: 400px;
}

.notes-box-sm {
    height: 200px;
}

.table {
    margin-bottom: 0;
    page-break-inside: avoid;
}

.state-block tr {
    height: 44px;
}

.state-block .row {
    margin-bottom: 0;
    padding-left: .5rem;
}

form#target-date-form {
    display: inline-block;
}

input#id_dates {
    width: 250px;
    padding-left: 0px;
    padding-right: 0px;
    display: inline-block;
}

.vendor-table textarea,
.vendor-table input {
    height: 30px;
    width: 175px;
    border: none;
    resize: none;
    background-color: transparent;
}

.vendor-group-table textarea,
.vendor-group-table input {
    height: 30px;
    width: 250px;
    border: none;
    resize: none;
    background-color: transparent;
}

.sports-card-datatable thead {
    background-color: rgb(244 247 250);
    text-align: center;
    color: rgba(47, 67, 85, 1);
    font-weight: 500;
    text-transform: uppercase;
}

.sports-card-datatable thead th:first-child {
    color: var(--bs-danger);
}

.sports-card-toptable thead th {
    color: rgba(47, 67, 85, 1);
    text-align: center;
}

.sports-card-datatable td:first-child {
    background-color: rgb(244 247 250);
    text-align: right;
    width: 150px;
}

.sports-card-datatable td:last-child {
    width: 150px;
}

.sports-card-datatable thead th,
.sports-card-toptable thead th {
    border-bottom: none;
    border-top: none;
    border-left: 2px solid rgb(244 247 250);
    border-right: 2px solid rgb(244 247 250);
}

.rotate-270 {
    transform: rotate(315deg);
    /* white-space: nowrap; */
    display: block;
}

.sports-card-datatable {
    border-collapse: collapse;
    margin-bottom: 0px;
}

.sports-card-datatable td {
    border: 2px solid rgb(244 247 250);
    padding: 8px;
    text-align: center;
    background-color: white;
}

.darker-table td {
    border-color: rgb(223 223 223) !important;
    background-color: rgb(233 233 233);
}

.sports-card-toptable td {
    background-color: white;
    border-top: 2px solid rgb(244 247 250);
}

.sports-card-toptable td:last-child {
    text-align: right;
}

.kpi-value-span {
    float: right;
    width: auto;
}

#id_profile_image {
    width: 235px;
}

table#kpi-table input {
    text-align: center;
}

.no-borders td {
    border: none;
}

.big-top-table td {
    height: 50px;
    padding-top: 12px;
}

.checkbox-holder input {
    height: 25px !important;
    width: 100% !important;
}

.child-table {
    width: 100%;
}

.subtext {
    top: -12px;
}

.subtext textarea {
    height: 20px !important;
    font-size: 12px !important;
}

.child-table tfoot tr td {
    background-color: #D4DBEB !important;
    font-weight: bold !important;
}

.chart-control {
    float: right;
}

.chart-control button {
    display: inline-block;
    text-decoration: none;
    color: var(--color-secondary-40L);
    line-height: 27px;
    font-weight: 400;
    font-size: 16px;
    background-color: transparent;
    border: none;
}

.chart-control-line button {
    display: inline-block;
    text-decoration: none;
    color: var(--color-secondary-40L);
    line-height: 27px;
    font-weight: 400;
    font-size: 16px;
    background-color: transparent;
    border: none;
}

.chart-control button:hover,
.chart-control-line button:hover {
    color: var(--color-secondary-base);
}

.chart-control-line button.active {
    color: var(--color-secondary-base);
}

.chart-control button.active,
.chart-control select {
    text-decoration: none;
    color: var(--color-secondary-base);
    font-weight: 600;
    background-color: var(--color-tertiary-60L);
    border: 1px solid var(--color-secondary-base);
    border-radius: 7px;
}

.btn-outline-primary {
    color: var(--color-primary-base);
    border-color: var(--color-primary-base);
}

.dual-chart-child {
    height: 300px;
    width: 48%;
    display: inline-block;
}

.child-table thead tr {
    background-color: rgba(42, 67, 87, 1) !important;
    text-align: center;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.datatable thead {
    background-color: rgba(42, 67, 87, 1);
    text-align: center;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.sports-card-datatable thead {
    background-color: rgb(244 247 250);
    text-align: center;
    color: rgba(47, 67, 85, 1);
    font-weight: 500;
    text-transform: uppercase;
}

.sports-card-datatable thead th:first-child {
    color: rgba(217, 84, 10, 1);
}

.sports-card-toptable thead th {
    color: rgba(47, 67, 85, 1);
    text-align: center;
}

.sports-card-datatable td:first-child {
    background-color: rgb(244 247 250);
    text-align: right;
    width: 150px;
}

.sports-card-datatable td:last-child {
    width: 150px;
}

.sports-card-datatable thead th,
.sports-card-toptable thead th {
    border-bottom: none;
    border-top: none;
    border-left: 2px solid rgb(244 247 250);
    border-right: 2px solid rgb(244 247 250);
}

.sports-card-datatable {
    border-collapse: collapse;
    margin-bottom: 0px;
}

.sports-card-datatable td {
    border: 2px solid rgb(244 247 250);
    padding: 8px;
    text-align: center;
    /* background-color: white; */
}

.sports-card-toptable td {
    background-color: white;
    border-top: 2px solid rgb(244 247 250);
}

.sports-card-toptable td:last-child {
    text-align: right;
}

.td-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.line {
    flex-grow: 1;
    height: 1px;
    border-top: 1px dashed var(--color-secondary-base);
    margin: 0 10px;
    /* Adjust as necessary to create space around the dashed line */
    min-width: 10px;
}

.left-side-item {
    margin: 0 0 0 20px;
}

.right-side-item {
    margin: 0 20px 0 0;
}

.no-borders td {
    border: none;
}

.big-top-table td {
    height: 50px;
    padding-top: 12px;
}

#id_profile_image {
    width: 235px;
}


.required-field {
    border: 1px solid red !important;
}

.progress {
    position: relative;
    height: 20px;
    margin-bottom: 20px;
    margin-top: -15px;
}

.circle {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
}

.circles {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    justify-content: space-around;
}


/*.form-label {*/
/*    !*flex: 1;*!*/
/*    !*text-align: left;*!*/
/*    !*margin-top: 5px;*!*/
/*    !*max-width: 20%;*!*/
/*}*/

.form-field {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-right: 50px;
    border: 1px solid rgb(180, 180, 180);
    /* box-shadow: 0 0 5px 2px #e3e5eb75; */
    border-radius: 5px;
    padding-left: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    min-height: 35px;
}

.form-field:focus {
    outline: none;
    border-color: var(--bs-dark);
}

.editable-text {
    border: none;
    background: none;
    outline: none;
    width: 150%;
    line-height: 1px;
}

.big-checkbox {
    height: 20px;
    width: 20px;
}

.editable-text:focus {
    border-bottom: 1px solid black;
}

.form-image img {
    height: 250px;
    width: 250px;
    margin-bottom: 10px;
}

.flex-column {
    flex: 1;
    flex-basis: 0;
}

.form-image {
    width: 275px;
}

.image-wrapper {
    position: relative;
}

.imagePreview {
    width: 100%;
    display: block;
}

.imagePreviewSmall {
    width: 50px !important;
    height: 50px !important;
    display: block;
}

.image-upload {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 250px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 10pt;
    flex-wrap: wrap;
    padding-left: 10px;
    padding-top: 10px;
    transition: .25s all ease;
}

.image-upload-small {
    position: absolute;
    top: -10px;
    left: 0px;
    width: 50px;
    height: 50px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 10pt;
    flex-wrap: wrap;
    padding-left: 10px;
    padding-top: 10px;
    transition: .25s all ease;
}

.progress-circle {
    float: right;
    font-size: 18pt;
    color: #007bff !important;
}

.image-wrapper:hover .image-upload {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.75);
}

.form-content {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-left: auto;
}

.card-body form.formset:not(:first-of-type) {
    display: none;
}

.error-list li:before {
    content: "\f00d";
    /* Unicode character for fa-times */
    font-family: "FontAwesome";
    display: inline-block;
    margin-right: 5px;
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border-radius: 25px;
    background-color: rgba(255, 255, 255);
    z-index: 9999;
}

.sub-header-span {
    display: block;
    font-size: 10pt;
    font-weight: 100;
}

.card-body .info-div {
    display: none;
}

#finished-message {
    display: none;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.button-container .align-start {
    margin-right: auto;
}

.button-container .btn {
    margin-left: 10px;
}


.small-text {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sub-header {
    background-color: #D4DBEB;
    font-weight: bold;
    text-align: center;
    color: black;
    text-transform: uppercase;
}

.sub-header th:first-child,
.sub-header th:last-child {
    border-radius: 0px !important;
}

.datatable tbody a {
    color: var(--bs-secondary);
}

.bg-green,
.bg-red,
.bg-green-full,
.bg-red-full,
.bg-red-self,
.bg-green-self,
.bg-gray-self {
    transform-style: preserve-3d;
}

.hovered span {
    display: block !important;
}

.bg-green-wide,
.bg-red-wide {
    transform-style: preserve-3d;
}

.bg-green::before,
.bg-red::before {
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 15px);
    height: 60%;
    margin-right: 10px;
    z-index: -1;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--color-secondary-base);
    background-color: var(--color-tertiary-60L);
    border-color: var(--color-secondary-base);
    font-weight: bold;
}

.nav-tabs .nav-link:hover {
    color: var(--color-secondary-base);
}

.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
    color: var(--color-secondary-base);
    background-color: var(--color-tertiary-60L);
    border-color: var(--color-secondary-base);
    font-weight: bold;
    border: 1px solid var(--color-secondary-base);
}

.nav-pills .nav-item .nav-link {
    line-height: 27px;
    font-size: 16px;
    padding: 1px 6px 1px 6px;
}

.nav-pills .nav-link:hover {
    color: var(--color-secondary-base);
}

.bg-red-self::before,
.bg-green-self::after,
.bg-gray-self::before {
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 15px);
    height: calc(100%);
    z-index: -1;
}

.bg-green-full::before,
.bg-red-full::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    margin-right: 10px;
    z-index: -1;
    border-radius: 7px;
}

.bg-green-wide::before,
.bg-red-wide::before {
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 25px;
    margin-right: 10px;
    z-index: -1;
}

.tippy-tooltip.white-theme {
    background-color: rgb(255, 255, 255);
    color: black;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

.tippy-tooltip.error-theme {
    background-color: rgb(255, 255, 255);
    color: red;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

.accordion-button:not(.collapsed) {
    background-color: initial;
}

.text-right {
    text-align: right !important;
}

.tippy-tooltip.white-theme[data-placement^='top'] .tippy-arrow {
    border-top-color: white;
}

.tippy-tooltip.white-theme[data-placement^='bottom'] .tippy-arrow {
    border-bottom-color: white;
}

.tippy-tooltip.white-theme[data-placement^='left'] .tippy-arrow {
    border-left-color: white;
}

.tippy-tooltip.white-theme[data-placement^='right'] .tippy-arrow {
    border-right-color: white;
}

.tippy-tooltip.error-theme[data-placement^='top'] .tippy-arrow {
    border-top-color: white;
}

.tippy-tooltip.error-theme[data-placement^='bottom'] .tippy-arrow {
    border-bottom-color: white;
}

.tippy-tooltip.error-theme[data-placement^='left'] .tippy-arrow {
    border-left-color: white;
}

.tippy-tooltip.error-theme[data-placement^='right'] .tippy-arrow {
    border-right-color: white;
}

.bg-green-wide::before {
    content: "";
    background-color: var(--benchmark-positive);
}

.bg-red-wide::before {
    content: "";
    background-color: var(--color-primary-80L);
}

.bg-green::before,
.bg-green-full::before,
.bg-green-self::after {
    content: "";
    background-color: var(--benchmark-positive);
    /*border: 1px solid var(--benchmark-green-text);*/
}

.bg-green-self {
    color: var(--benchmark-green-text)!important;
}

.form-control-btn {
    height: 32px;
    padding: 2px 10px 2px 10px !important;
}

.error-field {
    border: 1px solid red !important;
}

.bg-gray-self::before {
    content: "";
    background-color: rgb(215, 215, 215);
}

.preserve-3d {
    transform-style: preserve-3d;
}

.hover-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

*:hover > .hover-content {
    display: block;
}

.percentage-change {
    font-weight: bold;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.percentage-change .fa {
    font-size: 0.6em;
}

.ml-2 {
    margin-left: 10px;
}

.run-icon::before {
    content: '';
    display: block;
    position: absolute;
    left: -10px;
    /* width of the image + desired spacing */
    top: 50%;
    transform: translateY(-50%);
    /* to vertically center */
    width: 15px;
    /* the width of your image */
    height: 20px;
    /* the height of your image */
    background-image: url("../img/run.ec7b3899f637.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    height: 400px;
    width: 48%;
    display: inline-block;
}

.run-icon {
    position: relative;
}

.percentage-change .fa {
    margin-bottom: -3px;
}

.min-width-100 {
    min-width: 100px;
}

.dashboard-card-table {
    width: 100%;
}

.dashboard-card-table tr td:first-child {
    text-align: left;
}

.dashboard-card-table tr td:last-child {
    float: right;
}

.bg-red::before,
.bg-red-full::before,
.bg-red-self::before {
    content: "";
    background-color: var(--color-primary-80L);
}

.shadowed-card {
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    border: none;
}

.datatable td {
    text-align: center;
}

.datatable td:first-child {
    text-align: left;
}

.datatable th:first-child {
    border-radius: 16px 0 0 0;
}

.datatable th:last-child {
    border-radius: 0 16px 0 0;
}

.datatable tfoot {
    background-color: var(--color-tertiary-60L);
    font-weight: bold;
}

.spacer {
    background-color: var(--color-tertiary-60L) !important;
    border-top: none !important;
    border-bottom: none !important;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
    border-top: 0;
}

.datatable.no-footer tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.child-table tr:last-child td:first-child {
    border-radius: 0 0 0 0 !important;
}

.datatable.no-footer tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.child-table tr:last-child td:last-child {
    border-radius: 0 0 0 0 !important;
}

table.child-table thead th {
    border-top: 0px !important;
}

.datatable tfoot tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.datatable tfoot tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #ddd;
    border-radius: 16px;
}

table.child-table {
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background-color: var(--color-tertiary-80L);
}

.funnel {
    width: 90%;
    height: 590px;
}

.tall-funnel {
    width: 90%;
    height: 90%;
    margin-top: 20px;
    min-height: 590px;
}

.icon-benchmark:before {
    content: "\e90b";
}

.icon-menu:before {
    content: "\e90c";
    color: #7e809b;
}

.icon-budget:before {
    content: "\e910";
    color: #2f4355;
}

.icon-filter:before {
    content: "\e908";
}

.icon-secure:before {
    content: "\e900";
}

.icon-calender:before {
    content: "\e901";
    color: #9394a8;
}

.icon-dashboard:before {
    content: "\e902";
}

.icon-bell:before {
    content: "\e903";
}

.icon-edit:before {
    content: "\e904";
}

.icon-video:before {
    content: "\e905";
    color: var(--bs-dark);
}

.icon-arrow-down:before {
    content: "\e906";
    color: #f00;
}

.icon-arrow-up:before {
    content: "\e900";
    color: rgb(90, 255, 0);
}

.icon-info:before {
    content: "\e907";
    color: var(--bs-dark);
}

.icon-user:before {
    content: "\e909";
    color: #9394a8;
}

.icon-alert:before {
    content: "\e90a";
    color: #9394a8;
}

.icon-caret-down:before {
    content: "\e90d";
}

.icon-digital:before {
    content: "\e90e";
    color: #9394a8;
}

.icon-down:before {
    content: "\e90f";
}

.icon-inventory:before {
    content: "\e912";
    color: #9394a8;
}

.icon-sales:before {
    content: "\e914";
    color: #9394a8;
}

.icon-setting:before {
    content: "\e916";
    color: #fff;
}

.icon-education:before {
    content: "\e917";
    color: #fafafa;
}


body {
    position: relative;
    min-height: 100%;
    color: var(--color-secondary-base)!important;
    font-family: 'Poppins', sans-serif;
    background: var(--color-tertiary-80L);
}

.text-bg-positive {
    color: var(--color-secondary-base)!important;
    background-color: var(--benchmark-positive)!important;
}

.text-bg-negative {
    color: var(--color-secondary-base)!important;
    background-color: var(--color-primary-80L)!important;
}

.card {
    color: inherit;
}

.accordion-item, .card, .accordion-button:not(.collapsed), .accordion-button {
    color: inherit;
}

.custom-border {
    position: relative;
}

.custom-border::after {
    content: '';
    position: absolute;
    width: var(--bwidth);
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--border-color);
}

a {
    transition: background 0.2s, color 0.2s;
}

a:hover,
a:focus {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*.btn {*/
/*    border-radius: 4px;*/
/*    font-size: 16px;*/
/*    padding: 6px 20px;*/
/*    font-weight: 400;*/
/*}*/

.btn:focus,
.btn:active {
    box-shadow: none;
}

.btn-danger {
    background: var(--bs-danger) !important;
    color: #fff;
    border: 1px solid var(--bs-danger) !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: var(--bs-danger);
    border: 1px solid var(--bs-danger) !important;
}

.btn-outline-danger:hover {
    background: var(--bs-danger) !important;
    color: #fff;
    border: 1px solid var(--bs-danger) !important;
}

.text-danger {
    color: var(--bs-danger) !important;
}

.text-primary {
    color: var(--bs-dark) !important;
}

.text-success {
    color: #00DA60 !important;
}

.text-gray {
    color: #767896 !important;
}

.font-bold {
    font-weight: 600 !important;
}

.form-control {
    border-radius: 8px;
    height: 32px;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #2b4257;
}

.form-group {
    margin-bottom: 30px;
}

#wrapper {
    padding-left: 0;
    transition: all 0.5s ease;
    position: relative;
}

header .navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
}

header .navbar-light .icon-cart {
    font-size: 20px;
    color: #408EEF;
    top: 4px;
    position: relative;
}

header .navbar-light .icon-user {
    font-size: 22px;
    top: 4px;
    position: relative;
    color: #408EEF;

}

header .navbar-light .nav-item.active .nav-link,
header .navbar-light .nav-item.active .nav-link:hover {
    color: #F6CF63;
}

.avatar {
    border-radius: 50%;
    width: 38px;
}

header .navbar-nav .dropdown i {
    font-size: 8px;
    margin-left: 10px;
}

header .navbar-nav .nav-item {
    padding: 0 8px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 280px;
    width: 0;
    top: 0;
    height: 100%;
    margin-left: -280px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
    transition: all 0.5s ease;
    box-shadow: 0 0 5px 0 #ddd;
}

#wrapper.toggled #sidebar-wrapper {
    width: 280px;
}

.sidebar-brand {
    position: absolute;
    top: 0;
    width: 280px;
    text-align: center;
    padding: 20px 0;
}

.sidebar-brand h2 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

.sidebar-nav {
    position: absolute;
    top: 20px;
    width: 280px;
    margin: 0;
    padding: 0px;
    list-style: none;
}

.sidebar-nav > li {
    padding: 12px 20px;
    position: relative;

}

.sidebar-nav > li a {
    display: block;
    text-decoration: none;
    color: var(--color-secondary-40L);
    line-height: 27px;
    font-weight: 400;
    font-size: 16px;
}

.sidebar-nav > li > a:hover {
    color: var(--color-secondary-base);
}

.sidebar-nav > li.active > a {
    text-decoration: none;
    color: var(--color-secondary-base);
    font-weight: 600;
}

.sidebar-nav > li a i {
    font-size: 20px;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.sidebar-nav > li.active > a i {
    color: var(--bs-danger);

}

.sidebar-nav .logo {
    width: 150px;
    margin: auto;
}

.sidebar-nav > li.active:after {
   content: "";
   background-image: url("../img/line-v.803eac35f06c.png");
   width: 7px;
   height: 43px;
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   right: -3px;
   top: 4px;
}

.sidebar-nav > li > a i.fa {
    font-size: 18px;
    width: 40px;
}


#content-wrapper {
    width: 100%;
    padding: 35px 25px 20px 25px;
}

/*.content-div {*/
/*    display: none;*/
/*}*/

#wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
}

.navbar {
    background: var(--color-secondary-base);
    color: white;
    position: fixed;
    width: 100%;
    box-shadow: 0 0 5px rgb(0 0 0 / 26%);
    z-index: 999;
    top: 0;
    padding: 10px 30px 10px 308px;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: initial;
    right: -7px;
    min-width: 9rem;
    box-shadow: 0px 5px 15px #5e5a5a1c;
    margin-top: 10px;
    border: none;
}

.navbar .dropdown-menu a {
    font-size: 16px;
}

.navbar .badge {
    width: 12px;
    padding: 0;
    height: 12px;
    border-radius: 50%;
    font-size: 9px;
    line-height: 13px;
    background: #FFA007;
    color: #fff;
    display: block !important;
    position: absolute;
    top: 2px;
    right: -8px;
}


/* Dashboard */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.card-body {
    overflow-x: auto;
}

.user-dashboard .card {
    background: #FFFFFF;
    box-shadow: 0px 0px 29px rgba(202, 202, 202, 0.25);
    border-radius: 16px;
    border: none;
    margin-bottom: 15px;
}

.user-dashboard .card .card-body {
    padding: 20px;
}

.user-dashboard .state-block .card-body {
    padding: 15px;
}

.user-dashboard .state-block .card-body h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    margin-top: 10px;
}

.user-dashboard .state-block .card-body h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin-top: 10px;
}


.user-dashboard .state-block .card-body h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.user-dashboard .state-block .badge {
    background: var(--color-primary-80L);
    border-radius: 10px;
    padding: 1px 8px;
    color: var(--bs-dark);
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 8px;
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 1200px 100%;
    animation: shimmer 5s linear infinite;
    z-index: 1;
}

.shimmerBG {
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: #ddd;
    background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
    background-size: 1200px 100%;
    border-radius: inherit;
}

.shimmerLight {
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: #ddd;
    background: linear-gradient(to right, #FFFFFF 8%, #F6F6F6 18%, #FFFFFF 33%);
    background-size: 1200px 100%;
    border-radius: inherit;
    border: inherit;
}


@-webkit-keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0;
    }
    100% {
        background-position: 1200px 0;
    }
}

#sidebar-toggle:first-child:active {
    border: none;
}

.user-dashboard .square-badge .badge {
    background: #FFE0E0;
    border-radius: 5px;
    font-size: 100%;
    font-weight: normal;
}

.user-dashboard .square-badge .badge.badge-success {
    background: rgba(0, 218, 96, 0.2);
    color: #2F4355;
}

.user-dashboard .state-block .badge.badge-primary {
    background: var(--color-tertiary-10L);
    color: var(--color-secondary-base);
}


.user-dashboard .state-block .badge.badge-success {
    background: var(--benchmark-positive);
    color: var(--benchmark-green-text);
    /*border: 1px solid var(--benchmark-green-text);*/
}

.user-dashboard .state-block .d-flex.benchmark-block {
    width: 150px;
    margin: 0px auto;
}

.user-dashboard .state-block .d-flex span {
    font-size: 16px;
    color: #7E809B;
}

.user-dashboard .state-block .d-flex .dashed-line {
    border-top: 1px dashed #B8B8B8;
    width: 60px;
}

.user-dashboard .state-block p {
    font-size: 14px;
}

.user-dashboard .state-block .run {
    padding-left: 5px;
}

.user-dashboard .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 58px;
}

.fa-times-sidebar {
    position: absolute;
    right: 15px;
    font-size: 24px;
    top: 15px;
    color: var(--color-secondary-base);
    -webkit-text-stroke: 2px #fff;
    z-index: 9999;
}

.funnel-block:after {
    content: "";
    height: 537px;
    width: 180px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -85px;
}

.funnel-block h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 20px;
}

.funnel-block ul li h6 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--bs-dark);
    margin-bottom: 3px;
}

.funnel-block ul li p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.funnel-block ul {
    /* border-bottom: 1px solid #DCDCDC; */
    padding: 6px 0 5px;
}

.funnel-block ul li:last-child {
    text-align: right;
}

.funnel-block .total {
    margin: 25px 0 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

.dots span {
    width: 10px;
    height: 10px;
    background: #DCE0E8;
    display: inline-block;
    border-radius: 50%;
    margin: 1px;
}

.dots span.active {
    background: var(--bs-dark);
}

/* #sidebar-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#sidebar-wrapper::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

#sidebar-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--bs-dark);
} */

.small-badge {
    font-size: 0.75rem; /* Smaller font size */
    padding: 0.2rem 0.4rem; /* Smaller padding */
    line-height: 1.2; /* Adjust line-height for smaller height */
}

.state-block .table td,
.state-block .table th {
    border: 0;
    text-align: center;

}

.state-block .table th {
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #2F4355;
    padding: 10px 0;

}

.state-block .table th:first-child,
.state-block .table td:first-child {
    text-align: left;
    font-weight: 400;

}

.state-block .table td {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000000;
    padding: 10px 0;
    font-weight: 600;
}

.state-block .table td .badge {
    font-size: 12px;
    padding: 1px 10px;
    font-weight: 600;
    min-width: 50px;
    border-radius: 7px;
    margin-bottom: 0;
}


.state-block .table .badge i {
    font-size: 6px;
    position: relative;
    top: -2px;
    margin-right: 3px;
}

.owl-dots button.owl-dot.active {
    background-color: var(--bs-dark);
    width: 10px;
    height: 10px;
}

.owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #DCE0E8;
    margin: 0 3px;
}

/* Media Query */


@media (min-width: 1401px) {
    #wrapper {
        padding-left: 280px;
        padding-top: 67px;
    }

    #wrapper.toggled {
        padding-left: 60px;
    }

    #sidebar-wrapper {
        width: 280px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    #wrapper.toggled {
        padding-left: 0px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 60px;
    }
}

@media (min-width: 577px) {
    #sidebar-toggle .bi-list {
        color: white;
    }
}


@media (max-width: 1200px) {
    #content-wrapper {
        padding: 30px 30px 50px 30px;
    }

    .user-dashboard .state-block p {
        font-size: 11px;
    }


}

@media (max-width: 1400px) {
    #wrapper {
        padding-left: 0;
    }

    #content-wrapper {
        padding: 90px 30px 50px 30px;
    }

    .user-dashboard .state-block .card-body h4 {
        font-size: 18px;
    }

    .user-dashboard .state-block .card-body h3 {
        font-size: 20px;

    }

    .navbar {
        padding: 6px 20px;
    }

    .navbar-nav {
        flex-direction: inherit;
    }

}

@media (min-width: 1401px) {

    .fa-times-sidebar,
    .menu-mb {
        display: none !important;
    }
}

@media (min-width: 992px) {

    /* 'lg' breakpoint in Bootstrap 5 */
    .w-lg-25 {
        width: 25% !important;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {


    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }


    header .navbar-light .navbar-nav .nav-link {
        padding: 8px 0px 8px;
    }
}

@media (max-width: 767px) {

    #wrapper {
        padding-left: 0;
    }


    header .navbar-light .navbar-nav .active > .nav-link,
    header .navbar-light .navbar-nav .nav-item:hover .nav-link {
        border-bottom: 0;
    }

    .navbar-light .navbar-toggler:focus {
        outline: none;
    }

    #sidebar-wrapper {
        width: 0;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 280px;
        box-shadow: 0 0 11px #0000002e;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -280px;
    }

    #content-wrapper {
        position: relative;
        padding: 90px 20px 30px 20px;
    }

    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }

    .funnel-block h4 {
        font-size: 20px;
    }

}

@media (max-width: 576px) {

    .funnel-block ul {
        padding: 3px 0 4px;
    }


    .funnel-block ul li h6 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .funnel-block ul li p {
        font-size: 11px;
        line-height: 16px;
    }

    .funnel-block:after {
        height: 537px;
        width: 140px;
        top: -8px;
        left: 50%;
        margin-left: -65px;
    }

    .funnel-block ul li img {
        width: 13px;
    }

    .navbar {
        background: transparent !important;
        box-shadow: none;
    }

    .menu-mb {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-mb img {
        width: 200px;
    }

    header .navbar {
        display: flex;
        position: relative;
        padding: 20px 15px 10px;
    }

    .filter-btn {
        display: flex;
        justify-content: flex-end;
    }


    #content-wrapper {
        padding: 20px 20px 20px 20px;
    }

    /*.btn-danger {*/
    /*    background: #ffffff !important;*/
    /*    color: #2F4355;*/
    /*    border: 1px solid #ffffff !important;*/
    /*    border-radius: 6px;*/
    /*}*/
    .btn-danger:not(:disabled):not(.disabled).active,
    .btn-danger:not(:disabled):not(.disabled):active,
    .show > .btn-danger.dropdown-toggle {
        color: #2F4355;
    }

    .btn-danger:focus {
        color: #2F4355;
    }

    .btn-danger:hover {
        color: #2F4355;
    }

    #target-date-form {
        padding-right: 5px;
    }

    .avatar {
        width: 22px;
        margin-right: 3px;
    }

    .sidebar-nav > li {
        padding: 10px 20px;
    }

    .sidebar-nav > li {
        padding: 10px 15px;
    }

    .number {
        line-height: 65px !important;
        font-size: 50px !important;
        color: var(--bs-dark) !important;
    }

    .user-dashboard .state-block .card-body h4 {
        margin-bottom: 0;
        margin-top: 10px;
    }

    .user-dashboard .state-block .icon-arrow-down {

        font-size: 34px;
        position: absolute;
        left: 36px;
        margin-top: -51px;
    }

    .user-dashboard .state-block .badge.badge-danger {
        background: rgba(255, 224, 224, 1);
        color: rgba(97, 97, 97, 1);
    }

    .user-dashboard .state-block .d-flex .dashed-line {
        width: 69%;
    }

}