:root {
    --font-sans-serif: "Sen";
    --white: #FCFCFD;;
    --black: #000;
    --secondary: #012970;
    --muted: #757575;
    --red: red;
    --sky: #ecf3ff;
    --sky-2: #f6f6fe;
    --icon: #b9b9b9;
    --gray-light: #e2e9e1;
    --gray-light-2: #f9f9f9;
    --gray-dark: #57584e;
    --text-gray-300: #dddfeb;
    --text-gray-600: #858796;
    --text-gray-800: #5a5c69;
    --steel: #fff; /*#f4f6f8*/
    --body-bg: #F5F8FA;
    --animate-duration: 800ms;
    --animate-delay: 2s;
}

body, html {
    font-family: var(--font-sans-serif);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: #252930;
/*    font-weight: 600;*/
}

a {
    color: #15a362;
    text-decoration: none;
}

a:hover {
    color: #128c54;
}

hr {
    background: #adb4c0;
}

/*--------------------------------------------------------------
# Portal
--------------------------------------------------------------*/

.table-action-icon {
    font-size: 16px;
    color: #333;
    padding: 0 5px;
}

.table-action-view,.table-action-view:hover {
    flex-shrink: 0;
    background: var(--gray-light-2);
    color: #333;
    font-size: 12px;
    /*font-weight: 500;*/
    padding: 5px 10px !important;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: none;
    text-transform: inherit;
}

.dashboard-wrapper {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px 0;
    /*margin: 50px 0;*/
}

