/* Heading */
@font-face {
    font-family: 'DM Serif Display';
    src: url('fonts/DMSerifDisplay-Regular.eot') format('embedded-opentype'), 
    url('fonts/DMSerifDisplay-Regular.woff2') format('woff2'), 
    url('fonts/DMSerifDisplay-Regular.woff') format('woff'), 
    url('fonts/DMSerifDisplay-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Sub Heading */
@font-face {
    font-family: 'Moon';
    src: url('fonts/Moon-Light.eot') format('embedded-opentype'), 
    url('fonts/Moon-Light.woff2') format('woff2'), 
    url('fonts/Moon-Light.woff') format('woff'), 
    url('fonts/Moon-Light.svg') format('svg');
}
/* Body */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.eot') format('embedded-opentype'), 
    url('fonts/Inter-Regular.woff2') format('woff2'), 
    url('fonts/Inter-Regular.woff') format('woff'), 
    url('fonts/Inter-Regular.svg') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* Special Occasion */
@font-face {
    font-family: 'Jersey M54';
    src: url('fonts/JerseyM54.eot') format('embedded-opentype'), 
    url('fonts/JerseyM54.woff2') format('woff2'), 
    url('fonts/JerseyM54.woff') format('woff'), 
    url('fonts/JerseyM54.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /*main-color*/
    --color-primary: rgb(14, 21, 56);
    --color-primary-hover: rgba(14,21,56, 85%);
    --color-primary-light: rgba(14,21,56, 15%);
    --color-bg-primary: #afbfd4;
    --color-secondary: rgb(243, 115,33);
    /*font-color*/
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text-muted: #B5B5C3;
    --color-aside-icon: #B5B5C3;
    /*font-weight*/
    --font-weight-body: 500;
    --font-weight-h1: 600;
    --font-weight-h2: 600;
    /*body*/
    --body-font-size: 16px;
    --body-font-color: #3F4254;
    --body-letter-spacing: 0;
    /*hading*/
    --font-family-primary: 'DM Serif Display', sans-serif;
    --font-family-secondary: 'Moon', sans-serif;
    --font-family-body: 'Inter', sans-serif;
    --font-family-special: 'Jersey M54', sans-serif;
    /*button*/
    --button-font-color: #ffffff;
    --button-font-size: 14px;
    --button-font-weight: 600;
    --button-letter-spacing: 0;
    --button-border-radius: 4px;
    --button-text-transform: capitalize;
}
/*deafult*/
body {
    font-family: var(--font-family-body) !important;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-body);
    color: var(--font-color-body);
    letter-spacing: var(--body-letter-spacing);
}
::-moz-selection {
    background: var(--color-primary);
    color: #fff;
}
::selection {
    background: var(--color-primary);
    color: #fff;
}
a, .text-brand {
    color: var(--color-primary);
}
a:hover, a:active, a:focus {
    color: var(--color-primary-hover);
}

input, button, select, optgroup, textarea {
    font-family: var(--font-family-body);
}
p{
    font-size: var(--font-size-body);
}

.cs-truncate, .cs-truncate-1, .cs-truncate-2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cs-truncate-1 {
    max-width: 130px;
}
.cs-truncate-2 {
    max-width: 230px;
}
/*deafult*/
/*color*/
.cs-bg-primary {
    background: var(--color-primary) !important;
}
.cs-bg-primary-light {
    background: var(--color-primary-light);
}
.text-primary {
    color: var(--color-primary) !important;
}
a.text-primary:hover, a.text-primary:focus {
    color: var(--color-primary-hover) !important;
}
a.text-hover-primary:hover, .text-hover-primary:hover {
    color: var(--color-primary) !important;
}

a.text-hover-primary:hover i, .text-hover-primary:hover i {
    color: var(--color-primary) !important;
}
i {
    color: var(--body-font-color);
}
.cs-button-main i {
    margin:0px;
    color:#fff;
    font-size:1rem;
    padding-right:0px;
}
.cs-main-bg {
    background-color: var(--color-bg-primary);
}
/*color*/
/*Heading*/
.cs-font-size-h1 {
    font-size: 42px;
    font-weight: var(--font-weight-h1);
    font-family: var(--font-family-primary);
}
.cs-font-size-h2 {
    font-size: 22px;
    font-weight: var(--font-weight-h2);
    font-family: var(--font-family-secondary);
}
.subheader h5 {
    font-size: 1rem !important;
    font-weight: var(--font-weight-h2) !important;
    font-family: var(--font-family-secondary) !important;
}
/*Paragraph*/
.font-size-base {
    font-size: 1rem;
}
.font-size-lg {
    font-size: 1.08rem;
}
.font-size-sm {
    font-size: 0.925rem;
}
.font-size-xs {
    font-size: 0.8rem;
}

/*Start All button*/
.btn {
    padding: 6px 15px;
    line-height: 20px;
    height: 34px;
    border: 1px solid transparent;
    font-family: var(--font-family-body);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    letter-spacing: var(--button-letter-spacing);
    border-radius: var(--button-border-radius);
    text-transform: var(--button-text-transform);
    text-align: center;
    background-color: transparent;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -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;
}
/*Button Main*/
.cs-button-main {
    color: var(--button-font-color);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs-button-main:hover, .cs-button-main:focus, .cs-button-main:active {
    color: var(--button-font-color);
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary);
    
}
/*Button Outline*/
.cs-button-outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.cs-button-outline:hover, .cs-button-outline:focus, .cs-button-outline:active {
    color: var(--button-font-color);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
/*Button Light*/
.cs-button-light {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs-button-light:hover, .cs-button-light:focus, .cs-button-light:active {
    color: var(--color-white);
    background-color: var(--color-primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*Button White Outline*/
.cs-button-white-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}
.cs-button-white-outline:hover, .cs-button-white-outline:focus, .cs-button-white-outline:active {
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: var(--color-white);
}
/*Button White*/
.cs-button-white {
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: var(--color-white);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs-button-white:hover, .cs-button-white:focus, .cs-button-white:active {
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: transparent;
}
/*Button Cancel*/
.cs-button-cancel {
    color: #464E5F;
    background-color: #E5EAEE;
    border-color: #E5EAEE;
}
.cs-button-cancel:hover, .cs-button-cancel:focus, .cs-button-cancel:active {
    color: #464E5F;
    background-color: #d9e0e6;
    border-color: #d9e0e6;
}
/*END of All button*/
/* Spinner */
.spinner2 {
    position: relative !important;
}
.spinner2:before {
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    border: 2px solid var(--body-font-color);
    border-right: 2px solid transparent;
}

.spinner2-white:before {
    border: 2px solid #fff;
    border-right: 2px solid transparent;
}

.spinner2:before {
    width: 20px;
    top: 5.5px;
    height: 20px;
}
.spinner2:before {
    -webkit-animation: animation-spinner .5s linear infinite;
    animation: animation-spinner .5s linear infinite;
}
.spinner2.spinner-primary:before {
    border: 2px solid var(--body-font-color);
    border-right: 2px solid transparent;
}
.spinner2.spinner-primary.updated-success:before {
    border-right: 2px solid var(--body-font-color);
    top: 0px;
}
@-webkit-keyframes animation-spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes animation-spinner {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.spinner2.spinner-primary.updated-success {
    text-align: center;
    display: inherit;
}
.save-button.spinner2 {
    padding-left: 40px;
}
.save-button.spinner2:before {
    right: auto;
    left: 10px;
}
.spinner2.spinner-primary.updated-success i {
    line-height: 20px;
    font-size: 11px;
    text-align: center;
    width: 16px;
    padding-left: 2px;
}

/*End of spiner*/

.radio > input:checked ~ span {
    background-color: var(--color-primary);
}
/* When the checkbox is checked, add a blue background */
.cs-selelct-2 {
    position: relative;
}
.cs-selelct-2 .invalid-feedback {
    position: absolute;
    bottom: -8px;
    z-index: 999;
    margin: 0px;
    line-height: 16px;
}
.cs-selelct-2  .select2-container {
    padding-bottom: 10px;
}
/*Form*/
/*switch*/
.customSwitch1 .switch input:checked ~ span:after {
    opacity: 1;
    color: var(--colorWhite);
    background-color: var(--color-primary) !important;
}
.switch input:empty ~ span:before {
    background-color: #cbcbcb;
}
.switch input:checked ~ span:before {
    background-color: #cbcbcb;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    margin-bottom: 0.3125rem;
}
.form-control {
    border: 1px solid #ddd;
    /*height: 34px;*/
    color: var(--font-color-body);
    padding: 6px 12px;
}
.form-control:focus {
    border-color: var(--color-primary) !important;
    background: var(--dark-bg-3);
    color: var(--font-color-body);
}

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default.select2-container--focus .select2-selection--single, .select2-container--default.select2-container--open .select2-selection--multiple, .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--color-primary);
}
/*End of Form*/
.form-control.form-control-solid {
    background-color: #e1e1e1;
}
/*table*/
.dataTables_wrapper .dataTable th.sorting_asc, .dataTables_wrapper .dataTable td.sorting_asc {
    color: var(--color-primary) !important;
}
.dataTables_wrapper .dataTable th.sorting_asc:before, .dataTables_wrapper .dataTable td.sorting_asc:before, .dataTables_wrapper .dataTable th.sorting_desc:after, .dataTables_wrapper .dataTable td.sorting_desc:after {
    opacity: 1;
    color: var(--color-primary) !important;
}
.dataTables_wrapper table tbody tr td {
    border-top: 1px solid #ECF0F3 !important;
}
.dataTables_wrapper .dataTables_paginate .pagination .page-item.active > .page-link {
    background-color: var(--color-primary);
}
table.dataTable.dtr-column > tbody > tr > td.control:before, table.dataTable.dtr-column > tbody > tr > th.control:before {
    background-color: var(--color-primary);
    line-height: 16px;
}
table.dataTable.dtr-column > tbody > tr.parent td.control:before, table.dataTable.dtr-column > tbody > tr.parent th.control:before {
    background-color: var(--color-primary);
}
a.dropdown-item {
    color: var(--body-font-color);
}
.navi .navi-item .navi-link:hover {
    color: var(--color-primary);
}
/*End of table*/
/* By ikram on 20-01-2022 */
.wizard.wizard-3 .wizard-nav .wizard-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 1rem;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step:last-child {
    margin-right: 0;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #B5B5C3;
    padding: 2rem 0.5rem;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title span {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-bar {
    height: 4px;
    width: 100%;
    background-color: #ECF0F3;
    position: relative;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-bar:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background-color: transparent;
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label {
    color: var(--color-primary);
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-bar:after {
    width: 100%;
    background-color: var(--color-primary);
}

@media (max-width: 991.98px) {
    .wizard.wizard-3 .wizard-nav .wizard-steps {
        -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;
    }
    
    .wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        position: relative;
        width: 100%;
    }
    
    .wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 1rem 0;
    }
}


/* By ikram as on 25-01-2022 */
.border {
    border: 1px solid #eff2f5 !important;
}
.border-dashed {
    border-style: dashed !important;
    border-color: #e4e6ef;
}
.border-gray-300 {
    border-color: #e4e6ef !important;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
.rounded-3 {
    border-radius: 0.775rem !important;
}
.overlay .overlay-layer {
    background-color:#000 !important;
}
.overlay.overlay-block .overlay-layer, .overlay.overlay-show .overlay-layer, .overlay:hover .overlay-layer {
    transition: all .3s ease;
    opacity: 1;
}
.rounded {
    border-radius: 0.475rem !important;
}
.text-white {
    color: #fff !important;
}
.ms-10 {
    margin-left: 2.5rem !important;
}
.mb-8 {
    margin-bottom: 2rem !important;
}
.bottom-0 {
    bottom: 0 !important;
}
.separator {
    display: block;
    height: 0;
    border-bottom: 1px solid #eff2f5;
}

/*sidebar*/
.brand-logo {
    text-align:center;
}
.brand-logo img.header-brand-logo-default {
    max-height: 60px;
    max-width: 100%;
}
.aside-menu .menu-nav > .menu-item.menu-item-active > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item.menu-item-active > .menu-link .menu-text {
    color: var(--color-primary);
}

.aside-menu .menu-nav > .menu-item.menu-item-active > .menu-heading .menu-icon i.menu-link-icon, .aside-menu .menu-nav > .menu-item.menu-item-active > .menu-link .menu-icon i.menu-link-icon {
    color: var(--color-primary);
}

.aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-text {
    color: var(--color-primary);
}

.aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading .menu-icon i.menu-link-icon, .aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-icon i.menu-link-icon {
    color: var(--color-primary);
}
/*End of sidebar*/
/* By ikram on 20-01-2022 */
.wizard.wizard-3 .wizard-nav .wizard-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 1rem;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step:last-child {
    margin-right: 0;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #B5B5C3;
    padding: 2rem 0.5rem;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-title span {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-bar {
    height: 4px;
    width: 100%;
    background-color: #ECF0F3;
    position: relative;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label .wizard-bar:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background-color: transparent;
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label {
    color: var(--color-primary);
}

.wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step[data-wizard-state="current"] .wizard-label .wizard-bar:after {
    width: 100%;
    background-color: var(--color-primary);
}

@media (max-width: 991.98px) {
    .wizard.wizard-3 .wizard-nav .wizard-steps {
        -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;
    }
    
    .wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        position: relative;
        width: 100%;
    }
    
    .wizard.wizard-3 .wizard-nav .wizard-steps .wizard-step .wizard-label {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 1rem 0;
    }
}


/* By ikram as on 25-01-2022 */
.border {
    border: 1px solid #eff2f5 !important;
}

.border-dashed {
    border-style: dashed !important;
    border-color: #e4e6ef;
}

.border-gray-300 {
    border-color: #e4e6ef !important;
}

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

.rounded-3 {
    border-radius: 0.775rem !important;
}

.overlay .overlay-layer {
    background-color: #000 !important;
}

.overlay.overlay-block .overlay-layer, .overlay.overlay-show .overlay-layer, .overlay:hover .overlay-layer {
    transition: all .3s ease;
    opacity: 1;
}

.rounded {
    border-radius: 0.475rem !important;
}

.text-white {
    color: #fff !important;
}

.ms-10 {
    margin-left: 2.5rem !important;
}

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

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

.separator {
    display: block;
    height: 0;
    border-bottom: 1px solid #eff2f5;
}

.pwstrength-div .progress {
    height: 1rem;
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    transform: inherit;
    border-radius: 0.42rem;
    margin-top:5px;
}

/*checkbox*/
.checkbox.checkbox-outline > input:checked ~ span {
    border-color: var(--color-primary);
}
.checkbox.checkbox-outline > input:checked ~ span:after {
    border-color: var(--color-primary);
}

/*checkbox*/
/*radiobutton*/
.switch input:checked ~ span:after {
    background-color: var(--color-primary);
}
/*radiobutton*/
/*dropdown*/
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--color-primary);
}
/*dropdown*/

/*modal*/
.modal .modal-header .close:hover i, .modal .modal-header .close:hover .ki {
    color: var(--font-family-body);
}
.modal .modal-header .close:hover {
    color: var(--font-family-body);
}
/*modal*/
/*accordion*/
.accordion.accordion-toggle-arrow .card .card-header .card-title.collapsed, .accordion.accordion-toggle-arrow .card .card-header .card-title.collapsed:after, .accordion.accordion-toggle-arrow .card .card-header .card-title, .accordion.accordion-toggle-arrow .card .card-header .card-title:after {
    color: var(--font-family-body);
}
/*accordion*/
.card.card-custom > .card-header{
    min-height:auto;
}
.card.card-custom > .card-body{
    padding: 1.25rem;
}
.card-header {
    padding: 0px 1.25rem;
}
.cs-ellipsis-line {
    line-height: 20px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-title.cs-no-icon-cart:after {
    display: none;
}
/*svg*/
.svg-icon.svg-icon-primary svg g [fill] {
    fill: var(--color-primary) !important;
}
/*svg*/

.datepicker {
    text-align: center;
}

/*.cs-setup-page.header-fixed.subheader-fixed.subheader-enabled .wrapper, .cs-subscriptionmanagement-page.header-fixed.subheader-fixed.subheader-enabled .wrapper {
    padding-top: 50px !important;
    padding-left: 0px !important;
}*/

cs-chat-inbox {
    height: 80px !important;
    overflow: hidden;
    width: auto;
}
.header-brand-logo-default {
    max-height:45px;
    max-width:100%;
}
textarea#ChatMessage {
    resize: none;
}

/*.slimScrollDiv {
    height:65vh !important;
}
.slimScrollDiv  .scroll.scroll-pull.ps.ps--active-y {
    height: 65vh !important;
}*/
.spinner:before {
    display:none;
}
table .spinner{
    display:none;
}

.datepicker table tr td span {
    display: block;
    width: 31%;
    height: auto;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px;
}

/* Chat */
.kt-messenger-friends .chat-users {
    height:80vh !important;
}
#kt_chat_content .slimScrollDiv,
#kt_chat_content .card-body {
    height: 70vh !important;
    height: calc(100vh - 30vh) !important;
    overflow: auto !important;
}
#friendListFriends {
    height: 80vh !important;
    overflow:auto;
}
.cs-userlist {
    max-height: 340px;
    overflow-x: hidden;
    overflow-y: auto;
    padding:0px 10px;
}
.cs-userlist > a {
    padding: 5px;
    margin-bottom: 2px;
    border-radius: 4px;
}
.cs-driver-selected {
    background: var(--color-primary);
}
.cs-userlist > a .symbol.symbol-light-white .symbol-label {
    background: transparent !important;
}
.cs-driver-selected .symbol.symbol-light-white .symbol-label i,
.cs-driver-selected .cs-text {
    color: #fff !important;
}
.cs-userlist::-webkit-scrollbar {
    width: 3px;
}

/*.cs-userlist::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(81 81 81 / 30%);
}*/

.cs-userlist::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
}

.nav.nav-tabs.nav-tabs-line.nav-tabs-line-3x .nav-link:hover:not(.disabled), .nav.nav-tabs.nav-tabs-line.nav-tabs-line-3x .nav-link.active, .nav.nav-tabs.nav-tabs-line.nav-tabs-line-3x .show > .nav-link {
    border-color:var(--color-primary);
}
.nav .show > .nav-link, .nav .nav-link:hover:not(.disabled), .nav .nav-link.active {
    color: var(--color-primary);
}

.display-ib {
    display:inline-block;
}
.icon-trailor {
    content: url('/Common/Images/svg-icons/trailor1.svg');
    height: 43px;
    width: 35px;
    position: absolute;
    left: 17px;
    margin-bottom: 5px;
}

.icon-location {
    content: url('/Common/Images/svg-icons/trip-location4.svg');
    height: 26px;
    width: 30px;
    position: absolute;
    left: 18px;
    margin-top: 4px;
}

.icon-semi-truck {
    content: url('/Common/Images/svg-icons/semi-truck2.svg');
    height: 36px;
    width: 36px;
    position: absolute;
    left: 16px;
}


/* Branding CSS starts */
.aside-menu {
    background-color: #060c35 !important;
    /*#0e1538*/
}
.aside {
    background-color: #060c35 !important;
    /*#0e1538*/
}
@media (min-width: 992px) {
    .brand {
        background-color: #060c35 !important;
         /*#0d122c*/ 
    }
}
.aside-menu .menu-nav > .menu-item > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item > .menu-link .menu-text {
    color: #a2a3b7;
}
.aside-menu .menu-nav > .menu-item > .menu-heading .menu-icon i, 
.aside-menu .menu-nav > .menu-item > .menu-link .menu-icon i {
    /*color: #494b74;*/
    color: #B5B5C3;
}
.aside-menu .menu-nav > .menu-item.menu-item-active > .menu-heading,
.aside-menu .menu-nav > .menu-item.menu-item-active > .menu-link {
    /*background-color: #1b1b28;*/
    background-color: #afbfd4;
}
.aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading, .aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link {
    background-color: #afbfd4;
}
.aside-menu .menu-nav > .menu-item > .menu-link .menu-icon i svg path {
    fill: var(--color-aside-icon) !important;
}

.aside-menu .menu-nav > .menu-item.menu-item-active > .menu-link .menu-icon i svg path {
    fill: var(--color-primary) !important;
}
.aside-menu .menu-nav > .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-icon i svg path {
    fill: var(--color-primary) !important;
}
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #ffffff;
}
.btn.btn-clean:hover:not(.btn-text):not(:disabled):not(.disabled) i, .btn.btn-clean:focus:not(.btn-text) i, .btn.btn-clean.focus:not(.btn-text) i {
    color: var(--color-primary) !important;
}
.cs-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.form-group .input-group input {
    height: calc(1.5em + 1.5rem + 2px) !important;
}
.input-group .input-group-append .btn {
    height: calc(1.5em + 1.7rem + 2px) !important;
}
.form-group .input-group .input-group-btn .btn{
    height: calc(1.5em + 1.7rem + 2px) !important;
}
.datepicker tbody tr > td.day.old,
.datepicker tbody tr > td.day.new {
    color: #e1e1e1 !important;
    font-weight: 400 !important;
}
.datepicker tbody tr > td.day {
    color: #3F4254 !important;
    font-weight: bolder !important;
}
.daterangepicker .drp-calendar td.available.off {
    color: #e1e1e1 !important;
}

.bootstrap-timepicker-widget table td input {
    width: 30px;
    margin: 0;
    text-align: center;
}
/* added on 21-feb-2023 */
.cs-kpiDashboard-charts .card .card-header p{
    font-size: 16px;
    font-weight: 800;
}
#AvgRatePerMileChart, #AvgMilesPerLoadChart, #LoadsQueuedByDriverChart, #LoadsCompletedByDriverChart{
    height: 150px;
    width: 100%;
    font-size: 11px;
    position: relative;
    top: 5%;
}
#TotalLoadsCompleted, #TotalLoadedMilesCovered, #TotalRevenueChart{
    font-size: 11px;
    height: 100px;
}
@media (min-width: 1500px){
    #AvgRatePerMileChart, #AvgMilesPerLoadChart, #LoadsQueuedByDriverChart, #LoadsCompletedByDriverChart{
        height: 150px;
    }  
}
@media (min-width: 1900px){
    #AvgRatePerMileChart, #AvgMilesPerLoadChart, #LoadsQueuedByDriverChart, #LoadsCompletedByDriverChart{
        top: 0% !important;
    }  
}
@media (max-width: 1024px){
    #AvgRatePerMileChart, #AvgMilesPerLoadChart, #LoadsQueuedByDriverChart, #LoadsCompletedByDriverChart{
        top: 2%;
    }  
}
.cs-cancel-i-position{
    position: relative;
    top: 2px;
}
.cs-select2-width .select2, .c-select2 .select2 {width:100% !important;}
.cs-filter-max-width{
    max-width: 140px;
}
.cs-kpi-daterange{
    max-width:230px;
}
#kpiFilter .btn[aria-expanded="true"] i{
    transform: rotate(180deg);
    
}
#kpiFilter .btn i{
    transition: transform .4s ease-in-out;  
}
#kpiFilter .select2-search__field{
    width: 100% !important;
    margin-top: 0px;
}
#kpiFilter .select2-search.select2-search--inline{
    line-height: 30px;
}
.cs-chart-overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}

