:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #2C65D6;
    --bs-secondary: #5C5B67;
    --bs-success: #21A64D;
    --bs-info: #3AA5D7;
    --bs-warning: #F5A623;
    --bs-danger: #A91E2F;
    --bs-light: #eeeeee;
    --bs-dark: #333333;
    --bs-primary-rgb: 44, 101, 214;
    --bs-secondary-rgb: 92, 91, 103;
    --bs-success-rgb: 33, 166, 77;
    --bs-info-rgb: 58, 165, 215;
    --bs-warning-rgb: 245, 166, 35;
    --bs-danger-rgb: 169, 30, 47;
    --bs-light-rgb: 238, 238, 238;
    --bs-dark-rgb: 51, 51, 51;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #2C65D6;
    --bs-link-hover-color: #2351ab;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

.row {
    --bs-gutter-x: 0.7rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333333%;
    }
    .offset-sm-2 {
        margin-left: 16.66666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333333%;
    }
    .offset-sm-5 {
        margin-left: 41.66666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333333%;
    }
    .offset-sm-8 {
        margin-left: 66.66666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333333%;
    }
    .offset-sm-11 {
        margin-left: 91.66666667%;
    }
    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }
    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }
    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }
    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }
    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }
    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }
    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333333%;
    }
    .offset-md-2 {
        margin-left: 16.66666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333333%;
    }
    .offset-md-5 {
        margin-left: 41.66666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333333%;
    }
    .offset-md-8 {
        margin-left: 66.66666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333333%;
    }
    .offset-md-11 {
        margin-left: 91.66666667%;
    }
    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }
    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }
    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }
    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }
    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }
    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }
    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333333%;
    }
    .offset-lg-2 {
        margin-left: 16.66666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333333%;
    }
    .offset-lg-5 {
        margin-left: 41.66666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333333%;
    }
    .offset-lg-8 {
        margin-left: 66.66666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333333%;
    }
    .offset-lg-11 {
        margin-left: 91.66666667%;
    }
    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }
    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }
    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }
    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }
    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }
    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }
    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xl-11 {
        margin-left: 91.66666667%;
    }
    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }
    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }
    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }
    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }
    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }
    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}
@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }
    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }
    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }
    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }
    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }
    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }
    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }
    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }
    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }
    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }
    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }
    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }
    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }
    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(44, 101, 214, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(92, 91, 103, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
    color: #000 !important;
    background-color: RGBA(33, 166, 77, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
    color: #000 !important;
    background-color: RGBA(58, 165, 215, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
    color: #000 !important;
    background-color: RGBA(245, 166, 35, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(169, 30, 47, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(238, 238, 238, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(51, 51, 51, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
    color: #2C65D6 !important;
}
.link-primary:hover, .link-primary:focus {
    color: #2351ab !important;
}

.link-secondary {
    color: #5C5B67 !important;
}
.link-secondary:hover, .link-secondary:focus {
    color: #4a4952 !important;
}

.link-success {
    color: #21A64D !important;
}
.link-success:hover, .link-success:focus {
    color: #4db871 !important;
}

.link-info {
    color: #3AA5D7 !important;
}
.link-info:hover, .link-info:focus {
    color: #61b7df !important;
}

.link-warning {
    color: #F5A623 !important;
}
.link-warning:hover, .link-warning:focus {
    color: #f7b84f !important;
}

.link-danger {
    color: #A91E2F !important;
}
.link-danger:hover, .link-danger:focus {
    color: #871826 !important;
}

.link-light {
    color: #eeeeee !important;
}
.link-light:hover, .link-light:focus {
    color: #f1f1f1 !important;
}

.link-dark {
    color: #333333 !important;
}
.link-dark:hover, .link-dark:focus {
    color: #292929 !important;
}

.ratio {
    position: relative;
    width: 100%;
}
.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}
.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    .sticky-sm-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}
@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}
@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    .sticky-lg-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}
@media (min-width: 1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    .sticky-xl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}
@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    .sticky-xxl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}
.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
}

.h6,
h6 {
    font-size: 0.75rem;
    font-weight: 700;
}

.h5,
h5 {
    font-size: 0.9rem;
    font-weight: 700;
}

.h4,
h4 {
    font-size: 1.05rem;
}

.h3,
h3 {
    font-size: 1.3rem;
}

.h2,
h2 {
    font-size: 1.45rem;
}

.h1,
h1 {
    font-size: 1.6rem;
}

:root {
    --bs-primary: #2C65D6;
    --bs-secondary: #6c757d;
    --bs-success: #3BB633;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: rgb(44, 101, 214);
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 58, 182, 51;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-body-color: #111;
    --bs-body-bg: #f6f6f6;
    --bs-body-color-rgb: rgb(17, 17, 17);
    --bs-body-bg-rgb: rgb(238, 238, 238);
    --bs-body-font-family: "Lato", sans-serif;
    --bs-body-font-size: .85rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.25;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #2C65D6;
    --bs-link-hover-color: #000;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

@media (min-width: 1160px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 3rem;
        --bs-gutter-y: 0;
    }
}
@media (min-width: 1600px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 5rem;
        --bs-gutter-y: 0;
    }
}
.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-hover-color: rgba(0, 0, 0, 1);
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 1);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 0.6rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.4);
    --bs-navbar-toggler-border-radius: 0.25rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    background-color: #fff;
    box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.nav-featured {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.4rem 1rem;
    margin-left: 0.6rem;
    border-radius: 0.375rem;
    text-decoration: none;
    color: #111;
    display: flex !important;
    align-items: center;
}

