/* Font Family Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Color Variables */
:root {
    --sidebarbg: #fff;
    --sidebarcolor: #6c757d;
    --sidebarbordercolor: rgba(72, 94, 144, 0.16);
    --sidebaractivecolor: #4c75f2;
    --sidebarheadingcolor: #6c757d;
    --sidebarheadingbackground: #fff;
    --logobg: #fff;
    --logocolor: #4c75f2;
    --headerbackground: #fff;
    --headercolor: #292b3a;
    --searchcolor: #292b3a;
    --primarycolor: #1e3d73;
    --bodycolor: #292b3a;
    --bodybackground: #f6f6f7;
    --bordercolor: rgba(72, 94, 144, 0.16);
    --mainbackground: #fff;
    --secondary: #6c757d;
    --success: #1ee0ac;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #f64e60;
    --dark: #343a40;
    --sidebarwidth: 140px;
}



#header-fix {
    left: 0px;
    z-index: 10;
    transition: all 0.5s;
    -webkit-box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
    background: var(--headerbackground);
}

#header-fix nav {
    /*height: 65px;*/
}

#header-fix a, #header-fix a:hover {
    color: var(--headercolor);
    text-decoration: none;
}

@media (max-width: 991px) {
    #header-fix {
        left: 0px;
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

/* Common Css */
body {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    background: var(--bodybackground);
    color: var(--bodycolor);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.vh-100 {
    min-height: 100vh;
}

.body-color, .form-control, .form-control:focus {
    color: var(--bodycolor);
}

hr {
    border-top: 1px solid var(--bordercolor);
}

.border, .theme-border {
    border-color: var(--bordercolor) !important;
}

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

main {
    margin-top: 65px;
    top: 0px;
    margin-left: 0px;
}

@media (max-width: 991px) {
    main {
        margin-left: 0px;
        width: 100%;
    }
}

a {
    color: var(--bodycolor);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.theme-background {
    background-color: var(--mainbackground);
}

.z-index-1 {
    z-index: 1;
}

.z-index-0 {
    z-index: 0;
}

.pointer-event-none {
    pointer-events: none;
}

.color-primary, .text-primary, .btn-link {
    color: var(--primarycolor) !important;
}

.fill-color {
    fill: var(--primarycolor);
}

.fill-color-rgba {
    fill: rgba(var(--primarycolor), 0.7);
}

.hide-sidebar main, .hide-sidebar .site-footer {
    margin-left: 0px;
}

.btn-outline-primary {
    color: var(--primarycolor) !important;
    border-color: var(--primarycolor);
}

.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary:focus, .btn-outline-primary.dropdown-toggle {
    box-shadow: none !important;
    border-color: var(--primarycolor) !important;
    background: var(--primarycolor) !important;
    color: #fff !important;
}

.bg-primary, .round-button {
    background: var(--primarycolor) !important;
}

.bg-primary-light {
    position: relative;
}

.bg-primary-light:before {
    content: "";
    background: var(--primarycolor);
    opacity: 0.1;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-primary-light .card-body {
    z-index: 1;
}

.bg-light {
    background: #f8f9fa !important;
}

.form-control, .form-control:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus,
.btn-primary.focus, .btn-primary:focus {
    outline: none;
    box-shadow: none;
}

.btn-primary, .btn-default, .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle,
.btn-primary.focus, .btn-primary:focus,
.btn-primary.disabled, .btn-primary:disabled,
.btn-primary.disabled:hover, .btn-primary:disabled:hover {
    background-color: var(--primarycolor) !important;
    border-color: var(--primarycolor);
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: var(--primarycolor) !important;
}

.btn-default {
    color: #fff;
}

.btn {
    font-size: inherit;
    font-weight: 500;
}

.round-button {
    width: 30px;
    height: 30px;
    color: #fff;
    display: inline-block;
    border-radius: 30px;
    line-height: 30px;
    text-align: center;
}

.round-button:hover {
    color: #fff;
}

.show > .btn-secondary.dropdown-toggle,
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--primarycolor);
    border-color: var(--primarycolor);
}

.btn-primary:hover {
    -webkit-box-shadow: 0 8px 25px -8px black;
    box-shadow: 0 8px 25px -8px black;
}

.font-w-600 {
    font-weight: 600;
}

.font-w-500 {
    font-weight: 500;
}

.tx-s-12 {
    font-size: 12px;
}

.font-15 {
    font-size: 15px;
}

.line-h-1 {
    line-height: 1;
}

.transaction-date {
    min-width: 40px;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.bg-success {
    background: var(--success) !important;
}

.bg-info {
    background: var(--info) !important;
}

.bg-warning {
    background: var(--warning) !important;
}

.bg-danger {
    background: var(--danger) !important;
}

.bg-dark {
    background: var(--dark) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.search-bar-menu {
    line-height: 31px;
    font-size: 20px;
    border-left: 1px solid var(--bordercolor);
    padding: 0px 10px;
    margin-top: 3px;
}

.search-bar-menu.active {
    color: var(--success);
}

.breadcrumb-item.active, .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bodycolor);
}

/********** Animation Style *************/
.dt-buttons{
    float: right;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

/********** Animation Style *************/
.zoom {
    transition: transform 150ms ease;
}

.zoom:hover {
    transform: scale(1.01);
    -webkit-box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 6px 0 rgba(85, 85, 85, 0.08), 0 1px 20px 0 rgba(0, 0, 0, 0.07), 0px 1px 11px 0px rgba(0, 0, 0, 0.07);
    background-color:#e2e3e4;   
}

/* Card Header */
.card-liner-icon {
    font-size: 25px;
    line-height: 31px;
}

.card-liner-title {
    font-size: 20px;
}

.card-liner-subtitle {
    font-size: 13px;
    margin-bottom: 0px;
}

.card-liner-absolute-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}

.card-liner-small-tip {
    border-radius: 20px;
    padding: 2px 7px;
    font-size: 11px;
}

.card-liner-content {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--bordercolor);
}

.card {
    border: 1px solid var(--bordercolor);
    border-radius: 5px;
    background: var(--mainbackground);
}

.card .card-body {
    padding: 15px;
}

.card .card-header {
    background-color: transparent;
    border-color: var(--bordercolor);
    padding: 15px;
}

.card .card-header h4 {
    line-height: 1;
    font-size: 1rem;
}

.card .card-header .card-title {
    margin-bottom: 0px;
}

.card .card-content {
    z-index: 1;
}

/* Bootstrap Element */
.progress {
    height: 1rem;
}

.progress .progress-bar {
    background-color: var(--primarycolor);
}

/*===========Progress Bar ==============*/
.barfiller {
    width: 100%;
    height: 10px;
    background: var(--bodybackground);
    box-shadow: 0 2px 2px rgba(224, 230, 237, 0.458824), 1px 6px 7px rgba(224, 230, 237, 0.458824);
}

.barfiller.h-2 {
    height: 2px;
}

.barfiller.h-3 {
    height: 3px;
}

.barfiller.h-4 {
    height: 4px;
}

.barfiller.h-5 {
    height: 5px;
}

.barfiller.h-6 {
    height: 6px;
}

.barfiller.h-7 {
    height: 7px;
}

.barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
}

