:root,
[data-bs-theme="light"] {
    --bs-primary: #0E68B0 !important;
    --bs-secondary: #00B696; /* Change secondary color */
    --bs-secondary-hover: #00B696; /* Change secondary hover color */
    --bs-info: #17a2b8; /* Change info color */
    
    /* Other colors */
    --bs-success: #28a745; /* Change success color */
    --bs-warning: #ffc107; /* Change warning color */
    --bs-danger: #dc3545; /* Change danger color */
    --bs-white: #fff; /* Change white color */
    --bs-black: #000; /* Change black color */
    --bs-grey: #cdcdcd; /* Change grey color */
    
    /* Fonts */
    --bs-font-family: "proxima-nova", sans-serif; /* Change sans-serif font */
    --bs-font-monospace: Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* Change monospace font */
    --bs-font-size-base: 1rem; /* Change base font size */
    --bs-line-height-base: 2; /* Change base line height */
    
    /* Spacing */
    --bs-gutter-x: 1.5rem; /* Change horizontal gutter */
    --bs-gutter-y: 0; /* Change vertical gutter */
    
    /* Borders */
    --bs-border-width: 0.063rem; /* Change border width */
    --bs-border-radius: .25rem; /* Change border radius */
    --bs-border-radius-lg: .3rem; /* Change large border radius */
    --bs-border-radius-sm: .2rem; /* Change small border radius */
    
    /* Grid Breakpoints */
    --bs-grid-breakpoints-xs: 0; /* Change xs breakpoint */
    --bs-grid-breakpoints-sm: 576px; /* Change sm breakpoint */
    --bs-grid-breakpoints-md: 768px; /* Change md breakpoint */
    --bs-grid-breakpoints-lg: 992px; /* Change lg breakpoint */
    --bs-grid-breakpoints-xl: 1200px; /* Change xl breakpoint */
    --bs-grid-breakpoints-xxl: 1400px; /* Change xxl breakpoint */

    --list-group-item-color: #ffffff; /* Default color */
    --list-group-item-color-hover: #e8e8e8; /* Hover color */
    --list-group-item-color-active: #5b7787; /* Active color */
    --list-group-item-text-color: #333; /* Default text color */
    --list-group-item-text-color-active: #ffffff; /* Active text color */

    /* Light mode */
    --bs-primary-hover: #07497c !important;
    --bs-body-color: #212529; /* Change body text color */
    --bs-body-bg: #ffffff; /* Change body background color */
    --bs-text-muted:#6c757d; /* Change muted color */
    --bs-dark: #343a40; /* Change dark color */
    --bs-light: #f8f9fa; /* Change light color */
    --bs-border-color: #dee2e6; /* Change border color */
    --bs-text-decoration: none; /* Change text decoration */
    --btn-outline-getstarted-color:#0E68B0;
    --btn-outline-getstarted-text:#ffffff;
}

/* Dark mode */
[data-bs-theme="dark"] {
    --bs-primary-hover: #0d81db !important;
    --bs-body-color: #ffffff!important;
    --bs-body-bg:#212529;
    --bs-text-muted: #a7a7a7;
    --bs-dark: #efefef!important;
    --bs-light:#343a40;
    --bs-border-color: #5a6064;
    --bs-link-color: #ffffff; 
    --bs-text-decoration: underline;
    --btn-outline-getstarted-color:#ffffff;
    --btn-outline-getstarted-text:#0E68B0;
}

.bg-light{
    background-color: var(--bs-light)!important;
}

.bg-light{
    background-color: var(--bs-light)!important;
}

body, .card-header, .card-footer{
    background-color: var(--bs-body-bg);
}

/* .web-logo {
    height: 100%;
} */

/* .bg-dark{
    background-color: var(--bs-dark)!important;
}

.text-light{
    color: var(--bs-body-color)!important;
} */

.text-dark{
    color: var(--bs-body-color)!important;
}

body{
    overflow-x: hidden;
    word-break: break-word;
    font-size: var(--bs-font-size-base);
    line-height: var(--bs-line-height-base);
    font-family: var(--bs-font-family)!important;
    color: var(--bs-body-color);
}

body a{
    color: var(--bs-primary);
}

body a:hover{
    color: var(--bs-primary-hover);
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-primary:hover {
    color: var(--bs-primary-hover) !important;
}

.text-primary:a{
    color: var(--bs-primary) !important;
    text-decoration: var(--bs-text-decoration);
    text-underline-offset: 0.21rem !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    text-decoration: none !important;
}

.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus, 
.btn-outline-primary:active {
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-primary) !important;
    text-decoration: none !important;
}

.btn-getstarted {
    background: var(--bs-primary)!important;
    color: var(--bs-white)!important;
    padding: .75rem 1.25rem !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-color: var(--bs-primary)!important;
}

.btn-getstarted:hover {
    background: #0b538d!important;
    color: var(--bs-white)!important;
    padding: .75rem 1.25rem;
    border-color: #0b538d!important;
    text-decoration: none !important;
    /* box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important */
}

.btn-outline-getstarted {
    color: var(--btn-outline-getstarted-color) !important;
    border-color: var(--btn-outline-getstarted-color) !important;
}

.btn-outline-getstarted:hover, 
.btn-outline-getstarted:focus, 
.btn-outline-getstarted:active {
    background-color: var(--btn-outline-getstarted-color) !important;
    color: var( --btn-outline-getstarted-text) !important;
    border-color: var(--btn-outline-getstarted-color) !important;
}

.btn-outline-danger {
    color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.btn-outline-danger:hover, 
.btn-outline-danger:focus, 
.btn-outline-danger:active {
    background-color: var(--bs-danger) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-danger) !important;
}
.btn-secondary {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-secondary:hover, 
.btn-secondary:focus, 
.btn-secondary:active {
    background-color: var(--bs-secondary-hover) !important;
    border-color: var(--bs-secondary-hover) !important;
}

.btn-outline-secondary {
    color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background-color: var(--bs-secondary-hover) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-secondary-hover) !important;
}

.btn-success {
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
}

.btn-success:hover, 
.btn-success:focus, 
.btn-success:active {
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
}

.btn-outline-success {
    color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    background-color: var(--bs-success) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-success) !important;
}

.btn-danger {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.btn-danger:hover, 
.btn-danger:focus, 
.btn-danger:active {
    background-color: var(--bs-danger) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-danger) !important;
}

.btn-outline-danger {
    color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active {
    background-color: var(--bs-danger) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-danger) !important;
}

.btn-warning {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}

.btn-warning:hover, 
.btn-warning:focus, 
.btn-warning:active {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}

.btn-outline-warning {
    color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active {
    background-color: var(--bs-warning) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-warning) !important;
}

.btn-info {
    background-color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
}

.btn-info:hover, 
.btn-info:focus, 
.btn-info:active {
    background-color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
}

.btn-outline-info {
    color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active {
    background-color: var(--bs-info) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-info) !important;
}

.btn-white {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary)!important;
    border-color: var(--bs-white)!important;
}

.btn-outline-white {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
    border-color: var(--bs-white) !important;
}

.btn-grey{
    background-color: var(--bs-text-muted)!important;
    color: var(--bs-white);
}

.btn-show{
    position: fixed;
    display: block !important;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
}

.text-muted{
    color: var(--bs-text-muted)!important;
}

.btn-custom{
    height: 2.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
}

p.tagline{
    line-height: 1.7rem;
}

hr{
    color: var(--bs-border-color);
    opacity:1;
}

.container{
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
}

@media (max-width: 769px) {
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* add custom styles for tabs for active, hover, etc. */
.nav-tabs .nav-link {
    color: var(--bs-primary) !important;
}

.nav-tabs .nav-link.active {
    color: var(--bs-secondary) !important;
}


.nav-tabs .nav-item .nav-link {
    padding: 0.188rem 0.75rem;
    font-weight: normal !important;
}

.nav-simple{
    justify-content: center;
}

.nav-simple .nav-item .nav-link{
    border-bottom:0.2rem solid var(--bs-border-color)!important;
    padding: .5rem 3rem;
    color:var(--bs-dark)!important;
    font-weight: 600 !important;
}
.nav-simple .nav-item .nav-link.active{
    border-bottom:0.2rem solid var(--bs-secondary)!important;
}

/* Circular Tabs */
.nav-circular .nav-link {
    margin: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bs-primary)!important;
    font-weight: normal !important;
}

.nav-circular .nav-link:hover{
    border:0.063rem solid var(--bs-border-color)!important;
}

.nav-circular .nav-link.active {
    /* border:0.063rem solid var(--bs-border-color); */
    color: var(--bs-white)!important;
    background-color: var(--bs-secondary);
}

#apexNavPills a{
    width: 75%;
    padding: .688rem;
    border-radius: 50rem;
    font-size: var(--bs-font-size-base) !important;
    font-weight: 500;
    color: var(--bs-primary) !important;
}

#apexNavPills a:hover{
    border: 0.01rem solid var(--bs-border-color);
}

#apexNavPills a.active{
    background-color: var(--bs-secondary);
    color: var(--bs-white) !important;
}

.dropdown-item{
    padding-top: .19rem;
    padding-bottom: .19rem;
}

.nav-item .dropdown-menu{
    border: 1px solid var(--bs-border-color)!important;
    border-radius: 5px!important;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 8%);
}

.nav-item .dropdown-menu .dropdown-item{
    font-size: .75rem;
}

.hvr-fw-bold:hover {
    font-weight: 700 !important;
}


.dropdown-toggle::after {
    content: unset!important;
}

/* .navbar-dropmenu-enterprise .dropdown-item {
    padding: 0.157rem 0.75rem;
    border-bottom: 0.063rem solid rgba(0, 0, 0, .07);
} */

/* Specific Classes */
.compact-navbar .dropdown-menu {
    padding: 0.8rem 0.5; 
}

.compact-navbar .dropdown-menu .dropdown-item {
    padding: 0.5rem 1.5rem; 
    font-size: 1rem;
}

.menu-icon {
    margin-right: 0.5rem;
}

.card {
    transition: box-shadow 0.3s ease-in-out;
    background-color: var(--bs-body-bg);
    border-radius: 0.15rem;
    font-size: var(--bs-font-size-base) !important;
    border-color: var(--bs-border-color);
}

.card:hover {
    box-shadow: 0 0 0.625rem rgba(0,0,0,0.1);
}

.card input[type="text"],
.card input[type="password"],
.card input[type="email"],
.card input[type="number"],
.card input[type="search"],
.card input[type="tel"],
.card input[type="url"],
.card input[type="date"],
.card textarea,
.card select {
    font-size: 1rem; 
    font-family: var(--bs-font-family); 
    color: var(--bs-body-color);
}

.card-header, .card-footer {
    border-color: var(--bs-border-color);
}

.card-body::-webkit-scrollbar{
    width: 0.3rem!important;
}

.card-footer{
    padding: 1rem;
}

.shadow-sm{
    box-shadow:0 0 0.625rem rgba(0,0,0,0.1)!important;
}

.hover-shadow:hover{
    box-shadow:0 0 0.625rem rgba(0,0,0,0.2)!important;
}

/* HTML editor */
.ace_editor {
    width: 100% !important;
    display: block !important;
    height: 300px !important;
    overflow: auto !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    margin: auto;
}

.table{
    --bs-table-color: none;
    /* --bs-table-bg: none; */
    color: var(--bs-body-color);
}

.fixed-table-container .table thead th .th-inner{
    padding:.488rem .9rem!important;
    font-size: 1rem;
}

.fixed-table-container .table td{
    padding:.3rem .9rem !important;
    cursor: default!important;
    color: var(--bs-dark) !important;
}

.bootstrap-table .fixed-table-container .table thead th{
    color:var(--bs-dark);
    background:var(--bs-light);
    font-weight: 600;
}

.bootstrap-table .columns .btn, .bootstrap-table .export .btn, .bootstrap-table .page-list .btn, .bootstrap-table .pagination .btn {
    background-color: var(--bs-body-bg) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
}

.bootstrap-table .columns .btn:hover, .bootstrap-table .export .btn:hover, .bootstrap-table .page-list .btn:hover, .bootstrap-table .pagination .btn:hover {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/* change selected pagination button color */
.bootstrap-table .pagination .page-item.active .page-link {
    background-color: var(--bs-primary) !important;  
    border-color:  var(--bs-primary) !important; 
    color: var(--bs-white) !important; 
}

/* Apex Table */
.apex-table.table-bordered{
    border: 0px solid var(--bs-white);
}

.apex-table.table-bordered tr{
    border-bottom: 0.063rem solid var(--bs-border-color)!important;
    z-index: 0.063rem;
}

.apex-table.table-bordered>:not(caption)>*>* {
    border-width: 0;
}

.apex-table-button{
  visibility: hidden;
  transition: visibility .06s ease-in;
  display: inline-flex;
}

tr:hover > td .apex-table-button{
  visibility: visible
}  

@media (max-width: 800px){
    .apex-table-button{
        visibility: visible
    }
} 

.pagination{
    --bs-pagination-padding-x:1rem;
    --bs-pagination-padding-y:.125rem;
}


/* Chosen */
.chosen-container {
    width: 100% !important
}

.chosen-choices {
    padding: .7rem !important;
    border: 0.063rem solid var(--bs-border-color);
    background: 0 0 !important;
    border-radius: .25rem !important
}

.chosen-container-active .chosen-choices, .chosen-container-active{
    /* border-color: #86b7fe!important; */
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    border-radius: 4px;
}

.chosen-container-active.chosen-with-drop .chosen-single{
    border-color:#86b7fe;
}

.chosen-container-multi.chosen-with-drop .chosen-choices{
    border-color:#86b7fe!important;
}

.chosen-container-single .chosen-single {
    font-size: 1rem;
    line-height: 3rem;
    background: var(--bs-body-bg) !important;
    color: var(--bs-body-color) !important;
    border-radius: .25rem;
    box-shadow: none;
    min-height: calc(2.9rem + 0.1rem);
    border: 0.063rem solid var(--bs-border-color);
}

.chosen-container-single .chosen-single div b {
    position: absolute;
    top: 50%;
    transform: translateY(-27%)
}

.chosen-select-sm .chosen-container-single .chosen-single {
    background: var(--bs-body-bg);
    border: 0.063rem solid var(--bs-border-color);
    box-shadow: none;
    height: calc(1.5em+.5rem+0.125rem);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.chosen-select-sm .chosen-container-single .chosen-single div b {
    background: url(chosen-sprite.png) no-repeat 0 -0.063rem
}

.chosen-select-md .chosen-container-single .chosen-single {
    background: var(--bs-body-bg);
    border: 0.063rem solid var(--bs-border-color);
    box-shadow: none;
    height: calc(1.5em + .75rem + 0.125rem);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    /* background-color: #fff; */
    background-clip: padding-box;
    border: 0.063rem solid var(--bs-border-color);
    border-radius: .25rem
}

.chosen-container .chosen-results{
    color: var(--bs-body-color);
}

.chosen-container .chosen-results li {
    padding:0.5rem;
    /* line-height: 0.5rem; */
    font-size: var(--bs-font-size-base);
}

.chosen-container .chosen-results li.active-result:hover {
    background: var(--bs-primary) !important
}

.chosen-container .chosen-results li.highlighted {
    background: var(--bs-primary) !important
}

.chosen-container-multi .chosen-choices{
    height: calc(2.9rem + 0.1rem)!important;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius)!important;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text]{
    color: var(--bs-body-color);
    font-family: var(--bs-font-family)!important;
    font-size: 1rem!important;
}

.chosen-container-single .chosen-single div{
    display: none;
}

.chosen-container .chosen-drop{
    /* border-color:var(--bs-border-color)!important; */
    border-radius:.5rem ;
    box-shadow: 0px 12px 20px 2px rgba(0,0,0,.1);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.chosen-container-multi .chosen-choices li.search-choice{
    background-image: var(--bs-light);
    background-color: var(--bs-light);
    color: var(--bs-body-color);
}

.list-group-item {
    /* background-color: var(--list-group-item-color); */
    color: var(--list-group-item-text-color);
}

.list-group-item:hover {
    /* background-color: var(--list-group-item-color-hover); */
    color: var(--list-group-item-text-color);
}

.list-group-item.active {
    /* background-color: var(--list-group-item-color-active); */
    color: var(--list-group-item-text-color-active);
}

.list-group-item:focus {
    /* background-color: var(--list-group-item-color-hover); */
    color: var(--list-group-item-text-color);
}

.list-group-item.active a {
    color: var(--list-group-item-text-color-active);
}

.list-group-item {
    color: #062334;
}

.list-group-item a {
    color: #062334;
    text-decoration: none;
}

.apex-bare-list .list-group-item {
    border-left: 0;
    border-right: 0;
    background-color: white; 
    padding-left: 0;
    padding-right: 0;
}

.apex-bare-list .list-group-item:first-child {
    border-top: 0;
}

.apex-bare-list .list-group-item:last-child {
    border-bottom: 0;
}

a.apex-link {
    color: var(--bs-primary);
    text-decoration: none;
}

a.apex-link:hover {
    color: var(--bs-primary);
}

a.apex-link i {
    color: inherit;
}

/* scrollbar */
*::-webkit-scrollbar {
    width: .65rem;
}
 
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.063rem var(--bs-primary);
}
 
*::-webkit-scrollbar-thumb {
  background-color: var(--bs-secondary);
}

a{
    color: var(--bs-primary);
    text-decoration: none;
}

/* Navbar CSS Start */
.nav-link {
    color: var(--bs-dark) !important;
    font-size: 1rem;
    font-weight: 600 !important;
    margin-left: 1rem;
}

.nav-link.active{
    color: var(--bs-secondary) !important;
}

.nav-item.active {
    border-left:0.313rem solid var(--bs-primary);
}

.nav-item.active .nav-link{
    color: var(--bs-secondary)!important;
}

.navbar-nav .account-menus .dropdown-item{
    color: var(--bs-black)!important;
}

.navbar-nav .account-menus .dropdown-item:hover{
    color:var(--bs-primary) !important;
}

.web-logo, .navbar-logo, .footer-logo {
    width: 8.652rem;
}

/* Custom Navbar CSS */
.navbar-brand{
    padding: 0rem 1rem;
    line-height: 0;
    margin-right: 0;
}

/* .navbar-logo {
    height: 1.563rem;
    margin-top: -0.188rem;
} */

.navbar {
    height: auto;
    padding: .16rem 1rem;
    border-bottom: 0.063rem solid var(--bs-border-color);
    background-color: var(--bs-body-bg);
}

.header-sticky {
    box-shadow: 0 0 3px 0 rgba(0,0,0,.06);
    top: -0.01rem;
}

.logo-transition .web-logo{
    width: 7rem;
}

/* Vertical Nav */
.vertical-nav .nav-link{
    color: #222222!important;
    border-radius: 0 !important;
}
.vertical-nav .nav-link:hover{
    color: #222222!important;
    border-left: 0.125rem solid var(--bs-secondary) !important;
    border-radius: 0 !important;
}
.vertical-nav .nav-link.active{
    color: #222222!important;
    background-color: #ffffff!important;
    font-weight: 800!important;
    border-left: 0.125rem solid var(--bs-secondary) !important;
    border-radius: 0 !important;
}
.custom-dropdown-toggle::after {
    display: none!important;
}


.dropdown-item.active, .dropdown-item:active {
    background-color: #fff;
    color: #000;
}

.dropdown-toggle::after{
    display: none;
}

.navbar-dropmenu-enterprise {
    left: auto !important;
    right: 0;
    top: 3.625rem!important;
}
.dropdown-menu {
    max-width: 15.625rem;
}

.dropdown-item h6.name, .dropdown-item .email {
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    width: 100% !important;
    display: block !important;
}

.navbar-dropmenu-enterprise .dropdown-item {
    padding: 0.122rem 0.75rem;
    border-bottom: 0.063rem solid rgba(0, 0, 0, .07);
    width: 15.625rem;
    white-space: normal;
}

.logout-btn{
    background-color: var(--bs-danger)!important;
    padding: 0.157rem 0.75rem!important;
    width: 15.625rem!important;
}
.logout-btn:hover {
    background-color: unset!important;
    background-color: var(--bs-danger)!important;

}

.dropdown-menu-header {
    padding: .75rem;
    text-align: center;
    font-weight: 400;

}

.dropmenu-enterprise .dropdown-item {
    padding: .157rem 1.5rem;
    border-bottom: 0.063rem solid rgba(0, 0, 0, .07);
    color: var(--bs-black)!important;
}

.dropmenu-enterprise {
    left: auto !important;
    right: 0 !important;
    top: 0.75rem !important;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color:unset;
}

/* Navbar CSS End */

/* Breadcrumb */
/* .breadcrumb {
    background-color: transparent!important;
    padding: 0 1.5rem!important;
    border-radius: 0!important;
    border-bottom: 0.063rem solid var(--bs-border-color)!important;
    margin-bottom: 0!important;
}

.breadcrumb-item{
    padding:0.313rem 1.5rem;
}

.breadcrumb-item a {
    display: inline-block;
    position: relative;
    color: var(--bs-primary);
    text-decoration: none;
}

.breadcrumb-item span{
    margin:0 .75rem;
    padding: 0.45rem 1rem;
    display: inline-block;
}

.breadcrumb-underline span:hover, .breadcrumb-underline span.active {
    border-bottom: 0.125rem solid var(--bs-secondary) !important;
    padding-bottom: .45rem !important;
    color: var(--bs-secondary) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white)!important;
    content: none;
}

.breadcrumb-item, .breadcrumb-item+.breadcrumb-item{
    padding: 0 !important;
}

.breadcrumb-item, .breadcrumb-item+.breadcrumb-item span {
    padding:0.45rem 0.063rem;
} */

/* @media screen and (min-width: 769px) {
    .breadcrumb-item, .breadcrumb-item+.breadcrumb-item {
        display: inline-block;
        position: relative;
        padding:0.157rem 1.5rem;

        &::before,&::after{
            content: '';
            position: absolute;
            left: 0;
            height: 50%;
            width: 100%;
            border-right: 0.125rem solid var(--bs-border-color);
        }
        
        &::before {
            top: 0;
            transform: skew(30deg);
        }
        
        &::after {
            bottom: 0;
            transform: skew(-30deg);
        }

        &:first-child {
            box-sizing: content-box;
            padding-left: 0;
        }
    }

    .breadcrumb-item, .breadcrumb-item+.breadcrumb-item span {
        display: inline-block;
        position: relative;
        padding: 0.45rem 1rem;
    }
} */

.stretched-link:hover{
    border-bottom: 0.125rem solid var(--bs-secondary) !important;
    color: var(--bs-secondary) !important;
}

/* .breadcrumb-button {
    padding: 0.85rem 1rem;
    border-left: 0.063rem solid var(--bs-border-color);
    border-right: 0.063rem solid var(--bs-border-color);
}

.breadcrumb-button i:hover{
    color: var(--bs-secondary) !important;
}

.breadcrumb .bi-house-door{
    line-height:0;
}

.breadcrumb-item #dropdownMenuButton {
    padding-top: .6rem;
} */

#dropdownMenuButton{
    margin-left: 0;
}
/* Sidebar */
.sidebar-toggle {
	margin:0.5rem;
	border-radius: 50%;
	width:1.938rem;
	height:1.938rem;
	display: block;
	position: relative
}

.sidebar-toggle i {
	position: absolute;
	top: 50%;
	left: 49.5%;
	transform: translateX(-50%) translateY(-50%);
	cursor: pointer;
    border-radius: 50%;
    padding:0.125rem 0.625rem;
}

.sidebar-toggle i:hover{
    background-color: var(--bs-border-color);
    transition: all .5s;
}

.sidebar-header {
    height: 3rem;
}

main {
    transition: all .5s;
    overflow:hidden;
}

@media screen and (min-width: 1200px) {
    main {
        margin-left: 0;
        margin-right: 0;
    }

    .sidebar-on {
        padding-left:14.375rem;
        margin-right: 0;
    }

    #sidebar.toggled {
        margin-left: 0rem!important;
        min-width: 3.7rem!important;
    }

    .sidebar-off {
        padding-left:3.7rem!important;
        margin-right: 0!important;
    }
}

@media screen and (max-width: 1200px) {
    main {
        margin-left: 14.375rem !important;
        margin-right: -14.375rem !important;
    }

    main.sidebar-on {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #sidebar.toggled {
        margin-left: 0;
    }
}

#sidebar {
    min-width:14.375rem;
    max-width:14.375rem;
    background-color: var(--bs-body-bg)!important;
    transition: all .5s;
    background: 0 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 100%;
    position: fixed;
    border-right: 0.063rem solid var(--bs-border-color);
}
@media screen and (max-width: 1200px) {
    #sidebar {
        min-width:14.375rem;
        max-width:14.375rem;
        margin-left: -14.375rem;
        transition: all .5s;
        background: transparent;
        padding-top: 1rem;
        min-height: 100%;
        position: fixed;
        border-right: 0.063rem solid var(--bs-border-color);
    }
}

