/* Dashboard CSS Start */
/* Enterprise Dashboard Start*/
.dashboard-card .card {
    margin-bottom: 5px !important;
}

.dashboard-card .card-body {
    padding: 10px !important;
}

.dashboard-card .card-body h6 {
    font-size: 10px !important;
}
.select2-container--default .select2-selection--multiple{padding-bottom:0px !important ;}
.dashboard-card .card .card-body p {
    font-size: 13px !important;
}
.sidebar-nav ul .sidebar-item .sidebar-link .hide-menu.text-wrap{line-height: 1;}
/* Marketplace Dashboard CSS Start */
/* .marketplace img{
    height: 80px;
    width: 80px;
} */
/* Dashboard CSS End */
footer {
    position: fixed;
    margin-top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #333;
    /* padding: 10px; */
    z-index: 1028;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.13);
}

ul.action-menu {
    width: fit-content;

    li {
        display: inline-block;
        border: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        padding-left: 3.5px;
        padding-right: 3.5px;
    }
}

ul.circle li {
    border-radius: 100%;
}

@media only screen and (max-width: 600px) {
    /* .onlyForMobile {
        display: block;
    } */

    .onlyForDesktop {
        display: none;
    }

    .mw-150 {
        min-width: 150px;
    }

    .mw-200 {
        min-width: 200px;
    }
}

@media only screen and (min-width: 601px) {
    .onlyForMobile {
        display: none;
    }

    /* .onlyForDesktop {
        display: block;
    } */
}

.text-truncate {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 100%;
    /* max-width: calc(100%-100px); */
    /* width: calc(100%-100px); */
    width: 100%;
}

tbody tr:hover td.text-truncate,
tbody tr:hover td span.text-truncate,
.text-truncate-hover:hover .text-truncate {
    overflow: initial;
    -webkit-line-clamp: initial;
}

tbody tr:hover td span.text-truncate {
    min-width: 500px !important;
}

table td.card {
    margin: 0;
    padding: 0 !important;
}

table td.card:last-child {
    margin-bottom: 0;
}

table td.card {
    margin-top: 12px;
}

table thead th,
table tfoot th {
    color: #002046 !important;
}

/* Ankit Code */

/* .select2-container .select2-selection--single .select2-selection__rendered {
    margin-right: 38px !important;
}

.select2-container--open,
.select2-dropdown {
    width: fit-content !important;
}

.select2-dropdown {
    white-space: nowrap;
} */
/* My Code */
.cust-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    margin-right: 38px !important;
}

.cust-select2 .select2-container--open,
.cust-select2 .select2-dropdown {
    width: fit-content !important;
}

.cust-select2 .select2-dropdown {
    white-space: nowrap;
}

/* Lifecycle CSS Start */
.arrows {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 80%;
    margin: 0 auto;
    padding: 6px 0;
    position: relative;
    border: 1px dashed red;
}

.arrow {
    width: 33%;
    margin: 0;
    padding: 10px 10px;
    text-align: center;
    position: relative;
}

.arrow:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: -17px;
    /* top: 0; */
    width: 0;
    z-index: 2;
}

.arrow:last-child:after {
    border: none;
    right: 0;
}


/* Colour each section. */
.step1 {
    background-color: #E5461C;
}

.step2 {
    background-color: #C4261E;
}

.step3 {
    background-color: #681010;
}


/* Colour the wedge (arrow) */
.arrow.step1:after {
    border-left: 17px solid #E5461C;
}

.arrow.step2:after {
    border-left: 17px solid #C4261E;
}


/* Typography */
.arrow span {
    color: #ffffff;
    position: relative;
}

ul.cp-steps {
    list-style: none;
    display: flex;
    padding-left: 0;
}

ul.cp-steps li {
    width: 33.33%;
    color: #fff;
    font-size: 18px;
    /* height: 38px; */
    /* line-height: 39px; */
    position: relative;
    text-align: center;
}

ul.cp-steps li:nth-child(1) {
    background: #BBDEFB;
}

ul.cp-steps li:nth-child(2) {
    background: #90CAF9;
}

ul.cp-steps li:nth-child(3) {
    background: #64B5F6;
}