.cs-chart-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
@media (min-width: 2300px){
    .w-100-extra-lg{
        width: 100%;
    }
}
@media (max-width: 1200px){
    .cs-kpiDashboard-charts .card{
        height: 275px !important;
    }
    #TotalLoadsCompleted, #TotalLoadedMilesCovered, #TotalRevenueChart {
        height: 150px;
    }
}
@media (min-width: 1200px ) and (max-width: 1300px){
    #AvgRatePerMileChart, #AvgMilesPerLoadChart, #LoadsQueuedByDriverChart, #LoadsCompletedByDriverChart{
        height: 120px;
    }
}
@media (max-width: 1300px){
    .cs-kpiDashboard-charts .card .card-header span{
        font-size: 14px;
    }
}

.cs-sec-btn {
    border-color: #fff !important;
    background-color: #f17222 !important;
    border-radius: 10px!important;
    padding: 1.2rem 3rem!important;
    height:auto!important;
    font-size:1.2rem;
}
.cs-button-main.cs-sec-btn {
    background-color: #f17222;
    border-color: #fff;
}
.cs-sec-btn:hover {
   opacity:0.8;
}

.cs-button-main.cs-sec-btn:hover {
    opacity: 0.8;
}
.login-box-logo {
    width:30%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
    .login-box-logo {
        width: 65%;
    }
}
.bg-img-box {
    background-position: center center;
    background-size: cover;
}
.cs-light-btn {
    border-radius: 10px;
    padding: 1.2rem 3rem !important;
    font-size:1.2rem;
}