/* #sidebar.toggled {
    margin-left: -14.375rem
} */

.sidebar-link{
    font-weight: 600;
    padding-left: 1.875rem;
}

.sidebar-accordion{
    font-weight: 700;
}

.sidebar-item{
    border-left: 0.313rem solid var(--bs-body-bg)!important;
    border-bottom:0.063rem solid var(--bs-border-color);
    padding: 1rem;
}

.sidebar-item.active {
    border-left: 0.313rem solid var(--bs-secondary)!important;
    padding-left: calc(1rem -0.313rem);
}

.sidebar-text{
    color: var(--bs-dark);
}

.sidebar-text:hover{
    color: var(--bs-text-muted);
}

.sidebar-item.active .sidebar-link .sidebar-text {
    color: var(--bs-secondary);
}

#sidebar-content::-webkit-scrollbar {
    width: 0.3rem!important
}

.sidebar-content,.memberSidebar {
    background: 0 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

#sidebar-content {
    color: #000 !important;
    height: calc(100% - 37px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 0;
}

.no-img-sidebar{
    height: calc(100% - 175px)!important;
}

/* Navbar Custom CSS Start */
.user-account-preview-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .08rem solid var(--bs-primary);
    width: 1.25rem;
    height: 1.25rem;
    margin-top: .1rem;
    border-radius: 50%;
} 

.user-account-preview-icon .user-account-preview-img{
    width: .75rem;
}

.user-account-details-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .08rem solid var(--bs-primary);
    width: 6.875rem;
    height: 6.875rem;
    /* margin-top: .1rem; */
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 

.user-account-details-icon .user-account-details-img{
    width: 5rem;
    padding-bottom: .5rem;
}

.user-profile-picture {
    width: 6.875rem;
    height: 6.875rem;
    background-size: cover;
    background-position: center;
    border: 0.063rem solid var(--bs-border-color);
    border-radius: 50%;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.user-profile-picture:hover .profile-edit-box {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,0) 50%,rgba(0,0,0,0) 50%,rgba(0,0,0,.7) 100%);
    display: block!important
}

.profile-edit-box i {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff
}

.imagePreviewBox #imagePreview {
    border-radius: 50%;
    width: 6.875rem;
    height: 6.875rem
}
/* End Navbr Custom CSS */

/* Document Download */
#adobe-dc-view {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite !important;
}

.archive-link:hover,
.archive-link:hover .bi-archive {
    color: inherit !important;
}

/* The Modal (background) */
.modal.compact-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  /* Modal Dialog */
  .modal-dialog.compact-dialog {
    max-width: 25rem;
    margin: 4% auto;
  }
  
  /* Modal Content */
  .modal-content.compact-content {
    background-color: #fefefe;
    padding: 0.625rem;
    border: 0.063rem solid #888;
  }
  
  .modal-header.compact-header {
    padding:0.5rem;
  }
    .modal-title.compact-title {
    font-size: 1.125rem;
  }
  
  .btn-close.compact-close {
    font-size: 1rem;
  }
  
  .modal-body.compact-body {
    padding:0.5rem;
  }

  .mb-2.compact-group {
    margin-bottom:0.5rem !important;
  }
  
  .form-label.compact-label {
    font-size: 0.875rem;
  }

  .form-control.compact-control {
    font-size: 0.875rem;
    height: auto;
    padding: 0.375rem 0.75rem;
  }

  .modal-footer.compact-footer {
    padding:0.5rem;
}

.btn.compact-btn {
    padding:0.313rem 0.625rem;
    font-size: 0.875rem;
}


.rad-card-font {
    font-size: 0.75rem;
}

.form-control, .form-select{
    padding: 0.7rem;
}

.fixed-table-toolbar .form-control{
    padding: .375rem .75rem;
}

.form-group {
    margin-bottom: 1.2rem !important;
}

.form-check-input{
    margin-top: 0.5rem;
}

.search-box {
    padding: 3rem;
    position: relative;
    border: 2px solid var(--bs-white);
    border-radius: 5px;
}

.rounded-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-size: 1.5rem;
    font-weight: normal;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Custom CSS Added */

#banner {
    padding-bottom: 1rem;
    padding-top: 1rem;
    background-position: center;
    background-size: contain;
    background-attachment: fixed;
    background-image: linear-gradient(to bottom, #00B696 0%, rgba(14, 104, 176, 0.5) 100%), url(https://matrix.radhostbox.com/assets/apex/img/bg-pattern-01.jpg);
    color: #ffffff;
    height:200px!important;
}

footer a {
    color: var(--bs-body-color) !important;
}

.hvr-underline-from-left,.navbar .hvr-underline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
    top: -2px
}

.hvr-underline-from-left:before,.navbar .hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: var(--bs-text-muted);
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
.hvr-underline-from-left:active:before,.hvr-underline-from-left:focus:before,.hvr-underline-from-left:hover:before {
    right: 0
}
#myPage{
    background-color: var(--bs-light);
}

#content {
    padding: 1.5rem 1.5rem;
    min-height: 85vh;
}

#post-content p, #post-content li{
    font-size: 1.1rem;
}

small a{
    font-size: 100%;
}

#user-dashboard h1 {
	font-size: 1.5rem;
	text-align: center;
}

#user-dashboard .contacts-type-image {
	width: 1.875rem;
	height: 1.875rem;
}

.message-sidebar-link.active {
    background-color: var(--bs-light);
    border-left: 0.125rem solid #528ffe !important;
}

/* Admin - media */
.media-preview {
    min-width: 6.25rem;
    height: 4.375rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: .25rem;
}

.space-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%!important;
    margin: 0!important;
    border: 0.063rem solid var(--bs-primary) !important;
    color: var(--bs-primary);

}

.upload-file{
    width: 6.25rem;
}

.w-16px {
    width: 1rem;
}

.w-32px {
    width: 2rem;
}

.w-48px {
    width: 3rem;
}

.w-64px {
    width: 4rem;
}

.w-128px {
    width: 8rem;
}

.upload-files-text{
    height: 18.75rem;
}

.btn.show {
    background-color: var(--bs-white);
}

.price {
    font-size: 2rem;
    font-weight: 500;
}

.subscription-cards .active{
    border-color: var(--bs-secondary)!important;
}

#user-image-thumbnail {
    width: 4rem;
    height: 4rem;
    transition: all .2s;
}

.circle-icon {
    align-self: center;
}

.tab-menu .list-group-item{
    border: 0;
    color: var(--bs-primary);
    padding: 0;
}

.tab-menu .list-group-item .nav-link{
    color: var(--bs-primary)!important;
    padding: 0.625rem;
}

.tab-menu .list-group-item .nav-link.active{
    color: var(--bs-secondary)!important;
    border-right: 0.125rem solid var(--bs-primary) !important;
}

.card .card-body .fa-crown{
    font-size:1.938rem!important;
}

/* CSS for Full Calender */
.fc table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em; /* normalize cross-browser */
}

.fc th {
	text-align: center;
    color: var(--bs-secondary)!important;
}

.fc th,
.fc td {
	border-style: solid;
	border-width: 0.063rem;
	padding: 0;
	vertical-align: top;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float:none!important;
    text-align: center!important;
}

.fc td.fc-today {
	border-style: double; /* overcome neighboring borders */
}

.fc-state-default {
    background-image: linear-gradient(to bottom, var(--bs-white), var(--bs-white))!important;
    border-color: var(--bs-primary)!important;
    color: var(--bs-primary)!important;
}

.fc-left .fc-state-default:hover {
    background-image: linear-gradient(to bottom, var(--bs-primary), var(--bs-primary))!important;
    border-color: var(--bs-primary)!important;
    color: var(--bs-white)!important;
}

.fc-state-active{
    background-image: linear-gradient(to bottom, var(--bs-secondary), var(--bs-secondary))!important;
    border-color: var(--bs-secondary)!important;
    color: var(--bs-white)!important;
    box-shadow: none!important;

}

.fc-event-container a {
    color: var(--bs-white) !important;
    text-decoration: none !important;
}

.clickable-card {
    color: var(--bs-text-muted) !important;
    border-radius: 0.1rem !important;
    box-shadow: none!important;
}

.clickable-card.checked {
    border: 0.063rem solid var(--bs-secondary) !important;
    color: var(--bs-text-muted) !important;
    border-radius: 0.1rem !important;
    box-shadow: none;
}

.clickable-card.checked  .icon-checked {
    background-color: var(--bs-secondary);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    left: auto;
}

.clickable-card.checked {
    border: 0.063rem solid var(--bs-secondary) !important;
    color: var(--bs-text-muted) !important;
}

.clickable-card:hover{
    cursor: pointer;
}

/* CSS for Switch Button */
.switch1 {
    position: relative;
    display: inline-block;
    width: 4rem;
    height: 2.0rem;
    margin: 0;
}

.switch1 input {
    display: none;
}

.switch1 .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: .4s;
}

.switch1 .slider:before {
    position: absolute;
    content: "";
    height: 0.9rem;
    width: 0.9rem;
    left: 0.25rem;
    bottom: 0.54rem;
    background-color: var(--bs-warning);
    transition: .4s;
}

.switch1 input:checked + .slider {
    background-color: var(--bs-white);
}

.switch1 input:checked + .slider::before {
    background-color: var(--bs-success);
}

.switch1 input:checked + .slider.round {
    border-radius: 2.125rem;
    border: 1px solid var(--bs-success);
}

.switch1 input:checked + .slider:before {
    transform: translateX(2.5rem);
}

.switch1 .slider.round {
    border-radius: 2.125rem;
    border: 1px solid var(--bs-warning);
}

.switch1 .slider.round:before {
    border-radius: 50%;
}

/* For Add Form switch Button */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ccc; /* Default border */
    border-radius: 24px;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.0rem;
    width: 1.0rem;
    left: 2px;
    bottom: 2px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--bs-white);
    border: 2px solid var(--bs-secondary);
}

input:checked+.slider:before {
    background-color: var(--bs-secondary);
    -webkit-transform: translateX(1.063rem);
    -ms-transform: translateX(1.063rem);
    transform: translateX(2.45rem)
}

input:focus+.slider {
    box-shadow: 0 0 0.063rem var(--bs-secondary);
}

.slider.round {
    border-radius: 2.125rem
}

.slider.round:before {
    border-radius: 50%
}


/* Slider (Background & Border) */
.switch {
    position: relative;
    display: inline-block;
    width: 3.125rem;
    height: 1.5rem;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    display: none
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
    background-color: #00B696;
}
/* End switch CSS */

.dropdown-toggle .bi-caret-down{
    position: relative; 
    top: 0.125rem;
}

.dropdown-item {
    max-width: 15.625rem!important; /* Set your desired max width */
    white-space: normal;
}

.name, .email {
    word-wrap: break-word!important;
    word-break: break-word!important;
    overflow-wrap: break-word!important;
    width: 100%!important;
}

#timeSlotTimes1 a{
    text-decoration: none!important;
    color: var(--bs-white)!important;
    /* font-size: .875em!important; */
}

#timeSlotTimes1 .btn-custom {
    display: flex;
    justify-content: center;
    align-items: center;
}


.has-border-bottom:not(:last-child) {
    border-bottom: 0.063rem solid rgba(0, 0, 0, .125) !important
}

.sidebar-profile-picture {
    width: 6.875rem;
    height: 6.875rem;
    background-size: cover;
    background-position: center;
    border: 0.063rem solid var(--bs-border-color);
    border-radius: 50%;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.sidebar-profile-picture {
    background-image: url(../../apps/bridge/images/fitness.png);
}

@media (min-width: 768px) {
    .margin-from-member-icon {
        margin-left: 5rem;
    }
}

@media (max-width: 768px) {
    .center-align-in-small-screen {
        text-align: center !important;
    }
}

.user-icon{
    width: 2.5rem;
    height: 2.5rem;
}

.user-img {
    width: 4rem;
    height: 4rem;
}

.logo-bar {
    height: 1.8rem;
    background-color: var(--bs-grey);
    display: inline-block;
    width: 0.1rem; /* Making it very thin */
    vertical-align: middle; /* Aligns with the middle of the elements */
}

.time-slot input[type="radio"] {
    display: none;
}

@media screen and (max-width: 577px) {
    #content {
        padding: 1.5rem 1.5rem;
        min-height: 80vh;
        /* margin-bottom: 4rem; */
    }
}

/* Banner */
#img-change-banner {
    height: 500px;
    width: 100%;
    overflow: hidden;
    color: var(--bs-white);
    position: relative !important;
    align-items:center;
    display:flex;
}

#img-change-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: opacity 1s ease-in-out; /* Transition for smooth crossfade */
    animation: changeBackground 40s ease-in-out infinite;
}

#img-change-banner .overlay, .carousel-inner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .3;
    background: #000000;
    height: 750px;
}

#img-change-banner:nth-child(1) {
    animation-delay: 0s;
}

#img-change-banner:nth-child(2) {
    animation-delay: 5s; /* Adjust delay as needed */
}

#img-change-banner:nth-child(3) {
    animation-delay: 10s; /* Adjust delay as needed */
}

#img-change-banner:nth-child(4) {
    animation-delay: 15s; /* Adjust delay as needed */
}

@keyframes changeBackground {
    0%, 100% {
        background-image: url('image/banner-img-1.jpg');
        transform: scale(1); /* Initial scale */
    }
    25% {
        background-image: url('image/banner-img-2.jpg');
        opacity: 1;
        transform: scale(1.2); /* Initial scale */
    }
    50% {
        background-image: url('image/banner-img-3.jpg');
        opacity: 1; /* Start fading out */
        transform: scale(1); /* Initial scale */
    }
    75% {
        background-image: url('image/banner-img-4.jpg');
        opacity: 1; /* Start fading in */
        transform: scale(1.2); /* Initial scale */
    }
}

.banner-content{
    text-align: center !important;
    z-index: 1;
    margin:auto;
}

.banner-search{
    border-radius:.25rem;
    background-color:var(--bs-white);
    padding: 0.5rem;
    box-shadow: var(--bs-box-shadow) !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* #page-banner{
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-attachment: fixed;
    background-image: linear-gradient(to bottom, #00B696 0%, rgba(14, 104, 176, 0.5) 100%), url(image/bg-pattern.jpg);
    color: var(--bs-white);
    align-items:center;
    overflow: hidden;
} */

#page-banner {
    height: auto;
    /* background:var(--bs-white); */
    background-attachment: fixed;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
}
#page-banner h1 {
    font-size: 2.4rem;
    line-height: 2.84rem;
    font-weight: 400;
}
#page-banner h5 {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Carousel */
.apexCarousel{
    height: 500px;
    overflow: hidden;
}

.apex-carousel-img{
    height: 500px;
    width: 100%;
    display: block;
}

.card-img{
    width: 48px;
}


/* CSS WRITTEN BY ABHIMANYU START BLOCK FOR NETWORKS MEMBER PORTAL*/

.top-height {
    margin-top:-0.313rem !important;
}
/* Used In profile page for vertical border */
.border-right {
    position: relative !important;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 0.181rem solid #ccc;
}

/* Used In profile page */
.profile-left-margin{
    margin-left:-3.125rem;
}
/* Used In member-meetings.php */
@media (min-width:48rem){
    .margin-from-member-icon {
        margin-left:5rem;
    }
    .ms-sm{
        margin-left:3.5rem
    }
}
/* Used In member-meetings.php */
@media (max-width:48rem){ 
    .center-align-in-small-screen {
        text-align: center !important;
    }
}
/* CSS WRITTEN BY ABHIMANYU END BLOCK FOR NETWORKS MEMBER PORTAL*/


/* CSS WRITTEN BY ABHIMANYU START BLOCK FOR PROJECT APP*/

/* Used in tocket list page */
.badge-text-size{
    font-size: 0.7rem;
}
/* This css used for every accordian item */
.btn-accordion {
    border :none;
    padding:0.5rem;
}
/* Select Field Right side icon */
select.form-control{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px 14px;
}
/* Project list page card height ticket list */
.card-height{
    padding-top:0.75rem !important;
    padding-bottom:0.75rem !important;
}
/*Used In ticket view page*/
.user-container {
    margin: 0 -0.7rem;
    transition: margin 0.4s ease;
}
.user-container:hover {
    margin: 0 1rem;
}
.ticket-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
}
@media (max-width:48rem){
    .ticket-user-margin-right{
        margin-left:0.7rem;
        margin-top:1rem;
    }
}
@media (min-width:48rem){
    .start-space {
        margin-left:1.4rem;
    }
}
/* Used In File List page */
.w-40px{
    width:2.5rem;
}

/* Replace all accordian button header-title as btn-header */
.btn-header{
    padding-left:0.43rem;
    padding-right:0.43rem;
}

/* Used For add file card/ drag drop files div */
.file-upload-div{
    cursor: pointer;
}

/* Used In group page */
.color-picker {
    border: 1px solid #ccc;
    cursor: pointer;
}
.color-picker:hover {
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Used in settings customer card page */
.align-customer-details {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* centers vertically */
}
.icon-pointer{
    cursor: pointer;
}
.mt-c-table-3 {
    margin-top: 0.5rem;
}
/* USED IN PROJECT STATUS PAGE */
.connect-line {
    width: 100%;
    height: 0.01rem;
    border: 1px dotted #ccc;
    margin: auto;
}
/* C3 graph hover count problem css */
.name {
    width: 10rem !important;
 }
/* CSS WRITTEN BY ABHIMANYU END BLOCK FOR PROJECT APP*/


.message {
    line-height: 1.5!important;
}

.message-card{
    height:38rem;
}

@media screen and (min-width: 769px) {
    .message-card{
        height: 50rem;
    }
}
.message-content{
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.message-nav .nav-link{
    border-radius: 0 !important;
}

.message-nav .nav-link:hover{
    background-color: var(--bs-light)!important;
}

.message-nav .nav-link.active{
    background-color: var(--bs-white);
    border-left: 0.125rem solid var(--bs-secondary);
}

.message-card .form-control {
    padding: .375rem .75rem;
}

.outgoing-message{
    background-color: var(--bs-white);
    border-radius: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.incoming-message{
    background-color: var(--bs-light);
    border-radius: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.message-rounded-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-size: 1.2rem;
    margin-right: .5rem;
}

.message-logo{
    width: 2.6rem;
}

.message-dropmenu {
    width: 100%;
    /* left: auto !important; */
    right: 0;
    top: .7rem !important;
}

.dropdown-menu.message-dropmenu {
    max-width: 30rem;
    position: absolute!important;
    border-radius: 0px;
}

.message-dropmenu .dropdown-item{
    max-width:28rem!important;
}

@media screen and (min-width: 769px) {
    .dropdown-menu.message-dropmenu {
        left: -1rem!important;
    }
}

#file-upload.modal{
    --bs-modal-width: 1000px !important;
}

.message-img{
    width: 200px;
    border-radius: 1rem;
}

@media screen and (min-width: 576px) {
    .message-img{
        width: 350px;
    }
}

@media screen and (min-width: 1300px) {
    .message-img{
        width: 500px;
    }
}

.word-wrap{
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    width: 100% !important;
    display: block !important;
}

.invoice-border{
    padding: .5rem 0;
    margin-bottom: 1rem;
    border-bottom: 0.063rem solid var(--bs-primary);
}

.invoice table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.invoice table th {
    border-bottom:0.063rem solid var(--bs-border-color) ;
    color: var(--bs-secondary);
}

.invoice table th, .invoice table td{
    padding: .5rem;
}

.invoice table tfoot td {
    border-top: 0.063rem solid var(--bs-border-color);
}

/* .invoice table tfoot tr:last-child td {
    color: var(--bs-primary);
    border-top: 0.063rem solid var(--bs-primary)
} */

.invoice table tfoot tr td:first-child {
    border: none
}

.dataset-img {
    width: 3.75rem;
}

.fully-submitted {
    background-color: var(--bs-success);
    color: #fff;
    padding: .3rem .5rem;
    display: inline;
    border-radius: .25rem;
}

.partially-submitted {
    background-color: var(--bs-warning);
    color: var(--bs-black);
    padding: .3rem .5rem;
    display: inline;
    border-radius: .25rem;
}

.not-submitted {
    background-color: var(--bs-danger);
    color: #fff;
    padding: .3rem .5rem;
    display: inline;
    border-radius: .25rem;
}

.avatar-group {
    padding: 0;
    display: flex;
    }
.avatar-group > li:not(:last-child) {
    margin-right: -0.8rem;
}
.avatar-group > li {
    position: relative;
}
.avatar.avatar-xs {
    height: 2.1875rem;
    width: 2.1875rem;
}
.avatar-group .avatar-img {
    border: 0.125rem solid #fff;
}
.avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* .avatar-5xl {
    height: 9.375rem;
    width: 9.375rem;
} */

.avatar {
    height: 9rem;
    width: 9rem;
    position: relative;
    display: inline-block;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    vertical-align: middle;
}

@media screen and (max-width: 1500px) {
    .avatar{
        height: 4.7rem;
        width: 4.7rem;
    }
}

@media screen and (max-width: 900px) {
    .avatar{
        height: 9rem;
        width: 9rem;
    }
}

.avatar img {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.avatar img, .avatar .avatar-name {
    width: 100%;
    height: 100%;
}

#detailsCard{
    padding: 0;
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* Timeline */
.timeline-vertical .timeline-item:not(:last-child) .timeline-item-bar .timeline-bar {
    position: absolute;
    height: 6.25rem;
    left: 0.688rem;
    top: 1.5rem;
}
.timeline-vertical.timeline-with-details .timeline-item:not(:last-child) .timeline-item-bar .timeline-bar {
    height: calc(100% - 1rem) !important;
}
.timeline-item-date{
    width: 6rem;
}

.icon-item {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    width: 1.5rem;
    background-color: var(--bs-secondary)!important;
}

.icon-item i {
    font-size: 0.8rem;
    color: var(--bs-white);
}

.border-dashed {
    border:0.063rem dashed var(--bs-grey);
}

@media only screen and (min-width: 768px) {
    .border-md-0 {
        border: 0!important
    }

    .border-md-start {
        border-left: 1px solid var(--bs-border-color)!important
    }

    .border-md-end {
        border-right: 1px solid var(--bs-border-color)!important
    }

    .border-md-top {
        border-top: 1px solid var(--bs-border-color)!important
    }

    .border-md-bottom {
        border-bottom: 1px solid var(--bs-border-color)!important
    }

    .border-top-md-0 {
        border-top: 0!important
    }

    .border-end-md-0 {
        border-right: 0!important
    }

    .border-bottom-md-0 {
        border-bottom: 0!important
    }

    .border-start-md-0 {
        border-left: 0!important
    }
}

@media only screen and (min-width: 992px) {
    .border-lg-0 {
        border: 0!important
    }

    .border-lg-start {
        border-left: 1px solid var(--bs-border-color)!important
    }
    .border-lg-end {
        border-right: 1px solid var(--bs-border-color)!important
    }

    .border-lg-top {
        border-top: 1px solid var(--bs-border-color)!important
    }

    .border-lg-bottom {
        border-bottom: 1px solid var(--bs-border-color)!important
    }

    .border-top-lg-0 {
        border-top: 0!important
    }

    .border-end-lg-0 {
        border-right: 0!important
    }

    .border-bottom-lg-0 {
        border-bottom: 0!important
    }

    .border-start-lg-0 {
        border-left: 0!important
    }
}

/* Scrollable Wrapper */
.scrollable-wrapper-paddles .left-paddle {
    left: 0;
}
.scrollable-wrapper-paddles .right-paddle {
    right: 0;
}

.scrollable-wrapper {
	margin: 0 5rem 0 5rem;
	overflow-x: auto;
	overflow-y: hidden;
}

.scrollable-wrapper::-webkit-scrollbar {
	width: 0;
	height: 0
}

.section-circle {
	position: relative;
	min-width: 2.5rem;
	min-height: 2.5rem;
	max-width: 2.5rem;
	max-height: 2.5rem;
	background: var(--bs-secondary);
    border-radius:50%;
	margin-right: 1.5rem;
	display: inline-block;
}

.section-circle-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	color: var(--bs-white)!important
}

.scrollable-wrapper-paddles .left-paddle {
	position: absolute;
	top: 0;
	height: 100%;
}

.scrollable-wrapper-paddles .left-paddle .btn {
	border: 0!important;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	/* border-radius: 50%; */
	background: var(--bs-primary);
	color: var(--bs-white);
	position: relative
}

.scrollable-wrapper-paddles .left-paddle .btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.scrollable-wrapper-paddles .right-paddle {
	top: 0;
	height: 100%;
	position: absolute
}

.scrollable-wrapper-paddles .right-paddle .btn {
	border: 0!important;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	/* border-radius: 50%; */
	background: var(--bs-primary);
	color: var(--bs-white);
	position: relative
}

.scrollable-wrapper-paddles .right-paddle .btn i {
	position: absolute;
	top: 50%;
	left: 53%;
	transform: translate(-50%, -50%)
}

.triangle-up-dropmenu {
    display: none
}

.triangle-up-dropmenu.show {
    display: block;
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--bs-body-bg)!important;
    z-index: 99999;
    transform: translateX(-50%);
    transform: rotate(45deg);
    border: 1px solid rgba(0,0,0,.2);
    border-bottom: 0;
    border-right: 0
}

.triangle-up-dropmenu.show-top {
    z-index: 99999!important;
    bottom: -5px!important;
}

/* Article & Blog page */

.press-card-header-image, .press-card-image {
    height: 150px !important;
}

@media (min-width: 576px) {
    .featured-article-block {
        height: 220px !important;
    }

    .press-card-header-image, .press-card-image {
        height: 220px !important;
    }
}

@media (min-width: 768px) {
    .featured-article-block {
        height: 320px !important;
    }

    .press-card-header-image, .press-card-image {
        height: 138px !important;
    }
}

@media (min-width: 991px) {
    .featured-article-block {
        height: 215px !important;
    }

    .press-card-header-image, .press-card-image {
        height: 100px !important;
    }
}

@media (min-width: 1200px) {
    .featured-article-block {
        height: 250px !important;
    }

    .press-card-header-image, .press-card-image {
        height: 124px !important;
    }
}

#post-content p, #post-content li,  #post-content div {
    font-size: 1.1rem;
}