ul.cp-steps li:nth-child(4) {
    background: #42A5F5;
}

ul.cp-steps li:nth-child(5) {
    background: #2196F3;
}

ul.cp-steps li:nth-child(6) {
    background: #1E88E5;
}

ul.cp-steps li:nth-child(7) {
    background: #1976D2;
}

ul.cp-steps li:nth-child(1):after {
    content: '';
    position: absolute;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #BBDEFB;
    right: -18px;
    z-index: 1;
    top: 0;
}

ul.cp-steps li:nth-child(2):after {
    content: '';
    position: absolute;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #90CAF9;
    right: -18px;
    z-index: 1;
    top: 0;
}

ul.cp-steps li:nth-child(3):after {
    content: '';
    position: absolute;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #64B5F6;
    right: -18px;
    z-index: 1;
    top: 0;
}

ul.cp-steps li:nth-child(4):after {
    content: '';
    position: absolute;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #42A5F5;
    right: -18px;
    z-index: 1;
    top: 0;
}

ul.cp-steps li:nth-child(5):after {
    content: '';
    position: absolute;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #2196F3;
    right: -18px;
    z-index: 1;
    top: 0;
    opacity: .8;
}

ul.cp-steps li:nth-child(6):after {
    content: '';
    position: absolute;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #1E88E5;
    right: -18px;
    z-index: 1;
    top: 0;
}

@media only screen and (max-width: 767px) {
    ul.cp-steps li {
        font-size: 15px;
    }
}

@media only screen and (max-width: 350px) {
    ul.cp-steps li {
        font-size: 13px;
    }
}

/* Lifecycle CSS End */

/* Divider CSS Start */
.decorated {
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.decorated>span {
    position: relative;
    display: inline-block;
    color: gray;
}

.decorated>span:before,
.decorated>span:after {
    content: '';
    position: absolute;
    top: 50%;
    border: none;
    border-bottom: 1px dashed lightgray;
    height: 1px;
    width: 100vw;
    margin: 0 20px;
}

.decorated>span:before {
    right: 100%;
}

.decorated>span:after {
    left: 100%;
}

.card-body {
    padding: 10px !important;
}

.cust-col {
    padding: 0;
}

.card.align-self-stretch {
    height: calc(100% - 1.5rem);
}

/* STR :: TYPOGRAPHY */
.text-group-lowercase>*,
.text-lowercase {
    text-transform: lowercase !important;
}

.text-group-uppercase>*,
.text-uppercase {
    text-transform: uppercase !important;
}

.text-group-capitalize>*,
.text-capitalize {
    text-transform: capitalize !important;
}

/* END :: TYPOGRAPHY */
/* Dashboard CSS Start */
.h-45 {
    height: 45vh !important;
}

.o-auto {
    overflow: auto;
}

.dashboard-card-title table thead th {
    font-weight: 600;
    font-size: .875rem;
}

.dashboard-card-title table tbody td {
    font-weight: 400;
    font-size: .75rem;
}

.visitor {
    background-color: rgba(234, 85, 111, .09);
    padding-left: 5px;
    padding-right: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Dashboard CSS End */
.dt-button[aria-controls="file_export"],
.dt-button[aria-controls="file_export2"],
.dt-button[aria-controls="file_export3"] {
    cursor: pointer;
    padding: 6px 12px !important;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    margin-bottom: 0 !important;
    margin-right: 6px !important;

    font-size: 14px !important;
    font-weight: var(--bs-body-font-weight) !important;
    line-height: 18px !important;
}

@media (min-width: 601px) {

    .dt-buttons,
    .dataTables_length,
    .dataTables_filter,
    .dataTables_info,
    .dataTables_paginate {
        width: 50%;
        display: inline-block;
    }

    .dt-buttons,
    .dataTables_length,
    .dataTables_filter {
        padding-bottom: 10px;
        padding-top: 0;
    }

    .dataTables_info,
    .dataTables_paginate {
        padding-top: 12.24px;
    }

    .table-responsive .dataTables_wrapper .dataTables_filter input {
        padding: 6px 12px !important;
        font-size: 14px !important;
        font-weight: var(--bs-body-font-weight) !important;
        line-height: 18px !important;
        border-radius: 5px;
        border: 1px solid var(--bs-border-color);
    }

    .dataTables_filter input:focus-visible {
        outline: none !important;
        box-shadow: inset 0 0 9px -6px #000;
    }
}

.btn .hover-show {
    font-size: 0px !important;
    /* opacity: 0 !important; */
    animation: .33s all ease-in-out;
    transition: .33s all ease-in-out;
}

.btn:hover .hover-show {
    font-size: inherit !important;
    /* opacity: 0 !important; */
}

#import_frm.dropzone .fallback input#import_file {
    width: 100%;
    margin: 0;
}

#import_frm.dropzone .fallback {
    text-align-last: center;
    width: 100%;
}


