/* /////////// common css //////////////// */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */ 

html {
    transition: 0.4s linear;
    scroll-behavior: smooth;
}

section {
    transition: 0.4s linear;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
}

body, h1, h2, h3, h4, h5, h6, p, ul, li, a, th, tr, td {
    font-family: 'Nunito Sans', sans-serif;
}

.layout-app.light {
    background-color: #f1f5f9;
}

.heading_description {
    color: #808287;
}
.notification-read{
    background-color: #f1f1fa;
}
a {
    color: #000 !important;
    text-decoration: none !important;
}

.sidebar ul li a {
    color: #000;
    text-decoration: none !important;
}

.sidebar ul li a.active {
    color: #fff !important;
    text-decoration: none !important;
}

.sidebar ul li a:hover {
    /* color: #fff !important; */
    color: #000 !important;
    text-decoration: none !important;
}

li.active a {
    color: #fff !important; /* Change text color */
    text-decoration: none  !important;
}

a:hover {
    color: #000;
}

a.active {
    color: #fff !important;
}

.main_btn {
    padding: 12px 40px 12px 40px;
    color: #fff;
    background-color: #008080;
    border: 1px solid #008080;
    font-weight: 500;
    transition: 0.5s linear;
}

.main_btn:hover {
    background-color: #6272af;
    border-color: #6272af;
}

/* ////////////// index ////////////////*/

#wrapper {
    padding-left: 0;
    transition: all 0.5s ease;
    position: relative;
    display: flex;
}

#sidebar-wrapper {
    z-index: 2;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffff;
    transition: all 0.5s ease;
    padding-top: 10px;
    transition: .3s;
    /* margin: 15px 0; */
    margin-top: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 15px;
    margin-bottom: 10px;
    height: 88vh;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#wrapper #sidebar-wrapper .short_img {
    display: none;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper .full_img {
    transition: all 0.5s ease;
    display: none;
}

#wrapper.toggled #sidebar-wrapper .short_img {
    display: block;
    transition: all 0.5s ease;
    width: 22%;
    padding: 10px 0;
}


.sidebar-brand {
    width: 210px;
    margin: 0;
}

.right-bar.justify-center-between {
    padding: 0px 40px;
}

.gm-message {
    color: white;
}

.gm-message h4 {
    font-size: 24px;
    margin: 0;
    line-height: 14px;
}

.gm-message span {
    font-size: 11px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav>li {
    margin: 0 10px;
    position: relative;
}

.sidebar-nav>li a {
    display: flex;
    text-decoration: none !important;
    font-weight: 500;
    padding: 10px;
    align-items: center;
}

.menu__name {
    margin-left: 10px;
}
.sidebar-nav>li.active>a {
    text-decoration: none !important;
    color: #fff !important;
    background: #105177;
    border-radius: 8px;
}

.sidebar-nav .sub-menu-items {
    display: none;
    position: relative;
    margin-left: 15px;
}
.menu-item.have-sub-menu .a-sub-menu:after {
    background-image: url(../images/angle-right.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    right: 0;
    width: 15px;
    top: 11px;
}
.menu-item.have-sub-menu.active .a-sub-menu:after {
    background-image: url(../images/angle-right-white.svg);
    right: 13px;
    top: 15px;

}
.sidebar-nav .sub-menu-items.active{
    display: block;
}
.sub-menu-items  .sub-menu-item{
    padding: 5px;
    font-weight: normal;
    font-size: 12px;
}
.menu-item .sub-menu-items .sub-menu-item .menu__name {
    font-size: 14px;
}
#sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    border-radius: 10px;
    /* box-shadow: 0px 0px 5px 2px #ccc; */
}

#sidebar-wrapper::-webkit-scrollbar {
    background: transparent;
    /* margin: 10px 0; */
    width: 7px;
}
#navbar-wrapper {
    width: 100%;
    position: absolute;
    z-index: 2;
}

.menu__icon {
    width: 1.2rem !important;
    height: 1.2rem !important;
}

.menu-item.active .menu-link .menu__icon {
    fill: #fff;
    transition: all .3s ease;
}

.menu-item.active .menu-link svg {
    fill: #ffffff !important;
    background: #009688;
    padding: 7px;
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 8px;
}

#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}

#navbar-wrapper .navbar {
    border-width: 0 0 0 0;
    background-color: #105177;
    font-size: 24px;
    margin-bottom: 0;
    border-radius: 0;
}

#navbar-wrapper .navbar a {
    color: #757575;
    text-decoration: none !important;
}

#navbar-wrapper .navbar a:hover {
    color: #008080;
}

#content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px 5px;
    top: 100px;
}

#wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
}

.modal-header .btn-close {
    filter:     invert(0) !important    ;
    opacity:    1 !important    ;
}

@media (min-width: 992px) {
    #wrapper {
        padding-left: 250px;
    }

    #wrapper.toggled {
        padding-left: 60px;
    }

    #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 60px;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -190px;
    }

    #navbar-wrapper {
        position: relative;
    }

    #wrapper.toggled {
        padding-left: 60px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 60px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #wrapper {
        padding-left: 60px;
    }

    #sidebar-wrapper {
        width: 60px;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #navbar-wrapper {
        position: relative;
    }

    #wrapper.toggled {
        padding-left: 250px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }
}