.company-h-underline, .company-h-underline-center {
    position: relative;
}

.company-h-underline:after {
    background: var(--bs-primary);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    bottom: -10px;
    width: 70px
}

.company-h-underline-center:after {
    background: var(--bs-primary);
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    bottom: -10px;
    width: 70px;
    transform: translateX(-50%)
}

.img-zoom {
    transition: all 1s !important;
    min-height: 100%!important;
    z-index: 1
}
.img-zoom:hover {
    transform: scale(1.1)
}

/* footer */
.bar-footer .bar-footer-pagelinks-parent {
    font-size: .9rem !important;
}

.bar-footer {
    font-size: .84rem !important;
}

.apex-dropdown{
    max-height: 290px;
    overflow-y: auto;
}

/* Section */
.apex-section h1{
    font-size: 2.4rem;
    line-height: 2.84rem;
    /* font-weight: 700; */
}

.apex-section-h5{
    font-size: 1.1rem;
    line-height: 1.7rem;
}

/* Apex Divider */
.apex-divider-rounded{
    width: 3.125rem;
    border-radius: 0.25rem !important;
    margin-bottom: 1.25rem;
    border: 0.188rem solid var(--bs-secondary)!important
}

.apex-divider-secondary{
    width: 3rem;
    height: .2rem;
    margin-top: .5rem;
    margin-right: 1.2rem;
    background:var(--bs-secondary);
}

.apex-divider-primary{
    width: 3rem;
    height: .2rem;
    margin-top: .5rem;
    margin-right: 1.2rem;
    background:var(--bs-primary);
}

.apex-divider-white{
    width: 3rem;
    height: .2rem;
    margin-top: .5rem;
    margin-right: 1.2rem;
    background:var(--bs-white);
}

/* Apex Tiny Slider */
.tns-nav {
    display: none;
} 
#tns2-iw{
    margin: 0!important;
}
#tns2 > .tns-item {
    padding: 0 .5rem!important;
}

.apex-slider-item {
    position: relative;
}
.apex-slider-paddles .left-paddle {
    left: 0;
}
.apex-slider-paddles .right-paddle {
    right: 0;
}

.apex-slider-paddles .left-paddle {
    position: absolute;
    top: 0;
    height: 100%;
}

.apex-slider-paddles .left-paddle .btn {
    border: 0!important;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    position: relative
}

.apex-slider-paddles .left-paddle .btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.apex-slider-paddles .right-paddle {
    top: 0;
    height: 100%;
    position: absolute
}

.apex-slider-paddles .right-paddle .btn {
    border: 0!important;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    position: relative
}

.apex-slider-paddles .right-paddle .btn i {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%)
}

.apex-slider-caption {
    position: absolute;
    color:var(--bs-white);
    bottom: 1.25rem;
    left: 10%;
}
/* Apex Slider */

/*Dark overlay*/
.overlay-dark{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .3;
    background: var(--bs-dark);
    border-radius:0.25rem;
}

/*Primary overlay*/
.overlay-primary{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: var(--bs-primary);
    border-radius:0.25rem;
}

/*BG Dark overlay*/
.bg-overlay-dark-2, 
.bg-overlay-dark-3, 
.bg-overlay-dark-4, 
.bg-overlay-dark-5, 
.bg-overlay-dark-6, 
.bg-overlay-dark-7, 
.bg-overlay-dark-8, 
.bg-overlay-dark-9,
.bg-overlay-primary {
    position: relative;
    z-index: 1;
}
.bg-overlay-dark-2:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-3:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.3;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-4:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.4;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-5:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-6:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.6;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-7:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-8:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.8;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-dark-9:before {
    content: " ";
    background: var(--bs-black);
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-overlay-primary:before{
    content: " ";
    background: var(--bs-primary);
    opacity: 0.8;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Social Icon */
.btn-facebook {
    background-color: #0084ff!important;
    color: var(--bs-white)!important;
}

.btn-linkedin {
    background-color: #0077b5!important;
    color: var(--bs-white)!important
}

.btn-twitter {
    background-color: #000000!important;
    color: var(--bs-white)!important
}

.btn-youtube {
    background-color: #f33!important;
    color: var(--bs-white)!important
}

.btn-mastodon {
    background-color: #595aff!important;
    color: var(--bs-white)!important
}

.btn-google {
    background-color: #e14138!important;
    color: var(--bs-white)!important
}

.btn-instagram {
    background-color: #ec4a57!important;
    color: var(--bs-white)!important
}

.btn-gaana {
    background-color: #e73d3a!important;
    color: var(--bs-white)!important
}

.btn-github {
    background-color: #24292e;
    color: var(--bs-white)!important
}

.btn-cdnjs {
    background-color: #e8563a;
    color: var(--bs-white)!important
}

.btn-jsdelivr {
    background-color: #e8563a;
    color: var(--bs-white)!important
}


@media screen and (max-width: 1200px) {
    .sidebar-toggle i {
        /* color: var(--bs-primary); */
        position: absolute;
        top: 50%;
        left: 49.5%;
        transform: translateX(-50%) translateY(-50%);
        cursor: pointer;
        border-radius: 50%;
        padding: 0.125rem 0.625rem;
    }
}

.news-featured-img-sm {
    height: 200px !important;
    background-size: cover;
    background-position: center;
}

/* Full Calender CSS Added */

/* Used In Schedule Calendar button modification */
.fc-button-primary{
    background-color: #0E68B0 !important;
}
/* Used In Schedule Calendar button modification */
.fc-button-active {
    background-color: #00B696 !important;
}
/* Used In Schedule Calendar button modification */
.fc .fc-daygrid-day-top{
    text-align: center !important;
    display:inherit;
}
.fc-event-time{
    display: none;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end, .fc-direction-rtl .fc-daygrid-event.fc-event-start {
    background-color: #0E68B0;
    color: #fff;
}
.fc-daygrid-event-dot {
    display:none;
}
.fc-event-title {
    padding-left:0.2rem;
    padding-right:0.2rem;
}
/* Used For add file card/ drag drop files div */
.file-upload-div{
    cursor: pointer;
}

.calendar-add-today {
    background-color: var(--bs-white);
    height: 3.5rem;
    width: 3.5rem;
    position: absolute;
    right: 14px;
    top: 87.5px;
    border-radius: 50%;
}

.calendar-add-today-btn {
    height: 3rem;
    width: 3rem;
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 50%;
}

.card-body .bootstrap-table .fixed-table-container .table td, .bootstrap-table .fixed-table-container .table th {
    font-size: 0.9rem!important;
}

@media (max-width: 767px) {
    .bootstrap-table .fixed-table-container .table thead th .th-inner {
        min-width: 150px!important;
    }
}
/* Custom CSS End */

/*Stepper*/
ul.stepper {
    counter-reset: section
}

ul.stepper .circle {
    position: relative
}

ul.stepper .circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%)
}

.stepper-horizontal {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

ul.stepper>li:not(:last-of-type) {
    margin-bottom: .625rem;
    -webkit-transition: margin-bottom .4s;
    -o-transition: margin-bottom .4s;
    transition: margin-bottom .4s
}

.stepper-horizontal>li:not(:last-of-type) {
    margin-bottom: 0 !important
}

.stepper-horizontal li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: .5s;
    transition: .5s
}

.stepper-horizontal li:not(:last-child):after {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    content: "";
    top: 32%
}

.stepper-horizontal li:after {
    background-color: #dee2e6
}

.stepper-horizontal li.completed:after {
    background-color: #4da3ff
}

.stepper-horizontal li:last-child {
    flex: unset
}

ul.stepper li a .circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 0;
    line-height: 1.7rem;
    text-align: center;
    background: rgba(0, 0, 0, .38);
    border-radius: 50%
}

.stepper .active .circle {
    background-color: var(--bs-primary) !important;
    color: #fff
}

.stepper .active .label {
    color: var(--bs-primary) !important
}

.stepper .active .circle:hover {
    background-color: var(--bs-primary) !important;
    color: #fff !important
}

.stepper .unfinished .circle {
    background-color: #f1f4f8
}

.stepper .completed .circle {
    background-color: var(--bs-secondary) !important;
    color: #fff
}

.stepper .completed .label {
    color: var(--bs-secondary) !important;
}

.stepper .completed .circle:hover {
    background-color: var(--bs-secondary) !important;
    color: #fff !important
}

.stepper .active span.text-muted {
    color: #fff !important;
}

.stepper .completed span.text-muted {
    color: #fff !important;
}

.stepper a {
    cursor: default;
    line-height: 0;
}

/* Custom CSS added for Directory App */
#card-height {
height: 100vh;
position: relative;
}
#sidebar-scrollbar{
    color: #000 !important;
    height: calc(100% - 75px);
    overflow-y: auto;
    overflow-x: auto;
    padding-bottom: 0;
}
#sidebar-scrollbar::-webkit-scrollbar {
    width: 0.3rem !important;
}
.jstree-default .jstree-clicked {
    background: #fff!important;
    color: #00B696!important;
    border-radius: 0!important;
    box-shadow: none!important;
}

/* Verical Text CSS */
.vertical-text {
    writing-mode: vertical-rl; 
    transform: rotate(180deg); 
}
/* End of Vertical Text CSS */

.apex-lh-md{
    line-height: 1.5rem;
}
.border-left {
    position: relative !important;
    top: 0;
    bottom: 0;
    left: 0;
    border: 0;
    border-left: 0.063rem solid #dee2e6;
}
@media (max-width: 767px) {
    .border-left {
        border-left: none !important;
    }
}
.badge-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}
.card-img-top {
    position: relative;
    z-index: 1;
}
.company-logo {
    background-image: url(../image/batoi-logo.png)!important;
    height: 38px;
    width: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto; 
    display: block; 
}

.hover-up {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hover-up:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0px 10px 30px rgba(29, 58, 83, 0.15);
  box-shadow: 0px 10px 30px rgba(29, 58, 83, 0.15);
}


/* light/dark mode Toggle button */
#themeToggle {
    position: relative;
    display: inline-block;
    width: 3.125rem;
    height: 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--bs-body-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#themeToggle::before {
    font-family: 'bootstrap-icons';
    content: "\F5A2"; 
    color: var(--bs-black);
    position: absolute;
    height: 1.0rem;
    width: 1.0rem;
    left: 2px;
    bottom: 6px;
    border-radius: 50%;
    transition: transform 0.4s;
}

#themeToggle[data-theme="dark"] {
    border: 2px solid var(--bs-body-color);
}

#themeToggle[data-theme="dark"]::before {
    transform: translateX(25px);
    font-family: 'bootstrap-icons';
    content: "\F497"; 
    color: var(--bs-white);
}

.theme-toggle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.315rem 0.75rem;
    border-radius: .25rem;
}

#themeLabel {
    font-size: 14px;
    color: var(--bs-body-color);
    font-weight: 500;
}

/* Html Editor */
.ace-tm .ace_gutter, .ace-tm .ace_gutter-active-line {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.ace-tm {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.ace_editor {
    border: 1px solid var(--bs-border-color) !important;
}

/* Summernote Editor */
.note-editor.note-airframe, .note-editor.note-frame {
    border: 1px solid var(--bs-border-color) !important;
}

.note-toolbar{
    color: var(--bs-body-color);
    background-color: var(--bs-light);
    border-color: var(--bs-border-color) !important;
}

.note-btn{
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color) !important;
}

.note-frame {
    color: var(--bs-body-color)!important;
}
body {
	background: #ffffff;
}

.btn-primary {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	text-decoration: none !important;
}

.btn-outline-primary {
	color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus, 
.btn-outline-primary:active {
	background-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-primary) !important;
	text-decoration: none !important;
}
.btn-pill {
	padding: 0.75rem 1.4rem;
	font-weight: 600;
}

.secure-header {
	background: #ffffff;
	border-bottom: 1px solid rgba(220, 227, 238, 0.9);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	position: sticky;
	top: 0;
	z-index: 1040;
}

.secure-navbar {
	padding: 1.15rem 0;
}

.secure-navbar .navbar-brand {
	font-weight: 700;
	color: var(--batoi-primary);
	letter-spacing: -0.02em;
	font-size: 1.15rem;
}

.navbar-logo {
	width: 38px;
	height: 38px;
}

.secure-navbar .navbar-toggler {
	border: 0;
}

.secure-navbar .navbar-nav {
	gap: clamp(1.1rem, 1.8vw, 1.5rem);
}

.secure-navbar .navbar-nav .nav-link {
	font-weight: 600;
	color: var(--batoi-body);
	padding: 0.35rem 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-bottom-color 0.2s ease;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
}

.secure-navbar .navbar-nav .nav-link.active,
.secure-navbar .navbar-nav .nav-link:focus,
.secure-navbar .navbar-nav .nav-link:hover {
	color: var(--batoi-primary);
	border-bottom-color: var(--batoi-primary);
}

.secure-navbar .dropdown-menu {
	border-radius: 18px;
	border: 1px solid rgba(220, 227, 238, 0.9);
	box-shadow: var(--batoi-shadow-md);
}

.card-grid {
	display: grid;
	gap: clamp(1.8rem, 3vw, 2.6rem);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	margin-bottom: 1.5rem;
}

.feature-card,
.policy-card,
.event-card,
.resource-card {
	background: var(--batoi-surface);
	border: 1px solid rgba(14, 104, 176, 0.14);
	border-radius: var(--batoi-radius);
	padding: 1.8rem;
	box-shadow: var(--batoi-shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before,
.policy-card::before,
.event-card::before,
.resource-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(14, 104, 176, 0.08), transparent 65%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.feature-card:hover,
.policy-card:hover,
.event-card:hover,
.resource-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--batoi-shadow-md);
	border-color: rgba(14, 104, 176, 0.2);
}

.feature-card:hover::before,
.policy-card:hover::before,
.event-card:hover::before,
.resource-card:hover::before {
	opacity: 1;
}

.feature-card i,
.policy-card i,
.event-card i,
.resource-card i {
	font-size: 1.5rem;
	color: var(--batoi-primary);
}

.partner-card {
	background: var(--batoi-surface);
	border: 1px solid rgba(14, 104, 176, 0.12);
	border-radius: var(--batoi-radius);
	padding: 1.75rem;
	box-shadow: var(--batoi-shadow-sm);
}

.feature-card h5,
.policy-card h5,
.event-card h5,
.resource-card h5 {
	font-weight: 700;
	margin-bottom: 0.3rem;
	font-size: 1.08rem;
}

.feature-card p,
.policy-card p,
.event-card p,
.resource-card p {
	color: var(--batoi-muted);
	margin-bottom: 0;
	line-height: 1.6;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
}

.link-arrow i {
	transition: transform 0.2s ease;
}

.link-arrow:hover i {
	transform: translateX(4px);
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(14, 104, 176, 0.18);
	background: rgba(14, 104, 176, 0.08);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--batoi-primary);
}

.stat-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.1rem 1.4rem;
	border-radius: var(--batoi-radius);
	border: 1px solid rgba(0, 182, 150, 0.24);
	background: rgba(0, 182, 150, 0.1);
	min-width: 200px;
}

.stat-badge .label {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: var(--batoi-secondary);
}

.stat-badge .value {
	font-size: 1.75rem;
	font-weight: 700;
	color: #0f2034;
}

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.filter-chip {
	border-radius: 999px;
	border: 1px solid rgba(14, 104, 176, 0.24);
	background: rgba(14, 104, 176, 0.06);
	color: var(--batoi-primary);
	padding: 0.35rem 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
	background: var(--batoi-primary);
	border-color: var(--batoi-primary);
	color: #ffffff;
}

.details-card {
	background: var(--batoi-surface);
	border: 1px solid rgba(14, 104, 176, 0.14);
	border-radius: var(--batoi-radius);
	padding: 1.8rem;
	box-shadow: var(--batoi-shadow-sm);
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	position: relative;
	overflow: hidden;
}

.details-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 182, 150, 0.08), transparent 65%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.details-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--batoi-shadow-md);
	border-color: rgba(0, 182, 150, 0.2);
}

.details-card:hover::before {
	opacity: 1;
}

.experience-panel {
	background: var(--batoi-surface);
	border: 1px solid rgba(14, 104, 176, 0.14);
	border-radius: 18px;
	box-shadow: var(--batoi-shadow-sm);
	padding: 1.75rem;
}

.experience-panel-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.experience-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(14, 104, 176, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--batoi-primary);
	font-size: 1.4rem;
}

.experience-panel-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.experience-row {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(14, 104, 176, 0.08);
}

.experience-row:last-child {
	border-bottom: 0;
}

.experience-pill {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.experience-pill strong {
	display: block;
	color: #0f2034;
}

.experience-pill span {
	color: var(--batoi-muted);
	font-size: 0.95rem;
}

.meta-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.meta-card {
	padding: 1.1rem 1.35rem;
	border-radius: var(--batoi-radius);
	background: rgba(0, 182, 150, 0.1);
	border: 1px solid rgba(0, 182, 150, 0.22);
}

.meta-card span {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--batoi-secondary);
	font-weight: 600;
}

.meta-card strong {
	display: block;
	margin-top: 0.35rem;
	color: #0f2034;
}

/* .timeline {
	border-left: 2px solid rgba(14, 104, 176, 0.16);
	padding-left: 1.5rem;
} */

.timeline-item {
	position: relative;
	margin-bottom: 1.8rem;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: -1.65rem;
	top: 0.35rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--batoi-primary);
	box-shadow: 0 0 0 6px rgba(14, 104, 176, 0.18);
}

.timeline-item h6 {
	font-weight: 700;
}

.timeline-item p {
	color: var(--batoi-muted);
	margin-bottom: 0;
}

.cta-panel {
	border-radius: var(--batoi-radius);
	border: 1px solid rgba(14, 104, 176, 0.2);
	background: #eef4fb;
	padding: clamp(1.8rem, 4vw, 2.6rem);
	box-shadow: var(--batoi-shadow-sm);
}

.dropdown-menu-mega {
	width: min(680px, 100%);
	min-width: 360px;
	padding: 1.65rem;
	border-radius: 18px;
	border: 1px solid rgba(14, 104, 176, 0.12);
	background: var(--batoi-surface);
	box-shadow: var(--batoi-shadow-md);
}

.dropdown-menu-mega .mega-menu-grid {
	display: grid;
	gap: 1.4rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dropdown-menu-mega .mega-menu-column {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.dropdown-menu-mega .mega-menu-title {
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--batoi-muted);
	margin-bottom: 0.35rem;
}

.dropdown-menu-mega .mega-menu-item {
	display: block;
	margin: 0;
	padding: 0.6rem 0.6rem;
	border-radius: var(--batoi-radius);
	text-decoration: none;
	color: #0f2034;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, padding 0.2s ease, margin 0.2s ease;
}

.dropdown-menu-mega .mega-menu-item:last-child {
	margin-bottom: 0;
}

.dropdown-menu-mega .mega-menu-item-title {
	font-weight: 600;
	display: block;
}

.dropdown-menu-mega .mega-menu-item-copy {
	font-size: 0.85rem;
	color: var(--batoi-muted);
	display: block;
	line-height: 1.5;
}

.dropdown-menu-mega .mega-menu-item:hover {
	background: rgba(14, 104, 176, 0.08);
	color: var(--batoi-primary);
	transform: translateX(2px);
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
	background-color: rgba(14, 104, 176, 0.08);
	color: var(--batoi-primary-dark);
}

.navbar-search-form {
	position: relative;
	display: flex;
	align-items: center;
	background: #f7f9fc;
	border-radius: 999px;
	padding: 0.35rem 1rem 0.35rem 2.6rem;
	border: 1px solid rgba(14, 104, 176, 0.12);
	min-width: 260px;
}

.navbar-search-input {
	border: 0;
	background: transparent;
	outline: none;
	font-size: 0.95rem;
	color: #5a6c80;
	width: 100%;
}

.navbar-search-input::placeholder {
	color: rgba(90, 108, 128, 0.85);
}

.navbar-search-icon {
	position: absolute;
	left: 1rem;
	color: rgba(58, 72, 86, 0.55);
	font-size: 1rem;
}

.navbar-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin-left: auto;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 0.65rem;
	padding: 0;
	font-size: 1.1rem;
	border: 1px solid rgba(14, 104, 176, 0.28);
	color: var(--batoi-primary);
	background: #ffffff;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-icon.btn-light {
	background: #f7f9fc;
	border-color: rgba(14, 104, 176, 0.18);
}

.btn-icon:hover,
.btn-icon:focus {
	background: #eaf2fb;
	color: var(--batoi-primary-dark);
	border-color: rgba(14, 104, 176, 0.35);
}

.btn-icon.btn-outline-primary {
	background: #fff;
	border-color: rgba(14, 104, 176, 0.4);
}

.btn-control-panel {
	padding: 0.5rem 1.35rem;
	border-radius: 999px;
	font-weight: 600;
	border: 1px solid rgba(14, 104, 176, 0.12);
}

.btn-control-panel i {
	font-size: 1rem;
}

.dropdown-menu-allbatoi {
	min-width: 260px;
	padding: 1.25rem 1.5rem;
}

.dropdown-menu-allbatoi .mega-menu-column {
	gap: 0.4rem;
}

.dropdown-menu-allbatoi .mega-menu-item {
	padding: 0.35rem 0;
}

.dropdown-menu-allbatoi .mega-menu-item:hover {
	margin: 0;
	padding: 0.35rem 0.5rem;
}

.navbar-actions-mobile {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.navbar-actions-mobile .navbar-search-form {
	width: 100%;
	min-width: 0;
}

.navbar-actions-mobile .navbar-search-input {
	min-width: 0;
	width: 100%;
	}

.footer {
	background: #0d1f36;
	color: rgba(255, 255, 255, 0.82);
	padding: 2.6rem 0;
}

.footer a {
	color: rgba(255, 255, 255, 0.85);
}

.footer a:hover {
	color: #ffffff;
}

.secure-footer {
	background: var(--batoi-surface-alt);
	border-top: 1px solid rgba(14, 104, 176, 0.12);
	padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
	border-bottom: 1px solid rgba(14, 104, 176, 0.08);
	padding-bottom: 2.5rem;
}

.footer-brand {
	max-width: 280px;
}

.footer-title {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--batoi-body);
}

.secure-footer .footer-copy {
	color: var(--batoi-muted);
	font-size: 0.92rem;
}

/* .secure-footer .footer-links li + li {
	margin-top: 0.35rem;
} */

.secure-footer .footer-links a {
	color: var(--batoi-muted);
	font-weight: 400;
	transition: color 0.2s ease;
}

.secure-footer .footer-links a:hover {
	color: var(--batoi-primary);
}

.secure-footer .footer-meta {
	border-top: 1px solid rgba(14, 104, 176, 0.08);
}

.footer-meta-links .list-inline-item + .list-inline-item {
	margin-left: 1rem;
}

.footer-meta-links a {
	color: var(--batoi-muted);
	font-weight: 600;
	font-size: 0.85rem;
}

.footer-meta-links a:hover {
	color: var(--batoi-primary);
}

.footer-certifications img {
	opacity: 0.7;
}

.footer-social a {
	font-size: 1.1rem;
	color: var(--batoi-muted);
	transition: color 0.2s ease;
}

.footer-social a:hover {
	color: var(--batoi-primary);
}

