:root {
    --color-primary: #f4f6f9;
    --color-secondary: #343a40;
    --color-dim: #ced4da;
    --color-light: #fff;
    --color-dark: #000;
    --color-hg-light: #7367f0;
}

body {
    font-size: 0.8rem;
}
.h6, h6{
    font-size: 0.9rem; 
}
/* PRELOADER CSS */
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #272727;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-loader > .arc {
    -webkit-animation: spin 1s infinite ease-in;
    animation: spin 1s infinite ease-in;
    border-radius: 100%;
    border-top: 4px solid;
    border-color: #fff;
    content: "";
    display: block;
    height: 50px;
    width: 50px;
}
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.btn-link {
    display: inline-block;
}
.mandatory {
    color: #dc3545;
}
.btn:hover {
    opacity: 0.9;
}
.search-inline .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form-control,
.form-select,
.input-group-text {
    font-size: 0.8rem;
    padding: 0.25rem 0.4rem;
}
.btn {
    font-size: 12px;
    padding: 0.275rem 0.5rem;
}
/* * Sidebar */
.sidebar .sidebar-search .input-group {
    flex-wrap: nowrap;
}
.sidebar {
    padding-top: .2rem;
    padding-bottom: 1rem;
    /* max-height: calc(100vh - 196px); */
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}


.sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: transparent;
}
.sidebar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #000;
}
.btn-sidebar,
.form-control-sidebar {
    color: #c3c3c3;
    background-color: transparent !important;
    border: 1px solid;
    border-color: #56606a;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}
.sidebar .nav-item > .nav-link {
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    border-radius: 0.25rem;
    color: #c2c7d0;
    white-space: nowrap;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: width ease-in-out 0.3s;
    -o-transition: width ease-in-out 0.3s;
    transition: width ease-in-out 0.3s;
}
.sidebar .nav-item.menu-open > .nav-link,
.sidebar .nav-item > .nav-link:hover,
.sidebar .nav-item > .nav-link:focus {
    background-color: var(--color-dark);
    color: var(--color-light);
}
.sidebar .nav-link .icon-wrap {
    width: 20px;
    display: inline-block;
    vertical-align: text-bottom;
}
.sidebar .nav-link p {
    display: inline;
    font-weight: 500;
    margin-bottom: 0;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar .nav-link.active {
    color: var(--color-light);
    background-color: var(--color-hg-light) !important;
}
.sidebar .nav-link:hover .icon-wrap,
.sidebar .nav-link.active .icon-wrap {
    color: inherit;
}
.sidebar-toggle-nav {
    padding-left: 10px;
    border-left: 3px solid;
    border-color: var(--color-hg-light);
    margin-left: 12px;
    list-style: none;
    margin-bottom: 10px;
}
.sidebar-toggle-nav li a {
    color: var(--color-light);
    font-weight: 500;
    vertical-align: text-bottom;
    text-decoration: none;
    padding: 0.25rem 0;
    display: inline-block;
    width: 100%;
    opacity: 0.7;
    transition: opacity ease-in-out 0.3s;
}
.sidebar-toggle-nav li a.active {
    opacity: 1;
}
.sidebar-toggle-nav li a i {
    width: 18px;
    font-size: 12px;
    opacity: 1;
}
.sidebar-toggle-nav li:hover a {
    opacity: 1;
}
.nav-link.btn-toggle::after {
    font-family: "FontAwesome";
    content: "\f107";
    transition: transform 0.35s ease;
    transform-origin: 0.5em 50%;
    float: right;
}
.nav-link.btn-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
}
.sidebar-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}
.navbar-brand {
    color: var(--color-light);
    height: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset -4px -4px 10px 0px rgb(0 0 0 / 10%);
}
.navbar-brand:hover {
    color: var(--color-light);
}
.navbar-brand > .cm-logo {
    width: 40px;
    height: 40px;
    display: flex;
}
.navbar-brand > .cm-name {
    color: var(--color-light);
    white-space: break-spaces;
    font-size: 90%;
    line-height: initial;
    min-width: 140px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* * Header */
.sidebar-toggle {
    border: 0;
    background: transparent;
    font-size: 1.2rem;
}
.main-head {
    height: 50px;
    color: #1f2d3d;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    position: fixed;
    width: calc(100% - 200px);
    z-index: 999;
}
.main-head .navbar-nav {
    flex-direction: row;
}
.main-head .navbar-nav .nav-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.main-head .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    display: none;
}
.hd-user-wrap {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    height: 100%;
}
.hd-user-name {
    border-radius: 0.25rem;
    padding: 0.1rem 0.3rem;
    border: 1px solid;
}
.set-drpdw {
    left: auto !important;
    position: absolute !important;
    right: 0;
}
.set-drpdw .dropdown-item i {
    width: 18px;
}
.dropdown-item {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}
/* * Content */
.content-wrap {
    padding-top: 50px;
    min-height: calc(100vh - 40px);
}
.info-box {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 0.5rem;
    position: relative;
    width: 100%;
    text-decoration: none;
}
.info-box .info-box-icon {
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.875rem;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 70px;
}
.info-box .info-box-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    /* line-height: 1.8; */
    line-height: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
    overflow: hidden;
}
.info-box .info-box-text,
.info-box .progress-description {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.info-box .info-box-number {
    display: block;
    /* margin-top: 0.25rem; */
    font-weight: 700;
    margin-bottom: 10px;
}
.card {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 1rem;
    width: 100%;
}
.card > .card-header {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    margin-bottom: 1rem;
}
.card > .card-header.title-dvd{
    margin-bottom: 0;
}
.card > .card-body {
    padding: 0;
}
.main-footer {
    padding: 1rem 0;
    flex-shrink: 0;
    height: 40px;
}
.main-footer .copyright {
    line-height: 1;
    font-size: 0.6rem;
    opacity: 0.3;
}
.title-dvd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    justify-content: space-between;
}
.title-cls{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}
.title-dvd .btn-wrap {
    display: flex;
    gap: 0.2rem;
    flex-wrap: wrap;
}
.table {
    line-height: 1;
    counter-reset: serial-number; /* Set the serial number counter to 0 */
}
.table > tbody > tr > td{
    padding: 8px 0.5rem;
    vertical-align: middle;
}
.table-top-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}
.table-top-form .input-group {
    padding-left: 0;
    padding-right: 0;
}
.table-rw-check{
    margin-top: 0;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}

