/* ------------ Fonts ------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ------------ Root ------------ */
:root {
    /*  bootstrap with smooth scroll hack  */
    scroll-behavior: auto !important;

    --color-white-rgb: 255, 255, 255;
    --color-black-rgb: 0, 0, 0;
    --color-white: #fff;
    --color-black: #000;
    --color-primary: #006242;
    --color-secondary: #B18F36;
    --color-darker-primary: #02442F;
    --color-gray: #F2F4F1;

    --bs-text-gray-100: #F9F9F9;
    --bs-text-gray-200: #F1F4F1;
    --bs-text-gray-300: #E3E8E2;
    --bs-text-gray-400: #D3DBD1;
    --bs-text-gray-500: #98A294;
    --bs-text-gray-600: #7D8579;
    --bs-text-gray-700: #4B754F;
    --bs-text-gray-800: #254A2F;
    --bs-text-gray-900: #07370F;

    --color-darkgray: rgba(var(--color-darkgray-rgb), 1);
    --color-lightgray: #e4e4e4;

    --color-border: rgba(var(--color-black-rgb), 0.2);
    --color-border-light: rgba(var(--color-white-rgb), 0.25);
    --color-text: rgba(var(--color-black-rgb), 0.7);
    --color-text-light: rgba(var(--color-white-rgb), 0.7);
    --color-alert-error: #ff213e;
    --color-alert-success: var(--color-primary);

    --bs-scrollbar-color: rgba(var(--color-black-rgb), 0.3);
    --bs-scrollbar-hover-color: #DBDFE9;

    --shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    --box-shadow: 0px 10px 30px 0px rgba(82, 63, 105, 0.05);

    --animation-primary: 0.4s cubic-bezier(.75, 0, .25, 1);
    --animation-thumb: 0.4s cubic-bezier(0.5, 0, .25, 1);
    --animation-smooth: 0.7s cubic-bezier(0.5, 0.5, 0, 1);
    --animation-fast: 0.2s cubic-bezier(0.75, 0, 0.25, 1);

    --section-padding-big: min(10vw, 10em);
    --section-padding: min(8vw, 8em);
    --section-padding-medium: min(6vw, 6em);
    --section-padding-small: min(3.5vw, 3.5em);
    --section-padding-xsmall: min(1.5vw, 1.5em);
    --container-padding: min(4vw, 4em);

    --gap-padding: min(4vw, 4em);
    --title-size: clamp(5em, 7.5vw, 7.5em);
    --border-radius: 8px;
    --border-radius-all: 100px;
    --border-color: rgba(125, 133, 121, 0.2);
    --thumb-border-radius: calc(var(--border-radius)* 0.5);

    --200: "wght" 200;
    --300: "wght" 300;
    --400: "wght" 400;
    --500: "wght" 500;
    --600: "wght" 600;
    --700: "wght" 700;
    --800: "wght" 800;
    --900: "wght" 900;
    --1000: "wght" 1000;

    --sidebar-width: 265px;
    --sidebar-width-collapsed: 80px;
    --header-height: 70px;
}

@media screen and (min-width: 1440px) {}

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

    :root {
        --section-padding-big: 15vw;
        --section-padding: 12vw;
        --section-padding-medium: 9vw;
        --section-padding-small: 6vh;
    }
}

@media screen and (max-width: 720px) {

    :root {
        --section-padding-big: 20vw;
        --section-padding: 16vw;
        --section-padding-medium: 12vw;
        --section-padding-small: 9vw;
    }
}


/* ------------ Body ------------ */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

html {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body {
    font-family: "Inter", Helvetica, sans-serif;
    color: var(--bs-text-gray-900);
    line-height: 1.6;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background-color: var(--color-gray);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Removing background from autofill */
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:focus,
input[type=text]:-webkit-autofill,
input[type=text]:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important
}

blockquote,
blockquote p {
    font-style: italic;
}

/* Selection */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-black);
    text-shadow: none;
}