@media (max-width: 767.98px) {
	.footer-brand {
		max-width: 100%;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

.secure-breadcrumb-bar {
	background: #eef3f9;
	border-bottom: 1px solid rgba(14, 104, 176, 0.08);
	padding: 0.85rem 0;
}

.secure-breadcrumb-bar .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	background: transparent;
	margin-bottom: 0;
	padding: 0;
}

.secure-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(14, 104, 176, 0.4);
}

.secure-breadcrumb-bar .breadcrumb a {
	color: var(--batoi-primary);
	font-weight: 600;
}

.secure-breadcrumb-bar .breadcrumb .active {
	color: var(--batoi-muted);
	font-weight: 600;
}

@media (max-width: 992px) {
	.hero {
		text-align: center;
		border-radius: 0;
	}

	.hero-subtitle {
		margin: 0 auto;
	}

	.secure-navbar .nav-link {
		margin: 0 0 0.75rem 0;
	}

	.navbar-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.navbar-search-input {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.hero {
		padding-top: 3.2rem;
	}

	.feature-card,
	.policy-card,
	.event-card,
	.resource-card,
	.details-card {
		padding: 1.4rem;
	}
}

:root,
[data-bs-theme="light"] {
	--bs-primary: #0E68B0 !important;
	--bs-secondary: #00B696; /* Change secondary color */
	--bs-secondary-hover: #00B696; /* Change secondary hover color */
	--bs-info: #17a2b8; /* Change info color */
	
	/* Other colors */
	--bs-success: #28a745; /* Change success color */
	--bs-warning: #ffc107; /* Change warning color */
	--bs-danger: #dc3545; /* Change danger color */
	--bs-white: #fff; /* Change white color */
	--bs-black: #000; /* Change black color */
	--bs-grey: #cdcdcd; /* Change grey color */
	
	/* Fonts */
	--bs-font-family: "proxima-nova", sans-serif; /* Change sans-serif font */
	--bs-font-monospace: Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* Change monospace font */
	--bs-font-size-base: 1rem; /* Change base font size */
	--bs-line-height-base: 2; /* Change base line height */
	
	/* Spacing */
	--bs-gutter-x: 1.5rem; /* Change horizontal gutter */
	--bs-gutter-y: 0; /* Change vertical gutter */
	
	/* Borders */
	--bs-border-width: 0.063rem; /* Change border width */
	--bs-border-radius: .25rem; /* Change border radius */
	--bs-border-radius-lg: .3rem; /* Change large border radius */
	--bs-border-radius-sm: .2rem; /* Change small border radius */
	
	/* Grid Breakpoints */
	--bs-grid-breakpoints-xs: 0; /* Change xs breakpoint */
	--bs-grid-breakpoints-sm: 576px; /* Change sm breakpoint */
	--bs-grid-breakpoints-md: 768px; /* Change md breakpoint */
	--bs-grid-breakpoints-lg: 992px; /* Change lg breakpoint */
	--bs-grid-breakpoints-xl: 1200px; /* Change xl breakpoint */
	--bs-grid-breakpoints-xxl: 1400px; /* Change xxl breakpoint */

	--list-group-item-color: #ffffff; /* Default color */
	--list-group-item-color-hover: #e8e8e8; /* Hover color */
	--list-group-item-color-active: #5b7787; /* Active color */
	--list-group-item-text-color: #333; /* Default text color */
	--list-group-item-text-color-active: #ffffff; /* Active text color */

	/* Light mode */
	--bs-primary-hover: #07497c !important;
	--bs-body-color: #212529; /* Change body text color */
	--bs-body-bg: #ffffff; /* Change body background color */
	--bs-text-muted:#6c757d; /* Change muted color */
	--bs-dark: #343a40; /* Change dark color */
	--bs-light: #f8f9fa; /* Change light color */
	--bs-border-color: #dee2e6; /* Change border color */
	--bs-text-decoration: none; /* Change text decoration */
	--btn-outline-getstarted-color:#0E68B0;
	--btn-outline-getstarted-text:#ffffff;
}

/* Dark mode */
[data-bs-theme="dark"] {
	--bs-primary-hover: #0d81db !important;
	--bs-body-color: #ffffff!important;
	--bs-body-bg:#212529;
	--bs-text-muted: #a7a7a7;
	--bs-dark: #efefef!important;
	--bs-light:#343a40;
	--bs-border-color: #5a6064;
	--bs-link-color: #ffffff; 
	--bs-text-decoration: underline;
	--btn-outline-getstarted-color:#ffffff;
	--btn-outline-getstarted-text:#0E68B0;
}

.bg-light{
	background-color: var(--bs-light)!important;
}

.bg-light{
	background-color: var(--bs-light)!important;
}

body, .card-header, .card-footer{
	background-color: var(--bs-body-bg);
}

/* .web-logo {
	height: 100%;
} */

/* .bg-dark{
	background-color: var(--bs-dark)!important;
}

.text-light{
	color: var(--bs-body-color)!important;
} */

.text-dark{
	color: var(--bs-body-color)!important;
}

body{
	overflow-x: hidden;
	word-break: break-word;
	font-size: var(--bs-font-size-base);
	line-height: var(--bs-line-height-base);
	font-family: var(--bs-font-family)!important;
	color: var(--bs-body-color);
}

body a{
	color: var(--bs-primary);
}

body a:hover{
	color: var(--bs-primary-hover);
}

.text-primary {
	color: var(--bs-primary) !important;
}

.text-primary:hover {
	color: var(--bs-primary-hover) !important;
}

.text-primary:a{
	color: var(--bs-primary) !important;
	text-decoration: var(--bs-text-decoration);
	text-underline-offset: 0.21rem !important;
}

.bg-primary {
	background-color: var(--bs-primary) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.text-secondary {
	color: var(--bs-secondary) !important;
}

.btn-primary {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	text-decoration: none !important;
}

.btn-outline-primary {
	color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus, 
.btn-outline-primary:active {
	background-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-primary) !important;
	text-decoration: none !important;
}

.btn-getstarted {
	background: var(--bs-primary)!important;
	color: var(--bs-white)!important;
	padding: .75rem 1.25rem !important;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	border-color: var(--bs-primary)!important;
}

.btn-getstarted:hover {
	background: #0b538d!important;
	color: var(--bs-white)!important;
	padding: .75rem 1.25rem;
	border-color: #0b538d!important;
	text-decoration: none !important;
	/* box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important */
}

.btn-outline-getstarted {
	color: var(--btn-outline-getstarted-color) !important;
	border-color: var(--btn-outline-getstarted-color) !important;
}

.btn-outline-getstarted:hover, 
.btn-outline-getstarted:focus, 
.btn-outline-getstarted:active {
	background-color: var(--btn-outline-getstarted-color) !important;
	color: var( --btn-outline-getstarted-text) !important;
	border-color: var(--btn-outline-getstarted-color) !important;
}

.btn-outline-danger {
	color: var(--bs-danger) !important;
	border-color: var(--bs-danger) !important;
}

.btn-outline-danger:hover, 
.btn-outline-danger:focus, 
.btn-outline-danger:active {
	background-color: var(--bs-danger) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-danger) !important;
}
.btn-secondary {
	background-color: var(--bs-secondary) !important;
	border-color: var(--bs-secondary) !important;
}

.btn-secondary:hover, 
.btn-secondary:focus, 
.btn-secondary:active {
	background-color: var(--bs-secondary-hover) !important;
	border-color: var(--bs-secondary-hover) !important;
}

.btn-outline-secondary {
	color: var(--bs-secondary) !important;
	border-color: var(--bs-secondary) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
	background-color: var(--bs-secondary-hover) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-secondary-hover) !important;
}

.btn-success {
	background-color: var(--bs-success) !important;
	border-color: var(--bs-success) !important;
}

.btn-success:hover, 
.btn-success:focus, 
.btn-success:active {
	background-color: var(--bs-success) !important;
	border-color: var(--bs-success) !important;
}

.btn-outline-success {
	color: var(--bs-success) !important;
	border-color: var(--bs-success) !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
	background-color: var(--bs-success) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-success) !important;
}

.btn-danger {
	background-color: var(--bs-danger) !important;
	border-color: var(--bs-danger) !important;
}

.btn-danger:hover, 
.btn-danger:focus, 
.btn-danger:active {
	background-color: var(--bs-danger) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-danger) !important;
}

.btn-outline-danger {
	color: var(--bs-danger) !important;
	border-color: var(--bs-danger) !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active {
	background-color: var(--bs-danger) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-danger) !important;
}

.btn-warning {
	background-color: var(--bs-warning) !important;
	border-color: var(--bs-warning) !important;
}

.btn-warning:hover, 
.btn-warning:focus, 
.btn-warning:active {
	background-color: var(--bs-warning) !important;
	border-color: var(--bs-warning) !important;
}

.btn-outline-warning {
	color: var(--bs-warning) !important;
	border-color: var(--bs-warning) !important;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active {
	background-color: var(--bs-warning) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-warning) !important;
}

.btn-info {
	background-color: var(--bs-info) !important;
	border-color: var(--bs-info) !important;
}

.btn-info:hover, 
.btn-info:focus, 
.btn-info:active {
	background-color: var(--bs-info) !important;
	border-color: var(--bs-info) !important;
}

.btn-outline-info {
	color: var(--bs-info) !important;
	border-color: var(--bs-info) !important;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active {
	background-color: var(--bs-info) !important;
	color: var(--bs-white) !important;
	border-color: var(--bs-info) !important;
}

.btn-white {
	background-color: var(--bs-white) !important;
	color: var(--bs-primary)!important;
	border-color: var(--bs-white)!important;
}

.btn-outline-white {
	color: var(--bs-white) !important;
	border-color: var(--bs-white) !important;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
	background-color: var(--bs-white) !important;
	color: var(--bs-primary) !important;
	border-color: var(--bs-white) !important;
}

.btn-grey{
	background-color: var(--bs-text-muted)!important;
	color: var(--bs-white);
}

.btn-show{
	position: fixed;
	display: block !important;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 1;
}

.text-muted{
	color: var(--bs-text-muted)!important;
}

.btn-custom{
	height: 2.375rem;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
}

p.tagline{
	line-height: 1.7rem;
}

hr{
	color: var(--bs-border-color);
	opacity:1;
}

.container{
	padding-left: 1.6rem !important;
	padding-right: 1.6rem !important;
}

@media (max-width: 769px) {
	.container {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

/* add custom styles for tabs for active, hover, etc. */
.nav-tabs .nav-link {
	color: var(--bs-primary) !important;
}

.nav-tabs .nav-link.active {
	color: var(--bs-secondary) !important;
}


.nav-tabs .nav-item .nav-link {
	padding: 0.188rem 0.75rem;
	font-weight: normal !important;
}

.nav-simple{
	justify-content: center;
}

.nav-simple .nav-item .nav-link{
	border-bottom:0.2rem solid var(--bs-border-color)!important;
	padding: .5rem 3rem;
	color:var(--bs-dark)!important;
	font-weight: 600 !important;
}
.nav-simple .nav-item .nav-link.active{
	border-bottom:0.2rem solid var(--bs-secondary)!important;
}

/* Circular Tabs */
.nav-circular .nav-link {
	margin: 0.5rem;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--bs-primary)!important;
	font-weight: normal !important;
}

.nav-circular .nav-link:hover{
	border:0.063rem solid var(--bs-border-color)!important;
}

.nav-circular .nav-link.active {
	/* border:0.063rem solid var(--bs-border-color); */
	color: var(--bs-white)!important;
	background-color: var(--bs-secondary);
}

#apexNavPills a{
	width: 75%;
	padding: .688rem;
	border-radius: 50rem;
	font-size: var(--bs-font-size-base) !important;
	font-weight: 500;
	color: var(--bs-primary) !important;
}

#apexNavPills a:hover{
	border: 0.01rem solid var(--bs-border-color);
}

#apexNavPills a.active{
	background-color: var(--bs-secondary);
	color: var(--bs-white) !important;
}

.dropdown-item{
	padding-top: .19rem;
	padding-bottom: .19rem;
}

.nav-item .dropdown-menu{
	border: 1px solid var(--bs-border-color)!important;
	border-radius: 5px!important;
	box-shadow: 0 .125rem .25rem rgb(0 0 0 / 8%);
}

.nav-item .dropdown-menu .dropdown-item{
	font-size: .75rem;
}

.hvr-fw-bold:hover {
	font-weight: 700 !important;
}


.dropdown-toggle::after {
	content: unset!important;
}

/* .navbar-dropmenu-enterprise .dropdown-item {
	padding: 0.157rem 0.75rem;
	border-bottom: 0.063rem solid rgba(0, 0, 0, .07);
} */

/* Specific Classes */
.compact-navbar .dropdown-menu {
	padding: 0.8rem 0.5; 
}

.compact-navbar .dropdown-menu .dropdown-item {
	padding: 0.5rem 1.5rem; 
	font-size: 1rem;
}

.menu-icon {
	margin-right: 0.5rem;
}

.card {
	transition: box-shadow 0.3s ease-in-out;
	background-color: var(--bs-body-bg);
	border-radius: 0.15rem;
	font-size: var(--bs-font-size-base) !important;
	border-color: var(--bs-border-color);
}

.card:hover {
	box-shadow: 0 0 0.625rem rgba(0,0,0,0.1);
}

.card input[type="text"],
.card input[type="password"],
.card input[type="email"],
.card input[type="number"],
.card input[type="search"],
.card input[type="tel"],
.card input[type="url"],
.card input[type="date"],
.card textarea,
.card select {
	font-size: 1rem; 
	font-family: var(--bs-font-family); 
	color: var(--bs-body-color);
}

.card-header, .card-footer {
	border-color: var(--bs-border-color);
}

.card-body::-webkit-scrollbar{
	width: 0.3rem!important;
}

.card-footer{
	padding: 1rem;
}

.shadow-sm{
	box-shadow:0 0 0.625rem rgba(0,0,0,0.1)!important;
}

.hover-shadow:hover{
	box-shadow:0 0 0.625rem rgba(0,0,0,0.2)!important;
}

/* HTML editor */
.ace_editor {
	width: 100% !important;
	display: block !important;
	height: 300px !important;
	overflow: auto !important;
	border: 1px solid rgba(0, 0, 0, .1) !important;
	margin: auto;
}

.table{
	--bs-table-color: none;
	/* --bs-table-bg: none; */
	color: var(--bs-body-color);
}

.fixed-table-container .table thead th .th-inner{
	padding:.488rem .9rem!important;
	font-size: 1rem;
}

.fixed-table-container .table td{
	padding:.3rem .9rem !important;
	cursor: default!important;
	color: var(--bs-dark) !important;
}

.bootstrap-table .fixed-table-container .table thead th{
	color:var(--bs-dark);
	background:var(--bs-light);
	font-weight: 600;
}

.bootstrap-table .columns .btn, .bootstrap-table .export .btn, .bootstrap-table .page-list .btn, .bootstrap-table .pagination .btn {
	background-color: var(--bs-body-bg) !important;
	border-color: var(--bs-primary) !important;
	color: var(--bs-primary) !important;
}

.bootstrap-table .columns .btn:hover, .bootstrap-table .export .btn:hover, .bootstrap-table .page-list .btn:hover, .bootstrap-table .pagination .btn:hover {
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
}

/* change selected pagination button color */
.bootstrap-table .pagination .page-item.active .page-link {
	background-color: var(--bs-primary) !important;  
	border-color:  var(--bs-primary) !important; 
	color: var(--bs-white) !important; 
}

/* Apex Table */
.apex-table.table-bordered{
	border: 0px solid var(--bs-white);
}

.apex-table.table-bordered tr{
	border-bottom: 0.063rem solid var(--bs-border-color)!important;
	z-index: 0.063rem;
}

.apex-table.table-bordered>:not(caption)>*>* {
	border-width: 0;
}

.apex-table-button{
visibility: hidden;
transition: visibility .06s ease-in;
display: inline-flex;
}

tr:hover > td .apex-table-button{
visibility: visible
}  

@media (max-width: 800px){
	.apex-table-button{
		visibility: visible
	}
} 

.pagination{
	--bs-pagination-padding-x:1rem;
	--bs-pagination-padding-y:.125rem;
}


/* Chosen */
.chosen-container {
	width: 100% !important
}

.chosen-choices {
	padding: .7rem !important;
	border: 0.063rem solid var(--bs-border-color);
	background: 0 0 !important;
	border-radius: .25rem !important
}

.chosen-container-active .chosen-choices, .chosen-container-active{
	/* border-color: #86b7fe!important; */
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
	border-radius: 4px;
}

.chosen-container-active.chosen-with-drop .chosen-single{
	border-color:#86b7fe;
}

.chosen-container-multi.chosen-with-drop .chosen-choices{
	border-color:#86b7fe!important;
}

.chosen-container-single .chosen-single {
	font-size: 1rem;
	line-height: 3rem;
	background: var(--bs-body-bg) !important;
	color: var(--bs-body-color) !important;
	border-radius: .25rem;
	box-shadow: none;
	min-height: calc(2.9rem + 0.1rem);
	border: 0.063rem solid var(--bs-border-color);
}

.chosen-container-single .chosen-single div b {
	position: absolute;
	top: 50%;
	transform: translateY(-27%)
}

.chosen-select-sm .chosen-container-single .chosen-single {
	background: var(--bs-body-bg);
	border: 0.063rem solid var(--bs-border-color);
	box-shadow: none;
	height: calc(1.5em+.5rem+0.125rem);
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5;
	border-radius: .2rem
}

.chosen-select-sm .chosen-container-single .chosen-single div b {
	background: url(chosen-sprite.png) no-repeat 0 -0.063rem
}

.chosen-select-md .chosen-container-single .chosen-single {
	background: var(--bs-body-bg);
	border: 0.063rem solid var(--bs-border-color);
	box-shadow: none;
	height: calc(1.5em + .75rem + 0.125rem);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--bs-body-color);
	/* background-color: #fff; */
	background-clip: padding-box;
	border: 0.063rem solid var(--bs-border-color);
	border-radius: .25rem
}

.chosen-container .chosen-results{
	color: var(--bs-body-color);
}

.chosen-container .chosen-results li {
	padding:0.5rem;
	/* line-height: 0.5rem; */
	font-size: var(--bs-font-size-base);
}

.chosen-container .chosen-results li.active-result:hover {
	background: var(--bs-primary) !important
}

.chosen-container .chosen-results li.highlighted {
	background: var(--bs-primary) !important
}

.chosen-container-multi .chosen-choices{
	height: calc(2.9rem + 0.1rem)!important;
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-radius: var(--bs-border-radius)!important;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text]{
	color: var(--bs-body-color);
	font-family: var(--bs-font-family)!important;
	font-size: 1rem!important;
}

.chosen-container-single .chosen-single div{
	display: none;
}

.chosen-container .chosen-drop{
	/* border-color:var(--bs-border-color)!important; */
	border-radius:.5rem ;
	box-shadow: 0px 12px 20px 2px rgba(0,0,0,.1);
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
}

.chosen-container-multi .chosen-choices li.search-choice{
	background-image: var(--bs-light);
	background-color: var(--bs-light);
	color: var(--bs-body-color);
}

.list-group-item {
	/* background-color: var(--list-group-item-color); */
	color: var(--list-group-item-text-color);
}

.list-group-item:hover {
	/* background-color: var(--list-group-item-color-hover); */
	color: var(--list-group-item-text-color);
}

.list-group-item.active {
	/* background-color: var(--list-group-item-color-active); */
	color: var(--list-group-item-text-color-active);
}

.list-group-item:focus {
	/* background-color: var(--list-group-item-color-hover); */
	color: var(--list-group-item-text-color);
}

.list-group-item.active a {
	color: var(--list-group-item-text-color-active);
}

.list-group-item {
	color: #062334;
}

.list-group-item a {
	color: #062334;
	text-decoration: none;
}

.apex-bare-list .list-group-item {
	border-left: 0;
	border-right: 0;
	background-color: white; 
	padding-left: 0;
	padding-right: 0;
}

.apex-bare-list .list-group-item:first-child {
	border-top: 0;
}

.apex-bare-list .list-group-item:last-child {
	border-bottom: 0;
}

a.apex-link {
	color: var(--bs-primary);
	text-decoration: none;
}

a.apex-link:hover {
	color: var(--bs-primary);
}

a.apex-link i {
	color: inherit;
}

/* scrollbar */
*::-webkit-scrollbar {
	width: .65rem;
}

*::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 0.063rem var(--bs-primary);
}

*::-webkit-scrollbar-thumb {
background-color: var(--bs-secondary);
}

a{
	color: var(--bs-primary);
	text-decoration: none;
}

/* Navbar CSS Start */
.nav-link {
	color: var(--bs-dark) !important;
	font-size: 1rem;
	font-weight: 600 !important;
	margin-left: 1rem;
}

.nav-link.active{
	color: var(--bs-secondary) !important;
}

.nav-item.active {
	border-left:0.313rem solid var(--bs-primary);
}

.nav-item.active .nav-link{
	color: var(--bs-secondary)!important;
}

.navbar-nav .account-menus .dropdown-item{
	color: var(--bs-black)!important;
}

.navbar-nav .account-menus .dropdown-item:hover{
	color:var(--bs-primary) !important;
}

.web-logo, .navbar-logo, .footer-logo {
	width: 8.652rem;
}

/* Custom Navbar CSS */
.navbar-brand{
	padding: 0rem;
	line-height: 0;
	margin-right: 0;
}

/* .navbar-logo {
	height: 1.563rem;
	margin-top: -0.188rem;
} */

.navbar {
	height: auto;
	padding: .16rem 1rem;
	border-bottom: 0.063rem solid var(--bs-border-color);
	background-color: var(--bs-body-bg);
}

.header-sticky {
	box-shadow: 0 0 3px 0 rgba(0,0,0,.06);
	top: -0.01rem;
}

.logo-transition .web-logo{
	width: 7rem;
}

/* Vertical Nav */
.vertical-nav .nav-link{
	color: #222222!important;
	border-radius: 0 !important;
}
.vertical-nav .nav-link:hover{
	color: #222222!important;
	border-left: 0.125rem solid var(--bs-secondary) !important;
	border-radius: 0 !important;
}
.vertical-nav .nav-link.active{
	color: #222222!important;
	background-color: #ffffff!important;
	font-weight: 800!important;
	border-left: 0.125rem solid var(--bs-secondary) !important;
	border-radius: 0 !important;
}
.custom-dropdown-toggle::after {
	display: none!important;
}


.dropdown-item.active, .dropdown-item:active {
	background-color: #fff;
	color: #000;
}

.dropdown-toggle::after{
	display: none;
}

.navbar-dropmenu-enterprise {
	left: auto !important;
	right: 0;
	top: 3.625rem!important;
}
.dropdown-menu {
	max-width: 15.625rem;
}

.dropdown-item h6.name, .dropdown-item .email {
	word-wrap: break-word !important;
	word-break: break-word !important;
	overflow-wrap: break-word !important;
	white-space: normal !important;
	width: 100% !important;
	display: block !important;
}

.navbar-dropmenu-enterprise .dropdown-item {
	padding: 0.122rem 0.75rem;
	border-bottom: 0.063rem solid rgba(0, 0, 0, .07);
	width: 15.625rem;
	white-space: normal;
}

.logout-btn{
	background-color: var(--bs-danger)!important;
	padding: 0.157rem 0.75rem!important;
	width: 15.625rem!important;
}
.logout-btn:hover {
	background-color: unset!important;
	background-color: var(--bs-danger)!important;

}

.dropdown-menu-header {
	padding: .75rem;
	text-align: center;
	font-weight: 400;

}

.dropmenu-enterprise .dropdown-item {
	padding: .157rem 1.5rem;
	border-bottom: 0.063rem solid rgba(0, 0, 0, .07);
	color: var(--bs-black)!important;
}

.dropmenu-enterprise {
	left: auto !important;
	right: 0 !important;
	top: 0.75rem !important;
}
.dropdown-item:focus, .dropdown-item:hover {
	color: var(--bs-dropdown-link-hover-color);
	background-color:unset;
}

/* Navbar CSS End */

