﻿/*
Template Name: Maxton Admin
Author: codervent
Email: codervent@gmail.com
File: main.scss

Table of Index 

  --Genral
  --aligns
  --dropdown animation
  --header
  --mini sidebar
  --main content
  --page footer
  --Metis Menu
  --order offcanvas
  --utilities
  --alerts
  --authentication
  --switcher

*/
/* Genral*/
@import url("../assets/fonts/bootstrap-icons.css");

body {
    position: relative;
    font-size: var(--bs-body-font-size);
    font-family: "Plus Jakarta Sans";
    letter-spacing: 0.5px;
    background-color: #eff1f3;
}

a {
    text-decoration: none;
}

input::-moz-placeholder {
    color: #000 !important;
    opacity: 0.3 !important;
}

input::placeholder {
    color: #000 !important;
    opacity: 0.3 !important;
}

/* aligns */
.bg-section {
    background-color: #f8f9fa !important;
}
/* dropdown animation */
@keyframes animdropdown {
    from {
        transform: translate3d(0, 6px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
/*Common css */

.btn-primary-blue {
    background: transparent linear-gradient(270deg, #4DA7FF 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
    min-width: 3rem;
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
    color: white;
}

    .btn-primary-blue:hover {
        color: #d9d6d6;
    }

.cancel-btn {
    border: 1px solid #8D8989;
    border-radius: 6px;
    background-color: white;
    color: black;
    text-align: center;
    padding: 0.5rem;
    min-width: 3.5rem
}

    .cancel-btn:hover {
        border: 1px solid #8D8989;
        color: #8D8989;
    }
/*header*/
.top-header {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 55px;
    position: fixed;
    border-bottom: 0px solid var(--bs-border-color);
    left: 0px;
    right: 0;
    top: 0;
    padding: 0 0rem;
    z-index: 11;
    transition: ease-out 0.3s;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

    .top-header .navbar {
        /*width: 100%;*/
    }

        .top-header .navbar .logo-header {
            width: auto;
            height: auto;
            padding: 0;
            gap: 0.5rem;
            z-index: 5;
            position: relative;
            border-right: 0px solid var(--bs-border-color-translucent);
            border-left: 0px solid var(--bs-border-color-translucent);
        }

    .top-header .navbar {
        background-color: #ffffff;
        height: 55px;
        position: fixed;
        left: 15rem;
        right: 0;
        top: 0;
        padding: 0 1rem 0rem 0rem;
        z-index: 10;
        transition: ease-out 0.3s;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.044), 0 2px 6px 0 rgba(0, 0, 0, 0.049);
    }

        .top-header .navbar .search-bar {
            width: auto;
            cursor: pointer;
        }

            .top-header .navbar .search-bar .search-control:focus, .top-header .navbar .search-bar .mobile-search-control:focus {
                box-shadow: none;
                border: 1px solid var(--bs-border-color);
            }

            .top-header .navbar .search-bar .search-close {
                display: none;
            }

            .top-header .navbar .search-bar .search-popup {
                display: none;
                position: absolute;
                width: auto;
                height: auto;
                top: 54px;
                left: 0;
                right: 0;
                background-color: #ffffff;
                border-radius: 1rem;
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
                animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 animdropdown;
            }

                .top-header .navbar .search-bar .search-popup .card {
                    border: 1px solid #dee2e6;
                    box-shadow: none;
                    margin-bottom: 0;
                }

                .top-header .navbar .search-bar .search-popup .search-content {
                    position: relative;
                    height: 24.3rem;
                }

                .top-header .navbar .search-bar .search-popup .search-title {
                    font-size: 13px;
                    font-weight: 500;
                    text-transform: uppercase;
                    color: #939aa0;
                    margin-bottom: 1rem;
                }

                .top-header .navbar .search-bar .search-popup .kewords {
                    font-size: 12.5px;
                    font-weight: 500;
                    color: #606060;
                    padding: 0.4rem 0.7rem;
                    background-color: #f3f3f3;
                    border-radius: 2rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
                    gap: 0.5rem;
                }

                    .top-header .navbar .search-bar .search-popup .kewords:hover {
                        color: #efefef;
                        background-color: #28292d;
                    }

                .top-header .navbar .search-bar .search-popup .search-list-item {
                    padding: 0.4rem 0.7rem;
                    border-radius: 0.25rem;
                    transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
                }

                    .top-header .navbar .search-bar .search-popup .search-list-item:hover {
                        color: #3a3a3a;
                        background-color: #f8f8f8;
                    }

                    .top-header .navbar .search-bar .search-popup .search-list-item .list-icon {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        background-color: #edecec;
                    }

                    .top-header .navbar .search-bar .search-popup .search-list-item .search-list-title {
                        font-size: 14px;
                    }

        .top-header .navbar .nav-item {
            height: 70px;
            display: flex;
            align-items: center;
        }

            .top-header .navbar .nav-item .mega-menu {
                width: 100%;
                height: -moz-fit-content;
                height: fit-content;
                background-color: #ffffff;
                border-radius: 0%;
            }

                .top-header .navbar .nav-item .mega-menu::after {
                    display: none;
                }

                .top-header .navbar .nav-item .mega-menu .mega-menu-icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    background-color: #f8f8f8;
                }

                .top-header .navbar .nav-item .mega-menu .card {
                    cursor: pointer;
                    transition: 0.2s all;
                }

                    .top-header .navbar .nav-item .mega-menu .card:hover {
                        background-color: #f8f8f8;
                    }

            .top-header .navbar .nav-item .dropdown-apps {
                width: 320px;
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
                border-radius: 1rem;
            }

                .top-header .navbar .nav-item .dropdown-apps .app-name {
                    font-size: 14px;
                }

                .top-header .navbar .nav-item .dropdown-apps .app-wrapper {
                    padding: 1rem;
                    background-color: #ffffff;
                    border-radius: 0rem;
                    cursor: pointer;
                }

                    .top-header .navbar .nav-item .dropdown-apps .app-wrapper:hover {
                        background-color: #f8f8f8;
                    }

            .top-header .navbar .nav-item .dropdown-notify {
                width: 360px;
                border-radius: 1rem;
            }

                .top-header .navbar .nav-item .dropdown-notify .option {
                    font-size: 1rem;
                    color: #494949;
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    background-color: #ffffff;
                    cursor: pointer;
                    border: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .top-header .navbar .nav-item .dropdown-notify .option:hover {
                        background-color: #efefef;
                    }

                .top-header .navbar .nav-item .dropdown-notify .notiy-title {
                    font-size: 1rem;
                }

                .top-header .navbar .nav-item .dropdown-notify .dropdown-option {
                    font-size: 14px;
                }

                .top-header .navbar .nav-item .dropdown-notify .notify-title {
                    color: rgba(var(--bs-dark-rgb));
                    font-size: 15px;
                    font-weight: 500;
                    margin-bottom: 0.2rem;
                }

                .top-header .navbar .nav-item .dropdown-notify .notify-desc {
                    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
                    font-size: 13px;
                    font-weight: 400;
                    width: 240px;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                .top-header .navbar .nav-item .dropdown-notify .notify-time {
                    color: #939aa0;
                    font-size: 12px;
                    margin-top: 0.2rem;
                }

                .top-header .navbar .nav-item .dropdown-notify .user-wrapper, .top-header .navbar .nav-item .dropdown-notify .notify-close {
                    width: 45px;
                    height: 45px;
                    font-size: 20px;
                    font-weight: 500;
                    background-color: #efefef;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                }

                .top-header .navbar .nav-item .dropdown-notify .notify-close {
                    width: 20px;
                    height: 20px;
                    background-color: #efefef;
                    visibility: hidden;
                }

                .top-header .navbar .nav-item .dropdown-notify .notify-list {
                    position: relative;
                    height: 390px;
                }

                .top-header .navbar .nav-item .dropdown-notify .dropdown-item:hover .notify-close {
                    visibility: visible;
                }

            .top-header .navbar .nav-item .dropdown-user {
                width: 260px;
                border-radius: 1rem;
            }

            .top-header .navbar .nav-item .badge-notify {
                position: absolute;
                top: 2px;
                right: 3px;
                font-size: 12px;
                color: #fff;
                border-radius: 50%;
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #f01414;
            }

        .top-header .navbar .dropdown-menu {
            border-radius: 1rem;
            border: 0;
            animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 animdropdown;
        }

            .top-header .navbar .dropdown-menu::after {
                content: "";
                width: 13px;
                height: 13px;
                background: white;
                position: absolute;
                top: -6px;
                right: 16px;
                transform: rotate(45deg);
                border-top: 1px solid #ddd;
                border-left: 1px solid #ddd;
            }

    .top-header .btn-toggle a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #494949;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        transition: all 0.3s;
    }

        .top-header .btn-toggle a:hover, .top-header .btn-toggle a:focus {
            background-color: #efefef;
        }

.btn-toggle {
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
}

    .btn-toggle:hover, .btn-toggle:focus {
        background-color: #efefef;
        color: #aaa;
    }

.top-header .nav-right-links .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494949;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
}

    .top-header .nav-right-links .nav-link:hover, .top-header .nav-right-links .nav-link:focus {
        background-color: #efefef;
    }

.dropdown-menu {
    /*border-radius: 1rem;
    border: 0;*/
    border-radius: 0.7rem;
    border: 0.1px solid;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* sidebar wrapper */
.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 15rem;
    height: 100%;
    background-color: #ffffff;
    border-right: 1px solid var(--bs-border-color);
    z-index: 12;
    transition: ease-out 0.3s;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.044), 0 2px 6px 0 rgba(0, 0, 0, 0.049);
    background-image: url('../assets/images/menu-background.jpg');
    background-size: cover;
    /* Metis Menu */
}

    .sidebar-wrapper .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 15rem;
        height: 140px;
        padding: 1rem;
        gap: 0.5rem;
        z-index: 1;
        position: fixed;
        top: 0;
        background-color: transparent;
        transition: ease-out 0.3s;
        border-right: 1px solid var(--bs-border-color);
    }

        .sidebar-wrapper .sidebar-header .robo-logo img {
            height: 91px;
        }

        .sidebar-wrapper .sidebar-header .logo-img {
            width: 8rem;
        }

        .sidebar-wrapper .sidebar-header .logo-name h5 {
            font-size: 24px;
            text-transform: capitalize;
            font-weight: 600;
        }

        .sidebar-wrapper .sidebar-header .sidebar-close {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
            display: none;
            cursor: pointer;
        }

            .sidebar-wrapper .sidebar-header .sidebar-close:hover, .sidebar-wrapper .sidebar-header .sidebar-close:focus {
                background-color: #efefef;
                color: #494949;
            }

    .sidebar-wrapper .sidebar-nav {
        margin-top: 120px;
        height: 100%;
        background-color: transparent;
    }

        .sidebar-wrapper .sidebar-nav ul {
            margin: 0;
            list-style: none;
            background: 0 0;
        }

        .sidebar-wrapper .sidebar-nav .metismenu {
            background: 0 0;
            display: flex;
            flex-direction: column;
        }

            .sidebar-wrapper .sidebar-nav .metismenu li + li {
                margin-top: 5px;
            }

            .sidebar-wrapper .sidebar-nav .metismenu li:first-child {
                margin-top: 5px;
            }

            .sidebar-wrapper .sidebar-nav .metismenu li:last-child {
                margin-bottom: 5px;
            }

            .sidebar-wrapper .sidebar-nav .metismenu > li {
                display: flex;
                flex-direction: column;
                position: relative;
            }

            .sidebar-wrapper .sidebar-nav .metismenu a {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: left;
                padding: 12px 1rem;
                color: #fff;
                outline-width: 0;
                text-overflow: ellipsis;
                overflow: hidden;
                letter-spacing: 0.5px;
                border-radius: 0rem;
                transition: all 0.3s ease-out;
                border-left: 4px solid transparent;
            }

                .sidebar-wrapper .sidebar-nav .metismenu a .parent-icon {
                    line-height: 1;
                }

                .sidebar-wrapper .sidebar-nav .metismenu a .menu-title {
                    margin-left: 10px;
                    width: 100%;
                    white-space: nowrap;
                }

                .sidebar-wrapper .sidebar-nav .metismenu a:active {
                    color: #008cff;
                    text-decoration: none;
                    background-color: rgba(0, 140, 255, 0.05);
                }

                .sidebar-wrapper .sidebar-nav .metismenu a:focus {
                    color: #008cff;
                    text-decoration: none;
                    background-color: rgba(0, 140, 255, 0.05);
                }

                .sidebar-wrapper .sidebar-nav .metismenu a:hover {
                    color: white;
                    text-decoration: none;
                    background-color: rgba(140, 198, 255, 0.2);
                    border-radius: 0;
                    /*                    border-left: 5px solid #4DA7FF;*/
                }

            .sidebar-wrapper .sidebar-nav .metismenu ul {
                background-color: transparent;
                padding: 0;
            }

                .sidebar-wrapper .sidebar-nav .metismenu ul a {
                    padding: 6px 15px 6px 20px;
                    border: 0;
                    opacity: 0.8
                }

                    .sidebar-wrapper .sidebar-nav .metismenu ul a i {
                        margin-right: 5px;
                    }

                .sidebar-wrapper .sidebar-nav .metismenu ul ul a {
                    padding: 8px 15px 8px 30px;
                }

                .sidebar-wrapper .sidebar-nav .metismenu ul ul ul a {
                    padding: 8px 15px 8px 45px;
                }

            .sidebar-wrapper .sidebar-nav .metismenu .mm-active > a {
                color: #008cff;
                text-decoration: none;
                background-color: rgba(0, 140, 255, 0.05);
            }

    .sidebar-wrapper .menu-label {
        padding: 10px 16px 10px 16px;
        color: #b0afaf;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

.toggled .top-header .navbar {
    left: 70px;
}

.toggled .main-wrapper {
    margin-left: 70px;
}

.toggled .page-footer {
    left: 70px;
}

@media screen and (min-width: 1199px) {
    body.toggled .sidebar-wrapper:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

        body.toggled .sidebar-wrapper:hover .sidebar-header .sidebar-close {
            display: flex;
        }

    body.toggled:not(.sidebar-hovered) .sidebar-wrapper {
        width: 70px;
    }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
            width: 70px;
            justify-content: space-between;
            width: 70px;
        }

            body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .logo-name {
                display: none;
            }

            body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .toggle-icon {
                display: none;
            }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {
            justify-content: start;
        }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .menu-title {
            display: none;
        }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .userName, body.toggled:not(.sidebar-hovered) .sidebar-wrapper .UserLogout {
            display: none;
        }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li ul {
            display: none;
        }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li.menu-label {
            display: none;
        }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .has-arrow:after {
            display: none;
        }

        body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-bottom {
            width: 70px;
        }

    body.toggled:not(.sidebar-hovered) .sidebar-bottom .dropdown-laungauge {
        display: none;
    }

    body.toggled:not(.sidebar-hovered) .sidebar-bottom .dropdown-help {
        display: none;
    }
}

.chip {
    display: inline-block;
    height: 32px;
    padding: 0 12px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    background-color: #f1f1f1;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    transition: all 0.3s linear;
    box-shadow: none;
}

    .chip img {
        float: left;
        width: 32px;
        height: 32px;
        margin: 0 8px 0 -12px;
        border-radius: 50%;
    }

    .chip.chip-md {
        height: 42px;
        line-height: 42px;
        border-radius: 21px;
    }

        .chip.chip-md img {
            height: 42px;
            width: 42px;
        }

/* main content */
.main-wrapper {
    margin-top: 0px;
    padding-bottom: 20px;
    margin-left: 15rem;
    transition: ease-out 0.3s;
    min-height: calc(100vh - 2.2rem);
    background-color: #F8F8F8;
}

    .main-wrapper .main-content {
        padding: 1rem;
        /*        background-image: url('../assets/images/content-background.png');*/
        background-repeat: no-repeat;
        background-size: contain;
        background-color: #F8F8F8;
    }

        .main-wrapper .main-content .breadcrumb-title {
        }

        .main-wrapper .main-content .page-breadcrumb .breadcrumb li.breadcrumb-item {
            /*font-size: 0.8rem;*/
        }

        .main-wrapper .main-content .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            display: inline-block;
            padding-right: 0.5rem;
            font-family: "Material Icons Outlined";
            /*content: "\e88a";*/
        }

        .main-wrapper .main-content .badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: #f2f2f3;
            cursor: pointer;
        }

            .main-wrapper .main-content .badge-icon .badge-number {
                width: 20px;
                height: 20px;
                background-color: #ff1717;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                color: #fff;
                font-size: 10px;
                padding: 1px;
            }

        .main-wrapper .main-content .sharelink {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #494949;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: all 0.3s;
        }

            .main-wrapper .main-content .sharelink:hover, .main-wrapper .main-content .sharelink:focus {
                background-color: #efefef;
            }

        .main-wrapper .main-content .options {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #494949;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: all 0.3s;
            width: 30px;
            height: 30px;
        }

            .main-wrapper .main-content .options:hover, .main-wrapper .main-content .options:focus {
                background-color: #efefef;
            }

        .main-wrapper .main-content .dropdown-menu-share {
            width: -moz-max-content;
            width: max-content;
        }

        .main-wrapper .main-content .vertical-pills button {
            width: 100%;
            text-align: left;
            border-radius: 0%;
        }

        .main-wrapper .main-content .vertical-pills .nav-link {
            border-bottom: 1px solid #dee2e6;
            color: #5d5d5d;
        }

            .main-wrapper .main-content .vertical-pills .nav-link:last-child {
                border-bottom: 0px solid #dee2e6;
            }

            .main-wrapper .main-content .vertical-pills .nav-link.active {
                color: #ffffff;
            }

        .main-wrapper .main-content .customer-notes {
            height: 480px;
            position: relative;
            overflow-y: scroll;
        }

        .main-wrapper .main-content .lable-table {
            text-transform: uppercase;
            padding: 1px 8px;
        }

        .main-wrapper .main-content .customer-table table thead {
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 400;
        }

        .main-wrapper .main-content .customer-table table .customer-name {
            color: #000000;
        }

        .main-wrapper .main-content .product-table table thead {
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 400;
        }

        .main-wrapper .main-content .product-table table .product-category {
            font-size: 0.8rem;
            color: #878d96;
        }

        .main-wrapper .main-content .product-table table .product-title {
            font-size: 0.97rem;
            color: #2f353c;
        }

        .main-wrapper .main-content .product-table table .product-tags {
            max-width: 220px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }

            .main-wrapper .main-content .product-table table .product-tags .btn-tags {
                font-size: 0.75rem;
                background-color: #f6f6f6;
                color: #000000;
                padding: 2px 10px;
                text-transform: uppercase;
                font-weight: 500;
                border-radius: 2px;
            }

        .main-wrapper .main-content .product-table table .product-rating {
            font-size: 0.8rem;
            background-color: #ffffff;
            padding: 2px 5px;
            text-align: center;
            border-radius: 4px;
            border: 1px solid #e8e8e8;
            font-weight: 500;
        }

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

    .section-title h1:after {
        content: "";
        position: absolute;
        display: block;
        width: 80px;
        height: 3px;
        background-color: #474747;
        left: 0;
        right: 0;
        bottom: 0;
        top: 60px;
        margin: auto;
    }

