/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
/* Roboto Normal */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/Roboto-Regular.woff2') format('woff2');
}

/* Roboto Medium */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./fonts/Roboto-Medium.woff2') format('woff2');
}

/* Roboto Bold */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/Roboto-Bold.woff2') format('woff2');
}

/* Roboto Italic */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/Roboto-Italic.woff2') format('woff2');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', '-apple-system', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--body-bg-color);
    height: 100vh;
    scroll-behavior: smooth;
}


body::-webkit-scrollbar {
    display: none;
}

:root {
    --body-bg-color: #F5F5F5;
    --nav-color: #02020FB2;
    --black-color: #02020F;
    --border: #02020F1F;
    --box-bg: #F2F3F780;
    --primary-blue: #00AFEF;
    --label-primary-blue-border: #00AFEF1F;
    --label-primary-blue-bg: #00AFEF14;
    --active-sidbar-border: #00AFEFCC;
    --active-sidbar-bg: #00AFEF1F;
    --main-box-bg-color: #02020F1F;
    --main-box-border-color: #02020F1F;
    --inside-box-bg-color: #02020F0A;
    --white: #FFFFFF;
    --black: #02020F;
    --light-color-label: #02020F66;
    --orange-box-bg: #FF9E571F;
    --orange-box-border: #FF9E57CC;
    --high-bg: #FF4D4D4D;
    --heigh-border: #FF4D4D1F;
    --medium-bg: #FF9E5766;
    --medium-border: #FF9E5780;
    --success-bg: #28A7451A;
    --success-border: #28A74580;
}

.label-primary-blue {
    border: 1px solid var(--label-primary-blue-border);
    background-color: var(--label-primary-blue-bg);
}

.sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    justify-content: space-between;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    width: 200px;
    transition: all 0.5s ease-in-out;
}

/* Let the top menu absorb the free vertical space so the bottom blocks
   (user section + portal switcher) stack together instead of being spread
   apart by the sidebar's space-between distribution. */
.sidebar .menu-top {
    flex-grow: 1;
}

.sidebar p {
    font-size: 13px;
    color: var(--light-color-label);
    margin: 0px 0px !important;
    margin-top: 6px !important;
    opacity: 1;
    display: block;
    transition: all 0.5s ease-in-out;
    width: 200px;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.4s ease-in-out;
}

.sidebar ul li {
    list-style: none;
}

.sidebar ul {
    padding-left: 0px !important;
}

#toggleSidebar {
    display: flex;
    justify-content: end;
    position: absolute;
    /* width: 100%; */
    top: 16px;
    right: -11px;
    cursor: pointer;
}

.sidebar ul li a {
    text-decoration: none;
    color: var(--nav-color);
    font-size: 13.5px;
    padding: 5px 0px;
    font-weight: 500;
    transition: width 0.4s ease-in-out;
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
}

.sidebar.sidebar-expanded ul li a {
    width: 35px;
}

.table-scroll,
.table-scroll-modal {
    height: 26vh;
    overflow-y: scroll;
    transition: height 0.3s ease;
}

.table-scroll.reduced-height,
.table-scroll-modal.reduced-height {
    height: 20vh;
}



.server-log .media-body h6 a span {
    opacity: 1 !important;
}

.user-guide-height {
    height: calc(100vh - 202px) !important;
}

.nav-item a span {
    display: block;
    opacity: 1;
    margin-left: 10px;
    transition: all 0.5s ease-in-out;
}

.logo-complython {
    width: 35px;
}


.sidebar.sidebar-expanded {
    width: 35px;
}

.sidebar.sidebar-expanded .hide-p-expaned {
    opacity: 0 !important;
    display: none !important;
}

.sidebar.sidebar-expanded .nav-item a span {
    display: none;
    opacity: 0;
}

.word-b-space {
    font-size: 12px;
    word-break: break-word;
    white-space: normal;
    width: 152px;
}


.sidebar .active {
    color: var(--black) !important;
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    border-radius: 9px;
}

.main-white-box::-webkit-scrollbar,
.col-6-scroll::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar,
.table-scroll-modal::-webkit-scrollbar,
.flex-table tbody::-webkit-scrollbar,
.scrollbar-none::-webkit-scrollbar {
    display: none;
}

.main-white-box-1::-webkit-scrollbar {
    display: none;
}

.main-white-box {
    background-color: var(--white);
    border: 2px solid var(--border);
    height: 98vh;
    width: 100%;
    border-radius: 18px;
    overflow-y: auto;
}

.main-white-box-in {
    background-color: var(--white);
    border: 2px solid var(--border);
    width: 100%;
    border-radius: 18px;

}

.new-whats-new-height {
    height: calc(100vh - 105px);
}

.new-whats-new-height .whats-new-height {
    height: calc(100vh - 426px);
}

.main-white-box-1 {
    background-color: var(--white);
    border: 2px solid var(--border);
    /* height: 35.3vh; */
    width: 100%;
    border-radius: 18px;
    overflow-y: auto;
}

.card-whats-new {
    box-shadow: 0 1px 3px 0 #14181f0a, 0 1px 2px -1px #14181f0a;
    border: 2px solid #02020d1f !important;
    background-color: var(--white);
    padding: 12px;
    border-radius: 9px;
    transition: transform 0.4s, background-color 0.4s, box-shadow 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-whats-new .card-footer {
    background-color: transparent;
    border-top: 2px solid #02020d0e;
}

.card-whats-new:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 15px -3px #14181f0f, 0 4px 6px -4px #14181f0f;
    background-color: rgba(177, 177, 177, 0.041);
}

.line-hover-left {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0;
    width: 4px;
    background-color: var(--active-sidbar-border);
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}

.card-whats-new:hover .line-hover-left {
    transform: scaleY(1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 5px;
    height: 5px;
    background-color: #00AFEF;
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

/* Delay for each dot */
.status-dot:nth-child(1) {
    animation-delay: 0s;
}

.status-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.status-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0% {
        opacity: 0.3;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-1px);
    }

    40% {
        opacity: 0.3;
        transform: translateY(0);
    }

    100% {
        opacity: 0.3;
        transform: translateY(0);
    }
}


