/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
:root {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #f6f9ff;
    color: #444444;
}

a {
    -color: #4154f1;
    text-decoration: none;
}

    a:hover {
        color: #717ff5;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

#main {
    margin-top: 60px;
    padding: 20px 30px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}
/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/

.pagetitle {
    margin-bottom: 10px;
}

    .pagetitle h1 {
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 600;
        color: #012970;
    }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #6776f4;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */

.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

@media (max-width: 480px) {
    .dropdown-menu {
        width: 100vw !important;
    }
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

    .dropdown-menu .dropdown-footer a {
        color: #444444;
        text-decoration: underline;
    }

        .dropdown-menu .dropdown-footer a:hover {
            text-decoration: none;
        }

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

    .dropdown-menu .dropdown-item i {
        margin-right: 10px;
        font-size: 18px;
        line-height: 0;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #f6f9ff;
    }

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}
/* Light Backgrounds */

.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}
/* Card */

.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
    overflow: hidden;
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
}

    .card-title span {
        color: #899bbd;
        font-size: 14px;
        font-weight: 400;
    }
    .card-header div div  h5 {
        white-space: nowrap;
        -width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0 auto;
        margin-bottom: 0px;
    }
.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}
/* Alerts */

.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}
/* Close Button */

.btn-close {
    background-size: 25%;
}

    .btn-close:focus {
        outline: 0;
        box-shadow: none;
    }
/* Accordion */

.accordion-item {
    border: 1px solid #ebeef4;
}

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

.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

    .accordion-flush .accordion-button:not(.collapsed) {
        box-shadow: none;
        color: #4154f1;
    }

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}
/* Breadcrumbs */

.breadcrumb {
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    color: #899bbd;
    font-weight: 600;
}

    .breadcrumb a {
        color: #899bbd;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #51678f;
        }

    .breadcrumb .breadcrumb-item::before {
        color: #899bbd;
    }

    .breadcrumb .active {
        color: #51678f;
        font-weight: 600;
    }
/* Bordered Tabs */

.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #2c384e;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            color: #4154f1;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: #fff;
            color: #4154f1;
            border-bottom: 2px solid #4154f1;
        }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        width: 245px;
    }
}

