﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400;1,500&display=swap');
/*--------------------------------------------------------------
# variation color theme
--------------------------------------------------------------*/
/*--vars for root elements--*/

:root {
    /*  theme  */
    --primary-color: #5156be;
    --primary-hover: #4549a2;
    --color-white: #fff;
    --primary-lightest-color: #5156be14;
    --text-color: #131313;
}

body {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

@font-face {
    font-family: fontawesome;
    src: url("../fonts/fontawesome-webfont.ttf");
}
/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--color-white);
}

    .topbar * {
        /*color: var(--color-white);*/
    }
/*--------------------------------------------------------------
# Input top search
--------------------------------------------------------------*/
.search .search__input {
    width: 100%;
    border-radius: 25px;
    --bg-opacity: 1;
    background-color: #D2DFEA;
    position: relative;
    border: none;
}

.search__icon {
    font-size: 16px;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 10px;
    bottom: 0;
    margin-right: 12px;
    right: 10px;
    --text-opacity: 1;
    color: #365A74;
    z-index: 2;
}

.right-nav-elements {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .right-nav-elements li {
        float: left;
    }

.account-user-avatar {
    height: 32px;
    width: 32px;
}

.account-user-name {
    display: block;
    font-weight: 600;
}

.header-right-wrapper {
}

    .header-right-wrapper .nav-link {
        color: var(--color-white);
        font-size: 13px;
        font-weight: 500;
    }

        .header-right-wrapper .nav-link i {
            color: var(--color-white);
            font-size: 18px;
        }

    .header-right-wrapper .nav-link {
    }
/*.header-right-wrapper .dropdown-menu {
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -o-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.3s ease 0s, height 0s linear 0.35s;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    display: block;
}
.header-right-wrapper .dropdown-menu.show {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}*/
/*--------------------------------------------------------------
# sidebar
--------------------------------------------------------------*/
.profile-info {
    color: var(--color-white);
    border-bottom: 1px solid #8c90e3;
    border-top: 1px solid #8c90e3;
}

    .profile-info .profile-user-name {
        font-size: 14px;
        font-weight: 600;
    }

    .profile-info .user-role {
        font-size: 12px;
        font-weight: 500;
        color: #8c90e3;
    }

#sidebar.active .sidebar-wrapper {
    left: 0;
}

#sidebar:not(.active) .sidebar-wrapper {
    left: -250px;
}

#sidebar:not(.active) ~ #main {
    margin-left: 0;
}

/*--updated styles for toggled sidebar--*/

@media screen and (min-width: 1140px) {
    #sidebar:not(.active) .sidebar-wrapper .sidebar-header {
        padding: 20px 10px 20px 10px;
    }

    #sidebar:not(.active) .sidebar-wrapper {
        left: 0px;
        width: 90px;
        transition: 0.3s ease-out;
    }

        #sidebar:not(.active) .sidebar-wrapper .sidebar-header img {
            width: 70px;
        }

        #sidebar:not(.active) .sidebar-wrapper .menu .sidebar-item .sidebar-link span {
            display: none;
        }

        #sidebar:not(.active) .sidebar-wrapper .sidebar-user-profile {
            display: none;
        }

    #sidebar:not(.active) ~ #main {
        margin-left: 90px;
        transition: 0.3s ease-out;
    }
}

/*--updated styles for toggled sidebar--*/



