@import url('general-sans.css');

/* ========================================================
   ROOT VARIABLES
   ======================================================== */
:root {
    /* Hamburger Menu Variables */
    --ham-width: 40px;
    --ham-height: 4px;
    --ham-margin: 6px;
    --ham-translate: 10px;
    --ham-translate-negative: -10px;

    /* Blue */
    --blue-50: #eff4ff;
    --blue-100: #dbe6fe;
    --blue-200: #bfd3fe;
    --blue-300: #93b4fd;
    --blue-400: #6090fa;
    --blue-500: #3b76f6;
    --blue-600: #2563eb;
    --blue-700: #1d58d8;
    --blue-800: #1e4baf;
    --blue-900: #1e408a;
    --blue-950: #172a54;

    /* Green */
    --green-50: #ecfdf8;
    --green-100: #d1faed;
    --green-200: #a7f3db;
    --green-300: #6ee7c1;
    --green-400: #34d3a2;
    --green-500: #10b985;
    --green-600: #059669;
    --green-700: #047854;
    --green-800: #065f43;
    --green-900: #064e38;
    --green-950: #022c1f;

    /* Neutral */
    --neutral-white: #fff;
    --neutral-50: #f9fbfb;
    --neutral-100: #f3f6f6;
    --neutral-200: #e5ebeb;
    --neutral-300: #d1dbdb;
    --neutral-400: #9cafae;
    --neutral-500: #6b807f;
    --neutral-600: #4b6361;
    --neutral-700: #37514f;
    --neutral-800: #1f3735;
    --neutral-900: #112726;
    --neutral-black: #000;

    /* Primary */
    --primary-50: #f0fdfc;
    --primary-100: #ccfbf8;
    --primary-200: #99f6f0;
    --primary-300: #5eeae1;
    --primary-400: #2dd4c9;
    --primary-500: #14b8ad;
    --primary-600: #0d948b;
    --primary-700: #0f766f;
    --primary-800: #115e59;
    --primary-900: #134e4a;
    --primary-950: #042f2c;

    /* Primary  */
    --primary-primary-selected-nav: #e7efee;

    /* Red */
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;

    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #d72323;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --red-950: #450a0a;

    /* Yellow */
    --yellow-50: #fff6eb;
    --yellow-100: #fee4c7;
    --yellow-200: #fdc88a;
    --yellow-300: #fcab4d;
    --yellow-400: #fb9724;
    --yellow-500: #f5880b;
    --yellow-600: #d97706;
    --yellow-700: #b46509;
    --yellow-800: #92550e;
    --yellow-850: #92400e;
    --yellow-900: #78470f;
    --yellow-950: #452603;
    /* Color Palette */
    --primary-bg: var(--primary-800);
    --text-dark: var(--neutral-black);
    --text-light: var(--text-light);
    --white: #fff;
    --black: var(--neutral-black);
    /* Transition Defaults */
    --transition-speed: 0.3s;

    /* Font Sizes */
    --text-heading-1: 32px;
    --text-heading-2: 24px;
    --text-heading-3: 20px;
    --text-body: 14px;
    --text-label: 14px;
    --text-label-small: 12px;
    /* Radius */
    --rounded: 16px;
    --rounded-md: 12px;
    --rounded-sm: 8px;
    --rounded-xs: 4px;
}

/* ========================================================
   CSS RESET & NORMALIZE
   ======================================================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'General Sans', sans-serif;
    line-height: 1.375;
    font-family: 'General Sans', sans-serif;
    font-weight: 400;
    color: var(--neutral-600);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.divider-border {
    height: 1px;
    background: var(--neutral-200);
}
.container {
    --bs-gutter-x: 2rem;
}
.container-fluid {
    --bs-gutter-x: 3rem;
}

.body-wrapper {
    position: relative
}

.body-wrapper>.container-fluid,.body-wrapper>.container-lg,.body-wrapper>.container-md,.body-wrapper>.container-sm,.body-wrapper>.container-xl,.body-wrapper>.container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    transition: .2s ease-in
}
/* ========================================================
   TYPOGRAPHY
   ======================================================== */
a {
    text-decoration: none;
    -webkit-transition: all var(--transition-speed) ease;
    -o-transition: all var(--transition-speed) ease;
    transition: all var(--transition-speed) ease;
}

a:hover {
    text-decoration: none !important;
}

strong {
    font-weight: 500;
}

u {
    border-bottom: 1px solid var(--black);
    line-height: 1;
    text-decoration: unset;
}
h1,
h2,
h3 {
    color: var(--neutral-900);
    font-weight: 500;
}
h1,
h2,
h3,
li,
p {
    margin: 0;
}
.heading-1,
h1 {
    font-size: var(--text-heading-1);
    line-height: 1.375;
}
.heading-2,
h2 {
    font-size: var(--text-heading-2);
    line-height: 1.33;
}
.heading-3,
h3 {
    font-size: var(--text-heading-3);
    line-height: 1.4;
}
h4,
body,
p {
    font-size: var(--text-body);
    line-height: 1.375;
}
.label,
label {
    font-size: var(--text-label);
    line-height: 1.43;
}
.small,
label.small {
    font-size: var(--text-label-small);
    line-height: 1.33;
}
/* ========================================================
   4. LAYOUT UTILITIES
   ======================================================== */
.transition-all {
    -webkit-transition: all var(--transition-speed) ease;
    -o-transition: all var(--transition-speed) ease;
    transition: all var(--transition-speed) ease;
}

/* ========================================================
   5. COLORS
  ======================================================== */