.badge-Update {
    background: linear-gradient(to right, #fbbf24, #f97316) !important;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.25) !important;
}

.badge-whats-new {
    background: linear-gradient(to right, #34d399, #22c55e);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.badge-bug-fix {
    background: linear-gradient(to right, #f87171, #ef4444) !important;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.25) !important;
}

.badge-Security {
    background: linear-gradient(to right, #60a5fa, #3b82f6) !important;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.25) !important;
}

.badge-whats {
    border-radius: 7px;
    padding: 3px 8px;
    /* font-size: 12px; */
    font-weight: 500;
    color: var(--white) !important;
}

.heading-main {
    color: var(--black);
    font-size: 18px;
}

.heading-main-label-font {
    font-size: 13.5px;
    color: #02020FB2;
    font-weight: 500;
}

.label-font {
    font-size: 12px;
    color: var(--light-color-label);
    font-weight: 500;
}

.label-font-hover {
    font-size: 12.5px;
    color: var(--light-color-label);
    font-weight: 500;
    transition: color 0.5s;
}

.label-font-hover:hover {
    color: var(--primary-blue);
}

.navbar-pills-1 .nav-item button {
    color: var(--nav-color);
    font-size: 12px;
    font-weight: 500;
}

.nav-link {
    padding: 4px 8px;
}

.navbar-pills-1 .nav-item .active {
    color: var(--white);
    background-color: var(--primary-blue);
    border-radius: 9px;

}

.nav-pills {
    background-color: var(--box-bg);
    border: 1px solid var(--border);
    padding: 5px 5px;
    border-radius: 13px;
}

.orange-box {
    background-color: var(--orange-box-bg);
    border: 1px solid var(--orange-box-border);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
}

.medium-box-label {
    background-color: var(--medium-bg);
    border: 1px solid var(--orange-box-border);
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.orange-box-label span {
    background-color: var(--orange-box-bg);
    border: 1px solid var(--orange-box-border);
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.high-box-label span {
    background-color: var(--heigh-border);
    border: 1px solid var(--high-bg);
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.protect-box-label1 span {
    background-color: #00b38830;
    border: 1px solid #00B388B2;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.success-box-label span {
    background-color: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.low-box-label span {
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.light-box-label {
    background-color: var(--inside-box-bg-color);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
}

.whats-new-height {
    height: calc(100vh - 341px);
}

.inside-main-box {
    background-color: var(--inside-box-bg-color);
    padding: 10px;
    border-radius: 13px;
}

.inside-main-box-chart {
    background-color: var(--inside-box-bg-color);
    padding: 13px !important;
    border-radius: 18px;
}

.white-box-chart {
    background-color: var(--white);
    padding: 5px;
    border-radius: 18px;
    border: 1px solid var(--border);
    height: 100%;
}

.white-box-chart-data {
    background-color: var(--white);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--border);
    height: 100%;
}

.inside-all-text {
    font-size: 13px;
    font-weight: 500;
}

.label-font-dark {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 12px;
}

.label-font-dark-new {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 11px;
}

.contant-box {
    background-color: var(--box-bg);
    border: 1px solid var(--border);
    padding: 5px 5px;
    border-radius: 13px;
}

.heading-text-inside-box {
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
}

.heading-text-inside-box-sidebar {
    color: var(--black);
    font-size: 12px;
}

.pointer {
    cursor: pointer;
}

.tooltip-inner {
    background-color: var(--black) !important;
    border: 1px solid #333333b7;
    font-size: 12px;
    max-width: 500px !important;
    white-space: normal;
    text-align: left;
    color: var(--white);
}

.line-height {
    /* line-height: 15px; */
}

.heading-text-inside-box-new span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blue-box {
    color: var(--black) !important;
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    border-radius: 9px;
    font-size: 11px;
}

.blue-font {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 13px;
}

.date-and-time-font {
    font-size: 10px;
    color: var(--black);
}

.name-short-box {
    background-color: var(--inside-box-bg-color);
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 11px;
    /* width: 39px; */
    padding: 2px 4px;
    font-weight: 600;
}

.heading-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.heading-value-chart {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.heading-value-text {
    font-size: 12.5px;
    line-height: 22px;
    color: var(--nav-color);
    font-weight: 500;
    background-color: var(--white);
    border: 2px solid var(--border);
    width: 100%;
    margin: 0px 4px;
    border-radius: 10px;
    padding: 2px 10px;
}

.col-6-scroll {
    overflow-y: auto;
    height: 73.5vh;
}

.node {
    position: relative;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
}

.node rect {
    stroke: #fff;
    cursor: pointer;
}

.node text {
    pointer-events: none;
    font-weight: 500;
    font-size: 10px;
}

/* .table-scroll , .table-scroll-modal
  {
    height: 28vh;
    overflow-y: scroll;
  } */
.table>:not(caption)>*>* {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 12.5px !important;
    background-color: #ffffff00;
}

.table-scroll .table tr td,
.table-scroll-modal .table tr td {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 12.5px !important;
}

.table-scroll thead,
.table-scroll-modal thead {
    /* background-color: var(--box-bg); */
    /* border: 2px solid var(--border); */
    border-radius: 6px !important;
    position: relative;

}

/* .table-scroll thead::before {
    content: '';
    position: absolute;
    top: 3px !important;
    inset: 0;
    border-radius: 8px;
    padding: 1.7px;
    background: linear-gradient(170deg, #02020f1f, #02020f1f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    z-index: 0;
} */
.table-scroll thead th:first-child,
.table-scroll-modal thead th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table-scroll th:last-child,
.table-scroll-modal th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table-scroll .table,
.table-scroll-modal .table {

    margin: 0px auto;
    border-collapse: collapse;
    border-spacing: 0 5px;
    border-radius: 10px;
}

.btn-view-box {
    border: none;
    background-color: transparent;
    background-color: var(--active-sidbar-bg);
    padding: 5px 10px;
    color: var(--primary-blue);
    /* font-weight: 600; */
    border-radius: 8px;
    font-size: 12px !important;
    cursor: pointer;
    transition: all 0.4s;
}

.btn-view-box:hover {
    background-color: rgba(0, 173, 236, 0.199);
    color: var(--primary-blue);

}

.view-box span:hover {
    background-color: rgba(0, 173, 236, 0.199);
    color: var(--primary-blue);

}

.view-box span {
    background-color: var(--active-sidbar-bg);
    padding: 5px 10px;
    color: var(--primary-blue);
    /* font-weight: 600; */
    border-radius: 8px;
    font-size: 12px !important;
    cursor: pointer;
    transition: all 0.4s;
}

.btn-cancel-box {
    background-color: transparent;
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 5px 10px;
    color: var(--black);
    /* font-weight: 600; */
    border-radius: 8px;
    font-size: 12px !important;
    cursor: pointer;
    transition: all 0.4s;
}

.btn-cancel-box:hover {
    background-color: #02020f08;
}

.cancel-box span:hover {
    background-color: #02020f08;
}

.cancel-box span {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 5px 10px;
    color: var(--black);
    /* font-weight: 600; */
    border-radius: 8px;
    font-size: 12px !important;
    cursor: pointer;
    transition: all 0.4s;
}

.view-box-fill span {
    background-color: var(--primary-blue);
    /* font-weight: 600; */
    padding: 5px 10px;
    border-radius: 8px;
    color: var(--white);
    font-size: 12px !important;
    cursor: pointer;
}

.view-box-fill-button {
    background-color: var(--primary-blue);
    /* font-weight: 600; */
    padding: 5px 10px;
    border-radius: 8px;
    color: var(--white);
    font-size: 12px !important;
    cursor: pointer;
    text-align: center;
}

.unlink-box span {
    background-color: #FF4D4D99;
    /* font-weight: 600; */
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #FF4D4D;
    color: var(--white);
    font-size: 12px !important;
    cursor: pointer;
}

.table-hover>tbody>tr:hover>* {
    --bs-table-color-state: var(--active-sidbar-bg) !important;
    --bs-table-bg-state: var(--active-sidbar-bg) !important;
}

/* 
.flex-table {
	display: flex;
	flex-flow: column nowrap;
	overflow-y: hidden;

	tbody {
		overflow-y: scroll;
	}

	tr {
		display: flex;
		flex-flow: row nowrap;
	}

	th, td {
        width: 25%;

		&.sm{
			flex-grow: 1;
		}

		&.lg {
			flex-grow: 5;
		}
	}

	th:last-child {
		padding-right: 1.5rem;
	}
} */




.heatmap-label-left {
    font-size: 8px;
    dominant-baseline: middle;
    text-anchor: end;
    fill: #000;
}

.heatmap-label-bottom {
    font-size: 8px;
    text-anchor: middle;
    fill: #000;
}

.cell {
    rx: 10;
    ry: 10;
}


.input-form-style .form-control {
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    /* padding-left: 25px !important; */
    background-color: transparent !important;
}

.input-form-style-new .form-select {
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    padding-left: 25px;
}

.search-icone {
    position: absolute;
    top: 10px;
    left: 7px;
}

.search-icone-1 {
    position: absolute;
    top: 10px;
    left: 7px;
}

.form-control::placeholder {
    color: var(--light-color-label);
    font-size: 13px;
    font-weight: 400 !important;
}


.switch-btn-box {
    background-color: var(--active-sidbar-bg);
    width: 30px;
    height: 32px;
    border-radius: 7px;
}

.switch-btn {
    width: 18px;
    height: 15px;
    background-color: #00aef0;
    /* Sky Blue */
    border-radius: 10%;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 9px !important;
}

.line {
    content: '';
    position: absolute;
    top: 46%;
    left: 0px;
    width: 8px;
    height: 2px;
    background-color: white;
    rotate: 90deg;
    transition: all 0.3s ease;
}

.switch-btn-box.active .line {
    left: 10px;
}

#myBarChart {
    height: 225px !important;
}

.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    /* or a fixed width like 100px */
    display: inline-block;
}

.table-w-6 {
    width: 6%;
}

.table-w-38 {
    width: 26%;
}

.table-w-22 {
    width: 22%;
}

.table-w-100 {
    max-width: 50px;
}

.table-w-12 {
    width: 12%;
}

.table-w-15 {
    width: 15%;
}

.table-w-9 {
    width: 7%;
}

.table-w-500 {
    max-width: 230px;
}

label {
    font-size: 12px !important;
    color: var(--black-color);
    font-weight: 500;
}

.upload-box {
    border: 2px dashed var(--border);
    /* border-radius: 10px; */
    background-color: var(--inside-box-bg-color);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.input-form-style .form-select {
    color: var(--nav-color);
    font-size: 12px;
    border-radius: 9px;
    padding: 7px 10px;
    border: 1px solid var(--border) !important;
}

.ts-control {
    color: var(--nav-color) !important;
    font-size: 12px !important;
    border-radius: 9px !important;
    padding: 7px 30px 7px 10px !important;
}

.ts-wrapper.multi .ts-control>div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 0px 4px !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    background: var(--inside-box-bg-color) !important;
    color: var(--black) !important;
    border: 1px solid var(--border) !important;
}

.ts-control input::placeholder {
    color: var(--light-color-label) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.ts-dropdown-content::-webkit-scrollbar {
    display: none !important;
}

.ts-dropdown .option {
    font-size: 12px !important;
    font-weight: 400 !important;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input {
    flex: none;
    min-width: 150px !important;
}

.ts-control>input {
    min-width: 0rem !important;
}

.ts-control .item {
    font-weight: normal;
}

.ts-wrapper.multi .ts-control>div.active {
    background: var(--active-sidbar-bg) !important;
    color: var(--primary-blue) !important;
}

.offcanvas {
    transition: transform 0.4s ease-in-out !important;
    width: 650px !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 0px !important;
    background-color: #ffffff10 !important;
    margin: 5px 5px;
    border-radius: 18px;
    padding: 11px;
}

.offcanvas-white-bg {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    height: 100%;
}

.offcanvas-body {
    height: calc(100vh - 90px);
}


.offcanvas-body::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 20px !important;
    background-color: none !important;
}

.offcanvas-body::-webkit-scrollbar {
    width: 4px;
    background-color: none !important;
    border-radius: 20px !important;
    display: block !important;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); */
    background-color: #f2f3f7 !important;
    border: 1px solid #02020f13;
}

.offcanvas-header h5 {
    font-size: 14px !important;
    color: var(--black);

}

.low-alert {
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    font-size: 12px;
}


.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    bottom: 0;
    width: 1.3px;
    background-color: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 20px;
}

.timeline-icon-box {
    position: absolute;
    left: -19px;
    top: 5px;
    width: 25px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #02020F99;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.input-form-style label {
    font-size: 12px !important;
    color: var(--black-color);
    font-weight: 500;
}

.accordion {
    --bs-accordion-btn-icon-width: 13px !important;
}

.accordion-button {
    border: 0px solid var(--border) !important;
    border-radius: 10px !important;
}

.accordion-item {
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: var(--black);
}

.filter-label {
    font-size: 13px;
    color: var(--nav-color);
    margin: 4px 0px !important;
    margin-top: 6px !important;
}

.form-check {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 3px 10px 3px 33px;
    cursor: pointer;
    /* display: inline-block; */
}

.filter-section .form-check label {
    color: var(--light-color-label) !important;
    font-size: 12px !important;
    cursor: pointer;
    width: 100%;
}

.filter-section .form-check:has(input:checked) label {
    color: var(--black) !important;
}


.filter-section .form-check:has(input:checked) {
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    color: var(--primary-blue);
}

.filter-section .form-check-input:checked {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.blur-form-check .form-check-input:checked {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.new-badge-bg {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 10px !important;
}

.filter-section .filter-btn {
    background-color: transparent;
    border: 1px solid var(--border);
    padding: 6px 7px;
    border-radius: 10px;
    color: var(--light-color-label);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 150px;
    justify-content: space-between;
    position: relative;
}

.filter-section .filter-btn.active {
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    color: var(--black);
}

.filter-section .dropdown-icon {
    transition: transform 0.3s ease;
}

.filter-section .dropdown-icon.rotate {
    transform: rotate(180deg);
}

.filter-section .dropdown-content {
    margin-top: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 12px;
    position: absolute;
    z-index: 22;
    right: 10px;
    /* display: none; */
    box-shadow: 0px 3px 10px rgba(165, 165, 165, 0.178);
    width: 320px;
    max-height: 75vh;
    overflow-y: auto;
}

.filter-section .dropdown-content::-webkit-scrollbar {
    display: none;
}

.filter-section .dropdown-content.show {
    display: block;
}


.filter-section .dropdown-content input[type="checkbox"] {
    margin-right: 8px;
    margin-bottom: 4px;
    accent-color: #00aeef;
}


.word-break {
    word-break: break-all;
}

.Compliance-count {
    color: var(--black);
    font-weight: 500;
}

.Related-Task {

    color: var(--primary-blue);
    font-size: 12px !important;
    cursor: pointer;
    font-weight: 600;
}

.bg-download-btn {
    background-color: var(--primary-blue);
    padding: 3px 6px;
    border-radius: 8px;
    cursor: pointer;
    width: 25px;
}

.breadcrumb {
    font-size: 13.5px !important;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item a {
    color: var(--black) !important;
    text-decoration: none !important;
}

.breadcrumb .active {
    color: var(--primary-blue) !important;
    font-size: 13.5px !important;
    font-weight: 500;
}

.label-font-new {
    font-size: 11.5px;
    color: var(--light-color-label);
    font-weight: 500;
}

.navbar-pills-inside .nav-pills {
    background-color: transparent;
    padding: 3px 3px;
    border-radius: 9px;
}

.navbar-pills-inside .nav-link {
    padding: 3px 10px;
}

.filter-section {
    position: relative;
}

.white-box-chart-new .accordion-button::after {
    display: none;
}

.white-box-chart-new .accordion-button {
    background-color: var(--inside-box-bg-color);
    border: 1px solid var(--border) !important;
}


.white-box-chart-new .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border) !important;
    border-radius: 10px;
}

.white-box-chart-new .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-button {
    background-color: transparent;
    border: none !important;
}

.white-box-chart-new {
    overflow-y: scroll;
}

.white-box-chart-new::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
}

.white-box-chart-new-1 .accordion-button::after {
    display: none;
}

.white-box-chart-new-1 .accordion-button {
    background-color: var(--inside-box-bg-color);
    /* border: 1px solid var(--border) !important; */
}

.white-box-chart-new-1 .accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: 10px;
}

.white-box-chart-new-1 .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: var(--inside-box-bg-color);
    border: 1px solid var(--border) !important;
    border-radius: 10px;
}

.white-box-chart-new-1 .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-button {
    background-color: transparent;

}

.white-box-chart-new-1 {
    overflow-y: scroll;
}

.white-box-chart-new-1::-webkit-scrollbar {
    display: none;
}

.tabel-w-100 {
    width: 80%;
}

.border-left-tabel {
    position: relative;
    padding-left: 12px;
}

.border-left-tabel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    border-radius: 2px;
    background-color: var(--border);
}

.table-blue-font {
    color: var(--primary-blue);
    font-size: 13px;
}

.Add-Controls {
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 9px;
    height: 100%;
    padding: 3px 5px;
    font-size: 11px;
}

.border-tabel-top {
    border-top: 1px solid var(--border);
}

.protect-box-label {
    background-color: #ddf5f0;
    /* border: 1px solid #00B388B2; */
    font-size: 11px;
    border-radius: 6px;
    padding: 4px 5px;
    color: #00ab55;
}

.detect-box-label {
    background-color: #f2eafa;
    /* border: 1px solid #f2eafa; */
    font-size: 11px;
    border-radius: 6px;
    padding: 4px 5px;
    color: #805dca;
}

.identify-box-label {
    background-color: #e6f4ff;
    /* border: 1px solid #e6f4ff; */
    font-size: 11px;
    border-radius: 6px;
    padding: 4px 5px;
    color: #2196f3;
}

.recover-box-label {
    background-color: #FDEBD0;
    /* border: 1px solid #eec589; */
    font-size: 11px;
    border-radius: 6px;
    padding: 4px 5px;
    color: #B45309;
}

.respond-box-label {
    background-color: #F7E6F5;
    /* border: 1px solid #f1a0e8; */
    font-size: 11px;
    border-radius: 6px;
    padding: 4px 5px;
    color: #A21CAF;
}

.identity-box-label {
    background-color: #e6f4ff;
    /* border: 1px solid #f1a0e8; */
    font-size: 11px;
    border-radius: 6px;
    padding: 4px 5px;
    color: #2196f3;
}

.comment-input .input-form-style .view-box {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);

    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}

.Questionnaire-font p {
    color: var(--black);
    font-size: 12px;

    background-color: #ffffff00;
}

.Questionnaire-font .Questionnaire-date {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 12px !important;
}

.badge {
    font-size: 12px;
    font-weight: 500;
}

.bg-success {
    color: #00ab55 !important;
    background-color: #ddf5f0 !important;
    border: 1px solid #ddf5f0 !important;
    font-size: 12px;
    font-weight: 500;
}

.bg-secondary {
    color: #3b3f5c;
    background-color: #eaeaec !important;
    border: 1px solid #eaeaec;
}

.bg-warning {
    color: #e2a03f;
    background-color: #fcf5e9 !important;
    border: 1px solid #fcf5e9;
}

.badge-light-info {
    color: #2196f3;
    background-color: #e6f4ff;
    border: 1px solid #e6f4ff;
    font-size: 10px;
}

.badge-light-secondary {
    color: #805dca;
    background-color: #f2eafa;
    border: 1px solid #f2eafa;
    font-size: 10px;
}

.badge-success {
    color: var(--white);
    background-color: #00ab55;
    padding: 5px 5px;
}

.badge-primary {
    color: var(--white);
    padding: 5px 5px;
    background-color: #4361ee;
}

.badge-secondary {
    color: var(--white);
    padding: 5px 5px;
    background-color: #2e538e !important;
}

.badge-info {
    color: var(--white);
    padding: 5px 5px;
    background-color: #2196f3;
}

.Questionnaire-card .Questionnaire-card-font {
    font-size: 12px;
    color: var(--black);
}

.Questionnaire-card-font .form-select {
    background-image: none;
    font-size: 12px;
    padding: 5px 5px;
}

.Questionnaire-card .card {
    border: 1px solid var(--border);
    border-radius: 13px;
}

.Questionnaire-card .card .card-header {
    background-color: var(--box-bg);
}

.Questionnaire-card-body {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 12px !important;
}

.Questionnaire-bottom-border {
    border-bottom: 1px solid var(--border);
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-switch .form-check-input {
    width: 36px;
    height: 18px;
    margin-right: 5px;
    cursor: pointer;
}

.list-headding p {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}

.red-box span {
    background-color: #ff000026;
    color: red;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px !important;
    cursor: pointer;
}

.list-headding-contant {
    color: var(--nav-color);
    font-weight: 500;
    font-size: 12px !important;
}

.badge-light-bluelight {
    color: var(--primary-blue);
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-bg);
    font-size: 10px;
}

.badge-light-primary {
    color: #4361ee;
    background-color: #eceffe;
    border: 1px solid #eceffe;
    font-size: 10px;
}

.badge-light-success {
    color: #00ab55;
    background-color: #ddf5f0;
    border: 1px solid #ddf5f0;
    font-size: 10px;
}

.outline-badge-danger {
    color: #e7515a;
    background-color: transparent;
    border: 1px solid #e7515a;
    font-size: 10px;
}

.outline-badge-dark {
    color: #3b3f5c;
    background-color: transparent;
    border: 1px solid #3b3f5c;
    font-size: 10px;
}

.outline-badge-success {
    color: #00ab55;
    background-color: transparent;
    border: 1px solid #00ab55;
    font-size: 10px;
}

.outline-badge-warning {
    color: #e2a03f;
    background-color: transparent;
    border: 1px solid #e2a03f;
    font-size: 10px;
}

.badge-light-danger {
    color: #e7515a;
    background-color: #fbeced;
    border: 1px solid #fbeced;
    font-size: 10px;
}

.badge-light-warning {
    color: #e2a03f;
    background-color: #fcf5e9;
    border: 1px solid #fcf5e9;
    font-size: 10px;
}

.badge-light-dark {
    color: #3b3f5c;
    background-color: #eaeaec;
    border: 1px solid #eaeaec;
    font-size: 10px;
}

.outline-badge-primary {
    color: #4361ee;
    background-color: transparent;
    border: 1px solid #4361ee;
    padding: 5px 10px;
    font-size: 11px;
}

.outline-badge-dark {
    color: #3b3f5c;
    background-color: transparent;
    border: 1px solid #3b3f5c;
    padding: 3px 5px;
    font-size: 11px;
}

.bg-light-success {
    background-color: #ddf5f0 !important;
    border: 1px solid #ddf5f0;
    color: #00ab55;
    font-size: 10px;
}

.ts-dropdown {
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #dee2e6 !important;
}

.ts-control {
    border: 1px solid #d0d0d080 !important;
}

.ts-dropdown .active {
    background-color: #b9b9b954 !important;
    color: #000000 !important;
}

.tom-select .ts-control {
    position: relative;
}

.tom-select .ts-control::after {
    content: '';
    position: absolute;
    top: 54%;
    right: 3px;
    width: 1.5em;
    /* increased from 1em */
    height: 1.5em;
    /* increased from 1em */
    pointer-events: none;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf8,<svg fill="currentColor" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><path d="M5.23 7.21a.75.75 0 011.06.02L10 11.06l3.71-3.83a.75.75 0 111.08 1.04l-4.25 4.39a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z"/></svg>');
    background-repeat: no-repeat;
    background-size: 1.5em;
    /* match size with width/height */
    /* background-color: var(--white); */
}

.ts-dropdown {
    max-height: 150px !important;
    overflow-y: auto;
}

.ts-dropdown::-webkit-scrollbar {
    display: none;
}

.border-none-tom .ts-control {
    border: none !important;
}

.Category-box {
    /* box-shadow: rgba(196, 196, 196, 0.699) 0px 0px 0.25em, rgba(90, 124, 188, 0) 0px 0.25em 1em; */
    background-color: var(--box-bg);
    border: 2px solid var(--border);
    padding: 20px 0px 10px 0px;
    border-radius: 13px;
}

.circular-category-logo-icon {
    width: 70px;
    height: 70px;
}

.table thead tr th {

    vertical-align: middle;
}

.form-check-input {
    box-shadow: none !important;
}

.form-check.form-check-primary .form-check-input:checked {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: none !important;
}

.form-check.form-check-success .form-check-input:checked {
    background-color: #00ab55;
    border-color: #00ab55;
}

.form-check.form-check-danger .form-check-input:checked {
    background-color: #e7515a;
    border-color: #e7515a;
}

.form-check.form-check-warning .form-check-input:checked {
    background-color: #e2a03f;
    border-color: #e2a03f;
}

.flatpickr-day.selected,
.flatpickr-day.startRange {
    background-color: var(--primary-blue) !important;
}

tbody ul li a {
    word-break: break-all;
    color: var(--nav-color);
}

tbody ul li {
    text-decoration: none;
    list-style: none;
}

.timeline-line .item-timeline .t-dot:before {
    content: "";
    position: absolute;
    border-color: inherit;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 4px;
    left: 18px;
    transform: translate(-50%);
    border-color: var(--primary-blue);
}

.timeline-line .item-timeline .t-dot:after {
    content: "";
    position: absolute;
    border-color: inherit;
    border-width: 2px;
    border-style: solid;
    width: 10px;
    height: 10px;
    top: 4px;
    left: 18px;
    transform: translate(-50%);
    border-color: var(--primary-blue);
    width: 0;
    height: auto;
    top: 21px;
    bottom: 0px;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0;
}

.timeline-line .item-timeline {
    display: flex;
}

.timeline-line .item-timeline .t-dot {
    position: relative;
}

.bg-activity {
    background-color: var(--box-bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
}

.circular-text {
    color: var(--black);
    font-size: 13px;
}

.circular-text b {
    font-weight: 500 !important;
}

.circular-text a {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 500;
}

.t-time {
    font-weight: 500;
}

.t-meta-time {
    font-size: 12px;
    font-weight: 500;
}

.timeline-line .item-timeline .t-dot.t-dot-danger:after {
    border-color: #e7515a;
}

.timeline-line .item-timeline .t-dot.t-dot-danger:before {
    border-color: #e7515a;
}

.timeline-line .item-timeline .t-dot.t-dot-success:before {
    border-color: #00ab55;
}

.timeline-line .item-timeline .t-dot.t-dot-success:after {
    border-color: #00ab55;
}

.payment-history .list-group-item:first-child {
    border-bottom: 1px solid #e0e6ed;
}

.payment-history .list-group-item {
    border: none;
    border-bottom: 1px solid #e0e6ed;
    padding-left: 0;
    padding-right: 0;
}

.payment-history .list-group-item:last-child {
    border: none;
}

.payment-history .list-group {
    border: 2px solid var(--border);
    padding: 7px 15px;
    border-radius: 13px;
}

.payment-history .list-group-item .title {
    font-size: 13px;
    font-weight: 500 !important;
}

.pay-pricing {
    font-size: 13px;
    color: var(--nav-color);
}

.Checker-Maker {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.data-info h6 {
    margin-bottom: 0;
    font-weight: 500 !important;
    font-size: 14px !important;
    margin-right: 35px;
    color: #02020FB2;
    transition: color 0.5s;
    word-break: break-word;
    white-space: normal;
}

.data-info a {
    font-size: 14px !important;
    color: #02020FB2;
    font-weight: 500 !important;
}

.data-info a span {
    word-break: break-word;
    white-space: normal;
}

.data-info h6 a {
    margin-bottom: 0;
    font-weight: 500 !important;
    font-size: 14px !important;
    margin-right: 35px;
    color: #02020FB2;
    transition: color 0.5s;
    word-break: break-word;
}

.data-info p {
    margin-bottom: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--light-color-label) !important;
}

/* .data-info h6:hover {

  color: var(--primary-blue);
} */
.Notifications-scroll-1 .contant-box:hover h6,
.Notifications-scroll-1 .contant-box:hover a,
.Notifications-scroll-1 .contant-box:hover p {
    color: var(--primary-blue);
}

.Notifications-scroll-2 .contant-box h6,
.Notifications-scroll-2 .contant-box a,
.Notifications-scroll-2 .contant-box p,
.Notifications-scroll-2 .contant-box span {
    color: #565656d4 !important;
}

.data-info h6 a:hover {

    color: var(--primary-blue);
}

.Notifications-scroll {
    max-height: 80vh;
    overflow-y: auto;
}

.Notifications-scroll::-webkit-scrollbar {
    display: none;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.arrow-icon.rotate {
    transform: rotate(90deg);
    /* or 180deg, depending on your preferred direction */
}

.back-to-top {
    background-color: var(--active-sidbar-border);
    border: 2px solid var(--active-sidbar-border);
    border-radius: 48%;
    width: 35px;
    height: 35px;
    position: absolute;
    display: none;
    color: white;
    bottom: 1%;
    right: 8px;
}

.devider-line {
    color: var(--active-sidbar-border);
    font-weight: 600;
    font-size: 15px;
}

.form-check label {
    color: var(--nav-color);
    font-size: 12px;
    cursor: pointer;
}



.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='0.75'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff' stroke='%23fff' stroke-width='0.75'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.owl-theme .owl-nav .owl-next,
.owl-theme .owl-nav .owl-prev {
    background-color: var(--active-sidbar-border) !important;
    width: 13px;
    border-radius: 5px;
    /* height: 45%; */
    top: 13px;
    margin: 0px;
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -18px;
}

.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -18px;
}


.table-hover thead tr {
    position: sticky;
    top: 0;
    background: #f2f3f7;
    /* border: 2px solid var(--border); */
}

.table-hover thead tr th {
    color: var(--black);
    font-size: 13px;
}

.table-hover-1 thead tr {
    position: sticky;
    top: 0;
    background: #f2f3f7;
    /* border: 2px solid var(--border); */
}

.table-hover-1 thead tr th {
    color: var(--black);
    font-size: 13px;
}


/* .dropdown-toggle-position
{
  position: absolute;
  top: 0px;
  z-index: 22;
  right: 0px;
} */
.down-drop-btn {
    background-color: var(--active-sidbar-border);
    padding: 0px 5px;
    border-radius: 5px;
    border: none;
}

.bg-drop-down {
    background-color: var(--active-sidbar-bg);
    padding: 5px;
    border-radius: 8px;
}

.bg-drop-down-1 {
    background-color: var(--active-sidbar-bg);
    padding: 5px;
    border-radius: 8px;
}

.bg-drop-down .dropdown-menu {
    /* width: 870px; */
    padding: 14px;
    padding-left: 14px;
    border: none;
    margin-top: -3px !important;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translate(5px, 41px) !important;
    background-color: rgb(255, 255, 255);
    /* border: 2px solid var(--border); */
    /* backdrop-filter: blur(17px) !important;
    -webkit-backdrop-filter: blur(19px) !important; */
    max-height: 80vh;
    overflow-y: auto;
}

.grid-container {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    gap: 10px;
}

.bg-drop-down .heading-value-text {
    /* height: 70px; */
    width: 200px !important;
}

.table-hover thead tr:first-child th {
    border-bottom: none !important;
}

.table-hover-1 thead tr:first-child th {
    border-bottom: none !important;
}

.treemap-wrapper {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    /* Changed from 4 to 3 */
    gap: 5px;
}

.treemap-wrapper .box {
    border-radius: 10px;
    color: white;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 14px;
}

.treemap-wrapper .box .label {
    font-size: 14px;
}

.complied .value,
.overdue .value {
    font-size: 14px;
}

.treemap-wrapper .total-complied {
    font-size: 11px;
    width: 100%;
    text-align: center;
    background-color: #e7e7e74d;
    border-radius: 10px;
    padding: 5px 10px;

}

.treemap-wrapper .manager .total-complied,
.treemap-wrapper .manager .panding-complied {
    background-color: #ffffff91 !important;
}

.treemap-wrapper .panding-complied {
    font-size: 11px;
    width: 100%;
    text-align: center;
    background-color: #e7e7e74d;
    border-radius: 10px;
    padding: 5px 7px;
    margin-left: 7px;
}

.treemap-wrapper .complied {
    background: #10B981;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.treemap-wrapper .maker {
    background: #0EA5E9;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.treemap-wrapper .checker {
    background: #6366F1;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.treemap-wrapper .tester {
    background: #A855F7;
    grid-column: 3 / 3;
    grid-row: 1 / 3;
}

.treemap-wrapper .manager {
    background: #BFDBFE;
    color: #1e3a8a;
    grid-column: 4 / 4;
    grid-row: 1 / 3;
}

.treemap-wrapper .overdue {
    background: #EF4444;
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

.pagination-div .active>.page-link,
.page-link.active {
    background-color: var(--active-sidbar-border) !important;
    border-color: var(--active-sidbar-border);
    color: var(--white);
}

.pagination-div .page-link {
    box-shadow: none;
    color: var(--black);
    padding: 3px 8px !important;
    font-size: 14px;
    border: 1px solid var(--border);
}

.pagination-div .page-link:focus {
    background-color: var(--box-bg);
}

.Showing-records p {
    font-size: 13px;
    color: var(--nav-color);
}

.pagination .page-item.disabled .page-link {
    background-color: var(--white) !important;
    color: #6c757d !important;
    pointer-events: none;
}

.btn-input-padding {
    padding-left: 25px !important;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border: 1px solid var(--border);
    outline: 0;
    box-shadow: none;
}

.dataTables_length .form-control-sm {
    border-radius: 8px;
}

.view-box-fill-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    cursor: pointer;
    font-size: 12px !important;
    padding: 5px 10px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

.spinner-border {
    width: 15px;
    height: 15px;
}

.icon-input-main .icon-input {
    padding-left: 25px;
}

.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.pagination-border-top {
    border-top: 1px solid var(--border);
}

.table-scroll tbody tr:last-child {
    /* border-color: transparent; */
}

.dropdown-ui .dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--border);
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 5px; */
    transform: translate(2px, 33px) !important;
    position: relative;
}

.dropdown-ui .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 8px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent var(--white) transparent;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}

.dropdown-ui .dropdown-menu .dropdown-item {
    border-radius: 6px;
    color: var(--nav-color);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 7px;
}

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

.dropdown-item.active,
.dropdown-item:active {
    background-color: #f2f3f7 !important;
}

.btn-close:focus {
    box-shadow: none;
}

.dropdown-ui-new .dropdown-menu .dropdown-item {
    border-radius: 6px;
    color: var(--nav-color);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 7px;
}

.dropdown-ui-new .dropdown-menu .dropdown-item:focus,
.dropdown-ui-new-1 .dropdown-menu .dropdown-item:focus {
    background-color: #f2f3f7 !important;
}

.dropdown-ui-new .dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0px 3px 10px rgba(165, 165, 165, 0.178);
}