.sidebar-wrapper {
    width: 250px;
    min-height: 100vh;
    position: fixed;
    top: 0;
    z-index: 10;
    overflow-y: auto;
    background-color: var(--primary-color);
    bottom: 0;
    transition: left 0.5s ease-out;
}

    .sidebar-wrapper .sidebar-header {
        padding: 5px 5px 10px 14px;
        font-size: 15px;
        font-weight: 700;
    }

        .sidebar-wrapper .sidebar-header img {
            width: 125px;
        }

    .sidebar-wrapper .sidebar-toggler.x {
        position: absolute;
        right: 0;
        top: 10px;
        display: none;
    }

    .sidebar-wrapper .menu {
        margin-top: 13px;
        padding: 0 13px;
        font-weight: 500;
    }

        .sidebar-wrapper .menu .sidebar-link {
            display: block;
            padding: 12px 18px;
            font-size: 13px;
            display: flex;
            align-items: center;
            border-radius: 2px;
            transition: all 0.5s;
            text-decoration: none;
            color: var(--color-white);
        }

            .sidebar-wrapper .menu .sidebar-link i,
            .sidebar-wrapper .menu .sidebar-link svg {
                color: var(--color-white);
            }

            .sidebar-wrapper .menu .sidebar-link span {
                margin-left: 15px;
            }

            .sidebar-wrapper .menu .sidebar-link:hover {
                background-color: #8c90e3;
            }

        .sidebar-wrapper .menu .sidebar-item {
            list-style: none;
            margin-top: 0;
            position: relative;
        }

            .sidebar-wrapper .menu .sidebar-item.navigation-header {
                display: block;
                padding: 12px 18px;
                font-size: 13px;
                display: flex;
                align-items: center;
                border-radius: 2px;
                transition: all 0.5s;
                text-decoration: none;
                color: var(--color-white);
                background-color: #4b50b9;
            }

            .sidebar-wrapper .menu .sidebar-item.has-sub .sidebar-link:after {
                content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path stroke="white" stroke-width="1" d="M6 9l6 6 6-6"/></svg>');
                position: absolute;
                color: #ccc;
                right: 15px;
                top: 12px;
                display: block;
            }

            .sidebar-wrapper .menu .sidebar-item.active .sidebar-link {
                background-color: #8c90e3;
            }

                .sidebar-wrapper .menu .sidebar-item.active .sidebar-link span {
                    color: var(--color-white);
                }

                .sidebar-wrapper .menu .sidebar-item.active .sidebar-link i,
                .sidebar-wrapper .menu .sidebar-item.active .sidebar-link svg {
                    fill: var(--color-white);
                    color: var(--color-white);
                }

                .sidebar-wrapper .menu .sidebar-item.active .sidebar-link.has-sub:after {
                    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path stroke="%23fff" stroke-width="1" d="M6 9l6 6 6-6"/></svg>');
                }

        .sidebar-wrapper .menu .submenu {
            list-style: none;
            display: none;
            transition: max-height 2s cubic-bezier(0, 0.55, 0.45, 1);
            overflow: hidden;
            padding: 0;
        }

            .sidebar-wrapper .menu .submenu.active {
                max-height: 999px;
                display: block;
            }

            .sidebar-wrapper .menu .submenu .submenu-item.active {
                position: relative;
            }

                .sidebar-wrapper .menu .submenu .submenu-item.active > a {
                    color: #435ebe;
                    font-weight: 700;
                }

            .sidebar-wrapper .menu .submenu .submenu-item a {
                padding: 7px 13px 7px 28px;
                display: block;
                color: var(--color-white);
                font-size: 12px;
                font-weight: 400;
                transition: all 0.3s;
            }

                .sidebar-wrapper .menu .submenu .submenu-item a:hover {
                    margin-left: 0px;
                    color: #8c90e3;
                    background-color: transparent;
                }

@media screen and (max-width: 1199px) {
    .sidebar-wrapper {
        position: absolute;
        left: -250px;
    }

        .sidebar-wrapper .sidebar-toggler.x {
            display: block;
        }
}

.burger-btn {
    display: none;
}

    .burger-btn svg {
        font-size: 22px;
        color: var(--color-white);
    }

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 600 !important;
}
/*--------------------------------------------------------------
# main-wrapper
--------------------------------------------------------------*/
#main {
    margin-left: 250px;
    padding: 0;
}

@media screen and (max-width: 1199px) {
    #main {
        margin-left: 0;
    }
}

#main.layout-navbar {
    padding: 0;
}

#main #main-content {
    padding: 20px;
}