/* General */
img {
    display: block;
}

canvas,
img,
video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

svg {
    max-width: none;
    height: auto;
    box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

figure {
    margin: 0;
}

.hover-scroll-y {
    overflow-y: scroll;
    position: relative;
    scrollbar-color: transparent transparent;
}


@media (min-width: 992px) {

    div,
    main,
    ol,
    pre,
    span,
    ul {
        scrollbar-width: thin;
        scrollbar-color: var(--bs-scrollbar-color) transparent !important;
    }
}



/* ------------ Typography ------------ */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul,
ol,
span,
strong,
em {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    word-wrap: break-word;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
p:last-child,
p.big:last-child,
p.small:last-child,
a:last-child,
strong:last-child {
    margin-bottom: 0;
}

h1 {
    font-weight: 700;
    font-style: normal;
    font-size: var(--title-size);
    line-height: 0.95;
}

h1.big {
    font-size: calc(var(--title-size) * 0.95);
}

h1.medium {
    font-size: calc(var(--title-size) * 0.8);
}

h1.small {
    font-size: calc(var(--title-size) * 0.53);
}

@media screen and (max-width: 540px) {
    h1.medium {
        font-size: calc(var(--title-size) * 0.55);
    }
}

h2 {
    font-weight: 700;
    font-style: normal;
    font-size: calc(var(--title-size) * 0.475);
    line-height: 0.95;
}

h2.big {
    font-size: calc(var(--title-size) * 0.7);
}

h2.medium {
    font-size: calc(var(--title-size) * 0.6);
}

h2.small {
    font-size: calc(var(--title-size) * 0.3);
}

@media screen and (max-width: 1024px) {
    h2 {
        font-size: calc(var(--title-size) * 0.45);
    }

    h2.medium {
        font-size: calc(var(--title-size) * 0.55);
    }

    h2.big {
        font-size: calc(var(--title-size) * 0.65);
    }

    h2.small {
        font-size: calc(var(--title-size) * 0.45);
    }
}

@media screen and (max-width: 540px) {
    h2 {
        font-size: 8vw;
    }

    h2.medium {
        font-size: 8.5vw;
    }

    h2.big {
        font-size: 10vw;
    }

    h2.small {
        font-size: 5vw;
    }
}

h3 {
    font-style: normal;
    font-size: calc(var(--title-size) * 0.3);
    line-height: 1.3;
    font-weight: 600;
}

h3.big {
    font-size: calc(var(--title-size) * 0.45);
    line-height: 1.2;
}


@media screen and (max-width: 1024px) {
    h3 {
        font-size: calc(var(--title-size) * 0.40);
    }

    h3.big {
        font-size: calc(var(--title-size) * 0.6);
    }
}

@media screen and (max-width: 540px) {
    h3 {
        font-size: 6vw;
    }

    h3.big {
        font-size: 7vw;
    }
}

h4 {
    font-weight: 600;
    font-style: normal;
    font-size: calc(var(--title-size) * 0.25);
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
    h4 {
        font-size: calc(var(--title-size) * 0.35);
    }
}

@media screen and (max-width: 540px) {
    h4 {
        font-size: 6vw;
        font-weight: 500;
    }
}

h5 {
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;
}

span.inactive {
    opacity: .5;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

a {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--animation-primary);
}

a:focus,
a:hover {
    color: var(--color-primary);
}

p a {
    opacity: 1;
    text-decoration: none;
    transition: var(--animation-primary);
    position: relative;
    white-space: nowrap;
}

p span {
    font-weight: inherit;
}

/* Styled Typography */
p,
.styled p {
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    line-height: 1.66;
    color: var(--bs-text-gray-600);
    margin: 0 0 .9375rem;
}
/* 
@media (max-width: 991.98px) {

    p,
    .styled p {
        font-size: 1.25rem;
    }
} */

.styled p:last-of-type {
    margin: 0;
}

.styled p strong {
    font-weight: 700;
}

.styled p,
.styled h3 {
    margin-bottom: 1em;
}

.styled p:last-child,
.styled h3:last-child {
    margin-bottom: 0;
}

.styled.large {
    font-size: 1.5rem;
}

.styled.large p {
    line-height: 1.5;
}

@media screen and (max-width: 540px) {
    .styled.large {
        font-size: 1.1em;
    }
}

@media (min-width: 768px) {
    .styled.large p {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}

.styled.small {
    font-size: 0.875rem;
}

.styled ul,
.styled li {
    color: var(--bs-text-gray-600);
}

.styled *+* {
    margin-top: 1.1em !important;
}

@media (min-width: 768px) {
    .styled *+* {
        margin-top: 0.875em !important;
    }
}

.styled h2,
.styled h3,
.styled h4,
.styled h5,
.styled h6 {
    line-height: 1.1;
    margin-bottom: unset;
}

@media (max-width: 991.98px) {

    .styled h1.big,
    .styled h2.big {
        font-size: calc(var(--title-size)* 0.9);
    }
}

@media (max-width: 575.98px) {

    .styled h1.big,
    .styled h2.big {
        font-size: 8.5vw;
    }
}

.styled h2 :is(strong),
.styled h3 :is(strong),
.styled h4 :is(strong) {
    font-weight: 600;
}

.styled h3 {
    line-height: 1.3;
}

.styled ol,
.styled ul {
    margin: 2rem 0;
    padding: 0;
}

.styled li {
    font-size: 1.125rem;
    line-height: 1.33;
    font-weight: 400;
    margin-left: 1.25rem;
    margin-top: .5em;
    max-width: 62ch;
    list-style: disc;
}

@media (min-width: 768px) {
    .styled li {
        font-size: 1.5rem !important;
        line-height: 1.4;
    }
}

.upper {
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

/* ------------ Main Elements ------------ */

main {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: relative;
}

hr {
    border: 0;
    margin: 3rem 0;
    padding: 0;
    border-bottom: 1px solid rgba(var(--color-black-rgb), 0.5);
}

@media all and (max-width: 1100px) and (orientation:portrait) {
    hr {
        margin: 8vw 0
    }
}

.wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.app-page {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

/* Section */
.section {
    display: block;
    padding-top: var(--section-padding-medium);
    padding-bottom: var(--section-padding-medium);
    position: relative;
    z-index: 3;
}

.section.is-small {
    padding-top: var(--section-padding-small);
    padding-bottom: var(--section-padding-small);
}

.section-title {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 1rem;
}

.section.no-padding {
    padding-top: unset;
    padding-bottom: unset;
}

/* Table Styles */
.table {
    --bs-table-border-color: var(--border-color);
    --bs-table-striped-bg: var(--bs-text-gray-100);
    color: var(--bs-text-gray-900);
}

.table>:not(caption)>*>* {
    color: var(--color-black);
}

.dataTables_length,
.dataTables_wrapper {
    font-size: 1rem;
}

.dataTables_length select,
.dataTables_wrapper select,
.dataTables_length input,
.dataTables_wrapper input {
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: .5rem;
    line-height: 1.4;
    font-size: 1rem;
    color: var(--bs-text-gray-900);
}

.dataTables_wrapper input[type="search"]{
    margin-left: .5rem;
}

.dataTables_length .dataTables_length,
.dataTables_wrapper .dataTables_length,
.dataTables_length .dataTables_filter,
.dataTables_wrapper .dataTables_filter {
    margin-top: 0;
    margin-right: 1.25rem;
    margin-bottom: 0.625rem;
    display: inline-flex;
}

table.dataTable thead {
    cursor: pointer;
}

table.dataTable thead .sorting_asc:after {
    content: "\f884";
    font-family: "Font Awesome 5 Free";
    margin-left: .5rem;
    color: var(--bs-text-gray-900);
}

table.dataTable thead .sorting_desc:after {
    content: "\f160";
    font-family: "Font Awesome 5 Free";
    margin-left: .5rem;
    color: var(--bs-text-gray-900);
}

table.dataTable thead .sorting:after {
    display: inline-block;
    opacity: 0.2;
    content: "\f0ec";
    font-family: "Font Awesome 5 Free";
    margin-left: .5rem;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: var(--bs-text-gray-900);
}

.paginate_button {
    min-width: 4rem;
    display: inline-block;
    text-align: center;
    padding: .5rem 1rem;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.paginate_button:not(.previous) {
    border-left: none;
}

.paginate_button.previous {
    border-radius: 8px 0 0 8px;
    min-width: 6rem;
}

.paginate_button.next {
    border-radius: 0 8px 8px 0;
    min-width: 6rem;
}

.paginate_button:hover {
    cursor: pointer;
    background-color: var(--bs-text-gray-200);
    text-decoration: none;
}

/* Forms */
.form-label {
    
}

form p {
    padding-top: calc(.375rem + var(--bs-border-width));
    padding-bottom: calc(.375rem + var(--bs-border-width));
    margin-bottom: 0;
    line-height: 1.5;
}

.form-control {
    color: var(--color-black);
    background-color: var(--color-white);
    border: var(--bs-border-width) solid var(--border-color);
    border-radius: var(--bs-border-radius);
}

.form-control:focus {
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: var(--color-darker-primary);
    outline: 0;
    box-shadow: none;
}

.form-control.field-empty,
.form-select.field-empty {
    border-left: 3px solid #e0a83c;      /* soft amber accent, not error-red */
    background-color: #f7ebbc;            /* faint warm tint */
}

.form-control.field-empty:focus,
.form-select.field-empty:focus {
    background-color: var(--color-white); /* clean while actively typing */
}

.col-md-6.lc-upload-empty {
    border-left: 3px solid #e0a83c;   /* same soft amber accent as required fields */
    background-color: #f7ebbc;        /* same faint warm tint */
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
    border-radius: 0 4px 4px 0;
}

.form-select:focus {
    border-color: var(--color-darker-primary);
    background-color: var(--color-white);
    color: var(--color-black);
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--bs-text-gray-900);
}

.form-check-input:focus {
    border-color: var(--color-darker-primary);
    outline: 0;
    box-shadow: none;
}

.group-buttons {
    border-top: 1px solid var(--border-color);
    margin-left: -3rem;
    margin-right: -3rem;
    display: block;
    width: calc(100% + 6rem);
    padding: 2rem 0 0 0;
    margin-top: 2.5rem;
}

.group-buttons .buttons {
    padding: 0 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
}

.btn {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 1rem;
    --bs-btn-font-weight: 600;
    --bs-btn-line-height: 1;
    transition: var(--animation-smooth);
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-darker-primary);
    --bs-btn-hover-border-color: var(--color-darker-primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-darker-primary);
    --bs-btn-active-border-color: var(--color-darker-primary);
    --bs-btn-disabled-bg: var(--color-primary);
    --bs-btn-disabled-border-color: var(--color-primary);
}

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

.btn-light {
    --bs-btn-color: var(--bs-text-gray-600);
    --bs-btn-bg: var(--bs-text-gray-200);
    --bs-btn-border-color: var(--bs-text-gray-200);
    --bs-btn-hover-color: var(--bs-text-gray-900);
    --bs-btn-hover-bg: var(--bs-text-gray-300);
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: var(--bs-text-gray-900);
    --bs-btn-active-bg: var(--border-color);
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-text-gray-900);
    --bs-btn-disabled-bg: var(--bs-text-gray-200);
    --bs-btn-disabled-border-color: var(--bs-text-gray-200);
}

.btn-outline-secondary {
    --bs-btn-color: var(--bs-text-gray-600);
    --bs-btn-border-color: var(--bs-text-gray-600);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-text-gray-600);
    --bs-btn-hover-border-color: var(--bs-text-gray-600);
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-text-gray-600);
    --bs-btn-active-border-color: var(--bs-text-gray-600);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-text-gray-600);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-text-gray-600);
    --bs-gradient: none;
}