/* Chrome, Safari, Edge, Opera */
.cs-input-noarrow input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.cs-input-noarrow input[type=number] {
    -moz-appearance: textfield;
}
.label-text {
    font-size: 1rem;
    font-weight: 400;
    color: #3F4254;
}
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item > .menu-heading .menu-text,
.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item > .menu-link .menu-text {
    color: #a2a3b7;
}
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item > .menu-heading .menu-icon, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item >
.menu-link .menu-icon i.menu-link-icon {
    color: #B5B5C3 !important;
}
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading .menu-icon, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-icon {
    color: #181c32;
}
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-text {
    color: #181c32;
}
.custom-menu.aside-menu .menu-nav > .menu-item.menu-item-open > .menu-heading, .aside-menu .menu-nav > .menu-item.menu-item-open > .menu-link {
    background-color: #afbfd4;
}
    .custom-menu.aside-menu .menu-nav > .menu-item.menu-item-open > .menu-heading .menu-icon, .aside-menu .menu-nav > .menu-item.menu-item-open > .menu-link .menu-icon
    i.menu-link-icon {
        color: #0e1538;
    }
    .custom-menu.aside-menu .menu-nav > .menu-item.menu-item-open > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item.menu-item-open > .menu-link .menu-text {
        color: #181c32;
    }
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link {
    background-color: #afbfd4;
}
    .custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading .menu-icon, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-icon i.menu-link-icon {
        color: #181c32!important;
    }
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item.menu-item-active > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item.menu-item-active > .menu-link .menu-text {
    color: #181c32 !important;
}
.custom-menu.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item.menu-item-active > .menu-heading .menu-icon, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item.menu-item-active > .menu-link .menu-icon i.menu-link-icon {
    color: #181c32 !important;
}

