
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: clip !important;
}


.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}


.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: #f2edf3;
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #ebedf2;
}
.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
    vertical-align: inherit;
}
.table > thead {
    vertical-align: bottom;
}
.table > :not(:first-child) {
    border-top: 2px solid currentColor;
}

-top {
    caption-side: top;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
    border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.form-label {
    margin-bottom: 0.5rem;
}

.col-form-label {
    padding-top: calc(0.94rem + 1px);
    padding-bottom: calc(0.94rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.94rem 1.375rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1;
    color: #212529;
    background-color: color(white);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    -webkit-transition: border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
    height: 1em;
}
.form-control::-webkit-input-placeholder {
    color: #c9c8c8;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #c9c8c8;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #c9c8c8;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #c9c8c8;
    opacity: 1;
}
.form-control::placeholder {
    color: #c9c8c8;
    opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
.form-control::file-selector-button {
    padding: 0.94rem 1.375rem;
    margin: -0.94rem -1.375rem;
    -webkit-margin-end: 1.375rem;
    margin-inline-end: 1.375rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
    padding: 0.94rem 1.375rem;
    margin: -0.94rem -1.375rem;
    -webkit-margin-end: 1.375rem;
    margin-inline-end: 1.375rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

textarea.form-control {
    min-height: 2.875rem;
}

textarea.form-control-sm {
    min-height: 2.575rem;
}

textarea.form-control-lg {
    min-height: 3.175rem;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-select {
        -webkit-transition: none;
        transition: none;
    }
}
.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}
.form-select:disabled {
    background-color: #e9ecef;
}
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0.1em;
    margin-bottom: 0.125rem;
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
    z-index: 3;
}
.input-group .btn {
    position: relative;
    z-index: 2;
}
.input-group .btn:focus {
    z-index: 3;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .btn {
    padding: 0.94rem 1.94rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .btn {
    padding: 0.5rem 0.81rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 3rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1;
    color: #343a40;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.875rem 2.5rem;
    font-size: 0.875rem;
    border-radius: 0.1875rem;
    -webkit-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        transition: none;
    }
}
.btn:hover {
    color: #fff;
}

.btn:disabled,
.btn.disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}

.btn-primary {
    color: #000;
    background-color: #052b4a;
    border-color: #052b4a;
}

.btn-secondary {
    color: #000;
    background-color: #c3bdbd;
    border-color: #c3bdbd;
}
.btn-secondary:hover {
    color: #000;
    background-color: #ccc7c7;
    border-color: #c9c4c4;
}
 .btn-secondary,
.btn-secondary:focus {
    color: #000;
    background-color: #ccc7c7;
    border-color: #c9c4c4;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(166, 161, 161, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(166, 161, 161, 0.5);
}
 .btn-secondary,
 .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    color: #000;
    background-color: #cfcaca;
    border-color: #c9c4c4;
}
 .btn-secondary:focus,
 .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(166, 161, 161, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(166, 161, 161, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
    color: #000;
    background-color: #c3bdbd;
    border-color: #c3bdbd;
}

.btn-success {
    color: #000;
    background-color: #1bcfb4;
    border-color: #1bcfb4;
}
.btn-success:hover {
    color: #000;
    background-color: #3dd6bf;
    border-color: #32d4bc;
}
 .btn-success,
.btn-success:focus {
    color: #000;
    background-color: #3dd6bf;
    border-color: #32d4bc;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(23, 176, 153, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(23, 176, 153, 0.5);
}
 .btn-success,
 .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
    color: #000;
    background-color: #49d9c3;
    border-color: #32d4bc;
}
 .btn-success:focus,
 .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(23, 176, 153, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(23, 176, 153, 0.5);
}
.btn-success:disabled,
.btn-success.disabled {
    color: #000;
    background-color: #1bcfb4;
    border-color: #1bcfb4;
}

.btn-info {
    color: #000;
    background-color: #198ae3;
    border-color: #198ae3;
}
.btn-info:hover {
    color: #000;
    background-color: #3c9ce7;
    border-color: #3096e6;
}
 .btn-info,
.btn-info:focus {
    color: #000;
    background-color: #3c9ce7;
    border-color: #3096e6;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(21, 117, 193, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(21, 117, 193, 0.5);
}
 .btn-info,
 .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
    color: #000;
    background-color: #47a1e9;
    border-color: #3096e6;
}
 .btn-info:focus,
 .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(21, 117, 193, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(21, 117, 193, 0.5);
}
.btn-info:disabled,
.btn-info.disabled {
    color: #fff;
    background-color: #198ae3;
    border-color: #198ae3;
}
.btn .btn-warning {
    color: white !important;

}
i.fa.fa-pen {
    color: #fff;
}
.btn-warning {
    color: #fff;
    background-color: #fed713;
    border-color: #fed713;
}
.btn-warning:hover {
    color: #fff;
    background-color: #fedd36;
    border-color: #fedb2b;
}
 .btn-warning,
.btn-warning:focus {
    color: #fff;
    background-color: #fedd36;
    border-color: #fedb2b;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(216, 183, 16, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(216, 183, 16, 0.5);
}
 .btn-warning,
 .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #fedf42;
    border-color: #fedb2b;
}
 .btn-warning:focus,
 .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(216, 183, 16, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(216, 183, 16, 0.5);
}
.btn-warning:disabled,
.btn-warning.disabled {
    color: #fff;
    background-color: #fed713;
    border-color: #fed713;
}

.btn-danger:hover {
    color: #fff;
    background-color: #ef4646;
    border-color: #ef4646;
}

 .btn-danger,
.btn-danger:focus {
    color: #fff;
    background-color: #fe90a6;
    border-color: #fe89a1;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(216, 105, 128, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(216, 105, 128, 0.5);
}
 .btn-danger,
 .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
    color: #000;
    background-color: #fe96ab;
    border-color: #fe89a1;
}
 .btn-danger:focus,
 .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(216, 105, 128, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(216, 105, 128, 0.5);
}
.btn-danger:disabled,
.btn-danger.disabled {
    color: #000;
    background-color: #fe7c96;
    border-color: #fe7c96;
}


.btn-lg,
.btn-group-lg > .btn {
    padding: 1rem 3rem;
    font-size: 0.875rem;
    border-radius: 0.1875rem;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 0.5rem 0.81rem;
    font-size: 0.875rem;
    border-radius: 0.1875rem;
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none ;
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    -webkit-transition: width 0.35s ease;
    transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        -webkit-transition: none;
        transition: none;
    }
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ebedf2;
    border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 0.125rem;
}

.dropdown-menu-start {
    --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0;
}

.dropdown-menu-end {
    --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto;
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }
    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-sm-end {
        --bs-position: end;
    }
    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }
    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-md-end {
        --bs-position: end;
    }
    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }
    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-lg-end {
        --bs-position: end;
    }
    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }
    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xl-end {
        --bs-position: end;
    }
    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }
    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xxl-end {
        --bs-position: end;
    }
    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}

.dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-toggle::after {
    vertical-align: 0;
}

 .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

 .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

 .dropdown-toggle::after {
    display: none;
}


 .dropdown-toggle:empty::after {
    margin-left: 0;
}


.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #ebedf2;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #343a40;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent;
}
.dropdown-item-text {
    display: block;
    padding: 0.25rem 1rem;
    color: #343a40;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-toggle-split {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
}
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
    margin-left: 0;
}
 .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.6075rem;
    padding-left: 0.6075rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
    width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .nav-link {
        -webkit-transition: none;
        transition: none;
    }
}
.nav-link:hover,
.nav-link:focus {
    color: #0a58ca;
}
.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.nav-link:hover,
.nav-link:focus {
    border-color: #ebedf2 #ebedf2 #ebedf2;
    isolation: isolate;
}
.nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}
.nav-link.active,
.nav-item.show .nav-link {
    color: #343a40;
    background-color: #ffffff;
    border-color: #ebedf2 #ebedf2 #ffffff;
}
.dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-link {
    background: none;
    border: 0;
    border-radius: 0.25rem;
}

.nav-link.active,
.show > .nav-link {
    color: #fff;
    background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}
.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
}

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
    transition: -webkit-box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        -webkit-transition: none;
        transition: none;
    }
}
.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@media (min-width: 576px) {

     .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
     .navbar-nav .dropdown-menu {
        position: absolute;
    }
     .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

     .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
     .navbar-toggler {
        display: none;
    }

     .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        transform: none;
    }

 
}

@media (min-width: 768px) {

     .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
     .navbar-nav .dropdown-menu {
        position: absolute;
    }
     .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

     .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
     .navbar-toggler {
        display: none;
    }
     .offcanvas-header {
        display: none;
    }
     .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        transform: none;
    }
     .offcanvas-top,
     .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }
     .offcanvas-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 992px) {
    -lg {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    -lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    -lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    -lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    -lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    -lg .navbar-toggler {
        display: none;
    }
    -lg .offcanvas-header {
        display: none;
    }
    -lg .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        transform: none;
    }
    -lg .offcanvas-top,
    -lg .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }
    -lg .offcanvas-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1200px) {

     .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
     .navbar-nav .dropdown-menu {
        position: absolute;
    }
     .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
     .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
     .navbar-toggler {
        display: none;
    }
     .offcanvas-header {
        display: none;
    }
     .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        transform: none;
    }
     .offcanvas-top,
     .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }
     .offcanvas-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1400px) {

     .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
     .navbar-nav .dropdown-menu {
        position: absolute;
    }
     .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
     .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
     .navbar-toggler {
        display: none;
    }
 
     .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        transform: none;
    }

}


 .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
 .navbar-nav .dropdown-menu {
    position: absolute;
}
 .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

 .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
 .navbar-toggler {
    display: none;
}

.navbar-dark .navbar-brand {
    color: #fff;
}
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
    color: #fff;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.3125rem;
}
.card > hr {
    margin-right: 0;
    margin-left: 0;
}
.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}
.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.56rem 1.13rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/")
        /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

.breadcrumb-item.active {
    color: #495057;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    list-style: none;
    margin: 0 auto;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}