@media (max-width: 767px) {
    #wrapper {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 0;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-right: -250px;
    }

    #navbar-wrapper {
        position: relative;
    }

    #wrapper.toggled {
        padding-left: 250px;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-right: 250px;
    }
}

/* login */
.login {
    background-image: url(../images/loginbg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.loginassets {
    padding-bottom: 3rem;
    padding-top: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    background-color: #fff;
    border-radius: 5px;
}

h2.font-bold.text-xl {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.75rem;
}

.border-b {
    border-bottom: 1px solid #ccc;
    width: 30%;
    margin: auto;
}

.form-label {
    font-size: 15px;
    font-weight: 700;
}

.btn-indigo {
    background-color: #105177;
    color: white;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    padding: 12px 20px;
}

.btn-indigo:hover {
    background-color: #559484;
    color: white;
}

.logo img {
    width: 40%;
}

.profile img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

.profile .dropdown-toggle {
    font-size: 14px;
    background-color: transparent;
    color: #fff;
    outline: 0;
    color: #fff;
    border: 0;
    box-shadow: none;
}

.profile .dropdown-item {
    font-size: 12px;
    color: #000 !important;
}

.profile .dropdown-item:hover {
    background-color: #105177;
    color: #fff !important;
}

.profile .dropdown-menu {
    min-width: 8rem;
}

.container-head {
    align-items: center;
    background-color: #fff;
    border-bottom: 0;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    z-index: 1;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-radius: 15px;
}

.w-3 {
    width: 0.75rem;
}
.h-3 {
    height: 0.75rem;
}
.container-head .ch-left .breadcrumb {
    align-items: center;
    display: flex;
    flex-flow: row;
    gap: 8px;
    margin: 0;
}
.container-head .ch-left .page-title {
    font-size: 20px;
    font-weight: 600;
}

.form-control, .form-select{
    padding: 10px;
    font-size: 14px;
}
.drops {
    width: 14%;
}


/* table */
.shadow, .shadow-md {
    box-shadow: 0px 0px 6px rgba(60,72,88,.15) !important;

}

.table{
}
table tr th {
    background-color: #fff !important;
    color: #202224;
    font-size: 14px;
    font-weight: 800;
    line-height: 19px;
}

table.ticket_list tr th {
    padding: 16px 24px;
}
table.ticket_list tr td{
    padding: 1rem;
}

tr {
    vertical-align: baseline !important;
}

.page-link{
    margin-right: 10px;
    color: #105177;
    background-color: transparent;
    padding: 10px 15px;
}
.card-bodys{
    padding: 2rem;
}

.select2-container .select2-selection--single{
    height: 42px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
       
        height: 13px;
        left: 50%;
        margin-left: -16px;
        margin-top: 0px;
        position: absolute;
        top: 50%;
        width: 13px;
        border: 0;
        background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");

        background-repeat: no-repeat;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.filters .select2-container--default .select2-selection--single {
    background-color: #f9f9fb !important;
    border: none !important;
    display: flex;
    align-items: center;
    width: 120px;
}

.filters .select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 0px !important;
}

.filters .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 40px !important;
}

.filters select {
    width: 100%;
}

.filters .select2-results__option--selectable {
    cursor: pointer !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 150px !important;
}

.select2-container--open .select2-dropdown--below {
    width: fit-content !important;
}

.pr-1 {
    padding-right: 0.25rem;
}
.fill-gray-400 {
    fill: #94a3b8;
}
.h-8 {
    height: 2rem;
}
.hidden {
    display: none;
}
.fill-gray-400 {
    fill: #94a3b8;
}

.w-6 {
    width: 1.5rem;
}
.h-6 {
    height: 1.5rem;
}
table.ticket_list tr td:last-child, table.ticket_list tr th:last-child{
    text-align: right;
}

/* new css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  
    display: flex;
    height: 100vh;
    background-color: #F5F6FA;
    margin: 0;
}



.signup-link {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.signup-link a {
    color: #5a2d82;
    text-decoration: none !important;
}


.powered-by {
    margin-top: 20px;
    font-size: 14px;
}

.powered-by img {
    width: 80px;
    height: auto;
    margin-top: 10px;
}

footer {
    margin-top: -45px;
    font-size: 12px;
}

footer a {
    color: #ffffff;
    text-decoration: none !important;
    margin: 0 10px;
}

.h-100vh {
    height: 100vh;
}

.signin-left {
    padding: 0px 100px;
}

.signin-left h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2B3674;
    line-height: 56px;
}

.signin-left a {
    color: #A3AED0 !important;
    font-size: 14px !important;
}

.signin-left p {
    font-size: 16px;
    font-weight: 400;
    color: #A3AED0;
    line-height: 16px;
}

.signin-left label {
    font-size: 14px;
    font-weight: 500;
    color: #2B3674;
    line-height: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #E0E5F2;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    height: 50px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6b6b6b;
}

.form-options a {
    color: #6b6b6b;
    text-decoration: none !important;
}

.form-options input {
    margin-right: 5px;
}

.btn {
    padding: 20px 20px;
    background-color: #66449B;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.btn-login:hover {
    padding: 20px 20px;
    background-color: #fff;
    color: #66449B !important;
    border: 1px solid #66449B !important;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.text-forget {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #66449B !important;
    line-height: 20px !important;
}

.signin-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}

.signin-right img {
    width: 150px;
    height: auto;
}

.signin-right h2 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 69px;
}

/* user css */

.sidebar {
    width: 250px;
    background-color: #fff;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: width 0.3s ease;
    overflow: hidden;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: fixed;
    /* bottom: 0; */
    left: 0;
    z-index: 9;
    overflow: auto;
}

.sidebar-wrapper {
    position: relative;
}

.sidebar {
    /* background: #f8f9fa; */
    background: #fff;
    transition: transform 0.3s ease-in-out;
}

.sidebar.collapse {
    transform: translateX(-100%);
}

@media (min-width: 768px) {
    .sidebar {
        transform: translateX(0); /* Ensure fully visible on larger screens */
    }

    #sidebarToggle {
        display: none; /* Hide toggle button */
    }
}