.logo img {
    max-height: 50px;
    margin-right: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #012970;
    font-family: "Nunito", sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
    -background: linear-gradient( 154deg, #008fe2 0, #00b29c 100%);
    ;
    padding-left: 20px;
    /* Toggle Sidebar Button */
    /* Search Bar */
}

    .header .toggle-sidebar-btn {
        font-size: 32px;
        padding-left: 10px;
        cursor: pointer;
        color: #012970;
    }

    .header .search-bar {
        min-width: 360px;
        padding: 0 20px;
    }

@media (max-width: 991px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

    .header .search-form input {
        border: 0;
        font-size: 14px;
        color: #012970;
        border: 1px solid rgba(1, 41, 112, 0.2);
        padding: 7px 38px 7px 8px;
        border-radius: 3px;
        transition: 0.3s;
        width: 100%;
    }

        .header .search-form input:focus,
        .header .search-form input:hover {
            outline: none;
            box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
            border: 1px solid rgba(1, 41, 112, 0.3);
        }

    .header .search-form button {
        border: 0;
        padding: 0;
        margin-left: -30px;
        background: none;
    }

        .header .search-form button i {
            color: #012970;
        }
/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/

.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 20px;
    color: #012970;
}

.header-nav .nav-profile {
    color: #012970;
}

    .header-nav .nav-profile img {
        max-height: 36px;
    }

    .header-nav .nav-profile span {
        font-size: 14px;
        font-weight: 600;
    }

.header-nav .badge-number {
    position: absolute;
    inset: 4px 6px auto auto;
    font-weight: normal;
    font-size: 11px;
    padding: 3px 6px;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

    .header-nav .notifications .notification-item i {
        margin: 0 20px 0 10px;
        font-size: 24px;
    }

    .header-nav .notifications .notification-item h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .header-nav .notifications .notification-item p {
        font-size: 13px;
        margin-bottom: 3px;
        color: #919191;
    }

    .header-nav .notifications .notification-item:hover {
        background-color: #f6f9ff;
    }

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

    .header-nav .messages .message-item a {
        display: flex;
    }

    .header-nav .messages .message-item img {
        margin: 0 20px 0 10px;
        max-height: 40px;
    }

    .header-nav .messages .message-item h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #444444;
    }

    .header-nav .messages .message-item p {
        font-size: 13px;
        margin-bottom: 3px;
        color: #919191;
    }

    .header-nav .messages .message-item:hover {
        background-color: #f6f9ff;
    }

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
}

    .header-nav .profile .dropdown-header h6 {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 600;
        color: #444444;
    }

    .header-nav .profile .dropdown-header span {
        font-size: 14px;
    }

    .header-nav .profile .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .header-nav .profile .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .header-nav .profile .dropdown-item:hover {
            background-color: #f6f9ff;
        }
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {
    #main,
    #footer {
        margin-left: 300px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {
    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar-nav .nav-item {
        margin-bottom: 5px;
    }

    .sidebar-nav .nav-heading {
        font-size: 11px;
        text-transform: uppercase;
        color: #899bbd;
        font-weight: 600;
        margin: 10px 0 5px 15px;
    }

    .sidebar-nav .nav-link {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: #212545;
        transition: 0.3;
        -background: #f6f9ff;
        padding: 10px 15px;
        border-radius: 4px;
    }

        .sidebar-nav .nav-link i {
            font-size: 16px;
            margin-right: 10px;
        }
        /* .sidebar-nav .nav-link.collapsed {
        color: #212545;
        background: #fff;
    }
    
    .sidebar-nav .nav-link.collapsed i {
        color: #899bbd;
    }
     */

        .sidebar-nav .nav-link:hover {
            color: #4154f1;
            background: #f6f9ff;
        }
        /* .sidebar-nav .nav-link:hover i {
        color: #4154f1;
    } */

        .sidebar-nav .nav-link .bi-chevron-down {
            margin-right: 0;
            transition: transform 0.2s ease-in-out;
        }

        .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
            transform: rotate(180deg);
        }

    .sidebar-nav .nav-content {
        padding: 5px 0 0 0;
        margin: 0;
        list-style: none;
    }

        .sidebar-nav .nav-content a {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            color: #012970;
            transition: 0.3;
            padding: 10px 0 10px 40px;
            transition: 0.3s;
        }

            .sidebar-nav .nav-content a i {
                font-size: 6px;
                margin-right: 8px;
                line-height: 0;
                border-radius: 50%;
            }

            .sidebar-nav .nav-content a:hover,
            .sidebar-nav .nav-item a.active {
                color: #fff;
                background: rgb(68 97 157);
            }

            .sidebar-nav .nav-content a.active i {
                background-color: #4154f1;
            }
/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */

.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

    .dashboard .filter .icon {
        color: #aab7cf;
        padding-right: 20px;
        padding-bottom: 5px;
        transition: 0.3s;
        font-size: 16px;
    }

        .dashboard .filter .icon:hover,
        .dashboard .filter .icon:focus {
            color: #4154f1;
        }

    .dashboard .filter .dropdown-header {
        padding: 8px 15px;
    }

        .dashboard .filter .dropdown-header h6 {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #aab7cf;
            margin-bottom: 0;
            padding: 0;
        }

    .dashboard .filter .dropdown-item {
        padding: 8px 15px;
    }
/* Info Cards */

.dashboard .info-card {
    padding-bottom: 10px;
}

    .dashboard .info-card h6 {
        font-size: 28px;
        color: #012970;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #68B3C8;
    background: #f6f6fe;
}
/* Activity */

.dashboard .activity {
    font-size: 14px;
}

    .dashboard .activity .activity-item .activite-label {
        color: #888;
        position: relative;
        flex-shrink: 0;
        flex-grow: 0;
        min-width: 64px;
    }

        .dashboard .activity .activity-item .activite-label::before {
            content: "";
            position: absolute;
            right: -11px;
            width: 4px;
            top: 0;
            bottom: 0;
            background-color: #eceefe;
        }

    .dashboard .activity .activity-item .activity-badge {
        margin-top: 3px;
        z-index: 1;
        font-size: 11px;
        line-height: 0;
        border-radius: 50%;
        flex-shrink: 0;
        border: 3px solid #fff;
        flex-grow: 0;
    }

    .dashboard .activity .activity-item .activity-content {
        padding-left: 10px;
        padding-bottom: 20px;
    }

    .dashboard .activity .activity-item:first-child .activite-label::before {
        top: 5px;
    }

    .dashboard .activity .activity-item:last-child .activity-content {
        padding-bottom: 0;
    }
/* News & Updates */

.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

    .dashboard .news h4 a {
        color: #012970;
        transition: 0.3s;
    }

        .dashboard .news h4 a:hover {
            color: #4154f1;
        }

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}
/* Recent Sales */