.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

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

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        -webkit-transition: none;
        transition: none;
    }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-content {
    max-height: 100%;
    overflow: hidden;
}
.modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 20px);
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #f2edf3;
    background-clip: padding-box;
    border: 1px solid #ebedf2;
    border-radius: 0.3rem;
    outline: 0;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #ebedf2;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
    padding: 12.5px 13px;
    margin: -12.5px -13px -12.5px auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0.9375rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.6875rem;
    border-top: 1px solid #ebedf2;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
    margin: 0.25rem;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 30px auto;
    }
    .modal-dialog-scrollable {
        height: calc(100% - 60px);
    }
    .modal-dialog-centered {
        min-height: calc(100% - 60px);
    }

}




.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        -webkit-transition: none;
        transition: none;
    }
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentColor;
    opacity: 0.5;
}
.placeholder.btn::before {
    display: inline-block;
    content: "";
}



.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.vr {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentColor;
    opacity: 0.25;
}

.align-middle {
    vertical-align: middle !important;
}
.float-end {
    float: right !important;
}

.d-flex,
.page-header,
.loader-demo-box,
.list-wrapper ul li,
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item,
.navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-profile .nav-link {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}


.d-none {
    display: none !important;
}


.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.border {
    border: 1px solid #ebedf2 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #ebedf2 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-right: 1px solid #ebedf2 !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: 1px solid #ebedf2 !important;
}