.sidebar.collapsed {
    width: 70px;
}

.nav-logo h2 {
    display: flex;
    justify-content: left;
    align-items: center;
}

.nav-logo h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 800;
    line-height: 27px;
    color: #000;
    /* transition: opacity 0.3s ease; */
}

.nav-logo span {
    color: #66449B;
}

.nav-logo img {
    width: 27px;
    height: 27px;
    margin-right: 10px;
}

.sidebar.collapsed h2 {
    opacity: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    padding: 0px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 0px;
    /* text-align: center; */
    color: #202224;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    margin-left: 25px;
    margin-right: 20px;
}

.sidebar ul li:hover, .sidebar ul li.active {
    background-color: #563091;
    color: #fff !important;
    border-radius: 6px;
    margin-right: 20px;
    margin-left: 25px;
}

.sidebar ul li.active {
    position: relative;
}

.sidebar ul li.active::before {
    content: "";
    position: absolute;
    border: 3px solid #563091;
    width: 4px;
    height: 100%;
    top: 0px;
    left: -26px;
    border-radius: 0px 6px 6px 0px;
}

.no-hover ul li.active {
    position: relative !important;
    background-color: #563091 !important;
    color: #fff !important;
    border-radius: 6px;
    margin-right: 20px;
    margin-left: 25px;
}

.no-hover ul li.active::before {
    content: "";
    position: absolute;
    border: 3px solid #563091;
    width: 4px;
    height: 100%;
    top: 0px;
    left: -26px;
    border-radius: 0px 6px 6px 0px;
    display: none;
}

.sidebar ul li:hover {
    /* background-color: #e2ceff !important; */
    background-color: #ebebeb !important;
    color: #fff !important;
    border-radius: 6px;
}

.content {
    flex-grow: 1;
    padding: 20px;
    padding-left: 250px;
    padding-right: 0;
    padding-top: 0;
    background-color: #f5f6fa;
    width: 100%;
}

.toggle-btn {
    position: absolute;
    top: 20px;
    left: 260px;
    background-color: #6D28D9;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: left 0.3s ease;
}

.sidebar.collapsed + .content .toggle-btn {
    left: 80px;
}
.main-wrapper{
    margin-top: 65px;
    background-color: #F5F6FA;
    padding-bottom: 100px;
}
.content .header {
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    border-radius: 0px;
    margin-bottom: 20px;
    position: fixed;
    /* width: 84%; */
    right: 0;
    width: calc(100% - 250px);
    /* left: 250px; */
    z-index: 99;
    box-shadow: 1px 1px 10px #ccc;
}

.content .header .search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content .header input {
    padding: 5px;
    border: 1px solid #D5D5D5; 
    border-radius: 19px;
    background-color: #F5F6FA;
}

.content .header .profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content .header .profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.content .table-container {
    background-color: white;
    padding: 0px;
    border-radius: 14px !important;
}

.content .filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.content .filters select {
    /* padding: 10px; */
    border: 0px solid #ccc;
    /* border-radius: 5px; */
    background-color: #F9F9FB;
    /* background-color: #fff; */
}

.list-group-item {
    background-color: #f9f9fb !important;
    width: 100% !important;
    white-space: nowrap;
}

.list-group-item button {
    padding: 0px 0px;
    background-color: #66449B00;
    color: #000;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    margin-right: 20px !important;
    /* line-height: 16px; */
}

.list-group-item {
    border-color: #D5D5D5;
    background-color: #F9F9FB;
    padding: 20px;
}

/* .list-group {
    border-radius: 50px;
} */

.content .table-container table {
    width: 100%;
    border-collapse: collapse;
}

.content .table-container table th,
.content .table-container table td {
    padding: 15px 4px;
    text-align: left !important;
    border-bottom: 1px solid #ccc;
    width: auto !important;
    padding-left: 15px;
    vertical-align: middle;
}

.content .table-container table th {
    background-color: #f3f3f3;
}

.badge {
    padding: 5px 10px;
    border-radius: 20px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 15px !important;
    width: fit-content;
}

.badge.admin {
    background-color: #CCF0EB;
    /* color: #00B69B; */
    color: #000;
}

.badge.yellow {
    background-color: #fff977;
    /* color: #ffc700; */
    color: #000;
}

.badge.block {
    background-color: #F6DDFF;
    /* color: #D456FD; */
    color: #000;
}

.badge.district {
    background-color: #FFEBDD;
    /* color: #FD9A56; */
    color: #000;
}