/* Table Action Menu CSS Start */
ul.rounded li {
    border-radius: 6px;
}

ul.circle li,
.circle {
    border-radius: 100%;
}

ul.action-menu {
    width: fit-content;

    >li {
        display: inline-block;
        border: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        padding-left: 3.5px;
        padding-right: 3.5px;

        >a {
            /* font-size: 0px !important; */
        }
    }
}

.primary a i {
    color: #01a9ac !important
}

.action-menu li.primary:hover {
    background-color: #01a9ac1a;
    border: 1px solid #01a9ac1a;
}

.warning a i {
    color: #fe9365 !important
}

.action-menu li.warning:hover {
    background-color: #fe93651a;
    border: 1px solid #fe93651a;
}

.default a i {
    color: #e0e0e0 !important
}

.action-menu li.default:hover {
    background-color: #e0e0e01a;
    border: 1px solid #e0e0e01a;
}

.danger a i {
    color: #fe5d70 !important
}

.action-menu li.danger:hover {
    background-color: #fe5d701a;
    border: 1px solid #fe5d701a;
}

.success a i {
    color: #0ac282 !important
}

.action-menu li.success:hover {
    background-color: #0ac2821a;
    border: 1px solid #0ac2821a;
}

.inverse a i {
    color: #404E67 !important
}

.action-menu li.inverse:hover {
    background-color: #404E671a;
    border: 1px solid #404E671a;
}

.info a i {
    color: #2DCEE3 !important
}

.action-menu li.info:hover {
    background-color: #2DCEE31a;
    border: 1px solid #2DCEE31a;
}

.custom a i {
    color: #64b0f2 !important
}

.action-menu li.custom:hover {
    background-color: #64b0f21a;
    border: 1px solid #64b0f21a;
}

.pink a i {
    color: #ff7aa3 !important
}

.action-menu li.pink:hover {
    background-color: #ff7aa31a;
    border: 1px solid #ff7aa31a;
}

.muted a i {
    color: #919aa3 !important
}

.action-menu li.muted:hover {
    background-color: #919aa31a;
    border: 1px solid #919aa31a;
}

.dark a i {
    color: #2b3d51 !important
}

.action-menu li.dark:hover {
    background-color: #2b3d511a;
    border: 1px solid #2b3d511a;
}

.purple a i {
    color: #9261c6 !important
}

.action-menu li.purple:hover {
    background-color: #9261c61a;
    border: 1px solid #9261c61a;
}

.muted a i {
    color: #919aa3 !important
}

.action-menu li.muted:hover {
    background-color: #919aa31a;
    border: 1px solid #919aa31a;
}

/* Table Action Menu CSS End */

li.select2-selection__choice,
.select2-selection__choice__display {
    padding: 0 3px !important;
}

.select2-selection__choice__remove {
    display: none !important;
}