/* ------------ Helpers ------------ */
.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-black-rgb), 0.1);
}

.overlay.darker {
    background-color: rgba(var(--color-black-rgb), 0.7);
}

.overlay.is-black {
    background-color: rgba(var(--color-black-rgb), 0.3);
}

.overlay.is-white {
    background-color: rgba(var(--color-white-rgb), 0.3);
}

.is-radius-medium {
    border-radius: var(--border-radius-medium);
}

.word-middle {
    text-align: center;
}

.word-right {
    text-align: right;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.padding-top {
    padding-top: var(--section-padding);
}

.padding-top.big {
    padding-top: var(--section-padding-big);
}

.padding-top.medium {
    padding-top: var(--section-padding-medium);
}

.padding-top.small {
    padding-top: var(--section-padding-small);
}

.padding-bottom {
    padding-bottom: var(--section-padding);
}

.padding-bottom.big {
    padding-bottom: var(--section-padding-big);
}

.padding-bottom.medium {
    padding-bottom: var(--section-padding-medium);
}

.padding-bottom.small {
    padding-bottom: var(--section-padding-small);
}

.padding-bottom.xsmall {
    padding-bottom: var(--section-padding-xsmall);
}

.padding-left {
    padding-left: var(--section-padding);
}

.padding-left.big {
    padding-left: var(--section-padding-big);
}

.padding-left.medium {
    padding-left: var(--section-padding-medium);
}

.padding-left.small {
    padding-left: var(--section-padding-small);
}

.padding-right {
    padding-right: var(--section-padding);
}

.padding-right.big {
    padding-right: var(--section-padding-big);
}

.padding-right.medium {
    padding-right: var(--section-padding-medium);
}

.padding-right.small {
    padding-right: var(--section-padding-small);
}

.margin-bottom {
    margin-bottom: var(--section-padding);
}

.no-margin {
    margin: 0 !important;
}

@media screen and (min-width: 993px) {
    .is-mobile {
        display: none;
    }

    .is-desktop {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .is-mobile {
        display: block;
    }

    .is-desktop {
        display: none;
    }
}

.border-right {
    border-right: 1px solid var(--border-color);
}

.has-underline {
    text-decoration: underline !important;
}

/* ------------ Buttons ------------ */
/* secondary */
.btn-secondary {
    background-color: var(--color-secondary);
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    box-shadow: none;
    opacity: 0.8;
}

/* button view */
.btn-view {
    background-color: var(--bs-text-gray-200);
    border-radius: var(--border-radius);
    padding: .5rem;
    font-weight: 700;
}

/* toggle menu */
.toggle-menu {
    background-color: var(--bs-text-gray-200);
    padding: .5rem;
    color: var(--bs-text-gray-600);
    border: 0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid var(--bs-text-gray-600);
}

.toggle-menu i {
    margin-left: .5rem;
}

/* button small */
.btn-small {
    background-color: var(--bs-text-gray-200);
    padding: .5rem 1rem;
    color: var(--bs-text-gray-900);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: 0;
}

.btn-small i {
    font-size: 0.875rem;
    margin-left: .5rem;
}

.btn-small.dark {
    background-color: var(--bs-text-gray-400);
}

/* ------------ Icons ------------ */
.icon {
    background-color: var(--bs-text-gray-200);
    padding: .5rem;
    color: var(--bs-text-gray-600);
    width: 2rem;
    height: 2rem;
    border-radius: var(--border-radius-all);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
}

.icon i {
    /* font-size: 0.875rem; */
    font-size: 1rem;
}

/* ------------ Sidebar ------------ */
.nav-wrapper {
    margin: 1.5rem .75rem;
}

.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--color-darker-primary);
    transition: all 0.3s ease;
    padding: 2.5rem 0;
    position: fixed;
    z-index: 105;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    flex-direction: column;
}