.nav-featured:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0rem;
    --bs-dropdown-padding-y: .75rem;
    --bs-dropdown-spacer: .3rem;
    --bs-dropdown-font-size: .9rem;
    --bs-dropdown-color: #212529;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: #eee;
    --bs-dropdown-border-radius: 0px;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.6rem;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-dropdown-link-color: #111;
    --bs-dropdown-link-hover-color: #111;
    --bs-dropdown-link-hover-bg: #eee;
    --bs-dropdown-link-active-color: #111;
    --bs-dropdown-link-active-bg: #eee;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.6rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 0rem;
    --bs-breadcrumb-bg: transparent;
    --bs-breadcrumb-border-radius: 0;
    --bs-breadcrumb-divider-color: #6c757d;
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: #888;
    margin-bottom: 0.1rem;
    margin-left: 3px;
    font-size: 0.8rem;
    line-height: 1;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.3rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.2;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.3rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-primary {
    --bs-btn-color: $primary;
    --bs-btn-border-color: $primary;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d6efd;
    --bs-btn-active-border-color: #0d6efd;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
    color: #2C65D6;
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group label, .btn-group-vertical label {
    border: 1px solid #2C65D6;
}

.btn-group-sm > .btn,
.btn-sm {
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.2rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: $primary;
    --bs-btn-border-color: $primary;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
    background-color: #2C65D6;
}

/*
.btn-light {
    --bs-btn-color: $primary;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: $primary;
    --bs-btn-hover-border-color: $primary;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f8f9fa;
    --bs-btn-disabled-border-color: #f8f9fa;
}
*/
.btn-outline-primary {
    --bs-btn-color: $primary;
    --bs-btn-border-color: $primary;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d6efd;
    --bs-btn-active-border-color: #0d6efd;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
}

.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-border-width: 0px;
    --bs-card-border-color: #eee;
    --bs-card-border-radius: 6px;
    --bs-card-box-shadow: transparent;
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
}

.text-bg-light {
    background-color: rgba(0, 0, 0, 0.06) !important;
}

.card ul {
    list-style-type: none;
}

.card .card-header {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.8rem 0.8rem 0.6rem;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.card .card-footer {
    background-color: #fff;
}

.calendarCards .card {
    width: 100%;
    margin: 3% 0;
}

.calendarCards .card-body {
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
}

@media (min-width: 768px) {
    .calendarCards .card {
        width: 48%;
        margin: 2% 1%;
    }
}
@media (min-width: 992px) {
    .calendarCards .card {
        width: 23%;
        margin: 1%;
    }
}
@media (min-width: 1160px) {
    .calendarCards .card {
        width: 19%;
        margin: 0.8% 0.5%;
    }
}
@media (min-width: 1600px) {
    .calendarCards .card {
        width: 13.3%;
        margin: 0.7% 0.49%;
    }
}
ul.basic-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #ddd;
}

ul.basic-list li:last-child {
    border-bottom-width: 0px;
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
    margin: 0;
    padding: 0;
}

.accordion {
    --bs-accordion-color: #212529;
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.5rem;
    --bs-accordion-btn-padding-x: 1rem;
    --bs-accordion-btn-padding-y: 0.8rem;
    --bs-accordion-btn-color: #212529;
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1rem;
    --bs-accordion-body-padding-y: 0.8rem;
    --bs-accordion-active-color: #333;
    --bs-accordion-active-bg: transparent;
}

.table {
    font-size: 0.75rem;
}

.table > thead {
    background-color: #f5f5f5;
}