.dashboard .recent-sales {
    font-size: 14px;
}

    .dashboard .recent-sales .table thead {
        background: #f6f6fe;
    }

        .dashboard .recent-sales .table thead th {
            border: 0;
        }

    .dashboard .recent-sales .dataTable-top {
        padding: 0 0 10px 0;
    }

    .dashboard .recent-sales .dataTable-bottom {
        padding: 10px 0 0 0;
    }
/* Top Selling */

.dashboard .top-selling {
    font-size: 14px;
}

    .dashboard .top-selling .table thead {
        background: #f6f6fe;
    }

        .dashboard .top-selling .table thead th {
            border: 0;
        }

    .dashboard .top-selling .table tbody td {
        vertical-align: middle;
    }

    .dashboard .top-selling img {
        border-radius: 5px;
        max-width: 60px;
    }
/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/

.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

    .iconslist .icon {
        background-color: #fff;
        border-radius: 0.25rem;
        text-align: center;
        color: #012970;
        padding: 15px 0;
    }

    .iconslist i {
        margin: 0.25rem;
        font-size: 2.5rem;
    }

    .iconslist .label {
        font-family: var(--bs-font-monospace);
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0.25rem;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #666;
    }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #ddd;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    box-shadow: 0px 0px 20px rgb(1 41 112 / 10%);
    background-color: #fff;
    /* bottom: 0; */
}

    .footer .copyright {
        text-align: center;
        color: #012970;
    }

    .footer .credits {
        padding-top: 5px;
        text-align: center;
        font-size: 13px;
        color: #012970;
    }
/* ---------login---------------------------- */

.form-container {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0;
    box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

    .form-container .left-content {
        background-color: #2E323B;
        font-family: 'Oswald', sans-serif;
        width: 40%;
        padding: 66px 50px;
        display: inline-block;
        vertical-align: top;
    }

        .form-container .left-content .title {
            color: #FF97A8;
            font-size: 20px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0 0 55px;
        }

        .form-container .left-content .sub-title {
            color: #fff;
            font-size: 60px;
            font-weight: 300;
            text-transform: uppercase;
            margin: 0;
        }

    .form-container .right-content {
        text-align: center;
        padding: 30px 50px;
    }

        .form-container .right-content .form-title {
            color: #012970;
            font-family: "Nunito", sans-serif;
            font-size: 30px;
            font-weight: 400;
            text-align: left;
            -text-transform: uppercase;
            padding: 0 0 2px;
            margin: 0 0 20px;
            -border-bottom: 2px solid #012970;
        }

        .form-container .right-content .form-horizontal {
            color: #999;
            font-size: 14px;
            text-align: left;
            margin: 0 0 15px;
        }

    .form-container .form-horizontal .form-group {
        margin: 0 0 20px;
    }

        .form-container .form-horizontal .form-group:nth-of-type(2) {
            margin-bottom: 35px;
        }

        .form-container .form-horizontal .form-group label {
            font-weight: 500;
        }

    .form-container .form-horizontal .form-control {
        color: #888;
        background: #f9f9f9;
        font-weight: 400;
        letter-spacing: 1px;
        height: 40px;
        padding: 6px 12px;
        border-radius: 5px;
        border: none;
        box-shadow: none;
    }

    .form-container .form-horizontal .signin {
        color: #fff;
        /* background: linear-gradient(to right, #FF638E, #FF97A8); */
        background-color: #4154f1;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: capitalize;
        width: 100%;
        padding: 9px 11px;
        margin: 0 0 20px;
        border-radius: 50px;
        transition: all 0.3s ease 0s;
    }

    .form-container .form-horizontal .btn:hover,
    .form-container .form-horizontal .btn:focus {
        box-shadow: 0 0 5px #4154f1;
        outline: none;
    }

    .form-container .form-horizontal .remember-me {
        width: calc(100% - 105px);
        display: inline-block;
    }

        .form-container .form-horizontal .remember-me .check-label {
            color: #999;
            font-size: 12px;
            font-weight: 400;
            vertical-align: top;
            display: inline-block;
        }

    .form-container .form-horizontal .forgot {
        color: #999;
        font-size: 12px;
        text-align: right;
        width: 100px;
        vertical-align: top;
        display: inline-block;
        transition: all 0.3s ease 0s;
    }

        .form-container .form-horizontal .forgot:hover {
            text-decoration: underline;
        }

    .form-container .right-content .separator {
        color: #999;
        font-size: 15px;
        text-align: center;
        margin: 0 0 15px;
        display: block;
    }

    .form-container .right-content .social-links {
        text-align: center;
        padding: 0;
        margin: 0 0 25px;
        list-style: none;
    }

        .form-container .right-content .social-links li {
            margin: 0 2px 5px;
            display: inline-block;
        }

            .form-container .right-content .social-links li a {
                color: #fff;
                background-color: #F16262;
                font-size: 12px;
                padding: 9px 12px;
                border-radius: 5px;
                display: block;
                transition: all 0.3s ease 0s;
            }

            .form-container .right-content .social-links li:nth-child(2) a {
                background-color: #3B5897;
            }

            .form-container .right-content .social-links li a i {
                margin-right: 10px;
            }

            .form-container .right-content .social-links li a:hover {
                box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            }

    .form-container .right-content .signup-link {
        color: #999;
        font-size: 13px;
    }

        .form-container .right-content .signup-link a {
            color: #012970;
            transition: all 0.3s ease 0s;
        }

            .form-container .right-content .signup-link a:hover {
                text-decoration: underline;
            }

@media only screen and (max-width:767px) {
    .form-container .left-content,
    .form-container .right-content {
        width: 100%;
        padding: 30px;
    }

        .form-container .left-content .title {
            margin: 0 0 20px;
        }

        .form-container .left-content .sub-title {
            font-size: 40px;
        }
    /*.Main-File {
        display: none;
    }*/
}

.add_emp .form-control:focus,
.add_emp .form-select:focus {
    background-color: transparent !important;
    box-shadow: none !important;
    border: 1px solid #012970;
}
/* ---------login---------------------------- */
/* ---------employee---------------------------- */

.emp_tbl table {
    width: 100%;
}

#example_filter {
    float: right;
}