.col-xs-0, 
.col-sm-0,
.col-md-0,
.col-lg-0 {
  flex: 0 0 0;
  max-width: 0;
  padding-right: 0;
  padding-left: 0;
}

.barfiller .tip {
    margin-top: -9px;
    padding: 3px 6px;
    color: #fff;
    left: 0px;
    position: absolute;
    z-index: 2;
    background: #343a40;
}

.barfiller .tip.primary {
    background: var(--primarycolor);
}

.barfiller .tip.primary:after {
    border-color: var(--primarycolor) transparent;
}

.barfiller .tip.secondary {
    background: var(--secondary);
}

.barfiller .tip.secondary:after {
    border-color: var(--secondary) transparent;
}

.barfiller .tip.success {
    background: var(--success);
}

.barfiller .tip.success:after {
    border-color: var(--success) transparent;
}

.barfiller .tip.info {
    background: var(--info);
}

.barfiller .tip.info:after {
    border-color: var(--info) transparent;
}

.barfiller .tip.warning {
    background: var(--warning);
}

.barfiller .tip.warning:after {
    border-color: var(--warning) transparent;
}

.barfiller .tip.danger {
    background: var(--danger);
}

.barfiller .tip.danger:after {
    border-color: var(--danger) transparent;
}

/* Footer */
footer.site-footer {
    background: var(--mainbackground);
    text-align: center;
    padding: 10px 0px;
    margin-top: 20px;
    margin-left: 0px;
}

@media (max-width: 991px) {
    footer.site-footer {
        margin-left: 0px;
    }
}

/* Page Loader */
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--mainbackground);
}

.loader {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--primarycolor);
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
  95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
  59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
  95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
  59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Height */
.height-300 {
    min-height: 300px;
}

.height-175 {
    height: 175px;
    min-height: 175px;
    overflow: auto;
}

.height-200 {
    height: 200px;
    min-height: 200px;
    overflow: auto;
}

.height-235 {
    height: 235px;
    min-height: 235px;
    overflow: auto;
}

.height-350 {
    min-height: 350px;
}

.height-400 {
    height: 400px;
    min-height: 400px;
    overflow: auto;
}

.height-500 {
    min-height: 500px;
}


/* tablesaw */
.tablesaw.table-bordered td, .tablesaw.table-bordered th {
    border-color: var(--bordercolor);
}

.tablesaw .tablesaw-swipe-cellpersist {
    border-color: var(--bordercolor);
}

.tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup, .tablesaw-btn {
    background-color: var(--mainbackground);
    border-color: var(--bordercolor);
    box-shadow: none;
}

.tablesaw-bar .tablesaw-bar-section .tablesaw-btn {
    color: var(--bodycolor);
}

.tablesaw-bar .tablesaw-bar-section .tablesaw-btn:after {
    padding-top: 1.5em;
}

.tablesaw-stack tbody tr {
    border-color: var(--bordercolor);
}

/* Table / Layout */
.table:not(.table-dark) {
    color: var(--bodycolor);
}

.table:not(.table-dark) thead th, .table:not(.table-dark) tfoot th, .table:not(.table-dark) td, .table:not(.table-dark) th {
    padding: 1em;
    border-color: var(--bordercolor);
}

.table:not(.table-dark).table-bordered {
    border-color: var(--bordercolor);
}

.table.pick-table thead th, .table.pick-table tfoot th, .table.pick-table td, .table.pick-table th {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.layout-primary thead {
    background-color: var(--primarycolor);
    color: #fff;
}

.layout-primary thead th {
    border-bottom: none;
}

.layout-primary.bordered {
    border: 2px solid var(--primarycolor);
}

.layout-secondary thead {
    background-color: var(--secondary);
    color: #fff;
}

.layout-secondary thead th {
    border-bottom: none;
}

.layout-secondary.bordered {
    border: 2px solid var(--secondary);
}

.layout-danger thead {
    background-color: var(--danger);
    color: #fff;
}

.layout-danger thead th {
    border-bottom: none;
}

.layout-danger.bordered {
    border: 2px solid var(--danger);
}

.layout-warning thead {
    background-color: var(--warning);
    color: #fff;
}

.layout-warning.bordered {
    border: 2px solid var(--warning);
}

.layout-info thead {
    background-color: var(--info);
    color: #fff;
}

.layout-info thead th {
    border-bottom: none;
}

.layout-info.bordered {
    border: 2px solid var(--info);
}

.layout-success thead {
    background-color: var(--success);
    color: #fff;
}

.layout-success thead th {
    border-bottom: none;
}

.layout-success.bordered {
    border: 2px solid var(--success);
}

.layout-dark thead {
    background-color: var(--dark);
    color: #fff;
}

.layout-dark thead th {
    border-bottom: none;
}

.layout-dark.bordered {
    border: 2px solid var(--dark);
}

/* datatable */
.pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: var(--bordercolor);
    color: var(--bodycolor);
}

.pagination .page-link {
    background-color: transparent;
    border-color: var(--bordercolor);
    color: var(--primarycolor);
}

.pagination .page-item.active .page-link {
    background-color: var(--primarycolor);
    border-color: var(--primarycolor);
    color: #fff;
    z-index: 1;
}

/* Footable */
.footable-sortable span {
    margin-left: 10px;
}

.footable-pagination-wrapper .pagination {
    justify-content: center;
}

.footable-pagination-wrapper .pagination li:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.footable-pagination-wrapper .pagination li:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.footable-pagination-wrapper .pagination .footable-page-link {
    padding: .5rem .75rem;
    border: 1px solid var(--bordercolor);
}

.footable-pagination-wrapper .pagination .active .footable-page-link {
    border: 1px solid var(--primarycolor);
    background-color: var(--primarycolor);
    color: #fff;
}

#example .open > .dropdown-menu {
    display: block;
}

/* Js grid */
.jsgrid {
    height: auto !important;
    min-height: 400px;
}

.jsgrid-pager {
    text-align: center;
    margin-top: 20px;
}

.jsgrid-pager span {
    padding: 0px;
}

.jsgrid-pager span:first-child a {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.jsgrid-pager span:last-child a {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.jsgrid-pager .jsgrid-pager-page a, .jsgrid-pager .jsgrid-pager-nav-button {
    padding: .5rem .75rem;
    border: 1px solid var(--bordercolor);
}

.jsgrid-pager .jsgrid-pager-current-page {
    padding: .5rem .75rem;
    border: 1px solid var(--primarycolor);
    background-color: var(--primarycolor);
    color: #fff;
}

/* Tablesaw/Responsive Table */
.tablesaw-columntoggle td.title a,
.tablesaw-swipe td.title a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 10em;
    max-width: 40vw;
}

@media (min-width: 40em) {
    td.title {
        max-width: 12em;
    }
}

/*********** Footer ************/
.site-footer {
    text-align: center;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: var(--mainbackground);
    border-top: 1px solid var(--bordercolor);
    text-transform: uppercase;
}

/* Responsive Css */
@media (max-width: 767px) {
    .card .card-header h4 {
        font-size: 1rem;
        font-weight: bold;
    }

    .timeline-point:after, .timeline-point:before, .timeline:after, .timeline:before {
        display: none;
    }

    .header-chart {
        float: left;
    }
}