@media (min-width: 768px) {
    .grid-divider {
        position: relative;
        padding: 0;
    }
    
    .grid-divider>[class*='col-'] {
        position: static;
    }
    
    .grid-divider>[class*='col-']:nth-child(n+2):before {
        content: "";
        border-left: 1px solid #e5e5e5;
        position: absolute;
        top: 0;
        bottom: 0;
    }
    
    .col-padding {
        padding: 0 35px;
    }

    .col-padding h6 {
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .col-padding h6 i {
        font-size: 8px;
        margin-right: 5px;
    }

    .col-padding p {
        font-size: 12px;
    }

    .col-padding p i {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .dashboard-wrapper {
        border: none;
        padding: 0;
        margin: 50px 0;
    }

    .grid-divider {
        padding: 0 20px 0 20px;
    }

    .col-padding {
        padding: 20px 0 5px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .col-padding h6 {
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .col-padding h6 i {
        font-size: 8px;
        margin-right: 5px;
    }

    .col-padding p {
        font-size: 12px;
    }
}

ul.timeline {
    list-style-type: none;
    position: relative;
    color: var(--muted);
    font-size: .875rem;
    font-weight: 500;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.timeline > li {
    /*/*margin: 20px 0;
    padding-left: 20px;*/
}

ul.timeline > li:before {
    content: ' ';
    background: #0d6efd;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #0d6efd;
    left: -3.5px;
    width: 8px;
    height: 8px;
    z-index: 400;
}

ul.timeline li a {
    color: var(--text-gray-800);
    font-weight: bold;
}

ul.ks-cboxtags, ul.ks-cboxtags-all {
    list-style: none;
    padding: 0;
}

ul.ks-cboxtags li, ul.ks-cboxtags-all li {
    display: inline;
    margin-right: 10px;
}

ul.ks-cboxtags li label, ul.ks-cboxtags-all li label {
    display: inline-block;
    background-color: var(--white);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    color: #adadad;
    border-radius: 5px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}

ul.ks-cboxtags li label, ul.ks-cboxtags-all li label {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray-800);
}

ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
    background-color: var(--secondary);
    color: var(--white);
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
    display: absolute;
}
    
ul.ks-cboxtags li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

ul.ks-cboxtags-all li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags-all li label .btn-close {
    font-size: 10px;
    color: var(--red) !important;
    padding: 15px 0 15px 15px;
    margin-left: 15px;
}

.sub-heading {
    font-size: 10.5px;
    text-transform: uppercase;
    color: var(--text-gray-600);
    font-weight: 600;
    padding: 10px 15px 10px 0;
    letter-spacing: .5px;
}

/*ul.ks-cboxtags li input[type="checkbox"]:focus + label {
    border: 2px solid var(--sunshine);
}*/

/*.input-box {
    position: relative
}

.input-box i {
    position: absolute;
    right: 13px;
    top: 15px;
    color: #ced4da
}

.form-control {
    height: 50px;
    background-color: #eeeeee69
}

.form-control:focus {
    background-color: #eeeeee69;
    box-shadow: none;
    border-color: #eee
}*/

.go-back,.go-back:hover {
    color: var(--text-gray-800);
}

.go-back i {
    font-size: 12px;
}

.go-back span {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

button:disabled {
    cursor: not-allowed;
    pointer-events: all !important;
}

.action-btn:hover {
    color: var(--white);
}

.help-block {
    font-size: 10px;
    text-align: left;
    color: red;
    padding-top: 5px;
}

.ajax-response {
    font-size: 11px;
    text-align: left;
    color: red;
}

.spinner-border-xs {
    width: .8rem;
    height: .8rem;
    border-width: .1em;
}

.table-dark {
    background: #252930;
    color: #fff
}

.table-bordered th,
.table-bordered td {
    border-color: #e7e9ed
}

.table th,
.table td {
    border-color: #e7e9ed
}

.table thead th {
    border-color: #e7e9ed
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f5f5f5
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #515a6a
}

.table-hover>tbody>tr:hover {
    background-color: #fff
}

.popover {
    border-color: #dee1fc
}

.bs-popover-left>.arrow::before,
.bs-popover-auto[x-placement^=left]>.arrow::before {
    border-left-color: #dee1fc
}

.bs-popover-right>.arrow::before,
.bs-popover-auto[x-placement^=right]>.arrow::before {
    border-right-color: #dee1fc
}

.bs-popover-top>.arrow::before,
.bs-popover-auto[data-popper-placement^=top]>.arrow::before,
.bs-popover-auto[x-placement^=top]>.arrow::before {
    border-top-color: #dee1fc
}

.bs-popover-bottom>.arrow::before,
.bs-popover-auto[data-popper-placement^=bottom]>.arrow::before,
.bs-popover-auto[x-placement^=bottom]>.arrow::before {
    border-bottom-color: #dee1fc
}

button.close:focus {
    outline: none;
    box-shadow: none
}

/*.btn {
    font-weight: 600;
    padding: .4rem 1rem;
    font-size: .875rem;
    border: none;
/*    text-transform: capitalize;*/
}*/

.btn:hover,
.btn:active,
.btn:focus {
    text-decoration: none
}

.btn .bi {
    position: relative;
    top: -2px
}

.btn:focus,
.btn.focus {
    box-shadow: none !important
}

.dropdown-menu {
    border-color: #e7e9ed
}

.dropdown-menu .dropdown-item {
    padding: .5rem 1rem
}

.dropdown-menu .dropdown-item:hover {
    color: #252930
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: #fafbff
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background: #fafbff
}

.dropdown-divider {
    border-top-color: #e7e9ed;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1
}

.dropdown-toggle.no-toggle-arrow:after {
    display: none !important
}

.app-header {
    /*box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);*/
/*    border-bottom: 1px dashed #e7e9ed;*/
    border-bottom: 1px solid #e7e9ed;
    height: 65px;
    padding-top: 7px;
    background: #fff;
/*    background: #F5F8FA;*/
}

.app-header-inner {
    position: relative
}

.app-search-form {
    position: relative;
    max-width: 600px
}

.app-search-form .search-input {
    font-size: .875rem;
    border-radius: .25rem;
    padding-right: 3rem;
    padding-left: 1rem
}

.app-search-form .search-input:focus {
    border-color: #e7e9ed
}

.app-search-form .search-btn {
    color: #828d9f;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 0;
    padding: .5rem 1rem
}

.app-search-form .search-btn:active,
.app-search-form .search-btn:focus,
.app-search-form .search-btn:hover {
    outline: none !important;
    color: #15a362;
    box-shadow: none
}

.app-utility-item {
    display: inline-block;
    margin-right: 1.25rem
}

.app-utility-item:last-child {
    margin-right: 0
}

.app-utility-item>a {
    color: #5d6778
}

.app-utility-item>a:hover {
    color: #252930
}

.app-utility-item .dropdown-toggle {
    position: relative
}

.app-utility-item .dropdown-menu {
    font-size: .875rem;
    margin: 0
}

.app-utility-item .dropdown-menu.show {
    top: 23px !important
}

.app-utility-item .icon {
    font-size: 1.25rem;
    width: 24px;
    height: 24px
}

.app-utility-item .icon-badge {
    display: inline-block;
/*    border-radius: 50%;*/
    position: absolute;
    right: -0.45rem;
    top: -0.3rem;
    /*width: 20px;
    height: 20px;
    font-size: .6rem;
    font-weight: bold;
    padding-top: 1px;
    color: #fff;*/
    text-align: center
}

.app-utility-item .icon-badge.icon-badge {
/*    background: #ec776c;*/
    border: 2px solid #fff
}

.app-notifications-dropdown .dropdown-menu {
    width: 300px
}

.app-notifications-dropdown .dropdown-menu .dropdown-menu-header {
    border-bottom: 1px solid #e7e9ed
}

.app-notifications-dropdown .dropdown-menu .dropdown-menu-title {
    font-size: 1rem
}

.app-notifications-dropdown .dropdown-menu .profile-image {
    width: 36px;
    height: 36px
}

.app-notifications-dropdown .dropdown-menu .info {
    padding-right: 80px;
    position: relative
}

.app-notifications-dropdown .dropdown-menu .meta {
    color: #828d9f;
    position: absolute;
    right: 0;
    top: 0;
    font-size: .75rem
}

.app-notifications-dropdown .dropdown-menu .dropdown-menu-footer {
    border-top: 1px solid #e7e9ed
}

.app-notifications-dropdown .dropdown-menu .item {
    min-width: 250px;
    position: relative;
    border-bottom: 1px solid #e7e9ed
}

.app-notifications-dropdown .dropdown-menu .item:last-child {
    border-bottom: none
}

.app-notifications-dropdown .dropdown-menu .item:hover {
    background: #f5f5f5
}

.app-notifications-dropdown .dropdown-menu .link-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0
}

.app-notifications-dropdown .app-icon-holder {
    display: inline-block;
    background: #edfdf6;
    color: #15a362;
    width: 36px;
    height: 36px;
    padding-top: 4px;
    font-size: 1rem;
    text-align: center;
    border-radius: 50%
}

.app-notifications-dropdown .app-icon-holder.icon-holder-mono {
    background: #f5f6fe;
    color: #828d9f
}

.app-notifications-dropdown .app-icon-holder svg {
    width: 20px;
    height: 20px
}

.app-user-dropdown {
    display: inline-block
}

.app-user-dropdown img {
    width: 36px;
    height: 36px
}

@media(min-width: 576px) {
    .app-notifications-dropdown .dropdown-menu {
        width: 400px
    }
}

@media(min-width: 1200px) {
    .app-header-inner {
        margin-left: 250px
    }
}

@media(max-width: 575.98px) {
    .search-mobile-trigger {
        cursor: pointer;
        -webkit-opacity: .8;
        -moz-opacity: .8;
        opacity: .8
    }
    .search-mobile-trigger:hover {
        color: #15a362;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1
    }
    .app-search-box {
        display: none;
        position: absolute;
        left: 0;
        top: 56px;
        padding: 0;
        height: 100vh;
        background: rgba(0, 0, 0, .5);
        transition: all .4s ease-in-out
    }
}

@media(max-width: 575.98px)and (prefers-reduced-motion: reduce) {
    .app-search-box {
        transition: none
    }
}

@media(max-width: 575.98px) {
    .app-search-box .app-search-form .search-input {
        border-radius: 0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .app-search-box .app-search-form .search-btn {
        top: 7px
    }
}

@media(max-width: 575.98px) {
    .app-search-box.is-visible {
        display: block
    }
}

.app-sidepanel {
    position: fixed;
    min-height: 100vh;
    height: 100%;
    left: 0;
    top: 0;
    font-size: .875rem;
    border-right: 1px solid #e7e9ed;
/*    border-right: 1px dashed #e7e9ed;*/
}

.app-sidepanel .panel-drop {
    display: none
}

.app-sidepanel .sidepanel-inner {
    position: relative;
    z-index: 10;
    background: var(--steel);
/*    box-shadow: rgba(0, 0, 0, .05) 0px 8px 15px;*/
    width: 250px;
    height: 100%;
/*    padding: 20px;*/
}

.app-sidepanel .sidepanel-close {
    display: none;
    position: absolute;
    z-index: 20;
    right: -2rem;
    top: 0;
    color: #fff;
    font-size: 3rem
}

.app-sidepanel.sidepanel-hidden {
    left: -400px
}

.app-sidepanel.sidepanel-visible {
    left: 0
}

.app-sidepanel .app-nav-main {
    /*overflow-y: auto;
    scrollbar-color: rgba(0, 0, 0, .1) #e7e9ed;
    scrollbar-width: thin;*/
    padding: 20px;
}

.app-sidepanel .app-nav-main:hover {
    overflow-y: auto;
    scrollbar-color: rgba(0, 0, 0, .1) #e7e9ed;
    scrollbar-width: thin;
}

.app-sidepanel .app-nav-main::-webkit-scrollbar {
    width: 6px !important;
    height: 10px !important;
    background-color: transparent !important;
    color: black !important;
}

.app-sidepanel .app-nav-main::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .1);
    border-radius: .5rem
}

.app-sidepanel .app-nav-main::-webkit-scrollbar-thumb:hover {
    background-color: #000000 !important;
}

.app-branding {
    height: 60px;
    padding-top: 0.5rem;
    padding-left: 1rem;
    margin-bottom: 1rem
}

.app-branding .logo-icon {
    width: 36px;
    height: 36px
}

.app-branding i {
    font-size: 30px;
    color: var(--sunshine);
}

.app-branding .app-logo span {
    margin-left: 10px;
}

.app-branding .logo-text {
    color: rgba(255,255,255,.3);
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: middle
}

.app-nav {
    color: #5d6778;
    display: block;
    padding: 0;
    width: 100%;
/*    margin-top: 40px;*/
}

.app-nav .app-menu {
    margin-bottom: 0
}

.app-nav .nav-item {
    display: block;
    color: var(--black);
    background: #fff
}

.app-nav .nav-link {
    display: block;
    padding: .875rem 1rem;
    color: #252930;
    position: relative;
    display: block;
    padding-left: 3rem;
    border-left: 3px solid transparent
}

.app-nav .nav-link.active > a {
    color: red;
    /*background: #edfdf6;
    border-left: 3px solid #15a362;
    border-radius: 0px !important;
    font-weight: 500;*/
}

.app-nav .nav-link.active span {
    color: #0062e4;
}

.app-nav .nav-link.active div {
/*    font-weight: bold !important;*/
    color: #0062e4 !important;
}

.app-nav .nav-link.submenu-toggle.active {
    background: none;
    border-color: transparent
}

.app-nav .nav-link:hover {
    color: #15a362
}

.app-nav .nav-icon {
    position: absolute;
    left: 1rem;
    top: .7rem
}

.app-nav .nav-icon .bi {
    width: 1.25rem;
    height: 1.25rem
}

.app-nav .submenu-arrow {
    position: absolute;
    right: 1rem;
    top: .7rem;
    color: #828d9f
}

.app-nav .submenu-arrow svg {
    width: 8px;
    height: 8px
}

.app-nav .submenu-toggle {
    transition: all .4s ease-in-out
}

@media(prefers-reduced-motion: reduce) {
    .app-nav .submenu-toggle {
        transition: none
    }
}

.app-nav .submenu-toggle[aria-expanded=true] .submenu-arrow {
    color: #252930
}

.app-nav .submenu-toggle[aria-expanded=true] .submenu-arrow svg {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.app-nav .submenu-item {
    margin-bottom: 0
}

.app-nav .submenu-link {
    color: #5d6778;
    font-size: .875rem;
    margin-left: 2rem;
    padding: .5rem 1rem;
    padding-left: 1rem;
    position: relative;
    display: block;
    margin-bottom: 0
}

.app-nav .submenu-link:before {
    background-color: #e7e9ed;
    content: " ";
    display: inline-block;
    height: inherit;
    left: 0;
    position: absolute;
    width: 2px;
    height: 100%;
    margin-top: -0.5rem
}

.app-nav .submenu-link:hover {
    color: #252930
}

.app-nav .submenu-link.active {
    color: #15a362
}

.app-nav .submenu-link.active:before {
    background-color: #15a362
}

.app-sidepanel-footer {
    width: 100%;
    bottom: 0;
    left: 0;
/*    border-top: 1px solid #e7e9ed;*/
    background: #f5f6fe
}

.app-sidepanel-footer .app-nav-footer {
    margin-bottom: 0
}

@media(max-width: 1199.98px) {
    .app-sidepanel {
        transition: all .4s ease-in-out;
        left: -400px
    }
}

@media(max-width: 1199.98px)and (prefers-reduced-motion: reduce) {
    .app-sidepanel {
        transition: none
    }
}

@media(max-width: 1199.98px) {
    .app-sidepanel.sidepanel-visible {
        display: block
    }
}

@media(max-width: 1199.98px) {
    .sidepanel-visible .sidepanel-close {
        display: inline-block
    }
}

@media(max-width: 1199.98px) {
    .sidepanel-visible .sidepanel-drop {
        position: fixed;
        display: block;
        min-height: 100vh;
        height: 100%;
        width: 100%;
        min-width: 100vw;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, .35)
    }
}

@media(min-width: 1200px) {
    .app-wrapper {
        margin-left: 250px
    }
}

.app {
    min-height: 100vh;
    height: 100%;
    width: 100%;
/*    background: var(--body-bg);*/
    background: #fff;
    padding-top: 56px;
    overflow-x: hidden
}

.app-footer .copyright {
    font-size: .8125rem
}

.app-wrapper {
    transition: all .4s ease-in-out
}

@media(prefers-reduced-motion: reduce) {
    .app-wrapper {
        transition: none
    }
}

.app-page-header {
    margin-bottom: 1.5rem;
}

.app-page-header h1 {
    font-size: 1.5rem;
    font-weight: bolder;
}

.app-page-header h6 {
    font-size: 14px;
    font-weight: normal;
}

.app-page-title {
    font-size: 1.5rem;
    font-weight: bolder;
}

.app-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: .25rem;
    /*box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);*/
}