.table > thead th,
.table > thead td {
    border-width: 0px;
}

.table > tfoot {
    background-color: #f5f5f5;
    border-bottom-width: 0px;
}

.table > tfoot th,
.table > tfoot td {
    border-width: 0px;
}

.table > tbody tr:last-child th,
.table > tbody tr:last-child td {
    border-width: 0px;
}

.table h1,
.table h2,
.table h3,
.table h4,
.table h5,
.table h6 {
    margin: 0;
    padding: 0;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: 0;
    outline: 0;
}

.nav-tabs {
    --bs-nav-tabs-border-width: 0px;
    --bs-nav-tabs-border-color: #ffffff;
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color: #495057;
    --bs-nav-tabs-link-active-bg: #fff;
    --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
    background-color: #666666;
}

.nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    background: 0 0;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius);
    color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #F35E22;
    border-color: #ffffff;
}

.tab-content {
    padding: 15px 2px;
}

.form-label {
    margin-bottom: 0.15rem;
    font-weight: 700;
    font-size: 0.75rem;
}

.form-control,
.form-select,
.form-input {
    display: block;
    width: 100%;
    padding: 0.475rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.3rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

a {
    text-decoration: none;
}

/*
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
    height: calc(2.6rem + 2px);
    line-height: 1;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: .6rem 0.75rem;
}

.form-floating > .form-select {
    padding: 1rem 0.75rem .5rem;
}

.form-floating > label {
    position: absolute;
    padding: .8rem 0.75rem;
}

.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
}
*/
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
    height: calc(2.4rem + 2px);
    line-height: 1;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: 0.4rem 0.75rem;
}

.form-floating > .form-select {
    padding: 0.9rem 0.75rem 0.3rem;
}

.form-floating > label {
    position: absolute;
    padding: 0.8rem 0.75rem 0.5rem;
    font-size: 0.8rem;
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 0.9rem;
    padding-bottom: 0.2rem;
}

.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 0.9rem;
    padding-bottom: 0.2rem;
}

.form-floating .form-control,
.form-floating .form-select,
.form-floating .form-input {
    font-size: 0.85rem;
}

.page-header {
    margin: 0.8rem 0 0.8rem;
}
.page-header h1 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.1rem;
    padding: 0;
    display: flex;
}
.page-header .btn-primary,
.page-header .btn-secondary,
.page-header .btn-success,
.page-header .btn-danger,
.page-header .btn-warning,
.page-header .btn-info,
.page-header .btn-light,
.page-header .btn-dark,
.page-header .btn-link {
    margin: 0.2rem 0 0.2rem 0.35rem !important;
    color: #fff;
    font-size: 0.85rem;
    border: 0;
}
.page-header .btn-primary {
    background-color: #2C65D6;
}
.page-header .btn-primary:hover {
    background-color: #333;
}
.page-header .btn-primary.disabled, .page-header .btn-primary:disabled {
    opacity: 0.4;
}
.page-header .btn-light {
    background-color: #fff;
    color: #2C65D6;
}
.page-header .btn-light:hover {
    background-color: #2C65D6;
    color: #fff;
}
.page-header .btn-light.disabled, .page-header .btn-light:disabled {
    background-color: #fff;
    color: #aaa;
}
.page-header .badge {
    display: inline-block;
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    color: #333;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4px;
    background-color: #ddd;
    border: 0px solid rgba(0, 0, 0, 0.4);
    margin: 0 0 0.2rem 0.2rem !important;
}
.page-header .text-bg-secondary {
    background-color: #666 !important;
}
.page-header .text-bg-light {
    background-color: #ddd !important;
}

.page-header > div {
    padding: 0 !important;
}

.form-field {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
    align-self: flex-end;
}

.form-field > label {
    font-size: 0.9em;
    font-weight: 700;
}

.card-form .card-header {
    font-weight: 900;
    border-width: 0px;
    padding-bottom: 0px;
    padding-top: 0.8rem;
    font-size: 1.1rem;
}
.card-form .card-body {
    padding-top: 0.2rem;
}

.card-table .card-header {
    font-weight: 900;
    border-width: 0px;
    padding-bottom: 0px;
    padding-top: 0.8rem;
    font-size: 1.1rem;
}
.card-table .card-body {
    padding: 0.5rem;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#dropFiles {
    border-radius: 8px;
    border: 1px dashed #aaa !important;
    background-color: rgba(0, 0, 0, 0.06) !important;
}

#dropFilesTitle * {
    font-size: 1.2rem !important;
    color: #2C65D6;
}