/* Breadcrumb */
/* .breadcrumb {
	background-color: transparent!important;
	padding: 0 1.5rem!important;
	border-radius: 0!important;
	border-bottom: 0.063rem solid var(--bs-border-color)!important;
	margin-bottom: 0!important;
}

.breadcrumb-item{
	padding:0.313rem 1.5rem;
}

.breadcrumb-item a {
	display: inline-block;
	position: relative;
	color: var(--bs-primary);
	text-decoration: none;
}

.breadcrumb-item span{
	margin:0 .75rem;
	padding: 0.45rem 1rem;
	display: inline-block;
}

.breadcrumb-underline span:hover, .breadcrumb-underline span.active {
	border-bottom: 0.125rem solid var(--bs-secondary) !important;
	padding-bottom: .45rem !important;
	color: var(--bs-secondary) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--bs-white)!important;
	content: none;
}

.breadcrumb-item, .breadcrumb-item+.breadcrumb-item{
	padding: 0 !important;
}

.breadcrumb-item, .breadcrumb-item+.breadcrumb-item span {
	padding:0.45rem 0.063rem;
}

@media screen and (min-width: 769px) {
	.breadcrumb-item, .breadcrumb-item+.breadcrumb-item {
		display: inline-block;
		position: relative;
		padding:0.157rem 1.5rem;

		&::before,&::after{
			content: '';
			position: absolute;
			left: 0;
			height: 50%;
			width: 100%;
			border-right: 0.125rem solid var(--bs-border-color);
		}
		
		&::before {
			top: 0;
			transform: skew(30deg);
		}
		
		&::after {
			bottom: 0;
			transform: skew(-30deg);
		}

		&:first-child {
			box-sizing: content-box;
			padding-left: 0;
		}
	}

	.breadcrumb-item, .breadcrumb-item+.breadcrumb-item span {
		display: inline-block;
		position: relative;
		padding: 0.45rem 1rem;
	}
}

.stretched-link:hover{
	border-bottom: 0.125rem solid var(--bs-secondary) !important;
	color: var(--bs-secondary) !important;
}

.breadcrumb-button {
	padding: 0.85rem 1rem;
	border-left: 0.063rem solid var(--bs-border-color);
	border-right: 0.063rem solid var(--bs-border-color);
}

.breadcrumb-button i:hover{
	color: var(--bs-secondary) !important;
}

.breadcrumb .bi-house-door{
	line-height:0;
}

.breadcrumb-item #dropdownMenuButton {
	padding-top: .6rem;
} */

#dropdownMenuButton{
	margin-left: 0;
}
/* Sidebar */
.sidebar-toggle {
	margin:0.5rem;
	border-radius: 50%;
	width:1.938rem;
	height:1.938rem;
	display: block;
	position: relative
}

.sidebar-toggle i {
	position: absolute;
	top: 50%;
	left: 49.5%;
	transform: translateX(-50%) translateY(-50%);
	cursor: pointer;
	border-radius: 50%;
	padding:0.125rem 0.625rem;
}

.sidebar-toggle i:hover{
	background-color: var(--bs-border-color);
	transition: all .5s;
}

.sidebar-header {
	height: 3rem;
}

main {
	transition: all .5s;
	overflow:hidden;
}

@media screen and (min-width: 1200px) {
	main {
		margin-left: 0;
		margin-right: 0;
	}

	.sidebar-on {
		padding-left:14.375rem;
		margin-right: 0;
	}

	#sidebar.toggled {
		margin-left: 0rem!important;
		min-width: 3.7rem!important;
	}

	.sidebar-off {
		padding-left:3.7rem!important;
		margin-right: 0!important;
	}
}

@media screen and (max-width: 1200px) {
	main {
		margin-left: 14.375rem !important;
		margin-right: -14.375rem !important;
	}

	main.sidebar-on {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	#sidebar.toggled {
		margin-left: 0;
	}
}

#sidebar {
	min-width:14.375rem;
	max-width:14.375rem;
	background-color: var(--bs-body-bg)!important;
	transition: all .5s;
	background: 0 0;
	padding-top: 1rem;
	padding-bottom: 1rem;
	height: 100%;
	position: fixed;
	border-right: 0.063rem solid var(--bs-border-color);
}
@media screen and (max-width: 1200px) {
	#sidebar {
		min-width:14.375rem;
		max-width:14.375rem;
		margin-left: -14.375rem;
		transition: all .5s;
		background: transparent;
		padding-top: 1rem;
		min-height: 100%;
		position: fixed;
		border-right: 0.063rem solid var(--bs-border-color);
	}
}

/* #sidebar.toggled {
	margin-left: -14.375rem
} */

.sidebar-link{
	font-weight: 600;
	padding-left: 1.875rem;
}

.sidebar-accordion{
	font-weight: 700;
}

.sidebar-item{
	border-left: 0.313rem solid var(--bs-body-bg)!important;
	border-bottom:0.063rem solid var(--bs-border-color);
	padding: 1rem;
}

.sidebar-item.active {
	border-left: 0.313rem solid var(--bs-secondary)!important;
	padding-left: calc(1rem -0.313rem);
}

.sidebar-text{
	color: var(--bs-dark);
}

.sidebar-text:hover{
	color: var(--bs-text-muted);
}

.sidebar-item.active .sidebar-link .sidebar-text {
	color: var(--bs-secondary);
}

#sidebar-content::-webkit-scrollbar {
	width: 0.3rem!important
}

.sidebar-content,.memberSidebar {
	background: 0 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal
}

#sidebar-content {
	color: #000 !important;
	height: calc(100% - 37px);
	overflow-y: auto;
	overflow-x: hidden;
	padding-bottom: 0;
}

.no-img-sidebar{
	height: calc(100% - 175px)!important;
}

/* Navbar Custom CSS Start */
.user-account-preview-icon {
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border: .08rem solid var(--bs-primary);
	width: 1.25rem;
	height: 1.25rem;
	margin-top: .1rem;
	border-radius: 50%;
} 

.user-account-preview-icon .user-account-preview-img{
	width: .75rem;
}

.user-account-details-icon {
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border: .08rem solid var(--bs-primary);
	width: 6.875rem;
	height: 6.875rem;
	/* margin-top: .1rem; */
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
} 

.user-account-details-icon .user-account-details-img{
	width: 5rem;
	padding-bottom: .5rem;
}

.user-profile-picture {
	width: 6.875rem;
	height: 6.875rem;
	background-size: cover;
	background-position: center;
	border: 0.063rem solid var(--bs-border-color);
	border-radius: 50%;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.user-profile-picture:hover .profile-edit-box {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,0) 50%,rgba(0,0,0,0) 50%,rgba(0,0,0,.7) 100%);
	display: block!important
}

.profile-edit-box i {
	position: absolute;
	bottom: 25%;
	left: 50%;
	transform: translateX(-50%);
	color: #fff
}

.imagePreviewBox #imagePreview {
	border-radius: 50%;
	width: 6.875rem;
	height: 6.875rem
}
/* End Navbr Custom CSS */

/* Document Download */
#adobe-dc-view {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.progress-bar-animated {
	animation: progress-bar-stripes 1s linear infinite !important;
}

.archive-link:hover,
.archive-link:hover .bi-archive {
	color: inherit !important;
}

/* The Modal (background) */
.modal.compact-modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}

/* Modal Dialog */
.modal-dialog.compact-dialog {
	max-width: 25rem;
	margin: 4% auto;
}

/* Modal Content */
.modal-content.compact-content {
	background-color: #fefefe;
	padding: 0.625rem;
	border: 0.063rem solid #888;
}

.modal-header.compact-header {
	padding:0.5rem;
}
	.modal-title.compact-title {
	font-size: 1.125rem;
}

.btn-close.compact-close {
	font-size: 1rem;
}

.modal-body.compact-body {
	padding:0.5rem;
}

.mb-2.compact-group {
	margin-bottom:0.5rem !important;
}

.form-label.compact-label {
	font-size: 0.875rem;
}

.form-control.compact-control {
	font-size: 0.875rem;
	height: auto;
	padding: 0.375rem 0.75rem;
}

.modal-footer.compact-footer {
	padding:0.5rem;
}

.btn.compact-btn {
	padding:0.313rem 0.625rem;
	font-size: 0.875rem;
}


.rad-card-font {
	font-size: 0.75rem;
}

.form-control, .form-select{
	padding: 0.7rem;
}

.fixed-table-toolbar .form-control{
	padding: .375rem .75rem;
}

.form-group {
	margin-bottom: 1.2rem !important;
}

.form-check-input{
	margin-top: 0.5rem;
}

.search-box {
	padding: 3rem;
	position: relative;
	border: 2px solid var(--bs-white);
	border-radius: 5px;
}

.rounded-div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--bs-primary);
	color: var(--bs-white);
	font-size: 1.5rem;
	font-weight: normal;
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Custom CSS Added */

#banner {
	padding-bottom: 1rem;
	padding-top: 1rem;
	background-position: center;
	background-size: contain;
	background-attachment: fixed;
	background-image: linear-gradient(to bottom, #00B696 0%, rgba(14, 104, 176, 0.5) 100%), url(https://matrix.radhostbox.com/assets/apex/img/bg-pattern-01.jpg);
	color: #ffffff;
	height:200px!important;
}

footer a {
	color: var(--bs-body-color) !important;
}

.hvr-underline-from-left,.navbar .hvr-underline-from-left {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	overflow: hidden;
	top: -2px
}

.hvr-underline-from-left:before,.navbar .hvr-underline-from-left:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 100%;
	bottom: 0;
	background: var(--bs-text-muted);
	height: 2px;
	-webkit-transition-property: right;
	transition-property: right;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}
.hvr-underline-from-left:active:before,.hvr-underline-from-left:focus:before,.hvr-underline-from-left:hover:before {
	right: 0
}
#myPage{
	background-color: var(--bs-light);
}

#content {
	padding: 1.5rem 1.5rem;
	min-height: 85vh;
}

#post-content p, #post-content li{
	font-size: 1.1rem;
}

small a{
	font-size: 100%;
}

#user-dashboard h1 {
	font-size: 1.5rem;
	text-align: center;
}

#user-dashboard .contacts-type-image {
	width: 1.875rem;
	height: 1.875rem;
}

.message-sidebar-link.active {
	background-color: var(--bs-light);
	border-left: 0.125rem solid #528ffe !important;
}

/* Admin - media */
.media-preview {
	min-width: 6.25rem;
	height: 4.375rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: .25rem;
}

.space-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 600;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%!important;
	margin: 0!important;
	border: 0.063rem solid var(--bs-primary) !important;
	color: var(--bs-primary);

}

.upload-file{
	width: 6.25rem;
}

.w-16px {
	width: 1rem;
}

.w-32px {
	width: 2rem;
}

.w-48px {
	width: 3rem;
}

.w-64px {
	width: 4rem;
}

.w-128px {
	width: 8rem;
}

.upload-files-text{
	height: 18.75rem;
}

.btn.show {
	background-color: var(--bs-white);
}

.price {
	font-size: 2rem;
	font-weight: 500;
}

.subscription-cards .active{
	border-color: var(--bs-secondary)!important;
}

#user-image-thumbnail {
	width: 4rem;
	height: 4rem;
	transition: all .2s;
}

.circle-icon {
	align-self: center;
}

.tab-menu .list-group-item{
	border: 0;
	color: var(--bs-primary);
	padding: 0;
}

.tab-menu .list-group-item .nav-link{
	color: var(--bs-primary)!important;
	padding: 0.625rem;
}

.tab-menu .list-group-item .nav-link.active{
	color: var(--bs-secondary)!important;
	border-right: 0.125rem solid var(--bs-primary) !important;
}

.card .card-body .fa-crown{
	font-size:1.938rem!important;
}

/* CSS for Full Calender */
.fc table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em; /* normalize cross-browser */
}

.fc th {
	text-align: center;
	color: var(--bs-secondary)!important;
}

.fc th,
.fc td {
	border-style: solid;
	border-width: 0.063rem;
	padding: 0;
	vertical-align: top;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
	float:none!important;
	text-align: center!important;
}

.fc td.fc-today {
	border-style: double; /* overcome neighboring borders */
}

.fc-state-default {
	background-image: linear-gradient(to bottom, var(--bs-white), var(--bs-white))!important;
	border-color: var(--bs-primary)!important;
	color: var(--bs-primary)!important;
}

.fc-left .fc-state-default:hover {
	background-image: linear-gradient(to bottom, var(--bs-primary), var(--bs-primary))!important;
	border-color: var(--bs-primary)!important;
	color: var(--bs-white)!important;
}

.fc-state-active{
	background-image: linear-gradient(to bottom, var(--bs-secondary), var(--bs-secondary))!important;
	border-color: var(--bs-secondary)!important;
	color: var(--bs-white)!important;
	box-shadow: none!important;

}

.fc-event-container a {
	color: var(--bs-white) !important;
	text-decoration: none !important;
}

.clickable-card {
	color: var(--bs-text-muted) !important;
	border-radius: 0.1rem !important;
	box-shadow: none!important;
}

.clickable-card.checked {
	border: 0.063rem solid var(--bs-secondary) !important;
	color: var(--bs-text-muted) !important;
	border-radius: 0.1rem !important;
	box-shadow: none;
}

.clickable-card.checked  .icon-checked {
	background-color: var(--bs-secondary);
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	line-height: 1;
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	left: auto;
}

.clickable-card.checked {
	border: 0.063rem solid var(--bs-secondary) !important;
	color: var(--bs-text-muted) !important;
}

.clickable-card:hover{
	cursor: pointer;
}

/* CSS for Switch Button */
.switch1 {
	position: relative;
	display: inline-block;
	width: 4rem;
	height: 2.0rem;
	margin: 0;
}

.switch1 input {
	display: none;
}

.switch1 .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	transition: .4s;
}

.switch1 .slider:before {
	position: absolute;
	content: "";
	height: 0.9rem;
	width: 0.9rem;
	left: 0.25rem;
	bottom: 0.54rem;
	background-color: var(--bs-warning);
	transition: .4s;
}

.switch1 input:checked + .slider {
	background-color: var(--bs-white);
}

.switch1 input:checked + .slider::before {
	background-color: var(--bs-success);
}

.switch1 input:checked + .slider.round {
	border-radius: 2.125rem;
	border: 1px solid var(--bs-success);
}

.switch1 input:checked + .slider:before {
	transform: translateX(2.5rem);
}

.switch1 .slider.round {
	border-radius: 2.125rem;
	border: 1px solid var(--bs-warning);
}

.switch1 .slider.round:before {
	border-radius: 50%;
}

/* For Add Form switch Button */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #ccc; /* Default border */
	border-radius: 24px;
	transition: 0.3s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 1.0rem;
	width: 1.0rem;
	left: 2px;
	bottom: 2px;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50%;
}

input:checked+.slider {
	background-color: var(--bs-white);
	border: 2px solid var(--bs-secondary);
}

input:checked+.slider:before {
	background-color: var(--bs-secondary);
	-webkit-transform: translateX(1.063rem);
	-ms-transform: translateX(1.063rem);
	transform: translateX(2.45rem)
}

input:focus+.slider {
	box-shadow: 0 0 0.063rem var(--bs-secondary);
}

.slider.round {
	border-radius: 2.125rem
}

.slider.round:before {
	border-radius: 50%
}


/* Slider (Background & Border) */
.switch {
	position: relative;
	display: inline-block;
	width: 3.125rem;
	height: 1.5rem;
}

/* Hide default checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
	display: none
}

.switch input:checked + .slider:before {
	transform: translateX(26px);
	background-color: #00B696;
}
/* End switch CSS */

.dropdown-toggle .bi-caret-down{
	position: relative; 
	top: 0.125rem;
}

.dropdown-item {
	max-width: 15.625rem!important; /* Set your desired max width */
	white-space: normal;
}

.name, .email {
	word-wrap: break-word!important;
	word-break: break-word!important;
	overflow-wrap: break-word!important;
	width: 100%!important;
}

#timeSlotTimes1 a{
	text-decoration: none!important;
	color: var(--bs-white)!important;
	/* font-size: .875em!important; */
}

#timeSlotTimes1 .btn-custom {
	display: flex;
	justify-content: center;
	align-items: center;
}


.has-border-bottom:not(:last-child) {
	border-bottom: 0.063rem solid rgba(0, 0, 0, .125) !important
}

.sidebar-profile-picture {
	width: 6.875rem;
	height: 6.875rem;
	background-size: cover;
	background-position: center;
	border: 0.063rem solid var(--bs-border-color);
	border-radius: 50%;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.sidebar-profile-picture {
	background-image: url(../../apps/bridge/images/fitness.png);
}

@media (min-width: 768px) {
	.margin-from-member-icon {
		margin-left: 5rem;
	}
}

@media (max-width: 768px) {
	.center-align-in-small-screen {
		text-align: center !important;
	}
}

.user-icon{
	width: 2.5rem;
	height: 2.5rem;
}

.user-img {
	width: 4rem;
	height: 4rem;
}

.logo-bar {
	height: 1.8rem;
	background-color: var(--bs-grey);
	display: inline-block;
	width: 0.1rem; /* Making it very thin */
	vertical-align: middle; /* Aligns with the middle of the elements */
}

.time-slot input[type="radio"] {
	display: none;
}

@media screen and (max-width: 577px) {
	#content {
		padding: 1.5rem 1.5rem;
		min-height: 80vh;
		/* margin-bottom: 4rem; */
	}
}

/* Banner */
#img-change-banner {
	height: 500px;
	width: 100%;
	overflow: hidden;
	color: var(--bs-white);
	position: relative !important;
	align-items:center;
	display:flex;
}

#img-change-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	transition: opacity 1s ease-in-out; /* Transition for smooth crossfade */
	animation: changeBackground 40s ease-in-out infinite;
}

#img-change-banner .overlay, .carousel-inner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: .3;
	background: #000000;
	height: 750px;
}

#img-change-banner:nth-child(1) {
	animation-delay: 0s;
}

#img-change-banner:nth-child(2) {
	animation-delay: 5s; /* Adjust delay as needed */
}

#img-change-banner:nth-child(3) {
	animation-delay: 10s; /* Adjust delay as needed */
}

#img-change-banner:nth-child(4) {
	animation-delay: 15s; /* Adjust delay as needed */
}

@keyframes changeBackground {
	0%, 100% {
		background-image: url('image/banner-img-1.jpg');
		transform: scale(1); /* Initial scale */
	}
	25% {
		background-image: url('image/banner-img-2.jpg');
		opacity: 1;
		transform: scale(1.2); /* Initial scale */
	}
	50% {
		background-image: url('image/banner-img-3.jpg');
		opacity: 1; /* Start fading out */
		transform: scale(1); /* Initial scale */
	}
	75% {
		background-image: url('image/banner-img-4.jpg');
		opacity: 1; /* Start fading in */
		transform: scale(1.2); /* Initial scale */
	}
}

.banner-content{
	text-align: center !important;
	z-index: 1;
	margin:auto;
}

.banner-search{
	border-radius:.25rem;
	background-color:var(--bs-white);
	padding: 0.5rem;
	box-shadow: var(--bs-box-shadow) !important;
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

/* #page-banner{
	height: 300px;
	width: 100%;
	background-position: center;
	background-size: contain;
	background-attachment: fixed;
	background-image: linear-gradient(to bottom, #00B696 0%, rgba(14, 104, 176, 0.5) 100%), url(image/bg-pattern.jpg);
	color: var(--bs-white);
	align-items:center;
	overflow: hidden;
} */

#page-banner {
	height: auto;
	/* background:var(--bs-white); */
	background-attachment: fixed;
	background-position: center;
	-webkit-background-size: contain;
	background-size: contain;
}
#page-banner h1 {
	font-size: 2.4rem;
	line-height: 2.84rem;
	font-weight: 400;
}
#page-banner h5 {
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Carousel */
.apexCarousel{
	height: 500px;
	overflow: hidden;
}

.apex-carousel-img{
	height: 500px;
	width: 100%;
	display: block;
}

.card-img{
	width: 48px;
}


/* CSS WRITTEN BY ABHIMANYU START BLOCK FOR NETWORKS MEMBER PORTAL*/

.top-height {
	margin-top:-0.313rem !important;
}
/* Used In profile page for vertical border */
.border-right {
	position: relative !important;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 0.181rem solid #ccc;
}

/* Used In profile page */
.profile-left-margin{
	margin-left:-3.125rem;
}
/* Used In member-meetings.php */
@media (min-width:48rem){
	.margin-from-member-icon {
		margin-left:5rem;
	}
	.ms-sm{
		margin-left:3.5rem
	}
}
/* Used In member-meetings.php */
@media (max-width:48rem){ 
	.center-align-in-small-screen {
		text-align: center !important;
	}
}
/* CSS WRITTEN BY ABHIMANYU END BLOCK FOR NETWORKS MEMBER PORTAL*/


/* CSS WRITTEN BY ABHIMANYU START BLOCK FOR PROJECT APP*/

/* Used in tocket list page */
.badge-text-size{
	font-size: 0.7rem;
}
/* This css used for every accordian item */
.btn-accordion {
	border :none;
	padding:0.5rem;
}
/* Select Field Right side icon */
select.form-control{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 20px 14px;
}
/* Project list page card height ticket list */
.card-height{
	padding-top:0.75rem !important;
	padding-bottom:0.75rem !important;
}
/*Used In ticket view page*/
.user-container {
	margin: 0 -0.7rem;
	transition: margin 0.4s ease;
}
.user-container:hover {
	margin: 0 1rem;
}
.ticket-img {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	cursor: pointer;
}
@media (max-width:48rem){
	.ticket-user-margin-right{
		margin-left:0.7rem;
		margin-top:1rem;
	}
}
@media (min-width:48rem){
	.start-space {
		margin-left:1.4rem;
	}
}
/* Used In File List page */
.w-40px{
	width:2.5rem;
}

/* Replace all accordian button header-title as btn-header */
.btn-header{
	padding-left:0.43rem;
	padding-right:0.43rem;
}

/* Used For add file card/ drag drop files div */
.file-upload-div{
	cursor: pointer;
}

/* Used In group page */
.color-picker {
	border: 1px solid #ccc;
	cursor: pointer;
}
.color-picker:hover {
	border: 1px solid #ccc;
	cursor: pointer;
}

/* Used in settings customer card page */
.align-customer-details {
	display: flex;
	justify-content: center; /* centers horizontally */
	align-items: center; /* centers vertically */
}
.icon-pointer{
	cursor: pointer;
}
.mt-c-table-3 {
	margin-top: 0.5rem;
}
/* USED IN PROJECT STATUS PAGE */
.connect-line {
	width: 100%;
	height: 0.01rem;
	border: 1px dotted #ccc;
	margin: auto;
}
/* C3 graph hover count problem css */
.name {
	width: 10rem !important;
}
/* CSS WRITTEN BY ABHIMANYU END BLOCK FOR PROJECT APP*/


.message {
	line-height: 1.5!important;
}

.message-card{
	height:38rem;
}

@media screen and (min-width: 769px) {
	.message-card{
		height: 50rem;
	}
}
.message-content{
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
}

.message-nav .nav-link{
	border-radius: 0 !important;
}

.message-nav .nav-link:hover{
	background-color: var(--bs-light)!important;
}

.message-nav .nav-link.active{
	background-color: var(--bs-white);
	border-left: 0.125rem solid var(--bs-secondary);
}

.message-card .form-control {
	padding: .375rem .75rem;
}

.outgoing-message{
	background-color: var(--bs-white);
	border-radius: .25rem;
	padding-left: .5rem;
	padding-right: .5rem;
}

.incoming-message{
	background-color: var(--bs-light);
	border-radius: .25rem;
	padding-left: .5rem;
	padding-right: .5rem;
}

.message-rounded-div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: var(--bs-primary);
	color: var(--bs-white);
	font-size: 1.2rem;
	margin-right: .5rem;
}

.message-logo{
	width: 2.6rem;
}

.message-dropmenu {
	width: 100%;
	/* left: auto !important; */
	right: 0;
	top: .7rem !important;
}

.dropdown-menu.message-dropmenu {
	max-width: 30rem;
	position: absolute!important;
	border-radius: 0px;
}

.message-dropmenu .dropdown-item{
	max-width:28rem!important;
}

@media screen and (min-width: 769px) {
	.dropdown-menu.message-dropmenu {
		left: -1rem!important;
	}
}

#file-upload.modal{
	--bs-modal-width: 1000px !important;
}

.message-img{
	width: 200px;
	border-radius: 1rem;
}

@media screen and (min-width: 576px) {
	.message-img{
		width: 350px;
	}
}

@media screen and (min-width: 1300px) {
	.message-img{
		width: 500px;
	}
}

.word-wrap{
	word-wrap: break-word !important;
	word-break: break-word !important;
	overflow-wrap: break-word !important;
	white-space: normal !important;
	width: 100% !important;
	display: block !important;
}

.invoice-border{
	padding: .5rem 0;
	margin-bottom: 1rem;
	border-bottom: 0.063rem solid var(--bs-primary);
}

.invoice table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.invoice table th {
	border-bottom:0.063rem solid var(--bs-border-color) ;
	color: var(--bs-secondary);
}

.invoice table th, .invoice table td{
	padding: .5rem;
}

.invoice table tfoot td {
	border-top: 0.063rem solid var(--bs-border-color);
}

/* .invoice table tfoot tr:last-child td {
	color: var(--bs-primary);
	border-top: 0.063rem solid var(--bs-primary)
} */

.invoice table tfoot tr td:first-child {
	border: none
}

.dataset-img {
	width: 3.75rem;
}