.dropdown-ui-new .dropdown-menu[data-popper-placement^="bottom"] {
    margin-top: 6px !important;
}


.dropdown-ui-new .dropdown-menu[data-popper-placement^="top"] {
    margin-bottom: 6px !important;
}


.dropdown-ui-new .dropdown-menu[data-popper-placement^="bottom"]::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 6px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent var(--white) transparent;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}


.dropdown-ui-new .dropdown-menu[data-popper-placement^="top"]::before {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 6px;
    border-width: 7px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.dropdown-menu .dropdown-tabel tr {
    position: initial !important;
}

/* .severity-info-active {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 4px !important;
    background: transparent !important;
    border-left: 3px solid var(--active-sidbar-border);
} */


.table-scroll::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 20px !important;
    background-color: none !important;
}

.table-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: none !important;
    border-radius: 20px !important;
    display: block !important;
}

.table-scroll::-webkit-scrollbar-thumb {
    border-radius: 20px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); */
    background-color: #f2f3f7 !important;
    border: 1px solid #02020f13;
}

.alert-info-custom {
    color: var(--black) !important;
    background-color: var(--active-sidbar-bg);
    border: 1px solid var(--active-sidbar-border);
    border-radius: 5px;
    font-size: 12.5px;
    padding: 5px 10px;
}