/*--------------------------------------------------------------
# Breadcumb
--------------------------------------------------------------*/
.breadcumb-wrapper .page-title {
    font-weight: 600;
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

    .breadcrumb .breadcrumb-item {
        display: flex;
        align-items: center;
        padding-left: 0;
        padding-right: 15px;
        color: #968e7e;
        font-size: 12px;
        font-weight: 500;
    }

        .breadcrumb .breadcrumb-item a {
            color: var(--primary-color);
        }

.breadcumb-meta-btns a {
    background: var(--primary-color);
    color: var(--color-white);
    border: none;
    margin-left: 5px;
    font-size: 12px;
    font-weight: 500;
    transition: .3s all ease;
}

    .breadcumb-meta-btns a:nth-child(2) {
        background: #11368b;
    }

    .breadcumb-meta-btns a:nth-child(3) {
        background: var(--primary-color);
    }

    .breadcumb-meta-btns a:nth-child(4) {
        background: var(--primary-color);
    }

    .breadcumb-meta-btns a:hover {
        color: var(--color-white);
        background-color: var(--primary-hover);
    }


.dropdown-toggle::after {
    border: none !important;
    font: normal normal normal 13px/1 FontAwesome;
    content: "\f107";
    vertical-align: 0;
}

.content {
    min-height: 100vh;
    /*background-color: #EAEDF7;*/
    background-color: #f0f0f5;
}

.breadcumb-wrapper {
}

.breadcrumb .breadcrumb-item {
    /*color: var(--primary-color);*/
}

.breadcrumb-item + .breadcrumb-item::before {
    /*color: var(--primary-color);*/
}

.dropdown-menu {
    border-radius: 3px;
    background-color: var(--color-white);
    box-shadow: 0 0 50px 0 rgb(82 63 105 / 15%);
    border: none;
}

.dropdown-item {
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
}

.preview-item {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 10px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

li:last-child .preview-item {
    border-bottom: none;
}
/*--------------------------------------------------------------
# Common card styles
--------------------------------------------------------------*/
.card {
    /*border: 1px solid rgba(0, 0, 0, 0.125);*/
    border: none;
    box-shadow: none;
    background-color: var(--color-white);
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px 0 rgb(169 184 200 / 15%);
}

    .card .header {
        padding: 20px 20px 0;
    }

    .card .title {
        margin: 0;
        color: #252422;
        font-weight: 300;
    }

    .card .content {
        padding: 15px 15px 10px 15px;
    }

/*--------------------------------------------------------------
# Custom table default overwrites
--------------------------------------------------------------*/
.table > :not(:first-child) {
    border-top: 1px solid #dee2e6;
}

.custom-table thead tr, .custom-table thead th {
    border-top: none;
    border-bottom: none !important;
}

.custom-table tbody tr th, .custom-table tbody tr td {
    position: relative;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    vertical-align: middle;
}

.custom-table tbody th,
.custom-table tbody td {
    color: #1a1a1a;
    font-weight: 400;
    padding-bottom: 15px;
    padding-top: 15px;
}

.table th, .table td {
    padding: 15px 15px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.row-action-wrapper .action-icon,
.table .action-icon {
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    background-color: #f2f5ff;
    color: var(--text-color);
    border-radius: 3px;
    padding: 5px 8px;
    margin-left: 5px;
    transition: all 0.3s;
    margin-top: 1px;
    margin-bottom: 1px;
}

    .row-action-wrapper .action-icon:hover,
    .table .action-icon:hover {
        color: var(--color-white);
        background: var(--primary-color);
    }

/*--------------------------------------------------------------
# Custom forms default overwrites
--------------------------------------------------------------*/
.form-label {
    font-size: 13px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    /*background-color: var(--color-white)cf5;*/
    border-radius: 3px;
    color: #66615b;
    font-size: 14px;
    transition: background-color 0.3s ease 0s;
    /*padding: 7px 18px;*/
    height: 40px;
    box-shadow: none;
    border: 1px solid #ddd;
}

.select2-container .select2-selection--single {
    /*background-color: var(--color-white);*/
    border-radius: 3px;
    color: #66615b;
    font-size: 14px;
    transition: background-color 0.3s ease 0s;
    padding: 7px 18px;
    height: 40px;
    box-shadow: none;
    border: 1px solid #ddd;
}

.select2-container--default .select2-selection--multiple {
    /*background-color: var(--color-white)cf5;*/
    border-radius: 3px;
    color: #66615b;
    font-size: 14px;
    transition: background-color 0.3s ease 0s;
    min-height: 40px;
    line-height: inherit;
    box-shadow: none;
    border: 1px solid #ddd;
}

.select2-container--default .select2-selection--single {
    border-radius: 4px;
    /*background-color: var(--color-white)cf5;*/
    border-radius: 3px;
    color: #66615b;
    font-size: 14px;
    transition: background-color 0.3s ease 0s;
    padding: 7px 10px;
    height: 40px;
    box-shadow: none;
    border: 1px solid #ddd;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px;
        position: absolute;
        top: 1px;
        right: 7px;
        width: 20px;
    }

.select2-hidden-accessible {
    /*width: 100%;*/
}

.select2 {
    width: 100% !important;
}

.select2-container .select2-search--inline .select2-search__field,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--color-white);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    color: var(--text-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--primary-color);
}

select,
.form-select {
    background-color: var(--color-white);
    border-radius: 3px;
    color: #66615b;
    font-size: 14px;
    transition: background-color 0.3s ease 0s;
    /*padding: 7px 18px;*/
    height: 40px;
    box-shadow: none;
    border: 1px solid #ddd;
}

.input-group-text {
    background-color: var(--color-white);
    color: #475f7b;
    border: 1px solid #ddd;
}

.form-control[type=file] {
    padding-left: 14px;
}

textarea.form-control,
textarea {
    height: auto;
}

input[type=file]::file-selector-button {
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    background-color: var(--primary-color);
    color: var(--color-white);
}

input[type=file]::-webkit-file-upload-button:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

input[type=file]::file-selector-button:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}