.css-serial-1 td:nth-child(1):before,
.css-serial-2 td:nth-child(2):before {
    counter-increment: serial-number; /* Increment the serial number counter */
    content: counter(serial-number); /* Display the counter */
}
.css-serial-none td:nth-child(1):before,
.css-serial-none td:nth-child(2):before {
    content: '';
}
.table > thead {
    background-color: rgba(0, 0, 0, 0.1);
}
.table > thead > tr > th {
    font-weight: 600;
    background-color: transparent;
    white-space: nowrap;
}
.table-btn-ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.table-btn-ul li {
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
}
.table-btn-ul > li > a,
.table-btn-ul > li .btn {
    font-size: 0.8rem;
    text-decoration: none;
    padding: 0;
    margin-left: 0.6em;
    margin-right: 0.6em;
    border-radius: 0;
}
.table-btn-ul li:nth-last-child(1) {
    border-right: 0px;
}
.table .badge {
    margin-bottom: 0.1rem;
}
.pagination {
    margin-bottom: 0;
}
.pagination .page-link {
    font-size: 0.8rem;
    padding: 0.1rem 0.5rem;
    background-color: transparent;
}
.page-item.disabled .page-link {
    background-color: rgba(0, 0, 0, 0.1);
}
.per-pg-wrap label {
    width: 50px;
}
.per-pg-wrap .per-pg-drpdw {
    width: 58px;
    padding-left: 0.1rem;
    font-size: 0.7rem;
}
.per-pg-drpdw .select2-container .select2-selection--single {
    height: 24px;
}
.per-pg-drpdw
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 22px;
    padding-left: 4px;
}
.per-pg-drpdw
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 22px;
}
.sub-header {
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.sec-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0;
}
.form-card {
    padding: 1.5rem;
}
.form-card .btn-wrap {
    margin-top: 1.5rem;
    text-align: right;
}
.form-group {
    margin-top: 0.8rem;
}
.form-label {
    margin-bottom: 0;
    display: block;
}
.form-text,
.invalid-feedback,
.valid-feedback {
    margin-top: 0.1rem;
}
.form-select:focus,
.form-check-input:focus,
.form-control:focus,
.btn-check:focus + .btn,
.btn:focus,
.btn-close:focus,
.pagination:focus .page-link, .page-link:focus {
    box-shadow: none;
}
.form-input-error {
    width: 100%;
    font-size: 0.875em;
    color: #e51c0d;
}
.img-preview {
    display: flex;
    height: 48px;
    width: auto;
    padding-top: 6px!important;
}