.app-sidebar {
    transition: width .3s ease;
}

@media (max-width: 991.98px) {
    .app-sidebar {
        display: none;
        width: var(--sidebar-width);
        z-index: 106;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        transition: width .3s ease;
    }
}

@keyframes animation-drawer-fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.app-sidebar.is-mobile {
    left: 0;
    transform: translateX(-100%);
    display: flex !important;
    overflow: auto;
    z-index: 110;
    position: fixed;
    top: 0;
    bottom: 0;
}

.app-sidebar.is-mobile.closing {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out !important;
}

.app-sidebar.is-mobile.opened {
    transform: none;
    box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease-in-out !important;
}

.app-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 109;
    background-color: rgba(var(--color-black-rgb), 0.2);
    animation: animation-drawer-fade-in .3s ease-in-out 1;
    visibility: hidden;
}

.sidebar .menu-link {
    color: rgba(var(--color-white-rgb), 0.7);
    transition: all 0.2s ease;
    border-radius: var(--border-radius);
    margin: 0.25rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
    padding: 0.625rem;
    display: flex;
    flex-wrap: wrap;
    box-shadow: none;
    width: auto;
    cursor: pointer;
    background: none;
    font-size: 1rem;
}

.sidebar .menu-link:hover {
    color: var(--color-white);
    background: rgba(var(--color-white-rgb), 0.1);
    /* transform: translateX(5px); */
}