.badge.principal {
    background-color: #DEE8FF;
    /* color: #5A8CFF; */
    color: #000;
}

.badge.in-review{
    background-color: #F9F7D2 !important;
    /* color: #E3D61D !important; */
    color: #000;
}


.badge.priority {
    background-color: #DBD5D5;
    /* color: #4C2B2B; */
    color: #000;
}

.badge.review {
    background-color: #F9F7D2;
    /* color: #E3D61D; */
    color: #000;
}

.badge.active {
    background-color: #CCF0EB;
    color: #00B69B !important;
    
}

.badge.inactive {
    background-color: #FAD3D3;
    color: #d00004 !important;
   
}

.color-reverse .badge.active {
    background-color: #FAD3D3 !important;
    color: #FF0004 !important;
    font-size: 14px !important;
}

.color-reverse .badge.inactive {
    background-color: #CCF0EB !important;
    color: #00B69B !important;
    font-size: 14px !important;
}

.badge.danger {
    background-color: #FCD7D4;
    color: #EF3826;
    
}

.badge.concern {
    background-color: #d0b3ff;
    /* color: #553091; */
    color: #000;
    font-size: 12px;
}

.badge.pdf {
    color: #4379EE;
    padding: 4px 8px;
    background: rgba(72, 128, 255, 0.1);
    border: 1px solid rgba(72, 128, 255, 0.1);
    border-radius: 6px; 
    width: fit-content;
    margin: 0px 3px;
}

.badge.mb {
    color: #4379EE;
    padding: 4px 8px;
    background: rgba(72, 128, 255, 0.0);
    border: 1px solid rgba(72, 128, 255, 0.1);
    border-radius: 6px; 
    width: fit-content;
    margin: 0px 3px;
}

.badge.noti {
    color: #121417;
    padding: 8px 19px;
    background: #F0F2F5;
    border: 0px solid rgba(72, 128, 255, 0.1);
    border-radius: 14px; 
    width: fit-content;
    margin: 0px 3px;
}

.cursor-pointer {
    cursor: pointer;
}

.selected-filters .badge {
    background-color: #fff;
    border: 1.5px solid #563091;
    color: #563091;
    border-radius: 11px;
    /* padding-right: 85px !important; */
    width: fit-content;
}

.selected-filters .badge.accept {
    background-color: #fff;
    border: 1.5px solid #00B69B;
    color: #00B69B;
    border-radius: 11px;
    /* padding-right: 70px !important; */
    cursor: pointer;
}

.selected-filters .badge.reject {
    background-color: #fff;
    border: 1.5px solid #FF3C3C;
    color: #FF3C3C;
    border-radius: 11px;
    padding-right: 10px !important;
    cursor: pointer;
}

.search {
    position: relative;
    display: inline-block;
}

.search input[type="text"] {
    width: 100%;
    padding: 10px 20px 10px 40px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 50px;
}

.search .fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    cursor: pointer;
}

.page-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-top button {
    background-color: #563091;
    padding: 10px 70px;
    border-radius: 8px;
    color: white;
    margin: 5px;
    cursor: pointer;
    /* margin-top: 30px !important; */
    border: 0px solid #fff;
    white-space: nowrap;
}

.page-top h2 {
    font-size: 32px;
    font-weight: 700;
    color: #202224;
    line-height: 44px;
    /* margin-top: 25px !important; */
    margin-bottom: 0px !important;
}

tbody, td, tfoot, th, thead, tr {
    border-radius: 14px;
}

tbody, td, tfoot, th, thead, tr a {
    text-decoration: none !important;
}

thead tr th {
    /* background-color: #FCFDFD !important; */
    background-color: #fff !important;
}

.svg-color fill:hover {
    stroke: #000 !important;
}

.svg-color path:hover {
    stroke: #000 !important; 
}

.sidebar ul li.active .svg-color path{
    fill: #fff;
    stroke: #563091 !important;
}

/* .sidebar ul li:hover .svg-color path{
    
    fill: #000 !important;
    /* remove this for sidebar icon hover issue 
}

.sidebar ul li .svg-color path:hover {
stroke: #000 !important; 
} */

.custom-dropdown {
    appearance: none; /* Removes the default arrow */
    -webkit-appearance: none; /* Removes the default arrow for WebKit browsers */
    -moz-appearance: none; /* Removes the default arrow for Firefox */
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.415 0.709961L6 5.29496L10.585 0.709961L12 2.12496L6 8.12496L0 2.12496L1.415 0.709961Z" fill="black"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 10px;
    padding-right: 30px; /* Adds space for the custom arrow */
    margin-left: 5px !important;
}

/* .custom-dropdown:focus {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.415 0.709961L6 5.29496L10.585 0.709961L12 2.12496L6 8.12496L0 2.12496L1.415 0.709961Z" fill="black" transform="rotate(180 6 4.5)"/></svg>');
} */

.custom-dropdown.focused {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.415 0.709961L6 5.29496L10.585 0.709961L12 2.12496L6 8.12496L0 2.12496L1.415 0.709961Z" fill="black" transform="rotate(180 6 4.5)"/></svg>');
}

.svg-color circle:hover {
    stroke: #000 !important;
}

.svg-color rect:hover {
    fill: #000 !important; 
}