.img-preview img {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    padding-right:0.3rem;
}
.img-preview .badge {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #ced4da;
    /* padding: 0rem; */
    /* width: 13px; */
}
.input-group > .select2-container {
    width: 100%;
}
.select2-container {
    display: block;
    max-width: 100%;
}
.select2-container .select2-selection--single {
    height: 29px;
    border-color: #ced4da;
}
#sidebar-wrapper {
    background-color: var(--color-secondary);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    margin-left: 0;
    z-index: 999;
    transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
}
#sidebar-wrapper:not(.active-nav) {
    width: 4.2rem;
    height: 100%;
    transition: 0.3s ease-in-out;
}
.sidebar:not(.active-nav) .side-menu-wrap {
    overflow: initial;
}
.sidebar:not(.active-nav) .navbar-brand > .cm-name {
    opacity: 0;
    visibility: hidden;
}
.sidebar:not(.active-nav) .nav-item > .nav-link {
    width: 40px;
    height: 37px;
    overflow: hidden;
}
.sidebar:not(.active-nav) .sidebar-heading {
    white-space: nowrap;
    opacity: 0;
}
.sidebar:not(.active-nav) .nav-item > .nav-link.btn-toggle::after {
    opacity: 0;
    position: absolute;
    right: -165px;
}
.sidebar:not(.active-nav) .nav-item > .nav-link > p {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    min-height: 100%;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    background: var(--color-dark);
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    align-items: center;
    display: flex;
}
.sidebar:not(.active-nav) .nav-item .nav-link.btn-toggle > p {
    opacity: 1;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.sidebar:not(.active-nav) .nav-item .sidebar-toggle-nav {
    background-color: var(--color-dark);
    min-width: 180px;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    margin-left: 0;
}
.sidebar:not(.active-nav) .sidebar-toggle-nav li a {
    background-color: var(--color-dark);
}
.sidebar:not(.active-nav) .nav-item:hover > .nav-link {
    overflow: visible;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sidebar:not(.active-nav) .nav-item:hover > .nav-link > p {
    opacity: 1;
    visibility: visible;
}
.sidebar:not(.active-nav) .sidebar-search .input-group {
    visibility: hidden;
}
.sidebar:not(.active-nav) .nav-item:hover .sidebar-drpdw {
    display: block;
}
.sidebar:not(.active-nav) .nav-item:not(:hover) .show.sidebar-drpdw {
    display: none;
}
.sidebar:not(.active-nav) .nav-item .sidebar-drpdw {
    position: absolute;
    left: 52px;
    min-width: 180px;
    -webkit-transition: visibility 0.3s ease;
    -o-transition: visibility 0.3s ease;
    transition: visibility 0.3s ease;
}

#content-wrapper,
#header-wrapper,
#footer-wrapper {
    width: calc(100% - 4.2rem);
    margin-left: 4.2rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    transition: 0.3s ease-in-out;
}
/* for main section */
#content-wrapper.active-cont,
#header-wrapper.active-cont,
#footer-wrapper.active-cont {
    margin-left: 200px;
    width: calc(100% - 200px);
}

.select-theme {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 0.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}
.select-theme > li {
    width: 25px;
    height: 25px;
    float: left;
}
.select-theme > li > label {
    width: 25px;
    height: 25px;
    border-radius: 0.25rem;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}