.yellow-600 {
    color: var(--yellow-600) !important;
}
.blue-500 {
    color: var(--blue-500);
}
.blue-800 {
    color: var(--blue-800) !important;
}
.green-800 {
    color: var(--green-800) !important;
}
.primary-800 {
    color: var(--primary-800);
}
/* Bgs */
.bg-red-700 {
    background: var(--red-700);
}
.bg-yellow {
    background: #fbbf24;
}
.bg-blue {
    background: #60a5fa;
}

/* ========================================================
   INTERACTIVE ELEMENTS
   ======================================================== */
/* button {
    background-color: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
} */
/*
button:active,
button:focus {
    outline: 0;
    box-shadow: none;
} */

a*:active,
a*:focus {
    outline: 0;
    border: 0;
}
main {
    padding-bottom: 32px;
    padding-top: 88px;
}

/* ========================================================
Login
   ======================================================== */
.radial-gradient {
    position: relative
}
.radial-gradient::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .3;
    background: radial-gradient(#d2f1df,#d3d7fa,#bad8f4) 0 0/400% 400%;
    animation: 15s ease 0s infinite normal none running gradient
}
.btn-white {
  background-color: #fff;
  border-color: #E5E9F2;
}
.btn:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}


/* ========================================================
Nav
   ======================================================== */
.navbar {
    border-bottom: 1px solid var(--neutral-100);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    padding: 16px 0;
}
.buy-credits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 26px;
    background: var(--primary-700);
    border-radius: 6px;
    border: 0;
    padding: 0;
    border: 1px solid var(--primary-700);
}
.btn-icon {
    background: var(--white);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 8px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.btn-icon span {
    font-size: var(--text-label);
    font-weight: 500;
    color: var(--neutral-700);
}
.btn-text {
    display: block;
    padding: 0 12px;
    color: var(--white);
    font-size: var(--text-label);
    font-weight: 500;
}
.btn-secondary {
    line-height: 1;
}
.dropdown-menu[data-bs-popper] {
    left: unset;
    right: 0;
}
.dropdown-item span {
    font-size: var(--text-label);
    font-weight: 400;
    color: #212529;
}
.dropdown-item {
    padding-top: 8px;
    padding-bottom: 8px;
}
.dropdown-menu {
    padding: 0;
}
.dropdown-menu li a {
    line-height: 1.5;
}
/* ========================================================
Dashboard
   ======================================================== */
.welcome h2 {
    font-weight: 500;
    margin-bottom: 4px;
}
.alert-success {
    border-radius: var(--rounded-md);
    border: 1px solid var(--green-500);
    background: var(--green-50);
    gap: 12px;
}
.alert-warning {
    border-radius: var(--rounded-md);
    border: 1px solid var(--yellow-500);
    background: var(--yellow-50);
    gap: 12px;
}
.alert-success h4,
.alert-warning h4 {
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.38;
  color: var(--neutral-900);
}
.alert p {
    font-size: var(--text-label);
}
.alert-success a {
  color: var(--success-700);
}
.alert-warning a {
    text-decoration: underline;
}
.alert-warning a {
    font-weight: 500;
    color: var(--neutral-600);
}
/* Tooltip */
.custom-tooltip {
    --bs-tooltip-bg: var(--primary-700);
    --bs-tooltip-color: var(--white);
}

.assessments,
.chart-card,
.assessment-card {
    border-radius: var(--rounded-md);
}

.chart-card-head {
    padding: 16px 24px;
}
.chart-card-head h3 {
    margin-bottom: 5px;
}
/* Chart Label */
.label-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--white);
}
.chart-label {
}
.label-text {
    color: var(--neutral-900);
}
.label-number {
    color: var(--neutral-600);
}
/* card */
.assessment-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}
.assessment-card.active,
.assessment-card:hover {
    background: var(--neutral-200);
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}
.welcome {
    margin-bottom: 24px;
}
.assessment-card-main p {
    font-size: var(--text-label-small);
    font-weight: normal;
    line-height: 1.33;
    color: var(--neutral-600);
}
.statusType {
    border-radius: 6px;
    border: 1px solid var(--green-500);
    gap: 4px;
    padding: 3px 8px !important;
}
.statusType span {
    font-size: var(--text-label-small);
    font-weight: 500;
    line-height: 1.33;
}
.sync-text span {
  font-size: var(--text-label);
  font-weight: 500;
  color: var(--green-600);
}
.sync-text.failed span {
  color: var(--red-600);
}
.sync-text.inprogress span,
.sync-text.pending span {
  color: var(--blue-600);
}
.ac-brand {
    gap: 10px;
}
.gap-10 {
    gap: 10px;
}
.global {
    gap: 8px;
}
.global span {
    font-size: var(--text-label-small);
    font-weight: normal;
    line-height: 1.33;
    color: var(--neutral-600);
}
.assessment-card-bottom {
    gap: 12px;
}
.number {
    gap: 8px;
}
.number span {
    font-size: var(--text-label-small);
    font-weight: 500;
    /* padding: 2px 12px; */
    padding-left: 12px;
    padding-right: 12px;
    border-radius: var(--rounded-xs);
    min-width: 32px;
    line-height: 24px;
    display: block;
}

.number-1 {
    background-color: var(--red-100);
    color: var(--red-900);
}
.number-2 {
    background-color: var(--yellow-100);
    color: var(--yellow-900);
}
.number-3 {
    background-color: var(--blue-100);
    color:  var(--blue-900);
}
.ac-brand span {
    font-size: var(--text-body);
    font-weight: 500;
    line-height: 1.38;
    color: var(--primary-800);
}
.continuous {
    border: solid 1px var(--blue-400);
}
.continuous span {
    color: var(--blue-700);
}
.one-time span {
    color: var(--green-600);
}
.view-all {
    text-align: right;
    padding-top: 20px;
    padding-bottom: 20px;
}
.view-all a {
    font-size: var(--text-label);
    font-weight: 500;
    line-height: 1.14;
    color: var(--primary-800);
    text-decoration: underline;
}
.risk-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* padding: 16px 24px; */
}