.app-card.border-left-decoration {
    border-left: 3px solid #15a362
}

.app-card .app-card-link-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0
}

.app-card .app-card-header {
    /*border-bottom: 1px solid #e7e9ed*/
}

.app-card .app-card-title {
    font-size: 1.125rem;
    margin-bottom: 0
}

.app-card .card-header-action {
    font-size: .875rem
}

.app-card .card-header-action a:hover {
    text-decoration: underline
}

.app-card .form-select-holder {
    display: inline-block
}

.app-card .btn-close {
    padding: 1rem
}

.app-card .btn-close:focus {
    box-shadow: none
}

/*.app-card-stat {
    text-align: center
}*/

.app-card-stat .stats-type {
    font-size: .875rem;
    color: #828d9f;
    text-transform: uppercase
}

.app-card-stat .stats-figure {
    font-size: 2rem;
    color: #252930
}

.app-card-stat .stats-meta {
    font-size: .875rem;
    color: #828d9f
}

.app-card-progress-list .item {
    position: relative;
    border-bottom: 1px solid #e7e9ed
}

.app-card-progress-list .item:hover .title {
    color: #252930
}

.app-card-progress-list .item:last-child {
    border: none
}

.app-card-progress-list .item .title {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-gray-800);
}

.app-card-progress-list .item .meta {
    font-size: .875rem;
    color: #828d9f
}