.cus-save-btn {
    border-left: 1px solid #a4a4a4;
    border-radius: 0px;
}
.dispatch-modal {
    max-height: 69vh;
    overflow-y: auto;
    overflow-x: clip;
}
@media(max-height: 735px){
    .dispatch-modal {
        max-height: 65vh;
    }
}
@media(max-height: 650px) {
    .dispatch-modal {
        max-height: 60vh;
    }
}
@media(max-height: 450px) {
    .dispatch-modal {
        max-height: 45vh;
    }
}
.cs-button-outline:hover i{
    color:#ffffff;
}
.label-pill-primary {
    background-color: #F37321;
    color: white
}
.bg-light-tr{
    background-color: #E5EAEE;
}
input[type="radio"] {
    accent-color: rgb(45, 45, 45);
}
#customPopupModal .merge-modal-cls{
    width:500px!important;
}
#customPopupModal {
    background: #7c7c7c21;
}


.edit-invoic-box .form-control {
    height: fit-content;
}

.edit-invoic-box ::placeholder {
    color: black;
    opacity: 1; /* Firefox */
}

.edit-invoic-box .comapny-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.invoic-top .form-control {
    height: 30px;
    width: 130px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 0px;
}

.bg-pdf-head {
    background: #7db00d;
}

.pdf-table .comapny-name {
    font-size: 14px;
}
/*.pdf-table {
    height:300px;
    overflow:scroll;
}*/
.pdf-table th {
    white-space: nowrap;
}