.select-theme > li > label > span {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-in-out;
}
.select-theme > li > label:hover {
    transform: translateY(-1px);
    opacity: 0.8;
    transition: ease-in-out 0.3s;
}
.select-theme > li > input[type="radio"] {
    display: none;
}
.select-theme > li > input[type="radio"]:checked + label {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.select-theme li label span.blackWhite {
    background-color: #000 !important;
}
.alert {
    padding: 0.8rem 1rem;
}
.alert-dismissible .btn-close {
    font-size: 0.6rem;
    padding: 1rem 1rem;
}
.toggle-wrap-btn > input.toggle-active-btn[switch] {
    display: none;
}
.toggle-wrap-btn > input.toggle-active-btn[switch] + label {
    width: 3.2rem;
    height: 1rem;
    background-color: #ddd;
    background-image: none;
    border-radius: 0.25rem;
    padding: 0.1rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2) inset;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.toggle-wrap-btn > input.toggle-active-btn[switch] + label:before {
    /* Label */
    text-transform: capitalize;
    color: #e5e5e5;
    content: attr(data-off-label);
    display: block;
    font-weight: 500;
    font-size: 0.6rem;
    line-height: 0.95rem;
    position: absolute;
    right: 0;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    top: 0;
    text-align: center;
    min-width: 1.6666666667rem;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.toggle-wrap-btn > input.toggle-active-btn[switch] + label:after {
    /* Slider */
    content: "";
    position: absolute;
    left: 0.1rem;
    background-color: #f7f7f7;
    box-shadow: none;
    border-radius: 0.25rem;
    height: 0.8rem;
    width: 0.6rem;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.toggle-wrap-btn > input.toggle-active-btn[switch]:checked + label {
    background-color: lightblue;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(255, 255, 255, 0.15)),
        to(rgba(0, 0, 0, 0.2))
    );
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.15),
        rgba(0, 0, 0, 0.2)
    );
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3) inset;
}
.toggle-wrap-btn > input.toggle-active-btn[switch]:checked + label:before {
    color: #fff;
    content: attr(data-on-label);
    right: auto;
    left: 0.2rem;
}
.toggle-wrap-btn > input.toggle-active-btn[switch]:checked + label:after {
    left: calc(100% - 0.75rem);
}
.toggle-wrap-btn > input.toggle-active-btn[switch="bool"] + label {
    background-color: #dc3545;
}
.toggle-wrap-btn > input.toggle-active-btn[switch="bool"]:checked + label {
    background-color: #709d09;
}
.datePickerInput{
    cursor: pointer;
}
.date-input{
    border-right: 0;
}
.date-icon{
    cursor: pointer;
    opacity: .5;
    border-left: 0;
}
.datepicker.dropdown-menu {
    font-size: 0.8rem;
}
.sub-head-rgt{
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.sub-head-rgt > .form-check{
    min-height: auto;
    margin-bottom: 0;
    margin-right: 0.2rem;
}
.datetimepicker{
    font-size: 0.8rem;
    padding: 6px;
    max-height: 234px;
    overflow-y: auto;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
}
.datetimepicker::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
.datetimepicker::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.datetimepicker::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #000;
}
.datetimepicker th{
    font-weight: 500;
}
.datetimepicker td, .datetimepicker th{
    padding: 4px 6px;
    border-radius: 0;
}
.modal-header .btn-close{
    background-size: 0.8em;
}
.blackWhite .modal-header .btn-close{
    filter: invert(1);
}
table.reportCase {
    width: 100%;
    boarder-collapse: collapse; 
  }
  /* table.reportCase tr{
    border-bottom: 1px dotted #d1d3d4;
  }   */
  table.reportCase tbody tr:last-child {
    border-bottom: none;
  }
  table.reportCase tr > td {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-weight: 500;
    font-size: 0.75rem;
  }
  table.reportCase .trTitle {
    width: 20%; 
  }
  .col-lg-6 > .reportCase .trTitle{
    width: 30%;
  }
  
  
  .track-wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
  .order-tracking {
    text-align: center;
    width: 25%;
    position: relative;
    display: block;
    padding-left: 5px;
    padding-right: 5px;
  }
  .order-tracking .is-complete {
    display: block;
    position: relative;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    border: 0px solid #afafaf;
    background-color: #f7be16;
    margin: 0 auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    z-index: 2;
  }
  .order-tracking .is-complete:after {
    display: block;
    position: absolute;
    content: "";
    height: 12px;
    width: 6px;
    top: -2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 0px solid #afafaf;
    border-width: 0px 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
  }
  .order-tracking.completed .is-complete {
    border-color: #27aa80;
    border-width: 0px;
    background-color: #27aa80;
  }
  .order-tracking.completed .is-complete:after {
    border-color: #fff;
    border-width: 0px 3px 3px 0;
    opacity: 1;
  }
  .order-tracking p {
    color: #a4a4a4;
    font-size: 0.8rem;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: initial;
    font-weight: 600;
  }
  .order-tracking p span {
    font-weight: 400;
  }
  .order-tracking.completed p {
    color: #000;
  }
  .order-tracking::before {
    content: "";
    display: block;
    height: 2px;
    width: calc(100% - 40px);
    background-color: #f7be16;
    top: 13px;
    position: absolute;
    left: calc(-50% + 20px);
    z-index: 0;
  }
  .order-tracking:first-child:before {
    display: none;
  }
  .order-tracking.completed:before {
    background-color: #27aa80;
  }
  /* To Align Message label vertically */
  .editor-wrapper{
    display:flex; 
    align-items:flex-end;
  }

  .merge-field-wrapper select.custom-select{
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right .5rem center;
        background-size: 1em;
        border-top-right-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
    }