.select2-selection__choice__remove:hover {
    background: rgba(255, 0, 0, 0.03) !important;
    box-shadow: 0 8px 32px 0 rgba(255, 124, 124, 0.37) !important;
    backdrop-filter: blur(1px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border-radius: 10px !important;
    /* border: 1px solid rgba(255, 0, 0, 0.18) !important; */
    width: 100% !important;
    color: #FFCDD2 !important;
    border-radius: 0px !important;
    text-shadow: 0 0 10px #050505 !important;
    transition: all .6s ease-in-out;
}

.select2-selection__choice__remove span {
    display: inherit;
    text-align-last: center;
    height: 100%;
    margin-top: -8px;
}

.select2-selection__choice__remove {
    /* left: -10px !important; */
    left: -100% !important;
    color: #B71C1C !important;
    display: block !important;
    background: #fff !important;
    font-size: 24px !important;
    border-radius: 0 50px 50px 0 !important;
    height: 100%;
    aspect-ratio: 1;
    text-align: center;
    border: 2px solid #FFCDD2;
    -webkit-box-shadow: 0px 1px 3px 0px rgb(255 255 255/ 30%), 0px -1px 3px 0px rgb(255 255 255/ 15%);
    box-shadow: 0px 1px 3px 0px rgb(255 255 255/ 30%), 0px -1px 3px 0px rgb(255 255 255/ 15%);
    transition: all .3s ease-in-out;
    /* -webkit-box-shadow: 0 1px 2px 0 rgba(255,255,255, .3), 0 1px 3px 1px rgba(255,255,255, .15);
    box-shadow: 0 1px 2px 0 rgba(255,255,255, .3), 0 1px 3px 1px rgba(255,255,255, .15); */
}

*:hover>.select2-selection__choice__remove {
    left: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 5px 0px 5px 5px !important;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ccc;
    padding: 0px;
}

/* Badge/Label CSS Start */
.visitor,
.inward-audit,
.outward-audit,
.approved,
.pending,
.amend,
.rejected,
.closed,
.inProgress,
.delivered,
.pwd,
.high,
.medium,
.low,
span .active,
.deactive {
    background-color: rgba(234, 85, 111, .09);
    padding-left: 5px;
    padding-right: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.inward-audit {
    background-color: rgba(0, 141, 60, .09);
}

.outward-audit {
    background-color: rgba(196, 51, 77, .09);
}

.pending {
    background-color: rgba(254, 147, 101, .2);
}

.inProgress,
.low {
    background-color: rgba(254, 147, 101, .3);
}

.approved, span .active {
    background-color: rgba(45, 206, 227, .2);
}

.amend {
    background-color: rgba(255, 0, 0, .2);
}

.closed {
    background-color: rgba(0, 128, 0, .2);
}

.delivered,
.pwd {
    background-color: rgba(0, 9, 141, .2);
}

.high,
.rejected {
    background-color: rgba(255, 0, 0, .4);
}

.medium {
    background-color: rgba(254, 147, 101, .4);
}

.low {
    background-color: rgba(1, 169, 172, .4);
}

.badge-permission {
    background-color: rgba(61, 133, 198, .4);
    padding-left: 5px;
    padding-right: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: rgba(61, 133, 198, .9);
}

table.table-bordered.dataTable::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

table.table-bordered.dataTable:hover::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

table.table-bordered.dataTable::-webkit-scrollbar-track,
table.table-bordered.dataTable::-webkit-scrollbar-thumb {
    border-radius: 50px;
}

/* Track */
table.table-bordered.dataTable::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
table.table-bordered.dataTable::-webkit-scrollbar-thumb {
    background: #d9d9d9;
}

/* Handle on hover */
table.table-bordered.dataTable::-webkit-scrollbar-thumb:hover {
    background: #9d9d9d;
}
tbody tr td{font-weight: 100;}
*:has(input[required])>label::after,*:has(select[required])>label::after,*:has(textarea[required])>label::after{
    content: "*";
    color: red;
    margin-left: 3px;
}
.sidebar-nav ul .sidebar-item .sidebar-link{
    white-space: normal!important;
}
/* Divider CSS Start */
.decorated {
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.decorated>span {
    position: relative;
    display: inline-block;
    color: gray;
}

.decorated>span:before,
.decorated>span:after {
    content: '';
    position: absolute;
    top: 50%;
    border: none;
    border-bottom: 1px dashed lightgray;
    height: 1px;
    width: 100vw;
    margin: 0 20px;
}

.decorated>span:before {
    right: 100%;
}

.decorated>span:after {
    left: 100%;
}

/* Divider CSS End */