#example_paginate {
    float: right;
}

.emp_tbl label {
    display: inline-flex;
    margin-bottom: .5rem;
    margin-top: .5rem;
}

.emp_tbl .table > :not(caption) > * > * {
    box-shadow: none !important;
}

.emp_tbl .form-control-sm {
    margin: 0px 5px 0px 5px !important;
    -text-align: center;
}

.emp_tbl {
    font-family: 'Poppins', sans-serif;
}

    .emp_tbl .list-inline {
        display: flex !important;
    }

.emp_list .card {
    width: auto !important;
}

.emp_list .card-header {
    padding-top: 0px;
    padding-bottom: 0px;
}

#example_wrapper {
    padding-top: 10px;
}

.emp-img {
    width: 35px;
    height: 35px;
    margin: 0 5px 0 0;
    border-radius: 100px;
    display: inline-block;
}

    .emp-img img {
        width: 35px;
        height: 35px;
        border-radius: 100px;
    }

.emp_tbl td {
    font-size: 13px;
    font-weight: 500;
    vertical-align: middle;
}

.table > :not(:last-child) > :last-child > * {
    font-size: 15px;
    font-weight: 600;
}
/* ---------employee---------------------------- */

.add_emp .form-label {
    color: #012970 !important;
}

.emp-img-con {
    position: relative;
    width: 200px;
    height: 200px;
}

.emg-camera {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 28px;
    text-align: center;
    align-items: center;
    padding-top: 8px;
    border-radius: 50%;
    z-index: 2;
}