.app-card-progress-list .item-link-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0
}

.app-card-progress-list .progress {
    height: .5rem;
    border-radius: .25rem;
}

.app-card-stats-table .table {
    font-size: .875rem
}

.app-card-stats-table .meta {
    color: #828d9f;
    font-weight: 500;
    font-size: .875rem
}

.app-card-stats-table .stat-cell {
    text-align: right
}

.app-card-basic {
    height: 100%
}

.app-card-basic .title {
    font-size: 1rem
}

.app-card .app-icon-holder {
    display: inline-block;
    background: #edfdf6;
    color: #15a362;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 1rem;
    text-align: center;
    border-radius: 50%
}

.app-card .app-icon-holder.icon-holder-mono {
    background: #f5f6fe;
    color: #828d9f
}

.app-card .app-icon-holder svg {
    width: 24px;
    height: 24px
}

.app-card .app-card-body.has-card-actions {
    position: relative;
    padding-right: 1rem !important
}

.app-card .app-card-body .app-card-actions {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    right: .75rem;
    top: 2.75rem;
}

/*.app-card .app-card-body .app-card-actions:hover {
    background: #f5f6fe
}*/

.app-card .app-card-body .app-card-actions .dropdown-menu {
    font-size: .8125rem
}

.app-card-doc:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.app-card-doc .app-card-thumb-holder {
    background: #e9eaf1;
    text-align: center;
    position: relative;
    height: 150px
}

.app-card-doc .app-card-thumb-holder .app-card-thumb {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000
}

.app-card-doc .app-card-thumb-holder .thumb-image {
    -webkit-opacity: .7;
    -moz-opacity: .7;
    opacity: .7;
    width: 100%;
    height: auto
}

.app-card-doc .app-card-thumb-holder:hover {
    background: #fafbff
}

.app-card-doc .app-card-thumb-holder:hover .thumb-image {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1
}

.app-card-doc .app-card-thumb-holder .badge {
    position: absolute;
    right: .5rem;
    top: .5rem
}

.app-card-doc .app-card-thumb-holder .icon-holder {
    font-size: 40px;
    display: inline-block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    padding-top: 10px
}

.app-card-doc .app-card-thumb-holder .icon-holder .pdf-file {
    color: #da2d27
}

.app-card-doc .app-card-thumb-holder .icon-holder .text-file {
    color: #66a0fd
}

.app-card-doc .app-card-thumb-holder .icon-holder .excel-file {
    color: #0da95f
}

.app-card-doc .app-card-thumb-holder .icon-holder .ppt-file {
    color: #f4b400
}

.app-card-doc .app-card-thumb-holder .icon-holder .video-file {
    color: #935dc1
}

.app-card-doc .app-card-thumb-holder .icon-holder .zip-file {
    color: #252930
}

.app-card-doc .app-doc-title {
    font-size: .875rem
}

.app-card-doc .app-doc-title a {
    color: #252930
}