.badge.text-bg-info, .badge.text-bg-success {
    color: #fff !important;
}

.small, small {
    font-size: 0.875em;
    font-weight: 400;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.3rem;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 31px;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.3rem;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 31px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0.375rem;
    padding-right: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8rem;
    padding-top: 3px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    padding: 0.1em 0.5em;
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    font-size: 0.7rem;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
    width: 0.5rem;
    height: 0.5rem;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    font-size: 0.8rem;
}

.select2-container--bootstrap-5 .select2-selection {
    padding: 0.3rem 0.3rem;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field {
    font-size: 0.8rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    font-size: 0.8rem;
}

.link-system-out {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.7rem 0.9rem;
    border-radius: 0.375rem;
}

.ui-jqgrid {
    background-color: #fff;
    border-radius: 6px;
    border: 10px solid #fff;
    box-sizing: content-box;
}

.ui-jqgrid .ui-jqgrid-view {
    padding: 0px;
}

.ui-jqgrid-hbox .ui-jqgrid-labels {
    border-width: 0;
}

.ui-th-column,
.ui-jqgrid .ui-jqgrid-htable .ui-jqgrid-labels th.ui-th-column {
    white-space: normal;
    text-align: left;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0.7rem 0.9rem 0.4rem;
    background-color: #f5f5f5 !important;
    margin: 10px;
}

.ui-jqgrid-hbox .ui-search-toolbar {
    border-width: 0;
}

.ui-jqgrid tr.ui-row-ltr td {
    height: auto;
}

.ui-jqgrid .table-bordered th.ui-th-ltr {
    border-left: 0px none !important;
    border: 0px !important;
    padding: 0rem 0.9rem;
}

.ui-jqgrid .table-bordered td {
    border-left: 0px none !important;
    border: 0px !important;
    padding: 0.6rem 0.9rem;
}

.jqgrid-rownum {
    background-color: transparent;
}

.ui-jqgrid tr.jqgrow td {
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1.1;
}

.ui-jqgrid-bdiv .table-bordered > :not(caption) > * {
    border-width: 0;
}

.ui-jqgrid tr.ui-row-ltr {
    border-bottom: 1px solid #eee;
    background-color: transparent !important;
}

td.jqgrid-rownum,
td.jqgrid-rownum.active {
    background-color: transparent !important;
}

.ui-jqgrid .ui-jqgrid-pager,
.ui-jqgrid .ui-jqgrid-toppager {
    background-color: transparent;
    padding: 5px 5px 0;
    border-top-width: 0px;
}

.ui-jqgrid .ui-jqgrid-pager .ui-pager-control {
    background-color: #fff;
}

.ui-pg-table.ui-common-table.ui-pager-table {
    font-size: 0.75rem;
    margin: 0.25rem;
}

.ui-jqgrid .ui-pg-input,
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-input {
    padding: 2px 0px 2px 5px;
    background-color: transparent;
}

#input_tableProdutoRodape {
    margin-top: 3px;
    background-color: transparent;
}

.ui-jqgrid .ui-jqgrid-pager .ui-paging-info,
.ui-jqgrid .ui-jqgrid-toppager .ui-paging-info {
    margin-right: 14px;
}

.ui-jqdialog.modal-content {
    display: none;
    width: 500px;
    position: absolute;
    overflow: visible;
}

table.dataTable {
    background-color: #fff;
    border-radius: 6px;
    border: 10px solid #fff;
    box-sizing: border-box;
    font-size: 0.75rem;
}

table.dataTable.no-footer {
    border-bottom: 10px solid #fff;
}

table.dataTable thead {
    background: #f5f5f5;
    border-width: 0px;
}