.img-emp-dtl {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.text-web-blue {
    color: #012970;
}

.fw-600 {
    font-weight: 600 !important;
}

table.dataTable thead .sorting_asc {
    background-image: url(../img/table/sort_asc.png) !important;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center right;
}

table.dataTable thead .sorting_desc {
    background-image: url(../img/table/sort_desc.png) !important;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center right;
}

table.dataTable thead .sorting {
    background-image: url(../img/table/sort_both.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center right;
}

#example_length,
#example_info {
    float: left;
}

.dt-buttons {
    /* position: absolute;
        top: 14px;
        right: 107px; */
    margin-bottom: 20px;
    padding-top: 15px;
}

.buttons-copy,
.buttons-excel,
.buttons-csv,
.buttons-pdf,
.buttons-print {
    border: 1px solid #012970;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #012970;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .18rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .buttons-copy:hover,
    .buttons-excel:hover,
    .buttons-csv:hover,
    .buttons-pdf:hover,
    .buttons-print:hover {
        background-color: #012970;
        color: #fff;
        border: 1px solid transparent;
    }

.content table thead {
    background-color: #012970;
    color: #fff;
}
/* ---------medias---------------------------- 
        --------------------------------------------- */

@media (max-width: 575px) {
    .emp_list .dataTables_info,
    .paginate_button {
        font-size: 13px;
    }

    .emp_list .row {
        display: flex;
        flex-wrap: nowrap !important;
        padding-top: 10px;
        justify-content: space-between;
    }

        .emp_list .row .col-sm-12 {
            width: auto !important;
            max-width: auto !important;
        }

    #example_wrapper {
        width: max-content !important;
    }
    /*.Main-File{
        display:none;
    }*/
    .f-details{
        display:none;
    }
}
.autocomplete {
    background-color: #fff;
  
   

  
}
.autocomplete li a {
    color: #111;
    text-align: center;
    font-size:14px;
}
    .autocomplete li:hover {
        background-color: #e9e9e9;
    }
    .autocomplete li {
        list-style-type: none;
        padding: 10px;
        border-bottom: 1px solid #f5f5f5;
        -color: #111;
    }
.search-bar1 {
    position: absolute;
}
.file-detail p{
 font-size:13px
}
.file-detail span {
    font-size: 14px;
    margin-right:10px;
    color:#222;
}
.flmDetail span {
    font-size: 13px;
    margin-top:5px;
}
.files-Details div h5 {
    white-space: nowrap;
    -width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
}
.file-share button {
    float: right;
    -padding: 5px;
    -background: #f5f5f5;
    border-radius:50%;
    cursor: pointer;
}
    .file-share button i{
        font-size:12px;
    }
    .flmDetail h4 {
        font-size: 16px;
        font-weight: 700;
    }

.whatsapp {
    -background: #00e676;
    color: #00e676;
    font-size: 13px;
}
.facebook {
    -background: #3b5998;
    color: #3b5998;
}
.email {
    color: #e6402a;
}
.fashare {
    -border: 1px solid red;
    padding: 0px;
    -font-size: 13px;
    justify-self: center;
    -justify-content: center;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50px;
}
.item {
    position: fixed;
    z-index: 999;
    bottom: 90px;
    right: 9px;
}

/*.image-upload {
    height: 45px;
    width: 45px;
    background-color: #44619D;
    border-radius: 50%;
    display: block;
    color: #fff;
    text-align: center;
    z-index: 999;
}*/
.image-upload {

}

    .image-upload i {
        font-size: 20px;
        margin-top: 12px;
    }

    .image-upload input {
        cursor: pointer;
        opacity: 0;
        -height: 45px;
        width: 100px;
    }

.file-back {
    position: fixed;
    z-index: 999;
    bottom: 90px;
    right: 35px;

}
    .file-back a {
        height: 45px;
        width: 45px;
        background-color: #44619D;
        border-radius: 50%;
        display: block;
        color: #fff;
        text-align: center;
        -position: relative;
        z-index: 1;
        font-size: 20px;
        border: none;
    }
#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
}

#loading-image {
    z-index: 100;
}
#loading1 {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
}

#loading-image1 {
    z-index: 100;
}
.dt-buttons{
    display:none;
}
.files-Details span{
    font-size:14px;
    color:#666;
}
.files-Details {

}
.btn_new_grpoup {
    display: block !important;
}
.action-btn {
    display: flex;
    justify-content: space-between;
    -flex-direction: row-reverse;
    -flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    top: 0px;
    background: linear-gradient(rgba(0,0,0,1),rgba(0,0,0,1));
    opacity: 0;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 12px;
}
    .action-btn a {
        -border-color: #000;
        border: none;
        line-height: 17px;
    }
    .action-btn span{
        color:#fff;display:block;font-weight:600;
    }
    .action-btn p {
        color: #fff;
        font-size:13px;
        font-weight:600;
        display: block;
        white-space: nowrap;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0 auto;
    }
        #files .flmDetail:hover .action-btn {
            opacity: 1;
        }