.profile {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 0px;
    border: 0px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.profile img {
    border-radius: 50%;
    /* margin-right: 10px; */
}

.profile h5 {
    font-size: 14px;
    font-weight: 700;
    color: #404040;
    line-height: 19px;
    margin-bottom: 0px;
}

.profile h6 {
    font-size: 12px;
    font-weight: 600;
    color: #565656;
    line-height: 16px;
    margin-bottom: 0px;
}

.profile .arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.profile .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    /* right: 0; */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.profile .dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
}

.profile .dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.language-dropdown .selected-language {
    padding: 0px;
    border: 0px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-right: 20px;
}

.language-dropdown .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
    min-width: 150px;
    overflow: hidden;
}

.language-dropdown .dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none !important;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.language-dropdown .dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.bell-container {
    position: relative;
    /* width: 50px;
    height: 50px; */
}

.bell {
    width: 100%;
    height: 100%;
}

.badge1 {
    position: absolute;
    top: 0;
    right: 18px;
    background-color: #ff3d57;
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 0px 0px;
    border-radius: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width: 20px;
    height: 20px;
}


.header .dropdown {
    display: none;
    position: absolute !important;
    top: 45px;
    left: -60px;
    background-color: white;
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 250px;
    z-index: 99999;
  }

  .header .dropdown.active {
    display: block;
  }

  .header .dropdown .notification-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
  }

  .header .dropdown .notification-item:last-child {
    border-bottom: none;
  }

  .header .dropdown .notification-item:hover {
    /* background-color: #f9f9f9; */
    transition: transform 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 4px 25px #00000010;
    border-radius: 4px;
  }

  #notificationDropdown {
    max-height: 400px;
    overflow-y: scroll;
    border-radius: 0px;
  }

.dropdown-toggle::after {
    display: none !important;
}

/* add user css */

.card {
    background: #FFFFFF !important;
    border: 0.3px solid #B9B9B9 !important;
    border-radius: 14px !important;
}

.upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-top: 50px; */
    border: 1px dashed #000000;
    border-radius: 5px;
}

.upload-container-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-top: 50px; */
    /* border: 1px dashed #000000; */
    border-radius: 5px;
}

.upload-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none;
    padding: 20px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #747474 !important;
    font-size: 10px !important;
}

/* .upload-button:hover {
    background-color: #ddd;
} */

.camera-icon {
    width: 30px;
    height: 24px;
    /* margin-bottom: 10px; */
}

.upload-container-user .camera-icon {
    width: 80px;
    height: 80px;
    background: #ECECEE;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0001);
    border-radius: 50px;
    padding: 20px;
    margin-bottom: 20px !important;
}

.upload-container-user label {
    color: #4379EE !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.image-preview {
    width: 120px;
    height: 96px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

.image-preview img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
  
/* class range slider css  */
.range_container {
    --_marker-border-clr: #0EA5E9;
    --_marker-size: 15px;
    --_track-heigt: 3px;
  
    --_tooltip-bg-clr: rgba(0, 0, 0, 0.4);
    --_tooltip-txt-clr: var(--_marker-border-clr);
      
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}
  
.sliders_control {
    position: relative;
}
  
.slider-tooltip {
    position: absolute;
    top: -45px;
    left: 0;
    width: fit-content;
    background-color: #fff;
    color: #5B8DFF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    text-align: center;
    translate: -50% 0;
}
  
.slider-tooltip::before {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    translate: -50% 0;
    width: .5rem;
    height: .5rem;
    rotate: 45deg;
    z-index: -1;
    background-color: inherit;
}
  
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: var(--_marker-size);
    height: var(--_marker-size);
    background-color: var(--_marker-border-clr);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--_marker-border-clr);
    cursor: pointer;
}
  
input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: var(--_marker-size);
    height: var(--_marker-size);
    background-color: var(--_marker-border-clr);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--_marker-border-clr);
    cursor: pointer;
}
  
input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}
  
input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}
  
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: var(--_track-heigt);
    width: 100%;
    position: absolute;
    background-color: var(--_marker-border-clr);
    pointer-events: none;
}
  
#fromSlider {
    height: 0;
    z-index: 1;
}
  
.scale {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    position: relative;
    width: calc(100% - var(--_marker-size));
    margin-inline: auto;
    font-size: 0.8rem;
}
  
.scale div {
    position: absolute;
    translate: -50% 0;
    top: -70px;
}
  
/* .scale div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -125%;
    width: 1px;
    height: 10px;
    background-color:#666;
} */
/* class range slider css end   */

.btn-userform {
    padding: 10px 60px !important;
    background-color: #4880FF !important;
    color: #fff !important;
    border: 1px solid #4880FF !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    width: fit-content !important;
    margin-bottom: 0px !important;
    margin-top: 10px !important;
}

.btn-viewall {
    padding: 5px 10px !important;
    margin: 5px !important;
    background-color: #4880FF !important;
    color: #fff !important;
    border: 1px solid #4880FF !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    width: fit-content !important;
}

.btn-userform:hover {
    /* padding: 10px 60px !important; */
    background-color: #fff !important;
    color: #4880FF !important;
    border: 1px solid #4880FF !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    width: fit-content !important;
}

.btn-primary {
    color: #0d6efd !important;
    background-color: #e4efff !important;
    border: 0px solid #0d6efd !important;
    padding: 4px 8px !important;
}