.risk-count h2 {
    color: var(--neutral-600);
    font-size: var(--text-label);
    font-weight: 400;
}

.risk-count .count {
    font-size: var(--text-heading-3);
    font-weight: 500;
    color: var(--neutral-900);
    margin: 0;
}

.filter-dropdown {
    position: relative;
}

.dropdown-toggle-custom {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: var(--rounded-sm);
    padding: 8px 16px;
    color: #6c757d;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dropdown-toggle-custom:hover {
    background-color: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
}

.dropdown-menu-custom {
    background: var(--neutral-50);
    border: 1px solid #dee2e6;
    border-radius: var(--rounded-sm);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 20px 12px;
    min-width: 150px;
    position: absolute;
    top: 100%;
    margin-top: 2px;
    right: 0;
    z-index: 1000;
    display: none;
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-item-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: var(--neutral-800);
    text-decoration: none;
    cursor: pointer;
}

.dropdown-item-custom:hover {
    background-color: #f8f9fa;
}
/*  */
.custom-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.custom.checkbox > label,
.custom.radio > label {
    position: relative;
    cursor: pointer;
    padding-left: 32px;
}
.custom input[type='checkbox'],
.custom input[type='radio'] {
    position: relative;
    margin-left: -26px;
    margin-right: 12px;
    cursor: pointer;
}
.custom input[type='checkbox']:after,
.custom input[type='radio']:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    width: 20px;
    height: 20px;
    background: var(--primary-800);
    border: 1px solid var(--primary-800);
    cursor: pointer;
}
.custom input[type='checkbox']:before {
    -webkit-transition: -webkit-transform 0.4s
        cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -o-transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75),
        -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: '';
    position: absolute;
    left: -1px;
    z-index: 1;
    width: 13px;
    height: 7.5px;
    border: 2px solid var(--white);
    border-top-style: none;
    border-right-style: none;
}
.custom input[type='checkbox']:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}
.custom input[type='checkbox']:after {
    border-radius: var(--rounded-xs);
}
.checkbox.custom label {
    /* color: var(--primary-800); */
    font-size: var(--text-body);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--neutral-800);
    text-decoration: none;
    cursor: pointer;
}
/*
.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-800);
    border-radius: var(--rounded-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.custom-checkbox.checked {
    background-color: var(--primary-800);
    border-color: var(--primary-800);
}

.custom-checkbox.checked::after {
    content: '';
    background-image: url('../img/assessmen-details/check.svg');
    background-size: 14px 12px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
} */

.risk-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.risk-high {
    background-color: #dc3545;
}
.risk-medium {
    background-color: #ffc107;
}
.risk-low {
    background-color: #6ea8fe;
}

.chart-container {
    display: -webkit-box;
    display: -ms-flexbox;
    overflow: hidden;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chart-placeholder {
    width: 300px;
    height: 300px;
    background: -o-linear-gradient(
        45deg,
        #dc3545 0%,
        #dc3545 50%,
        #6ea8fe 50%,
        #6ea8fe 70%,
        #ffc107 70%,
        #ffc107 100%
    );
    background: linear-gradient(
        45deg,
        #dc3545 0%,
        #dc3545 50%,
        #6ea8fe 50%,
        #6ea8fe 70%,
        #ffc107 70%,
        #ffc107 100%
    );
    border-radius: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.chart-placeholder::after {
    content: '';
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    position: absolute;
}
/*
.legend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.legend-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
} */

/* =======================================
buttons
========================================== */
.btn {
    border-radius: 6px;
    line-height: 40px;
    padding: 0 16px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.btn-primary {
    background: var(--primary-800);
    color: var(--white);
}
.btn-outline-primary {
    color: var(--primary-800);
}
.btn-light {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-100);
    color: var(--neutral-600);
}
.btn-outline-light {
    border: 1px solid var(--neutral-300);
    background: var(-white);
    color: var(--neutral-800);
}
.btn-outline-primary,
.btn-primary {
    border: 1px solid var(--primary-800);
}
.btn-danger {
    background: var(--red-500);
    background: var(--red-500);
    border-color: var(--red-500);
}
.btn-outline-danger {
    color: var(--red-500);
    border-color: var(--red-500);
}
.btn-sm {
    font-size: var(--text-label);
    font-weight: 500;
    line-height: 34px;
}
.btn-xs {
    font-size: var(--text-label-small);
    font-weight: 500;
    line-height: 22px;
    padding-left: 8px;
    padding-right: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
}
.btn.btn-profile {
    line-height: 26px;
    background-color: var(--primary-primary-selected-nav);
    color: var(--primary-800);
    border-color: var(--primary-primary-selected-nav);
    border-radius: var(--rounded-sm);
    font-size: var(--text-label);
    padding-left: 12px;
    padding-right: 36px;
    background-image: url('../images/common/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.btn.btn-profile:hover,
.btn.btn-profile:active,
.btn.btn-profile:focus {
    background-color: var(--primary-primary-selected-nav);
    color: var(--primary-800);
    border-color: var(--primary-primary-selected-nav);
}
.btn-outline-info {
    border-color: var(--blue-700);
    color: var(--blue-700);
}
.btn-primary:hover {
    background: var(--primary-950);
    border-color: var(--primary-950);
}
.btn-primary:hover svg:not(.filter-icon) path {
    fill: var(--white);
}
.btn-outline-primary:focus svg:not path,
.btn-outline-primary:active svg:not path,
.btn-outline-primary:hover svg:not path {
    fill: var(--white);
}
.btn-outline-primary:hover svg.filter-icon path {
    stroke: var(--white);
}
.btn-outline-primary:active,
.btn-outline-primary:hover {
    background: var(--primary-800) !important;
    border-color: var(--primary-800) !important;
    color: var(--white) !important;
}
.btn-light:hover {
    background: var(--neutral-200);
    border-color: var(--neutral-200);
}
.btn-outline-info:hover {
    background: var(--primary-800);
    border-color: var(--primary-800);
    color: var(--white);
}
.btn-outline-info:hover svg path {
    stroke: var(--white);
}
.dropdown-toggle::after {
    border: 0;
    display: none;
}
.dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
}
.btn-sm.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}
.btn:focus-visible,
.btn-check:checked + .btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check) + .btn:active:focus-visible {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.btn-primary,
.btn-outline-primary {
    --bs-btn-color: var(--primary-800);
    --bs-btn-border-color: var(--primary-800);
    --bs-btn-hover-bg: var(--primary-800);
    --bs-btn-hover-border-color: var(--primary-800);
    --bs-btn-active-bg: var(--primary-800);
    --bs-btn-active-border-color: var(--primary-800);
    --bs-btn-disabled-color: var(--primary-800);
    --bs-btn-disabled-border-color: var(--primary-800);
    /* --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-active-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-gradient: none; */
}

.btn-primary.disabled,
.btn-primary:disabled,
fieldset:disabled .btn-primary {
    border-color: var(--neutral-400);
    background: var(--neutral-400);
    color: var(--white);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled,
fieldset:disabled .btn-outline-primary {
    border-color: var(--neutral-300);
    color: var(--neutral-400);
}
/* --------------------
Toggle
------------------------*/
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-switch input[type='checkbox'] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-200);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: var(--rounded-md);
}

.toggle-slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-image: url('../images/common/cross.svg');
}