.card.file-data:hover .action-btn {
    opacity: 1;
}

.folder-detail {
    display: flex;
    justify-content: space-between;
    -flex-direction: row-reverse;
    -flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    top: 0px;
    background: linear-gradient(rgba(0,0,0,1),rgba(0,0,0,1));
    opacity: 0;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 12px;
}
.folder-details1:hover .folder-details {
    opacity: 1;
}
.file_img {
    width: 30px;
    -height: 40px;
    -margin-bottom: 15px;
}

.file_data,.btn-group
{
    
}
.sidebar_file {
    background-color: #f8f8f8;
}

.btn_new_grpoup {
    margin: 0 auto !important;
}


.file-share h4 {
    white-space: nowrap;
    -width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
}

.folder-table{background-color:transparent !important;padding:20px;}
    .folder-table tr th {
        color: rgba(0,0,0,.72);
        font-size: 13px !important;
        padding: 18px 15px;
        border-bottom: 1px solid #ddd !important;
        font-family: 'Roboto', sans-serif;
    }

    .folder-table tr td {
        color: rgba(0,0,0,.72);
        font-size: 13px !important;
        padding: 18px 15px;
        border-bottom: 1px solid #ddd;
        -font-weight: 600;
        font-family: 'Roboto', sans-serif;
        cursor:pointer;
    }
        .folder-table tr:last-child td{border:none !important;}

    .folder-table tr td:nth-child(2){
        white-space:nowrap;
    }
    .folder-table tr td a {
        color: rgba(0,0,0,.72)
    }


        @media(min-width:992px) {
            .sidebar_file {
        position: fixed;
        right: 55px;
    }
    .add_next .item {
        position: fixed;
        z-index: 999;
        bottom: 73px;
        right: 76px;
    }
    .Main-File {
        position: fixed;
        z-index: 999;
        top: 90px;
        right: 35px;
    }

}

@media(min-width:768px)
{
    .btn_new_grpoup {
        display: block !important;
    }
}


@media(max-width:991px) {
    /*.office_sidebar_file
    {
        position:relative !important;
        z-index:0 !important;
        left:0;
        right:0;
    }*/
    .office_emp_details
    {
        display:none !important;
    }
}


@media(max-width:400px) {
    .flmDetail {
        display:flex !important;
        flex-direction:column !important;
    }
    .btn_new_grpoup
    {
        margin:0 auto !important;
    }
}



@media(min-width:992px) and (max-width:1199px)
{
    .office_item {
        position: fixed;
        z-index: 999;
        bottom: 98px;
        right: 35px;
    }
}
.office_item {
    position: fixed;
    z-index: 999;
    bottom: 98px;
    right: 35px;
}




/* CSS3 */

#createFolder .modal-footer button, #EditFolder .modal-footer button, #openMenu .modal-footer button, .share-popup .modal-footer button {
    font-size: 14px;
    font-weight: 600;
}
#createFolder .modal-dialog, #EditFolder .modal-dialog{max-width:380px;}
#createFolder .modal-footer button:hover, #EditFolder .modal-footer button:hover, #openMenu .modal-footer button:hover, .share-popup .modal-footer button:hover {
    background-color: #e8edf2;
}

#openMenu ul{
    padding:0;margin:0;list-style:none;
}
    #openMenu ul li, .share-popup a{
        padding: 10px;
        border-radius: 5px;
        cursor: default;
    }
    .share-popup a{display:block;padding:5px 10px;cursor:pointer}
.text-theme {
    color: #44619D;
}
/* The whole thing */
.custom-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: auto;
    border: 1px solid #CCC;
    white-space: nowrap;
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding: 0;
}

    /* Each of the items in the list */
    .custom-menu li {
        padding: 8px 12px;
        cursor: pointer;
        list-style-type: none;
        transition: all .3s ease;
        user-select: none;
    }

        .custom-menu li:hover {
            background-color: #DEF;
        }
.custom-menu-folder {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: auto;
    border: 1px solid #CCC;
    white-space: nowrap;
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding: 0;
}

    /* Each of the items in the list */
    .custom-menu-folder li {
        padding: 8px 12px;
        cursor: pointer;
        list-style-type: none;
        transition: all .3s ease;
        user-select: none;
    }

        .custom-menu-folder li:hover {
            background-color: #DEF;
        }