.btn-danger {
    color: #dc3545 !important;
    background-color: #ffe1e3 !important;
    border: 0px solid #dc3545 !important;
    padding: 4px 8px !important;
}

.btn-submit-noti {
    color: #fff !important;
    background-color: #146BC2 !important;
    border: 0px solid #146BC2 !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
}

.btn-reset-noti {
    color: #121417 !important;
    background-color: #F0F2F5 !important;
    border: 0px solid #F0F2F5 !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
}

.upload-container label {
    font-size: 18px;
    color: #4379EE;
    
}

.add-user .p-x {
    padding: 0px 200px;
}

.add-user .form-label {
    font-size: 14px !important;
    color: #606060 !important;
    font-weight: 500 !important;
    line-height: 19px !important;
}

.form-control, .form-select {
    padding: 10px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    /* margin: 0px 10px; */
    /* margin-right: 50px !important; */
    /* width: 100% !important; */
}

.select2-container {
    width: 100% !important;
    border-color: #dee2e6 !important;
}

.select2-container--default .select2-selection--multiple {
    padding: 8px !important;
    border: 1px solid #dee2e6 !important;
}

.select2-container .select2-search--inline .select2-search__field {
    padding: 0px !important;
    height: 25px !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin: 0px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear { 
    margin-top: 0px !important;
}
/* for remove X icon  */
.select2-selection__clear span {
    display: none !important;
}

.label-top {
    position: absolute;
    top: -9px;
    font-size: 10px;
    left: 5px;
    /* transform: translateX(-50%); */
    background-color: #f9f9fb;
    padding: 2px 6px;
    border: 0px solid #000;
}

.required span {
    color: red;
}

.btn-sidemenu {
    padding: 12px 15px;
    background-color: #563091 !important;
    border-radius: 50px;
    top: 13px;
    left: 10px;
    z-index: 999;
}

.text-back {
    font-size: 15px;
    font-weight: 700;
    color: #b6b6b6 !important;
    line-height: 24px;
    cursor: pointer;
}

.school-card .infra-summery {
    background-color: #fff;
    border: 0.6px solid #d5d5d5;
    border-radius: 14px 14px 0px 0px;
    padding: 15px 20px;
    box-shadow: 6px 6px 54px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    margin-bottom: 20px;
}

.school-card .card-header {
    background-color: #FCFDFD;
    border: 0.6px solid #d5d5d5;
    border-radius: 14px 14px 0px 0px !important;
    padding: 15px 20px;
}

.school-card .card-body {
    background-color: #fff;
    border: 0.3px solid #b9b9b9;
    border-radius: 0px 0px 14px 14px !important;
    padding: 20px 20px;
}

.school-card .card-header h6 {
    font-size: 14px;
    font-weight: 800;
    color: #202224;
    line-height: 19px;
    margin-bottom: 0px;
}

.school-card .card-body h6 {
    font-size: 14px;
    font-weight: 600;
    color: #171A1F;
    line-height: 22px;
    margin-bottom: 0px;
}

.school-card .card-body h6 span {
    font-size: 14px;
    font-weight: 400;
    color: #171A1F;
    line-height: 22px;
    margin-bottom: 0px;
}

.item-table .img img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}

.recommand-table .img img {
    width: 150px;
    height: 150px;
    border-radius: 6px;
}

.recommand-name h6 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 29px;
    margin-bottom: 5px;
    display: block;
    /* overflow: auto; */
    white-space: normal;
}

.recommand-name p {
    font-size: 16x;
    font-weight: 400;
    color: #494949;
    line-height: 21px;
    margin-bottom: 0px;
    font-style: italic;
    width: 100% !important;
    overflow: auto ;
    white-space: normal !important;
    text-align: left !important;
    max-width: 100% !important;

}

.product-name h6 {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #000 !important;
    line-height: 22px !important;
    margin-bottom: 0px !important;
}

.product-name p {
    font-size: 15px;
    font-weight: 400;
    color: #888;
    line-height: 21px;
    margin-bottom: 0px;
    font-style: italic;
}

.reject-reason {
    font-size: 10px;
    font-weight: 400;
    color: #888;
    line-height: 21px;
    margin-bottom: 0px;
    font-style: italic;
}

.infra-summery h5 {
    font-size: 24px;
    font-weight: 700;
    color: #170D1C;
    line-height: 20px;
    margin-bottom: 10px;
}

.infra-summery h6 {
    font-size: 14px;
    font-weight: 400;
    color: #676767;
    line-height: 20px;
    margin-bottom: 0px;
}

.infra-summery span {
    font-size: 14px;
    font-weight: 400;
    color: #676767;
    line-height: 20px;
    margin-bottom: 0px;
}

.infra-summery p {
    font-size: 12px;
    font-weight: 400;
    color: #888;
    line-height: 21px;
    margin-bottom: 0px;
    font-style: italic;
}

.infra-summery img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.infra-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 14px 14px 0px 0px;
}

.infra-card .card-header {
    background-color: #fff;
    border: 0.6px solid #d5d5d5;
    border-radius: 14px 14px 0px 0px;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
}

.infra-card .card-body {
    background-color: #563091;
    border: 0.6px solid #d5d5d5;
    border-radius: 0px 0px 14px 14px;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
}

.infra-card .card-body h5 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 25px;
    margin-bottom: 0px;
    padding: 7px 0px;
}