.sidebar .menu-link.active {
    color: var(--color-white);
    background: rgba(var(--color-white-rgb), 0.1);
}

.sidebar p {
    color: var(--color-white);
    font-weight: 700;
    margin: 1.25rem 1rem 0;
    padding: 0.625rem;
    font-size: 1rem;
}

.accordion-button::after {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    content: '\f078';
    background-image: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: rgba(var(--color-white-rgb), 0.7);
    justify-content: center;
    align-items: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform-origin: center center;
}

.sidebar .menu-sub {
    flex-direction: column;
    margin-left: 1rem;
}

.menu-sub .menu-item {
    display: block;
}

.menu-sub .menu-item .menu-link {
    transition: color .2s ease;
    padding: .15rem 0.5rem;
    background-color: transparent;
    transform: none;
}

.sidebar .logo {
    background: var(--color-white);
    border-radius: var(--border-radius);
    margin: 0 1.75rem 1.5rem 1.75rem;
    padding: 2rem;
    height: 140px;
}

.sidebar .logo  img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.sidebar .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .footer {
    border-top: 1px solid rgba(var(--color-white-rgb), 0.1);
}

.btn-support {
    background-color: rgba(var(--color-black-rgb), 0.2);
    color: var(--color-white);
}

.btn-support:hover,
.btn-support:focus {
    background-color: rgba(var(--color-black-rgb), 0.3);
    color: var(--color-white);
}