.fully-submitted {
	background-color: var(--bs-success);
	color: #fff;
	padding: .3rem .5rem;
	display: inline;
	border-radius: .25rem;
}

.partially-submitted {
	background-color: var(--bs-warning);
	color: var(--bs-black);
	padding: .3rem .5rem;
	display: inline;
	border-radius: .25rem;
}

.not-submitted {
	background-color: var(--bs-danger);
	color: #fff;
	padding: .3rem .5rem;
	display: inline;
	border-radius: .25rem;
}

.avatar-group {
	padding: 0;
	display: flex;
	}
.avatar-group > li:not(:last-child) {
	margin-right: -0.8rem;
}
.avatar-group > li {
	position: relative;
}
.avatar.avatar-xs {
	height: 2.1875rem;
	width: 2.1875rem;
}
.avatar-group .avatar-img {
	border: 0.125rem solid #fff;
}
.avatar-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* .avatar-5xl {
	height: 9.375rem;
	width: 9.375rem;
} */

.avatar {
	height: 9rem;
	width: 9rem;
	position: relative;
	display: inline-block;
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
	vertical-align: middle;
}

@media screen and (max-width: 1500px) {
	.avatar{
		height: 4.7rem;
		width: 4.7rem;
	}
}

@media screen and (max-width: 900px) {
	.avatar{
		height: 9rem;
		width: 9rem;
	}
}

.avatar img {
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.avatar img, .avatar .avatar-name {
	width: 100%;
	height: 100%;
}

#detailsCard{
	padding: 0;
}

.flex-1 {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/* Timeline */
.timeline-vertical .timeline-item:not(:last-child) .timeline-item-bar .timeline-bar {
	position: absolute;
	height: 6.25rem;
	left: 0.688rem;
	top: 1.5rem;
}
.timeline-vertical.timeline-with-details .timeline-item:not(:last-child) .timeline-item-bar .timeline-bar {
	height: calc(100% - 1rem) !important;
}
.timeline-item-date{
	width: 6rem;
}

.icon-item {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 1.5rem;
	width: 1.5rem;
	background-color: var(--bs-secondary)!important;
}

.icon-item i {
	font-size: 0.8rem;
	color: var(--bs-white);
}

.border-dashed {
	border:0.063rem dashed var(--bs-grey);
}

@media only screen and (min-width: 768px) {
	.border-md-0 {
		border: 0!important
	}

	.border-md-start {
		border-left: 1px solid var(--bs-border-color)!important
	}

	.border-md-end {
		border-right: 1px solid var(--bs-border-color)!important
	}

	.border-md-top {
		border-top: 1px solid var(--bs-border-color)!important
	}

	.border-md-bottom {
		border-bottom: 1px solid var(--bs-border-color)!important
	}

	.border-top-md-0 {
		border-top: 0!important
	}

	.border-end-md-0 {
		border-right: 0!important
	}

	.border-bottom-md-0 {
		border-bottom: 0!important
	}

	.border-start-md-0 {
		border-left: 0!important
	}
}

@media only screen and (min-width: 992px) {
	.border-lg-0 {
		border: 0!important
	}

	.border-lg-start {
		border-left: 1px solid var(--bs-border-color)!important
	}
	.border-lg-end {
		border-right: 1px solid var(--bs-border-color)!important
	}

	.border-lg-top {
		border-top: 1px solid var(--bs-border-color)!important
	}

	.border-lg-bottom {
		border-bottom: 1px solid var(--bs-border-color)!important
	}

	.border-top-lg-0 {
		border-top: 0!important
	}

	.border-end-lg-0 {
		border-right: 0!important
	}

	.border-bottom-lg-0 {
		border-bottom: 0!important
	}

	.border-start-lg-0 {
		border-left: 0!important
	}
}

/* Scrollable Wrapper */
.scrollable-wrapper-paddles .left-paddle {
	left: 0;
}
.scrollable-wrapper-paddles .right-paddle {
	right: 0;
}

.scrollable-wrapper {
	margin: 0 5rem 0 5rem;
	overflow-x: auto;
	overflow-y: hidden;
}

.scrollable-wrapper::-webkit-scrollbar {
	width: 0;
	height: 0
}

.section-circle {
	position: relative;
	min-width: 2.5rem;
	min-height: 2.5rem;
	max-width: 2.5rem;
	max-height: 2.5rem;
	background: var(--bs-secondary);
	border-radius:50%;
	margin-right: 1.5rem;
	display: inline-block;
}

.section-circle-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	color: var(--bs-white)!important
}

.scrollable-wrapper-paddles .left-paddle {
	position: absolute;
	top: 0;
	height: 100%;
}

.scrollable-wrapper-paddles .left-paddle .btn {
	border: 0!important;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	/* border-radius: 50%; */
	background: var(--bs-primary);
	color: var(--bs-white);
	position: relative
}

.scrollable-wrapper-paddles .left-paddle .btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.scrollable-wrapper-paddles .right-paddle {
	top: 0;
	height: 100%;
	position: absolute
}

.scrollable-wrapper-paddles .right-paddle .btn {
	border: 0!important;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	/* border-radius: 50%; */
	background: var(--bs-primary);
	color: var(--bs-white);
	position: relative
}

.scrollable-wrapper-paddles .right-paddle .btn i {
	position: absolute;
	top: 50%;
	left: 53%;
	transform: translate(-50%, -50%)
}

.triangle-up-dropmenu {
	display: none
}

.triangle-up-dropmenu.show {
	display: block;
	position: absolute;
	bottom: -6px;
	left: 50%;
	width: 12px;
	height: 12px;
	background-color: var(--bs-body-bg)!important;
	z-index: 99999;
	transform: translateX(-50%);
	transform: rotate(45deg);
	border: 1px solid rgba(0,0,0,.2);
	border-bottom: 0;
	border-right: 0
}

.triangle-up-dropmenu.show-top {
	z-index: 99999!important;
	bottom: -5px!important;
}

/* Article & Blog page */

.press-card-header-image, .press-card-image {
	height: 150px !important;
}

@media (min-width: 576px) {
	.featured-article-block {
		height: 220px !important;
	}

	.press-card-header-image, .press-card-image {
		height: 220px !important;
	}
}

@media (min-width: 768px) {
	.featured-article-block {
		height: 320px !important;
	}

	.press-card-header-image, .press-card-image {
		height: 138px !important;
	}
}

@media (min-width: 991px) {
	.featured-article-block {
		height: 215px !important;
	}

	.press-card-header-image, .press-card-image {
		height: 100px !important;
	}
}

@media (min-width: 1200px) {
	.featured-article-block {
		height: 250px !important;
	}

	.press-card-header-image, .press-card-image {
		height: 124px !important;
	}
}

#post-content p, #post-content li,  #post-content div {
	font-size: 1.1rem;
}

.company-h-underline, .company-h-underline-center {
	position: relative;
}

.company-h-underline:after {
	background: var(--bs-primary);
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	bottom: -10px;
	width: 70px
}

.company-h-underline-center:after {
	background: var(--bs-primary);
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	bottom: -10px;
	width: 70px;
	transform: translateX(-50%)
}

.img-zoom {
	transition: all 1s !important;
	min-height: 100%!important;
	z-index: 1
}
.img-zoom:hover {
	transform: scale(1.1)
}

/* footer */
.bar-footer .bar-footer-pagelinks-parent {
	font-size: .9rem !important;
}

.bar-footer {
	font-size: .84rem !important;
}

.apex-dropdown{
	max-height: 290px;
	overflow-y: auto;
}

/* Section */
.apex-section h1{
	font-size: 2.4rem;
	line-height: 2.84rem;
	/* font-weight: 700; */
}

.apex-section-h5{
	font-size: 1.1rem;
	line-height: 1.7rem;
}

/* Apex Divider */
.apex-divider-rounded{
	width: 3.125rem;
	border-radius: 0.25rem !important;
	margin-bottom: 1.25rem;
	border: 0.188rem solid var(--bs-secondary)!important
}

.apex-divider-secondary{
	width: 3rem;
	height: .2rem;
	margin-top: .5rem;
	margin-right: 1.2rem;
	background:var(--bs-secondary);
}

.apex-divider-primary{
	width: 3rem;
	height: .2rem;
	margin-top: .5rem;
	margin-right: 1.2rem;
	background:var(--bs-primary);
}

.apex-divider-white{
	width: 3rem;
	height: .2rem;
	margin-top: .5rem;
	margin-right: 1.2rem;
	background:var(--bs-white);
}

/* Apex Tiny Slider */
.tns-nav {
	display: none;
} 
#tns2-iw{
	margin: 0!important;
}
#tns2 > .tns-item {
	padding: 0 .5rem!important;
}

.apex-slider-item {
	position: relative;
}
.apex-slider-paddles .left-paddle {
	left: 0;
}
.apex-slider-paddles .right-paddle {
	right: 0;
}

.apex-slider-paddles .left-paddle {
	position: absolute;
	top: 0;
	height: 100%;
}

.apex-slider-paddles .left-paddle .btn {
	border: 0!important;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	border-radius: 50%;
	background: var(--bs-primary);
	color: var(--bs-white);
	position: relative
}

.apex-slider-paddles .left-paddle .btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.apex-slider-paddles .right-paddle {
	top: 0;
	height: 100%;
	position: absolute
}

.apex-slider-paddles .right-paddle .btn {
	border: 0!important;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	border-radius: 50%;
	background: var(--bs-primary);
	color: var(--bs-white);
	position: relative
}

.apex-slider-paddles .right-paddle .btn i {
	position: absolute;
	top: 50%;
	left: 53%;
	transform: translate(-50%, -50%)
}

.apex-slider-caption {
	position: absolute;
	color:var(--bs-white);
	bottom: 1.25rem;
	left: 10%;
}
/* Apex Slider */

/*Dark overlay*/
.overlay-dark{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .3;
	background: var(--bs-dark);
	border-radius:0.25rem;
}

/*Primary overlay*/
.overlay-primary{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .8;
	background: var(--bs-primary);
	border-radius:0.25rem;
}

/*BG Dark overlay*/
.bg-overlay-dark-2, 
.bg-overlay-dark-3, 
.bg-overlay-dark-4, 
.bg-overlay-dark-5, 
.bg-overlay-dark-6, 
.bg-overlay-dark-7, 
.bg-overlay-dark-8, 
.bg-overlay-dark-9,
.bg-overlay-primary {
	position: relative;
	z-index: 1;
}
.bg-overlay-dark-2:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.2;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-3:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.3;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-4:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.4;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-5:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.5;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-6:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.6;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-7:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.7;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-8:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.8;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-dark-9:before {
	content: " ";
	background: var(--bs-black);
	opacity: 0.9;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-overlay-primary:before{
	content: " ";
	background: var(--bs-primary);
	opacity: 0.8;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* Social Icon */
.btn-facebook {
	background-color: #0084ff!important;
	color: var(--bs-white)!important;
}

.btn-linkedin {
	background-color: #0077b5!important;
	color: var(--bs-white)!important
}

.btn-twitter {
	background-color: #000000!important;
	color: var(--bs-white)!important
}

.btn-youtube {
	background-color: #f33!important;
	color: var(--bs-white)!important
}

.btn-mastodon {
	background-color: #595aff!important;
	color: var(--bs-white)!important
}

.btn-google {
	background-color: #e14138!important;
	color: var(--bs-white)!important
}

.btn-instagram {
	background-color: #ec4a57!important;
	color: var(--bs-white)!important
}

.btn-gaana {
	background-color: #e73d3a!important;
	color: var(--bs-white)!important
}

.btn-github {
	background-color: #24292e;
	color: var(--bs-white)!important
}

.btn-cdnjs {
	background-color: #e8563a;
	color: var(--bs-white)!important
}

.btn-jsdelivr {
	background-color: #e8563a;
	color: var(--bs-white)!important
}


@media screen and (max-width: 1200px) {
	.sidebar-toggle i {
		/* color: var(--bs-primary); */
		position: absolute;
		top: 50%;
		left: 49.5%;
		transform: translateX(-50%) translateY(-50%);
		cursor: pointer;
		border-radius: 50%;
		padding: 0.125rem 0.625rem;
	}
}

.news-featured-img-sm {
	height: 200px !important;
	background-size: cover;
	background-position: center;
}

/* Full Calender CSS Added */

/* Used In Schedule Calendar button modification */
.fc-button-primary{
	background-color: #0E68B0 !important;
}
/* Used In Schedule Calendar button modification */
.fc-button-active {
	background-color: #00B696 !important;
}
/* Used In Schedule Calendar button modification */
.fc .fc-daygrid-day-top{
	text-align: center !important;
	display:inherit;
}
.fc-event-time{
	display: none;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end, .fc-direction-rtl .fc-daygrid-event.fc-event-start {
	background-color: #0E68B0;
	color: #fff;
}
.fc-daygrid-event-dot {
	display:none;
}
.fc-event-title {
	padding-left:0.2rem;
	padding-right:0.2rem;
}
/* Used For add file card/ drag drop files div */
.file-upload-div{
	cursor: pointer;
}

.calendar-add-today {
	background-color: var(--bs-white);
	height: 3.5rem;
	width: 3.5rem;
	position: absolute;
	right: 14px;
	top: 87.5px;
	border-radius: 50%;
}

.calendar-add-today-btn {
	height: 3rem;
	width: 3rem;
	position: absolute;
	right: 4px;
	top: 4px;
	border-radius: 50%;
}

.card-body .bootstrap-table .fixed-table-container .table td, .bootstrap-table .fixed-table-container .table th {
	font-size: 0.9rem!important;
}

@media (max-width: 767px) {
	.bootstrap-table .fixed-table-container .table thead th .th-inner {
		min-width: 150px!important;
	}
}
/* Custom CSS End */

/*Stepper*/
ul.stepper {
	counter-reset: section
}

ul.stepper .circle {
	position: relative
}

ul.stepper .circle span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%)
}

.stepper-horizontal {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

ul.stepper>li:not(:last-of-type) {
	margin-bottom: .625rem;
	-webkit-transition: margin-bottom .4s;
	-o-transition: margin-bottom .4s;
	transition: margin-bottom .4s
}

.stepper-horizontal>li:not(:last-of-type) {
	margin-bottom: 0 !important
}

.stepper-horizontal li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-transition: .5s;
	transition: .5s
}

.stepper-horizontal li:not(:last-child):after {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 1px;
	content: "";
	top: 32%
}

.stepper-horizontal li:after {
	background-color: #dee2e6
}

.stepper-horizontal li.completed:after {
	background-color: #4da3ff
}

.stepper-horizontal li:last-child {
	flex: unset
}

ul.stepper li a .circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 0;
	line-height: 1.7rem;
	text-align: center;
	background: rgba(0, 0, 0, .38);
	border-radius: 50%
}

.stepper .active .circle {
	background-color: var(--bs-primary) !important;
	color: #fff
}

.stepper .active .label {
	color: var(--bs-primary) !important
}

.stepper .active .circle:hover {
	background-color: var(--bs-primary) !important;
	color: #fff !important
}

.stepper .unfinished .circle {
	background-color: #f1f4f8
}

.stepper .completed .circle {
	background-color: var(--bs-secondary) !important;
	color: #fff
}

.stepper .completed .label {
	color: var(--bs-secondary) !important;
}

.stepper .completed .circle:hover {
	background-color: var(--bs-secondary) !important;
	color: #fff !important
}

.stepper .active span.text-muted {
	color: #fff !important;
}

.stepper .completed span.text-muted {
	color: #fff !important;
}

.stepper a {
	cursor: default;
	line-height: 0;
}

/* Custom CSS added for Directory App */
#card-height {
height: 100vh;
position: relative;
}
#sidebar-scrollbar{
	color: #000 !important;
	height: calc(100% - 75px);
	overflow-y: auto;
	overflow-x: auto;
	padding-bottom: 0;
}
#sidebar-scrollbar::-webkit-scrollbar {
	width: 0.3rem !important;
}
.jstree-default .jstree-clicked {
	background: #fff!important;
	color: #00B696!important;
	border-radius: 0!important;
	box-shadow: none!important;
}

/* Verical Text CSS */
.vertical-text {
	writing-mode: vertical-rl; 
	transform: rotate(180deg); 
}
/* End of Vertical Text CSS */

.apex-lh-md{
	line-height: 1.5rem;
}
.border-left {
	position: relative !important;
	top: 0;
	bottom: 0;
	left: 0;
	border: 0;
	border-left: 0.063rem solid #dee2e6;
}
@media (max-width: 767px) {
	.border-left {
		border-left: none !important;
	}
}
.badge-container {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 10;
}
.card-img-top {
	position: relative;
	z-index: 1;
}
.company-logo {
	background-image: url(../image/batoi-logo.png)!important;
	height: 38px;
	width: 150px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto; 
	display: block; 
}

.hover-up {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.hover-up:hover {
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
-webkit-box-shadow: 0px 10px 30px rgba(29, 58, 83, 0.15);
box-shadow: 0px 10px 30px rgba(29, 58, 83, 0.15);
}


/* light/dark mode Toggle button */
#themeToggle {
	position: relative;
	display: inline-block;
	width: 3.125rem;
	height: 1.5rem;
	border-radius: 25px;
	border: 2px solid var(--bs-body-color);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#themeToggle::before {
	font-family: 'bootstrap-icons';
	content: "\F5A2"; 
	color: var(--bs-black);
	position: absolute;
	height: 1.0rem;
	width: 1.0rem;
	left: 2px;
	bottom: 6px;
	border-radius: 50%;
	transition: transform 0.4s;
}

#themeToggle[data-theme="dark"] {
	border: 2px solid var(--bs-body-color);
}

#themeToggle[data-theme="dark"]::before {
	transform: translateX(25px);
	font-family: 'bootstrap-icons';
	content: "\F497"; 
	color: var(--bs-white);
}

.theme-toggle-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0.315rem 0.75rem;
	border-radius: .25rem;
}

#themeLabel {
	font-size: 14px;
	color: var(--bs-body-color);
	font-weight: 500;
}

/* Html Editor */
.ace-tm .ace_gutter, .ace-tm .ace_gutter-active-line {
	background: var(--bs-light);
	color: var(--bs-dark);
}

.ace-tm {
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
}

.ace_editor {
	border: 1px solid var(--bs-border-color) !important;
}

/* Summernote Editor */
.note-editor.note-airframe, .note-editor.note-frame {
	border: 1px solid var(--bs-border-color) !important;
}

.note-toolbar{
	color: var(--bs-body-color);
	background-color: var(--bs-light);
	border-color: var(--bs-border-color) !important;
}

.note-btn{
	color: var(--bs-body-color);
	background-color: var(--bs-body-bg);
	border-color: var(--bs-border-color) !important;
}

.note-frame {
	color: var(--bs-body-color)!important;
}
:root,
[data-bs-theme="light"] {
    --batoi-primary: #0e68b0;
    --batoi-primary-dark: #0b4f88;
    --batoi-primary-50: rgba(14, 104, 176, 0.08);
    --batoi-primary-10: rgba(14, 104, 176, 0.1);
    --batoi-secondary: #00b696;
    --batoi-secondary-dark: #00917a;
    --batoi-surface: #ffffff;
    --batoi-surface-alt: #f5f7fb;
    --batoi-muted: #6c7a89;
    --batoi-body: #1c2a3a;
    --batoi-border: #dce3ee;
    --batoi-radius: 3px;
    --batoi-radius-sm: 2px;
    --batoi-radius-xs: 2px;
    --batoi-shadow-sm: 0 8px 30px rgba(16, 42, 67, 0.04);
    --batoi-shadow-md: 0 24px 50px rgba(16, 42, 67, 0.12);
    --batoi-gradient: radial-gradient(circle at top left, rgba(14, 104, 176, 0.25), transparent 55%), linear-gradient(135deg, rgba(14, 104, 176, 0.94), rgba(0, 182, 150, 0.9));
    --batoi-hero-gradient: linear-gradient(135deg, rgba(14, 104, 176, 0.95), rgba(0, 182, 150, 0.9));
    --batoi-hero-overlay: linear-gradient(145deg, rgba(9, 27, 44, 0.88) 0%, rgba(9, 27, 44, 0.35) 60%, rgba(9, 27, 44, 0.15) 100%);
    --batoi-line-height-base: 1.65;
    --bs-border-radius: 2px;
    --bs-border-radius-sm: 2px;
    --bs-border-radius-lg: 3px;
}

body {
    font-family: "proxima-nova", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    color: var(--batoi-body);
    background: #ffffff;
    letter-spacing: -0.01em;
    line-height: var(--batoi-line-height-base);
}

.header-absolute {
    background: #ffffff;
    color: var(--batoi-body);
}

a {
    color: var(--batoi-primary);
    font-weight: 600;
}

a:hover {
    color: var(--batoi-primary-dark);
}

.page-wrapper section :is(p, ul li, ol li, dd) {
    line-height: var(--batoi-line-height-base);
}

.page-wrapper section p {
    margin-bottom: 1.15rem;
}

.navbar {
    backdrop-filter: blur(14px);
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    background: #ffffff;
    border-bottom: 1px solid rgba(220, 227, 238, 0.9);
    position: sticky;
    top: 0;
    z-index: 1040;
}

.navbar .container-fluid {
    align-items: center;
}

.navbar .navbar-collapse {
    display: flex !important;
    align-items: center;
    gap: 2rem;
}

.navbar-nav {
    gap: clamp(1.1rem, 1.8vw, 1.5rem);
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--batoi-body);
    padding: 0.35rem 0;
    margin: 0 !important;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

#apex-newClass .nav-link .nav-caret {
    font-size: 0.75rem;
    color: var(--batoi-muted);
    margin-left: 0.35rem;
    position: relative;
    top: 1px;
    display: inline-flex;
    align-items: center;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--batoi-primary);
    border-bottom-color: var(--batoi-primary);
}

.navbar .nav-link.active {
    color: var(--batoi-primary);
    border-bottom-color: var(--batoi-primary);
}

.navbar .btn,
.navbar .btn-outline-primary,
.navbar .btn-primary {
    border-radius: var(--batoi-radius-xs) !important;
}

.triangle-up-dropmenu.show {
    background: #ffffff !important;
    border-color: rgba(220, 227, 238, 0.9);
}

.navbar-actions .nav-link {
    font-weight: 600;
    color: var(--batoi-muted) !important;
}

.navbar-actions .nav-link:hover,
.navbar-actions .nav-link:focus {
    color: var(--batoi-primary) !important;
}

.navbar-actions .btn {
    font-weight: 600;
    border-width: 1px;
}

.navbar-actions .btn.btn-gradient {
    color: #ffffff !important;
    border: 0;
}

.navbar-actions .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    font-size: 1.15rem;
    color: #0d5c9b;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(14, 104, 176, 0.22);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.navbar-actions .btn-icon:hover,
.navbar-actions .btn-icon:focus {
    background: #ffffff;
    color: #0a4a82;
}

.navbar-actions .btn-outline-primary {
    color: var(--batoi-primary) !important;
    border-color: var(--batoi-primary) !important;
}

.all-batoi-btn {
    background: rgba(14, 104, 176, 0.08);
    border: 1px solid rgba(14, 104, 176, 0.18);
    border-radius: var(--batoi-radius);
    font-weight: 600;
    color: var(--batoi-primary);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.all-batoi-btn:hover {
    background: rgba(14, 104, 176, 0.14);
    color: #07497c;
    border-color: rgba(14, 104, 176, 0.28);
}

.navbar-account .nav-link {
    font-weight: 600;
    color: var(--batoi-muted) !important;
}

.navbar-account .nav-link:hover {
    color: var(--batoi-primary) !important;
}

.navbar-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f7f9fc;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(14, 104, 176, 0.12);
    min-width: 240px;
}

.navbar-search-icon {
    color: rgba(58, 72, 86, 0.6);
    display: inline-flex;
    align-items: center;
}

.navbar-search-input {
    border: 0;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--batoi-body);
    width: 100%;
}

.navbar-search-input::placeholder {
    color: rgba(58, 72, 86, 0.55);
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: none;
}

.home-hero-header {
    background: var(--batoi-hero-gradient);
    color: #f7fbff;
    box-shadow: none;
    border-bottom: 0;
}

.home-hero-shell {
    background: var(--batoi-hero-gradient);
    color: #f7fbff;
    position: relative;
    overflow: hidden;
}

.home-hero-header .navbar {
    background: transparent;
    box-shadow: none;
    border-bottom: 0;
}

.home-hero-header .nav-link {
    color: #ffffff !important;
}

.home-hero-header .nav-link:hover,
.home-hero-header .nav-link:focus,
.home-hero-header .nav-link.active {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.home-hero-header .navbar-actions .nav-link,
.home-hero-header .navbar-account .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
}

.home-hero-header .navbar-actions .nav-link:hover,
.home-hero-header .navbar-account .nav-link:hover {
    color: #ffffff !important;
}