@media (max-width: 991.98px) {
    #sidebar-wrapper {
        height: inherit;
        min-height: 100%;
        top: 50px;
        box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
    }
    #sidebar-wrapper.active-nav {
        width: 200px;
        margin-left: -200px;
    }
    #sidebar-wrapper:not(.active-nav) {
        width: 200px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25),
            0 10px 10px rgba(0, 0, 0, 0.22);
    }
    .sidebar:not(.active-nav) .side-menu-wrap {
        overflow-y: auto;
    }
    .sidebar:not(.active-nav) .sidebar-search .input-group,
    .sidebar:not(.active-nav) .navbar-brand > .cm-name {
        visibility: visible;
        opacity: 1;
    }
    .sidebar:not(.active-nav) .nav-item > .nav-link {
        width: 100%;
        height: auto;
        overflow: visible;
    }
    .sidebar:not(.active-nav) .nav-item > .nav-link > p {
        all: inherit;
        padding: 0;
    }
    .sidebar:not(.active-nav)
        .nav-item
        .nav-link.btn-toggle[aria-expanded="true"] {
        border-top-right-radius: 0.25rem;
    }
    .sidebar:not(.active-nav) .nav-item > .nav-link.btn-toggle::after {
        opacity: 1;
        position: unset;
        right: auto;
    }
    .sidebar:not(.active-nav) .nav-item .sidebar-drpdw {
        position: unset;
    }
    .sidebar:not(.active-nav) .nav-item:not(:hover) .show.sidebar-drpdw {
        display: block;
    }
    .sidebar:not(.active-nav) .nav-item:hover .sidebar-drpdw:not(.show){
        display: none;
    }
    .sidebar:not(.active-nav) .nav-item .sidebar-toggle-nav {
        min-width: 100%;
    }
    .sidebar:not(.active-nav) .sidebar-heading {
        white-space: normal;
        opacity: 1;
    }
    #content-wrapper.active-cont,
    #header-wrapper.active-cont,
    #footer-wrapper.active-cont {
        width: 100%;
        margin-left: 0;
    }
    #content-wrapper:not(.active-nav),
    #header-wrapper:not(.active-nav),
    #footer-wrapper:not(.active-nav) {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 576.98px) {
    #content-wrapper {
        padding-right: 0;
        padding-left: 0;
    }
    #header-wrapper {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }    
    .order-tracking{
        text-align: left;
        display: flex;
        width: 100%;
        margin-bottom: 15px;
    }
    .order-tracking .is-complete{
        margin: 0 10px 0 0;
    }
    .order-tracking p{
        margin-top: 0;
        line-height: initial;
    }
    .order-tracking::before{
        width: 2px;
        height: 100%;
        top: -100%;
        left: 16px;
    }
}

@media (min-width: 576px){
.modal-sm {
    max-width: 380px;
}
.modal-sm .modal-body {
    padding: 1rem 2rem;
}
}