/*--------------------------------------------------------------
# Custom buttons default overwrites
--------------------------------------------------------------*/
.reset-filter-btn {
    background-color: var(--color-white);
    border: 1px solid #475F7B;
    font-size: 15px;
    color: #475F7B;
}

.bf-search-filter-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 15px;
    color: var(--color-white);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn {
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 500;
}

.btn-primary {
    color: var(--color-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        color: var(--color-white);
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
        box-shadow: 0 2px 6px 0 rgb(81 86 190 / 50%);
    }

.btn-secondary {
    color: var(--color-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-secondary:hover {
        color: var(--color-white);
        background-color: #eb860d;
        border-color: #eb860d;
    }
/*--------------------------------------------------------------
# Custom card default overwrites
--------------------------------------------------------------*/
.card-footer, .card-header {
    padding: 15px 18px;
    background-color: transparent;
}

.card-header {
    padding: 15px 18px;
    position: relative;
}

.card .card-title {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
    text-transform: capitalize;
}

.heading-elements {
    background-color: inherit;
    position: absolute;
    top: 50%;
    right: 20px;
    height: 36px;
    margin-top: -18px;
}

/*--------------------------------------------------------------
# Custom pagination default overwrites
--------------------------------------------------------------*/
.page-link {
    color: #475F7B;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--color-white);
    border: 1px solid #CCC5B9;
}

.page-item.active .page-link {
    color: var(--color-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link:hover {
    z-index: 2;
    color: var(--color-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-links a {
    cursor: pointer;
    padding: 10px 2px;
    transition: none;
    outline: 0 !important;
    color: #8e887a;
    font-size: 11px;
    font-weight: 500;
}
/*--------------------------------------------------------------
# Dashboard stats
--------------------------------------------------------------*/
.stat-icon {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-color: #f5f5f5;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon i {
        font-size: 18px;
        color: var(--primary-color);
    }

    .stat-icon:first-child {
        background-color: #5156be14;
    }
/*--------------------------------------------------------------
# navtabs overwrites
--------------------------------------------------------------*/
.nav-link {
    color: var(--text-color);
    font-size: 14px;
    padding: 15px 20px;
    font-weight: 500;
}

.nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.10);
}

    .nav-tabs .nav-link {
        margin-bottom: -1px;
        background: 0 0;
        border: none;
        border: none;
        border-bottom: 3px solid transparent;
    }

        .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
            color: var(--primary-color);
            border: none;
            border-bottom: 3px solid var(--primary-color);
        }

        .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
            color: var(--primary-color);
            background-color: var(--color-white);
            border: none;
            border-bottom: 3px solid var(--primary-color);
        }

.list-group li:nth-child(1) {
    border-top: 0 none;
}



/**--sidebar and contents main--*/
@media (min-width: 992px) {
    .sidebar-left {
        float: left;
        width: 260px;
    }

    body .content-right {
        width: calc(100% - 260px);
        float: right;
    }
}





/*--------------------------------------------------------------
# Bf Auth Styles
--------------------------------------------------------------*/

.bf-auth-body {
    /*  min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background-color: var(--color-white);
    background: linear-gradient(#1a1a1a,var(--primary-color));
    position: relative;*/
    overflow-x: hidden;
}

    .bf-auth-body:before {
        content: "";
        margin-left: -48%;
        /*background-image: url(../images/bg-login-page.svg);*/
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: right;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

.full-page-wrapper {
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    z-index: 2;
    position: relative;
}

.bf-signin-wrapper {
    /*  flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;*/
    background-color: var(--primary-color);
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
}

    .bf-signin-wrapper:after {
        content: "";
        background-color: #000;
        opacity: 0.1;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

.side-content {
    background: url(https://images.unsplash.com/photo-1579829817710-72fed65c428e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80) no-repeat center center;
    /*background-image: url(../images/bg-login-page.svg);*/
    /*clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);*/
    background-size: cover;
    /*background-color: var(--text-color);*/
    z-index: 2;
    position: relative;
}

    .side-content:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--text-color);
        opacity: 0.5;
    }

    .left-cover-wrapper,
    .side-content .text-wrapper {
        z-index: 2;
        position: relative;
    }

.text-wrapper h1 {
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0;
}

.text-wrapper h2 {
    font-size: 18px;
    font-weight: 400;
}

.slide-content {
    width: 100%;
}

.auto-form-wrapper {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}

.bf-card-signin .card-form {
    border: none;
    width: 350px;
    padding: 30px 27px;
    background-color: #6325da;
    border-radius: 3px;
    margin: 0 auto;
    color: var(--color-white);
}


.bf-logo {
    font-weight: 600;
    font-size: 28px;
    text-transform: lowercase;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    position: relative;
}

.bf-signin-header h4 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 16px;
    color: #f5f5f5;
}

.bf-signin-footer p {
    font-size: 11px;
    font-weight: 400;
    color: #f5f5f5;
}

.page-auth-btn {
    padding: 11px 20px;
}

.bf-signin-footer a {
    color: #f5f5f5;
}

    .bf-signin-footer a:hover {
        color: var(--primary-color);
    }

.auto-form-wrapper .footer-text {
    font-size: 13px;
    margin-bottom: 0;
}

.auto-form-wrapper .auth-footer {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 7px;
    padding-left: 0;
    margin-bottom: 0;
}

    .auto-form-wrapper .auth-footer li {
        margin-right: 10px;
        line-height: 1;
        padding-right: 10px;
        border-right: 1px solid #6c757d;
    }

        .auto-form-wrapper .auth-footer li:last-child {
            margin-right: 0;
            border-right: none;
        }

        .auto-form-wrapper .auth-footer li a {
            font-size: 11px;
            color: #6c757d;
        }

.active-layer-dash {
    /*border-left: 2px solid var(--primary-color);*/
}

.layer-title {
    background-color: var(--primary-lightest-color);
    border-left: 2px solid var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.sales-stats {
    margin-bottom:
}

.bookkeeping-list-item {
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

    .bookkeeping-list-item .card a {
        color: inherit;
        transition: all 0.3s;
    }

    .bookkeeping-list-item .card:hover a {
        color: var(--primary-color);
        transition: all 0.3s;
        background-color: #f2f5ff;
    }

    .bookkeeping-list-item .card h6 {
        text-transform: uppercase;
        font-size: 13px;
        color: var(--primary-color);
    }

.form-header-title {
    background-color: var(--primary-lightest-color);
    border-left: 2px solid var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    padding: 7px 10px;
    margin-bottom: 10px;
}

    .form-header-title h6 {
        margin-bottom: 0;
        font-size: 14px;
    }

.navbar-light.custom-setup-navbar .navbar-nav .nav-link {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 3px;
}

    .navbar-light.custom-setup-navbar .navbar-nav .nav-link.active,
    .navbar-light.custom-setup-navbar .navbar-nav .show > .nav-link {
        background-color: #5156be;
        color: #fff;
    }

    .navbar-light.custom-setup-navbar .navbar-nav .nav-link:hover {
        background-color: #5156be;
        color: #fff;
    }

.list-item-bordered {
    border-bottom: 1px solid #dee2e6;
}

    .list-item-bordered:last-child {
        border: none;
    }

.detail-item-wrap:last-child {
    margin-bottom: 0;
}

.profile-card-wrapper .user-top-center img {
    /*width: 80px;*/
    object-position: top;
    object-fit: cover;
}

.user-top-center .profile-user-name {
    font-weight: 500;
}

.user-id {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.upload-preview {
    padding: 10px;
    position: relative;
    text-align: center;
}

    .upload-preview i {
        color: white;
        font-size: 10px;
        transform: translate(25px,66px);
        background: var(--primary-color);
        height: 25px;
        width: 25px;
        line-height: 25px;
        border-radius: 50%;
        text-align: center;
        border: 1px solid #fff;
    }

    .upload-preview .preview-img {
        border-radius: 100%;
        object-fit: cover;
        object-position: top;
    }

.browse-button {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -45px;
    background: rgb(0 0 0 / 15%);
    opacity: 1;
    transition: 0.3s ease;
}

    .browse-button:hover {
        opacity: 1;
    }

.browse-input {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    transform: translate(-1px,-26px);
    opacity: 0;
}
/**-report styles--**/
.lg-report.custom-table td {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    padding: 7px 4px;
    word-break: normal;
    font-size: 12px;
}

.lg-report.custom-table thead th {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.lg-report.custom-table th {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    padding: 3px 5px;
    word-break: normal;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.lg-report .report-sticky-head {
    border-color: inherit;
    position: -webkit-sticky;
    position: sticky;
    text-align: left;
    top: -1px;
    vertical-align: top;
    will-change: transform;
    background-color: #f5f5f5;
    z-index: 2;
    text-align: center;
}

    .lg-report .report-sticky-head.secondary-sticky {
        top: 53px;
    }


@media screen and (min-width: 1900px) {
    .lg-report .report-sticky-head.secondary-sticky {
        top: 37px;
    }
}

@media print {
    * {
        display: none;
    }

    #printableTable {
        display: block;
    }
}