.home-hero-header .navbar-actions .btn-icon {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.home-hero-header .navbar-actions .btn-icon:hover,
.home-hero-header .navbar-actions .btn-icon:focus {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.home-hero-header .all-batoi-btn {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.home-hero-header .all-batoi-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

.home-hero-header .navbar-search-form {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.home-hero-header .navbar-search-icon {
    color: rgba(248, 251, 255, 0.85);
}

.home-hero-header .navbar-search-input {
    color: #ffffff;
}

.home-hero-header .navbar-search-input::placeholder {
    color: rgba(248, 251, 255, 0.7);
}

.home-hero-header .navbar-toggler-icon {
    filter: invert(1);
}


.navbar .navbar-collapse > .navbar-nav {
    margin-left: 2rem;
}

.navbar-brand img {
    height: 32px;
}

@media (max-width: 1199.98px) {
    .navbar .navbar-collapse {
        gap: 1.5rem;
    }

    .navbar-nav .dropdown-menu {
        min-width: 440px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .navbar .navbar-collapse {
        align-items: flex-start;
        gap: 1.25rem;
    }

    .navbar-nav {
        width: 100%;
        gap: 0.75rem;
    }

    .navbar .nav-link {
        border-bottom: 0;
        padding: 0.5rem 0;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        transform: none !important;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 1.25rem 1rem;
        box-shadow: none;
        border-color: rgba(14, 104, 176, 0.12);
    }

    .navbar-search-form {
        width: 100%;
    }

    .mega-menu-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .navbar .navbar-collapse {
        gap: 1rem;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-search-form {
        min-width: 0;
        padding: 0.35rem 0.85rem;
    }
}

.mobile-all-batoi {
    display: grid;
    gap: 0.45rem;
}

.mobile-account {
    display: grid;
    gap: 0.45rem;
}

.mobile-menu-heading {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--batoi-muted);
}

.mobile-menu-link {
    color: var(--batoi-body);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: var(--batoi-radius);
    padding: 0.6rem 0.75rem;
}

.mobile-menu-link:hover {
    background: rgba(14, 104, 176, 0.08);
    color: var(--batoi-primary);
}

.page-wrapper {
    position: relative;
    overflow: hidden;
}

.section-py {
    padding: clamp(3rem, 5vw, 6rem) 0;
}

.section-light {
    background: var(--batoi-surface-alt);
    border-top: 1px solid rgba(220, 227, 238, 0.6);
    border-bottom: 1px solid rgba(220, 227, 238, 0.6);
}

.section-compact {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.12);
    color: var(--batoi-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2.3vw, 1.25rem);
    color: var(--batoi-muted);
    max-width: 48rem;
    margin: 0 auto;
    line-height: var(--batoi-line-height-base);
}

.hero {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    border-radius: 0 0 var(--batoi-radius) var(--batoi-radius);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 32px 70px rgba(17, 38, 66, 0.12);
    border: 1px solid rgba(220, 227, 238, 0.7);
    border-top: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: inherit;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.12);
    color: var(--batoi-primary);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.35rem, 4.2vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--batoi-body);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.3vw, 1.35rem);
    color: var(--batoi-muted);
    line-height: var(--batoi-line-height-base);
    margin-top: 1.2rem;
    /* max-width: 42rem; */
}

.hero-cta {
    margin-top: 2.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-card {
    position: relative;
    z-index: 1;
    background: var(--batoi-surface-alt);
    border-radius: var(--batoi-radius-sm);
    padding: clamp(1.75rem, 3vw, 2rem);
    border: 1px solid rgba(14, 104, 176, 0.1);
    box-shadow: 0 24px 45px rgba(16, 42, 67, 0.08);
}

.hero-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--batoi-body);
}

.hero-card p {
    margin: 0;
    color: var(--batoi-muted);
}

.btn-gradient,
.btn-pill,
.btn,
.btn-primary,
.btn-outline-primary {
    border-radius: var(--batoi-radius-xs) !important;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.82rem 1.6rem;
    background: linear-gradient(135deg, rgba(14, 104, 176, 1), rgba(0, 182, 150, 0.95));
    color: #ffffff !important;
    border: 0;
    box-shadow: 0 16px 30px rgba(14, 104, 176, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(14, 104, 176, 0.28);
}

.btn-pill {
    padding: 0.75rem 1.4rem;
    font-weight: 600;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.link-arrow i {
    transition: transform 0.2s ease;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

.feature-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.feature-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius-sm);
    padding: clamp(1.75rem, 3vw, 2rem);
    border: 1px solid rgba(14, 104, 176, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 104, 176, 0.08), transparent 65%);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: inherit;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--batoi-shadow-md);
    border-color: rgba(14, 104, 176, 0.18);
}

.feature-card:hover::before {
    opacity: 1;
}

.leader-card .leader-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 110px;
    background: rgba(14, 104, 176, 0.08);
    border: 1px solid rgba(14, 104, 176, 0.2);
    display: block;
}

.leader-card .leader-photo i {
    font-size: 2rem;
    color: var(--batoi-primary);
}

.timeline-extended {
    position: relative;
    margin-top: 2.6rem;
}

.timeline-extended::before {
    content: "";
    position: absolute;
    left: 1.65rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(14, 104, 176, 0.22), rgba(0, 182, 150, 0.22));
}

.timeline-extended-item {
    position: relative;
    padding: 1.75rem 1.75rem 1.75rem 4.6rem;
    margin-bottom: 1.9rem;
    background: var(--batoi-surface);
    border-radius: 8px;
    border: 1px solid rgba(14, 104, 176, 0.12);
    box-shadow: 0 24px 50px rgba(16, 42, 67, 0.08);
}

.timeline-extended-item:last-child {
    margin-bottom: 0;
}

.timeline-extended-item::before {
    content: "";
    position: absolute;
    left: 1.05rem;
    top: 1.95rem;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--batoi-secondary);
    box-shadow: 0 0 0 6px rgba(0, 182, 150, 0.22);
}

.timeline-extended-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.08);
    color: var(--batoi-primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.timeline-extended-item h6 {
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.timeline-extended-item p {
    margin: 0;
    color: var(--batoi-muted);
}

@media (max-width: 575.98px) {
    .timeline-extended::before {
        left: 1.25rem;
    }

    .timeline-extended-item {
        padding: 1.5rem 1.5rem 1.5rem 3.7rem;
        margin-bottom: 1.5rem;
    }

.timeline-extended-item::before {
        left: 0.85rem;
        top: 1.7rem;
    }
}

.layer-grid {
    display: grid;
    gap: clamp(1.2rem, 3vw, 1.6rem);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.layer-card {
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    height: 100%;
}

.layer-card h4 {
    font-weight: 700;
    margin: 0;
}

.layer-card p {
    margin: 0;
    color: var(--batoi-muted);
}

.layer-card .icon-list {
    margin-bottom: 0;
}

.layer-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 104, 176, 0.12);
    color: var(--batoi-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.app-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.app-card {
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.1);
    border-radius: 6px;
    padding: 1.1rem 1.25rem;
    box-shadow: var(--batoi-shadow-sm);
    height: 100%;
}

.app-card h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.app-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--batoi-muted);
}

.doc-matrix {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.doc-matrix-card {
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--batoi-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.doc-matrix-card h6 {
    font-weight: 700;
    margin: 0;
}

.doc-matrix-card p {
    margin: 0;
    color: var(--batoi-muted);
}

.doc-matrix-card span {
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.7);
}

.doc-list {
    display: grid;
    gap: 0.9rem;
}

.doc-list-item {
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.1);
    border-radius: 6px;
    padding: 1rem 1.25rem;
}

.doc-list-item h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.doc-list-item p {
    margin: 0;
    color: var(--batoi-muted);
}

.doc-reference {
    display: grid;
    gap: 0.85rem;
}

.doc-reference-item {
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: 8px;
    padding: 1.25rem 1.4rem;
}

.doc-reference-item h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.doc-reference-item p {
    margin-bottom: 0.35rem;
    color: var(--batoi-muted);
}

.doc-reference-item span {
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.68);
}

.plan-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.plan-card {
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-card h6 {
    font-weight: 700;
    margin: 0;
}

.plan-card p {
    margin: 0;
    color: var(--batoi-muted);
}

.plan-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(18, 34, 52, 0.72);
}

.plan-card ul li + li {
    margin-top: 0.4rem;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(14, 104, 176, 0.12);
    border: 1px solid rgba(14, 104, 176, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--batoi-primary);
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
    flex: 0 0 54px;
    line-height: 0;
}

.feature-card h5 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    position: relative;
    z-index: 1;
    color: var(--batoi-muted);
    margin-bottom: 1rem;
    line-height: var(--batoi-line-height-base);
}

.feature-card .link-arrow {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.stat-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--batoi-radius-sm);
    background: rgba(0, 182, 150, 0.12);
    color: var(--batoi-secondary);
    font-weight: 600;
    font-size: 0.85rem;
}

.gradient-border {
    background: linear-gradient(120deg, rgba(14, 104, 176, 0.12), rgba(0, 182, 150, 0.12));
    padding: 1px;
    border-radius: var(--batoi-radius);
}

.gradient-border .inner {
    background: var(--batoi-surface);
    border-radius: inherit;
    height: 100%;
}

.media-card {
    border-radius: var(--batoi-radius-sm);
    overflow: hidden;
    background: var(--batoi-surface);
    border: 1px solid rgba(14, 104, 176, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--batoi-shadow-md);
}

.media-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.media-card .card-body {
    padding: 1.5rem;
}

.media-card .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-card .card-text {
    color: var(--batoi-muted);
    font-size: 0.95rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--batoi-body);
}

.check-list li i {
    color: var(--batoi-secondary);
    background: rgba(0, 182, 150, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 182, 150, 0.2);
    flex: 0 0 1.75rem;
    line-height: 0;
}

.tile-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 576px) {
    .tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .tile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.tile-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius-xs);
    padding: 1.5rem;
    border: 1px solid rgba(14, 104, 176, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    text-align: left;
    height: 100%;
}

.tile-card span {
    display: block;
    color: var(--batoi-muted);
    font-size: 0.9rem;
    margin-top: 0.6rem;
}

.cta-panel {
    background: #eef4fb;
    border-radius: 8px;
    border: 1px solid rgba(14, 104, 176, 0.16);
    color: var(--batoi-body);
    padding: clamp(2rem, 4vw, 2.9rem);
    position: relative;
    overflow: hidden;
    box-shadow: var(--batoi-shadow-sm);
}

.cta-panel::after {
    content: none;
}

.cta-panel .cta-content {
    position: relative;
    z-index: 1;
}

.cta-panel h3 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.cta-panel p {
    color: var(--batoi-muted);
    margin-bottom: 1.25rem;
}

.cta-panel .cta-subtext {
    color: var(--batoi-muted);
}

.cta-panel .section-eyebrow {
    color: var(--batoi-primary);
    background: rgba(14, 104, 176, 0.14);
    border-color: rgba(14, 104, 176, 0.22);
}

.cta-panel .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.contact-card-group {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .contact-card-group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.contact-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius-sm);
    border: 1px solid rgba(14, 104, 176, 0.08);
    padding: 1.8rem;
    box-shadow: var(--batoi-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card h5 {
    margin-bottom: 0.25rem;
}

.contact-card .card-subtext {
    color: var(--batoi-muted);
    margin-bottom: 0;
}

.contact-card .stacked {
    display: grid;
    gap: 0.35rem;
}

.stat-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.stat-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius-sm);
    padding: clamp(2.1rem, 5vw, 2.6rem) clamp(1.8rem, 4vw, 2.2rem);
    border: 1px solid rgba(14, 104, 176, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 104, 176, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 104, 176, 0.16);
    box-shadow: 0 20px 40px rgba(14, 104, 176, 0.18);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(2.2rem, 5vw, 3.1rem);
    font-weight: 700;
    color: var(--batoi-primary);
    margin-bottom: 0.6rem;
}

.stat-label {
    font-weight: 600;
    color: var(--batoi-body);
    margin-bottom: 0.55rem;
}

.stat-copy {
    color: var(--batoi-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.contact-form-hero .section-title {
    margin-bottom: 0.6rem;
}

.contact-form-hero .section-subtitle {
    margin: 0;
    max-width: 36rem;
}

.contact-form-hero-copy {
    color: rgba(18, 34, 52, 0.85);
}

.contact-form-illustration {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(12, 58, 96, 0.12));
}

.contact-form-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.65rem;
}

.contact-form-highlights li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(14, 104, 176, 0.06);
    border-radius: var(--batoi-radius);
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
    color: rgba(18, 34, 52, 0.78);
}

.contact-form-highlights i {
    color: var(--batoi-primary);
    font-size: 1.05rem;
}

.contact-form-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.6rem, 4vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-form-card-head {
    display: grid;
    gap: 0.75rem;
}

.contact-form-card-title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
}

.contact-form-card-copy {
    margin: 0;
    color: var(--batoi-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: rgba(18, 34, 52, 0.82);
    margin-bottom: 0.4rem;
}

.form-label-heading {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(18, 34, 52, 0.72);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.14);
    background: var(--batoi-surface);
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--batoi-primary);
    box-shadow: 0 0 0 3px rgba(14, 104, 176, 0.16);
    background: var(--batoi-surface);
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--batoi-muted);
    line-height: 1.7;
    background: rgba(14, 104, 176, 0.04);
    border: 1px solid rgba(14, 104, 176, 0.07);
    border-radius: var(--batoi-radius);
    padding: 0.85rem 1rem;
}

.contact-form-note .link-inline {
    font-weight: 600;
}

.link-inline {
    color: var(--batoi-primary);
    text-decoration: none;
}

.link-inline:hover {
    color: var(--batoi-primary-dark);
    text-decoration: underline;
}

.contact-form-consent {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(14, 36, 56, 0.12);
    border-radius: var(--batoi-radius);
    background: var(--batoi-surface);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-form-consent .form-check-input {
    margin-top: 0.25rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(14, 36, 56, 0.2);
    box-shadow: none;
}

.contact-form-consent .form-check-input:checked {
    background-color: var(--batoi-primary);
    border-color: var(--batoi-primary);
}

.contact-form-consent .form-check-label {
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.82);
}

.contact-form-error {
    margin-top: 0.35rem;
}

.contact-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.contact-form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.65rem;
    box-shadow: 0 10px 24px rgba(14, 104, 176, 0.22);
}

.contact-form-submit .bi {
    font-size: 0.95rem;
}

.contact-purpose-grid {
    margin-top: 0.75rem;
}

.contact-purpose-grid > [class*="col-"] {
    display: flex;
}

.contact-purpose-grid > [class*="col-"] .contact-purpose-card {
    width: 100%;
}

.contact-purpose-card {
    position: relative;
    width: 100%;
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: var(--batoi-radius);
    background: rgba(244, 248, 253, 0.7);
    padding: 1.15rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    color: rgba(18, 34, 52, 0.88);
    font-weight: 600;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, background 0.25s ease;
    cursor: pointer;
    min-height: 100%;
}

.contact-purpose-card:hover {
    border-color: var(--batoi-primary);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(14, 104, 176, 0.12);
}

.contact-purpose-card.is-active {
    border-color: var(--batoi-primary);
    background: rgba(14, 104, 176, 0.1);
    box-shadow: 0 18px 36px rgba(14, 104, 176, 0.16);
}

.contact-purpose-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.contact-purpose-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(18, 34, 52, 0.88);
}

.contact-purpose-check {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    background: var(--batoi-primary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.contact-purpose-card.is-active .contact-purpose-check {
    display: flex;
}

.contact-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-sidebar-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 104, 176, 0.08);
    padding: clamp(1.5rem, 4vw, 2rem);
    display: grid;
    gap: 1rem;
    box-shadow: var(--batoi-shadow-sm);
}

.sidebar-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--batoi-primary);
}

.contact-form-sidebar-card h5 {
    margin: 0;
    font-weight: 700;
}

.contact-form-sidebar-card p {
    margin: 0;
    color: var(--batoi-muted);
    line-height: 1.7;
}

.sidebar-links {
    display: grid;
    gap: 0.5rem;
}

.contact-form-sidebar-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(14, 104, 176, 0.07);
    border: 1px solid rgba(14, 104, 176, 0.11);
    border-radius: var(--batoi-radius);
    padding: 0.9rem 1rem;
    color: rgba(18, 34, 52, 0.82);
    font-size: 0.9rem;
}

.contact-form-sidebar-note i {
    font-size: 1.2rem;
    color: var(--batoi-primary);
    flex-shrink: 0;
}

.contact-form-sidebar-note strong {
    display: block;
    margin-bottom: 0.25rem;
}

.content-hero {
    position: relative;
}

.content-hero-copy {
    color: rgba(18, 34, 52, 0.82);
    max-width: 38rem;
}

.content-hero .section-subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.content-hero-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 104, 176, 0.1);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.5rem, 3.5vw, 2rem);
}

.content-groups {
    background: #ffffff;
}

.content-category {
    display: grid;
    gap: 1.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.content-category:last-of-type {
    margin-bottom: 0;
}

.content-category-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    justify-content: space-between;
}

.content-category-title {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
}

.content-category-description {
    margin: 0.35rem 0 0;
    color: var(--batoi-muted);
    max-width: 100%;
}

.article-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(14, 104, 176, 0.16);
}

.article-card-media {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 62%;
    background-size: cover;
    background-position: center;
}

.article-card-body {
    padding: 1.35rem 1.35rem 0;
    display: grid;
    gap: 0.65rem;
}

.article-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(18, 34, 52, 0.92);
    line-height: 1.45;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--batoi-primary);
}

.article-card-excerpt {
    margin: 0;
    color: var(--batoi-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-card-footer {
    padding: 1rem 1.35rem 1.35rem;
    margin-top: auto;
}

.article-card-footer .link-arrow {
    font-weight: 600;
}

.article-meta {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(18, 34, 52, 0.6);
    text-transform: uppercase;
}

.article-feature {
    background: #ffffff;
}

.article-feature-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-feature-media {
    display: block;
    width: 100%;
    padding-top: 58%;
    background-size: cover;
    background-position: center;
}

.article-feature-body {
    display: grid;
    gap: 0.75rem;
    padding: clamp(1.5rem, 3.5vw, 2.2rem);
}

.article-feature-title {
    margin: 0;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

.article-feature-title a {
    color: inherit;
    text-decoration: none;
}

.article-feature-title a:hover {
    color: var(--batoi-primary);
}

.article-feature-excerpt {
    margin: 0;
    color: var(--batoi-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.spotlight-stack {
    display: grid;
    gap: 1.25rem;
}

.spotlight-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(18, 34, 52, 0.72);
}

.spotlight-list {
    display: grid;
    gap: 1rem;
}

.spotlight-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    background: rgba(244, 248, 253, 0.65);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.spotlight-card:hover {
    border-color: var(--batoi-primary);
    box-shadow: 0 18px 32px rgba(14, 104, 176, 0.14);
    transform: translateY(-2px);
}

.spotlight-media {
    display: block;
    width: 100%;
    padding-top: 75%;
    border-radius: var(--batoi-radius);
    background-size: cover;
    background-position: center;
}

.spotlight-body {
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.spotlight-body h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.spotlight-body h4 a {
    color: rgba(18, 34, 52, 0.92);
    text-decoration: none;
}

.spotlight-body h4 a:hover {
    color: var(--batoi-primary);
}

.spotlight-body p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--batoi-muted);
    line-height: 1.55;
}

.spotlight-card .stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.article-archive {
    background: #ffffff;
}

.article-meta-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.4rem, 3.2vw, 2rem);
    display: grid;
    gap: 1rem;
}

.article-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.article-meta-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(14, 36, 56, 0.18);
}

.article-meta-author {
    font-weight: 700;
    font-size: 1rem;
    color: rgba(18, 34, 52, 0.9);
}

.article-meta-bio {
    font-size: 0.9rem;
    color: var(--batoi-muted);
    line-height: 1.5;
}

.article-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.72);
}

.article-meta-date i {
    color: var(--batoi-primary);
}

.article-meta-share {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(18, 34, 52, 0.72);
}

.article-meta-share-buttons {
    display: inline-flex;
    gap: 0.35rem;
}

.article-meta-share-buttons a {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 104, 176, 0.1);
    color: var(--batoi-primary);
    transition: background 0.2s ease, color 0.2s ease;
}

.article-meta-share-buttons a:hover {
    background: var(--batoi-primary);
    color: #fff;
}

.article-detail {
    background: #ffffff;
}

.article-body {
    display: grid;
    gap: 1.4rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(18, 34, 52, 0.88);
}

.article-body h2,
.article-body h3,
.article-body h4 {
    font-weight: 700;
    color: rgba(18, 34, 52, 0.92);
}

.article-body figure {
    margin: 1.5rem 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.08);
    color: var(--batoi-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-aside {
    display: grid;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

.article-author-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    text-align: center;
    padding: 2rem 1.5rem;
    display: grid;
    gap: 0.75rem;
    align-items: start;
    justify-items: center;
}

.article-author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(14, 36, 56, 0.18);
}

.article-author-name {
    font-size: 1.05rem;
    font-weight: 700;
}

.article-author-bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--batoi-muted);
    line-height: 1.6;
}

.article-author-date {
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.7);
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.article-author-date i {
    color: var(--batoi-primary);
}

.article-author-share {
    display: grid;
    gap: 0.5rem;
    justify-items: center;
}

.article-cta-card {
    background: rgba(14, 104, 176, 0.08);
    border: 1px solid rgba(14, 104, 176, 0.12);
    border-radius: var(--batoi-radius);
    padding: 1.5rem;
    text-align: center;
    display: grid;
    gap: 0.75rem;
}

.article-cta-card h5 {
    margin: 0;
    font-weight: 700;
}

.article-cta-card p {
    margin: 0;
    color: rgba(18, 34, 52, 0.75);
    line-height: 1.6;
}

.support-hero-copy {
    color: rgba(18, 34, 52, 0.82);
    max-width: 42rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.support-search {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: grid;
    gap: 1rem;
}

.support-search .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.75);
}

.support-categories .row {
    --bs-gutter-y: 1.5rem;
}

.support-category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    background: var(--batoi-surface);
    box-shadow: var(--batoi-shadow-sm);
    text-decoration: none;
    color: rgba(18, 34, 52, 0.92);
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
    justify-items: start;
}

.support-category-card:hover {
    border-color: var(--batoi-primary);
    box-shadow: 0 18px 32px rgba(14, 104, 176, 0.16);
    transform: translateY(-3px);
    color: var(--batoi-primary);
}

.support-category-media {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 104, 176, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.support-category-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-category-title {
    font-size: 0.95rem;
    line-height: 1.4;
}

.support-category-card .support-category-media {
    flex-shrink: 0;
}

.support-highlights {
    background: #ffffff;
}

.support-highlight-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.5rem, 3vw, 2rem);
    display: grid;
    gap: 1rem;
}

.support-highlight-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(18, 34, 52, 0.72);
}

.support-highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.support-highlight-card a {
    color: rgba(18, 34, 52, 0.88);
    text-decoration: none;
    font-weight: 600;
}

.support-highlight-card a:hover {
    color: var(--batoi-primary);
}

.support-help {
    background: var(--batoi-surface-alt);
}

.support-help-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 104, 176, 0.12);
    background: rgba(14, 104, 176, 0.08);
}

.support-help-card h3 {
    margin: 0 0 0.35rem 0;
    font-weight: 700;
}

.support-help-card p {
    margin: 0;
    color: rgba(18, 34, 52, 0.78);
}

.support-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.support-doc-hero .section-title {
    margin-bottom: 0.75rem;
}

.support-doc-summary {
    color: rgba(18, 34, 52, 0.82);
    max-width: 50rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.support-doc-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.12);
    color: var(--batoi-primary);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-doc-category:hover {
    color: var(--batoi-primary-dark);
}

.support-doc-meta {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
    justify-items: start;
}

.support-doc-meta span {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.75);
}

.support-doc-meta i {
    color: var(--batoi-primary);
}

.support-doc-detail {
    background: #ffffff;
}

.support-doc-toc-card {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: 1rem;
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: 1.5rem;
}

.support-doc-toc-card h4 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: rgba(18, 34, 52, 0.65);
}

.support-doc-toc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.support-doc-toc-card li {
    border-left: 2px solid rgba(14, 36, 56, 0.1);
    padding-left: 0.75rem;
}

.support-doc-toc-card li.active {
    border-color: var(--batoi-primary);
}