.infra-card .card-body h4 {
    font-size: 20px;
    color: #fff;
}

.infra-card {
    margin-bottom: 20px;
}

.btn-detail {
    background-color: #DBCEF19C !important;
    border: 1px solid #DBCEF19C !important;
    border-radius: 8px !important;
    padding: 3px 16px 1px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #170D1C !important;
    line-height: 21px !important;
}

.btn-detail:hover {
    background-color: #f2eaff !important;
    border: 1px solid #f2eaff !important;
    border-radius: 8px !important;
    padding: 3px 16px 1px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #170D1C !important;
    line-height: 21px !important;
}

.approver label {
    font-size: 25px;
    font-weight: 700;
    color: #202244;
    line-height: 34px;
    margin-bottom: 10px;
}

.approver textarea {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #3F4350A3 !important;
    line-height: 20px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    height: 100px !important;
    border-radius: 4px !important;
    padding: 10px !important;
    border: 1px solid #3F435029 !important;
}

.approver button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 35px;
    border-radius: 8px;
    background: #563091 !important;
    border-radius: 6px !important;
    color: #fff !important;
}

.tiles .card {
    background: #FFFFFF;
    box-shadow: 6px 6px 54px rgba(0, 0, 0, 0.05) !important;
    border-radius: 14px !important;
    border: 0px solid #fff !important;
}

.tiles h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #202224;
}

.tiles h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #202224;
    white-space: break-spaces;
}

.text-green {
    color: #00B69B;
}

#submenu {
    transition: height 0.3s ease;
}

#submenu li {
    padding: 0px 15px;
    /* background: #ebebeb; */
    margin: 5px 0px;   
}

#submenu li:hover {
    padding: 0px 15px;
    background: #d1d1d1 !important;
    margin: 5px 0px; 
    /* background-color: #563091cc !important; */
}

#submenu1 {
    transition: height 0.3s ease;
}

#submenu1 li {
    padding: 0px 15px;
    /* background: #ebebeb; */
    margin: 5px 0px;   
}

#submenu1 li:hover {
    padding: 0px 15px;
    background: #d1d1d1 !important;
    margin: 5px 0px; 
    /* background-color: #563091cc !important; */
}

.sidebar ul li {
    margin-bottom: 0.5rem;
}

.sidebar ul li a {
    text-decoration: none !important;
    display: block;
    padding: 8px 6px 8px 10px;
    /* display: flex; recomman center
    align-items: center; */
}

.sidebar ul li a.active {
    color: #fff !important;
    text-decoration: none;
    display: block;
}

.collapse-arrow i {
    transition: transform 0.3s ease;
}

/* .hr {
    margin: 2px 0 !important;
    color: #979797 !important;
    border: 0 !important;
    opacity: 0.5 !important;
} */

/* modal css */

.modal-header {
    background-color: #542F8E;
    justify-content: center;
}

.modal-title {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
    line-height: 20px;
}

.modal-body .approver label {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 20px;
    margin-bottom: 10px;
}

.modal-body .approver textarea {
    font-size: 10px;
    font-weight: 400;
    color: #2d2d2d;
    line-height: 16px;
    margin-bottom: 10px;
    width: 100%;
    height: 100px;
    border-radius: 4px; 
    padding: 10px;
    border: 1px solid #3F435029;
    background-color: #f4f4f4;
}

.modal-btn .btn-c {
    padding: 10px 30px !important;
    border-radius: 5px !important;
    background-color: #fbfbfb !important;
    border: 1px solid #F4F4F4 !important;
    color: #4f4f4f !important;
    margin: 0px 5px !important;
}

.modal-btn .btn-r  {
    padding: 10px 30px !important;
    border-radius: 5px !important;
    background-color: #494949 !important;
    border: 1px solid #F4F4F4 !important;
    color: #fff !important;
    margin: 0px 5px !important;
}

/* searchbar in dt corner rounded */
.dataTables_wrapper .dataTables_filter input {
    margin-right: 10px;
}

.form-check-input:checked {
  background-color: #28a745; /* Green */
  border-color: #28a745;
}

.form-check-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.form-check-input:checked, .form-switch .form-check-input {
  width: 60px;
  height: 20px;
}

.toggle-text {
  font-weight: 800;
  color: #fff;
  font-size: 8px;
  position: absolute;
  top: 6px;
  left: 4px;
  z-index: 1;
}

.auto-password .form-check-input:checked, .form-switch .form-check-input {
    width: 15px;
    height: 15px;
}



/* custom scroll bar  */

/* Custom scrollbar styling for modal body */
.x-scroll {
    /* Ensuring the body is scrollable */
    max-height: auto; /* Adjust this height as per your need */
    overflow-x: auto;
  }
  
  /* Custom scrollbar styles */
  .x-scroll::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
  }
  
  .x-scroll::-webkit-scrollbar-track {
    background: #f1f1f1; /* Scrollbar track background */
  }
  
  .x-scroll::-webkit-scrollbar-thumb {
    background-color: #ad7bf6; /* Scrollbar thumb color */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 2px solid #f1f1f1; /* Padding around the thumb */
  }
  
  .x-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #045f5f; /* Darker color on hover */
  }
  
/* custom scroll bar end   */