/* Dashboard background Image styling */

.dashboard_bg{
    background-image:url(../images/pattern30.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}



/* Custom Info-box, Card  styling */

.custom-info-box{
    background-color: rgb(32, 123, 190) !important;
    color: #fff !important;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 0;
}
.custom-info-box-icon{
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.custom-card{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border-radius: 1rem;
}

/* Custom table header style */

.custom-table{
    line-height: 2;
}
.custom-table thead{
    background-color:rgb(32, 123, 190) ;
    
}
.custom-table thead tr th{
    color: #fff !important;
}
.custom-table thead tr th:first-child{

    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}
.custom-table thead tr th:last-child{

    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
}
.custom-table tr td{
    border-bottom-width: 1px;
}
.custom-table tbody tr:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Custom form-check styling to align checkbox */
.list-check-box .form-check{
    display: flex;
    align-items: center;
    gap: .5rem;
    word-break: break-all;
}

/* Toggle switch styling */

.switch-field {
	display: flex;
	overflow: hidden;
}
.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}
.switch-field label {
	background-color: #ca4c4c;
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	line-height: 1;
	text-align: center;
	padding: 4px 8px;
	margin-right: -1px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}
.switch-field label:hover {
	cursor: pointer;
}


.switch-field.settings-page-btn  input:checked + .label-on {
  background-color: #4daf51;
    box-shadow: inset 0px 0px 4px 1px #e6e6ec5e;
}
.switch-field.settings-page-btn  input:checked + .label-off {
  background-color: #d9362a;
    box-shadow: inset 0px 0px 4px 1px #e6e6ec5e;
}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}
.switch-field.settings-page-btn input:checked + label{
    color: #ffffff;
  }
  .switch-field.settings-page-btn label {
    background-color: #c1c1c1;
  }


  /* Event Section sub-heading styling */
  .custom-sectionbg{
    position: relative;
  }
  .custom-sectionbg_lable_titles{
    position: absolute;
    top: -12px;
    left: 10px;
    /* background: #343a40; */
    padding: 0px 5px;
    font-weight: 500;
  }


/* download excel format start */
#download_excel_format {
    font-weight: 500;
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
}
/* download excel format stop */

.ev-logo {
    max-height: 196px;
    object-fit: contain;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 5px;
}
.file-supported {
    color: #d57231;
    font-size: 11px;
}
/* Preloder*/
.background-image-show {
    background-image: url(../images/select-loading.gif);
    height: 28px;
}

.select2-selection__rendered {
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 90%;
}

.inpt-pass {
    position: relative;
}

.inpt-pass i {
    position: absolute;
    top: 34%;
    right: 8%;
    cursor: pointer;
}

/* ckeditor start */
.ck-editor__editable_inline {
    min-height: 250px!important;
    max-height:250px!important;
    overflow-y: scroll;
}

.ck-powered-by{
    display:none!important;
}

.ck .ck-widget__selection-handle{
    background-color: #166fd4 !important;
    opacity: 0 !important;
}
.ck .ck-widget:hover {
    outline-color: transparent !important;
}
.ck .ck-widget:not(.ck-widget_selected)>.ck-widget__type-around>.ck-widget__type-around__button {
    background:  #166fd4 !important;
}
/* ckeditor end */

/* Notification css start  */
    .section-50 {
        padding: 0px 0;
    }

    .m-b-50 {
        margin-bottom: 50px;
    }

    .dark-link {
        color: #333;
    }

    .heading-line {
        position: relative;
        padding-bottom: 5px;
    }

    .heading-line:after {
        content: "";
        height: 4px;
        width: 75px;
        background-color: #29B6F6;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .notification-ui_dd-content {
        margin-bottom: 30px;
    }

    .notification-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 20px;
        margin-bottom: 7px;
        background: #fff;
        -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    }

    .notification-list--unread {
        border-left: 3px solid #29B6F6;
    }

    .notification-list .notification-list_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .notification-list .notification-list_content .notification-list_img img {
        height: 20px;
        width: 20px;
        border-radius: 50px;
        margin-right: 20px;
        margin-top: 5px;
    }
/* Notification css end */