/* ------------ Header ------------ */
header {
    background-color: var(--color-white);
    height: var(--header-height);
    box-shadow: var(--box-shadow);
    z-index: 100;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    header {
        left: var(--sidebar-width);
    }
}

header .header-wrapper {
    /* padding-left: 2rem;
    padding-right: 2rem; */
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
}

.user-icon {
    background-color: var(--bs-text-gray-200);
    padding: .5rem;
    color: var(--bs-text-gray-600);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--border-radius-all);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-icon i {
    font-size: 0.875rem;
}

/* ------------ Footer ------------ */
footer {
    background-color: var(--color-white);
    height: 60px;
    transition: left .3s ease, right .3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

@media (min-width: 992px) {
    footer {
        left: var(--sidebar-width);
    }
}

/* ------------ Main Content ------------ */
.main-wrapper {
    display: flex;
    flex: 1 auto;
    min-width: 0;
    margin-top: var(--header-height);
}

@media (min-width: 992px) {
    .main-wrapper  {
        transition: margin-left .3s ease, margin-right .3s ease;
        margin-left: var(--sidebar-width);
    }
}

/* @media (min-width: 992px) {
    .main-wrapper {
        transition: margin .3s ease;
    }
} */

.main-content {
    margin-left: 0;
    flex: 1 auto;
    min-width: 0;
}

@media (min-width: 992px) {
    .main-content {
        transition: margin .3s ease;
    }
}

.main-container {
    padding: 0 1.5rem;
    width: 100%;
}

/* ------------ Titles ------------ */
.main-title {
    border-bottom: 1px solid var(--border-color);
    margin-left: -2rem;
    margin-right: -2rem;
    display: block;
    width: calc(100% + 4rem);
    padding: 0 0 2rem 0;
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .main-title{
        margin-left: -3rem;
        margin-right: -3rem;
        width: calc(100% + 6rem);
    }
}

.main-title h2 {
    padding: 0 3rem;
}

.has-btns {
    display: flex;
    justify-content: space-between;
}

.has-btns .button-group {
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
}

.subtitle.has-btns .button-group {
    padding: 0;
}

.subtitle {
    padding: 0 0 2rem 0;
}

/* ------------ Box ------------ */
.box {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

@media (min-width: 992px) {
    .box {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    /* Tighter card padding on phones and small tablets */
    .box {
        padding: 1rem;
    }
    /* Keep the title's full-bleed border aligned with the reduced padding */
    .main-title {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    /* Reduce outer gutter + vertical space */
    .main-container {
        padding: 0 0.75rem;
    }
    .main-container.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

.box-row {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .box-row > div:first-of-type{
        border-right: 1px solid var(--border-color);
    }
    .box-row > div:last-of-type{
        padding: 0 0 0 1.5rem;
    }
}
.box-row > div:first-of-type{
    padding: 0 1.5rem 0 0;
}
/* ------------ Stats with columns ------------ */
.cols-stats {
    display: flex;
    flex-wrap: wrap;
}

.cols-stats .stat-item {
    aspect-ratio: 3/2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

/* ------------ List ------------ */
/* list side by side */
.list.is-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: .5rem 0;
    margin: .5rem 0;
}

.list.is-col .list-item {
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
}

.list.is-col .list-item span {
    font-weight: 700;
}

/* list under each other */
.list.is-row {
}

.list.is-row .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.list.is-row .list-item:last-of-type {
    border-bottom: 0;
}

/* ------------ Company ------------ */
.company-header {
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

.company-header .logo {
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    padding: 1.5rem;
    width: 240px;
    height: 140px;
}

.company-header .logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.company-name.has-btns .button-group {
    padding: 2rem 0 0 0;
}
@media (min-width: 992px) {

    .company-name.has-btns {
        display: flex;
        justify-content: space-between;
    }

    .company-name.has-btns .button-group {
        padding: 0 3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 2.5rem;
    }
}

.company-name.has-btns .btn-small {
    background-color: var(--bs-text-gray-400);
}

/* ------------ Menu tabs ------------ */
.menu-tabs {
    padding: 0 1.5rem;
}

.menu-tabs ul {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    width: fit-content;
}

.menu-tabs ul li a {
    color: var(--bs-text-gray-900);
    font-weight: 700;
    font-variation-settings: var(--700);
    font-size: 1rem;
    border-radius: var(--border-radius) !important;
    padding: .5rem !important;
}

.menu-tabs ul li a:hover,
.menu-tabs ul li a.active {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* ------------ Claim ------------ */
.claim .claim-info h5 {
    margin-bottom: 0.875em;
}

@media (min-width: 992px) {

    .claim .col-12 {
        padding-right: 3rem;
    }

    .claim .col-12:last-of-type {
        padding-right: 0;
        padding-left: 3rem;
    }
}

.claim .claim-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    /* justify-content: space-between; */
    padding-right: 2rem;
    margin: 0 0 3rem 0;
}

.claim .claim-list .data {
    width: 30%;
}

.claim .list {
    color: var(--bs-text-gray-600);
    margin-top: 1rem;
}

.claim .list li {
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.claim .list li:first-of-type {
    border-top: 0;
}

/* ------------ Modal override ------------ */
.modal {
    --bs-modal-width: 1024px;
}
.modal-header {
    justify-content: space-between;
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--bs-text-gray-900);
}

.modal-footer {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    border-top: 1px solid var(--border-color);
}

.modal-body {
    padding: 2.5rem;
}

/* ------------ Benefits dashboard ------------ */
.benefits-row {
    display: flex;
    flex-wrap: wrap;
}

/* ------------ Steps ------------ */
.main-title.has-steps {
    display: flex;
    justify-content: space-between;
}

.main-title.has-steps .steps {
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
}

.main-title.has-steps .steps .step {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    position: relative; 
    display: flex; 
    align-items: center;
}

.main-title.has-steps .step::after {
    content: ""; 
    flex-grow: 1;
    height: 1px; 
    background-color: rgba(var(--color-black-rgb), 0.3); 
    margin-left: 0.5rem;
    display: block;
    width: 3rem;
}

.main-title.has-steps .step.active {
    font-weight: 700;
}

/* ------------ Tooltip ------------ */
[data-bs-toggle="tooltip"] {
    cursor: help;
    color: var(--color-white);
    background-color: var(--bs-text-gray-900);
    width: 1rem;
    height: 1rem;
    display: inline-block;
    border-radius: 100px;
    font-size: 12px;
    text-align: center;
    vertical-align: super;
    font-weight: 800;
}

[data-bs-toggle="tooltip"]:hover {
    color: var(--color-white);
    background-color: var(--bs-text-gray-600);
}

/* ------------ Enrollment ------------ */
.enrollment-container
	{
		height: 90vh;
		background-color: #ffffff;
	}
		
	.enrollment-function-col
	{
		background: var(--color-primary);
		color: #ffffff;
	}

	.enrollment-col
	{
		    height: 90vh;
			min-height: 500px;
		padding-top: 50px;
			
	}
	
	.enrollment-box
	{
	color: #000000;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    margin-left: 10px;
	margin-right: 10px;
	}
	
	.login-branding-col
	{
		background-size: cover;
	}
	
	
	


/* ------------ Login ------------ */
.login-container
	{
		height: 90vh;
		background-color: #ffffff;
	}
		
	.login-function-col
	{
		background: var(--color-primary);
		color: #ffffff;
	}
	
	.login-box
	{
	color: #000000;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    margin-left: 10%;
    width: 80%;
	}
	
	.login-branding-col
	{
		background-size: cover;
	}
	
	.login-row{
		
	}
	
	.login-col
	{
		    height: 90vh;
			min-height: 500px;
			display: flex;
			flex-direction: column;
			justify-content: center;
	}

/* ------------ Claim line items (mobile responsive) ------------ */
@media (max-width: 767px) {
    .row.claimline-row {
        --bs-gutter-x: 0;
        display: flex !important;
        flex-wrap: wrap !important;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 1rem;
        margin-bottom: 1rem;
        background: var(--color-white);
        box-shadow: var(--box-shadow);
    }
    .row.claimline-row > [data-label] {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0.75rem;
    }
    .row.claimline-row > [data-label]::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        font-size: 0.8rem;
        margin-bottom: 3px;
        color: var(--bs-text-gray-600);
    }
    .row.claimline-row > .col-delete {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: right;
        margin-top: 0.25rem;
    }
}