.form-check-input[type=radio] {
    margin-right: 8px;
    margin-bottom: 4px;
    cursor: pointer;
}

.accordion-header .accordion-button .heading-text-inside-box {
    font-size: 12.5px;
    color: var(--nav-color);
    font-weight: 500;
}

.white-box-chart-new .accordion-item:has(.accordion-button:not(.collapsed)) .heading-text-inside-box {
    color: var(--black) !important;
}

.form-select:focus {
    box-shadow: none !important;
}

.bg-light-danger {
    background-color: #fbeced !important;
    border-color: #fbeced;
    color: #e7515a;
    font-size: 10px;
}

.bg-light-info {
    background-color: #e6f4ff !important;
    border-color: #e6f4ff;
    color: #2196f3;
    font-size: 10px;
}

.btn-light-info {
    color: var(--primary-blue);
    background-color: var(--active-sidbar-bg);
    border-radius: 6px;
    padding: 0.5px 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--primary-blue);
}

.dropdown-ui-new-1 .dropdown-menu .dropdown-item {
    border-radius: 6px;
    color: var(--nav-color);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 7px;
}

.dropdown-ui-new-1 .dropdown-menu .dropdown-item:focus {
    background-color: #f2f3f7 !important;
}

.dropdown-ui-new-1 .dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0px 3px 10px rgba(165, 165, 165, 0.178);
}


.dropdown-ui-new-1 .dropdown-menu[data-popper-placement^="bottom"] {
    margin-top: 6px !important;
}


.dropdown-ui-new-1 .dropdown-menu[data-popper-placement^="top"] {
    margin-bottom: 6px !important;
}