.support-doc-toc-card a {
    color: rgba(18, 34, 52, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

.support-doc-toc-card a:hover {
    color: var(--batoi-primary);
}

.support-doc-body {
    display: grid;
    gap: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(18, 34, 52, 0.9);
}

.support-doc-body h2,
.support-doc-body h3 {
    font-weight: 700;
    margin-top: 1.5rem;
    color: rgba(18, 34, 52, 0.92);
}

.support-doc-body .callout-info {
    padding: 1rem 1.25rem;
    border-radius: var(--batoi-radius);
    background: rgba(14, 104, 176, 0.08);
    border: 1px solid rgba(14, 104, 176, 0.12);
}

.support-doc-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 36, 56, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.support-doc-feedback {
    display: inline-flex;
    gap: 0.75rem;
}

.support-doc-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.92rem;
    color: rgba(18, 34, 52, 0.75);
}

.support-doc-related a {
    font-weight: 600;
    color: var(--batoi-primary);
    text-decoration: none;
}

.support-doc-related a:hover {
    color: var(--batoi-primary-dark);
}

.whitepaper-grid {
    background: #ffffff;
}

.whitepaper-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whitepaper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(14, 104, 176, 0.16);
}

.whitepaper-card-media {
    display: block;
    position: relative;
    padding-top: 130%;
    overflow: hidden;
}

.whitepaper-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whitepaper-card-body {
    padding: 1.25rem 1.25rem 0;
    display: grid;
    gap: 0.75rem;
}

.whitepaper-card-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.whitepaper-card-body a {
    color: rgba(18, 34, 52, 0.92);
    text-decoration: none;
    font-weight: 700;
}

.whitepaper-card-body a:hover {
    color: var(--batoi-primary);
}

.whitepaper-card-footer {
    padding: 1.25rem;
    margin-top: auto;
}

.whitepaper-hero .content-hero-copy {
    max-width: 44rem;
}

.whitepaper-detail {
    background: #ffffff;
}

.whitepaper-meta-card {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: 1.25rem;
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: 1.5rem;
}

.whitepaper-cover img {
    width: 100%;
    border-radius: var(--batoi-radius-sm);
    box-shadow: 0 12px 28px rgba(14, 36, 56, 0.18);
}

.whitepaper-meta {
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.72);
}

.whitepaper-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whitepaper-meta i {
    color: var(--batoi-primary);
}

.whitepaper-summary {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.whitepaper-summary h2 {
    margin: 0;
    font-weight: 700;
}

.whitepaper-summary ul {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(18, 34, 52, 0.86);
}

.whitepaper-download-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: grid;
    gap: 1.5rem;
}

.whitepaper-download-card h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.whitepaper-form .form-check-label a {
    font-weight: 600;
}

.whitepaper-related {
    display: grid;
    gap: 1.5rem;
}

.whitepaper-related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.12);
    background: rgba(14, 104, 176, 0.08);
    color: rgba(18, 34, 52, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.whitepaper-related-card:hover {
    border-color: var(--batoi-primary);
    background: rgba(14, 104, 176, 0.12);
}

.media-hero .section-title {
    max-width: 40rem;
}

.media-downloads {
    background: #ffffff;
}

.media-card {
    display: grid;
    gap: 0.65rem;
    padding: 1.5rem;
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    background: var(--batoi-surface);
    box-shadow: var(--batoi-shadow-sm);
    text-decoration: none;
    color: rgba(18, 34, 52, 0.88);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.media-card:hover {
    transform: translateY(-3px);
    border-color: var(--batoi-primary);
    box-shadow: 0 18px 36px rgba(14, 104, 176, 0.14);
    color: var(--batoi-primary);
}

.media-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(14, 104, 176, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--batoi-primary);
    font-size: 1.25rem;
}

.media-card-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.media-card-copy {
    font-size: 0.95rem;
    color: rgba(18, 34, 52, 0.75);
    line-height: 1.6;
}

.media-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--batoi-primary);
}

.media-brand-kit {
    background: #ffffff;
}

.media-guideline-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    gap: 1rem;
}

.media-guideline-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.media-guideline-card p {
    margin: 0;
    color: rgba(18, 34, 52, 0.75);
    line-height: 1.6;
}

.media-guideline-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.media-guideline-format {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(18, 34, 52, 0.6);
}

.media-press-support {
    background: var(--batoi-surface-alt);
}

.media-press-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 104, 176, 0.1);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.75rem, 4vw, 2.6rem);
    display: grid;
    gap: 1.5rem;
}

.media-press-header h3 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.media-press-header p {
    margin: 0;
    color: rgba(18, 34, 52, 0.75);
    max-width: 38rem;
}

.media-press-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-press-item {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    background: rgba(14, 104, 176, 0.06);
    color: rgba(18, 34, 52, 0.88);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.media-press-item:hover {
    border-color: var(--batoi-primary);
    background: rgba(14, 104, 176, 0.12);
}

.media-press-icon {
    font-size: 1.35rem;
    color: var(--batoi-primary);
}

.media-press-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(18, 34, 52, 0.6);
    font-weight: 700;
}

.media-press-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.media-single-hero .section-title {
    max-width: 42rem;
}

.media-single-summary {
    color: rgba(18, 34, 52, 0.82);
    margin-left: 0;
    max-width: 42rem;
}

.media-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.7);
}

.media-single-meta i {
    color: var(--batoi-primary);
    margin-right: 0.35rem;
}

.media-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.media-single-tags span {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.12);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--batoi-primary);
}

.media-single-bundle {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    padding: 1.5rem;
    box-shadow: var(--batoi-shadow-sm);
    display: grid;
    gap: 0.75rem;
}

.media-single-bundle .bundle-size {
    margin-left: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-assets {
    background: #ffffff;
}

.media-asset-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.media-asset-card:hover {
    transform: translateY(-3px);
    border-color: var(--batoi-primary);
    box-shadow: 0 18px 36px rgba(14, 104, 176, 0.14);
}

.media-asset-artwork img {
    width: 100%;
    border-radius: var(--batoi-radius-sm);
    box-shadow: 0 10px 24px rgba(14, 36, 56, 0.12);
}

.media-asset-body h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.media-asset-body p {
    margin: 0;
    color: rgba(18, 34, 52, 0.78);
    line-height: 1.6;
}

.media-asset-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(18, 34, 52, 0.72);
}

.media-asset-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.media-asset-meta i {
    color: var(--batoi-primary);
}

.media-asset-actions .btn {
    width: 100%;
}

.media-download-notes {
    background: var(--batoi-surface-alt);
}

.media-single-notes {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 104, 176, 0.1);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.75rem, 4vw, 2.6rem);
    display: grid;
    gap: 1.25rem;
}

.media-single-notes h4 {
    margin: 0;
    font-weight: 700;
}

.media-single-notes ul {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(18, 34, 52, 0.78);
    line-height: 1.7;
}

.media-notes-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.case-hero .content-hero-copy {
    max-width: 46rem;
}

.case-filters {
    background: #ffffff;
}

.case-filter-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.case-filter-group {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.case-filter-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(18, 34, 52, 0.65);
}

.case-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-filter-pill {
    border: 1px solid rgba(14, 104, 176, 0.25);
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.08);
    color: var(--batoi-primary);
    padding: 0.4rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.case-filter-pill:hover {
    background: var(--batoi-primary);
    border-color: var(--batoi-primary);
    color: #ffffff;
}

.case-filter-note {
    margin-top: 1.25rem;
    color: rgba(18, 34, 52, 0.6);
}

.case-grid {
    background: #ffffff;
}

.case-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: var(--batoi-primary);
    box-shadow: 0 20px 40px rgba(14, 104, 176, 0.16);
}

.case-card-media {
    display: block;
    position: relative;
    padding-top: 60%;
    background-size: cover;
    background-position: center;
}

.case-card-body {
    padding: 1.35rem 1.5rem 0;
    display: grid;
    gap: 0.65rem;
}

.case-card-body h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.case-card-body a {
    color: rgba(18, 34, 52, 0.9);
    text-decoration: none;
    font-weight: 700;
}

.case-card-body a:hover {
    color: var(--batoi-primary);
}

.case-card-footer {
    padding: 1rem 1.5rem 1.5rem;
    margin-top: auto;
}

.case-cta {
    background: var(--batoi-surface-alt);
}

.case-cta-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 104, 176, 0.12);
    box-shadow: var(--batoi-shadow-sm);
    padding: clamp(1.8rem, 4vw, 2.6rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.case-cta-card h3 {
    margin: 0 0 0.35rem 0;
    font-weight: 700;
}

.case-cta-card p {
    margin: 0;
    color: rgba(18, 34, 52, 0.78);
    max-width: 40rem;
}

.case-cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.case-detail-hero .section-title {
    max-width: 48rem;
}

.case-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(18, 34, 52, 0.7);
}

.case-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.case-detail-meta i {
    color: var(--batoi-primary);
}

.case-detail-cover {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: 1rem;
    display: grid;
    gap: 1rem;
}

.case-detail-cover img {
    width: 100%;
    border-radius: var(--batoi-radius-sm);
    box-shadow: 0 10px 24px rgba(14, 36, 56, 0.15);
}

.case-detail-body {
    background: #ffffff;
}

.case-detail-article {
    display: grid;
    gap: 2rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(18, 34, 52, 0.88);
}

.case-detail-article section h2 {
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: rgba(18, 34, 52, 0.92);
}

.case-detail-article ul {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.5rem;
}

.case-detail-article li {
    color: rgba(18, 34, 52, 0.8);
}

.case-detail-quote {
    margin: 0;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--batoi-primary);
    background: rgba(14, 104, 176, 0.08);
    border-radius: var(--batoi-radius-sm);
    display: grid;
    gap: 0.75rem;
    color: rgba(18, 34, 52, 0.9);
}

.case-detail-quote p {
    margin: 0;
    font-size: 1.05rem;
    font-style: italic;
}

.case-detail-quote span {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(18, 34, 52, 0.7);
}

.case-detail-aside {
    display: grid;
    gap: 1.25rem;
}

.case-detail-note,
.case-detail-links {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(14, 36, 56, 0.08);
    box-shadow: var(--batoi-shadow-sm);
    padding: 1.4rem 1.6rem;
}

.case-detail-note h5,
.case-detail-links h6 {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
}

.case-detail-note p {
    margin: 0;
    color: rgba(18, 34, 52, 0.75);
    line-height: 1.6;
}

.case-detail-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.case-detail-links a {
    font-weight: 600;
    color: var(--batoi-primary);
    text-decoration: none;
}

.case-detail-links a:hover {
    color: var(--batoi-primary-dark);
}

.case-detail-cta {
    background: var(--batoi-surface-alt);
}

@media (max-width: 767.98px) {
    .contact-form-actions {
        justify-content: stretch;
    }

    .contact-form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-highlights li {
        align-items: flex-start;
    }

    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .article-meta-card {
        position: relative;
        top: 0;
    }

    .article-aside {
        position: static;
    }

    .support-help-card {
        text-align: center;
        justify-content: center;
    }

    .support-help-actions {
        justify-content: center;
    }

    .support-doc-meta {
        justify-items: stretch;
    }

    .support-doc-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .whitepaper-meta-card {
        position: static;
    }

    .media-single-bundle {
        margin-top: 0.5rem;
    }

    .media-notes-cta {
        justify-content: center;
    }

    .case-cta-card {
        text-align: center;
        justify-content: center;
    }

    .case-cta-actions {
        justify-content: center;
    }

    .case-detail-cover {
        position: static;
    }
}

.contact-location {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius-sm);
    border: 1px solid rgba(14, 104, 176, 0.08);
    overflow: hidden;
    box-shadow: var(--batoi-shadow-sm);
}

.contact-location .map {
    aspect-ratio: 4 / 3;
    width: 100%;
    border: 0;
    display: block;
}

.contact-location .location-body {
    padding: 1.5rem;
}

.contact-location h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-location p {
    color: var(--batoi-muted);
    margin-bottom: 0.4rem;
}

.tab-panel-modern .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    border: 0;
}

.tab-panel-modern .nav-link {
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 104, 176, 0.12);
    color: var(--batoi-muted);
    font-weight: 600;
    transition: all 0.2s ease;
}

.tab-panel-modern .nav-link.active,
.tab-panel-modern .nav-link:hover {
    color: var(--batoi-primary);
    border-color: rgba(14, 104, 176, 0.4);
    background: rgba(14, 104, 176, 0.07);
}

.timeline {
    position: relative;
    padding-left: 1.75rem;
    margin-top: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(14, 104, 176, 0.3), rgba(0, 182, 150, 0.3));
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.05rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--batoi-primary);
    box-shadow: 0 0 0 6px rgba(14, 104, 176, 0.18);
}

.timeline-item h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.timeline-item p {
    color: var(--batoi-muted);
    margin: 0;
}

.integration-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .integration-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.integration-card {
    background: var(--batoi-surface);
    border-radius: var(--batoi-radius-sm);
    border: 1px solid rgba(14, 104, 176, 0.08);
    padding: 1.75rem;
    box-shadow: var(--batoi-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.integration-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--batoi-shadow-md);
}

.integration-card span {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--batoi-muted);
}

.integration-card strong {
    font-size: 1.1rem;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(14, 104, 176, 0.12);
    border: 1px solid rgba(14, 104, 176, 0.2);
    color: var(--batoi-primary);
    font-size: 1rem;
    flex: 0 0 42px;
    line-height: 0;
}

.card-divider {
    height: 1px;
    width: 100%;
    background: rgba(14, 104, 176, 0.1);
}

.play-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 1.35rem;
    transition: transform 0.25s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

.card-muted {
    color: var(--batoi-muted);
    font-size: 0.95rem;
}

.logo-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
}

@media (min-width: 600px) {
    .logo-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }
}

@media (min-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(6, minmax(140px, 1fr));
    }
}

.logo-chip {
    border-radius: 999px;
    background: rgba(14, 104, 176, 0.07);
    padding: 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--batoi-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(14, 104, 176, 0.14);
}

.logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(14, 104, 176, 0.1);
    box-shadow: 0 10px 25px rgba(10, 35, 64, 0.05);
    width: 100%;
    max-width: 220px;
}

.logo-tile img {
    max-height: 48px;
    width: auto;
    filter: grayscale(0.1);
    opacity: 0.92;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.logo-tile:hover img {
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
}

.longform-copy p {
    color: var(--batoi-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.longform-copy p + p {
    margin-top: 1.4rem;
}

.glass-card {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--batoi-radius);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--batoi-shadow-md);
    padding: 2rem;
}

.bg-mesh {
    position: relative;
    border-radius: var(--batoi-radius);
    overflow: hidden;
}

.bg-mesh::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--batoi-hero-overlay);
}

.bg-mesh img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-mesh .content {
    position: absolute;
    inset: 0;
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    z-index: 1;
}



.batoi-footer {
    background: #f7f9fd;
    color: rgba(32, 42, 56, 0.88);
    margin-top: 4rem;
    border-top: 1px solid rgba(14, 36, 56, 0.08);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-cta-bar {
    background: #ffffff;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(14, 36, 56, 0.08);
}

.footer-cta-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-cta-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(14, 104, 176, 0.16);
    border-radius: var(--batoi-radius);
    text-decoration: none;
    color: rgba(18, 34, 52, 0.86);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 104, 176, 0.28);
    box-shadow: 0 14px 30px rgba(15, 35, 58, 0.12);
    background: #f7fbff;
}

.footer-cta-label {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(18, 34, 52, 0.78);
    font-weight: 700;
}

.footer-cta-link {
    font-family: "proxima-nova", sans-serif;
    font-size: 0.85rem;
    color: rgba(32, 42, 56, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.footer-cta-copy {
    color: rgba(32, 42, 56, 0.65);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-cta-icon,
.footer-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-cta-icon {
    width: 54px;
    height: 54px;
    background: rgba(14, 104, 176, 0.12);
    border: 1px solid rgba(14, 104, 176, 0.2);
    color: rgba(14, 104, 176, 0.8);
    font-size: 1.5rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-cta-arrow {
    width: 36px;
    height: 36px;
    background: rgba(14, 104, 176, 0.08);
    border: 1px solid rgba(14, 104, 176, 0.16);
    color: rgba(14, 104, 176, 0.65);
    font-size: 1.05rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-cta-card:hover .footer-cta-icon {
    background: rgba(14, 104, 176, 0.16);
    color: rgba(14, 104, 176, 0.95);
    transform: scale(1.05);
}

.footer-cta-card:hover .footer-cta-arrow {
    background: var(--batoi-primary);
    color: #ffffff;
    transform: translateX(4px);
}

@media (max-width: 575.98px) {
    .footer-cta-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-cta-arrow {
        align-self: flex-end;
    }
}

.footer-links {
    padding: 3rem 0;
}


.footer-columns {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand {
    max-width: 320px;
}

.footer-logo img {
    height: 38px;
    filter: none;
}

.footer-copy {
    color: rgba(32, 42, 56, 0.7);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: grid;
    gap: 0.85rem;
}


.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.93rem;
    color: rgba(32, 42, 56, 0.72);
}

.footer-contact-item div {
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--batoi-primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-item a:hover {
    color: var(--batoi-primary-dark);
}


.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(14, 104, 176, 0.08);
    border: 1px solid rgba(14, 104, 176, 0.18);
    color: rgba(14, 104, 176, 0.75);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-column h6,
.footer-column h6 a {
    font-size: 0.85rem;
    font-weight: 700;
    /* color: rgba(18, 34, 52, 0.86); */
    margin-bottom: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}

.footer-column h6 a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column h6 a:hover {
    color: var(--batoi-primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.88rem;
    line-height: 1.55;
}


.footer-column a {
    color: rgba(32, 42, 56, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-columns .footer-column ul a {
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--batoi-primary);
}

.footer-subheading {
    font-weight: 700;
    color: rgba(18, 34, 52, 0.72);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-meta {
    border-top: 1px solid rgba(14, 36, 56, 0.08);
    padding: 1.5rem 0;
}

.footer-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    color: rgba(32, 42, 56, 0.72);
    font-size: 0.9rem;
}

.footer-meta-text {
    flex: 1 1 240px;
}

.footer-meta-certifications {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-meta-certifications img {
    height: 42px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social a {
    color: rgba(32, 42, 56, 0.65);
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--batoi-primary);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.footer-legal a {
    color: rgba(32, 42, 56, 0.75);
    font-weight: 600;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--batoi-primary);
}

@media (min-width: 1200px) {
    .footer-columns {
        grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(0, 1fr));
        align-items: flex-start;
    }
}

 
@media (max-width: 991.98px) {
    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .footer-columns {
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-copy {
        margin-left: auto;
        margin-right: auto;
        max-width: 28rem;
    }

    .footer-contact {
        justify-items: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
        max-width: 20rem;
    }

    .footer-meta-grid {
        justify-content: center;
        text-align: center;
    }

    .footer-meta-text {
        flex: 1 1 100%;
    }

    .footer-meta-certifications {
        flex: 1 1 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

.navbar-nav .dropdown-menu {
    border-radius: var(--batoi-radius);
    box-shadow: 0 24px 45px rgba(10, 20, 40, 0.16);
    border: 1px solid rgba(14, 104, 176, 0.12);
    padding: 1.5rem 1.75rem;
    min-width: 520px;
}

.dropdown-menu-mega {
    width: auto;
}

.mega-menu-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.navbar-nav .dropdown-item {
    font-weight: 600;
    border-radius: var(--batoi-radius-xs);
    padding: 0.45rem 0.75rem;
    color: var(--batoi-body);
}

.navbar-nav .dropdown-item:hover {
    background: rgba(14, 104, 176, 0.08);
    color: var(--batoi-primary);
}

.mega-menu-title {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--batoi-muted);
    font-weight: 700;
}

.mega-menu-item {
    display: block;
    margin: 0;
    padding: 0.65rem 0.3rem;
    border-radius: var(--batoi-radius-xs);
    text-decoration: none;
    color: var(--batoi-body);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, padding 0.2s ease, margin 0.2s ease;
}

.mega-menu-item:hover {
    background: rgba(14, 104, 176, 0.08);
    color: var(--batoi-primary);
    transform: translateX(2px);
    padding: 0.65rem 0.85rem;
    margin: 0 -0.55rem;
}

.dropdown-menu-allbatoi {
    min-width: 280px;
    padding: 1.25rem 1.5rem;
}

.dropdown-menu-allbatoi .mega-menu-column {
    gap: 0.35rem;
}

.dropdown-menu-allbatoi .mega-menu-item {
    padding: 0.35rem 0;
    transform: none;
}

.dropdown-menu-allbatoi .mega-menu-item:hover {
    padding: 0.35rem 0.6rem;
    margin: 0 -0.6rem;
    transform: none;
}

.dropdown-menu-account {
    min-width: 220px;
}

.dropdown-menu-account .dropdown-item {
    font-weight: 600;
    color: var(--batoi-body);
}

.dropdown-menu-account .dropdown-divider {
    margin: 0.4rem 0;
}

.mega-menu-item-title {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mega-menu-item-copy {
    display: block;
    font-size: 0.85rem;
    color: var(--batoi-muted);
    line-height: 1.5;
}

.mega-menu-divider {
    border-top: 1px solid rgba(14, 104, 176, 0.14);
    margin: 0.75rem 0;
}
@media (max-width: 991.98px) {
    .hero {
        border-radius: var(--batoi-radius-sm);
        box-shadow: 0 20px 45px rgba(17, 38, 66, 0.1);
    }

    .navbar {
        border-radius: 0;
    }

    .navbar .navbar-collapse {
        /* background: #ffffff; */
        padding: 1.5rem 1rem;
    }

    .navbar .navbar-collapse > .navbar-nav {
        margin-left: 0;
    }

    .navbar-nav {
        gap: 0.75rem;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        border-bottom: 0;
        padding: 0.6rem 0;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        background: #ffffff;
        border: 1px solid rgba(14, 104, 176, 0.12);
        box-shadow: none;
        padding: 1.25rem 1rem;
        border-radius: var(--batoi-radius);
    }

    .hero-card {
        margin-top: 2rem;
    }

    .footer-cta-bar {
        padding: 1.75rem 0;
    }

    .footer-cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        gap: 2rem;
    }

    .footer-meta-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

[data-bs-theme="dark"] body {
    background: #0f1724;
    color: #e6edf5;
}

[data-bs-theme="dark"] .section-light {
    background: rgba(16, 24, 38, 0.74);
}

[data-bs-theme="dark"] .feature-card,
[data-bs-theme="dark"] .stat-card,
[data-bs-theme="dark"] .tile-card,
[data-bs-theme="dark"] .contact-card,
[data-bs-theme="dark"] .integration-card,
[data-bs-theme="dark"] .media-card,
[data-bs-theme="dark"] .contact-location {
    background: rgba(21, 32, 46, 0.9);
    border-color: rgba(79, 115, 164, 0.35);
    box-shadow: 0 18px 45px rgba(5, 12, 28, 0.36);
}

[data-bs-theme="dark"] .feature-card::before {
    background: linear-gradient(120deg, rgba(0, 182, 150, 0.25), transparent 70%);
}

[data-bs-theme="dark"] .feature-card:hover {
    border-color: rgba(79, 115, 164, 0.55);
}

[data-bs-theme="dark"] .section-subtitle,
[data-bs-theme="dark"] .stat-copy,
[data-bs-theme="dark"] .feature-card p {
    color: rgba(214, 222, 235, 0.82);
}
.hero-home {
    background: var(--batoi-hero-gradient);
    color: #f7fbff;
    box-shadow: none;
    border: 0;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero-home .hero-content {
    color: #ffffff;
}

.hero-home .hero-title {
    color: #ffffff;
}

.hero-home .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.hero-home .hero-eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 30px rgba(6, 20, 38, 0.18);
}

.hero-home .hero-cta .btn-light {
    background: #ffffff;
    color: #0e68b0 !important;
    border-color: #ffffff;
}

.hero-home .hero-cta .btn-light:hover {
    background: rgba(255, 255, 255, 0.85);
    color: #0b4f88 !important;
}

.hero-home .pill-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.hero-home .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-home .check-list li {
    color: rgba(255, 255, 255, 0.88);
}

.hero-home .check-list li i {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.hero-home .hero-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--batoi-shadow-md);
}

.hero-home .hero-card h5 {
    color: var(--batoi-body);
}

.hero-home .hero-card p {
    color: var(--batoi-muted);
}

.hero-home .hero-card .link-arrow,
.hero-home .hero-card .link-arrow i {
    color: var(--batoi-primary);
}

.hero-home .hero-card .badge-icon {
    background: rgba(14, 104, 176, 0.08);
    border-color: rgba(14, 104, 176, 0.22);
    color: var(--batoi-primary);
}

.hero-home .hero-card .check-list li {
    color: var(--batoi-body);
}

.hero-home .hero-card .check-list li i {
    background: rgba(14, 104, 176, 0.08);
    border-color: rgba(14, 104, 176, 0.3);
    color: var(--batoi-primary);
}

.hero-home + .section-compact,
.hero-home + .section-py,
.hero-home + .section-light {
    margin-top: clamp(2rem, 5vw, 3.5rem);
}