/* X icon for unchecked state */
.toggle-slider:before {
    background-image: url('../images/common/cross.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

input:checked + .toggle-slider {
    background-color: var(--primary-800);
}

input:checked + .toggle-slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    background-image: url('../images/common/tik.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}
/* --------------------
Messages
------------------------*/
.success-msgbox{
    padding: 20px 50px 20px 25px;
    background: #ECFDF8;
    border-radius: 8px;
    border: 1px solid #D1FAED;
    position: relative;
    overflow: hidden;
    margin: 0 0 25px;
}
.success-msgbox  i {
    margin-right: 8px;
    font-size: 16px;
}
.error-msgbox{
    padding: 20px 50px 20px 25px;
    background: #FEF2F2;
    border-radius: 8px;
    border: 1px solid #FEE2E2;
    position: relative;
    overflow: hidden;
    margin: 0 0 25px;
}
.error-msgbox  i {
    margin-right: 8px;
    font-size: 16px;
}
.success-msgbox:before{
    position: absolute;
    content: '';
    width: 6px;
    height: 100%;
    background: #059669;
    left: 0;
    top: 0;
}
.error-msgbox:before{
    position: absolute;
    content: '';
    width: 6px;
    height: 100%;
    background: #D72323;
    left: 0;
    top: 0;
}
.success-msgbox h3{
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #065F43;
}
.error-msgbox h3{
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #991B1B;
}
.success-msgbox h3 img{
    min-width: 16px;
    margin-right: 10px;
}
.error-msgbox h3 img{
    min-width: 16px;
    margin-right: 10px;
}
.close-msg{
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 18px;
    color: #047854;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.error-msgbox .close-msg{
    color: #991B1B;
}
.close-msg:hover{
    color: #333;
}

/* ========================================================
Tables
   ======================================================== */
/* Pagination Styles */
.page-link {
    width: 38px !important;
    height: 38px !important;
    padding: 0;
    border-color: var(--bs-gray-200);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-item:first-child .page-link,
.page-link.disabled,
.disabled > .page-link {
    background: var(--white);
}

.dt-paging-button.page-item.disabled {
    opacity: 0.6;
}

.dt-paging {
    margin: 12px 16px 12px 0 !important;
}

/*Table Layout & Structure*/
table:not('#assessmentsTable') {
    table-layout: fixed;
    width: 100%;
}

.table > :not(caption) > * > * {
    color: var(--neutral-900);
    font-size: var(--text-body);
    padding-top: 16px;
    padding-bottom: 16px;
    border-color: var(--neutral-200);
}
.dt-layout-full table.assessmentsTable,
.table-responsive table.assessmentsTable {
    min-width: 1070px;
}
.dt-layout-full table.assessmentHistory,
.table-responsive table.assessmentHistory {
    min-width: 950px;
}
.dt-layout-full table.apiKeyTable,
.table-responsive table.apiKeyTable {
    min-width: 780px;
}
.dt-layout-full table.paymentsTable,
.table-responsive table.paymentsTable {
    min-width: 950px;
}
table.paymentsTable td.refunded {
    color: var(--danger-600);
    text-decoration: line-through;
}
.dt-type-date + td,
.dt-type-date {
    white-space: nowrap;
}
tr:last-child td {
    border-bottom: 0;
}
.risk-table-container,
.dt-layout-full {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.risk-table-container table {
    min-width: 420px;
}
.table-responsive {
    overflow: hidden;
}
/* width */
.risk-table-container::-webkit-scrollbar,
.dt-layout-full::-webkit-scrollbar {
    /* width: 10px; */
    height: 20px;
}

/* Track */
.risk-table-container::-webkit-scrollbar-track,
.dt-layout-full::-webkit-scrollbar-track {
    background: var(--white);
}

/* Handle */
.risk-table-container::-webkit-scrollbar-thumb,
.dt-layout-full::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: 20px;
}

/* Handle on hover */
.risk-table-container::-webkit-scrollbar-thumb:hover,
.dt-layout-full::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-600);
}
/* Text Alignment */
table.dataTable thead th,
table.dataTable td.dt-type-numeric,
table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-date,
table.dataTable td,
table.dataTable th {
    text-align: center;
}

table.dataTable th:nth-child(1),
table.dataTable td:nth-child(1),
table.dataTable th:nth-child(2),
table.dataTable td:nth-child(2) {
    text-align: left;
}

/* Column Specific Styles */
th:first-child,
td:first-child {
    width: 50px !important;
    font-weight: 500;
}

.dt-column-title {
    font-weight: 500;
    font-size: var(--text-label);
}

.assessmentsTable .assessment-name {
    font-weight: 500;
}
.assessment-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/* Row & Container Layout */
.dt-container .row > * {
    padding-left: 0;
    padding-right: 0;
}

.dt-container .row.mt-2 {
    margin: 0 !important;
}

.dt-layout-table {
    padding-left: 16px !important;
    padding-right: 16px !important;
    border-bottom: 1px solid var(--neutral-200);
}

/* Info Text */
.dt-info {
    font-size: var(--text-label);
    font-weight: 500;
    color: #49535c;
    padding-left: 16px !important;
}

/* Status Coloring */
td span.success {
    color: var(--green-600);
}

td span.danger {
    color: var(--red-600);
}

td span.inprogress {
    color: var(--yellow-600);
}

#apiKeyTable_wrapper .dataTables_filter {
  display: none !important;
}


/* ========================================================
Assessment Details
   ======================================================== */
.resource-card {
    border: 1px solid var(--neutral-200);
}
.resource-card h3 {
    font-weight: 500;
    min-height: 44px;
    font-size: var(--text-label);
    /*margin-bottom: 4px;
    margin-top: 4px;*/
}
.resource-card h6 {
    font-size: var(--text-label);
    font-weight: 400;
    margin: 0;
}
.resource-card {
    height: 100%;
}
.resource-card p {
    margin-top: 16px;
    margin-bottom: 16px;
}
.resource-card img {
    max-width: 100%;
    margin: 0 0 16px;
    height: 32px;
}
.gapy-3 {
    gap: 16px 0;
}
.encryption-card {
    border: 1px solid var(--neutral-200);
    height: 100%;
}
.encryption-title {
}
.encryption-title h5 {
    font-size: var(--text-body);
    margin: 0;
    color: var(--neutral-900);
}
.encryption-title h6 {
    font-size: var(--text-label-small);
    font-weight: 400;
}
.verified {
    background: var(--green-600);
    color: var(--white);
}
.green-100 {
    background: var(--green-100);
}
.green-700 {
    color: var(--green-700);
}
.tags span {
    background: var(--neutral-100);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: var(--text-label);
    color: var(--neutral-700);
    font-weight: 500;
}
.verified span {
    font-size: var(--text-label);
}
.red-700 {
    color: var(--red-700);
}
.red-50 {
    background: var(--red-50);
}
.encryption-text p {
    /*overflow: hidden;*/
    /*display: -webkit-box;*/
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sync-status {
    gap: 28px 0;
}
.sync-status-text {
}
.sync-status-text h5 {
    margin: 0;
    font-size: var(--text-body);
    color: var(--neutral-900);
}
.sync-status-text h6 {
    color: var(--neutral-600);
    font-size: var(--text-label);
    margin-bottom: 5px;
    font-weight: 400;
}
.sync-status-icon span{
    border-radius: 8px;
    background:rgba(5, 81, 96, 0.10);
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.view-more button {
    background: transparent;
    border: 0;
}
/* Risk Table */
.risk-title-cell {
    position: relative;
    padding-left: 40px !important;
    cursor: pointer;
}

.chevron-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: var(--text-label-small);
    color: #666;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.risk-row.expanded .chevron-icon {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.risk-table-container .table tr th {
    font-weight: 500;
    font-size: var(--text-label);
}
.risk-table-container .table th:first-child,
.risk-table-container .table td:first-child {
    width: auto !important;
}
.risk-table-container .table tr th:nth-child(3),
.risk-table-container .table tr th:nth-child(4) {
    text-align: center;
}
.impacted-count {
    text-align: center;
}
.description {
    background: var(--neutral-200);
    padding-top: 12px;
    padding-bottom: 12px;
}
.description-section {
    margin-bottom: 10px;
}
.risk-title {
    color: var(--neutral-900);
}
.section-label {
    font-size: var(--text-label-small);
    font-weight: 400;
    color: var(--neutral-600);
}
.section-content {
    font-size: var(--text-label);
}
.impacted-resources-content {
    font-size: var(--text-label);
}
.severity-badge {
    color: var(--colors-red-800);
    font-size: var(--text-label);
    font-weight: 500;
    padding: 3px 12px;
    border-radius: var(--rounded-md);
}
.severity-high {
    background-color: var(--red-100);
    color: var(--red-800);
}
.severity-medium {
    background: var(--yellow-100);
    color: var(--yellow-850);
}
.severity-low {
    background: var(--blue-100);
    color: var(--blue-800);
}
.no-data-box {
  min-height: 200px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.no-data-box-scoring {
  min-height: 300px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.no-data-inner i {
  width: 60px;
  height: 60px;
  background: #E7EFEE;
  border-radius: 30px;
  line-height: 60px;
  text-align: center;
  margin: 0 auto 10px;
  font-size: 30px;
  font-weight: bold;
  color: #115E59;
  display: block;
}
.no-data-inner p {
  margin: 0;
  color: var(--neutral-800, #333);
  font-weight: 500;
}
.info-hintbx {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
}
.info-hintbx i {
  font-size: 16px;
  color: var(--primary-600, #007bff);
  transition: color 0.2s;
}
.info-hintbx:hover i {
  color: var(--primary-800, #0056b3);
}
.hint-hoverbox {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--neutral-200, #e5e7eb);
  border-radius: 8px;
  padding: 12px 14px;
  width: 280px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.info-hintbx:hover .hint-hoverbox {
  display: block;
}
.hint-hoverbox {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.info-hintbx:hover .hint-hoverbox {
  opacity: 1;
  visibility: visible;
}
.hint-hoverbox h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hint-hoverbox p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}
.expandable-content {
  display: none; /* hidden by default */
  background-color: #f8f9fa;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.expandable-content.show {
  display: table-row; /* ensures proper table layout */
  opacity: 1;
  visibility: visible;
}
.expandable-content td {
  padding-left: 20px;
}
.scoring-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 300px;
}

.chart-wrapper {
  max-width: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
/* ========================================================
Buy Credits
   ======================================================== */
.purchase-card {
   padding: 32px;
   padding-bottom: 24px;
   -webkit-transition: 0.3s;
   -o-transition: 0.3s;
   transition: 0.3s;
}
.bdrs-3 {
   border-radius: var(--rounded-md);
}

.purchase-top-title h2 {
   color: var(--neutral-800);
   font-weight: 500;
}
.purchase-top-title p {
   font-size: var(--text-label);
   color: var(--neutral-600);
}
.purchase-creadit strong {
   display: block;
   font-weight: 600;
   font-size: var(--text-heading-1);
}
.purchase-creadit p {
   gap: 5px;
   font-weight: 500;
}

.purchase-card:hover,
.pro-card {
   background-color: var(--primary-50);
   cursor: pointer;
}
.modal-dialog {
   max-width: 555px;
   top: 20%;
}
.modal-text p {
   font-size: var(--text-label);
}
.modal-text p span {
   font-weight: 500;
}
.purchase-status-success img,
.purchase-status-cancel img {
  width: 64px;
  height: 64px;
  display: inline-block;
}

.purchase-status-success img {
  filter: invert(48%) sepia(81%) saturate(464%) hue-rotate(93deg) brightness(96%) contrast(89%);
}

.purchase-status-cancel img {
  filter: invert(31%) sepia(83%) saturate(6220%) hue-rotate(345deg) brightness(95%) contrast(90%);
}
/* =======================================
Forms
========================================== */
.form-label.disabled {
    color: var(--neutral-500);
}
.form-label {
    color: var(--neutral-800);
    font-weight: 500;
    font-size: var(--text-label);
    line-height: 1.43;
    margin-bottom: 4px;
}
.form-control:disabled:disabled {
    background: var(--neutral-100);
    border-color: var(--neutral-100);
}

textarea,
.form-control,
.form-select {
    border-radius: var(--rounded-sm);
    border: 1px solid var(--neutral-300);
    background: var(--white);
    -webkit-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0 12px;
}
.form-control,
.form-select,
.form-check-label {
    color: var(--neutral-600);
    font-size: var(--text-body);
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}
.form-check-label {
    line-height: 1;
}
.form-select {
    background-image: url('../images/common/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.input-faded .form-select {
    background-image: url('../images/common/chevron-down-faded.svg');
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-700);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(17, 94, 89, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(17, 94, 89, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: var(--neutral-600);
}

.form-control::-moz-placeholder {
    color: var(--neutral-600);
}

.form-control:-ms-input-placeholder {
    color: var(--neutral-600);
}

.form-control::-ms-input-placeholder {
    color: var(--neutral-600);
}

.form-control::placeholder {
    color: var(--neutral-600);
}

.radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 8px 0;
}
.radio-group > div > label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  margin-top: 0;
}
.form-check {
    margin: 0;
}

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

.form-check-label {
    color: var(--primary-700);
    font-weight: 400;
}

textarea.form-control {
    resize: vertical;
    height: 96px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--neutral-300);
}
.gap-y-22 {
    row-gap: 22px;
}
.sync-interval-container {
    display: none; /* Hide initially */
}

.sync-interval-container.show {
    display: block;
}
/* Custom radio button styling */
.form-check-input[type='radio'] {
    border: 2px solid var(--neutral-400);
}

.form-check-input[type='radio']:checked {
    background-color: var(--primary-800);
    border-color: var(--primary-800);
}

.form-check-input[type='radio']:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Disabled radio button styling */
.form-check-input[type='radio'].readonly {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-check-input[type='radio'].readonly + .form-check-label {
    opacity: 0.5;
    cursor: not-allowed;
}
/*  */
.input-secret {
    position: relative;
}
.password-toggle {
    position: absolute;
    z-index: 10;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
}
.input-faded label,
.input-faded .form-select,
.input-faded option,
.input-faded .form-control {
    color: var(--neutral-400);
    border-color: var(--neutral-200);
}

.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
}

/*===========================================================
 FORMS & INPUTS
============================================================*/
::-webkit-input-placeholder {
    color: var(--neutral-600);
    font-size: var(--text-body);
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

:-moz-placeholder {
    color: var(--neutral-600);
    font-size: var(--text-body);
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

::-moz-placeholder {
    color: var(--neutral-600);
    font-size: var(--text-body);
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

:-ms-input-placeholder {
    color: var(--neutral-600);
    font-size: var(--text-body);
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}
/* Tabs */
.na-tabs {
    padding: 24px;
}
.na-tabs .nav-link {
    border: 1px solid var(--neutral-200);
    background: var(--neutral-50);
}
.na-tabs .nav-link img {
    width: 40px;
}
.na-tabs .nav-link span {
    font-size: var(--text-body);
    font-weight: 500;
    line-height: 1.375;
    color: var(--primary-800);
}
.nav-pills .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    gap: 16px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    border: 2px solid var(--primary-800);
    background: var(--primary-primary-selected-nav);
}
.nav-pills {
    display: -ms-grid;
    display: grid;
    gap: 16px;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(4, 1fr);
}
.nav-pills .nav-item {
    width: 100%;
}
.nav-link:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
/* step-instructions */
.step-instructions {
    border-radius: var(--rounded-md);
    background: var(--neutral-50);
}
.step-instructions ol {
    padding-left: 24px;
}
.step-instructions ol li {
    color: var(--neutral-600);
}
.step-instructions ol li span {
    font-weight: 500;
    color: var(--neutral-900);
}
.step-instructions ::marker {
    color: var(--neutral-900);
    margin-right: 4px;
}
.neutral-400 {
    background: var(--neutral-400) !important;
    border: 1px solid transparent !important;
}
.project-details-card h6 {
    font-size: var(--text-label);
    font-weight: normal;
    line-height: 1.43;
    margin: 0;
    color: var(--neutral-600);
}

.basic-text {
    color: var(--blue-700);
}
.field-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size:16px;
  color: var(--neutral-500, #6c757d);
}
.field-icon:hover {
  color: var(--neutral-500, #6c757d);
}

/* ========================================================
My Account
   ======================================================== */
.cantChange {
    color: var(--red-600);
    margin-top: 4px;
}
.settings-form h4 {
    color: var(--primary-900);
    margin-bottom: 4px;
}
.settings-form p {
    font-size: var(--text-label);
    color: var(--neutral-600);
}
/* ========================================================
API Keys
   ======================================================== */
.top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px solid var(--neutral-200);
}
/* Search */
div.dt-container div.dt-search input,
.search-container .dt-search input {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    width: 400px;
    max-width: 100%;
    height: 34px;
    border-color: var(--neutral-300);
    border-radius: var(--rounded-sm);
    margin-left: 0;
}
.search-container .dt-search label {
    display: none;
}
.custom-search {
    background-image: url('../images/common/search.svg') !important;
    background-repeat: no-repeat !important;
    background-position: 12px center !important;
    padding-left: 40px !important;
    width: 400px;
}

.dt-search {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

/* Table Other styles */
.top-api-bar {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
td .number,
td button {
    margin-left: auto;
    margin-right: auto;
}
td span.a-package {
    display: block;
    font-weight: 500;
    font-size: var(--text-label);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1199px) {
    .nav-pills .nav-link {
        height: 120px;
    }
    .purchase-creadit {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .purchase-card {
        padding: 24px;
    }
    .alt-tech-card .custom-search {
        width: 330px;
    }
}
@media (max-width: 991px) {
    .step-text {
        max-width: 100px;
    }
    .step-item {
        padding-right: 0;
    }
    .step-instructions {
        margin-top: 24px;
    }
    .package-card {
        padding: 16px;
    }
    .purchase-creadit {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .alt-tech-card .custom-search {
        width: 100%;
        max-width: 100%;
    }
    .alt-tech-card div {
        width: 100%;
        /* justify-content: flex-end; */
    }
    .alt-tech-card {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px;
    }
    .chart-card-head {
        padding-left: 16px;
        padding-right: 16px;
    }
    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 767px) {
    main {
        padding-top: 24px;
    }
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .btn {
        padding-left: 12px;
        padding-right: 12px;
    }
    .radio-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .gap-y-32 {
        row-gap: 16px;
    }
    main {
        padding-top: 88px;
    }
    .nav-pills {
        gap: 8px;
        -ms-grid-columns: 1fr 8px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-pills .nav-link {
        padding: 12px;
        height: 130px;
    }
    .na-tabs .nav-link span {
        font-size: var(--text-label);
    }
    .na-tabs .nav-link img {
        max-width: 30px;
    }
    .purchase-card,
    .na-tabs {
        padding: 16px;
    }
    /* .container {
        --bs-gutter-x: 40px;
    } */

    /* step-progress */
    .step-progress {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 16px;
    }
    .step-item {
        padding-left: 0;
        padding-right: 0;
    }
    .step-text {
        max-width: 100%;
    }
    .step-progress::before {
        position: absolute;
        top: 0;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        left: 15px;
        right: 0;
        height: 100%;
        background: var(--neutral-200);
        content: '';
        z-index: 1;
        width: 2px;
    }

    .step-item {
        position: relative;
        z-index: 10;
    }
    .step-number {
        position: relative;
        z-index: 11;
    }
    /* .step-item.pending::before {
        position: absolute;
        width: 2px;
        height: 250px;
        left: 15px;
        bottom: 0;
        background: red;
        z-index: 0;
        content: '';
    } */
    .step-progressbar {
        display: none;
    }
    .step-progressbar-mobile {
        display: block;
    }
    .step-progressbar-mobile {
        position: absolute;
        z-index: 1;
    }
    .step-progressbar-mobile {
        width: 2px;
        /* height: 25%; */
        top: 16px;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        left: 15px;
        background: var(--primary-800);
    }
    .top-api-bar {
        gap: 16px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .top-api-bar input,
    .top-api-bar div {
        width: 100%;
    }
    .top-api-bar {
        padding: 16px;
    }

    .project-title div:last-child {
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (max-width: 439px) {
    .assessment-top {
        gap: 16px;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
}

/* ========================================================
Assessment
  ======================================================== */

.form-title {
    font-size: var(--text-heading-2);
    font-weight: 500;
    line-height: 1.33;
    color: var(--neutral-900);
}
.package-card {
    padding: 32px;
    border: 1px solid transparent;
    border-radius: var(--rounded-md);
    cursor: pointer;
    height: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.package {
    position: relative;
}
.pricing-card {
    width: 100%;
    padding: 0 !important;
    height: 100%;
}
.package input[type='radio'] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.package input[type='radio']:checked + label {
    border: solid 1px var(--primary-600);
    background-color: var(--primary-50);
    border-radius: var(--rounded-md);
}
.included li {
    gap: 8px;
    margin: 10px 0;
}
.comming-soon {
    font-size: var(--text-label);
    font-weight: 500;
    line-height: 1.43;
    color: var(--neutral-600);
    padding: 4px 8px;
    border-radius: 6px;
    background-color: var(--neutral-200);
}
.comming-soon-package {
    background-color: var(--neutral-100);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}
.package-title h2 {
    font-weight: 500;
    line-height: 1.33;
    color: var(--neutral-800);
}
.package-title h1 {
    font-weight: 600;
    gap: 10px;
}
.package-title h1 img {
  width: 28px;
  height: auto;
}
/* .package-card:hover,
.basic-package {
    border: solid 1px var(--primary-600);
    background-color: var(--primary-50);
} */
.package-controls {
    padding-top: 80px;
    padding-bottom: 32px;
}
.step-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.step-progress::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neutral-200);
    content: '';
    z-index: 1;
}
.step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 20;
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;

    background: var(--white);
}
.step-item:nth-child(1) {
    padding-left: 0;
}
.step-item:nth-last-child(2) {
    padding-right: 0;
}
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: var(--text-label);
    font-weight: 500;
    border: solid 2px var(--neutral-200);
    position: relative;
    z-index: 9;
    background: var(--white);
}

.completed .step-number,
.pending .step-number {
    color: var(--primary-800);
    border-color: var(--primary-800);
}
.step-text {
    font-size: var(--text-label);
    color: var(--neutral-600);
    font-weight: 500;
    position: relative;
    z-index: 9;
    background: var(--white);
}
.completed .step-text,
.pending .step-text {
    color: var(--primary-800);
}

.completed .step-number {
    color: transparent;
    background-image: url('../images/common/steps.svg');
    background-color: var(--primary-800);
    background-size: 100%;
    background-repeat: no-repeat;
}
.step-progressbar-mobile {
    display: none;
}
.step-progressbar {
    position: absolute;
    height: 2px;
    background: var(--primary-800);
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}
.azure-title a {
    font-size: var(--text-label);
    font-weight: 500;
    line-height: 1.43;
    color: var(--primary-800);
    border-bottom: 1px solid var(--primary-800);
}

/* Shadow */
.shadow-s {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}
.shadow-sm {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-input {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.input {
    border: 1px solid var(--neutral-300);
}
.border {
    border: solid 1px var(--neutral-300);
}

.preview-wrap{
  border:1px solid #E5EBEB;
  border-radius:12px;
  background:#fff;
  box-shadow:0 6px 22px rgba(0,0,0,.06);
}
#previewPane{
  height:640px;
  border:0;
  border-radius:12px;
}
@media (min-width: 992px){
  .preview-wrap{ position: sticky; top:16px; }
}
/* ========================================================
Legacy
  ======================================================== */

/* **** Select 2 Input **** */
.select2-container{
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100%;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
    border-radius: 8px !important;
}
.select2-container--default .select2-selection--single{
    background: transparent;
    border-radius: 0;
    height: auto;
    border-radius: 8px;
    border: 1px solid #D1DBDB;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
     width: 100%;
    display: inline-block;
    margin: 0 0;
    -webkit-appearance: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #112726;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding: 9px 12px;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding: 8px 16px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}
.select2-results__option{
    color:#4B6361;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 8px 16px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.select2-container--default .select2-results__option--selected{
    background: #E7EFEE;
    color: #000;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: #E7EFEE;
    color: #000;
}
.select2-search--dropdown{
    display: none;
}
.select2-dropdown{
    border-radius: 6px !important;
    background:#F9FBFB;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 4px 6px -2px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
    margin: 12px 0 0;
    border: none;
    overflow: hidden;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 35px;
    margin-top: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin: 0 0 0 0;
    right: 20px;
    border: none;
    top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:after{
    position: absolute;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 15px;
    color: #111;
    top: 7px;
    right:0px;
}
.select2-dropdown.select2-dropdown--below{
    background: #F9FBFB;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 6px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background: #F3F6F6;
    color: #1F3735;
}
/* **** End Select2 **** */

@media(min-width:1201px) and (max-width:1600px){
  .fs-7 {
  font-size:1.5rem!important
  }
}

@media(min-width:1351px) and (max-width:1600px){

}

@media(min-width:1025px) and (max-width:1200px){

}

@media(min-width:992px) and (max-width:1024px){

}

@media(min-width:768px) and (max-width:991px){

}

@media(max-width:767px){

}

@media(min-width:576px) and (max-width:767px){

}

@media(min-width:448px) and (max-width:575px){

}