.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.justify-content-start,
.list-wrapper ul li {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between,
.page-header {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.justify-content-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center,
.page-header,
.loader-demo-box,
.list-wrapper ul li,
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

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

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.modal-dialog {
    margin-top: 0 !important;
}

.mt-2,
.template-demo > .btn-group,
.template-demo > .btn-group-vertical,
.template-demo .circle-progress {
    margin-top: 0.5rem !important;
}

.mt-3,
.template-demo > .btn,
.template-demo > .btn-toolbar {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}
.me-0,
.rtl
    .navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item
    i {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2,
.template-demo > .btn-group,
.template-demo > .btn-group-vertical,
.template-demo > .dropdown {
    margin-right: 0.5rem !important;
}

.me-3,
.template-demo > .btn,
.template-demo > .btn-toolbar {
    margin-right: 1rem !important;
}

.me-4,
.rtl .navbar .navbar-menu-wrapper .search-field {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto,
.rtl .list-wrapper .remove {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3,
.template-demo .circle-progress-block {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0,
.rtl .preview-list .preview-item .preview-thumbnail .preview-icon i,
.rtl .list-wrapper .remove,
.rtl .navbar .navbar-menu-wrapper .search-field {
    margin-left: 0 !important;
}


/* rtl:end:remove */
.text-primary,
.list-wrapper .completed .remove {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary,
.list-wrapper .remove {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}



.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted,
.preview-list .preview-item .preview-item-content p .content-category {
    --bs-text-opacity: 1;
    color: #9c9fa6 !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-primary-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-secondary-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-success-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-warning-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-danger-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-light-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-black-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-white-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-body-bg-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

.bg-gradient {
    background-image: var(--bs-gradient) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/*-------------------------------------------------------------------*/
/* === Template mixins === */
/* Miscellaneous Mixins */
.list-wrapper ul li .form-check,
.list-wrapper ul li .form-check .form-check-label {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
}

/* Animation Mixins */
@-webkit-keyframes dropdownAnimation {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }
}
@keyframes dropdownAnimation {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }
}

.dropdownAnimation,
.navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu {
    -webkit-animation-name: dropdownAnimation;
    animation-name: dropdownAnimation;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.infinite-spin {
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/*-------------------------------------------------------------------*/
/* === Core Styles === */
/* Reset Styles */
body {
    padding: 0;
    margin: 0;
    overflow-x: clip;
    /* overflow-x: hidden;  */
}

.form-control,
.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a,
div,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
p,
span {
    text-shadow: none;
    font-family: 'Outfit', sans-serif;
}

[type="button"]:focus,
a:active,
a:focus,
a:visited,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner,
select::-moz-focus-inner {
    outline: 0;
}

input,
.form-control:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    outline-width: 0;
    outline-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline-style: none;
}

textarea {
    resize: none;
    overflow-x: hidden;
}

.btn,
.btn-group.open .dropdown-toggle,
.btn:active,
.btn:focus,
.btn:hover,
.btn:visited,
a,
a:active,
a:checked,
a:focus,
a:hover,
a:visited,
body,
button,
button:active,
button:hover,
button:visited,
div,
input,
input:active,
input:focus,
input:hover,
input:visited,
select,
select:active,
select:focus,
select:visited,
textarea,
textarea:active,
textarea:focus,
textarea:hover,
textarea:visited {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button,
button:active,
button:checked,
button:focus,
button:hover,
button:visited {
    outline: 0;
    outline-offset: 0;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: 0;
    outline-offset: 0;
}

.dropdown-menu > li > a:active,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:visited {
    outline: 0;
}

a:focus,
input:focus {
    border-color: transparent;
    outline: none;
}

/* Typography */
body {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: initial;
    line-height: normal;
    -webkit-font-smoothing: antialiased;
}


p {
    font-size: 0.875rem;
}

h1,
.h1,
.h1 {
    font-size: 2.19rem;
}

h2,
.h2,
.h2 {
    font-size: 1.88rem;
}

h3,
.h3,
.h3 {
    font-size: 1.56rem;
}

h4,
.h4,
.h4 {
    font-size: 1.13rem;
}

h5,
.h5,
.h5 {
    font-size: 1rem;
}

h6,
.h6,
.h6 {
    font-size: 0.9375rem;
}

p {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.display-1 {
    font-size: 3.75rem;
}
@media (max-width: 991px) {
    .display-1 {
        font-size: 3rem;
    }
}

.display-2 {
    font-size: 3.125rem;
}
@media (max-width: 991px) {
    .display-2 {
        font-size: 2.5rem;
    }
}

.display-3 {
    font-size: 2.5rem;
}
@media (max-width: 991px) {
    .display-3 {
        font-size: 2rem;
    }
}

.display-4 {
    font-size: 1.875rem;
}
@media (max-width: 991px) {
    .display-4 {
        font-size: 1.5rem;
    }
}

.display-5 {
    font-size: 1.25rem;
}
@media (max-width: 991px) {
    .display-5 {
        font-size: 1rem;
    }
}

.blockquote {
    padding: 1.25rem;
    border: 1px solid #ebedf2;
}

address p {
    margin-bottom: 0;
}

.blockquote-primary {
    border-color: #052b4a;
}
.blockquote-primary .blockquote-footer {
    color: #052b4a;
}

.blockquote-secondary {
    border-color: #c3bdbd;
}
.blockquote-secondary .blockquote-footer {
    color: #c3bdbd;
}

.blockquote-success {
    border-color: #1bcfb4;
}
.blockquote-success .blockquote-footer {
    color: #1bcfb4;
}

.blockquote-info {
    border-color: #198ae3;
}
.blockquote-info .blockquote-footer {
    color: #198ae3;
}

.blockquote-warning {
    border-color: #fed713;
}
.blockquote-warning .blockquote-footer {
    color: #fed713;
}

.blockquote-danger {
    border-color: #fe7c96;
}
.blockquote-danger .blockquote-footer {
    color: #fe7c96;
}

.blockquote-light {
    border-color: #f8f9fa;
}
.blockquote-light .blockquote-footer {
    color: #f8f9fa;
}

.blockquote-dark {
    border-color: #3e4b5b;
}
.blockquote-dark .blockquote-footer {
    color: #3e4b5b;
}

.error-page h1,
.error-page .h1 {
    font-size: 12rem;
}
@media (max-width: 991px) {
    .error-page h1,
    .error-page .h1 {
        font-size: 8rem;
    }
}

.icon-lg {
    font-size: 2.5rem;
}

.icon-md {
    font-size: 1.875rem;
}

.icon-sm {
    font-size: 1rem;
}

/* Miscellanoeous */
body,
html {
    /* overflow-x: hidden; */
    overflow-x: auto;
    padding-right: 0 !important;
    background: #ffffff;
}

*:-moz-full-screen,
*:-webkit-full-screen,
*:fullscreen *:-ms-fullscreen {
    overflow: auto;
}

.container-scroller {
    overflow: hidden;
}

pre {
    background: color(gray-lighter);
    padding: 15px;
    font-size: 14px;
}

code {
    padding: 5px;
    color: #fe7c96;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    border-radius: 4px;
}

.page-header {
    margin: 0 0 1.5rem 0;
}
.page-header .breadcrumb {
    border: 0;
    margin-bottom: 0;
}

.page-title {
    color: #343a40;
    font-size: 1.125rem;
    margin-bottom: 0;
}
.page-title .page-title-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    text-align: center;
    /* -webkit-box-shadow: 0px 3px 8.3px 0.7px #191a1999;
    box-shadow: 0px 3px 8.3px 0.7px #191a1987;*/
}
.page-title .page-title-icon i {
    font-size: 0.9375rem;
    line-height: 36px;
}

/* Footer */
.footer {
    background: #f2edf3;
    color: color(dark);
    border-top: 1px solid #e7dee9;
    padding: 30px 1rem;
    transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    font-size: calc(0.875rem - 0.05rem);
    font-family: 'Outfit', sans-serif;
}
.footer a {
    color: #1bcfb4;
    font-size: inherit;
}
@media (max-width: 991px) {
    .footer {
        margin-left: 0;
        width: 100%;
    }
}

/* Utilities */
.grid-margin,
.purchase-popup {
    margin-bottom: 2.5rem;
}

@media (min-width: 576px) {
    .grid-margin-sm-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .grid-margin-md-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .grid-margin-lg-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .grid-margin-xl-0 {
        margin-bottom: 0;
    }
}

.img-lg {
    width: 92px;
    height: 92px;
}

.img-sm {
    width: 43px;
    height: 43px;
}

.img-xs {
    width: 37px;
    height: 37px;
}

.img-ss,
.image-grouped .text-avatar,
.image-grouped img {
    width: 35px;
    height: 35px;
}

.stretch-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
}
.stretch-card > .card {
    width: 100%;
    min-width: 100%;
}

@media (min-width: 576px) {
    .border-right-sm {
        border-right: 1px solid #ebedf2;
    }
}

@media (min-width: 768px) {
    .border-right-md {
        border-right: 1px solid #ebedf2;
    }
}

@media (min-width: 992px) {
    .border-right-lg {
        border-right: 1px solid #ebedf2;
    }
}

@media (min-width: 576px) {
    .border-left-sm {
        border-left: 1px solid #ebedf2;
    }
}

@media (min-width: 768px) {
    .border-left-md {
        border-left: 1px solid #ebedf2;
    }
}

@media (min-width: 992px) {
    .border-left-lg {
        border-left: 1px solid #ebedf2;
    }
}

.text-gray,
.card .card-subtitle {
    color: #8c8c8c;
}

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

.flex-grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.font-weight-light {
    font-family: 'Outfit', sans-serif;
}

.font-weight-bold {
    font-family: 'Outfit', sans-serif;
}

.font-weight-normal {
    font-family: 'Outfit', sans-serif;
}

.image-grouped {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.image-grouped .text-avatar,
.image-grouped img {
    border-radius: 100%;
    margin-left: -10px;
    z-index: 0;
    border: 4px solid #fff;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-property: "box-shadow", "z-index", "transform",
        "border-width", "box-shadow", "transform";
    transition-property: "box-shadow", "z-index", "transform", "border-width",
        "box-shadow", "transform";
    transition-property: "box-shadow", "z-index", "transform", "border-width";
}
.image-grouped .text-avatar:first-child,
.image-grouped img:first-child {
    margin-left: 0;
}
.image-grouped .text-avatar:hover,
.image-grouped img:hover {
    z-index: 1;
    -webkit-box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    border-width: 0;
}
.image-grouped .text-avatar {
    color: #052b4a;
    font-size: 11px;
    font-weight: 600;
}

.aligner-wrapper {
    position: relative;
}
.aligner-wrapper .absolute {
    position: absolute;
}
.aligner-wrapper .absolute.absolute-center {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.aligner-wrapper .absolute.left {
    left: 0;
}
.aligner-wrapper .absolute.right {
    right: 0;
}
.aligner-wrapper .absolute.bottom {
    bottom: 0;
}
.aligner-wrapper .absolute.top {
    top: 0;
}

.v-strock-1 {
    width: 2px;
}

.v-strock-2 {
    width: 3px;
}

.v-strock-3 {
    width: 4px;
}

.v-strock-4 {
    width: 5px;
}

.dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}
.dot-indicator.dot-indicator-sm {
    width: 6px;
    height: 6px;
}

.bg-gradient-primary {
    background: linear-gradient(to right, #2e2f2e, #5e5e5e) !important;
    border: none !important;
}

.bg-gradient-secondary {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e7ebf0),
        to(#868e96)
    ) !important;
    background: linear-gradient(to right, #e7ebf0, #868e96) !important;
    border: none !important;
}

.bg-gradient-success {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#0dcaf0),
        to(#198ae3)
    ) !important;
    background: linear-gradient(to right, #198ae3, #0dcaf0) !important;
    border: none !important;
}

.bg-gradient-info {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#90caf9),
        color-stop(99%, #6904df)
    ) !important;
    background: linear-gradient(to right, #90caf9, #6904df 99%) !important;
    border: none !important;
}

.bg-gradient-warning {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#0dcaf0),
        to(#198ae3)
    ) !important;
    background: linear-gradient(to right, #198ae3, #0dcaf0) !important;
    border: none !important;
}

.bg-gradient-danger {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#191a19),
        to(#198754)
    ) !important;
    background: linear-gradient(to right, #191a19, #464a48) !important;
    border: none !important;
}

.bg-gradient-light {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#f4f4f4),
        to(#e4e4e9)
    ) !important;
    background: linear-gradient(to bottom, #f4f4f4, #e4e4e9) !important;
    border: none !important;
}

.bg-gradient-dark {
    background: linear-gradient(89deg, #5e7188, #3e4b5b) !important;
}

/* Demo Styles */
.template-demo .slider-wrap {
    height: 100px;
}

.template-demo .progress {
    margin-top: 1.5rem;
}

.template-demo > h2,
.template-demo > .h2,
.template-demo > h3,
.template-demo > .h3,
.template-demo > h4,
.template-demo > .h4,
.template-demo > h5,
.template-demo > .h5,
.template-demo > h6,
.template-demo > .h6,
.template-demo > h1,
.template-demo > .h1 {
    border-top: 1px solid #ebedf2;
    padding: 0.5rem 0 0;
}

.template-demo .ul-slider.noUi-horizontal {
    margin-top: 2rem;
}

.template-demo .ul-slider.noUi-vertical {
    margin-right: 2rem;
}

.template-demo > .dropdown {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.template-demo nav .breadcrumb {
    margin-bottom: 1.375rem;
}

.template-demo nav:last-child .breadcrumb {
    margin-bottom: 0;
}

.template-demo .editable-form > .form-group {
    border-bottom: 1px solid #ebedf2;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
}

.template-demo .circle-progress {
    padding: 15px;
}

.demo-modal {
    position: static;
    display: block;
}
.demo-modal .modal-dialog.modal-lg {
    max-width: 100%;
}

.loader-demo-box {
    width: 100%;
    height: 200px;
}

.dropdown-menu-static-demo {
    height: 250px;
    margin-bottom: 20px;
}

.rounded-legend ul li {
    list-style-type: none;
    color: #9c9fa6;
    font-size: 0.75rem;
}
.rounded-legend ul li .legend-dots {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 0.5rem;
}
.rtl .rounded-legend ul li .legend-dots {
    margin-left: 0.5rem;
}

.rounded-legend.legend-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.rounded-legend.legend-horizontal ul li {
    display: inline-block;
    margin-right: 1.5rem;
}
.rtl .rounded-legend.legend-horizontal ul li {
    margin-right: auto;
    margin-left: 1.5rem;
}

.rounded-legend.legend-top-right ul {
    float: right;
}
.rtl .rounded-legend.legend-top-right ul {
    float: left;
}

.rounded-legend.legend-vertical ul li {
    margin-top: 1rem;
}

#proBanner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #000;
}
#proBanner .card-body-padding {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
@media (max-width: 766px) {
    #proBanner .card-body-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
#proBanner .buy-now-text {
    color: #ffffff;
}
@media (max-width: 766px) {
    #proBanner .buy-now-text {
        font-size: 10px;
        line-height: 1.5;
    }
}
#proBanner .btn.buy-now-btn {
    background: transparent;
    color: #88b6ff;
    border-radius: 10px;
    padding: 1rem 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
}
@media (max-width: 766px) {
    #proBanner .btn.buy-now-btn {
        min-width: 80px;
        padding: 1rem 0.5rem;
        font-size: 12px;
    }
}
#proBanner .btn#bannerClose i {
    margin-right: 1rem;
    font-size: 1.25rem;
}
@media (max-width: 766px) {
    #proBanner .btn#bannerClose i {
        font-size: 1rem;
        margin-right: 0;
    }
}
#proBanner a {
    text-decoration: none;
}
#proBanner a i {
    font-size: 1.25rem;
}
@media (max-width: 766px) {
    #proBanner a i {
        font-size: 1rem;
    }
}

.proBanner-padding-top {
    padding-top: 80px !important;
}

/* Dashboard */
.card-statistics .highlight-icon {
    height: 53px;
    width: 53px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
}
.card-statistics .highlight-icon i {
    font-size: 27px;
}

.card-statistics .card-col {
    border-right: 1px solid #ebedf2;
}
.card-statistics .card-col:last-child {
    border-right: none;
}
@media (max-width: 575.98px) {
    .card-statistics .card-col {
        padding-left: 0;
        padding-right: 0;
        position: relative;
        border: none;
    }
    .card-statistics .card-col:first-child:after,
    .card-statistics .card-col:first-child:before,
    .card-statistics .card-col:nth-child(2):after,
    .card-statistics .card-col:nth-child(2):before,
    .card-statistics .card-col:nth-child(3):after,
    .card-statistics .card-col:nth-child(3):before {
        content: "";
        position: absolute;
        background: #ebedf2;
    }
    .card-statistics .card-col:first-child:before {
        bottom: 0;
        width: 94.2%;
        height: 1px;
        right: 0;
    }
    .card-statistics .card-col:first-child:after {
        bottom: 0;
        width: 1px;
        height: 100%;
        right: 0;
    }
    .card-statistics .card-col:nth-child(2):before {
        bottom: 0;
        width: 94.2%;
        height: 1px;
        left: 0;
    }
    .card-statistics .card-col:nth-child(3):before {
        width: 1px;
        height: 100%;
        right: 0;
    }
}

.card-revenue-table .revenue-item {
    border-bottom: 1px solid #ebedf2;
}
.card-revenue-table .revenue-item:last-child {
    border-bottom: 0;
}
.card-revenue-table .revenue-item .revenue-desc {
    margin-right: auto;
    width: 80%;
}
.card-revenue-table .revenue-item .revenue-desc p {
    margin-bottom: 0;
}
.card-revenue-table .revenue-item .revenue-amount {
    margin-left: auto;
    width: 40%;
}
.card-revenue-table .revenue-item .revenue-amount p {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-align: right;
}
.rtl .card-revenue-table .revenue-item .revenue-amount p {
    text-align: left;
}

.card-revenue {
    background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1);
    background-size: cover;
    color: color(white);
}
.card-revenue .highlight-text {
    font-size: 1.875rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}
.card-revenue .badge {
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 1.125rem;
    padding: 0.5rem 1.25rem;
}

.product-chart-wrapper {
    height: 92%;
}

#dashboardTrendingProgress {
    width: 60px;
}

.dashboard-bar-chart-legend .col {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dashboard-bar-chart-legend .col .bg {
    margin-left: auto;
    margin-right: auto;
    height: 5px;
    width: 30px;
    display: block;
    margin-top: 5px;
}
.dashboard-bar-chart-legend .col:nth-child(1) .bg {
    background: #198ae3;
}
.dashboard-bar-chart-legend .col:nth-child(2) .bg {
    background: #052b4a;
}
.dashboard-bar-chart-legend .col:nth-child(3) .bg {
    background: #fe7c96;
}

.intro-banner {
    background: #dbe4ec;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-radius: 2px;
}
.intro-banner .banner-image {
    width: 24%;
    max-width: 100%;
}
.intro-banner .banner-image img {
    display: block;
    margin: auto;
}
.intro-banner .content-area {
    width: 58%;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.sales-mini-tabs {
    border-bottom: none;
}
.sales-mini-tabs .nav-item .nav-link {
    border: none;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 2px;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: "color";
    transition-property: "color";
}
.sales-mini-tabs .nav-item .nav-link.active {
    font-weight: 600;
    background: white;
    color: #052b4a;
}

.purchase-popup {
    background: #fff;
    padding: 15px 20px;
    border-radius: 3px;
}
.purchase-popup .btn {
    margin-right: 20px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 5px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.purchase-popup .btn.download-button {
    background: rgba(249, 249, 249, 0.7);
    color: #969292;
    border: 1px solid #d7d7d7;
}
.purchase-popup .btn.purchase-button {
    background-color: rgba(172, 50, 228, 0.9);
    background-image: -owg-linear-gradient(to right, #da8cff, #9a55ff);
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#da8cff),
        to(#9a55ff)
    );
    background-image: linear-gradient(to right, #da8cff, #9a55ff);
    color: #ffffff;
    border: none;
    line-height: 1;
    vertical-align: middle;
}
.purchase-popup p {
    margin-bottom: auto;
    margin-top: auto;
    color: #7e7e7e;
    font-weight: 400;
    vertical-align: middle;
    line-height: 1;
}
.purchase-popup i {
    vertical-align: middle;
    line-height: 1;
    margin: auto 0;
    color: #b1b1b1;
}

/*-------------------------------------------------------------------*/
/* === Components === */
/* Badges */
.badge {
    border-radius: 0.125rem;
    font-size: 11px;
    font-weight: initial;
    line-height: 1;
    padding: 0.375rem 0.5625rem;
    font-family: 'Outfit', sans-serif;
}
.badge.badge-pill {
    border-radius: 10rem;
}

/*Badge variations*/
.badge-primary {
    border: 1px solid #052b4a;
    background: #052b4a;
    color: #ffffff;
}

.badge-secondary {
    border: 1px solid #c3bdbd;
    background: #c3bdbd;
    color: #ffffff;
}

.badge-success,
.preview-list .preview-item .preview-thumbnail .badge.badge-online {
    border: 1px solid #1bcfb4;
    background: #1bcfb4;
    color: #ffffff;
}

.badge-info,
.preview-list .preview-item .preview-thumbnail .badge.badge-offline {
    border: 1px solid #198ae3;
    background: #198ae3;
    color: #ffffff;
}

.badge-warning,
.preview-list .preview-item .preview-thumbnail .badge.badge-busy {
    border: 1px solid #fed713;
    background: #fed713;
    color: #ffffff;
}

.badge-danger {
    border: 1px solid #fe7c96;
    background: #fe7c96;
    color: #ffffff;
}

.badge-light {
    border: 1px solid #f8f9fa;
    background: #f8f9fa;
    color: #ffffff;
}

.badge-dark {
    border: 1px solid #3e4b5b;
    background: #3e4b5b;
    color: #ffffff;
}

/*Badge gradient variations*/
.badge-gradient-primary {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#da8cff),
        to(#9a55ff)
    );
    background: linear-gradient(to right, #da8cff, #9a55ff);
    color: #ffffff;
}

.badge-gradient-secondary {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e7ebf0),
        to(#868e96)
    );
    background: linear-gradient(to right, #e7ebf0, #868e96);
    color: #ffffff;
}

.badge-gradient-success {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#84d9d2),
        to(#07cdae)
    );
    background: linear-gradient(to right, #84d9d2, #07cdae);
    color: #ffffff;
}

.badge-gradient-info {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#90caf9),
        color-stop(99%, #047edf)
    );
    background: linear-gradient(to right, #90caf9, #047edf 99%);
    color: #ffffff;
}

.badge-gradient-warning {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f6e384),
        to(#ffd500)
    );
    background: linear-gradient(to right, #f6e384, #ffd500);
    color: #ffffff;
}

.badge-gradient-danger {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffbf96),
        to(#fe7096)
    );
    background: linear-gradient(to right, #ffbf96, #fe7096);
    color: #ffffff;
}

.badge-gradient-light {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#f4f4f4),
        to(#e4e4e9)
    );
    background: linear-gradient(to bottom, #f4f4f4, #e4e4e9);
    color: #ffffff;
}

.badge-gradient-dark {
    background: linear-gradient(89deg, #5e7188, #3e4b5b);
    color: #ffffff;
}

/*Badge outlined variations*/
.badge-outline-primary {
    color: #052b4a;
    border: 1px solid #052b4a;
}

.badge-outline-secondary {
    color: #c3bdbd;
    border: 1px solid #c3bdbd;
}

.badge-outline-success {
    color: #1bcfb4;
    border: 1px solid #1bcfb4;
}

.badge-outline-info {
    color: #198ae3;
    border: 1px solid #198ae3;
}

.badge-outline-warning {
    color: #fed713;
    border: 1px solid #fed713;
}

.badge-outline-danger {
    color: #fe7c96;
    border: 1px solid #fe7c96;
}

.badge-outline-light {
    color: #f8f9fa;
    border: 1px solid #f8f9fa;
}

.badge-outline-dark {
    color: #3e4b5b;
    border: 1px solid #3e4b5b;
}

/* Bootstrap Progress */
.progress {
    border-radius: 3px;
    height: 8px;
}
.progress .progress-bar {
    border-radius: 3px;
}
.progress.progress-sm {
    height: 0.375rem;
}
.progress.progress-md {
    height: 8px;
}
.progress.progress-lg {
    height: 15px;
}
.progress.progress-xl {
    height: 18px;
}

/* Buttons */
.btn {
    font-size: 0.875rem;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    /* Buttons with only icons */
    /* Buttons with icon and text */
}
.btn i {
    font-size: 1rem;
}
.btn.btn-rounded {
    border-radius: 50px;
}
.btn.btn-fw {
    min-width: 150px;
}
.btn.btn-sm,
.btn-group-sm > .btn {
    font-size: 0.875rem;
}
.btn.btn-lg,
.btn-group-lg > .btn {
    font-size: 0.875rem;
}
.btn.btn-xs {
    padding: 0.5rem 0.75rem;
    font-size: 0.625rem;
}
.btn.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
}
.btn.btn-icon-text .btn-icon-prepend {
    margin-right: 0.5rem;
}
.btn.btn-icon-text .btn-icon-append {
    margin-left: 0.5rem;
}
.btn.btn-social-icon {
    width: 50px;
    height: 50px;
    padding: 0;
}

.btn-group .btn + .btn {
    border-left: 0;
}


/* Breadcrumbs */
.breadcrumb {
    border: 1px solid #ebedf2;
}
.breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
}
.breadcrumb .breadcrumb-item.active {
    color: rgba(52, 58, 64, 0.8);
}
.breadcrumb.breadcrumb-custom {
    padding: 0 0;
    border-color: #dbe3e6;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item {
    font-size: 0.875rem;
    background: #dbe3e6;
    padding: 0.56rem 10px;
    color: #000000;
    display: inline-block;
    vertical-align: top;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {
    background: transparent;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item:before {
    content: "";
}
.breadcrumb.breadcrumb-custom .breadcrumb-item a {
    position: relative;
    color: inherit;
    border: 1px solid #dbe3e6;
    display: inline-block;
    vertical-align: top;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item a:before,
.breadcrumb.breadcrumb-custom .breadcrumb-item a:after {
    position: absolute;
    top: -9px;
    width: 0;
    height: 0;
    content: "";
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item a:before {
    right: -22px;
    z-index: 3;
    border-left-color: #dbe3e6;
    border-left-style: solid;
    border-left-width: 12px;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item a:after {
    border-top: 21px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 12px solid #ffffff;
    top: -9px;
    right: -23px;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item span {
    display: inline-block;
    vertical-align: top;
}
.breadcrumb.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(52, 58, 64, 0.8);
}
.breadcrumb.bg-success,
.breadcrumb.bg-dark,
.breadcrumb.bg-danger,
.breadcrumb.bg-warning,
.breadcrumb.bg-primary,
.breadcrumb.bg-info {
    border: none;
}
.breadcrumb.bg-success .breadcrumb-item,
.breadcrumb.bg-dark .breadcrumb-item,
.breadcrumb.bg-danger .breadcrumb-item,
.breadcrumb.bg-warning .breadcrumb-item,
.breadcrumb.bg-primary .breadcrumb-item,
.breadcrumb.bg-info .breadcrumb-item {
    color: #ffffff;
}
.breadcrumb.bg-success .breadcrumb-item:before,
.breadcrumb.bg-dark .breadcrumb-item:before,
.breadcrumb.bg-danger .breadcrumb-item:before,
.breadcrumb.bg-warning .breadcrumb-item:before,
.breadcrumb.bg-primary .breadcrumb-item:before,
.breadcrumb.bg-info .breadcrumb-item:before {
    color: inherit;
}
.breadcrumb.bg-success .breadcrumb-item a,
.breadcrumb.bg-success .breadcrumb-item span,
.breadcrumb.bg-dark .breadcrumb-item a,
.breadcrumb.bg-dark .breadcrumb-item span,
.breadcrumb.bg-danger .breadcrumb-item a,
.breadcrumb.bg-danger .breadcrumb-item span,
.breadcrumb.bg-warning .breadcrumb-item a,
.breadcrumb.bg-warning .breadcrumb-item span,
.breadcrumb.bg-primary .breadcrumb-item a,
.breadcrumb.bg-primary .breadcrumb-item span,
.breadcrumb.bg-info .breadcrumb-item a,
.breadcrumb.bg-info .breadcrumb-item span {
    color: inherit;
}

/* Cards */
.card {
    overflow: auto;
    border: 0;
    background: #fff;
}

.card .card-body + .card-body {
    padding-top: 1rem;
}
.card .card-title {
    color: #343a40;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
}
.card .card-subtitle {
    font-family: 'Outfit', sans-serif;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}
.card .card-description {
    color: #76838f;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}
.card.card-outline-success {
    border: 1px solid theme-color("success");
}
.card.card-outline-primary {
    border: 1px solid theme-color("primary");
}
.card.card-outline-warning {
    border: 1px solid theme-color("warning");
}
.card.card-outline-danger {
    border: 1px solid theme-color("danger");
}
.card.card-rounded {
    border-radius: 5px;
}
.card.card-faded {
    background: #b5b0b2;
    border-color: #b5b0b2;
}
.card.card-circle-progress {
    color: #ffffff;
    text-align: center;
}
.card.card-img-holder {
    position: relative;
}
.card.card-img-holder .card-img-absolute {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}


/* Checkboxes and Radios */
.form-check {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
    padding-left: 0;
}
.form-check .form-check-label {
    display: inline-block;
    margin-left: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.rtl .form-check .form-check-label {
    margin-left: 0;
    margin-right: 1.75rem;
}
.form-check .form-check-label input {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}
.rtl .form-check .form-check-label input {
    left: auto;
    right: 0;
}
.form-check .form-check-label input[type="checkbox"] + .input-helper:before,
.form-check .form-check-label input[type="checkbox"] + .input-helper:after {
    position: absolute;
    top: 0;
    left: 0;
}
.rtl
    .form-check
    .form-check-label
    input[type="checkbox"]
    + .input-helper:before,
.rtl
    .form-check
    .form-check-label
    input[type="checkbox"]
    + .input-helper:after {
    left: auto;
    right: 0;
}
.form-check .form-check-label input[type="checkbox"] + .input-helper:before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: solid #052b4a;
    border-width: 2px;
    -webkit-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}
.form-check .form-check-label input[type="checkbox"] + .input-helper:after {
    -webkit-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    font-family: Material Design Icons;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    transform: scale(0);
    content: "\F12C";
    font-size: 0.9375rem;
    font-weight: bold;
    color: #ffffff;
}
.form-check
    .form-check-label
    input[type="checkbox"]:checked
    + .input-helper:before {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#da8cff),
        to(#9a55ff)
    );
    background: linear-gradient(to right, #da8cff, #9a55ff);
    border-width: 0;
}
.form-check
    .form-check-label
    input[type="checkbox"]:checked
    + .input-helper:after {
    width: 18px;
    opacity: 1;
    line-height: 18px;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.form-check
    .form-check-label
    input[type="checkbox"]:disabled
    + .input-helper:before {
    border-color: #ebedf2;
}
.form-check
    .form-check-label
    input[type="checkbox"]:disabled:checked
    + .input-helper:after {
    background: #ebedf2;
    color: #ffffff;
}
.form-check .form-check-label input[type="radio"] + .input-helper:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border: solid #052b4a;
    border-width: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}
.rtl .form-check .form-check-label input[type="radio"] + .input-helper:before {
    left: auto;
    right: 0;
}
.form-check .form-check-label input[type="radio"] + .input-helper:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    top: 6px;
    left: 6px;
    -webkit-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    transform: scale(0);
    position: absolute;
}
.rtl .form-check .form-check-label input[type="radio"] + .input-helper:after {
    left: auto;
    right: 6px;
}
.form-check-label {
    cursor: pointer;
  }
  


/* Dropdowns */

.dropdown .dropdown-menu {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    -webkit-box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35);
    box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35);
}
.dropdown .dropdown-menu .dropdown-item {
    font-size: 1rem;
    padding: 0.25rem 1.5rem;
}
.dropdown .dropdown-menu .dropdown-item:active {
    background: initial;
}
.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ffffff;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.input-group-append,
.input-group-prepend {
    color: #c9c8c8;
    width: auto;
    border: none;
}
.input-group-append ,
.input-group-prepend  {
    border-color: #ebedf2;
    padding: 0.94rem 0.75rem;
    color: #c9c8c8;
}

.form-control {
    border: 1px solid #ebedf2;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
}
.form-control:focus {
    background-color: #ffffff;
    color: #000000;
    outline: none;
}

.form-group label {
    font-size: 0.875rem;
    line-height: 1;
    vertical-align: top;
    margin-bottom: 0.5rem;
}

.form-group.has-danger .form-control {
    border-color: #fe7c96;
}

.form-group .file-upload-default {
    visibility: hidden;
    position: absolute;
}

.form-group .file-upload-info {
    background: transparent;
}

/* Lists */
ul,
ol,
dl {
    padding-left: 1rem;
    font-size: 0.875rem;
}
ul li,
ol li,
dl li {
    line-height: 1.8;
}

/* Preview */
.preview-list .preview-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}
.preview-list .preview-item:last-child {
    border-bottom: 0;
}
.preview-list .preview-item:hover {
    background: #e9ecef;
}
.preview-list .preview-item .form-check {
    margin-top: 8px;
    margin-right: 1rem;
}
.preview-list .preview-item .preview-thumbnail {
    color: color(white);
    position: relative;
}
.preview-list .preview-item .preview-thumbnail img,
.preview-list .preview-item .preview-thumbnail .preview-icon {
    width: 36px;
    height: 36px;
    border-radius: 100%;
}
.preview-list .preview-item .preview-thumbnail .preview-icon {
    padding: 6px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.preview-list .preview-item .preview-thumbnail .preview-icon i {
    font-size: 1.125rem;
    margin: 0;
}
.preview-list .preview-item .preview-thumbnail .badge {
    border: 2px solid color(white);
    border-radius: 100%;
    bottom: 5px;
    display: block;
    height: 14px;
    left: -5px;
    padding: 0;
    position: absolute;
    width: 14px;
}
.preview-list .preview-item .preview-item-content {
    line-height: 1;
    padding-left: 15px;
}
.preview-list .preview-item .preview-item-content:first-child {
    padding-left: 0;
}
.preview-list .preview-item .preview-item-content p {
    margin-bottom: 10px;
}
.preview-list .preview-item .preview-item-content p .content-category {
    font-family: "source-sans-pro-semibold", sans-serif;
    padding-right: 15px;
    border-right: 1px solid #ebedf2;
}
.rtl .preview-list .preview-item .preview-item-content {
    padding-left: 0;
    padding-right: 1rem;
    margin-right: 0;
    margin-left: auto;
}
.preview-list .preview-item .preview-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.preview-list .preview-item .preview-actions i {
    width: 29px;
    color: color(gray-lightest);
    height: 29px;
    border: 2px solid color(gray-lightest);
    border-radius: 100%;
    padding: 3px 6px;
    display: inline-block;
}
.preview-list .preview-item .preview-actions i:first-child {
    margin-right: 10px;
}

.preview-list.comment-preview .preview-item {
    padding: 0.87rem 0;
}
.preview-list.comment-preview .preview-item:first-child {
    padding-top: 0;
}
.preview-list.comment-preview .preview-item p {
    line-height: 27px;
}

.preview-list.bordered .preview-item {
    border-bottom: 1px solid #ebedf2;
}
.preview-list.bordered .preview-item:last-child {
    border-bottom: 0;
}

/* Navbar */
.navbar {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    transition: background 0.25s ease;
    -webkit-transition: background 0.25s ease;
    -moz-transition: background 0.25s ease;
    -ms-transition: background 0.25s ease;
}
.navbar .navbar-brand {
    width: 110px;
}
.navbar .navbar-brand-wrapper {
    transition: width 0.25s ease, background 0.25s ease;
    -webkit-transition: width 0.25s ease, background 0.25s ease;
    -moz-transition: width 0.25s ease, background 0.25s ease;
    -ms-transition: width 0.25s ease, background 0.25s ease;
    background: #fff;
    width: 260px;
    height: 70px;
}
@media (max-width: 991px) {
    .navbar .navbar-brand-wrapper {
        width: 55px;
    }
}
.navbar .navbar-brand-wrapper .navbar-brand {
    color: #27367f;
    font-size: 1.5rem;
    line-height: 48px;
    margin-right: 0;
    padding: 0.25rem 0;
    width: 100%;
}
.navbar .navbar-brand-wrapper .navbar-brand:active,
.navbar .navbar-brand-wrapper .navbar-brand:focus,
.navbar .navbar-brand-wrapper .navbar-brand:hover {
    color: #1b2658;
}
.navbar .navbar-brand-wrapper .navbar-brand img {
    width: calc(260px - 120px);
    max-width: 100%;
    margin: auto;
    vertical-align: middle;
}
.navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {
    display: none;
}
.navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini img {
    width: calc(70px - 50px);
    max-width: 100%;
    height: 28px;
    margin: auto;
}
.navbar .navbar-menu-wrapper {
    transition: width 0.25s ease;
    -webkit-transition: width 0.25s ease;
    -moz-transition: width 0.25s ease;
    -ms-transition: width 0.25s ease;
    color: #9c9fa6;
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% - 260px);
    height: 70px;
}
@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper {
        width: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.navbar .navbar-menu-wrapper .navbar-toggler {
    border: 0;
    color: inherit;
    height: 70px;
    border-radius: 0px;
    padding-left: 5px;
    padding-right: 20px;
    display: block;
}
.navbar .navbar-menu-wrapper .navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {
    font-size: 1.5rem;
}
@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {
        display: none;
    }
}
@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper .navbar-toggler.navbar-toggler-right {
        padding-left: 15px;
        padding-right: 11px;
        border-right: none;
    }
}
.navbar .navbar-menu-wrapper .search-field .input-group input {
    font-size: 0.875rem;
    padding: 0.5rem;
}
.navbar
    .navbar-menu-wrapper
    .search-field
    .input-group
    input:-ms-input-placeholder {
    font-size: 0.875rem;
    color: #9c9fa6;
    font-family: 'Outfit', sans-serif;
}
.navbar .navbar-menu-wrapper .search-field .input-group input:-moz-placeholder {
    font-size: 0.875rem;
    color: #9c9fa6;
    font-family: 'Outfit', sans-serif;
}
.navbar
    .navbar-menu-wrapper
    .search-field
    .input-group
    input::-moz-placeholder {
    font-size: 0.875rem;
    color: #9c9fa6;
    font-family: 'Outfit', sans-serif;
}
.navbar
    .navbar-menu-wrapper
    .search-field
    .input-group
    input::-webkit-input-placeholder {
    font-size: 0.875rem;
    color: #9c9fa6;
    font-family: 'Outfit', sans-serif;
}
.navbar .navbar-menu-wrapper .search-field .input-group i {
    font-size: 17px;
    margin-right: 0;
    color: #9c9fa6;
}
.navbar .navbar-menu-wrapper .search-field .input-group{
    background: transparent;
}
.navbar .navbar-menu-wrapper .count-indicator {
    position: relative;
}
.navbar .navbar-menu-wrapper .count-indicator .count-symbol,
.navbar .navbar-menu-wrapper .count-indicator .count-number {
    position: absolute;
    border-radius: 100%;
    border: 2px solid #ffffff;
}
.navbar .navbar-menu-wrapper .count-indicator .count-symbol {
    top: 17px;
    right: -3px;
    width: 10px;
    height: 10px;
}
.navbar .navbar-menu-wrapper .count-indicator .count-number {
    min-width: 14px;
    height: 14px;
    font-size: 0.5rem;
    color: #ffffff;
    bottom: 16px;
    right: -5px;
    line-height: 1;
    text-align: center;
}
.navbar .navbar-menu-wrapper .count-indicator:after {
    display: none;
}
.navbar .navbar-menu-wrapper .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {
    color: inherit;
    font-size: 0.875rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }
}
.navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link i {
    font-size: 1.25rem;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-toggle:after {
    color: #052b4a;
    font-size: 1rem;
}
.navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu {
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2);
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown {
    position: absolute;
    font-size: 0.9rem;
    margin-top: 0;
    padding: 0;
}
.rtl
    .navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown {
    right: auto;
    left: 0;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item {
    margin-bottom: 0;
    padding: 11px 13px;
    cursor: pointer;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item
    i {
    font-size: 17px;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item
    .ellipsis {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
}
.rtl
    .navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-item
    i {
    margin-left: 10px;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu.navbar-dropdown
    .dropdown-divider {
    margin: 0;
}
@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown {
        position: static;
    }
    .navbar
        .navbar-menu-wrapper
        .navbar-nav
        .nav-item.dropdown
        .navbar-dropdown {
        top: 70px;
        width: 100%;
        overflow-y: scroll;
        max-height: 600px;
        min-height: 100px;
    }
    .dropdown-menu.dropdown-menu-right.navbar-dropdown.preview-list.show {
        min-height: 600px !important;
    }
}
@media (min-width: 991px) {
    .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown {
        position: static;
    }
    .navbar
        .navbar-menu-wrapper
        .navbar-nav
        .nav-item.dropdown
        .navbar-dropdown {
        left: 63%;
        width: 32%;
        overflow: scroll;
        height: 406px;
    }
}

.navbar .navbar-menu-wrapper .navbar-nav .nav-item {
    padding-left: 20px;
    padding-right: 5px;
}
.navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {
    margin-right: 0;
    margin-left: 0;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-img {
    position: relative;
    width: 32px;
    height: 32px;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-img
    img {
    width: 32px;
    height: 32px;
    border-radius: 100%;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-img
    .availability-status {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid #ffffff;
    bottom: 5px;
    right: -5px;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-img
    .availability-status.online {
    background: #1bcfb4;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-img
    .availability-status.offline {
    background: #fe7c96;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-img
    .availability-status.busy {
    background: #fed713;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-text {
    margin-left: 1.25rem;
}
.rtl
    .navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-text {
    margin-left: 0;
    margin-right: 1.25rem;
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link
    .nav-profile-text
    p {
    line-height: 1;
}
@media (max-width: 767px) {
    .navbar
        .navbar-menu-wrapper
        .navbar-nav
        .nav-item.nav-profile
        .nav-link
        .nav-profile-text {
        display: none;
    }
}
.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.nav-profile
    .nav-link.dropdown-toggle:after {
    line-height: 2;
}
@media (min-width: 992px) {
    .navbar .navbar-menu-wrapper .navbar-nav.navbar-nav-right {
        margin-left: auto;
    }
    .rtl .navbar .navbar-menu-wrapper .navbar-nav.navbar-nav-right {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .navbar {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar .navbar-brand-wrapper {
        width: 75px;
    }
    .navbar .navbar-brand-wrapper .navbar-brand.brand-logo {
        display: none;
    }
    .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {
        display: inline-block;
    }
    .navbar-collapse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .navbar .navbar-brand-wrapper {
        width: 55px;
    }
    .navbar .navbar-brand-wrapper .brand-logo-mini {
        padding-top: 0px;
    }
}



/* Sidebar */
.sidebar {
    min-height: calc(100vh - 70px);
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 0;
    width: 260px;
    z-index: 11;
    transition: width 0.25s ease, background 0.25s ease;
    -webkit-transition: width 0.25s ease, background 0.25s ease;
    -moz-transition: width 0.25s ease, background 0.25s ease;
    -ms-transition: width 0.25s ease, background 0.25s ease;
}
.sidebar .nav {
    overflow: hidden;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 60px;
}
.sidebar .nav .nav-item {
    padding: 0 2.25rem;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    transition-property: background;
    -webkit-transition-property: background;
}
.sidebar .nav .nav-item .collapse {
    z-index: 999;
}



.sidebar .nav .nav-item .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    padding: 1.125rem 0 1.125rem 0;
    color: #3e4b5b;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
    transition-property: color;
    -webkit-transition-property: color;
}
.sidebar .nav .nav-item .nav-link i {
    color: inherit;
}
.sidebar .nav .nav-item .nav-link i.menu-icon {
    font-size: 1.125rem;
    line-height: 1;
    margin-left: auto;
    color: #052b4a;
}
.rtl .sidebar .nav .nav-item .nav-link i.menu-icon {
    margin-left: 0;
    margin-right: auto;
}
.sidebar .nav .nav-item .nav-link i.menu-icon:before {
    vertical-align: middle;
}
.sidebar .nav .nav-item .nav-link i.menu-arrow {
    font: normal normal normal 24px/1 "Material Design Icons";
    line-height: 1;
    font-size: 1.125rem;
    margin-left: auto;
    color: #9e9da0;
}
.rtl .sidebar .nav .nav-item .nav-link i.menu-arrow {
    margin-left: 0;
    margin-right: auto;
}
.sidebar .nav .nav-item .nav-link i.menu-arrow:before {

    font-size: inherit;
    color: inherit;
}
.sidebar .nav .nav-item .nav-link i.menu-arrow + .menu-icon {
    margin-left: 0.25rem;
}
.rtl .sidebar .nav .nav-item .nav-link i.menu-arrow + .menu-icon {
    margin-left: 0;
    margin-right: 0.25rem;
}
.sidebar .nav .nav-item .nav-link .menu-title {
    display: inline-block;
    font-size: 0.95rem;
    line-height: 1;
    vertical-align: middle;
    color: #052b4a;
    text-decoration: none;
}
.sidebar .nav .nav-item .nav-link .badge {
    margin-right: auto;
    margin-left: 1rem;
}
.sidebar .nav .nav-item .nav-link[aria-expanded="true"] .menu-arrow:before {
    content: "\f140";
}
.sidebar .nav .nav-item.active {
    background: #ffffff;
}
.sidebar .nav .nav-item.active > .nav-link .menu-title {
    color: #052b4a;
    font-family: 'Outfit', sans-serif;
}
.sidebar .nav .nav-item.active > .nav-link i {
    color: #052b4a;
}
.sidebar .nav .nav-item:hover {
    background: #fcfcfc;
}
.sidebar .nav .nav-item.nav-profile .nav-link {
    height: auto;
    line-height: 1;
    border-top: 0;
    padding: 1.25rem 0;
}
.sidebar .nav .nav-item.nav-profile .nav-link .nav-profile-image {
    width: 44px;
    height: 44px;
}
.sidebar .nav .nav-item.nav-profile .nav-link .nav-profile-image img {
    width: 44px;
    height: 44px;
    border-radius: 100%;
}
.sidebar .nav .nav-item.nav-profile .nav-link .nav-profile-text {
    margin-left: 1rem;
}
.rtl .sidebar .nav .nav-item.nav-profile .nav-link .nav-profile-text {
    margin-left: auto;
    margin-right: 1rem;
}
.sidebar .nav .nav-item.nav-profile .nav-link .nav-profile-badge {
    font-size: 1.125rem;
    margin-left: auto;
}
.rtl .sidebar .nav .nav-item.nav-profile .nav-link .nav-profile-badge {
    margin-left: 0;
    margin-right: auto;
}
.sidebar .nav .nav-item.sidebar-actions {
    margin-top: 1rem;
}
.sidebar .nav .nav-item.sidebar-actions .nav-link {
    border-top: 0;
    display: block;
    height: auto;
}
.sidebar .nav .nav-item.sidebar-actions:hover {
    background: initial;
}
.sidebar .nav .nav-item.sidebar-actions:hover .nav-link {
    color: initial;
}
.sidebar
    .nav:not(.sub-menu)
    > .nav-item:hover:not(.nav-category):not(.nav-profile)
    > .nav-link {
    color: #29323d;
}
.sidebar .nav.sub-menu {
    margin-bottom: 20px;
    margin-top: 0;
    list-style: none;
}
.sidebar .nav.sub-menu .nav-item {
    padding: 0;
}
.sidebar .nav.sub-menu .nav-item .nav-link {
    color: #888;
    padding: 0.75rem 2rem 0.75rem 2rem;
    position: relative;
    font-size: 0.8125rem;
    line-height: 1;
    height: auto;
    border-top: 0;
}

.rtl .sidebar .nav.sub-menu .nav-item .nav-link:before {
    left: auto;
    right: 0;
}
.sidebar .nav.sub-menu .nav-item .nav-link.active {
    color: #052b4a;
    background: transparent;
}
.sidebar .nav.sub-menu .nav-item .nav-link:hover {
    color: #555555;
}
.sidebar .nav.sub-menu .nav-item:hover {
    background: transparent;
}

/* style for off-canvas menu*/
@media screen and (max-width: 991px) {
    .sidebar-offcanvas {
        position: fixed;
        max-height: calc(100vh - 70px);
        top: 70px;
        bottom: 0;
        overflow: auto;
        right: -260px;
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }
    .sidebar-offcanvas.active {
        left: 0;
    }
}

/* Layouts */
.navbar.fixed-top + .page-body-wrapper {
    padding-top: 70px;
}

@media (min-width: 992px) {
    .sidebar-icon-only .navbar .navbar-brand-wrapper {
        width: 70px;
    }
    .sidebar-icon-only .navbar .navbar-brand-wrapper .brand-logo {
        display: none;
    }
    .sidebar-icon-only .navbar .navbar-brand-wrapper .brand-logo-mini {
        display: inline-block;
    }
    .sidebar-icon-only .navbar .navbar-menu-wrapper {
        width: calc(100% - 70px);
    }
    .sidebar-icon-only .sidebar {
        width: 70px;
    }
    .sidebar-icon-only .sidebar .nav {
        overflow: visible;
    }
    .sidebar-icon-only .sidebar .nav .nav-item {
        position: relative;
        padding: 0;
    }
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link {
        display: block;
        text-align: center;
    }
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title,
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link .badge,
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-sub-title {
        display: none;
    }
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title {
        border-radius: 0 5px 5px 0px;
    }
    .rtl.sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title {
        border-radius: 5px 0 0 5px;
    }
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link i.menu-icon {
        margin-right: 0;
        margin-left: 0;
    }
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link i.menu-arrow {
        display: none;
    }
    .sidebar-icon-only
        .sidebar
        .nav
        .nav-item
        .nav-link[aria-expanded]
        .menu-title {
        border-radius: 0 5px 0 0px;
    }
    .rtl.sidebar-icon-only
        .sidebar
        .nav
        .nav-item
        .nav-link[aria-expanded]
        .menu-title {
        border-radius: 5px 0 0 0;
    }
    .sidebar-icon-only .sidebar .nav .nav-item.nav-profile {
        display: none;
    }
    .sidebar-icon-only .sidebar .nav .nav-item.nav-category {
        display: none;
    }
    .sidebar-icon-only .sidebar .nav .nav-item.nav-doc {
        margin: 0;
    }
    .sidebar-icon-only .sidebar .nav .nav-item.nav-doc i {
        display: block;
    }
 
    .sidebar-icon-only
        .sidebar
        .nav
        .nav-item.hover-open
        .nav-link
        .menu-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fcfcfc;
        padding: 0.5rem 1.4rem;
        left: 70px;
        position: absolute;
        text-align: left;
        top: 0;
        bottom: 0;
        width: 190px;
        z-index: 9999;
        line-height: 1.8;
    }
    .rtl.sidebar-icon-only
        .sidebar
        .nav
        .nav-item.hover-open
        .nav-link
        .menu-title {
        left: auto;
        right: 70px;
        text-align: left;
    }
    .sidebar-icon-only
        .sidebar
        .nav
        .nav-item.hover-open
        .nav-link
        .menu-title:after {
        display: none;
    }
    .sidebar-icon-only .sidebar .nav .nav-item.hover-open .collapse,
    .sidebar-icon-only .sidebar .nav .nav-item.hover-open .collapsing {
        display: block;
        padding: 0.5rem 0;
        background: #fcfcfc;
        border-radius: 0 0 5px 0;
        position: absolute;
        left: 70px;
        width: 190px;
        z-index: 99999;
    }
    .rtl.sidebar-icon-only .sidebar .nav .nav-item.hover-open .collapse,
    .rtl.sidebar-icon-only .sidebar .nav .nav-item.hover-open .collapsing {
        left: auto;
        right: 70px;
        border-radius: 0 0 0 5px;
    }
    .sidebar-icon-only .sidebar .nav.sub-menu {
        padding: 0 0 0 1.5rem;
    }
    .sidebar-icon-only .sidebar .nav.sub-menu .nav-item .nav-link {
        text-align: left;
        padding-left: 20px;
    }
    .rtl.sidebar-icon-only .sidebar .nav.sub-menu .nav-item {
        margin-right: auto;
        margin-left: 0;
    }
    .rtl.sidebar-icon-only .sidebar .nav.sub-menu .nav-item .nav-link {
        text-align: right;
    }
    .rtl.sidebar-icon-only .sidebar .nav.sub-menu .nav-item .nav-link:before {
        left: 0;
        right: unset;
    }
    .sidebar-icon-only .sidebar .sidebar-actions {
        display: none;
    }
    .sidebar-icon-only .main-panel {
        width: calc(100% - 70px);
    }
}

.rtl {
    direction: rtl;
    text-align: right;
}
.rtl .sidebar .nav {
    padding-right: 0;
}
.rtl .product-chart-wrapper::-webkit-scrollbar,
.rtl .sidebar-fixed .nav::-webkit-scrollbar,
.rtl .table-responsive::-webkit-scrollbar,
.rtl ul.chats::-webkit-scrollbar {
    width: 0.5em;
}
.rtl .product-chart-wrapper::-webkit-scrollbar-track,
.rtl .sidebar-fixed .nav::-webkit-scrollbar-track,
.rtl .table-responsive::-webkit-scrollbar-track,
.rtl ul.chats::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.rtl .product-chart-wrapper::-webkit-scrollbar-thumb,
.rtl .sidebar-fixed .nav::-webkit-scrollbar-thumb,
.rtl .table-responsive::-webkit-scrollbar-thumb,
.rtl ul.chats::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.page-body-wrapper {
    min-height: calc(100vh - 70px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
}
.page-body-wrapper.full-page-wrapper {
    width: 100%;
    min-height: 100vh;
}

.main-panel {
    -webkit-transition: width 0.25s ease, margin 0.25s ease;
    transition: width 0.25s ease, margin 0.25s ease;
    width: 100%;
    min-height: calc(100vh - 70px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
}

.content-wrapper {
    background: #f2edf3;
    padding: 2.75rem 1.25rem;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/*# sourceMappingURL=style.css.map */
.content-wrapper-customise {
    background: #f2edf3;
    padding: 2.75rem 1.25rem;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media only screen and (max-width: 600px) {
    .content-wrapper-customise {
        background: #f2edf3;
        padding: 0.75rem 0rem;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.speedometer {
    background: #0f0f0f;
    position: relative;

    border-radius: 50%;
}

.speedometer .speedNobe {
    position: absolute;
    width: 100%;
    z-index: 10;
    transition: all 1s;
}

.speedometer .speedPosition {
    position: absolute;
    text-align: center;
    line-height: 80px;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50%;

    background: #191919;
    color: #fff;
    box-shadow: 0 0 3px 3px black;
}

.speedometer .fonts {
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.speedometer .speedNobe div {
    background: #48a3cb;
    position: absolute;
    height: 100%;
    top: 0;
}

.speedometer .numb,
.nob {
    transition: opacity 1s;
    position: absolute;
    opacity: 0.5;
}

.speedometer .nob {
    background: #eee;
    box-shadow: 0 0 2px 1px #eee;
}

.speedometer .numb {
    color: #eee;
    text-align: left;
    overflow: hidden;
    opacity: 0.5;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.speedometer .nob.bright {
    opacity: 1;
}

.speedometer .nob.danger {
    background: #ff113a;
    box-shadow: 0 0 2px 1px #ff113a;
}

.speedometer .numb.bright {
    opacity: 1;
}

.speedometer .numb.danger {
    color: #ff113a;
}
.odometer-widget span {
    margin-right: 4px;
    background-color: #000000;
    padding: 6px 9px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    border-radius: 3px;
}
label.file-upload-browse.btn.btn-gradient-primary {
    width: 24%;
    border: none;
    padding: 10px;
    margin: 10px 0px;
}

i#fullscreen-button {
    cursor: pointer;
}

#profileDropdownplus {
    overflow: hidden !important;
    /* width: 26% !important; */
    height: 100px;
}
button.btn {
    margin-top: 5px;
}
.vs-con-table {
    min-width: 800px;
}
nav#sidebar {
    z-index: 999;
}
#first-header {
    position: relative;
    height: 100vh;
}

.carousel-item {
    height: auto;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.image-header {
    height: 64vh;
}

.section .section-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.section {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: 0;
    top: 0;
}


/* ==========================================================================
  footer
  ========================================================================== */
@media only screen and (max-width: 600px) {
    .bg-grey {
        background: #272a34;
    }

    footer {
        color: grey;
    }
    footer a,
    p {
        font-size: 15px !important;
        font-family: 'Outfit', sans-serif;
    }
}
.bg-grey {
    background: #272a34;
}

footer {
    color: grey;
}
footer a,
p {
    font-size: 17px;
    font-family: 'Outfit', sans-serif;
}
footer h3 {
    font-size: 19px;
    margin-top: 0;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 33px;
    position: relative;
}
footer h3:after {
    position: absolute;
    content: "";
    background: grey;
    width: 22%;
    height: 1px;
    left: 0;
    bottom: -20px;
}

::placeholder {
    font-size: 10px;
    padding-left: 10px;
    font-style: italic;
}

.social .fa {
    color: grey;
    font-size: 22px;
    padding: 10px 15px;
    background: #3c3c3c;
}

a:hover {
    text-decoration: none;
    color: #f5f5f5 !important;
}

/* ==========================================================================
     Features 
     ========================================================================== */
     

.float-left {
    float: left;
}
.ftco-section-parallax {
    position: relative;
}
.ftco-section-parallax .heading-section-white h2 {
    font-weight: 400 !important;
}
.ftco-section {
    padding: 6em 0;
    position: relative;
}
@media (max-width: 767.98px) {
    .ftco-section {
        padding: 6em 0;
    }
}
.prix_location {
    float: right;
}
#nav-section {
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
.retour {
    color: #dc3545 !important;
}
.avance {
    color: #198754 !important;
}
.debut {
    color: #0d6efd !important;
}
.classification {
    display: inline-flex;
    gap: 13px;
}
.badge {
    font-size: 14px !important;
    text-decoration: none;
}
.commentaire {
    white-space: nowrap;
    max-width: 317px;
    min-width: 117px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    cursor: pointer;
}
.btn-sub {
    color: white !important;
    background: repeating-linear-gradient(45deg, #9819e3, #0dcaf0 100px);
}
.btn-sub:hover {
    background: repeating-linear-gradient(45deg, #850cca, #05abcc 100px);
    color: white !important;
}

.btn-download {
    color: white !important;
    background: repeating-linear-gradient(45deg, #191a19, #198754 100px);
}

.btn-download:hover {
    background: repeating-linear-gradient(45deg, #191a19, #198754 100px);
    color: white !important;
}

.alert-danger {
    color: #ffffff;
    background-color: #191a19;
    border-color: #191a19;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
a {
    color: var(--bs-link-color);
    text-decoration: none !important;
}
.search_bar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.chercher {
    display: flex;
    margin-top: 10px;
    min-width: 703px;
}
div#btn-top-package {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    min-width: 700px;
}
.btn-chercher {
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

.btn-chercher:hover {
    border-radius: 5px;
    background: #3d3d3d;
    color: #fff;
    width: 40px;
    border: none;
    margin-left: 10px;
    height: 40px;
    border-radius: 8px;
}

.chip.bg-secondary.text-white.me-0 {
    border-radius: 20px;
    padding: 0px 14px 0px 10px;
    background: #191a19 !important;
}

i.fa.fa-caret-down {
    color: #fff;
    font-size: 26px;
    transition: 0.4s;
}
.fa-user {
    color: #191a19;
}
.btn-custom {
    background-color: #212529 !important;
    border-color: #191a19 !important;
    color: #fff !important;
    width: 168px !important;
    height: 50px !important;
}

.btn-custom:hover {
    background-color: #191a19 !important;
    border-color: #191a19 !important;

    width: 168px !important;
    height: 50px !important;
    color: #fff !important;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%) !important;
}
.modal-content {
    background-color: #191a19;
    border-radius: 1rem;
    color: white;
}
.contact-wrap {
    background: #ffffff;
}
a.btn.btn-primary {
    border: none;
    background: #000000;
}
.btn-primary {
    background: linear-gradient(135deg, #191a19 39%, #6d6d6d 101%);
    border: none;
    border-radius: 50px;
}

button.btn.btn-block.btn-main.btn-lg {
    min-width: 157px;
}

.btn-main {
    background: linear-gradient(166deg, #191a19 48%, #141514 112%);
    color: #fff !important;
}
.btn-main:hover {
    background: linear-gradient(166deg, #ffffff 48%, #ffffff 112%);
    color: #000000 !important;
}
.btn-main:focus {
    background: linear-gradient(166deg, #ffffff 48%, #ffffff 112%);
    color: #000000 !important;
}
.btn {
    border: none !important;
}


i#angle-down-hour,i#angle-down-minute,i#angle-up-hour,i#angle-up-minute {
    font-size: 33px !important;
}
span#d-hh {
    font-size: 39px;
}
span#d-mm {
    font-size: 39px;
}
.cursorily {
    cursor: pointer;
}
.hov:hover {
    color: #000;
}
.ico-size {
    font-size: 16px;
}
.ico-size-month {
    font-size: 26px !important;
    line-height: 26px !important;
}
.ico-size-large {
    font-size: 40px !important;
    line-height: 30px;
}
.dtp_main {
    border: solid 1px #eee;
    border-radius: 3px;
    background-color: #fff;
    padding: 8px 0 8px 8px;
}
.dtp_main span,
.dtp_main i {
    display: inline-block;
    padding-right: 8px;
}
.dtp_modal-win {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #eeeeee;
    opacity: 0.6;
}
.dtp_modal-content {
    background-color: #f7f7f7;
    border-radius: 10px;
    width: 361px;
    position: absolute;
    z-index: 1200;
    font-weight: normal;
    height: 300px;
    font-size: 11px;
}
h2.mb-3.services {
    background: #191a19;
    padding: 10px;
    border-radius: 33px;
    color: white;
    width: 59%;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}
#progressbar li {
    list-style-type: none;
    font-size: 0.8rem;
    width: 48%;
    float: left;
    position: relative;
    font-weight: 700;
    color: #191a19;
}

#progressbar #step1:before {
    content: "";
    color: #191a19;
    width: 20px;
    height: 20px;
    margin-left: 0px !important;
}
#progressbar {
    margin-bottom: 3vh;
    overflow: hidden;
    color: #191a19;
    padding-left: 0px;
    margin-top: 3vh;
}
#progressbar li.active:after {
    background: #191a19;
}
#progressbar #step4:before {
    content: "";
    color: #191a19;
    width: 20px;
    height: 20px;
    margin-right: 0px !important;
}

#progressbar li:before {
    line-height: 29px;
    display: block;
    font-size: 12px;
    background: #191a19;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    margin-bottom: 1vh;
}

#progressbar li:after {
    content: "";
    height: 3px;
    background: #191a19;
    position: absolute;
    left: 0%;
    right: 0%;
    margin-bottom: 2vh;
    top: 8px;
    z-index: 1;
}
button.btn {
    min-width: 40px;
    min-height: 40px;
}


span.dtp_modal-midle-dig {
    font-size: 39px;
}

.dtp_modal-content-no-time {
    background-color: #fff;
    border-radius: 10px;
    width: 312px;
    position: absolute;
    z-index: 1000;
    top: 100px;
    left: 100px;
    font-size: 16px;
    font-weight: normal;
}
.dtp_modal-title {
    border-bottom: solid 3px #191a19;
    padding: 11px 20px;
    margin-bottom: 16px;
    font-size: 15px;
}
.dtp_modal-cell-date {
    max-width: 200px;
    float: right;
    z-index: 999;
    position: relative;
}
.dtp_modal-cell-time{
    max-width: 155px;
     float: left; 
     direction: ltr; 
     border-right: solid 1px #000;
    }
.dtp_modal-months {
    color: #7d7d7d;
    font-size: 15px;
    padding: 0 18px;
    justify-content: center;
    display: flex
;
}
.dtp_modal-months span {
    display: inline-block;
    padding: 1px 4px;
}
.dtp_modal-calendar {
    max-width: 200px;
}
.dtp_modal-calendar-cell {
    width: 28px;
    padding: 5px 0;
    display: inline-block;
    text-align: center;
}
.dtp_modal-colored {
    color: #191a19;
}
.dtp_modal-grey {
    color: #7d7d7d;
}
.dtp_modal-cell-selected {
    background-color: #191a19;
    border-radius: 48%;
    color: white;
    transition: background-color 1s ease-out;
}
.dtp_modal-time-block {
    height: 180px;
    width: 200px;
}
.dpt_modal-button {
    background-color: #191a19;
    color: #fff;
    padding: 7px 24px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    border-radius: 3px;
    width: 70%;
    margin: 7px auto;
    font-size: 15px;
}
.dtp_modal-time-line {
    color: #7d7d7d;
    font-size: 17px;
    padding-top: 15px;
    margin-left: 13px;
}
.dtp_modal-time-mechanic {
    margin-left: 35px;
    max-width: 155px;
}
.dtp_modal-append {
    color: #7d7d7d;

    font-weight: normal;
}
.dtp_modal-midle {
    display: inline-block;
    width: 40px;
}
.dtp_modal-midle-dig {
    display: inline-block;
    width: 16px;
    text-align: center;
}
.dtp_modal-digits {
    font-size: 32px;
    margin-left: -11px;

}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.row-cols-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
}

.row-cols-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}
.btn-gradient-primary {
    background: linear-gradient(to right, #191a19, #527604);
    min-width: 105px;
    color: white !important;
}
ul.navbar-nav.navbar-nav-right {
    color: #556080;
}
.mainTitle{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    margin: 45px 14px;
    text-align: center;
  }
  .navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
    border: none;
}
.overlay {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #00000087;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}
.v-middle {
    position: absolute;
    width: 81%;
    top: 71%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(7%, -51%);
    z-index: 10;
}

/* Mobile view */
@media (max-width: 768px) {
    .v-middle {
        width: 90%; /* Adjust width for smaller screens */
        top: 70%; /* Adjust vertical positioning for mobile */
        transform: translate(5%, -50%); /* Adjust horizontal and vertical transform */
        
    }
    .header h1 {
        position: relative;
        font-size: 50px !important;
    }
    a.button-1.mt-15.mb-15 {
        margin: 10px 0px;
    }
}

/* Very small mobile view */
@media (max-width: 480px) {
    .v-middle {
        width: 95%;
        top: 75%;
        transform: translate(3%, -50%);
    }
    .header h1 {
        position: relative;
        font-size: 50px !important;
    }
}

.header h1 {
    position: relative;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    display: inline-grid
;
}
.header h6 {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 0px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.header h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin: 10px 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.navbar .navbar-right {
    position: relative;
    display: flex
;
    align-items: center;
}
.navbar .navbar-right .wrap .text h5 a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap .text p {
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    margin-bottom: 4px;
}
.navbar .navbar-right .wrap .icon:hover {
    background-color: #d5d5d5;
    color: #1b1b1b;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    margin-left: 20px;
}
.navbar .navbar-right .wrap .icon {
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #ffffff;
}
.navbar .navbar-right .wrap .text {
    margin-left: 10px;
    top: 3px;
    position: relative;
}
@media screen and (max-width: 991px) {
    .navbar .navbar-right {
        display: none;
    }
}
.navbar-scroll {
    background-color: #151613 !important;
    transition: background-color 0.3s ease-in-out;
    max-height: 75px;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    display: flex;
    justify-content: center;
}
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    background: transparent;
    color: #fff;
    font-weight: 300;
    border-radius: 0;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border: 1px solid #ffffff
    ;
    border-radius: 100%;
}
.car-rental-section {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    gap: 20px;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
}
  
  .content {
    max-width: 50%;
  }
  
  .tagline {
    color: #302d2d;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  h1 {
    font-size: 2.5rem;
    color: #333;
  }
  
  h1 span {
    color: #191a19;
  }
  
  .description {
    font-size: 1rem;
    color: #666;
    margin: 20px 0;
  }
  
  .services {
    list-style: none;
    padding: 0;
  }
  
  .services li {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #161716;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .read-more:hover {
    background-color: #fff;
    color: #161716 !important;
    border: 2px solid #161716;
  }
  
  .image-container {
    max-width: 40%;
  }
  
  .image-container img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .car-rental-section {
      flex-direction: column;

    }
  
    .content {
      max-width: 100%;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    .description {
      font-size: 0.95rem;
    }
  
    .image-container {
      max-width: 80%;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .car-rental-section {
      padding: 30px;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    .description {
      font-size: 0.9rem;
    }
  
    .read-more {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .car-rental-section {
      padding: 20px;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    .description {
      font-size: 0.85rem;
    }
  
    .services li {
      font-size: 0.9rem;
    }
  
    .read-more {
      padding: 6px 12px;
      font-size: 0.8rem;
    }
  
    .image-container {
      max-width: 100%;
    }
  }
  .button-1 {
    display: inline-block;
    height: auto;
    padding: 14px 42px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 300;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-2 {
    display: inline-block;
    height: auto;
    padding: 14px 42px;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: transparent;
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-2:hover {
    border: 1px solid #000000;
    background-color: #000000;
    color: #1b1b1b;
    transform: translate3d(0px, -6px, 0.01px);
}
.button-1:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #000000 !important;
    transform: translate3d(0px, -6px, 0.01px);
}