.app-card-doc .app-doc-title.truncate {
    max-width: calc(100% - 30px);
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.app-card-doc .app-doc-meta {
    font-size: .75rem
}

.table-search-form .form-control {
    height: 2rem;
    min-width: auto
}

.app-dropdown-menu {
    font-size: .875rem
}

.app-card-orders-table .table {
    font-size: .875rem
}

.app-card-orders-table .table .cell {
    border-color: #e7e9ed;
    color: #5d6778;
    vertical-align: middle
}

.app-card-orders-table .cell span {
    display: inline-block
}

.app-card-orders-table .cell .note {
    display: block;
    color: #828d9f;
    font-size: .75rem
}

.app-card-orders-table .btn-sm,
.app-card-orders-table .btn-group-sm>.btn {
    padding: .125rem .5rem;
    font-size: .75rem
}

.app-card-orders-table .truncate {
    max-width: 250px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.app-nav-tabs {
    background: #fff;
    padding: 0
}

.app-nav-tabs .nav-link {
    color: #5d6778;
    font-size: .875rem;
    font-weight: bold
}

.app-nav-tabs .nav-link.active {
    color: #15a362;
    border-bottom: 2px solid #15a362
}

.app-nav-tabs .nav-link.active:hover {
    background: none
}

.app-nav-tabs .nav-link:hover {
    background: #edfdf6;
    color: #15a362
}

.app-pagination .pagination {
    font-size: .875rem
}

.app-pagination .pagination .page-link {
    color: #5d6778;
    padding: .25rem .5rem
}

.app-pagination .pagination .page-item.active .page-link {
    background: #747f94;
    color: #fff;
    border-color: #747f94
}

.app-pagination .pagination .page-item.disabled .page-link {
    color: #9fa7b5
}

.app-card-accordion .app-card-title {
    font-size: 1.125rem
}

.app-card-accordion .faq-accordion .accordion-item {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e7e9ed
}

.app-card-accordion .faq-accordion .accordion-item:last-child {
    border-bottom: none
}

.app-card-accordion .faq-accordion .accordion-header {
    border: none
}

.app-card-accordion .faq-accordion .accordion-button {
    padding: 1rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
    padding-left: 0;
    font-size: 1rem;
    text-decoration: none;
    color: #15a362
}

.app-card-accordion .faq-accordion .accordion-button:after {
    display: none
}

.app-card-accordion .faq-accordion .accordion-body {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    font-size: 1rem
}

.app-card-account {
    height: 100%
}

.app-card-account .item {
    font-size: .875rem
}

.app-card-account .item .profile-image {
    width: 60px;
    height: 60px
}

.app-card-account .item .btn-sm,
.app-card-account .item .btn-group-sm>.btn {
    padding: .125rem .5rem;
    font-size: .75rem
}

.settings-section .section-title {
    font-size: 1.25rem
}

.settings-section .section-intro {
    font-size: .875rem
}

.app-card-settings {
    font-size: 1rem
}

.app-card-settings .form-label {
    font-weight: bold
}

.app-card-settings .form-control {
    font-size: 1rem
}

.app-404-page {
    padding-top: 2rem
}

.app-404-page .page-title {
    font-size: 3rem;
    line-height: .8;
    font-weight: bold
}

.app-404-page .page-title span {
    font-size: 1.5rem
}

.chart-container {
    position: relative
}

.app-table-hover>tbody>tr:hover {
    background-color: #fafbff
}

.app-card-notification .notification-type .badge {
    font-size: .65rem;
    text-transform: uppercase
}

.app-card-notification .profile-image {
    width: 60px;
    height: 60px
}

.app-card-notification .notification-title {
    font-size: 1.125rem
}

.app-card-notification .notification-content {
    font-size: .875rem
}

.app-card-notification .notification-meta {
    font-size: .75rem;
    color: #828d9f
}

.app-card-notification .action-link {
    font-size: .875rem
}

.app-card-notification .app-card-footer {
    background: #fafbff
}

@media(min-width: 1200px) {
    .table-search-form .form-control {
        min-width: 300px
    }
}

@media(max-width: 575.98px) {
    .app-card-stat .stats-figure {
        font-size: 1.125rem
    }
    .app-card-stat .stats-type {
        font-size: .75rem
    }
}

.app-login .auth-background-holder {
    background: url("../images/background/background-1.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    min-height: 100%
}

.app-signup .auth-background-holder {
    background: url("../images/background/background-2.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    min-height: 100%
}

.app-reset-password .auth-background-holder {
    background: url("../images/background/background-3.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    min-height: 100%
}

.auth-main-col,
.auth-background-col {
    position: relative
}

.auth-background-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .1)
}

.auth-background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 11
}

.auth-background-overlay .overlay-title {
    color: #fff;
    font-size: 1rem;
    font-weight: bold
}

.auth-background-overlay .overlay-content {
    background: rgba(37, 41, 48, .6);
    color: #fff
}

.auth-background-overlay .overlay-content a {
    text-decoration: underline;
    color: #fff
}

.app-auth-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.app-auth-wrapper {
    background: #fff;
    height: 100vh
}

.app-auth-wrapper .app-auth-body {
    width: 360px
}

.app-auth-wrapper .app-logo .logo-icon {
    width: 80px;
    height: 80px
}

.app-auth-wrapper .auth-heading {
    font-size: 1.5rem
}

.app-auth-wrapper .form-control::-webkit-input-placeholder {
    color: #828d9f
}

.app-auth-wrapper .form-control:-moz-placeholder {
    color: #828d9f
}

.app-auth-wrapper .form-control::-moz-placeholder {
    color: #828d9f
}

.app-auth-wrapper .form-control:-ms-input-placeholder {
    color: #828d9f
}

.app-auth-wrapper .legal-note {
    font-size: .875rem
}

.app-auth-wrapper .extra {
    font-size: .75rem
}

.app-auth-wrapper .extra a {
    text-decoration: underline;
    color: #828d9f
}

.app-auth-wrapper .extra a:hover {
    color: #5d6778
}

.app-auth-wrapper .auth-heading-desc {
    font-weight: 500;
    font-size: 1.125rem
}

.app-auth-wrapper .legal-note {
    font-size: .75rem
}

.app-auth-wrapper .auth-option {
    font-size: .875rem
}

.app-auth-footer .copyright {
    font-size: .75rem
}

@media(max-width: 767.98px) {
    .auth-background-col {
        display: none
    }
    .app-auth-wrapper .app-auth-body {
        width: 100%
    }
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

/*.modal-content {
    border: 0px;
    box-shadow: 0 0 0 0.25rem #cbcbcb;
}*/

.modal-title {
    color: var(--text-gray-800);
}

/*.dataTables_length, .dataTables_filter {
    display: none !important;
    font-size: 14px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
}

.dataTables_filter input.form-control {
    height: 39px;
    font-size: 14px;
    color: var(--muted);
    width: 100%;
    line-height: 1.4;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.dataTables_filter input.form-control:focus, .dataTables_length select:focus {
    outline: 0;
    border-color: var(--sunshine);
    background-color: var(--white);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(65, 84, 241, 0.5);
}

.dataTables_length select {
    height: 39px;
    font-size: 14px;
    color: var(--muted);
}

.dataTables_info {
    font-size: 14px;
    margin-left: 20px;
    margin-bottom: 20px !important;
}

.dataTables_paginate .pagination {
    margin-right: 20px !important;
    margin-bottom: 20px !important;
}

.page-item.active .page-link {
    background-color: var(--sunshine) !important;
    border: 0;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.2),0 2px 10px 0 rgba(0,0,0,.1);
    transition: all .2s linear;
}*/

/*.dataTables_paginate .pagination li {
    border: 1px solid #cbcbcb;
    border-radius: 0px;
}
 
.dataTables_paginate .pagination .paginate_button .page-item.active .page-link {
    border-radius: 0px !important;
}*/

.input-group-wrap h6 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-gray-800);
}

.input-group-wrap span {
    color: var(--red);
}

.app-page-search {
    height: 39px;
    font-size: 14px;
    color: var(--muted);
    width: 300px;
    padding: 1em;
    line-height: 1.4;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.app-page-search:focus {
    outline: 0;
    border-color: var(--sunshine);
    background-color: var(--white);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(65, 84, 241, 0.5);
}


@media(max-width: 768px) {
    .app-page-search {
        width: 100%;
    }
}

.input-group-wrap input, .input-group-wrap select {
    font-size: 14px;
    color: var(--muted);
    height: 50px !important;
    width: 100%;
    padding: 1em;
    line-height: 1.4;
    background-color: var(--gray-light-2);
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.input-group-wrap input:focus, .input-group-wrap select:focus {
    outline: 0;
    border-color: var(--sunshine);
    background-color: var(--white);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(65, 84, 241, 0.5);
}

.input-group-wrap textarea {
    font-size: 14px;
    color: var(--muted);
    width: 100%;
    padding: 1em;
    line-height: 1.4;
    background-color: var(--gray-light-2);
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.input-group-wrap textarea:focus {
    outline: 0;
    border-color: var(--sunshine);
    background-color: var(--white);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(65, 84, 241, 0.5);
}

input::placeholder {
    font-size: 11px;
    letter-spacing: .5px;
}

.input-group-wrap {
    margin-bottom: 1em;
    zoom: 1;
}

.input-group-wrap:before,
.input-group-wrap:after {
    content: "";
    display: table;
}

.input-group-wrap:after {
    clear: both;
}

input:focus + .input-icon i {
    color: var(--sunshine);
}

.input-group-icon {
    position: relative;
}

.input-group-icon input {
    padding-left: 4em;
}

.input-group-icon .input-icon {
    position: absolute;
    left: 1.5em;
    top: 0.9em;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--icon);
    display: inline-block;
    white-space: nowrap;
}

.input-group-icon .input-icon:after {
    position: absolute;
    top: 0.6em;
    bottom: 0.6em;
    left: 3.4em;
    display: block;
    content: "";
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.input-group-icon .input-icon i {
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

/*.app-sidepanel .sidepanel-inner {
    background: var(--secondary);
}*/

.app-page-title {
    color: var(--ivory-black-light);
}

.sidepanel-toggler {
    background: transparent;
    border: none;
    margin-top: 5px;
}

.sidepanel-toggler i {
    font-size: 30px;
    color: var(--secondary);
}

.dropbtn {
    background-color: var(--sky-2);
    color: var(--secondary);
    padding: 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    width: 100%;
    /*border-radius: 7px;*/
}

.dropbtn img {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 10px;
    margin-top: 15px;
}

/*.dropbtn:hover {
    background-color: #2980B9;
}*/

/*.dropbtn:focus {
    background-color: var(--white);
    border-radius: 7px 7px 0 0;
}*/

.dropdown-toggle span {
    margin-right: 10px;
}

.dropdown-toggle img {
    height: 2rem;
    width: 2rem;
}

.dropdown a:hover {
    background-color: transparent !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 100%;
    overflow: auto;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
}

.dropdown-content a {
    color: var(--muted);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a {
    color: var(--muted);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content .dropdown-content-item i {
    padding-right: 10px;
}

.dropdown a:hover { background-color: #f8f8f8; }

.show { display: block; }

.app-sidepanel .app-nav .app-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
    background: var(--steel);
}

/*.app-sidepanel .app-nav .app-menu .nav-item {
    margin-bottom: 10px;
}*/

.app-sidepanel .app-nav .app-menu .nav-item .nav-link {
    display: flex;
    align-items: center;
    font-size: .95rem;
    font-weight: 600;
    transition: 0.3;
    padding: 10px 15px 15px 0;
    border-radius: 4px;
    letter-spacing: .5px;
}

.app-sidepanel .app-nav .app-menu .nav-item .nav-link div {
    color: #3b3c3d;
    font-size: 1rem;
    font-weight: 500;
}

.app-sidepanel .app-nav .app-menu .nav-item .nav-link span {
    margin-right: 10px;
    font-weight: 500;
}

.app-sidepanel .app-nav .app-menu .nav-item .nav-link:hover {
    color: var(--black);
}

/*.app-sidepanel .app-nav .app-menu .nav-item .nav-link:hover span {
    color: var(--black);
}*/

.app-sidepanel .app-nav .app-menu .nav-item .nav-link.active {
    color: var(--black);
/*    font-weight: 600;*/
}

/*.app-sidepanel .app-nav .app-menu .nav-item .nav-link.active span {
    color: var(--black);
}*/

.app-sidepanel .app-nav .app-menu .nav-item .submenu-list.active > a {
    font-weight: bold;
    color: green !important;
}

.app-nav .nav-link.active i {
    color: var(--secondary);
}

.app-sidepanel .app-nav .app-menu .nav-heading {
    color: #3b3c3d;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
}

hr.sidebar-divider {
    border-top: 1px solid rgba(255,255,255,.15);
}

.app-card.border-left-decoration {
    border-left: 3px solid var(--sunshine);
}

.app-card .app-card-body h3 {
    color: var(--text-gray-800);
}

.app-btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
    font-weight: 500;
}

.app-btn-secondary:hover {
    color: var(--white);
    border: 1px solid var(--sunshine);
    background: var(--sunshine);
}

.app-btn-search,.app-btn-search:hover {
    flex-shrink: 0;
    background: var(--gray-light-2);
    color: var(--gray-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: none;
}

.app-btn-cancel, .app-btn-cancel:hover {
    flex-shrink: 0;
    background-color: var(--gray-light-2);
    color: var(--gray-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 15px;
    border: solid 1px rgba(0,0,0,.05);
    box-shadow: none;
}

.app-btn-action, .app-btn-action:hover {
    flex-shrink: 0;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 15px;
    border: solid 1px var(--secondary);
    box-shadow: none;
}

.app-btn-view,.app-btn-view:hover {
    flex-shrink: 0;
    background: var(--gray-light-2);
    color: var(--gray-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: none;
    text-transform: inherit;
}

.app-page-btn {
    padding: 7px 30px;
}

.app-card .app-card-stat {
    padding-bottom: 10px;
    text-align: left;
}

.app-card-stat .app-card-body h3 {
    font-size: 24px;
    color: var(--text-gray-800);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.app-card-stat .app-card-body h6 {
    color: var(--muted);
    font-weight: 500;
    font-size: 13px;
}

.card-icon {
    color: var(--text-gray-800);
    background: var(--sky-2);
    font-size: 32px;
    line-height: 0;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
}

.card-icon i {
    font-size: 24px;
}

.app-card .app-card-header {
    /*border-bottom: 1px solid #e7e9ed*/
}

.app-card .app-card-title {
    color: var(--text-gray-800);
    font-size: 0.925rem;
    margin-bottom: 0
}

.app-card .card-header-action {
    font-size: .785rem;
}

.app-card .card-header-action a {
    /*color: var(--sunshine);*/
    padding: 6px 10px;
}

.app-card .card-header-action a:hover {
    text-decoration: none;
}

.app-card-doc .app-doc-title {
    font-size: 0.955rem
}

.app-card-doc .app-doc-title a {
    color: var(--text-gray-800);
}

.app-card .app-card-body .app-card-actions .dropdown-menu {
    font-size: 12px;
}

.app-card .app-card-body .app-card-actions .dropdown-menu .dropdown-menu-list .dropdown-item i {
    margin-right: 5px;
}


.card-thumb-holder {
    background: #e9eaf1;
    text-align: center;
    position: relative;
    height: 150px
}

.card-thumb {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000
}

.thumb-image {
    -webkit-opacity: .7;
    -moz-opacity: .7;
    opacity: .7;
    width: 100%;
    height: auto
}

/* file upload */
.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 450px;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed #e5e5e5;
    transition: 0.2s;
    border-radius: 3px;
}

.choose-file-button {
    flex-shrink: 0;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: #858796;
}

.file-message {
    font-size: small;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #858796;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

.display-image-wrap {
    position: absolute;
    right: 40px;
    top: 20px;
    margin-top: 15px;
}

.display-image {
    width: 50px;
    height: 50px;
}

.donate-detail {
    border-bottom: 1px solid #e7e9ed;
    padding-top: 15px;
    margin: 0px 5px;
}

.p-title {
    font-weight: 600;
}

.p-label-1 {
    font-size: 14px;
    font-weight: 500;
}

.p-label-2 {
    font-size: 14px;
    font-weight: 600;
}

/*  57. Breadcomb CSS
/*----------------------------------------*/
/*.breadcomb-area{
    margin-bottom:30px;
}
.breadcomb-wp{
    display:flex;
}
.breadcomb-icon i{
    font-size: 20px;
    color: #00c292;
    padding: 15px;
    position: relative;
    border-radius: 50%;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    display:block;
}
*/
.breadcomb-list{
    border-bottom: 1px solid #e7e9ed;
    margin-bottom: 20px;
}
/*
.breadcomb-ctn {
    margin-left: 20px;
}
.breadcomb-ctn h2{
    font-size:20px;
    color:#333;
}
.breadcomb-ctn p{
    font-size:14px;
    color:#333;
    margin:0px;
}*/
.breadcomb-report{
    margin: 8px 0px;
    text-align: right;
}
.breadcomb-report .btn{
    background: var(--sunshine);
    color: #fff;
    box-shadow: none;
    border-radius: 3px;
    outline: none;
}
.breadcomb-report .btn:focus, .breadcomb-report .btn:active, .breadcomb-report .btn:hover{
    background: var(--sunshine);
    box-shadow: none;
    outline: none;
}
/*----------------------------------------*/
/*----------------------------------------*/
/*  33.  Normal Table CSS
/*----------------------------------------*/
@font-face {
    font-family: 'notika-icon';
    src:  url('../fonts/notika-icon.eot?qzfrsz');
    src:  url('../fonts/notika-icon.eot?qzfrsz#iefix') format('embedded-opentype'),
        url('../fonts/notika-icon.ttf?qzfrsz') format('truetype'),
        url('../fonts/notika-icon.woff?qzfrsz') format('woff'),
        url('../fonts/notika-icon.svg?qzfrsz#notika-icon') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*body.modal-open .background-container {
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    filter: url("https://gist.githubusercontent.com/amitabhaghosh197/b7865b409e835b5a43b5/raw/1a255b551091924971e7dee8935fd38a7fdf7311/blur".svg#blur);
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='4');
}*/
.edit-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 10px;
    background: rgba(251, 251, 251, 0.15);
    border-radius: 50%;
    padding: 5px;
}
.edit-icon {
    font-size: 16px;
    color: var(--white);
    padding: 0 5px;
}
.card-title.truncate {
    max-width: calc(100% - 30px);
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
.app-card-orders-table .truncate {
    max-width: 250px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
.normal-table-list .table{
    margin-bottom:0px;
}
.table.table-sc-ex>tbody>tr>td, .table.table-sc-ex>tbody>tr>th, .table.table-sc-ex>tfoot>tr>td, .table.table-sc-ex>tfoot>tr>th, .table.table-sc-ex>thead>tr>td, .table.table-sc-ex>thead>tr>th{
    border-top: 1px solid #F5F5F5;
    font-size:14px;
    color:#333;
    padding:15px;
}
.table.table-bordered>tbody>tr>td, .table.table-bordered>tbody>tr>th, .table.table-bordered>tfoot>tr>td, .table.table-bordered>tfoot>tr>th, .table.table-bordered>thead>tr>td, .table.table-bordered>thead>tr>th{
    border: 1px solid #F5F5F5;
    font-size:14px;
    color:#333;
    padding:15px;
}
.table-bordered, .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #F5F5F5;
}
.table.table-striped>tbody>tr>td, .table.table-striped>tbody>tr>th, .table.table-striped>tfoot>tr>td, .table.table-striped>tfoot>tr>th, .table.table-striped>thead>tr>td, .table.table-striped>thead>tr>th{
    border-top: 0px solid #F5F5F5;
    font-size:14px;
    color:#333;
    padding:15px;
}
.table.table-hover>tbody>tr>td, .table.table-hover>tbody>tr>th, .table.table-hover>tfoot>tr>td, .table.table-hover>tfoot>tr>th, .table.table-hover>thead>tr>td, .table.table-hover>thead>tr>th{
    border-top: 1px solid #F5F5F5;
    font-size:14px;
    color:#333;
    padding:15px 15px;
}
.table.table-condensed>tbody>tr>td, .table.table-condensed>tbody>tr>th, .table.table-condensed>tfoot>tr>td, .table.table-condensed>tfoot>tr>th, .table.table-condensed>thead>tr>td, .table.table-condensed>thead>tr>th{
    border-top: 1px solid #F5F5F5;
    font-size:14px;
    color:#333;
    padding:10px;
}
.table.table-cl>tbody>tr>td, .table.table-cl>tbody>tr>th, .table.table-cl>tfoot>tr>td, .table.table-cl>tfoot>tr>th, .table.table-cl>thead>tr>td, .table.table-cl>thead>tr>th{
    border-top: 0px solid #F5F5F5;
    font-size:14px;
    color:#333;
    padding:15px;
}
.table.table-striped>thead>tr>th {
    border-bottom: 0px solid #ddd;
}
.table.table-sc-ex>thead>tr>th {
    border-bottom: 0px solid #ddd;
}
.table.table-bordered>thead>tr>th {
    border-bottom: 0px solid #ddd;
}
.table.table-hover>thead>tr>th {
    border-bottom: 0px solid #ddd;
}
.table.table-condensed>thead>tr>th {
    border-bottom: 0px solid #ddd;
}
.table.table-cl>thead>tr>th {
    border-bottom: 0px solid #ddd;
}
.table.table-cl>tbody>tr.active>td, .table.table-cl>tbody>tr.active>th, .table.table-cl>tbody>tr>td.active, .table.table-cl>tbody>tr>th.active, .table.table-cl>tfoot>tr.active>td, .table.table-cl>tfoot>tr.active>th, .table.table-cl>tfoot>tr>td.active, .table.table-cl>tfoot>tr>th.active, .table.table-cl>thead>tr.active>td, .table.table-cl>thead>tr.active>th, .table.table-cl>thead>tr>td.active, .table.table-cl>thead>tr>th.active{
    background:var(--sunshine);
    color:var(--white);
}
.table.table-cl>tbody>tr.info>td, .table.table-cl>tbody>tr.info>th, .table.table-cl>tbody>tr>td.info, .table.table-cl>tbody>tr>th.info, .table.table-cl>tfoot>tr.info>td, .table.table-cl>tfoot>tr.info>th, .table.table-cl>tfoot>tr>td.info, .table.table-cl>tfoot>tr>th.info, .table.table-cl>thead>tr.info>td, .table.table-cl>thead>tr.info>th, .table.table-cl>thead>tr>td.info, .table.table-cl>thead>tr>th.info{
    background:#fb9678;
    color:var(--white);
}
.table.table-cl>tbody>tr.warning>td, .table.table-cl>tbody>tr.warning>th, .table.table-cl>tbody>tr>td.warning, .table.table-cl>tbody>tr>th.warning, .table.table-cl>tfoot>tr.warning>td, .table.table-cl>tfoot>tr.warning>th, .table.table-cl>tfoot>tr>td.warning, .table.table-cl>tfoot>tr>th.warning, .table.table-cl>thead>tr.warning>td, .table.table-cl>thead>tr.warning>th, .table.table-cl>thead>tr>td.warning, .table.table-cl>thead>tr>th.warning{
    background:#01c0c8;
    color:var(--white);
}
.table.table-cl>tbody>tr.danger>td, .table.table-cl>tbody>tr.danger>th, .table.table-cl>tbody>tr>td.danger, .table.table-cl>tbody>tr>th.danger, .table.table-cl>tfoot>tr.danger>td, .table.table-cl>tfoot>tr.danger>th, .table.table-cl>tfoot>tr>td.danger, .table.table-cl>tfoot>tr>th.danger, .table.table-cl>thead>tr.danger>td, .table.table-cl>thead>tr.danger>th, .table.table-cl>thead>tr>td.danger, .table.table-cl>thead>tr>th.danger{
    background:#ab8ce4;
    color:var(--white);
}
.table.table-cl>tbody>tr.success>td, .table.table-cl>tbody>tr.success>th, .table.table-cl>tbody>tr>td.success, .table.table-cl>tbody>tr>th.success, .table.table-cl>tfoot>tr.success>td, .table.table-cl>tfoot>tr.success>th, .table.table-cl>tfoot>tr>td.success, .table.table-cl>tfoot>tr>th.success, .table.table-cl>thead>tr.success>td, .table.table-cl>thead>tr.success>th, .table.table-cl>thead>tr>td.success, .table.table-cl>thead>tr>th.success{
    background:#e46a76;
    color:var(--white);
}
.basic-tb-hd p{
    margin-bottom:0px;
}
.basic-tb-hd{
    margin-bottom:20px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    font-size:14px;
    color:#333;
}