.dropdown-ui-new-1 .dropdown-menu[data-popper-placement^="bottom"]::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 6px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent var(--white) transparent;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}


.dropdown-ui-new-1 .dropdown-menu[data-popper-placement^="top"]::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 6px;
    border-width: 7px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.bg-light-warning {
    background-color: #fcf5e9 !important;
    border-color: #fcf5e9;
    color: #e2a03f;
    font-size: 10px;
}

.width-logo-techowl-comp {
    min-width: 100px;
    max-width: 155px;
}

.font-top-task-new {
    color: #02020FB2;
    font-size: 12.5px;
    font-weight: 600;
}

.font-size-12-5 {
    font-size: 12.5px;
}

.font-size-12-5-framework {
    font-size: 12.5px;
}

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

.framework-height-calc {
    height: calc(100vh - 162px);
}

.framework-releted-height-calc {
    height: calc(100vh - 170px);
}

.Circular-height-calc {
    height: calc(100vh - 152px);
}

.teamwork-height-calc {
    height: calc(100vh - 207px);
}

.teamworkuser-height-calc {
    height: calc(100vh - 147px);
}

.circular-left-twobox-height {
    height: calc(100vh - 88px);
}

.cxo-height-calc {
    height: calc(100vh - 183px);
}

.cxo-in-box-height-calc {
    height: calc(100vh - 249px);
}

.cxo-in-1-box-height-calc {
    height: calc(100vh - 278px);
}

.cxo-in-2-box-height-calc {
    height: calc(100vh - 343px);
}

.main-calc-87-height {
    height: calc(100vh - 87px);
}

.main-calc-82-height {
    height: calc(100vh - 82px);
}

.main-calc-112-height {
    height: calc(100vh - 112px);
}

.security-box {
    width: 83px !important;
    height: 50px !important;
    margin: 3px !important;
}
.report-height-table
{
    height: calc(100vh - 355px);
}
/* 1920px se badi screens ke liye */
@media (min-width: 2060px) {
    .width-table {
        width: 100% !important;
    }

    .tabel-scroll-add .width-table {
        width: 100% !important;
    }

    .width-table1 {
        width: 100% !important;
    }

    .tabel-scroll-add1 .width-table1 {
        width: 100% !important;
    }

    .user-guide-height {
        height: calc(100vh - 223px) !important;
    }
}

/* 100% zoom */
@media (min-width: 1920px) {
    .width-carosal {
        width: 1181px;
    }

    .my-new-class .width-carosal {
        width: 1321px !important;
    }

    .width-table {
        width: 1548px;
    }

    .tabel-scroll-add .width-table {
        width: 1743px !important;
    }

    .width-table1 {
        width: 1570px;
    }

    .tabel-scroll-add1 .width-table1 {
        width: 1765px !important;
    }

    .new-whats-new-height {
        height: calc(100vh - 105px);
    }

    .new-whats-new-height .whats-new-height {
        height: calc(100vh - 448px);
    }

    .whats-new-height {
        height: calc(100vh - 365px);
    }

    .user-guide-height {
        height: calc(100vh - 210px) !important;
    }

    .teamworkuser-height-calc {
        height: calc(100vh - 151px);
    }

    .teamwork-height-calc {
        height: calc(100vh - 211px);
    }

    .Circular-height-calc {
        height: calc(100vh - 155px);
    }

    .framework-height-calc {
        height: calc(100vh - 174px);
    }

    .framework-releted-height-calc {
        height: calc(100vh - 183px);
    }

    .width-logo-techowl-comp {
        min-width: 125px;
        max-width: 180px;
    }

    .logo-complython {
        width: 35px;
    }

    .treemap-wrapper .total-complied,
    .complied .value,
    .overdue .value,
    .treemap-wrapper .panding-complied,
    .sidebar p,
    .inside-all-text {
        font-size: 15px;
    }

    .treemap-wrapper {
        gap: 7px;
    }

    .treemap-wrapper .box .label {
        font-size: 16px;
    }

    .sidebar ul li a {
        font-size: 15.5px;
    }

    .sidebar,
    .sidebar ul li a {
        width: 230px;
    }

    .word-b-space {
        font-size: 15px;
        width: 185px;
    }

    .new-badge-bg {
        font-size: 13px !important;
    }

    .label-font,
    .label-font-dark,
    .orange-box,
    .orange-box-label span,
    .label-font-dark-new,
    .name-short-box {
        font-size: 14px;
    }

    .contant-box {
        padding: 8px 8px !important;
    }

    .font-top-task-new,
    .font-size-12-5 {
        font-size: 14.5px;
    }

    .table>:not(caption)>*>*,
    .table-scroll .table tr td,
    .table-scroll-modal .table tr td {
        font-size: 14px !important;
    }

    .view-box span {
        font-size: 14px !important;
    }

    .heading-text-inside-box {
        font-size: 15px;
    }

    .navbar-pills-1 .nav-item button,
    .low-box-label span,
    .dropdown-ui-new .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .legend {
        font-size: 15px !important;
    }

    #Compliancechart .row-label {
        font-size: 14px !important;
    }

    .heading-value-text,
    .high-box-label span,
    .protect-box-label1 span {
        font-size: 14px;
    }

    .approved-badge {
        font-size: 14px !important;
    }

    .badge-light-danger,
    .badge-light-success,
    .badge-light-warning,
    .badge-light-dark,
    .badge-light-info,
    .badge-light-primary,
    .protect-box-label,
    .detect-box-label,
    .identity-box-label,
    .identify-box-label,
    .respond-box-label,
    .badge-light-secondary,
    .badge-secondary,
    .badge-success,
    .badge-info {
        font-size: 12px;
    }

    .heading-value {
        font-size: 18px;
    }

    .font-size-11 {
        font-size: 13px;
    }

    .badge-light-bluelight {
        font-size: 12px;
    }

    .view-box-fill-btn,
    .ts-control {
        font-size: 14px !important;
    }

    .view-box-fill span {
        font-size: 14px !important;
        font-weight: 500;
    }

    .form-check label,
    .Showing-records p,
    .input-form-style .form-control,
    .accordion-header .accordion-button .heading-text-inside-box {
        font-size: 14px;
    }

    .font-size-12-5-framework,
    .light-box-label,
    .success-box-label span,
    .table-blue-font,
    .btn-view-box,
    .btn-cancel-box {
        font-size: 14px;
    }

    .btn-view-box,
    .btn-cancel-box,
    .cancel-box span {
        font-size: 14px !important;
    }

    .outline-badge-warning,
    .outline-badge-dark,
    .outline-badge-danger,
    .outline-badge-success,
    .outline-badge-primary {
        font-size: 12px;
    }

    .Add-Controls {
        font-size: 13px;
    }

    .label-font-new {
        font-size: 13.5px;
    }

    .heading-text-inside-box-sidebar,
    .alert-info-custom,
    .btn-light-info,
    .dropdown-ui-new-1 .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .input-form-style label,
    label {
        font-size: 13px !important;
        font-weight: 500;
    }

    .ts-dropdown .option {
        font-size: 13px !important;
        font-weight: 500 !important;
    }

    .matrix-nav .nav-item button,
    .white-badge {
        font-size: 14px;
    }

    .ts-control input::placeholder {
        font-size: 14px !important;
    }

    .circular-text a,
    .circular-text,
    .t-meta-time,
    .filter-label,
    .filter-section .filter-btn {
        font-size: 14px;
    }

    .t-time {
        font-size: 14px !important;
    }

    .filter-section .form-check label {
        font-size: 13px !important;
    }

    .Questionnaire-card .Questionnaire-card-font,
    .Questionnaire-card-body,
    .Questionnaire-font p,
    .Questionnaire-font .Questionnaire-date {
        font-size: 14px !important;
    }
}

/* 110% zoom */
@media (min-width: 1680px) and (max-width: 1919px) {
    .width-carosal {
        width: 1050px;
    }

    .my-new-class .width-carosal {
        width: 1191px !important;
    }

    .width-table {
        width: 1375px;
    }

    .tabel-scroll-add .width-table {
        width: 1570px !important;
    }

    .width-table1 {
        width: 1400px;
    }

    .tabel-scroll-add1 .width-table1 {
        width: 1590px !important;
    }

    .new-whats-new-height {
        height: calc(100vh - 105px);
    }

    .new-whats-new-height .whats-new-height {
        height: calc(100vh - 447px);
    }

    .whats-new-height {
        height: calc(100vh - 360px);
    }

    .user-guide-height {
        height: calc(100vh - 205px) !important;
    }

    .width-logo-techowl-comp {
        min-width: 125px;
        max-width: 180px;
    }

    .logo-complython {
        width: 35px;
    }

    .treemap-wrapper .total-complied,
    .complied .value,
    .overdue .value,
    .treemap-wrapper .panding-complied,
    .sidebar p,
    .inside-all-text {
        font-size: 15px;
    }

    .treemap-wrapper {
        gap: 7px;
    }

    .treemap-wrapper .box .label {
        font-size: 16px;
    }

    .sidebar ul li a {
        font-size: 15.5px;
    }

    .sidebar,
    .sidebar ul li a {
        width: 230px;
    }

    .word-b-space {
        font-size: 15px;
        width: 185px;
    }

    .new-badge-bg {
        font-size: 13px !important;
    }

    .label-font,
    .label-font-dark,
    .orange-box,
    .orange-box-label span,
    .label-font-dark-new,
    .name-short-box {
        font-size: 14px;
    }

    .contant-box {
        padding: 8px 8px !important;
    }

    .font-top-task-new,
    .font-size-12-5 {
        font-size: 14.5px;
    }

    .table>:not(caption)>*>*,
    .table-scroll .table tr td,
    .table-scroll-modal .table tr td {
        font-size: 14px !important;
    }

    .view-box span {
        font-size: 14px !important;
    }

    .heading-text-inside-box {
        font-size: 15px;
    }

    .navbar-pills-1 .nav-item button,
    .low-box-label span,
    .dropdown-ui-new .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .legend {
        font-size: 15px !important;
    }

    #Compliancechart .row-label {
        font-size: 14px !important;
    }

    .heading-value-text,
    .high-box-label span,
    .protect-box-label1 span {
        font-size: 14px;
    }

    .approved-badge {
        font-size: 14px !important;
    }

    .badge-light-danger,
    .badge-light-success,
    .badge-light-warning,
    .badge-light-dark,
    .badge-light-info,
    .badge-light-primary,
    .protect-box-label,
    .detect-box-label,
    .identity-box-label,
    .identify-box-label,
    .respond-box-label,
    .badge-light-secondary,
    .badge-secondary,
    .badge-success,
    .badge-info {
        font-size: 12px;
    }

    .heading-value {
        font-size: 18px;
    }

    .font-size-11 {
        font-size: 13px;
    }

    .badge-light-bluelight {
        font-size: 12px;
    }

    .view-box-fill-btn,
    .ts-control {
        font-size: 14px !important;
    }

    .view-box-fill span {
        font-size: 14px !important;
        font-weight: 500;
    }

    .form-check label,
    .Showing-records p,
    .input-form-style .form-control,
    .accordion-header .accordion-button .heading-text-inside-box {
        font-size: 14px;
    }

    .font-size-12-5-framework,
    .light-box-label,
    .success-box-label span,
    .table-blue-font,
    .btn-view-box,
    .btn-cancel-box {
        font-size: 14px;
    }

    .btn-view-box,
    .btn-cancel-box,
    .cancel-box span {
        font-size: 14px !important;
    }

    .outline-badge-warning,
    .outline-badge-dark,
    .outline-badge-danger,
    .outline-badge-success,
    .outline-badge-primary {
        font-size: 12px;
    }

    .Add-Controls {
        font-size: 13px;
    }

    .label-font-new {
        font-size: 13.5px;
    }

    .heading-text-inside-box-sidebar,
    .alert-info-custom,
    .btn-light-info,
    .dropdown-ui-new-1 .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .input-form-style label,
    label {
        font-size: 13px !important;
        font-weight: 500;
    }

    .ts-dropdown .option {
        font-size: 13px !important;
        font-weight: 500 !important;
    }

    .matrix-nav .nav-item button,
    .white-badge {
        font-size: 14px;
    }

    .ts-control input::placeholder {
        font-size: 14px !important;
    }

    .circular-text a,
    .circular-text,
    .t-meta-time,
    .filter-label,
    .filter-section .filter-btn {
        font-size: 14px;
    }

    .t-time {
        font-size: 14px !important;
    }

    .filter-section .form-check label {
        font-size: 13px !important;
    }

    .Questionnaire-card .Questionnaire-card-font,
    .Questionnaire-card-body,
    .Questionnaire-font p,
    .Questionnaire-font .Questionnaire-date {
        font-size: 14px !important;
    }
}