table.dataTable tbody tr {
    background-color: transparent;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable tbody th,
table.dataTable tbody td {
    padding: 0.4rem 0.6rem;
    line-height: 1.1;
    border-bottom: 1px solid #eee !important;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.6);
}

table.dataTable thead th,
table.dataTable thead td {
    padding: 0.4rem 0rem 0.8rem 0.6rem !important;
    vertical-align: bottom;
}

table.dataTable thead > tr > th {
    border-width: 0;
}

table.dataTable input,
table.dataTable input:disabled,
table.dataTable select,
table.dataTable select:disabled {
    background-color: transparent;
    border-width: 0 0 1px;
    border-radius: 0;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    float: left;
}

.dataTables_wrapper .dataTables_paginate {
    font-size: 0.75rem;
}

.table-campo {
    position: relative;
    padding-right: 5px;
    width: 100%;
    display: block;
}

.table-campo-clean {
    position: absolute;
    top: 15px;
    margin-left: 5px;
    display: none;
}

.responsive-list {
    font-weight: 400;
    font-size: 0.75rem;
    background-color: #fff;
    border: 10px solid #fff;
    border-radius: 6px;
}
.responsive-list .list-content .list-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    background-color: #f5f5f5;
    position: relative;
}
.responsive-list .list-content ul.list-items {
    padding: 0;
    margin-bottom: 0;
    border-top: 1px solid #eee;
}
.responsive-list .list-content ul.list-items li {
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    border-bottom: 1px solid #eee;
    padding: 0px;
}
.responsive-list .list-content ul.list-items li .cell label {
    display: none;
}
.responsive-list .list-content ul.list-items li.active {
    background-color: #eef4ff;
}
.responsive-list .list-content .left-side,
.responsive-list .list-content .right-side {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
    flex-basis: 50%;
}
.responsive-list .list-content .cell {
    padding: 0.6rem 0.4rem 0.5rem;
    line-height: 1;
}
.responsive-list .list-content .cell span.featured {
    font-size: 1.1em;
    font-weight: 700;
    display: block;
}
.responsive-list .list-content .cell span.small {
    font-size: 0.85em;
}
.responsive-list .list-content .cell a {
    font-size: 1.1em;
    font-weight: 700;
    color: blue;
}
.responsive-list .list-content .cell a:hover {
    color: #333;
}
.responsive-list .list-content .cell label {
    display: block;
    font-weight: 700;
    margin-bottom: 3px;
    color: #333;
}
.responsive-list .list-content .list-footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    background-color: #f5f5f5;
    position: relative;
}
.responsive-list .list-content .list-footer label {
    display: none;
}

.card .responsive-list {
    border-width: 0px;
}

@media (max-width: 991.98px) {
    .responsive-list .list-content .list-header {
        display: none !important;
    }
    .responsive-list .list-content ul.list-items {
        border-top-width: 0px;
    }
    .responsive-list .list-content ul.list-items li {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        border-bottom: 2px solid #eee;
        padding: 15px 10px;
        border: 1px solid #eee;
        border-radius: 6px;
        margin-bottom: 10px;
    }
    .responsive-list .list-content .left-side,
    .responsive-list .list-content .right-side {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-content: flex-start;
        flex-basis: 50%;
    }
    .responsive-list .list-content .cell {
        flex-basis: 100% !important;
        padding: 0px 10px;
        text-align: left;
        width: 100%;
        height: auto;
    }
    .responsive-list .list-content .cell label {
        display: inline-block !important;
        margin-right: 3px;
        font-weight: 700;
    }
    .responsive-list .list-content .cell span,
    .responsive-list .list-content .cell span.featured,
    .responsive-list .list-content .cell span.small {
        display: block;
        font-size: 1em;
        font-weight: 400;
        padding: 3px 0;
    }
    .responsive-list .list-content .cell span.card-highligh {
        font-size: 1.2em;
        font-weight: 700;
        background-color: #eee;
        border-radius: 5px;
        display: inline-block;
        padding: 3px 8px;
        margin-left: -8px;
        margin-bottom: 2px;
    }
    .responsive-list .list-content .list-footer {
        padding: 10px !important;
        border-radius: 5px;
    }
    .responsive-list .list-content .separator-header {
        padding-bottom: 7px !important;
        margin-bottom: 8px;
    }
    .responsive-list .list-content .separator-footer {
        padding-top: 7px !important;
        margin-top: 8px;
    }
}

.fw-bold {
    font-weight: 800 !important;
}

@media (max-width: 767.98px) {
    .responsive-list .list-content .list-header {
        display: none !important;
    }
    .responsive-list .list-content ul.list-items li {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap !important;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        border-bottom: 2px solid #eee;
        padding: 15px 10px;
    }
    .responsive-list .list-content .left-side,
    .responsive-list .list-content .right-side {
        display: flex;
        flex-direction: column !important;
        justify-content: flex-start;
        align-content: flex-start;
        flex-basis: 100% !important;
        width: 100%;
    }
    .responsive-list .list-content .list-footer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap !important;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        border-bottom: 2px solid #eee;
        padding: 15px 10px;
    }
    .responsive-list .list-content .separator-header {
        border-bottom: 1px solid #ddd;
        padding-bottom: 7px !important;
        margin-bottom: 8px;
    }
    .responsive-list .list-content .separator-footer {
        border-top: 1px solid #ddd;
        padding-top: 7px !important;
        margin-top: 8px;
    }
}/*# sourceMappingURL=custom.css.map */