.separator {
    display: flex;
    align-items: center;
}

    .separator .line {
        height: 1px;
        flex: 1;
        background-color: #dee2e6;
    }

    .separator p {
        padding: 0 1rem;
    }

.review-desc {
    width: 400px;
}

.auth-cover-left, .auth-cover-right {
    display: flex;
    background-color: #ffffff;
    min-height: 100vh;
}

.auth-cover-right {
    background-color: #ffffff;
}

.auth-social-login {
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: start;
}

.order-price {
    max-height: 3rem;
    overflow: auto;
    max-width: 300px;
}

.order-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494949;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
}

    .order-delete:hover, .order-delete:focus {
        background-color: #efefef;
    }

/*page footer*/
.page-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-top: 1px solid var(--bs-border-color);
    height: 40px;
    position: fixed;
    left: 15rem;
    right: 0;
    bottom: 0;
    font-size: 0.8rem;
    transition: ease-out 0.3s;
}

    .page-footer .footer-links a {
        color: #212529;
    }

.back-to-top {
    display: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 26px;
    color: #fff;
    position: fixed;
    border-radius: 10px;
    bottom: 20px;
    right: 12px;
    background-image: linear-gradient(310deg, #00c6fb 0%, #005bea 100%) !important;
    background-color: #008cff;
    z-index: 5;
}

    .back-to-top:hover {
        color: #fff;
        background-color: #000;
        transition: all 0.5s;
    }

.btn-switcher {
    transform: rotate(90deg);
    right: -50px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.user-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    right: -50px;
    top: 16px;
    background-color: #050505;
}

/* order offcanvas */
.order-title {
    font-size: 15px;
}

/* utilities */
.subscribe-control .form-control {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.subscribe-control .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.bg-call-to-action {
    background-image: url(https://placehold.co/1200x800/png);
    background-attachment: fixed;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #005bea;
}

.primaery-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494949;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
}

    .primaery-menu-close:hover, .primaery-menu-close:focus {
        background-color: #efefef;
    }

.dropdown-toggle-nocaret:after {
    display: none;
}

.dropup .dropdown-toggle-nocaret:after {
    display: none;
}

.w-260 {
    width: 300px !important;
}

.h-70 {
    height: 70px !important;
}

.h-370 {
    height: 370px;
}

.f-14 {
    font-size: 14px;
}

.raised {
    box-shadow: var(--mdc-protected-button-container-elevation, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));
}

.wh-21 {
    width: 21px;
    height: 21px;
}

.wh-42 {
    width: 42px;
    height: 42px;
}

.wh-48 {
    width: 48px;
    height: 48px;
}

.wh-64 {
    width: 64px;
    height: 64px;
}

.wh-120 {
    width: 120px;
    height: 120px;
}

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

.font-22 {
    font-size: 45px;
}

.font-text1 {
    font-size: calc(var(--bs-body-font-size)*0.75);
}

.font-text2 {
    font-size: 0.7rem;
}

.piechart-legend {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cursor-pointer {
    cursor: pointer;
}

.theme-icons {
    background-color: #fff;
}

.user-list {
    position: relative;
    height: 400px;
}

.btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error {
    color: #fe1010;
}

.dash-lable {
    font-size: 14px;
    padding: 2px 7px;
    background-color: #f3f3f3;
    width: -moz-max-content;
    width: max-content;
}

form select.error,
form textarea.error,
form input.error,
form input.error:focus,
form textarea.error:focus,
form select.error:focus {
    border-color: #fe1010 !important;
}

/* alerts */
.alert-border-primary {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #008cff;
}

.alert-border-secondary {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #6c757d;
}

.alert-border-success {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #02c27a;
}

.alert-border-danger {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #fc185a;
}

.alert-border-warning {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #fbb513;
}

.alert-border-info {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #0dcaf0;
}

.alert-border-dark {
    border: 1px solid var(--bs-gray-400);
    border-left: 5px solid #212529;
}

.bg-error {
    /*background-image: url("../assets/images/auth/error-bg.png");*/
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.error-title {
    font-size: 140px;
    line-height: 140px;
    text-transform: uppercase;
    font-weight: bold;
}

.error-sub-title {
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
}

.contacts-social a {
    font-size: 16px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #fff;
    border: 1px solid #eeecec;
    text-align: center;
    border-radius: 50%;
    color: #2b2a2a;
}

.chart-container1 {
    position: relative;
    height: 350px;
}

.chart-container2 {
    position: relative;
    height: 138px;
}

.gmaps,
.gmaps-panaroma {
    height: 400px;
    background: #eee;
    border-radius: 3px;
}

/* authentication */
.border-gradient-1 {
    -o-border-image: linear-gradient(to right, #7928ca, #ff0080, #04e09a, #e0d504) 1;
    border-image: linear-gradient(to right, #7928ca, #ff0080, #04e09a, #e0d504) 1;
}

.auth-basic-wrapper {
    width: auto;
    height: auto;
}

@media (min-width: 1024px) {
    .auth-basic-wrapper {
        height: 100vh;
    }
}

.bg-login, .bg-reset-password, .bg-forgot-password, .bg-register {
    background-image: url(../assets/images/auth/bg-login.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-register {
    background-image: url(../assets/images/auth/bg-register.png);
}

.bg-forgot-password {
    background-image: url(../assets/images/auth/bg-forgot.png);
}

.bg-reset-password {
    background-image: url(../assets/images/auth/bg-reset-password.png);
}

/* email box */
.email-wrapper {
    width: auto;
    height: 600px;
    overflow: hidden;
    border-radius: 0.25rem;
    position: relative;
    background: #fff;
    box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.1);
}

.email-sidebar {
    width: 250px;
    height: 100%;
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.125);
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.email-sidebar-header {
    width: auto;
    height: auto;
    position: relative;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-right: 0 solid rgba(0, 0, 0, 0.125);
    border-top-left-radius: 0.25rem;
    padding: 15px;
}

.email-navigation {
    position: relative;
    padding: 0;
    height: 345px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

    .email-navigation a.list-group-item {
        color: #404142;
        padding: 0.35rem 1.25rem;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0);
        transition: all 0.3s ease-out;
    }

        .email-navigation a.list-group-item:hover {
            background-color: rgba(13, 110, 253, 0.12);
        }

        .email-navigation a.list-group-item.active {
            color: #0b5ed7;
            font-weight: 600;
            background-color: rgba(13, 110, 253, 0.12);
        }

.email-header {
    position: absolute;
    height: 70px;
    left: 250px;
    right: 0;
    top: 0;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-top-right-radius: 0.25rem;
    z-index: 1;
}

.email-content {
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    top: 70px;
    height: auto;
    margin-left: 250px;
    padding: 0;
    background: #fff;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.email-meeting {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

    .email-meeting a.list-group-item {
        color: #404142;
        padding: 0.35rem 1.25rem;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0);
    }

        .email-meeting a.list-group-item:hover {
            background-color: rgba(0, 123, 255, 0.15);
            transition: all 0.3s ease-out;
        }

.email-hangout .chat-user-online:before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 45px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    background: #16e15e;
}

.email-toggle-btn {
    width: auto;
    height: auto;
    margin-right: 10px;
    text-align: center;
    font-size: 24px;
    color: #404142;
    border-radius: 0;
    cursor: pointer;
    background-color: #fff;
    border: 0 solid rgba(0, 0, 0, 0.15);
}

@media (min-width: 1280px) {
    .email-toggle-btn {
        display: none;
    }
}

.email-actions {
    width: 230px;
}

.email-time {
    font-size: 13px;
    color: #6c757d;
}

.email-list {
    position: relative;
    height: 530px;
}

    .email-list div.email-message {
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        color: #383a3c;
    }

        .email-list div.email-message:hover {
            transition: all 0.2s ease-out;
            background-color: #eceef1;
        }

.email-star {
    color: #6c757d;
}

.email-read-box {
    position: relative;
    height: 530px;
}

.compose-mail-popup {
    width: 42%;
    position: fixed;
    bottom: -30px;
    right: 30px;
    z-index: 15;
    display: none;
}

.compose-mail-toggled {
    display: block;
}

.compose-mail-title {
    font-size: 16px;
}

.compose-mail-close {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0);
}

    .compose-mail-close:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

/* chat box */
.chat-wrapper {
    width: auto;
    height: calc(100vh - 12rem);
    /*border-radius: 0.25rem;*/
    position: relative;
    background: #fff;
    /*box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.1);*/
}

.chat-sidebar {
    width: 340px;
    height: 100%;
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.125);
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    min-height: calc(100vh - 21rem);
}

.chat-sidebar-header {
    width: auto;
    height: auto;
    position: relative;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-right: 0 solid rgba(0, 0, 0, 0.125);
    border-top-left-radius: 0.25rem;
    padding: 15px;
}

    .chat-sidebar-header .chat-user-online:before {
        content: "";
        position: absolute;
        bottom: 15px;
        left: 25px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #fff;
        background: #16e15e;
    }

.chat-sidebar-content {
    padding: 0;
    height: calc(100vh - 17rem);
    overflow: auto;
}

.chat-user-online {
    position: relative;
}

.chat-list {
    position: relative;
    /*height: 100%;
    overflow:auto;*/
}

    .chat-list .chat-user-online:before {
        content: "";
        position: absolute;
        bottom: 7px;
        left: 36px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #fff;
        background: #16e15e;
    }

    .chat-list .list-group-item {
        border: 1px solid rgba(0, 0, 0, 0);
        background-color: transparent;
    }

        .chat-list .list-group-item:hover {
            border: 1px solid rgba(0, 0, 0, 0);
            background-color: rgba(13, 110, 253, 0.12);
        }

        .chat-list .list-group-item.active {
            background-color: rgba(13, 110, 253, 0.12);
        }

.image-content {
    margin-top: 15px;
    position: relative;
    width: auto;
    height: calc(100vh - 24rem);
    overflow: auto;
}

.chat-content {
    margin-left: 340px;
    margin-top: 70px;
    padding: 0px 15px 15px 15px;
    position: relative;
    width: auto;
    height: calc(100vh - 17.2rem);
    overflow: auto;
}

.chat-header {
    position: absolute;
    height: 70px;
    left: 340px;
    right: 0;
    top: -70px;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-top-right-radius: 0.25rem;
    z-index: 1;
}

.chat-footer {
    position: absolute;
    height: auto;
    left: 340px;
    right: 0;
    bottom: 0;
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom-right-radius: 0.25rem;
    z-index: 2;
}

.chat-footer-menu {
    display: none;
}



    .chat-footer-menu a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        color: #6c757d;
        text-align: center;
        border-radius: 50%;
        margin: 3px;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.15);
    }

.chat-footer-menu {
    /*margin-left: 6px;*/
}

@media (min-width: 1280px) {
    .chat-footer-menu {
        display: block;
    }
}

.chat-tab-menu li a.nav-link {
    padding: 0.3rem 0.2rem;
    line-height: 1.2;
    color: #4a4b4c;
}

.chat-tab-menu .nav-pills .nav-link.active,
.chat-tab-menu .nav-pills .show > .nav-link {
    color: #008cff;
    background-color: rgba(0, 123, 255, 0);
}

.chat-title {
    font-size: 14px;
    color: #272b2f;
}

.chat-msg {
    font-size: 13px;
    color: #6c757d;
}

.chat-time {
    font-size: 0.75rem;
    color: #6c757d;
}

.chart-online {
    color: #16e15e;
}

.chat-top-header-menu {
    display: block;
}

.card-body-menu a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    border-radius: 50%;
    margin: 3px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.chat-top-header-menu a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    border-radius: 50%;
    margin: 3px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

@media (min-width: 1280px) {
    .chat-top-header-menu {
        display: block;
    }
}

.chat-content-leftside .chat-left-msg {
    width: -moz-fit-content;
    width: fit-content;
    background-color: #eff2f5;
    padding: 0.8rem;
    border-radius: 12px;
    max-width: calc(70vw);
    text-align: left;
    border-top-left-radius: 0;
    color: #fff;
    word-wrap: break-word;
}

.chat-content-rightside .chat-right-msg {
    width: -moz-fit-content;
    width: fit-content;
    background-color: #dcedff;
    padding: 0.8rem;
    border-radius: 12px;
    float: right;
    max-width: calc(70vw);
    text-align: left;
    border-bottom-right-radius: 0;
    color: #fff;
    word-wrap: break-word;
}

.chat-toggle-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 15px;
    text-align: center;
    font-size: 24px;
    color: #6c757d;
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

@media (min-width: 10240px) {
    .chat-toggle-btn {
        display: none;
    }
}

/* file manager */
.fm-menu .list-group a {
    font-size: 16px;
    color: #5f5f5f;
    display: flex;
    align-items: center;
}

    .fm-menu .list-group a i {
        font-size: 23px;
    }

    .fm-menu .list-group a:hover {
        background: #008cff;
        color: #fff;
        transition: all 0.2s ease-out;
    }

.fm-file-box {
    font-size: 25px;
    background: #e9ecef;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.fm-icon-box {
    font-size: 32px;
    background: #fff;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.user-plus {
    width: 33px;
    height: 33px;
    margin-left: -14px;
    line-height: 33px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    border: 1px dotted #a9b2bb;
    color: #404142;
}

.user-groups img {
    margin-left: -14px;
    border: 1px solid #e4e4e4;
    padding: 2px;
    cursor: pointer;
}

/* switcher */
.form-check-img {
    max-width: 100%;
    height: auto;
}

.form-check-label-highlighter .form-check-input:checked[type=checkbox] ~ .form-check-label,
.form-check-label-highlighter .form-check-input:checked[type=radio] ~ .form-check-label {
    border-color: #377dff;
}

.welcome-back-img {
    position: relative;
}

@media (min-width: 1280px) {
    .welcome-back-img {
        position: absolute;
        bottom: 0;
        right: 2rem;
    }
}
/*# sourceMappingURL=main.css.map */


.LoaderBackground {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1065 !important;
    /*background: rgba(9, 17, 78, 0.49);*/
    background: rgba(0, 0, 0, 0.49);
    padding: 15px !important;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader {
    /*border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #444444;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    background-image: url(../images/loading.gif);*/
    background-image: url(../assets/images/Loader.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 103px;
    height: 91px;
    border-radius: 14px;
    background-size: 140px 140px;
    z-index: 999;
}
/*Common classes form cards */
/*.card-wrapper{
    max-height:15rem;
}*/
.grey-outline-btn {
    border: 1px solid #8D8989;
    border-radius: 10px;
    padding: 0.2rem 0.8rem;
    font-size: 0.75rem;
}

    .grey-outline-btn:hover {
        background: transparent linear-gradient(270deg, #4DA7FF 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
        border-radius: 10px;
        color: white;
    }

.card-container {
    border: 1px solid #DBDBDB;
    max-height: 15rem;
    font-size: calc(var(--bs-body-font-size)*0.85);
}

    .card-container .card-header {
        border-bottom: 1px solid #DBDBDB;
        min-height: 3rem;
        max-height: 5rem;
    }

.description-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.default-fo-size {
    font-size: var(--bs-body-font-size);
}

.card-border-top {
    border-top: 1px solid #DBDBDB;
}

.light-grey-text {
    color: #8D8989 !important;
}

.small-icon {
    width: 1rem;
    height: 1rem;
}

    .small-icon:hover {
        filter: opacity(0.5);
    }

.form-select, .form-control {
    border: 1px solid #DBDBDB;
}

.pagination-wrapper, .form-label, .form-check-label, .descEditor {
}

.page-footer {
    border-top: 1px solid #dde3e8 !important;
    z-index: 1111;
}

.search-input {
    border: 1px solid #DBDBDB;
    height: 2.1rem;
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
    width: 15rem !important;
    background-image: url(../assets/images/search.svg);
    background-repeat: no-repeat;
    background-position: 97% center;
    background-size: 15px;
    padding-right: 30px;
}

.dropdown-btn {
    border: 1px solid #DBDBDB;
    height: 2.1rem;
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
    width: 10rem;
    text-align: left;
    position: relative;
    background-color: white;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .dropdown-btn:hover {
        color: black;
        background-color: white;
    }

.dropdown-toggle.dropdown-btn::after {
    position: absolute;
    right: 0.6rem;
    top: 50%;
}

.active > .page-link, .page-link.active {
    z-index: 3;
    background-color: #0F1259;
    border-color: #D7DAE2;
}

.page-link {
    border: 1px solid #D7DAE2;
}

.table-data .btn-grd-info {
    background-color: white;
    background-image: none !important;
    border-bottom: 1px solid #DBDBDB;
}

.table-data th {
    color: black !important;
    padding: .4rem 0.5rem !important
}

table.table-data.table.dataTable > tbody > tr {
    border-color: #DBDBDB;
}

.table-data td {
    vertical-align: middle;
}

.table > :not(caption) > * > * {
    padding: .2rem .5rem;
}

div.dt-scroll-body {
    border-bottom-color: #DBDBDB !important;
}

.modal-header {
    border-bottom: 1px solid #DBDBDB;
}

.modal-footer {
    border-top: 1px solid #DBDBDB;
}

.sub-title-text {
    font-size: 15px;
    font-weight: bold;
}

.border-bottom-light {
    border-bottom: 1px solid #DBDBDB;
}

.select-desect:hover {
    color: #000000;
}

.SelectAll_Check {
    font-size: 12px !important;
    padding: 0 1px;
    line-height: 1;
    border-radius: 0.1rem;
    border: 1.5px solid #8bb9fe !important;
}

.select-desect:hover .SelectAll_Check {
    border: 1.5px solid #000000 !important;
}

[data-bs-theme=dark] body .bg-section {
    background-color: #f9f9f9 !important;
}


.sidebar-wrapper .sidebar-nav .metismenu .mm-active > a {
    color: #fff;
    text-decoration: none;
    background-color: rgba(140, 198, 255, 0.21);
    border-left: 4px solid #4DA7FF;
    opacity: 1;
}

.sidebar-wrapper .sidebar-nav .metismenu ul.mm-collapse.mm-show .mm-active > a {
    background-color: transparent;
    font-weight: bold;
    border-left: 0px solid transparent;
}

[data-bs-theme=dark] body .page-footer {
    z-index: 5;
}

.card {
    --bs-card-color: #000000 !important;
}


.offcanvas-header {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 1rem !important;
    position: relative;
    border-bottom: 1px solid rgb(219, 219, 219);
    height: 50px;
}

    .offcanvas-header.border-bottom.h-70 {
        border-bottom: 1px solid rgb(219, 219, 219) !important;
        height: 50px !important;
    }

.bootstrap-select > .dropdown-toggle {
    font-size: var(--body-font-size) !important;
}

.select2-container--bootstrap-5 .select2-selection, .select2-results__options,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option,
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    font-size: var(--body-font-size) !important;
}

.primaery-menu-close {
    opacity: 0.5
}

[data-bs-theme="dark"] body .primaery-menu-close:hover, [data-bs-theme="dark"] body .primaery-menu-close:focus {
    color: rgb(255, 255, 255) !important;
    background-color: transparent !important;
    opacity: 1
}

[data-bs-theme=dark] {
    --bs-border-color: rgb(219, 219, 219);
}

.modal-header {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 20px;
    position: relative;
}

.text-muted {
    color: #000000 !important;
}

[data-bs-theme=dark] body {
    color: #000000 !important;
}

.recent-conversation-item .conversation-preview {
    /*font-size: 0.75rem !important;*/
    color: #000000 !important;
}

.historyIcon {
    display: flex;
    align-items: center;
    padding: 0;
}

    .historyIcon:after {
        display: none;
    }

    .historyIcon .bx-history {
        color: #333 !important;
        font-size: 1.2rem !important
    }

.card.graphCard {
    font-size: 0.75rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(219, 219, 219);
    border-image: initial;
}
/*  .card:hover, .card.graphCard:hover {
        border: 1px solid #000000;
    }*/

.product-box .lni-archive:before {
    color: #000;
}

.logo-icon .small-robo-logo img {
    width: 32px;
    height: auto;
}

[data-bs-theme=dark] body .main-wrapper .main-content .apexcharts-datalabel, [data-bs-theme=dark] body .main-wrapper .main-content .apexcharts-datalabel-label, [data-bs-theme=dark] body .main-wrapper .main-content .apexcharts-datalabel-value, [data-bs-theme=dark] body .main-wrapper .main-content .apexcharts-datalabels, [data-bs-theme=dark] body .main-wrapper .main-content .apexcharts-pie-label {
    font-size: 0.85rem
}


/*.chat-content-leftside *{font-size:0.85rem} */
.chat-content-leftside p {
    margin: 0;
}

.top-header .navbar .btn-toggle {
    margin-left: 1rem;
}

.borderDIv {
    position: relative;
}

    .borderDIv:after {
        position: absolute;
        content: '';
        height: 1px;
        width: 100%;
        background: #DBDBDB
    }


.btn-outline-primary {
    --bs-btn-bg: #ffffff;
}

.sidebar-wrapper .sidebar-header {
    flex-flow: column;
    justify-content: space-between;
    align-items: start;
    position: relative;
    border-right: 0;
}


.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: #ffffff;
    background: transparent linear-gradient(270deg, #4DA7FF 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
    border-color: #4DA7FF;
}

.sidebar-wrapper .sidebar-nav {
    margin-top: 0;
    height: 100%;
    background-color: transparent;
    height: calc(100vh - 245px);
    overflow: auto;
    padding: 0;
    position: relative;
}

.simplebar-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.menu-top-container {
    display: flex;
    flex-direction: column;
}

.menu-bottom-container {
    width: 100%;
    padding: 0rem;
}

.user-logout {
    margin: 10px 0 10px;
}

    .user-logout .userName {
        font-family: var(--font-bold);
        letter-spacing: -0.008rem;
        line-height: 1.3;
        width: 100%;
        white-space: nowrap;
    }

        .user-logout .userName small {
            font-family: var(--font-Medium);
            letter-spacing: -0.007rem;
            display: block;
            width: 100%;
            white-space: nowrap;
        }


.user-logout {
    /*line-height: 19px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin: 15px 0 15px;
    padding: 0.8rem 1rem;
    background-color: rgb(33 49 153 / 80%);
    justify-content: space-between;*/
    line-height: 19px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin: 15px 0 15px;
    padding: 0.8rem 0.8rem;
    background-color: rgb(33 49 153 / 80%);
    justify-content: space-between;
}

    .user-logout svg:first-child {
        margin-right: 14px;
    }

    .user-logout img:last-child {
        margin-left: auto;
    }

.userCicon {
    width: 35px;
    height: 35px;
    color: black;
    font-weight: 600;
    background: #dfdff9;
    min-width: 35px;
}

.metismenu .has-arrow:after {
    transform: rotate(-225deg) translate(0, -50%);
}

.breadcrumb-title .material-icons-outlined.left-arrow {
    transform: rotate(180deg);
}

.page-breadcrumb {
    /* padding-right: 3rem;*/
}

.top-header {
    background: transparent;
    position: absolute;
    width: auto;
    left: inherit;
    right: 0;
    top: 0.4rem;
}

    .top-header .navbar {
        background: transparent;
        box-shadow: none;
        position: absolute;
        width: auto;
        left: inherit;
    }

.logo-icon {
    min-height: 75px;
}

/* Add new CSS */
.main-wrapper .main-content {
    padding: 1rem 2rem;
}

.page-footer {
    height: 30px;
    font-size: calc(var(--bs-body-font-size)*0.75);
}

.card {
    box-shadow: none !important;
}

    .card:hover {
        transform: none;
        box-shadow: none !important;
        border-color: rgb(33 49 153 / 80%);
    }



/* Keep scrollbar gutter visible everywhere */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Thumb (scroll handle) hidden by default */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
    opacity: 0; /* invisible */
    transition: opacity 0.3s ease; /* smooth fade */
}

/* On hover over scrollable element → show thumb */
*:hover::-webkit-scrollbar-thumb {
    opacity: 1;
}

    /* Optional: darker on thumb hover */
    *:hover::-webkit-scrollbar-thumb:hover {
        background: #555;
    }



/* Always reserve scrollbar gutter */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent; /* invisible by default */
    transition: scrollbar-color 0.3s ease; /* smooth change */
}

    /* On hover over scrollable element → show scrollbar */
    *:hover {
        scrollbar-color: #888 #f1f1f1; /* thumb | track */
    }





.card-container {
    box-shadow: none !important;
}








.chat-tab-menu a.nav-link.d-flex.align-items-center.justify-content-center.gap-1.active,
.px-3.py-1.new_gray_bg {
    background: #f8f8f8;
}

/* Make the div look exactly like a bootstrap input */
.var-drop-field[contenteditable] {
    min-height: 38px; /* Bootstrap default height */
    overflow-y: auto;
    white-space: pre-wrap;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    cursor: text;
}

/* The Variable Chip */
.var-chip {
    background-color: #2179ff3b; /* Bootstrap grey */
    border: 1px solid #ced4da;
    border-radius: 16px;
    padding: 2px 10px;
    font-size: 0.9em;
    color: #000000;
    display: inline-flex;
    align-items: center;
    user-select: none;
    margin: 2px 0;
}

    /* The X icon */
    .var-chip .chip-remove {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
        color: #6c757d;
    }

        .var-chip .chip-remove:hover {
            color: #dc3545; /* Red on hover */
        }

.script-chip {
    white-space: normal !important;
    background-color: #e5b32d1f; /* Bootstrap grey */
    border: 1px solid #ced4da;
    border-radius: 16px;
    padding: 2px 10px;
    font-size: 0.9em;
    color: #000000;
    display: inline-flex;
    align-items: center;
    user-select: none;
    margin: 2px 0;
}

    /* The X icon */
    .script-chip .chip-remove {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
        color: #6c757d;
    }

    .script-chip .chip-edit {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
        color: #6c757d;
    }

    .script-chip .chip-remove:hover {
        color: #dc3545; /* Red on hover */
    }

    .script-chip .chip-edit:hover {
        color: #dc3545; /* Red on hover */
    }

.layoutTopHeader {
    border-bottom: 1px solid #dde3e8 !important;
}

/*start tooltip css*/

/* Info Icon */
.info-tooltip {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #2563eb;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.info-tooltip:hover .info-icon {
    /*background: #9E9E9E;
    color: white;*/
    background: transparent linear-gradient(270deg, #4DA7FF 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
    color: #ffffff;
    border-color: transparent;
}

.tooltip-box {
    position: fixed; /* critical */
    display: none; /* critical */

    background: #F5F5F5;
    color: black;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    max-width: 400px; /* ✅ hard limit */
    width: max-content; /* ✅ auto size to content */
    min-width: 180px; /* ✅ optional: prevents too tiny tooltips */

    white-space: normal; /* ✅ allow wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-shadow: 0 14px 35px rgba(0,0,0,.2);
    z-index: 99999;
    border: 1px solid #9E9E9E;
}



/* Show Tooltip */
.info-tooltip:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    /*background: transparent linear-gradient(270deg, #4DA7FF 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
    color: #ffffff;
    border-color: transparent;*/
}

/* Arrow Pointer (RIGHT) */
.tooltip-box::before,
.tooltip-box::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
}

/* Border arrow */
.tooltip-box::before {
    right: 100%;
    border-width: 8px;
    border-color: transparent #9E9E9E transparent transparent;
}

/* Inner (background) arrow */
.tooltip-box::after {
    right: 100%;
    margin-right: -1px;
    border-width: 7px;
    border-color: transparent #F5F5F5 transparent transparent;
}

.tooltip-box.left {
    left: auto;
    right: 140%;
}

    .tooltip-box.left::before {
        left: 100%;
        right: auto;
        border-color: transparent transparent transparent #9E9E9E;
    }

    .tooltip-box.left::after {
        left: 100%;
        right: auto;
        margin-left: -1px;
        border-color: transparent transparent transparent #F5F5F5;
    }

/*end tooltip css*/

.btn-primary-blue-tag {
    background: transparent linear-gradient(270deg, #4DA7FF 0%, #0055FF 100%) 0% 0% no-repeat padding-box;
    min-width: 3rem;
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
    color: white;
}

    .btn-primary-blue-tag:hover {
        color: #d9d6d6;
    }