/* 125% zoom */
@media (max-width: 1536px) {
    .security-box {
        width: 65px !important;
        height: 40px !important;
        border-radius: 7px !important;
        margin: 3px !important;
    }

    .width-carosal {
        width: 912px;
    }

    .badge-step {
        padding: 6px 13px !important;
        border: 2px solid #00AFEF !important;
        font-size: 0.900rem !important;
        border-radius: 5px !important;
    }

    .my-new-class .width-carosal {
        width: 1038px !important;
    }

    .width-table {
        width: 1197px;
    }

    .tabel-scroll-add .width-table {
        width: 1362px !important;
    }

    .width-table1 {
        width: 1217px;
    }

    .tabel-scroll-add1 .width-table1 {
        width: 1381px !important;
    }
}

/* 150% zoom */
@media (max-width: 1280px) {

    /* .treemap-wrapper .manager {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
  }

  .treemap-wrapper .tester {
    grid-column: 5 / 3;
    grid-row: 1 / 2;
  } */
   .report-height-table
{
    height: calc(100vh - 336px);
}
    .new-whats-new-height {
        height: calc(100vh - 97px);
    }

    .new-whats-new-height .whats-new-height {
        height: calc(100vh - 395px);
    }

    .search-icone {
        top: 8px;
    }

    .heading-main-label-font {
        font-size: 11px;
    }

    .whats-new-height {
        height: calc(100vh - 310px);
    }

    .badge-step {
        padding: 4px 10px !important;
        border: 1.5px solid #00AFEF !important;
        font-size: 0.800rem !important;
        border-radius: 5px !important;
        width: 30px !important;
        height: 30px !important;
    }

    .user-guide-height {
        height: calc(100vh - 185px) !important;
    }

    .framework-details-circle-rright-font {
        font-size: 10px !important;
    }

    .security-box {
        width: 52px !important;
        height: 40px !important;
        border-radius: 7px !important;
        margin: 2px !important;
    }

    .heading-value {
        font-size: 12px;
    }

    .width-carosal {
        width: 750px;
    }

    .my-new-class .width-carosal {
        width: 841px !important;
    }

    .width-table {
        width: 978px;
    }

    .tabel-scroll-add .width-table {
        width: 1103px !important;
    }

    .width-table1 {
        width: 1000px;
    }

    .tabel-scroll-add1 .width-table1 {
        width: 1125px !important;
    }

    .grid-container {
        gap: 8px;
    }

    .nav-item .arrow-icon {
        height: 8px !important;
    }

    .table-scroll-modal .circle-svg svg {
        width: 8px !important;
        height: 8px !important;
    }

    .table-hover svg {
        width: 13px !important;
        height: 13px !important;
    }

    .table-hover .feather-download,
    .table-hover .bi-pencil-square,
    .table-hover .protect-box-label svg,
    .table-hover .detect-box-label svg,
    .table-hover .respond-box-label svg,
    .table-hover .identify-box-label svg {
        width: 13px !important;
        height: 13px !important;
    }

    /* .table-hover span svg
  {
     width: 18px !important;
    height: 18px !important;
  } */
    .sidebar svg {
        width: 13px !important;
        height: 13px !important;
        margin-bottom: 1px !important;
    }

    .nav-pills svg {
        width: 12px !important;
        height: 12px !important;
        margin-bottom: 1px !important;
    }

    .down-drop-btn svg {
        width: 13px !important;
        height: 13px !important;
    }

    .dropdown-toggle-position .down-drop-btn svg {
        width: 10.6px !important;
        height: 9px !important;
    }

    .sidebar ul li a {
        padding: 4px 10px !important;
    }

    .data-info h6,
    .data-info p,
    .blue-font {
        font-size: 11px !important;
    }

    .nav-pills {
        padding: 4px 5px;
    }

    .teamworkuser-height-calc {
        height: calc(100vh - 129px);
    }

    .teamwork-height-calc {
        height: calc(100vh - 189px);
    }

    .Circular-height-calc {
        height: calc(100vh - 140px);
    }

    .circular-left-twobox-height {
        height: calc(100vh - 76px);
    }

    .cxo-height-calc {
        height: calc(100vh - 168px);
    }

    .cxo-in-box-height-calc {
        height: calc(100vh - 230px);
    }

    .cxo-in-1-box-height-calc {
        height: calc(100vh - 263px);
    }

    .cxo-in-2-box-height-calc {
        height: calc(100vh - 324px);
    }

    .main-calc-87-height {
        height: calc(100vh - 75px);
    }

    .main-calc-82-height {
        height: calc(100vh - 75px);
    }

    .main-calc-112-height {
        height: calc(100vh - 103px);
    }

    /* .framework-height-calc
  {
    height: calc(100vh - 174px);
  }
  .framework-releted-height-calc
  {
    height: calc(100vh - 183px);
  } */
    .justify-content-center-150 {
        justify-content: center;
    }

    .heading-main {
        font-size: 14px;
    }

    .width-logo-techowl-comp {
        min-width: 100px;
        max-width: 125px;
    }

    .logo-complython {
        width: 27px;
    }

    .treemap-wrapper .total-complied,
    .complied .value,
    .overdue .value,
    .treemap-wrapper .panding-complied,
    .sidebar p,
    .inside-all-text {
        font-size: 11px;
    }

    .treemap-wrapper {
        gap: 5px;
    }

    .column-150 {
        flex-direction: column;
    }

    .column-150-ps-0 {
        margin-left: 0px !important;
        margin-top: 8px;
    }

    .treemap-wrapper .box .label {
        font-size: 12px;
    }

    .sidebar ul li a {
        font-size: 11px;
    }

    .sidebar,
    .sidebar ul li a {
        width: 160px;
    }

    .word-b-space {
        font-size: 10px;
        width: 118px;
    }

    .new-badge-bg {
        font-size: 8px !important;
    }

    .label-font,
    .label-font-dark,
    .orange-box,
    .orange-box-label span,
    .label-font-dark-new,
    .name-short-box {
        font-size: 10px;
    }

    .contant-box {
        padding: 4px 6px !important;
    }

    .font-top-task-new,
    .font-size-12-5 {
        font-size: 11px;
    }

    .table>:not(caption)>*>*,
    .table-scroll .table tr td,
    .table-scroll-modal .table tr td {
        font-size: 10px !important;
    }

    .view-box span {
        font-size: 11px !important;
    }

    .heading-text-inside-box {
        font-size: 11px;
    }

    .navbar-pills-1 .nav-item button,
    .low-box-label span,
    .dropdown-ui-new .dropdown-menu .dropdown-item {
        font-size: 10px;
    }

    .legend {
        font-size: 11px !important;
    }

    #Compliancechart .row-label {
        font-size: 11px !important;
    }

    .heading-value-text,
    .high-box-label span,
    .protect-box-label1 span {
        font-size: 10px;
    }

    .approved-badge,
    .high-badge-assesment {
        font-size: 10px !important;
    }

    .heading-value-chart {
        font-size: 14px;
    }

    .badge-light-danger,
    .badge-light-success,
    .badge-light-warning,
    .badge-light-dark,
    .badge-light-info,
    .badge-light-primary,
    .protect-box-label,
    .detect-box-label,
    .identity-box-label,
    .identify-box-label,
    .respond-box-label,
    .badge-light-secondary,
    .badge-secondary,
    .badge-success,
    .badge-info {
        font-size: 9px !important;
    }

    .heading-value {
        font-size: 13px;
    }

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

    .badge-light-bluelight {
        font-size: 12px;
    }

    .view-box-fill-btn,
    .ts-control {
        font-size: 11px !important;
    }

    .view-box-fill span {
        font-size: 10px !important;
        font-weight: 500;
    }

    .form-check label,
    .Showing-records p,
    .input-form-style .form-control,
    .accordion-header .accordion-button .heading-text-inside-box {
        font-size: 11px;
    }

    .font-size-12-5-framework,
    .light-box-label,
    .success-box-label span,
    .table-blue-font,
    .btn-view-box,
    .btn-cancel-box {
        font-size: 10px;
    }

    .btn-view-box,
    .btn-cancel-box,
    .cancel-box span {
        font-size: 11px !important;
    }

    .outline-badge-warning,
    .outline-badge-dark,
    .outline-badge-danger,
    .outline-badge-success,
    .outline-badge-primary,
    .bg-secondary {
        font-size: 9px;
    }

    .bg-secondary {
        font-size: 9px !important;
    }

    .heading-value-text h6 {
        font-size: 12px;
    }

    .Add-Controls {
        font-size: 10px;
    }

    .label-font-new {
        font-size: 10px;
    }

    .heading-text-inside-box-sidebar,
    .alert-info-custom,
    .btn-light-info,
    .dropdown-ui-new-1 .dropdown-menu .dropdown-item {
        font-size: 11px;
    }

    .input-form-style label,
    label {
        font-size: 10px !important;
        font-weight: 500;
    }

    .ts-dropdown .option {
        font-size: 10px !important;
        font-weight: 500 !important;
    }

    .matrix-nav .nav-item button,
    .white-badge {
        font-size: 11px;
    }

    .ts-control input::placeholder,
    .input-form-style .form-control::placeholder {
        font-size: 11px !important;
    }

    input,
    .pagination-div .page-link {
        font-size: 11px !important;
    }

    .circular-text a,
    .circular-text,
    .t-meta-time,
    .filter-label,
    .filter-section .filter-btn {
        font-size: 11px;
    }

    .t-time {
        font-size: 11px !important;
    }

    .filter-section .form-check label {
        font-size: 10px !important;
    }

    .Questionnaire-card .Questionnaire-card-font,
    .Questionnaire-card-body,
    .Questionnaire-font p,
    .Questionnaire-font .Questionnaire-date {
        font-size: 11px !important;
    }
}