.pdf-table tr {
    border-bottom: 1px solid lightgray;
}

.pdf-table .table-data-box {
    min-width: 200px;  
    font-size: 16px;
}

.modal-size-90p {
    max-width: 98vw !important;
}

    .modal-size-90p .modal-header {
        padding: 10px;
    }

.edit-invoic-box .header-box {
    width: 500px;
    margin-bottom: 50px;
}

.edit-invoic-box .invoice-heading {
    color: #00293a;
    font-weight: 600;
}

.edit-invoic-box .pdf-table ::placeholder {
    color: #00293a;
    opacity: 1; /* Firefox */
}

.edit-invoic-box .total-box {
    min-width: 300px;
    color: #8c8c8c;
}

.edit-invoic-box .form-control[readonly] {
    margin-bottom: 0px;
    border: 0;
    cursor: not-allowed;
    background-color: #ffff;
    /*color: #898989 !important;*/
    padding: 5px 0px;
    word-break: break-all;
    white-space: normal;
    resize: none;
}

    .edit-invoic-box .form-control[readonly]::placeholder {
        /* color: #898989 !important;*/
        border: 0;
    }

.edit-invoic-box .logo-box {
    width: 150px;
    height: 100px;
    background: lightgray;
}

.view-box .text-heading::placeholder {
    font-weight: 600;
    color: #00293a !important;
}