table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover, table.dataTable thead > tr > td.dt-orderable-asc:hover, table.dataTable thead > tr > td.dt-orderable-desc:hover {
    outline: 0px solid rgba(0, 0, 0, 0.05) !important;
    outline-offset: -2px;
}

table thead tr th {
    white-space: nowrap !important;
    text-align: center !important;
}

table tbody tr td {
    white-space: nowrap !important;
    text-align: center !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

table tbody tr td div p {
    white-space: nowrap !important;
    text-align: center !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.btn-dots {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.icon-bg {
    background-color: #f1f1fa;
    border-radius: 12px;
    padding: 10px;
}

.icon-bg img {
    width: 40px;
    height: 40px;
}

.dash .nav-tabs {
    justify-content: end !important;
    border-bottom: 0px !important;
}

.dash .nav-tabs .nav-link.active {
    background-color: #563091 !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: 1px solid #563091 !important;
    border-radius: 8px !important;
}

.dash .nav-tabs .nav-link {
    background-color: #fff !important;
    color: #563091 !important;
    border: 1px solid #563091 !important;
    border-radius: 8px !important;
    margin-left: 5px;
}

/* table pagination scroll stop css start*/
div.table-responsive > div.dt-container > div.row {
    overflow-x: auto !important;
}

.table-reponsive {
    overflow-x: hidden !important;
}
/* table pagination scroll stop css end */

/* .fa-arrow-circle-left:before, .fa-circle-arrow-left:before {
    cursor: pointer !important;
} */

/* css for sorting arrow in datatable start */
.table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
    left: 0px !important;
}

/* .dataTables_wrapper table.dataTable thead th {
    position: relative;
    white-space: nowrap;
    padding-right: 20px !important; 
}

.dataTables_wrapper table.dataTable thead th.sorting:after,
.dataTables_wrapper table.dataTable thead th.sorting_asc:after,
.dataTables_wrapper table.dataTable thead th.sorting_desc:after {
    position: absolute;
    right: 30%; 
    top: 60%;
    transform: translateY(-50%);
}

.dataTables_wrapper table.dataTable thead th.sorting:before,
.dataTables_wrapper table.dataTable thead th.sorting_asc:before,
.dataTables_wrapper table.dataTable thead th.sorting_desc:before {
    position: absolute;
    right: 30%;
    bottom: 40%;
    transform: translateY(-50%);
} */

table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after {
    left: 0px !important;
}
/* css for sorting arrow in datatable end */

.hand-icon {
    cursor: pointer !important;
}

.last-rw-pos {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.top-10 .list-group-item strong {
    white-space: break-spaces;
}

.top-10 .list-group-item small {
    white-space: break-spaces;
}

.top-10 .list-group {
    border-radius: 14px !important;
}

.top-10 .card-header {
    border-radius: 14px 14px 0px 0px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-24:hover {
    color: #848484 !important;
}

/* loader css start */
#loader{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffffe6;
    z-index: 99;
}
.box{
    width: 10px;
    height: 30px;
    background-color: #563091;
    border-radius: 50px;
    animation: loader 1s linear infinite;
    position: relative;
    margin-bottom: 800px;
}
#loader1{
    animation-delay: .1s;
}
#loader2{
    animation-delay: .2s;
}
#loader3{
    animation-delay: .3s;
}
#loader4{
    animation-delay: .4s;
}
#loader5{
    animation-delay: .5s;
}
@keyframes loader{
    0%,100%{
        height: 90px;
    }
    50%{
        height: 20px;
    }
}
/* loader  css end */

#selectBtn {
    background-color: #563191 !important;
    color: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #444 !important;
}

.modal-header .btn-close {
    color: #fff !important;
    filter: invert(1) !important;  
}    

/* media queries */

@media (max-width: 767.99px) {

    .add-user .p-x {
        padding: 0px 20px;
    }

    .content {
        padding-left: 0px;
    }

    .content .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0px 10px 20px;
        width: 100%;
        left: 0;
        right: 0;
    }

    .content .header .profile img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .profile h5 {
        font-size: 12px;
    }

    .profile h6 {
        font-size: 10px;
    }

    .profile .dropdown-menu {
        left: auto;
    }

    .sidebar {
        margin-top: 75px;
    }

    .search input[type="text"] {
        width: 10%;
        padding: 10px 25px;
        margin-left: 50px;
    }

    .search .fa-search {
        position: absolute;
        left: 70px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        cursor: pointer;
    }

    .upload-container { 
        margin-top: 10px;
    }

    .btn-userform {
        padding: 15px 50px;
        width: 100%;
    }

}


.table-recommdation tr td:first-child {
    width: 14% !important;
}
.table-recommdation tr td:nth-child(3) {
    text-align: center !important;
}
.table-recommdation tr td:nth-child(2) {
    width: 50% !important;
}

.table-notification tr td:first-child{
    width: 32% !important;
    white-space: normal !important;
}

.table-notification tr td:last-child, .table-notification tr th:last-child{
    text-align: right !important;
}
.table-recommdation1 tr td:first-child {
    width: 65% !important;
}
.table-recommdation1 tr td:last-child {
    width: 10%;
}

/* .remove-arrow .table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
    display: none !important;
} */

/*.w-a {
    width: 65% !important;
}
.w-b {
    width: 25% !important;
}
.w-c {
    width: 10% !important;
}*/

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 37px;
}