/* 175% zoom */
@media (max-width: 1150px) and (min-width: 1050px) {
    .width-carosal {
        width: 614px;
    }

    .my-new-class .width-carosal {
        width: 711px !important;
    }

    .width-table {
        width: 797px;
    }

    .tabel-scroll-add .width-table {
        width: 922px !important;
    }

    .width-table1 {
        width: 818px;
    }

    .tabel-scroll-add1 .width-table1 {
        width: 943px !important;
    }

    .new-whats-new-height {
        height: calc(100vh - 95px);
    }

    .new-whats-new-height .whats-new-height {
        height: calc(100vh - 340px);
    }

    .new-whats-new-height .table>:not(caption)>*>*,
    .table-scroll .table tr td,
    .table-scroll-modal .table tr td {
        padding: 5px 3px;
    }

    .whats-new-height {
        height: calc(100vh - 285px);
    }

    .framework-details-circle-rright-font {
        font-size: 9px !important;
    }

    .heading-main-label-font {
        font-size: 9px;
    }

    .badge-step {
        padding: 4px 10px !important;
        border: 1.5px solid #00AFEF !important;
        font-size: 0.800rem !important;
        border-radius: 5px !important;
        width: 25px !important;
        height: 25px !important;
    }

    .user-guide-height {
        height: calc(100vh - 175px) !important;
    }

    .width-175-input {
        width: 167px !important;
    }

    .grid-container {
        gap: 8px;
    }

    .nav-item .arrow-icon {
        height: 6px !important;
    }

    .blue-box svg,
    .blue-font svg {
        width: 9px !important;
        height: 9px !important;
    }

    .table-hover svg {
        width: 13px !important;
        height: 13px !important;
    }

    .heading-value-text h6 {
        font-size: 10px;
    }

    .table-hover .feather-download,
    .table-hover .bi-pencil-square,
    .table-hover .protect-box-label svg,
    .table-hover .detect-box-label svg,
    .table-hover .respond-box-label svg,
    .table-hover .identify-box-label svg {
        width: 13px !important;
        height: 13px !important;
    }

    /* .table-hover span svg
  {
     width: 18px !important;
    height: 18px !important;
  } */
    .sidebar svg {
        width: 12px !important;
        height: 12px !important;
        margin-bottom: 1px !important;
    }

    .sidebar .active {
        border-radius: 6px;
    }

    .nav-pills svg {
        width: 12px !important;
        height: 12px !important;
        margin-bottom: 1px !important;
    }

    .down-drop-btn svg {
        width: 13px !important;
        height: 13px !important;
    }

    .dropdown-toggle-position .down-drop-btn svg {
        width: 10.6px !important;
        height: 9px !important;
    }

    .sidebar ul li a {
        padding: 4px 10px !important;
    }

    .data-info h6,
    .data-info p,
    .blue-font {
        font-size: 9px !important;
    }

    .nav-pills {
        padding: 4px 5px;
    }

    .teamworkuser-height-calc {
        height: calc(100vh - 129px);
    }

    .teamwork-height-calc {
        height: calc(100vh - 189px);
    }

    .Circular-height-calc {
        height: calc(100vh - 140px);
    }

    .circular-left-twobox-height {
        height: calc(100vh - 76px);
    }

    .cxo-height-calc {
        height: calc(100vh - 167px);
    }

    .cxo-in-box-height-calc {
        height: calc(100vh - 226px);
    }

    .cxo-in-1-box-height-calc {
        height: calc(100vh - 262px);
    }

    .cxo-in-2-box-height-calc {
        height: calc(100vh - 321px);
    }

    .main-calc-87-height {
        height: calc(100vh - 75px);
    }

    .main-calc-82-height {
        height: calc(100vh - 75px);
    }

    .main-calc-112-height {
        height: calc(100vh - 103px);
    }

    /* .framework-height-calc
  {
    height: calc(100vh - 174px);
  }
  .framework-releted-height-calc
  {
    height: calc(100vh - 183px);
  } */
    .justify-content-center-150 {
        justify-content: center;
    }

    .heading-main {
        font-size: 12px;
    }

    .width-logo-techowl-comp {
        min-width: 85px;
        max-width: 115px;
    }

    .logo-complython {
        width: 23px;
    }

    .sidebar p {
        margin-top: 3px !important;
    }

    .font-175-small {
        font-size: 10px !important;
    }

    .treemap-wrapper .total-complied,
    .complied .value,
    .overdue .value,
    .treemap-wrapper .panding-complied,
    .sidebar p,
    .inside-all-text {
        font-size: 9px;
    }

    .treemap-wrapper {
        gap: 5px;
    }

    .column-150 {
        flex-direction: column;
    }

    .column-150-ps-0 {
        margin-left: 0px !important;
        margin-top: 8px;
    }

    .treemap-wrapper .box .label {
        font-size: 10px;
    }

    .sidebar ul li a {
        font-size: 9px;
    }

    .sidebar,
    .sidebar ul li a {
        width: 160px;
    }

    .word-b-space {
        font-size: 9px;
        width: 117px;
    }

    .new-badge-bg {
        font-size: 8px !important;
    }

    .label-font,
    .label-font-dark,
    .orange-box,
    .orange-box-label span,
    .label-font-dark-new,
    .name-short-box {
        font-size: 8px;
    }

    .ts-control {
        padding: 3px 30px 3px 10px !important;
    }

    .search-icone {
        width: 10px !important;
        height: 10px !important;
    }

    input::placeholder {
        font-size: 9px !important;
    }

    .breadcrumb,
    .breadcrumb .active {
        font-size: 10px !important;
    }

    .contant-box {
        padding: 4px 6px !important;
    }

    .font-top-task-new,
    .font-size-12-5 {
        font-size: 9px;
    }

    .table>:not(caption)>*>*,
    .table-scroll .table tr td,
    .table-scroll-modal .table tr td {
        font-size: 9px !important;
    }

    .view-box span {
        font-size: 9px !important;
    }

    .heading-text-inside-box {
        font-size: 9px;
    }

    .navbar-pills-1 .nav-item button,
    .low-box-label span,
    .dropdown-ui-new .dropdown-menu .dropdown-item {
        font-size: 9px;
    }

    .legend {
        font-size: 9px !important;
    }

    #Compliancechart .row-label {
        font-size: 9px !important;
    }

    .heading-value-text,
    .high-box-label span,
    .protect-box-label1 span {
        font-size: 9px;
    }

    .approved-badge,
    .high-badge-assesment {
        font-size: 9px !important;
    }

    .heading-value-chart {
        font-size: 12px;
    }

    .badge-light-danger,
    .badge-light-success,
    .badge-light-warning,
    .badge-light-dark,
    .badge-light-info,
    .badge-light-primary,
    .protect-box-label,
    .detect-box-label,
    .identity-box-label,
    .identify-box-label,
    .respond-box-label,
    .badge-light-secondary,
    .badge-secondary,
    .badge-success,
    .badge-info {
        font-size: 8px !important;
    }

    .heading-value {
        font-size: 11px;
    }

    .font-size-11 {
        font-size: 9px;
    }

    .badge-light-bluelight {
        font-size: 9px;
    }

    .view-box-fill-btn,
    .ts-control {
        font-size: 9px !important;
    }

    .view-box-fill span {
        font-size: 9px !important;
        font-weight: 500;
    }

    .form-check label,
    .Showing-records p,
    .input-form-style .form-control,
    .accordion-header .accordion-button .heading-text-inside-box {
        font-size: 9px;
    }

    .font-size-12-5-framework,
    .light-box-label,
    .success-box-label span,
    .table-blue-font,
    .btn-view-box,
    .btn-cancel-box {
        font-size: 9px;
    }

    .btn-view-box,
    .btn-cancel-box,
    .cancel-box span {
        font-size: 9px !important;
    }

    .outline-badge-warning,
    .outline-badge-dark,
    .outline-badge-danger,
    .outline-badge-success,
    .outline-badge-primary {
        font-size: 8px;
    }

    .Add-Controls {
        font-size: 8px;
    }

    .label-font-new {
        font-size: 8px;
    }

    .heading-text-inside-box-sidebar,
    .alert-info-custom,
    .btn-light-info,
    .dropdown-ui-new-1 .dropdown-menu .dropdown-item {
        font-size: 9px;
    }

    .input-form-style label,
    label {
        font-size: 8px !important;
        font-weight: 500;
    }

    .ts-dropdown .option {
        font-size: 8px !important;
        font-weight: 500 !important;
    }

    .matrix-nav .nav-item button,
    .white-badge {
        font-size: 9px;
    }

    .ts-control input::placeholder,
    .input-form-style .form-control::placeholder {
        font-size: 9px !important;
    }

    input,
    .pagination-div .page-link {
        font-size: 9px !important;
    }

    .circular-text a,
    .circular-text,
    .t-meta-time,
    .filter-label,
    .filter-section .filter-btn {
        font-size: 9px;
    }

    .t-time {
        font-size: 9px !important;
    }

    .filter-section .form-check label {
        font-size: 9px !important;
    }

    .Questionnaire-card .Questionnaire-card-font,
    .Questionnaire-card-body,
    .Questionnaire-font p,
    .Questionnaire-font .Questionnaire-date {
        font-size: 9px !important;
    }
}


#compareForm {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#compareForm input[type="file"] {
    margin: 10px 0;
    display: block;
}

#compareForm button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#compareForm button:hover {
    background: #2980b9;
}

#viewer-container {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    margin-bottom: 30px;
}

.pdf-column {
    flex: 1;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    max-height: 80vh;
    border: 1px solid #02020F1F !important;
    padding: 15px;
    border-radius: 8px !important;
    background: #F5F5F5 !important;
    box-shadow: none !important;
}

.pdf-column h3 {
    margin: 0px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    width: 100%;
    font-size: 14px;
    text-align: center;
    color: var(--black) !important;
}