.edit-invoic-box.view-box .comapny-name-top::placeholder {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00293a !important;
}

.height-fit {
    height: fit-content;
}

.invoic-top .heading {
    font-size: 22px;
}

.invalid-top .total-text {
    font-size: 16px;
}

.rec-text::placeholder {
    font-size: 25px;
    font-weight: 600;
}

.pdf-table .comapny-name {
    color: #00293a !important;
    margin-bottom: 0px;
}
.rec-adr-box::placeholder {
    color: #888888!important;
}
.thank-box {
    width: 500px;
    color: #5b5b5b;
}
.view-box-h {
    height: 600px;
    overflow: scroll;
}

.creat-modal-phone .iti--allow-dropdown{
    width:100%;
}

.attached-doc-box {
        border: 1px solid #f4f4f4;
    padding: 10px;
    border-radius: 6px;
}
    .attached-doc-box .docs-name {
        height: 5px;
        width: 5px;
        margin-right: 10px;
        border-radius: 50%;
        background: #3f3f3f;
    }

.main-form-box .invalid-feedback{
    width:200px;
}

.subscription-expired{
    width:100%;
    padding:0!important;
    margin-top:20px;
}

.overflow-scroll-y{
    overflow-y:scroll;
}
.mh-400px{
    max-height:400px;
}
/* width */
.modal-box::-webkit-scrollbar {
    width: 5px;
}



/* Handle */
.modal-box::-webkit-scrollbar-thumb {
    background: lightgray;
    border-radius: 10px;
}
/* Handle on hover */
.modal-box::-webkit-scrollbar-thumb:hover {
    background: #0000;
}
#taxRatePercent::placeholder {
    color: #8c8c8c;
}
.fs-16px{
    font-size: 16px;
}
.top-1px{
    position: relative;
    top: 1px;
}
.cs-eld-msg-card {
    height: calc(68vh - 1rem);
}