canvas {
    border: 1px solid #eee;
    margin: 10px 0;
    max-width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.diff-added {
    background-color: #e6ffed;
    color: #22863a;
}

.diff-removed {
    background-color: #ffebee;
    color: #b71c1c;
}

.diff-header {
    font-weight: bold;
    color: #555;
    background-color: #f5f5f5;
}

.placeholder {
    width: 595px;
    height: 842px;
    border: 1px solid #ddd;
    margin: 10px 0;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-size: 18px;
}

.diff-section {
    margin-bottom: 15px;
}

.diff-section-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.diff-item {
    padding: 3px 5px;
    margin: 2px 0;
    border-radius: 3px;
}

.diff-added-item {
    background-color: #e6ffed;
    color: #22863a;
}

.diff-removed-item {
    background-color: #ffebee;
    color: #b71c1c;
}

.error-message {
    color: #b71c1c;
    background-color: #ffebee;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.diff-output {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #f8f9fa;
    font-family: monospace;
    white-space: pre-wrap;
    max-height: 500px;
    overflow-y: auto;
}

.diff-container {
    line-height: 1.5;
}

.diff-header {
    background-color: #f5f5f5;
    color: #666;
    padding: 2px 5px;
    margin: 5px 0;
    font-weight: bold;
    border-radius: 3px;
}

.diff-line {
    padding: 2px 5px;
    margin: 1px 0;
    border-radius: 3px;
}

.diff-line.added {
    /* background-color: #e6ffed; */
    color: #22863a !important;
    /* border-left: 3px solid #28a745; */
}

.diff-line.removed {
    /* background-color: #ffebee; */
    color: #b71c1c !important;
    /* border-left: 3px solid #dc3545; */
    text-decoration: line-through;
}

.diff-line.unchanged {
    color: #333;
    padding-left: 8px;
}

.diff-group {
    margin-bottom: 15px;
}

.diff-group-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.circular-archive-table {
    vertical-align: middle;
}

.bg-image-login {
    background-image: url("/logo/login1.webp");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    flex: 1 !important;
    width: 100vw !important;
    height: 100vh;
    position: relative;
}

.compliance-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    bottom: 60px;
    color: white;
    width: 50%;
}

.compliance-text a span {
    color: #fff;
}

.compliance-text a {
    text-align: center;
    display: flex;
    justify-content: center;
}

.nav-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

#pills-tab {
    display: flex;
    flex-wrap: nowrap;
}

#pills-tab .nav-item {
    flex: 0 0 auto;
}

.nav-scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 20px !important;
    background-color: none !important;
}

.nav-scroll-wrapper::-webkit-scrollbar {
    width: 4px;
    height: 3px;
    background-color: none !important;
    border-radius: 20px !important;
    display: block !important;
}

.nav-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #02020F1F !important;
    border-left: 8px solid transparent;
    /* top cut */
    border-right: 8px solid transparent;
    /* bottom cut */
    background-clip: padding-box;
    /* ensure border removes color */
}

.badge-danger {
    color: #fff;
    background-color: #fa4b56;
}

.bg-critical-box-in {
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-Exploitable-box-in {
    border: 1px solid #fdba74;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-critical-box {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-critical-text {
    color: #dc2626;
}

.bg-critical-bold-text {
    color: #000;
    font-size: 15px;
}

.bg-cves-box {
    background-color: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-cves-text {
    color: #2563eb;
}

.bg-cves-bold-text {
    color: #000;
    font-size: 15px;
}

.bg-aged-box-in {
    border: 1px solid #d8b4fe;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-aged-box {
    background-color: #faf5ff;
    border: 1px solid #d8b4fe;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-aged-text {
    color: #9333ea;
}

.bg-aged-bold-text {
    color: #000;
    font-size: 15px;
}

.bg-Exploitable-box {
    background-color: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 6px;
    padding: 10px 10px;
}

.bg-Exploitable-text {
    color: #ea580c;
}

.bg-Exploitable-bold-text {
    color: #000;
    font-size: 15px;
}

.navbar-pills-2 .nav-pills {
    background-color: transparent !important;
    padding: 0px !important;
    border-radius: 0px !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;

}

.navbar-pills-2 .nav-pills .nav-link {
    color: var(--nav-color);
}

.navbar-pills-2 .nav-pills .nav-link.active {
    background-color: transparent !important;
    border-bottom: 2px solid var(--primary-blue) !important;
    border-radius: 0px;
    color: var(--black) !important;
}

.high-box-label-1 {
    color: #b91c1c;
    background-color: #fee2e2;
    padding: 1px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}

.orangee-box-label-1 {
    color: #c2410c;
    background-color: #ffedd5;
    padding: 1px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}

.aged-box-label-1 {
    color: #7e22ce;
    background-color: #f3e8ff;
    padding: 1px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}

.intelligence-dashboard .label-font {
    font-size: 12px;
    color: #02020fbd;
    font-weight: 400;
}

.blue-color-dash {
    color: #2563eb;
    font-weight: 500;
}

.contant-box-dash {
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 10px;
}

.box-bg-dashboard {
    background-color: var(--box-bg);
    padding: 7px 10px;
    border-radius: 6px;
}

.light-bg-badge {
    background-color: #e5e7eb;
    border-radius: 5px;
    font-size: 11px;
    padding: 2px 8px;
    margin-right: 3px;
    margin-bottom: 3px;
    width: fit-content;
    font-weight: 500;
}

.intelligence-dashboard .accordion-button:not(.collapsed) {
    background-color: #f8f9fa !important;
}

.intelligence-dashboard .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125) !important;
}

.intelligence-dashboard .accordion-item {
    border: 1px solid #dee2e6 !important;
    border-radius: 0.375rem;
    margin-bottom: 10px;
    overflow: hidden;
}

.intelligence-dashboard .accordion-button {
    border-radius: 0px !important;
    padding: 7px 10px !important;
}

.intelligence-dashboard .accordion-body {
    padding: 10px 15px;
}

.border-bottom-dashboard {
    border-bottom: 1px solid var(--border);
}

.low-box-label-1 {
    color: #2196f3;
    background-color: #e6f4ff;
    padding: 1px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}

.medium-box-label-1 {
    color: #d8a300;
    background-color: #e7af0825;
    padding: 1px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}


.high-count {
    font-weight: 600;
    background-color: #f974151f;
    border-color: #f974156e !important;
    color: #f97415;
}

.very-high-count {
    background-color: #f974151f;
    border-color: #f974156e !important;
    color: #f97415;
    font-weight: 600;
}

.extrem-high-count {
    border-color: #f43f5e66 !important;
    background-color: #f5899b17;
    color: #f87171;
    font-weight: 600;
}

.medium-count {
    background-color: #ecbc7933;
    border-color: #f59e0b66 !important;
    color: #f59e0b;
    font-weight: 600;
}

.low-count {
    border-color: #10b98166 !important;
    background-color: #5cd6c236;
    color: #0cba7b;
    font-weight: 600;
}

.risk-count {
    text-align: center;
    padding: 5px;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.low-box-risk {
    border: 2px solid #10b98166 !important;
    background-color: #5cd6c236;
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.extremely-high-box-risk {
    border: 2px solid #f43f5e66 !important;
    background-color: #f5899b17;
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.high-box-risk {
    background-color: #f974151f;
    border: 2px solid #f974156e !important;
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.very-high-box-risk {
    background-color: #f974151f;
    border: 2px solid #f974156e !important;
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.medium-box-risk {
    background-color: #ecbc7933;
    border: 2px solid#f59e0b66 !important;
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.medium-badge-assesment {
    border: 1px solid #f59e0b66;
    background-color: #ecbc7933;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    width: fit-content;
}

.low-badge-assesment {
    border: 1px solid #10b98166 !important;
    background-color: #5cd6c236;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    width: fit-content;
}

.critical-badge-assesment {
    background-color: #FF4D4D1F;
    border: 1px solid #FF4D4D4D !important;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    width: fit-content;
}

.high-badge-assesment {
    background-color: #f974151f;
    border: 1px solid #f974156e !important;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    width: fit-content;
}

.very-high-badge-assesment {
    background-color: #f974151f;
    border: 1px solid #f974156e !important;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    width: fit-content;
}

.extreme-high-badge-assesment {
    border: 1px solid #f43f5e66 !important;
    background-color: #f5899b17;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    width: fit-content;
}

.white-badge {
    background-color: #ffffff;
    padding: 0px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #02020F1F;
    width: fit-content;
    color: #000;
}

.approved-badge {
    border: 1px solid #10b98166 !important;
    background-color: #5cd6c236;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
}

.pending-approved-badge {
    border: 1px solid #e1e7ef !important;
    background-color: #f0f2f4a3;
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
}

.box-assessment {
    border: 2px solid #02020F1F;
    padding: 10px;
    border-radius: 8px;
}

.border-bottom-assessment {
    border-bottom: 1px solid #02020F1F;
}

.box-assessment.active {
    border: 2px solid #00AFEF;
}

.assessment-accodian .accordion-button {
    padding: 10px;
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;

    border-radius: 0px !important;
}

.assessment-accodian .accordion-item {
    border-bottom: 1px solid #02020F1F !important;
}

.assessment-accodian .accordion-body {
    padding: 0px 0px;
}

.assessment-accodian .accordion-button:focus {
    box-shadow: none;
}

.audit-form .accordion-button {
    padding: 10px;
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
    background-color: #F2F3F780 !important;
    border-radius: 6px !important;
    /* margin-bottom: 5px; */
    border-bottom: 1px solid #02020F1F !important;

}

.audit-form .accordion-item {
    background-color: #ffffff !important;
    border-radius: 6px !important;
    margin-bottom: 8px;
    border: 1px solid #02020F1F !important;
}

.audit-form .accordion-body {
    padding: 10px 15px;
}

.audit-form .accordion-button:focus {
    box-shadow: none;
}

.rejected-badge {
    background-color: #fa4848;
    padding: 0px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    color: #fff;
}

.green-light-card {
    border-color: #10b98166;
    background-color: #5cd6c236;
    color: #0cba7b;
}

.yellow-light-card {
    background-color: #ecbc7933;
    border-color: #f59e0b66;
    color: #f59e0b;
}

.red-light-card {
    background-color: #f5899b17;
    border-color: #f43f5e66;
    color: #f87171;
}

.purple-light-card {
    border-color: #8b5cf666;
    background-color: #b093ec3d;
    color: #8d6deb;
}

.purple-light-color {
    color: #8d6deb;
}

.red-light-color {
    color: #f87171;
}

.yellow-light-color {
    color: #f59e0b;
}

.green-light-color {
    color: #0cba7b;
}

.card-big-font {
    font-size: 20px;
    font-weight: 700;
}

.high-light-color {
    color: #f96b06;
}

.current-department-scroll .tom-select .ts-control {
    display: flex;
    flex-wrap: wrap;
    max-height: 60px;
    min-height: 60px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 2px solid var(--border) !important;
}

.current-department-scroll .tom-select .ts-control input {
    flex: 1 1 100%;
}

.current-department-scroll .tom-select .ts-control .item {
    white-space: nowrap;
}

.current-department-scroll .ts-control::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 20px !important;
    background-color: none !important;
}

.current-department-scroll .ts-control::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: none !important;
    border-radius: 20px !important;
    display: block !important;
}

.current-department-scroll .ts-control::-webkit-scrollbar-thumb {
    border-radius: 20px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); */
    background-color: #f2f3f7 !important;
}

.cursor-pointer {
    cursor: pointer;
}

.ts-dropdown-content::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 20px !important;
    background-color: none !important;
}

.ts-dropdown-content::-webkit-scrollbar {
    width: 7px;
    height: 4px;
    background-color: none !important;
    border-radius: 20px !important;
    display: block !important;
}

.ts-dropdown-content::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #f2f3f7 !important;
    border: 1px solid #02020f13;
}

.ts-dropdown-content
{
    max-height: 150px !important;
}
