﻿:root {
    --window-height: 100vh;
    --window-width: 100vw;
    --font-size-base: 24px;
    --spacer-0: 0;
    --gutter-0: 0;
    --spacer-1: 0.25rem;
    --gutter-1: 0.25rem;
    --spacer-2: 0.5rem;
    --gutter-2: 0.5rem;
    --spacer-3: 0.75rem;
    --gutter-3: 0.75rem;
    --spacer-4: 1rem;
    --gutter-4: 1rem;
    --spacer-5: 1.5rem;
    --gutter-5: 1.5rem;
    --spacer-6: 2rem;
    --gutter-6: 2rem;
    --spacer-7: 2.5rem;
    --gutter-7: 2.5rem;
    --spacer-8: 3rem;
    --gutter-8: 3rem;
    --spacer-9: 3.5rem;
    --gutter-9: 3.5rem;
    --spacer-10: 4rem;
    --gutter-10: 4rem;
    --spacer-auto: auto;
    --gutter-auto: auto;
    --font-size-1: 2.75rem;
    --font-size-2: 2.5rem;
    --font-size-3: 2.25rem;
    --font-size-4: 2rem;
    --font-size-5: 1.75rem;
    --font-size-6: 1.5rem;
    --font-size-7: 1.25rem;
    --font-size-8: 1rem;
    --font-size-9: 0.95rem;
    --font-size-10: 0.9rem;
    --font-size-11: 0.85rem;
    --font-size-12: 0.8rem;
    --font-size-13: 0.75rem;
    --font-size-14: 0.7rem;
    --font-size-15: 0.65rem;
    --font-size-16: 0.6rem;
    --font-size-17: 0.55rem;
    --font-size-18: 0.5rem;
    --font-size-19: 0.45rem;
    --font-size-20: 0.4rem;
    --color-white: #fff;
    --color-black: #3b4141;
    --color-red: #d71921;
    --color-red-50: #c61f2c;
    --color-pink: #ffebeb;
    --color-pink-50: #ffc9c9;
    --color-light-pink: #fff8f8;
    --color-gray: #454545;
    --color-gray-50: #6f6f6f;
    --color-light-gray: #c8c8c8;
    --color-light-gray-50: #f3f4f5;
    --color-green: #0c8858;
    --color-green-50: #d6ecd7;
    --color-light-green: #42c504;
    --color-dark-blue: #0e2f87;
    --color-nice-blue: #0e68ba;
    --color-navy-blue: #1f296b;
    --color-blueberry: #343e96;
    --color-light-blue: #eaf5ff;
    --color-transparent: transparent;
}

.font-ThaiSans {
    font-family: "ThaiSans";
}

html {
    font-size: var(--font-size-base);
}

.transition-1x {
    transition: all 0.15s ease-in-out;
    transition-property: all, color;
    transition-duration: 0.15s, 0.15s;
}

    .transition-1x * {
        transition: all 0.15s ease-in-out;
        transition-property: all, color;
        transition-duration: 0.15s, 0.15s;
    }

.transition-2x {
    transition: all 0.3s ease-in-out;
    transition-property: all, color;
    transition-duration: 0.3s, 0.15s;
}

    .transition-2x * {
        transition: all 0.3s ease-in-out;
        transition-property: all, color;
        transition-duration: 0.3s, 0.15s;
    }

.transition-3x {
    transition: all 0.6s ease-in-out;
    transition-property: all, color;
    transition-duration: 0.6s, 0.15s;
}

    .transition-3x * {
        transition: all 0.6s ease-in-out;
        transition-property: all, color;
        transition-duration: 0.6s, 0.15s;
    }

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

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

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

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

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

@keyframes spinner {
    to {
        transform: rotate(360deg); /* rtl:ignore */
    }
}

@keyframes spinner-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.spin {
    animation: spinner 1s linear infinite;
}

.spin-reverse {
    animation: spinner-reverse 1s linear infinite;
}

.filter-grayscale-lighten {
    filter: grayscale(1) opacity(0.3);
}

.adjust-top {
    padding-top: 0.15rem;
}

.btn-reset {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
}

.bg-hover-primary:hover[hover-bg],
.bg-hover-primary:hover [hover-bg] {
    background-color: #0d6efd !important;
}

.text-hover-primary:hover[hover-text],
.text-hover-primary:hover [hover-text] {
    color: #0d6efd !important;
}

.border-hover-primary:hover[hover-border],
.border-hover-primary:hover [hover-border] {
    border-color: #0d6efd !important;
}

.stroke-hover-primary:hover[hover-stroke],
.stroke-hover-primary:hover[hover-stroke] *,
.stroke-hover-primary:hover [hover-stroke],
.stroke-hover-primary:hover [hover-stroke] * {
    stroke: #0d6efd !important;
}

.fill-hover-primary:hover[hover-fill],
.fill-hover-primary:hover[hover-fill] *,
.fill-hover-primary:hover [hover-fill],
.fill-hover-primary:hover [hover-fill] * .rect-hover-primary:hover[hover-rect],
.rect-hover-primary:hover[hover-rect] *,
.rect-hover-primary:hover [hover-rect],
.rect-hover-primary:hover [hover-rect] * {
    fill: #0d6efd !important;
}

.bg-hover-secondary:hover[hover-bg],
.bg-hover-secondary:hover [hover-bg] {
    background-color: #6c757d !important;
}

.text-hover-secondary:hover[hover-text],
.text-hover-secondary:hover [hover-text] {
    color: #6c757d !important;
}

.border-hover-secondary:hover[hover-border],
.border-hover-secondary:hover [hover-border] {
    border-color: #6c757d !important;
}

.stroke-hover-secondary:hover[hover-stroke],
.stroke-hover-secondary:hover[hover-stroke] *,
.stroke-hover-secondary:hover [hover-stroke],
.stroke-hover-secondary:hover [hover-stroke] * {
    stroke: #6c757d !important;
}

.fill-hover-secondary:hover[hover-fill],
.fill-hover-secondary:hover[hover-fill] *,
.fill-hover-secondary:hover [hover-fill],
.fill-hover-secondary:hover [hover-fill] * .rect-hover-secondary:hover[hover-rect],
.rect-hover-secondary:hover[hover-rect] *,
.rect-hover-secondary:hover [hover-rect],
.rect-hover-secondary:hover [hover-rect] * {
    fill: #6c757d !important;
}

.bg-hover-success:hover[hover-bg],
.bg-hover-success:hover [hover-bg] {
    background-color: #198754 !important;
}

.text-hover-success:hover[hover-text],
.text-hover-success:hover [hover-text] {
    color: #198754 !important;
}

.border-hover-success:hover[hover-border],
.border-hover-success:hover [hover-border] {
    border-color: #198754 !important;
}

.stroke-hover-success:hover[hover-stroke],
.stroke-hover-success:hover[hover-stroke] *,
.stroke-hover-success:hover [hover-stroke],
.stroke-hover-success:hover [hover-stroke] * {
    stroke: #198754 !important;
}

.fill-hover-success:hover[hover-fill],
.fill-hover-success:hover[hover-fill] *,
.fill-hover-success:hover [hover-fill],
.fill-hover-success:hover [hover-fill] * .rect-hover-success:hover[hover-rect],
.rect-hover-success:hover[hover-rect] *,
.rect-hover-success:hover [hover-rect],
.rect-hover-success:hover [hover-rect] * {
    fill: #198754 !important;
}

.bg-hover-info:hover[hover-bg],
.bg-hover-info:hover [hover-bg] {
    background-color: #0dcaf0 !important;
}

.text-hover-info:hover[hover-text],
.text-hover-info:hover [hover-text] {
    color: #0dcaf0 !important;
}

.border-hover-info:hover[hover-border],
.border-hover-info:hover [hover-border] {
    border-color: #0dcaf0 !important;
}

.stroke-hover-info:hover[hover-stroke],
.stroke-hover-info:hover[hover-stroke] *,
.stroke-hover-info:hover [hover-stroke],
.stroke-hover-info:hover [hover-stroke] * {
    stroke: #0dcaf0 !important;
}

.fill-hover-info:hover[hover-fill],
.fill-hover-info:hover[hover-fill] *,
.fill-hover-info:hover [hover-fill],
.fill-hover-info:hover [hover-fill] * .rect-hover-info:hover[hover-rect],
.rect-hover-info:hover[hover-rect] *,
.rect-hover-info:hover [hover-rect],
.rect-hover-info:hover [hover-rect] * {
    fill: #0dcaf0 !important;
}

.bg-hover-warning:hover[hover-bg],
.bg-hover-warning:hover [hover-bg] {
    background-color: #ffc107 !important;
}

.text-hover-warning:hover[hover-text],
.text-hover-warning:hover [hover-text] {
    color: #ffc107 !important;
}

.border-hover-warning:hover[hover-border],
.border-hover-warning:hover [hover-border] {
    border-color: #ffc107 !important;
}

.stroke-hover-warning:hover[hover-stroke],
.stroke-hover-warning:hover[hover-stroke] *,
.stroke-hover-warning:hover [hover-stroke],
.stroke-hover-warning:hover [hover-stroke] * {
    stroke: #ffc107 !important;
}

.fill-hover-warning:hover[hover-fill],
.fill-hover-warning:hover[hover-fill] *,
.fill-hover-warning:hover [hover-fill],
.fill-hover-warning:hover [hover-fill] * .rect-hover-warning:hover[hover-rect],
.rect-hover-warning:hover[hover-rect] *,
.rect-hover-warning:hover [hover-rect],
.rect-hover-warning:hover [hover-rect] * {
    fill: #ffc107 !important;
}

.bg-hover-danger:hover[hover-bg],
.bg-hover-danger:hover [hover-bg] {
    background-color: #dc3545 !important;
}

.text-hover-danger:hover[hover-text],
.text-hover-danger:hover [hover-text] {
    color: #dc3545 !important;
}

.border-hover-danger:hover[hover-border],
.border-hover-danger:hover [hover-border] {
    border-color: #dc3545 !important;
}

.stroke-hover-danger:hover[hover-stroke],
.stroke-hover-danger:hover[hover-stroke] *,
.stroke-hover-danger:hover [hover-stroke],
.stroke-hover-danger:hover [hover-stroke] * {
    stroke: #dc3545 !important;
}

.fill-hover-danger:hover[hover-fill],
.fill-hover-danger:hover[hover-fill] *,
.fill-hover-danger:hover [hover-fill],
.fill-hover-danger:hover [hover-fill] * .rect-hover-danger:hover[hover-rect],
.rect-hover-danger:hover[hover-rect] *,
.rect-hover-danger:hover [hover-rect],
.rect-hover-danger:hover [hover-rect] * {
    fill: #dc3545 !important;
}

.bg-hover-light:hover[hover-bg],
.bg-hover-light:hover [hover-bg] {
    background-color: #f8f9fa !important;
}

.text-hover-light:hover[hover-text],
.text-hover-light:hover [hover-text] {
    color: #f8f9fa !important;
}

.border-hover-light:hover[hover-border],
.border-hover-light:hover [hover-border] {
    border-color: #f8f9fa !important;
}

.stroke-hover-light:hover[hover-stroke],
.stroke-hover-light:hover[hover-stroke] *,
.stroke-hover-light:hover [hover-stroke],
.stroke-hover-light:hover [hover-stroke] * {
    stroke: #f8f9fa !important;
}

.fill-hover-light:hover[hover-fill],
.fill-hover-light:hover[hover-fill] *,
.fill-hover-light:hover [hover-fill],
.fill-hover-light:hover [hover-fill] * .rect-hover-light:hover[hover-rect],
.rect-hover-light:hover[hover-rect] *,
.rect-hover-light:hover [hover-rect],
.rect-hover-light:hover [hover-rect] * {
    fill: #f8f9fa !important;
}

.bg-hover-dark:hover[hover-bg],
.bg-hover-dark:hover [hover-bg] {
    background-color: #212529 !important;
}

.text-hover-dark:hover[hover-text],
.text-hover-dark:hover [hover-text] {
    color: #212529 !important;
}

.border-hover-dark:hover[hover-border],
.border-hover-dark:hover [hover-border] {
    border-color: #212529 !important;
}

.stroke-hover-dark:hover[hover-stroke],
.stroke-hover-dark:hover[hover-stroke] *,
.stroke-hover-dark:hover [hover-stroke],
.stroke-hover-dark:hover [hover-stroke] * {
    stroke: #212529 !important;
}

.fill-hover-dark:hover[hover-fill],
.fill-hover-dark:hover[hover-fill] *,
.fill-hover-dark:hover [hover-fill],
.fill-hover-dark:hover [hover-fill] * .rect-hover-dark:hover[hover-rect],
.rect-hover-dark:hover[hover-rect] *,
.rect-hover-dark:hover [hover-rect],
.rect-hover-dark:hover [hover-rect] * {
    fill: #212529 !important;
}

.bg-hover-white:hover[hover-bg],
.bg-hover-white:hover [hover-bg] {
    background-color: #fff !important;
}

.text-hover-white:hover[hover-text],
.text-hover-white:hover [hover-text] {
    color: #fff !important;
}

.border-hover-white:hover[hover-border],
.border-hover-white:hover [hover-border] {
    border-color: #fff !important;
}

.stroke-hover-white:hover[hover-stroke],
.stroke-hover-white:hover[hover-stroke] *,
.stroke-hover-white:hover [hover-stroke],
.stroke-hover-white:hover [hover-stroke] * {
    stroke: #fff !important;
}

.fill-hover-white:hover[hover-fill],
.fill-hover-white:hover[hover-fill] *,
.fill-hover-white:hover [hover-fill],
.fill-hover-white:hover [hover-fill] * .rect-hover-white:hover[hover-rect],
.rect-hover-white:hover[hover-rect] *,
.rect-hover-white:hover [hover-rect],
.rect-hover-white:hover [hover-rect] * {
    fill: #fff !important;
}

.bg-hover-black:hover[hover-bg],
.bg-hover-black:hover [hover-bg] {
    background-color: #3b4141 !important;
}

.text-hover-black:hover[hover-text],
.text-hover-black:hover [hover-text] {
    color: #3b4141 !important;
}

.border-hover-black:hover[hover-border],
.border-hover-black:hover [hover-border] {
    border-color: #3b4141 !important;
}

.stroke-hover-black:hover[hover-stroke],
.stroke-hover-black:hover[hover-stroke] *,
.stroke-hover-black:hover [hover-stroke],
.stroke-hover-black:hover [hover-stroke] * {
    stroke: #3b4141 !important;
}

.fill-hover-black:hover[hover-fill],
.fill-hover-black:hover[hover-fill] *,
.fill-hover-black:hover [hover-fill],
.fill-hover-black:hover [hover-fill] * .rect-hover-black:hover[hover-rect],
.rect-hover-black:hover[hover-rect] *,
.rect-hover-black:hover [hover-rect],
.rect-hover-black:hover [hover-rect] * {
    fill: #3b4141 !important;
}

.bg-hover-red:hover[hover-bg],
.bg-hover-red:hover [hover-bg] {
    background-color: #d71921 !important;
}

.text-hover-red:hover[hover-text],
.text-hover-red:hover [hover-text] {
    color: #d71921 !important;
}

.border-hover-red:hover[hover-border],
.border-hover-red:hover [hover-border] {
    border-color: #d71921 !important;
}

.stroke-hover-red:hover[hover-stroke],
.stroke-hover-red:hover[hover-stroke] *,
.stroke-hover-red:hover [hover-stroke],
.stroke-hover-red:hover [hover-stroke] * {
    stroke: #d71921 !important;
}

.fill-hover-red:hover[hover-fill],
.fill-hover-red:hover[hover-fill] *,
.fill-hover-red:hover [hover-fill],
.fill-hover-red:hover [hover-fill] * .rect-hover-red:hover[hover-rect],
.rect-hover-red:hover[hover-rect] *,
.rect-hover-red:hover [hover-rect],
.rect-hover-red:hover [hover-rect] * {
    fill: #d71921 !important;
}

.bg-hover-red-50:hover[hover-bg],
.bg-hover-red-50:hover [hover-bg] {
    background-color: #c61f2c !important;
}

.text-hover-red-50:hover[hover-text],
.text-hover-red-50:hover [hover-text] {
    color: #c61f2c !important;
}

.border-hover-red-50:hover[hover-border],
.border-hover-red-50:hover [hover-border] {
    border-color: #c61f2c !important;
}

.stroke-hover-red-50:hover[hover-stroke],
.stroke-hover-red-50:hover[hover-stroke] *,
.stroke-hover-red-50:hover [hover-stroke],
.stroke-hover-red-50:hover [hover-stroke] * {
    stroke: #c61f2c !important;
}

.fill-hover-red-50:hover[hover-fill],
.fill-hover-red-50:hover[hover-fill] *,
.fill-hover-red-50:hover [hover-fill],
.fill-hover-red-50:hover [hover-fill] * .rect-hover-red-50:hover[hover-rect],
.rect-hover-red-50:hover[hover-rect] *,
.rect-hover-red-50:hover [hover-rect],
.rect-hover-red-50:hover [hover-rect] * {
    fill: #c61f2c !important;
}

.bg-hover-pink:hover[hover-bg],
.bg-hover-pink:hover [hover-bg] {
    background-color: #ffebeb !important;
}

.text-hover-pink:hover[hover-text],
.text-hover-pink:hover [hover-text] {
    color: #ffebeb !important;
}

.border-hover-pink:hover[hover-border],
.border-hover-pink:hover [hover-border] {
    border-color: #ffebeb !important;
}

.stroke-hover-pink:hover[hover-stroke],
.stroke-hover-pink:hover[hover-stroke] *,
.stroke-hover-pink:hover [hover-stroke],
.stroke-hover-pink:hover [hover-stroke] * {
    stroke: #ffebeb !important;
}

.fill-hover-pink:hover[hover-fill],
.fill-hover-pink:hover[hover-fill] *,
.fill-hover-pink:hover [hover-fill],
.fill-hover-pink:hover [hover-fill] * .rect-hover-pink:hover[hover-rect],
.rect-hover-pink:hover[hover-rect] *,
.rect-hover-pink:hover [hover-rect],
.rect-hover-pink:hover [hover-rect] * {
    fill: #ffebeb !important;
}

.bg-hover-pink-50:hover[hover-bg],
.bg-hover-pink-50:hover [hover-bg] {
    background-color: #ffc9c9 !important;
}

.text-hover-pink-50:hover[hover-text],
.text-hover-pink-50:hover [hover-text] {
    color: #ffc9c9 !important;
}

.border-hover-pink-50:hover[hover-border],
.border-hover-pink-50:hover [hover-border] {
    border-color: #ffc9c9 !important;
}

.stroke-hover-pink-50:hover[hover-stroke],
.stroke-hover-pink-50:hover[hover-stroke] *,
.stroke-hover-pink-50:hover [hover-stroke],
.stroke-hover-pink-50:hover [hover-stroke] * {
    stroke: #ffc9c9 !important;
}

.fill-hover-pink-50:hover[hover-fill],
.fill-hover-pink-50:hover[hover-fill] *,
.fill-hover-pink-50:hover [hover-fill],
.fill-hover-pink-50:hover [hover-fill] * .rect-hover-pink-50:hover[hover-rect],
.rect-hover-pink-50:hover[hover-rect] *,
.rect-hover-pink-50:hover [hover-rect],
.rect-hover-pink-50:hover [hover-rect] * {
    fill: #ffc9c9 !important;
}

.bg-hover-light-pink:hover[hover-bg],
.bg-hover-light-pink:hover [hover-bg] {
    background-color: #fff8f8 !important;
}

.text-hover-light-pink:hover[hover-text],
.text-hover-light-pink:hover [hover-text] {
    color: #fff8f8 !important;
}

.border-hover-light-pink:hover[hover-border],
.border-hover-light-pink:hover [hover-border] {
    border-color: #fff8f8 !important;
}

.stroke-hover-light-pink:hover[hover-stroke],
.stroke-hover-light-pink:hover[hover-stroke] *,
.stroke-hover-light-pink:hover [hover-stroke],
.stroke-hover-light-pink:hover [hover-stroke] * {
    stroke: #fff8f8 !important;
}

.fill-hover-light-pink:hover[hover-fill],
.fill-hover-light-pink:hover[hover-fill] *,
.fill-hover-light-pink:hover [hover-fill],
.fill-hover-light-pink:hover [hover-fill] * .rect-hover-light-pink:hover[hover-rect],
.rect-hover-light-pink:hover[hover-rect] *,
.rect-hover-light-pink:hover [hover-rect],
.rect-hover-light-pink:hover [hover-rect] * {
    fill: #fff8f8 !important;
}

.bg-hover-gray:hover[hover-bg],
.bg-hover-gray:hover [hover-bg] {
    background-color: #454545 !important;
}

.text-hover-gray:hover[hover-text],
.text-hover-gray:hover [hover-text] {
    color: #454545 !important;
}

.border-hover-gray:hover[hover-border],
.border-hover-gray:hover [hover-border] {
    border-color: #454545 !important;
}

.stroke-hover-gray:hover[hover-stroke],
.stroke-hover-gray:hover[hover-stroke] *,
.stroke-hover-gray:hover [hover-stroke],
.stroke-hover-gray:hover [hover-stroke] * {
    stroke: #454545 !important;
}

.fill-hover-gray:hover[hover-fill],
.fill-hover-gray:hover[hover-fill] *,
.fill-hover-gray:hover [hover-fill],
.fill-hover-gray:hover [hover-fill] * .rect-hover-gray:hover[hover-rect],
.rect-hover-gray:hover[hover-rect] *,
.rect-hover-gray:hover [hover-rect],
.rect-hover-gray:hover [hover-rect] * {
    fill: #454545 !important;
}

.bg-hover-gray-50:hover[hover-bg],
.bg-hover-gray-50:hover [hover-bg] {
    background-color: #939393 !important;
}

.text-hover-gray-50:hover[hover-text],
.text-hover-gray-50:hover [hover-text] {
    color: #939393 !important;
}

.border-hover-gray-50:hover[hover-border],
.border-hover-gray-50:hover [hover-border] {
    border-color: #939393 !important;
}

.stroke-hover-gray-50:hover[hover-stroke],
.stroke-hover-gray-50:hover[hover-stroke] *,
.stroke-hover-gray-50:hover [hover-stroke],
.stroke-hover-gray-50:hover [hover-stroke] * {
    stroke: #939393 !important;
}

.fill-hover-gray-50:hover[hover-fill],
.fill-hover-gray-50:hover[hover-fill] *,
.fill-hover-gray-50:hover [hover-fill],
.fill-hover-gray-50:hover [hover-fill] * .rect-hover-gray-50:hover[hover-rect],
.rect-hover-gray-50:hover[hover-rect] *,
.rect-hover-gray-50:hover [hover-rect],
.rect-hover-gray-50:hover [hover-rect] * {
    fill: #939393 !important;
}

.bg-hover-light-gray:hover[hover-bg],
.bg-hover-light-gray:hover [hover-bg] {
    background-color: #c8c8c8 !important;
}

.text-hover-light-gray:hover[hover-text],
.text-hover-light-gray:hover [hover-text] {
    color: #c8c8c8 !important;
}

.border-hover-light-gray:hover[hover-border],
.border-hover-light-gray:hover [hover-border] {
    border-color: #c8c8c8 !important;
}

.stroke-hover-light-gray:hover[hover-stroke],
.stroke-hover-light-gray:hover[hover-stroke] *,
.stroke-hover-light-gray:hover [hover-stroke],
.stroke-hover-light-gray:hover [hover-stroke] * {
    stroke: #c8c8c8 !important;
}

.fill-hover-light-gray:hover[hover-fill],
.fill-hover-light-gray:hover[hover-fill] *,
.fill-hover-light-gray:hover [hover-fill],
.fill-hover-light-gray:hover [hover-fill] * .rect-hover-light-gray:hover[hover-rect],
.rect-hover-light-gray:hover[hover-rect] *,
.rect-hover-light-gray:hover [hover-rect],
.rect-hover-light-gray:hover [hover-rect] * {
    fill: #c8c8c8 !important;
}

.bg-hover-light-gray-50:hover[hover-bg],
.bg-hover-light-gray-50:hover [hover-bg] {
    background-color: #f3f4f5 !important;
}

.text-hover-light-gray-50:hover[hover-text],
.text-hover-light-gray-50:hover [hover-text] {
    color: #f3f4f5 !important;
}

.border-hover-light-gray-50:hover[hover-border],
.border-hover-light-gray-50:hover [hover-border] {
    border-color: #f3f4f5 !important;
}

.stroke-hover-light-gray-50:hover[hover-stroke],
.stroke-hover-light-gray-50:hover[hover-stroke] *,
.stroke-hover-light-gray-50:hover [hover-stroke],
.stroke-hover-light-gray-50:hover [hover-stroke] * {
    stroke: #f3f4f5 !important;
}

.fill-hover-light-gray-50:hover[hover-fill],
.fill-hover-light-gray-50:hover[hover-fill] *,
.fill-hover-light-gray-50:hover [hover-fill],
.fill-hover-light-gray-50:hover [hover-fill] * .rect-hover-light-gray-50:hover[hover-rect],
.rect-hover-light-gray-50:hover[hover-rect] *,
.rect-hover-light-gray-50:hover [hover-rect],
.rect-hover-light-gray-50:hover [hover-rect] * {
    fill: #f3f4f5 !important;
}

.bg-hover-green:hover[hover-bg],
.bg-hover-green:hover [hover-bg] {
    background-color: #0c8858 !important;
}

.text-hover-green:hover[hover-text],
.text-hover-green:hover [hover-text] {
    color: #0c8858 !important;
}

.border-hover-green:hover[hover-border],
.border-hover-green:hover [hover-border] {
    border-color: #0c8858 !important;
}

.stroke-hover-green:hover[hover-stroke],
.stroke-hover-green:hover[hover-stroke] *,
.stroke-hover-green:hover [hover-stroke],
.stroke-hover-green:hover [hover-stroke] * {
    stroke: #0c8858 !important;
}

.fill-hover-green:hover[hover-fill],
.fill-hover-green:hover[hover-fill] *,
.fill-hover-green:hover [hover-fill],
.fill-hover-green:hover [hover-fill] * .rect-hover-green:hover[hover-rect],
.rect-hover-green:hover[hover-rect] *,
.rect-hover-green:hover [hover-rect],
.rect-hover-green:hover [hover-rect] * {
    fill: #0c8858 !important;
}

.bg-hover-green-50:hover[hover-bg],
.bg-hover-green-50:hover [hover-bg] {
    background-color: #d6ecd7 !important;
}

.text-hover-green-50:hover[hover-text],
.text-hover-green-50:hover [hover-text] {
    color: #d6ecd7 !important;
}

.border-hover-green-50:hover[hover-border],
.border-hover-green-50:hover [hover-border] {
    border-color: #d6ecd7 !important;
}

.stroke-hover-green-50:hover[hover-stroke],
.stroke-hover-green-50:hover[hover-stroke] *,
.stroke-hover-green-50:hover [hover-stroke],
.stroke-hover-green-50:hover [hover-stroke] * {
    stroke: #d6ecd7 !important;
}

.fill-hover-green-50:hover[hover-fill],
.fill-hover-green-50:hover[hover-fill] *,
.fill-hover-green-50:hover [hover-fill],
.fill-hover-green-50:hover [hover-fill] * .rect-hover-green-50:hover[hover-rect],
.rect-hover-green-50:hover[hover-rect] *,
.rect-hover-green-50:hover [hover-rect],
.rect-hover-green-50:hover [hover-rect] * {
    fill: #d6ecd7 !important;
}

.bg-hover-light-green:hover[hover-bg],
.bg-hover-light-green:hover [hover-bg] {
    background-color: #42c504 !important;
}

.text-hover-light-green:hover[hover-text],
.text-hover-light-green:hover [hover-text] {
    color: #42c504 !important;
}

.border-hover-light-green:hover[hover-border],
.border-hover-light-green:hover [hover-border] {
    border-color: #42c504 !important;
}

.stroke-hover-light-green:hover[hover-stroke],
.stroke-hover-light-green:hover[hover-stroke] *,
.stroke-hover-light-green:hover [hover-stroke],
.stroke-hover-light-green:hover [hover-stroke] * {
    stroke: #42c504 !important;
}

.fill-hover-light-green:hover[hover-fill],
.fill-hover-light-green:hover[hover-fill] *,
.fill-hover-light-green:hover [hover-fill],
.fill-hover-light-green:hover [hover-fill] * .rect-hover-light-green:hover[hover-rect],
.rect-hover-light-green:hover[hover-rect] *,
.rect-hover-light-green:hover [hover-rect],
.rect-hover-light-green:hover [hover-rect] * {
    fill: #42c504 !important;
}

.bg-hover-dark-blue:hover[hover-bg],
.bg-hover-dark-blue:hover [hover-bg] {
    background-color: #0e2f87 !important;
}

.text-hover-dark-blue:hover[hover-text],
.text-hover-dark-blue:hover [hover-text] {
    color: #0e2f87 !important;
}

.border-hover-dark-blue:hover[hover-border],
.border-hover-dark-blue:hover [hover-border] {
    border-color: #0e2f87 !important;
}

.stroke-hover-dark-blue:hover[hover-stroke],
.stroke-hover-dark-blue:hover[hover-stroke] *,
.stroke-hover-dark-blue:hover [hover-stroke],
.stroke-hover-dark-blue:hover [hover-stroke] * {
    stroke: #0e2f87 !important;
}

.fill-hover-dark-blue:hover[hover-fill],
.fill-hover-dark-blue:hover[hover-fill] *,
.fill-hover-dark-blue:hover [hover-fill],
.fill-hover-dark-blue:hover [hover-fill] * .rect-hover-dark-blue:hover[hover-rect],
.rect-hover-dark-blue:hover[hover-rect] *,
.rect-hover-dark-blue:hover [hover-rect],
.rect-hover-dark-blue:hover [hover-rect] * {
    fill: #0e2f87 !important;
}

.bg-hover-nice-blue:hover[hover-bg],
.bg-hover-nice-blue:hover [hover-bg] {
    background-color: #0e68ba !important;
}

.text-hover-nice-blue:hover[hover-text],
.text-hover-nice-blue:hover [hover-text] {
    color: #0e68ba !important;
}

.border-hover-nice-blue:hover[hover-border],
.border-hover-nice-blue:hover [hover-border] {
    border-color: #0e68ba !important;
}

.stroke-hover-nice-blue:hover[hover-stroke],
.stroke-hover-nice-blue:hover[hover-stroke] *,
.stroke-hover-nice-blue:hover [hover-stroke],
.stroke-hover-nice-blue:hover [hover-stroke] * {
    stroke: #0e68ba !important;
}

.fill-hover-nice-blue:hover[hover-fill],
.fill-hover-nice-blue:hover[hover-fill] *,
.fill-hover-nice-blue:hover [hover-fill],
.fill-hover-nice-blue:hover [hover-fill] * .rect-hover-nice-blue:hover[hover-rect],
.rect-hover-nice-blue:hover[hover-rect] *,
.rect-hover-nice-blue:hover [hover-rect],
.rect-hover-nice-blue:hover [hover-rect] * {
    fill: #0e68ba !important;
}

.bg-hover-navy-blue:hover[hover-bg],
.bg-hover-navy-blue:hover [hover-bg] {
    background-color: #1f296b !important;
}

.text-hover-navy-blue:hover[hover-text],
.text-hover-navy-blue:hover [hover-text] {
    color: #1f296b !important;
}

.border-hover-navy-blue:hover[hover-border],
.border-hover-navy-blue:hover [hover-border] {
    border-color: #1f296b !important;
}

.stroke-hover-navy-blue:hover[hover-stroke],
.stroke-hover-navy-blue:hover[hover-stroke] *,
.stroke-hover-navy-blue:hover [hover-stroke],
.stroke-hover-navy-blue:hover [hover-stroke] * {
    stroke: #1f296b !important;
}

.fill-hover-navy-blue:hover[hover-fill],
.fill-hover-navy-blue:hover[hover-fill] *,
.fill-hover-navy-blue:hover [hover-fill],
.fill-hover-navy-blue:hover [hover-fill] * .rect-hover-navy-blue:hover[hover-rect],
.rect-hover-navy-blue:hover[hover-rect] *,
.rect-hover-navy-blue:hover [hover-rect],
.rect-hover-navy-blue:hover [hover-rect] * {
    fill: #1f296b !important;
}

.bg-hover-blueberry:hover[hover-bg],
.bg-hover-blueberry:hover [hover-bg] {
    background-color: #343e96 !important;
}

.text-hover-blueberry:hover[hover-text],
.text-hover-blueberry:hover [hover-text] {
    color: #343e96 !important;
}

.border-hover-blueberry:hover[hover-border],
.border-hover-blueberry:hover [hover-border] {
    border-color: #343e96 !important;
}

.stroke-hover-blueberry:hover[hover-stroke],
.stroke-hover-blueberry:hover[hover-stroke] *,
.stroke-hover-blueberry:hover [hover-stroke],
.stroke-hover-blueberry:hover [hover-stroke] * {
    stroke: #343e96 !important;
}

.fill-hover-blueberry:hover[hover-fill],
.fill-hover-blueberry:hover[hover-fill] *,
.fill-hover-blueberry:hover [hover-fill],
.fill-hover-blueberry:hover [hover-fill] * .rect-hover-blueberry:hover[hover-rect],
.rect-hover-blueberry:hover[hover-rect] *,
.rect-hover-blueberry:hover [hover-rect],
.rect-hover-blueberry:hover [hover-rect] * {
    fill: #343e96 !important;
}

.bg-hover-light-blue:hover[hover-bg],
.bg-hover-light-blue:hover [hover-bg] {
    background-color: #eaf5ff !important;
}

.text-hover-light-blue:hover[hover-text],
.text-hover-light-blue:hover [hover-text] {
    color: #eaf5ff !important;
}

.border-hover-light-blue:hover[hover-border],
.border-hover-light-blue:hover [hover-border] {
    border-color: #eaf5ff !important;
}

.stroke-hover-light-blue:hover[hover-stroke],
.stroke-hover-light-blue:hover[hover-stroke] *,
.stroke-hover-light-blue:hover [hover-stroke],
.stroke-hover-light-blue:hover [hover-stroke] * {
    stroke: #eaf5ff !important;
}

.fill-hover-light-blue:hover[hover-fill],
.fill-hover-light-blue:hover[hover-fill] *,
.fill-hover-light-blue:hover [hover-fill],
.fill-hover-light-blue:hover [hover-fill] * .rect-hover-light-blue:hover[hover-rect],
.rect-hover-light-blue:hover[hover-rect] *,
.rect-hover-light-blue:hover [hover-rect],
.rect-hover-light-blue:hover [hover-rect] * {
    fill: #eaf5ff !important;
}

.bg-hover-transparent:hover[hover-bg],
.bg-hover-transparent:hover [hover-bg] {
    background-color: rgba(0, 0, 0, 0) !important;
}

.text-hover-transparent:hover[hover-text],
.text-hover-transparent:hover [hover-text] {
    color: rgba(0, 0, 0, 0) !important;
}

.border-hover-transparent:hover[hover-border],
.border-hover-transparent:hover [hover-border] {
    border-color: rgba(0, 0, 0, 0) !important;
}

.stroke-hover-transparent:hover[hover-stroke],
.stroke-hover-transparent:hover[hover-stroke] *,
.stroke-hover-transparent:hover [hover-stroke],
.stroke-hover-transparent:hover [hover-stroke] * {
    stroke: rgba(0, 0, 0, 0) !important;
}

.fill-hover-transparent:hover[hover-fill],
.fill-hover-transparent:hover[hover-fill] *,
.fill-hover-transparent:hover [hover-fill],
.fill-hover-transparent:hover [hover-fill] * .rect-hover-transparent:hover[hover-rect],
.rect-hover-transparent:hover[hover-rect] *,
.rect-hover-transparent:hover [hover-rect],
.rect-hover-transparent:hover [hover-rect] * {
    fill: rgba(0, 0, 0, 0) !important;
}

.rotate-45 {
    transform: rotate(45deg);
}

.rotate-hover-45:hover[hover-rotate],
.rotate-hover-45:hover [hover-rotate] {
    transform: rotate(45deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-hover-90:hover[hover-rotate],
.rotate-hover-90:hover [hover-rotate] {
    transform: rotate(90deg);
}

.rotate-135 {
    transform: rotate(135deg);
}

.rotate-hover-135:hover[hover-rotate],
.rotate-hover-135:hover [hover-rotate] {
    transform: rotate(135deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-hover-180:hover[hover-rotate],
.rotate-hover-180:hover [hover-rotate] {
    transform: rotate(180deg);
}

.rotate-225 {
    transform: rotate(225deg);
}

.rotate-hover-225:hover[hover-rotate],
.rotate-hover-225:hover [hover-rotate] {
    transform: rotate(225deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

.rotate-hover-270:hover[hover-rotate],
.rotate-hover-270:hover [hover-rotate] {
    transform: rotate(270deg);
}

.rotate-315 {
    transform: rotate(315deg);
}

.rotate-hover-315:hover[hover-rotate],
.rotate-hover-315:hover [hover-rotate] {
    transform: rotate(315deg);
}

.rotate-360 {
    transform: rotate(360deg);
}

.rotate-hover-360:hover[hover-rotate],
.rotate-hover-360:hover [hover-rotate] {
    transform: rotate(360deg);
}

.rotate-reverse-45 {
    transform: rotate(-45deg);
}

.rotate-hover-reverse-45:hover[hover-rotate],
.rotate-hover-reverse-45:hover [hover-rotate] {
    transform: rotate(-45deg);
}

.rotate-reverse-90 {
    transform: rotate(-90deg);
}

.rotate-hover-reverse-90:hover[hover-rotate],
.rotate-hover-reverse-90:hover [hover-rotate] {
    transform: rotate(-90deg);
}

.rotate-reverse-135 {
    transform: rotate(-135deg);
}

.rotate-hover-reverse-135:hover[hover-rotate],
.rotate-hover-reverse-135:hover [hover-rotate] {
    transform: rotate(-135deg);
}

.rotate-reverse-180 {
    transform: rotate(-180deg);
}

.rotate-hover-reverse-180:hover[hover-rotate],
.rotate-hover-reverse-180:hover [hover-rotate] {
    transform: rotate(-180deg);
}

.rotate-reverse-225 {
    transform: rotate(-225deg);
}

.rotate-hover-reverse-225:hover[hover-rotate],
.rotate-hover-reverse-225:hover [hover-rotate] {
    transform: rotate(-225deg);
}

.rotate-reverse-270 {
    transform: rotate(-270deg);
}

.rotate-hover-reverse-270:hover[hover-rotate],
.rotate-hover-reverse-270:hover [hover-rotate] {
    transform: rotate(-270deg);
}

.rotate-reverse-315 {
    transform: rotate(-315deg);
}

.rotate-hover-reverse-315:hover[hover-rotate],
.rotate-hover-reverse-315:hover [hover-rotate] {
    transform: rotate(-315deg);
}

.rotate-reverse-360 {
    transform: rotate(-360deg);
}

.rotate-hover-reverse-360:hover[hover-rotate],
.rotate-hover-reverse-360:hover [hover-rotate] {
    transform: rotate(-360deg);
}

.rounded-hover:hover[hover-rounded],
.rounded-hover:hover [hover-rounded] {
    border-radius: 0.375rem !important;
}

.rounded-hover-0:hover[hover-rounded],
.rounded-hover-0:hover [hover-rounded] {
    border-radius: 0 !important;
}

.rounded-hover-1:hover[hover-rounded],
.rounded-hover-1:hover [hover-rounded] {
    border-radius: 0.25rem !important;
}

.rounded-hover-2:hover[hover-rounded],
.rounded-hover-2:hover [hover-rounded] {
    border-radius: 0.375rem !important;
}

.rounded-hover-3:hover[hover-rounded],
.rounded-hover-3:hover [hover-rounded] {
    border-radius: 0.5rem !important;
}

.rounded-hover-4:hover[hover-rounded],
.rounded-hover-4:hover [hover-rounded] {
    border-radius: 1rem !important;
}

.rounded-hover-5:hover[hover-rounded],
.rounded-hover-5:hover [hover-rounded] {
    border-radius: 2rem !important;
}

.rounded-hover-circle:hover[hover-rounded],
.rounded-hover-circle:hover [hover-rounded] {
    border-radius: 50% !important;
}

.rounded-hover-pill:hover[hover-rounded],
.rounded-hover-pill:hover [hover-rounded] {
    border-radius: 50rem !important;
}

.text-hover-underline:hover[hover-underline],
.text-hover-underline:hover [hover-underline] {
    text-decoration: underline !important;
}

.slide-hover-right[hover-slide],
.slide-hover-right [hover-slide] {
    margin-left: 0;
    margin-right: var(--spacer-2);
}

.slide-hover-right:hover[hover-slide],
.slide-hover-right:hover [hover-slide] {
    margin-left: var(--spacer-2);
    margin-right: 0;
}

.opacity-hover-0:hover[hover-opacity],
.opacity-hover-0:hover [hover-opacity] {
    opacity: 0 !important;
}

.opacity-hover-25:hover[hover-opacity],
.opacity-hover-25:hover [hover-opacity] {
    opacity: 0.25 !important;
}

.opacity-hover-50:hover[hover-opacity],
.opacity-hover-50:hover [hover-opacity] {
    opacity: 0.5 !important;
}

.opacity-hover-75:hover[hover-opacity],
.opacity-hover-75:hover [hover-opacity] {
    opacity: 0.75 !important;
}

.opacity-hover-100:hover[hover-opacity],
.opacity-hover-100:hover [hover-opacity] {
    opacity: 1 !important;
}

.bg-focus-primary:focus[focus-bg],
.bg-focus-primary:focus [focus-bg] {
    background-color: #0d6efd !important;
}

.text-focus-primary:focus[focus-text],
.text-focus-primary:focus [focus-text] {
    color: #0d6efd !important;
}

.border-focus-primary:focus[focus-border],
.border-focus-primary:focus [focus-border] {
    border-color: #0d6efd !important;
}

.stroke-focus-primary:focus[focus-stroke],
.stroke-focus-primary:focus[focus-stroke] *,
.stroke-focus-primary:focus [focus-stroke],
.stroke-focus-primary:focus [focus-stroke] * {
    stroke: #0d6efd !important;
}

.fill-focus-primary:focus[focus-fill],
.fill-focus-primary:focus[focus-fill] *,
.fill-focus-primary:focus [focus-fill],
.fill-focus-primary:focus [focus-fill] * .rect-focus-primary:focus[focus-rect],
.rect-focus-primary:focus[focus-rect] *,
.rect-focus-primary:focus [focus-rect],
.rect-focus-primary:focus [focus-rect] * {
    fill: #0d6efd !important;
}

.bg-focus-secondary:focus[focus-bg],
.bg-focus-secondary:focus [focus-bg] {
    background-color: #6c757d !important;
}

.text-focus-secondary:focus[focus-text],
.text-focus-secondary:focus [focus-text] {
    color: #6c757d !important;
}

.border-focus-secondary:focus[focus-border],
.border-focus-secondary:focus [focus-border] {
    border-color: #6c757d !important;
}

.stroke-focus-secondary:focus[focus-stroke],
.stroke-focus-secondary:focus[focus-stroke] *,
.stroke-focus-secondary:focus [focus-stroke],
.stroke-focus-secondary:focus [focus-stroke] * {
    stroke: #6c757d !important;
}

.fill-focus-secondary:focus[focus-fill],
.fill-focus-secondary:focus[focus-fill] *,
.fill-focus-secondary:focus [focus-fill],
.fill-focus-secondary:focus [focus-fill] * .rect-focus-secondary:focus[focus-rect],
.rect-focus-secondary:focus[focus-rect] *,
.rect-focus-secondary:focus [focus-rect],
.rect-focus-secondary:focus [focus-rect] * {
    fill: #6c757d !important;
}

.bg-focus-success:focus[focus-bg],
.bg-focus-success:focus [focus-bg] {
    background-color: #198754 !important;
}

.text-focus-success:focus[focus-text],
.text-focus-success:focus [focus-text] {
    color: #198754 !important;
}

.border-focus-success:focus[focus-border],
.border-focus-success:focus [focus-border] {
    border-color: #198754 !important;
}

.stroke-focus-success:focus[focus-stroke],
.stroke-focus-success:focus[focus-stroke] *,
.stroke-focus-success:focus [focus-stroke],
.stroke-focus-success:focus [focus-stroke] * {
    stroke: #198754 !important;
}

.fill-focus-success:focus[focus-fill],
.fill-focus-success:focus[focus-fill] *,
.fill-focus-success:focus [focus-fill],
.fill-focus-success:focus [focus-fill] * .rect-focus-success:focus[focus-rect],
.rect-focus-success:focus[focus-rect] *,
.rect-focus-success:focus [focus-rect],
.rect-focus-success:focus [focus-rect] * {
    fill: #198754 !important;
}

.bg-focus-info:focus[focus-bg],
.bg-focus-info:focus [focus-bg] {
    background-color: #0dcaf0 !important;
}

.text-focus-info:focus[focus-text],
.text-focus-info:focus [focus-text] {
    color: #0dcaf0 !important;
}

.border-focus-info:focus[focus-border],
.border-focus-info:focus [focus-border] {
    border-color: #0dcaf0 !important;
}

.stroke-focus-info:focus[focus-stroke],
.stroke-focus-info:focus[focus-stroke] *,
.stroke-focus-info:focus [focus-stroke],
.stroke-focus-info:focus [focus-stroke] * {
    stroke: #0dcaf0 !important;
}

.fill-focus-info:focus[focus-fill],
.fill-focus-info:focus[focus-fill] *,
.fill-focus-info:focus [focus-fill],
.fill-focus-info:focus [focus-fill] * .rect-focus-info:focus[focus-rect],
.rect-focus-info:focus[focus-rect] *,
.rect-focus-info:focus [focus-rect],
.rect-focus-info:focus [focus-rect] * {
    fill: #0dcaf0 !important;
}

.bg-focus-warning:focus[focus-bg],
.bg-focus-warning:focus [focus-bg] {
    background-color: #ffc107 !important;
}

.text-focus-warning:focus[focus-text],
.text-focus-warning:focus [focus-text] {
    color: #ffc107 !important;
}

.border-focus-warning:focus[focus-border],
.border-focus-warning:focus [focus-border] {
    border-color: #ffc107 !important;
}

.stroke-focus-warning:focus[focus-stroke],
.stroke-focus-warning:focus[focus-stroke] *,
.stroke-focus-warning:focus [focus-stroke],
.stroke-focus-warning:focus [focus-stroke] * {
    stroke: #ffc107 !important;
}

.fill-focus-warning:focus[focus-fill],
.fill-focus-warning:focus[focus-fill] *,
.fill-focus-warning:focus [focus-fill],
.fill-focus-warning:focus [focus-fill] * .rect-focus-warning:focus[focus-rect],
.rect-focus-warning:focus[focus-rect] *,
.rect-focus-warning:focus [focus-rect],
.rect-focus-warning:focus [focus-rect] * {
    fill: #ffc107 !important;
}

.bg-focus-danger:focus[focus-bg],
.bg-focus-danger:focus [focus-bg] {
    background-color: #dc3545 !important;
}

.text-focus-danger:focus[focus-text],
.text-focus-danger:focus [focus-text] {
    color: #dc3545 !important;
}

.border-focus-danger:focus[focus-border],
.border-focus-danger:focus [focus-border] {
    border-color: #dc3545 !important;
}

.stroke-focus-danger:focus[focus-stroke],
.stroke-focus-danger:focus[focus-stroke] *,
.stroke-focus-danger:focus [focus-stroke],
.stroke-focus-danger:focus [focus-stroke] * {
    stroke: #dc3545 !important;
}

.fill-focus-danger:focus[focus-fill],
.fill-focus-danger:focus[focus-fill] *,
.fill-focus-danger:focus [focus-fill],
.fill-focus-danger:focus [focus-fill] * .rect-focus-danger:focus[focus-rect],
.rect-focus-danger:focus[focus-rect] *,
.rect-focus-danger:focus [focus-rect],
.rect-focus-danger:focus [focus-rect] * {
    fill: #dc3545 !important;
}

.bg-focus-light:focus[focus-bg],
.bg-focus-light:focus [focus-bg] {
    background-color: #f8f9fa !important;
}

.text-focus-light:focus[focus-text],
.text-focus-light:focus [focus-text] {
    color: #f8f9fa !important;
}

.border-focus-light:focus[focus-border],
.border-focus-light:focus [focus-border] {
    border-color: #f8f9fa !important;
}

.stroke-focus-light:focus[focus-stroke],
.stroke-focus-light:focus[focus-stroke] *,
.stroke-focus-light:focus [focus-stroke],
.stroke-focus-light:focus [focus-stroke] * {
    stroke: #f8f9fa !important;
}

.fill-focus-light:focus[focus-fill],
.fill-focus-light:focus[focus-fill] *,
.fill-focus-light:focus [focus-fill],
.fill-focus-light:focus [focus-fill] * .rect-focus-light:focus[focus-rect],
.rect-focus-light:focus[focus-rect] *,
.rect-focus-light:focus [focus-rect],
.rect-focus-light:focus [focus-rect] * {
    fill: #f8f9fa !important;
}

.bg-focus-dark:focus[focus-bg],
.bg-focus-dark:focus [focus-bg] {
    background-color: #212529 !important;
}

.text-focus-dark:focus[focus-text],
.text-focus-dark:focus [focus-text] {
    color: #212529 !important;
}

.border-focus-dark:focus[focus-border],
.border-focus-dark:focus [focus-border] {
    border-color: #212529 !important;
}

.stroke-focus-dark:focus[focus-stroke],
.stroke-focus-dark:focus[focus-stroke] *,
.stroke-focus-dark:focus [focus-stroke],
.stroke-focus-dark:focus [focus-stroke] * {
    stroke: #212529 !important;
}

.fill-focus-dark:focus[focus-fill],
.fill-focus-dark:focus[focus-fill] *,
.fill-focus-dark:focus [focus-fill],
.fill-focus-dark:focus [focus-fill] * .rect-focus-dark:focus[focus-rect],
.rect-focus-dark:focus[focus-rect] *,
.rect-focus-dark:focus [focus-rect],
.rect-focus-dark:focus [focus-rect] * {
    fill: #212529 !important;
}

.bg-focus-white:focus[focus-bg],
.bg-focus-white:focus [focus-bg] {
    background-color: #fff !important;
}

.text-focus-white:focus[focus-text],
.text-focus-white:focus [focus-text] {
    color: #fff !important;
}

.border-focus-white:focus[focus-border],
.border-focus-white:focus [focus-border] {
    border-color: #fff !important;
}

.stroke-focus-white:focus[focus-stroke],
.stroke-focus-white:focus[focus-stroke] *,
.stroke-focus-white:focus [focus-stroke],
.stroke-focus-white:focus [focus-stroke] * {
    stroke: #fff !important;
}

.fill-focus-white:focus[focus-fill],
.fill-focus-white:focus[focus-fill] *,
.fill-focus-white:focus [focus-fill],
.fill-focus-white:focus [focus-fill] * .rect-focus-white:focus[focus-rect],
.rect-focus-white:focus[focus-rect] *,
.rect-focus-white:focus [focus-rect],
.rect-focus-white:focus [focus-rect] * {
    fill: #fff !important;
}

.bg-focus-black:focus[focus-bg],
.bg-focus-black:focus [focus-bg] {
    background-color: #3b4141 !important;
}

.text-focus-black:focus[focus-text],
.text-focus-black:focus [focus-text] {
    color: #3b4141 !important;
}

.border-focus-black:focus[focus-border],
.border-focus-black:focus [focus-border] {
    border-color: #3b4141 !important;
}

.stroke-focus-black:focus[focus-stroke],
.stroke-focus-black:focus[focus-stroke] *,
.stroke-focus-black:focus [focus-stroke],
.stroke-focus-black:focus [focus-stroke] * {
    stroke: #3b4141 !important;
}

.fill-focus-black:focus[focus-fill],
.fill-focus-black:focus[focus-fill] *,
.fill-focus-black:focus [focus-fill],
.fill-focus-black:focus [focus-fill] * .rect-focus-black:focus[focus-rect],
.rect-focus-black:focus[focus-rect] *,
.rect-focus-black:focus [focus-rect],
.rect-focus-black:focus [focus-rect] * {
    fill: #3b4141 !important;
}

.bg-focus-red:focus[focus-bg],
.bg-focus-red:focus [focus-bg] {
    background-color: #d71921 !important;
}

.text-focus-red:focus[focus-text],
.text-focus-red:focus [focus-text] {
    color: #d71921 !important;
}

.border-focus-red:focus[focus-border],
.border-focus-red:focus [focus-border] {
    border-color: #d71921 !important;
}

.stroke-focus-red:focus[focus-stroke],
.stroke-focus-red:focus[focus-stroke] *,
.stroke-focus-red:focus [focus-stroke],
.stroke-focus-red:focus [focus-stroke] * {
    stroke: #d71921 !important;
}

.fill-focus-red:focus[focus-fill],
.fill-focus-red:focus[focus-fill] *,
.fill-focus-red:focus [focus-fill],
.fill-focus-red:focus [focus-fill] * .rect-focus-red:focus[focus-rect],
.rect-focus-red:focus[focus-rect] *,
.rect-focus-red:focus [focus-rect],
.rect-focus-red:focus [focus-rect] * {
    fill: #d71921 !important;
}

.bg-focus-red-50:focus[focus-bg],
.bg-focus-red-50:focus [focus-bg] {
    background-color: #c61f2c !important;
}

.text-focus-red-50:focus[focus-text],
.text-focus-red-50:focus [focus-text] {
    color: #c61f2c !important;
}

.border-focus-red-50:focus[focus-border],
.border-focus-red-50:focus [focus-border] {
    border-color: #c61f2c !important;
}

.stroke-focus-red-50:focus[focus-stroke],
.stroke-focus-red-50:focus[focus-stroke] *,
.stroke-focus-red-50:focus [focus-stroke],
.stroke-focus-red-50:focus [focus-stroke] * {
    stroke: #c61f2c !important;
}

.fill-focus-red-50:focus[focus-fill],
.fill-focus-red-50:focus[focus-fill] *,
.fill-focus-red-50:focus [focus-fill],
.fill-focus-red-50:focus [focus-fill] * .rect-focus-red-50:focus[focus-rect],
.rect-focus-red-50:focus[focus-rect] *,
.rect-focus-red-50:focus [focus-rect],
.rect-focus-red-50:focus [focus-rect] * {
    fill: #c61f2c !important;
}

.bg-focus-pink:focus[focus-bg],
.bg-focus-pink:focus [focus-bg] {
    background-color: #ffebeb !important;
}

.text-focus-pink:focus[focus-text],
.text-focus-pink:focus [focus-text] {
    color: #ffebeb !important;
}

.border-focus-pink:focus[focus-border],
.border-focus-pink:focus [focus-border] {
    border-color: #ffebeb !important;
}

.stroke-focus-pink:focus[focus-stroke],
.stroke-focus-pink:focus[focus-stroke] *,
.stroke-focus-pink:focus [focus-stroke],
.stroke-focus-pink:focus [focus-stroke] * {
    stroke: #ffebeb !important;
}

.fill-focus-pink:focus[focus-fill],
.fill-focus-pink:focus[focus-fill] *,
.fill-focus-pink:focus [focus-fill],
.fill-focus-pink:focus [focus-fill] * .rect-focus-pink:focus[focus-rect],
.rect-focus-pink:focus[focus-rect] *,
.rect-focus-pink:focus [focus-rect],
.rect-focus-pink:focus [focus-rect] * {
    fill: #ffebeb !important;
}

.bg-focus-pink-50:focus[focus-bg],
.bg-focus-pink-50:focus [focus-bg] {
    background-color: #ffc9c9 !important;
}

.text-focus-pink-50:focus[focus-text],
.text-focus-pink-50:focus [focus-text] {
    color: #ffc9c9 !important;
}

.border-focus-pink-50:focus[focus-border],
.border-focus-pink-50:focus [focus-border] {
    border-color: #ffc9c9 !important;
}

.stroke-focus-pink-50:focus[focus-stroke],
.stroke-focus-pink-50:focus[focus-stroke] *,
.stroke-focus-pink-50:focus [focus-stroke],
.stroke-focus-pink-50:focus [focus-stroke] * {
    stroke: #ffc9c9 !important;
}

.fill-focus-pink-50:focus[focus-fill],
.fill-focus-pink-50:focus[focus-fill] *,
.fill-focus-pink-50:focus [focus-fill],
.fill-focus-pink-50:focus [focus-fill] * .rect-focus-pink-50:focus[focus-rect],
.rect-focus-pink-50:focus[focus-rect] *,
.rect-focus-pink-50:focus [focus-rect],
.rect-focus-pink-50:focus [focus-rect] * {
    fill: #ffc9c9 !important;
}

.bg-focus-light-pink:focus[focus-bg],
.bg-focus-light-pink:focus [focus-bg] {
    background-color: #fff8f8 !important;
}

.text-focus-light-pink:focus[focus-text],
.text-focus-light-pink:focus [focus-text] {
    color: #fff8f8 !important;
}

.border-focus-light-pink:focus[focus-border],
.border-focus-light-pink:focus [focus-border] {
    border-color: #fff8f8 !important;
}

.stroke-focus-light-pink:focus[focus-stroke],
.stroke-focus-light-pink:focus[focus-stroke] *,
.stroke-focus-light-pink:focus [focus-stroke],
.stroke-focus-light-pink:focus [focus-stroke] * {
    stroke: #fff8f8 !important;
}

.fill-focus-light-pink:focus[focus-fill],
.fill-focus-light-pink:focus[focus-fill] *,
.fill-focus-light-pink:focus [focus-fill],
.fill-focus-light-pink:focus [focus-fill] * .rect-focus-light-pink:focus[focus-rect],
.rect-focus-light-pink:focus[focus-rect] *,
.rect-focus-light-pink:focus [focus-rect],
.rect-focus-light-pink:focus [focus-rect] * {
    fill: #fff8f8 !important;
}

.bg-focus-gray:focus[focus-bg],
.bg-focus-gray:focus [focus-bg] {
    background-color: #454545 !important;
}

.text-focus-gray:focus[focus-text],
.text-focus-gray:focus [focus-text] {
    color: #454545 !important;
}

.border-focus-gray:focus[focus-border],
.border-focus-gray:focus [focus-border] {
    border-color: #454545 !important;
}

.stroke-focus-gray:focus[focus-stroke],
.stroke-focus-gray:focus[focus-stroke] *,
.stroke-focus-gray:focus [focus-stroke],
.stroke-focus-gray:focus [focus-stroke] * {
    stroke: #454545 !important;
}

.fill-focus-gray:focus[focus-fill],
.fill-focus-gray:focus[focus-fill] *,
.fill-focus-gray:focus [focus-fill],
.fill-focus-gray:focus [focus-fill] * .rect-focus-gray:focus[focus-rect],
.rect-focus-gray:focus[focus-rect] *,
.rect-focus-gray:focus [focus-rect],
.rect-focus-gray:focus [focus-rect] * {
    fill: #454545 !important;
}

.bg-focus-gray-50:focus[focus-bg],
.bg-focus-gray-50:focus [focus-bg] {
    background-color: #939393 !important;
}

.text-focus-gray-50:focus[focus-text],
.text-focus-gray-50:focus [focus-text] {
    color: #939393 !important;
}

.border-focus-gray-50:focus[focus-border],
.border-focus-gray-50:focus [focus-border] {
    border-color: #939393 !important;
}

.stroke-focus-gray-50:focus[focus-stroke],
.stroke-focus-gray-50:focus[focus-stroke] *,
.stroke-focus-gray-50:focus [focus-stroke],
.stroke-focus-gray-50:focus [focus-stroke] * {
    stroke: #939393 !important;
}

.fill-focus-gray-50:focus[focus-fill],
.fill-focus-gray-50:focus[focus-fill] *,
.fill-focus-gray-50:focus [focus-fill],
.fill-focus-gray-50:focus [focus-fill] * .rect-focus-gray-50:focus[focus-rect],
.rect-focus-gray-50:focus[focus-rect] *,
.rect-focus-gray-50:focus [focus-rect],
.rect-focus-gray-50:focus [focus-rect] * {
    fill: #939393 !important;
}

.bg-focus-light-gray:focus[focus-bg],
.bg-focus-light-gray:focus [focus-bg] {
    background-color: #c8c8c8 !important;
}

.text-focus-light-gray:focus[focus-text],
.text-focus-light-gray:focus [focus-text] {
    color: #c8c8c8 !important;
}

.border-focus-light-gray:focus[focus-border],
.border-focus-light-gray:focus [focus-border] {
    border-color: #c8c8c8 !important;
}

.stroke-focus-light-gray:focus[focus-stroke],
.stroke-focus-light-gray:focus[focus-stroke] *,
.stroke-focus-light-gray:focus [focus-stroke],
.stroke-focus-light-gray:focus [focus-stroke] * {
    stroke: #c8c8c8 !important;
}

.fill-focus-light-gray:focus[focus-fill],
.fill-focus-light-gray:focus[focus-fill] *,
.fill-focus-light-gray:focus [focus-fill],
.fill-focus-light-gray:focus [focus-fill] * .rect-focus-light-gray:focus[focus-rect],
.rect-focus-light-gray:focus[focus-rect] *,
.rect-focus-light-gray:focus [focus-rect],
.rect-focus-light-gray:focus [focus-rect] * {
    fill: #c8c8c8 !important;
}

.bg-focus-light-gray-50:focus[focus-bg],
.bg-focus-light-gray-50:focus [focus-bg] {
    background-color: #f3f4f5 !important;
}

.text-focus-light-gray-50:focus[focus-text],
.text-focus-light-gray-50:focus [focus-text] {
    color: #f3f4f5 !important;
}

.border-focus-light-gray-50:focus[focus-border],
.border-focus-light-gray-50:focus [focus-border] {
    border-color: #f3f4f5 !important;
}

.stroke-focus-light-gray-50:focus[focus-stroke],
.stroke-focus-light-gray-50:focus[focus-stroke] *,
.stroke-focus-light-gray-50:focus [focus-stroke],
.stroke-focus-light-gray-50:focus [focus-stroke] * {
    stroke: #f3f4f5 !important;
}

.fill-focus-light-gray-50:focus[focus-fill],
.fill-focus-light-gray-50:focus[focus-fill] *,
.fill-focus-light-gray-50:focus [focus-fill],
.fill-focus-light-gray-50:focus [focus-fill] * .rect-focus-light-gray-50:focus[focus-rect],
.rect-focus-light-gray-50:focus[focus-rect] *,
.rect-focus-light-gray-50:focus [focus-rect],
.rect-focus-light-gray-50:focus [focus-rect] * {
    fill: #f3f4f5 !important;
}

.bg-focus-green:focus[focus-bg],
.bg-focus-green:focus [focus-bg] {
    background-color: #0c8858 !important;
}

.text-focus-green:focus[focus-text],
.text-focus-green:focus [focus-text] {
    color: #0c8858 !important;
}

.border-focus-green:focus[focus-border],
.border-focus-green:focus [focus-border] {
    border-color: #0c8858 !important;
}

.stroke-focus-green:focus[focus-stroke],
.stroke-focus-green:focus[focus-stroke] *,
.stroke-focus-green:focus [focus-stroke],
.stroke-focus-green:focus [focus-stroke] * {
    stroke: #0c8858 !important;
}

.fill-focus-green:focus[focus-fill],
.fill-focus-green:focus[focus-fill] *,
.fill-focus-green:focus [focus-fill],
.fill-focus-green:focus [focus-fill] * .rect-focus-green:focus[focus-rect],
.rect-focus-green:focus[focus-rect] *,
.rect-focus-green:focus [focus-rect],
.rect-focus-green:focus [focus-rect] * {
    fill: #0c8858 !important;
}

.bg-focus-green-50:focus[focus-bg],
.bg-focus-green-50:focus [focus-bg] {
    background-color: #d6ecd7 !important;
}

.text-focus-green-50:focus[focus-text],
.text-focus-green-50:focus [focus-text] {
    color: #d6ecd7 !important;
}

.border-focus-green-50:focus[focus-border],
.border-focus-green-50:focus [focus-border] {
    border-color: #d6ecd7 !important;
}

.stroke-focus-green-50:focus[focus-stroke],
.stroke-focus-green-50:focus[focus-stroke] *,
.stroke-focus-green-50:focus [focus-stroke],
.stroke-focus-green-50:focus [focus-stroke] * {
    stroke: #d6ecd7 !important;
}

.fill-focus-green-50:focus[focus-fill],
.fill-focus-green-50:focus[focus-fill] *,
.fill-focus-green-50:focus [focus-fill],
.fill-focus-green-50:focus [focus-fill] * .rect-focus-green-50:focus[focus-rect],
.rect-focus-green-50:focus[focus-rect] *,
.rect-focus-green-50:focus [focus-rect],
.rect-focus-green-50:focus [focus-rect] * {
    fill: #d6ecd7 !important;
}

.bg-focus-light-green:focus[focus-bg],
.bg-focus-light-green:focus [focus-bg] {
    background-color: #42c504 !important;
}

.text-focus-light-green:focus[focus-text],
.text-focus-light-green:focus [focus-text] {
    color: #42c504 !important;
}

.border-focus-light-green:focus[focus-border],
.border-focus-light-green:focus [focus-border] {
    border-color: #42c504 !important;
}

.stroke-focus-light-green:focus[focus-stroke],
.stroke-focus-light-green:focus[focus-stroke] *,
.stroke-focus-light-green:focus [focus-stroke],
.stroke-focus-light-green:focus [focus-stroke] * {
    stroke: #42c504 !important;
}

.fill-focus-light-green:focus[focus-fill],
.fill-focus-light-green:focus[focus-fill] *,
.fill-focus-light-green:focus [focus-fill],
.fill-focus-light-green:focus [focus-fill] * .rect-focus-light-green:focus[focus-rect],
.rect-focus-light-green:focus[focus-rect] *,
.rect-focus-light-green:focus [focus-rect],
.rect-focus-light-green:focus [focus-rect] * {
    fill: #42c504 !important;
}

.bg-focus-dark-blue:focus[focus-bg],
.bg-focus-dark-blue:focus [focus-bg] {
    background-color: #0e2f87 !important;
}

.text-focus-dark-blue:focus[focus-text],
.text-focus-dark-blue:focus [focus-text] {
    color: #0e2f87 !important;
}

.border-focus-dark-blue:focus[focus-border],
.border-focus-dark-blue:focus [focus-border] {
    border-color: #0e2f87 !important;
}

.stroke-focus-dark-blue:focus[focus-stroke],
.stroke-focus-dark-blue:focus[focus-stroke] *,
.stroke-focus-dark-blue:focus [focus-stroke],
.stroke-focus-dark-blue:focus [focus-stroke] * {
    stroke: #0e2f87 !important;
}

.fill-focus-dark-blue:focus[focus-fill],
.fill-focus-dark-blue:focus[focus-fill] *,
.fill-focus-dark-blue:focus [focus-fill],
.fill-focus-dark-blue:focus [focus-fill] * .rect-focus-dark-blue:focus[focus-rect],
.rect-focus-dark-blue:focus[focus-rect] *,
.rect-focus-dark-blue:focus [focus-rect],
.rect-focus-dark-blue:focus [focus-rect] * {
    fill: #0e2f87 !important;
}

.bg-focus-nice-blue:focus[focus-bg],
.bg-focus-nice-blue:focus [focus-bg] {
    background-color: #0e68ba !important;
}

.text-focus-nice-blue:focus[focus-text],
.text-focus-nice-blue:focus [focus-text] {
    color: #0e68ba !important;
}

.border-focus-nice-blue:focus[focus-border],
.border-focus-nice-blue:focus [focus-border] {
    border-color: #0e68ba !important;
}

.stroke-focus-nice-blue:focus[focus-stroke],
.stroke-focus-nice-blue:focus[focus-stroke] *,
.stroke-focus-nice-blue:focus [focus-stroke],
.stroke-focus-nice-blue:focus [focus-stroke] * {
    stroke: #0e68ba !important;
}

.fill-focus-nice-blue:focus[focus-fill],
.fill-focus-nice-blue:focus[focus-fill] *,
.fill-focus-nice-blue:focus [focus-fill],
.fill-focus-nice-blue:focus [focus-fill] * .rect-focus-nice-blue:focus[focus-rect],
.rect-focus-nice-blue:focus[focus-rect] *,
.rect-focus-nice-blue:focus [focus-rect],
.rect-focus-nice-blue:focus [focus-rect] * {
    fill: #0e68ba !important;
}

.bg-focus-navy-blue:focus[focus-bg],
.bg-focus-navy-blue:focus [focus-bg] {
    background-color: #1f296b !important;
}

.text-focus-navy-blue:focus[focus-text],
.text-focus-navy-blue:focus [focus-text] {
    color: #1f296b !important;
}

.border-focus-navy-blue:focus[focus-border],
.border-focus-navy-blue:focus [focus-border] {
    border-color: #1f296b !important;
}

.stroke-focus-navy-blue:focus[focus-stroke],
.stroke-focus-navy-blue:focus[focus-stroke] *,
.stroke-focus-navy-blue:focus [focus-stroke],
.stroke-focus-navy-blue:focus [focus-stroke] * {
    stroke: #1f296b !important;
}

.fill-focus-navy-blue:focus[focus-fill],
.fill-focus-navy-blue:focus[focus-fill] *,
.fill-focus-navy-blue:focus [focus-fill],
.fill-focus-navy-blue:focus [focus-fill] * .rect-focus-navy-blue:focus[focus-rect],
.rect-focus-navy-blue:focus[focus-rect] *,
.rect-focus-navy-blue:focus [focus-rect],
.rect-focus-navy-blue:focus [focus-rect] * {
    fill: #1f296b !important;
}

.bg-focus-blueberry:focus[focus-bg],
.bg-focus-blueberry:focus [focus-bg] {
    background-color: #343e96 !important;
}

.text-focus-blueberry:focus[focus-text],
.text-focus-blueberry:focus [focus-text] {
    color: #343e96 !important;
}

.border-focus-blueberry:focus[focus-border],
.border-focus-blueberry:focus [focus-border] {
    border-color: #343e96 !important;
}

.stroke-focus-blueberry:focus[focus-stroke],
.stroke-focus-blueberry:focus[focus-stroke] *,
.stroke-focus-blueberry:focus [focus-stroke],
.stroke-focus-blueberry:focus [focus-stroke] * {
    stroke: #343e96 !important;
}

.fill-focus-blueberry:focus[focus-fill],
.fill-focus-blueberry:focus[focus-fill] *,
.fill-focus-blueberry:focus [focus-fill],
.fill-focus-blueberry:focus [focus-fill] * .rect-focus-blueberry:focus[focus-rect],
.rect-focus-blueberry:focus[focus-rect] *,
.rect-focus-blueberry:focus [focus-rect],
.rect-focus-blueberry:focus [focus-rect] * {
    fill: #343e96 !important;
}

.bg-focus-light-blue:focus[focus-bg],
.bg-focus-light-blue:focus [focus-bg] {
    background-color: #eaf5ff !important;
}

.text-focus-light-blue:focus[focus-text],
.text-focus-light-blue:focus [focus-text] {
    color: #eaf5ff !important;
}

.border-focus-light-blue:focus[focus-border],
.border-focus-light-blue:focus [focus-border] {
    border-color: #eaf5ff !important;
}

.stroke-focus-light-blue:focus[focus-stroke],
.stroke-focus-light-blue:focus[focus-stroke] *,
.stroke-focus-light-blue:focus [focus-stroke],
.stroke-focus-light-blue:focus [focus-stroke] * {
    stroke: #eaf5ff !important;
}

.fill-focus-light-blue:focus[focus-fill],
.fill-focus-light-blue:focus[focus-fill] *,
.fill-focus-light-blue:focus [focus-fill],
.fill-focus-light-blue:focus [focus-fill] * .rect-focus-light-blue:focus[focus-rect],
.rect-focus-light-blue:focus[focus-rect] *,
.rect-focus-light-blue:focus [focus-rect],
.rect-focus-light-blue:focus [focus-rect] * {
    fill: #eaf5ff !important;
}

.bg-focus-transparent:focus[focus-bg],
.bg-focus-transparent:focus [focus-bg] {
    background-color: rgba(0, 0, 0, 0) !important;
}

.text-focus-transparent:focus[focus-text],
.text-focus-transparent:focus [focus-text] {
    color: rgba(0, 0, 0, 0) !important;
}

.border-focus-transparent:focus[focus-border],
.border-focus-transparent:focus [focus-border] {
    border-color: rgba(0, 0, 0, 0) !important;
}

.stroke-focus-transparent:focus[focus-stroke],
.stroke-focus-transparent:focus[focus-stroke] *,
.stroke-focus-transparent:focus [focus-stroke],
.stroke-focus-transparent:focus [focus-stroke] * {
    stroke: rgba(0, 0, 0, 0) !important;
}

.fill-focus-transparent:focus[focus-fill],
.fill-focus-transparent:focus[focus-fill] *,
.fill-focus-transparent:focus [focus-fill],
.fill-focus-transparent:focus [focus-fill] * .rect-focus-transparent:focus[focus-rect],
.rect-focus-transparent:focus[focus-rect] *,
.rect-focus-transparent:focus [focus-rect],
.rect-focus-transparent:focus [focus-rect] * {
    fill: rgba(0, 0, 0, 0) !important;
}

.rotate-45 {
    transform: rotate(45deg);
}

.rotate-focus-45:focus[focus-rotate],
.rotate-focus-45:focus [focus-rotate] {
    transform: rotate(45deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-focus-90:focus[focus-rotate],
.rotate-focus-90:focus [focus-rotate] {
    transform: rotate(90deg);
}

.rotate-135 {
    transform: rotate(135deg);
}

.rotate-focus-135:focus[focus-rotate],
.rotate-focus-135:focus [focus-rotate] {
    transform: rotate(135deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-focus-180:focus[focus-rotate],
.rotate-focus-180:focus [focus-rotate] {
    transform: rotate(180deg);
}

.rotate-225 {
    transform: rotate(225deg);
}

.rotate-focus-225:focus[focus-rotate],
.rotate-focus-225:focus [focus-rotate] {
    transform: rotate(225deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

.rotate-focus-270:focus[focus-rotate],
.rotate-focus-270:focus [focus-rotate] {
    transform: rotate(270deg);
}

.rotate-315 {
    transform: rotate(315deg);
}

.rotate-focus-315:focus[focus-rotate],
.rotate-focus-315:focus [focus-rotate] {
    transform: rotate(315deg);
}

.rotate-360 {
    transform: rotate(360deg);
}

.rotate-focus-360:focus[focus-rotate],
.rotate-focus-360:focus [focus-rotate] {
    transform: rotate(360deg);
}

.rotate-reverse-45 {
    transform: rotate(-45deg);
}

.rotate-focus-reverse-45:focus[focus-rotate],
.rotate-focus-reverse-45:focus [focus-rotate] {
    transform: rotate(-45deg);
}

.rotate-reverse-90 {
    transform: rotate(-90deg);
}

.rotate-focus-reverse-90:focus[focus-rotate],
.rotate-focus-reverse-90:focus [focus-rotate] {
    transform: rotate(-90deg);
}

.rotate-reverse-135 {
    transform: rotate(-135deg);
}

.rotate-focus-reverse-135:focus[focus-rotate],
.rotate-focus-reverse-135:focus [focus-rotate] {
    transform: rotate(-135deg);
}

.rotate-reverse-180 {
    transform: rotate(-180deg);
}

.rotate-focus-reverse-180:focus[focus-rotate],
.rotate-focus-reverse-180:focus [focus-rotate] {
    transform: rotate(-180deg);
}

.rotate-reverse-225 {
    transform: rotate(-225deg);
}

.rotate-focus-reverse-225:focus[focus-rotate],
.rotate-focus-reverse-225:focus [focus-rotate] {
    transform: rotate(-225deg);
}

.rotate-reverse-270 {
    transform: rotate(-270deg);
}

.rotate-focus-reverse-270:focus[focus-rotate],
.rotate-focus-reverse-270:focus [focus-rotate] {
    transform: rotate(-270deg);
}

.rotate-reverse-315 {
    transform: rotate(-315deg);
}

.rotate-focus-reverse-315:focus[focus-rotate],
.rotate-focus-reverse-315:focus [focus-rotate] {
    transform: rotate(-315deg);
}

.rotate-reverse-360 {
    transform: rotate(-360deg);
}

.rotate-focus-reverse-360:focus[focus-rotate],
.rotate-focus-reverse-360:focus [focus-rotate] {
    transform: rotate(-360deg);
}

.rounded-focus:focus[focus-rounded],
.rounded-focus:focus [focus-rounded] {
    border-radius: 0.375rem !important;
}

.rounded-focus-0:focus[focus-rounded],
.rounded-focus-0:focus [focus-rounded] {
    border-radius: 0 !important;
}

.rounded-focus-1:focus[focus-rounded],
.rounded-focus-1:focus [focus-rounded] {
    border-radius: 0.25rem !important;
}

.rounded-focus-2:focus[focus-rounded],
.rounded-focus-2:focus [focus-rounded] {
    border-radius: 0.375rem !important;
}

.rounded-focus-3:focus[focus-rounded],
.rounded-focus-3:focus [focus-rounded] {
    border-radius: 0.5rem !important;
}

.rounded-focus-4:focus[focus-rounded],
.rounded-focus-4:focus [focus-rounded] {
    border-radius: 1rem !important;
}

.rounded-focus-5:focus[focus-rounded],
.rounded-focus-5:focus [focus-rounded] {
    border-radius: 2rem !important;
}

.rounded-focus-circle:focus[focus-rounded],
.rounded-focus-circle:focus [focus-rounded] {
    border-radius: 50% !important;
}

.rounded-focus-pill:focus[focus-rounded],
.rounded-focus-pill:focus [focus-rounded] {
    border-radius: 50rem !important;
}

.text-focus-underline:focus[focus-underline],
.text-focus-underline:focus [focus-underline] {
    text-decoration: underline !important;
}

.slide-focus-right[focus-slide],
.slide-focus-right [focus-slide] {
    margin-left: 0;
    margin-right: var(--spacer-2);
}

.slide-focus-right:focus[focus-slide],
.slide-focus-right:focus [focus-slide] {
    margin-left: var(--spacer-2);
    margin-right: 0;
}

.opacity-focus-0:focus[focus-opacity],
.opacity-focus-0:focus [focus-opacity] {
    opacity: 0 !important;
}

.opacity-focus-25:focus[focus-opacity],
.opacity-focus-25:focus [focus-opacity] {
    opacity: 0.25 !important;
}

.opacity-focus-50:focus[focus-opacity],
.opacity-focus-50:focus [focus-opacity] {
    opacity: 0.5 !important;
}

.opacity-focus-75:focus[focus-opacity],
.opacity-focus-75:focus [focus-opacity] {
    opacity: 0.75 !important;
}

.opacity-focus-100:focus[focus-opacity],
.opacity-focus-100:focus [focus-opacity] {
    opacity: 1 !important;
}
/*!
 * Bootstrap  v5.3.7 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme="light"] {
    --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: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-white: #fff;
    --bs-black: #3b4141;
    --bs-red: #d71921;
    --bs-red-50: #c61f2c;
    --bs-pink: #ffebeb;
    --bs-pink-50: #ffc9c9;
    --bs-light-pink: #fff8f8;
    --bs-gray: #454545;
    --bs-gray-50: #939393;
    --bs-light-gray: #c8c8c8;
    --bs-light-gray-50: #f3f4f5;
    --bs-green: #0c8858;
    --bs-green-50: #d6ecd7;
    --bs-light-green: #42c504;
    --bs-dark-blue: #0e2f87;
    --bs-nice-blue: #0e68ba;
    --bs-navy-blue: #1f296b;
    --bs-blueberry: #343e96;
    --bs-light-blue: #eaf5ff;
    --bs-transparent: transparent;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --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-primary-text-emphasis: rgb(5.2, 44, 101.2);
    --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
    --bs-success-text-emphasis: rgb(10, 54, 33.6);
    --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
    --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
    --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
    --bs-light-text-emphasis: #495057;
    --bs-dark-text-emphasis: #495057;
    --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
    --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
    --bs-success-bg-subtle: rgb(209, 231, 220.8);
    --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
    --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
    --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
    --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
    --bs-dark-bg-subtle: #ced4da;
    --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
    --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
    --bs-success-border-subtle: rgb(163, 207, 186.6);
    --bs-info-border-subtle: rgb(158.2, 233.8, 249);
    --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
    --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
    --bs-light-border-subtle: #e9ecef;
    --bs-dark-border-subtle: #adb5bd;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --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(to bottom, #0e68ba, #313b9d);
    --bs-gradient-50: linear-gradient(93deg, #fff, #2084e9 42%, #1659b8 97%, #0d2e87 100%);
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: calc(1.275rem + 0.3vw);
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #3b4141;
    --bs-body-color-rgb: 59, 65, 65;
    --bs-body-bg: #fff;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-emphasis-color: #000;
    --bs-emphasis-color-rgb: 0, 0, 0;
    --bs-secondary-color: rgba(33, 37, 41, 0.75);
    --bs-secondary-color-rgb: 33, 37, 41;
    --bs-secondary-bg: #e9ecef;
    --bs-secondary-bg-rgb: 233, 236, 239;
    --bs-tertiary-color: rgba(33, 37, 41, 0.5);
    --bs-tertiary-color-rgb: 33, 37, 41;
    --bs-tertiary-bg: #f8f9fa;
    --bs-tertiary-bg-rgb: 248, 249, 250;
    --bs-heading-color: inherit;
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13, 110, 253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: rgb(10.4, 88, 202.4);
    --bs-link-hover-color-rgb: 10, 88, 202;
    --bs-code-color: #d63384;
    --bs-highlight-color: #212529;
    --bs-highlight-bg: rgb(255, 242.6, 205.4);
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #454545;
    --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-xxl: 2rem;
    --bs-border-radius-2xl: var(--bs-border-radius-xxl);
    --bs-border-radius-pill: 50rem;
    --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --bs-focus-ring-width: 0.25rem;
    --bs-focus-ring-opacity: 0.25;
    --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
    --bs-form-valid-color: #198754;
    --bs-form-valid-border-color: #198754;
    --bs-form-invalid-color: #dc3545;
    --bs-form-invalid-border-color: #dc3545;
}

@media (min-width: 1200px) {
    :root,
    [data-bs-theme="light"] {
        --bs-body-font-size: 1.5rem;
    }
}

[data-bs-theme="dark"] {
    color-scheme: dark;
    --bs-body-color: #dee2e6;
    --bs-body-color-rgb: 222, 226, 230;
    --bs-body-bg: #212529;
    --bs-body-bg-rgb: 33, 37, 41;
    --bs-emphasis-color: #fff;
    --bs-emphasis-color-rgb: 255, 255, 255;
    --bs-secondary-color: rgba(222, 226, 230, 0.75);
    --bs-secondary-color-rgb: 222, 226, 230;
    --bs-secondary-bg: #343a40;
    --bs-secondary-bg-rgb: 52, 58, 64;
    --bs-tertiary-color: rgba(222, 226, 230, 0.5);
    --bs-tertiary-color-rgb: 222, 226, 230;
    --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
    --bs-tertiary-bg-rgb: 43, 48, 53;
    --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
    --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
    --bs-success-text-emphasis: rgb(117, 183, 152.4);
    --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
    --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
    --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
    --bs-light-text-emphasis: #f8f9fa;
    --bs-dark-text-emphasis: #dee2e6;
    --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
    --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
    --bs-success-bg-subtle: rgb(5, 27, 16.8);
    --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
    --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
    --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
    --bs-light-bg-subtle: #343a40;
    --bs-dark-bg-subtle: #1a1d20;
    --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
    --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
    --bs-success-border-subtle: rgb(15, 81, 50.4);
    --bs-info-border-subtle: rgb(7.8, 121.2, 144);
    --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
    --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
    --bs-light-border-subtle: #495057;
    --bs-dark-border-subtle: #343a40;
    --bs-heading-color: inherit;
    --bs-link-color: rgb(109.8, 168, 253.8);
    --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
    --bs-link-color-rgb: 110, 168, 254;
    --bs-link-hover-color-rgb: 139, 185, 254;
    --bs-code-color: rgb(230.4, 132.6, 181.2);
    --bs-highlight-color: #dee2e6;
    --bs-highlight-bg: rgb(102, 77.2, 2.8);
    --bs-border-color: #495057;
    --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
    --bs-form-valid-color: rgb(117, 183, 152.4);
    --bs-form-valid-border-color: rgb(117, 183, 152.4);
    --bs-form-invalid-color: rgb(234, 133.8, 143.4);
    --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}

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

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 0.25;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1,
    .h1 {
        font-size: 2.5rem;
    }
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2,
    .h2 {
        font-size: 2rem;
    }
}

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3,
    .h3 {
        font-size: 1.75rem;
    }
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4,
    .h4 {
        font-size: 1.5rem;
    }
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

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

mark,
.mark {
    padding: 0.1875em;
    color: var(--bs-highlight-color);
    background-color: var(--bs-highlight-bg);
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}

    a:hover {
        --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
    }

    a:not([href]):not([class]),
    a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none;
    }

pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal;
    }

code {
    font-size: 0.875em;
    color: var(--bs-code-color);
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: 0.25rem;
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
    }

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-secondary-color);
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

    button:focus:not(:focus-visible) {
        outline: 0;
    }

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

    select:disabled {
        opacity: 1;
    }

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
    display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

    button:not(:disabled),
    [type="button"]:not(:disabled),
    [type="reset"]:not(:disabled),
    [type="submit"]:not(:disabled) {
        cursor: pointer;
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    line-height: inherit;
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend + * {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-weight: 300;
    line-height: 1.2;
    font-size: calc(1.625rem + 4.5vw);
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem;
    }
}

.display-2 {
    font-weight: 300;
    line-height: 1.2;
    font-size: calc(1.575rem + 3.9vw);
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem;
    }
}

.display-3 {
    font-weight: 300;
    line-height: 1.2;
    font-size: calc(1.525rem + 3.3vw);
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}

.display-4 {
    font-weight: 300;
    line-height: 1.2;
    font-size: calc(1.475rem + 2.7vw);
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

.display-5 {
    font-weight: 300;
    line-height: 1.2;
    font-size: calc(1.425rem + 2.1vw);
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.display-6 {
    font-weight: 300;
    line-height: 1.2;
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

    .list-inline-item:not(:last-child) {
        margin-right: 0.5rem;
    }

.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

    .blockquote > :last-child {
        margin-bottom: 0;
    }

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.875em;
    color: #6c757d;
}

    .blockquote-footer::before {
        content: "— ";
    }

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

.img-thumbnail {
    padding: 0.25rem;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 0.875em;
    color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1260px;
    }
}

@media (min-width: 1900px) {
    .container-xxxl,
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1640px;
    }
}

:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
    --bs-breakpoint-xxxl: 1900px;
}

.row {
    --bs-gutter-x: 1rem;
    --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.33333333%;
}

.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.66666667%;
}

.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: 0.75rem;
}

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

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

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

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

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

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

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

.g-7,
.gx-7 {
    --bs-gutter-x: 2.5rem;
}

.g-7,
.gy-7 {
    --bs-gutter-y: 2.5rem;
}

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

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

.g-9,
.gx-9 {
    --bs-gutter-x: 3.5rem;
}

.g-9,
.gy-9 {
    --bs-gutter-y: 3.5rem;
}

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

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

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

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

@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.33333333%;
    }

    .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.66666667%;
    }

    .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: 0.75rem;
    }

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

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

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

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

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

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

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

    .g-sm-7,
    .gx-sm-7 {
        --bs-gutter-x: 2.5rem;
    }

    .g-sm-7,
    .gy-sm-7 {
        --bs-gutter-y: 2.5rem;
    }

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

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

    .g-sm-9,
    .gx-sm-9 {
        --bs-gutter-x: 3.5rem;
    }

    .g-sm-9,
    .gy-sm-9 {
        --bs-gutter-y: 3.5rem;
    }

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

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

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

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

@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.33333333%;
    }

    .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.66666667%;
    }

    .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: 0.75rem;
    }

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

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

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

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

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

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

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

    .g-md-7,
    .gx-md-7 {
        --bs-gutter-x: 2.5rem;
    }

    .g-md-7,
    .gy-md-7 {
        --bs-gutter-y: 2.5rem;
    }

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

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

    .g-md-9,
    .gx-md-9 {
        --bs-gutter-x: 3.5rem;
    }

    .g-md-9,
    .gy-md-9 {
        --bs-gutter-y: 3.5rem;
    }

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

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

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

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

@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.33333333%;
    }

    .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.66666667%;
    }

    .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: 0.75rem;
    }

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

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

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

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

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

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

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

    .g-lg-7,
    .gx-lg-7 {
        --bs-gutter-x: 2.5rem;
    }

    .g-lg-7,
    .gy-lg-7 {
        --bs-gutter-y: 2.5rem;
    }

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

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

    .g-lg-9,
    .gx-lg-9 {
        --bs-gutter-x: 3.5rem;
    }

    .g-lg-9,
    .gy-lg-9 {
        --bs-gutter-y: 3.5rem;
    }

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

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

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

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

@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.33333333%;
    }

    .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.66666667%;
    }

    .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: 0.75rem;
    }

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

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

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

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

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

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

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

    .g-xl-7,
    .gx-xl-7 {
        --bs-gutter-x: 2.5rem;
    }

    .g-xl-7,
    .gy-xl-7 {
        --bs-gutter-y: 2.5rem;
    }

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

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

    .g-xl-9,
    .gx-xl-9 {
        --bs-gutter-x: 3.5rem;
    }

    .g-xl-9,
    .gy-xl-9 {
        --bs-gutter-y: 3.5rem;
    }

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

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

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

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

@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.33333333%;
    }

    .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.66666667%;
    }

    .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: 0.75rem;
    }

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

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

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

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

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

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

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

    .g-xxl-7,
    .gx-xxl-7 {
        --bs-gutter-x: 2.5rem;
    }

    .g-xxl-7,
    .gy-xxl-7 {
        --bs-gutter-y: 2.5rem;
    }

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

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

    .g-xxl-9,
    .gx-xxl-9 {
        --bs-gutter-x: 3.5rem;
    }

    .g-xxl-9,
    .gy-xxl-9 {
        --bs-gutter-y: 3.5rem;
    }

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

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

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

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

@media (min-width: 1900px) {
    .col-xxxl {
        flex: 1 0 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xxxl-0 {
        margin-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .g-xxxl-7,
    .gx-xxxl-7 {
        --bs-gutter-x: 2.5rem;
    }

    .g-xxxl-7,
    .gy-xxxl-7 {
        --bs-gutter-y: 2.5rem;
    }

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

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

    .g-xxxl-9,
    .gx-xxxl-9 {
        --bs-gutter-x: 3.5rem;
    }

    .g-xxxl-9,
    .gy-xxxl-9 {
        --bs-gutter-y: 3.5rem;
    }

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

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

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

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

.table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    --bs-table-active-color: var(--bs-emphasis-color);
    --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
    --bs-table-hover-color: var(--bs-emphasis-color);
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}

    .table > :not(caption) > * > * {
        padding: 0.5rem 0.5rem;
        color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
        background-color: var(--bs-table-bg);
        border-bottom-width: var(--bs-border-width);
        box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
    }

    .table > tbody {
        vertical-align: inherit;
    }

    .table > thead {
        vertical-align: bottom;
    }

.table-group-divider {
    border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
    caption-side: top;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
    border-width: var(--bs-border-width) 0;
}

    .table-bordered > :not(caption) > * > * {
        border-width: 0 var(--bs-border-width);
    }

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
    border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
    --bs-table-color-state: var(--bs-table-active-color);
    --bs-table-bg-state: var(--bs-table-active-bg);
}

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

.table-primary {
    --bs-table-color: #000;
    --bs-table-bg: rgb(206.6, 226, 254.6);
    --bs-table-border-color: rgb(165.28, 180.8, 203.68);
    --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-secondary {
    --bs-table-color: #000;
    --bs-table-bg: rgb(225.6, 227.4, 229);
    --bs-table-border-color: rgb(180.48, 181.92, 183.2);
    --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-success {
    --bs-table-color: #000;
    --bs-table-bg: rgb(209, 231, 220.8);
    --bs-table-border-color: rgb(167.2, 184.8, 176.64);
    --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-info {
    --bs-table-color: #000;
    --bs-table-bg: rgb(206.6, 244.4, 252);
    --bs-table-border-color: rgb(165.28, 195.52, 201.6);
    --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-warning {
    --bs-table-color: #000;
    --bs-table-bg: rgb(255, 242.6, 205.4);
    --bs-table-border-color: rgb(204, 194.08, 164.32);
    --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-danger {
    --bs-table-color: #000;
    --bs-table-bg: rgb(248, 214.6, 217.8);
    --bs-table-border-color: rgb(198.4, 171.68, 174.24);
    --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-light {
    --bs-table-color: #000;
    --bs-table-bg: #f8f9fa;
    --bs-table-border-color: rgb(198.4, 199.2, 200);
    --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
    --bs-table-striped-color: #000;
    --bs-table-active-bg: rgb(223.2, 224.1, 225);
    --bs-table-active-color: #000;
    --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: #212529;
    --bs-table-border-color: rgb(77.4, 80.6, 83.8);
    --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
    --bs-table-hover-color: #fff;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1899.98px) {
    .table-responsive-xxxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.form-label {
    margin-bottom: 0.5rem;
}

.col-form-label {
    padding-top: calc(0.375rem + var(--bs-border-width));
    padding-bottom: calc(0.375rem + var(--bs-border-width));
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + var(--bs-border-width));
    padding-bottom: calc(0.5rem + var(--bs-border-width));
    font-size: 1.25rem;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + var(--bs-border-width));
    padding-bottom: calc(0.25rem + var(--bs-border-width));
    font-size: 0.875rem;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-secondary-color);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control[type="file"] {
    overflow: hidden;
}

    .form-control[type="file"]:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: rgb(134, 182.5, 254);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
    min-width: 85px;
    height: 1.5em;
    margin: 0;
}

.form-control::-webkit-datetime-edit {
    display: block;
    padding: 0;
}

.form-control::placeholder {
    color: var(--bs-secondary-color);
    opacity: 1;
}

.form-control:disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
}

.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: var(--bs-body-color);
    background-color: var(--bs-tertiary-bg);
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: var(--bs-border-width);
    border-radius: 0;
    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;
}

@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: rgba(0, 0, 0, 0);
    border: solid rgba(0, 0, 0, 0);
    border-width: var(--bs-border-width) 0;
}

    .form-control-plaintext:focus {
        outline: 0;
    }

    .form-control-plaintext.form-control-sm,
    .form-control-plaintext.form-control-lg {
        padding-right: 0;
        padding-left: 0;
    }

.form-control-sm {
    min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: var(--bs-border-radius-sm);
}

    .form-control-sm::file-selector-button {
        padding: 0.25rem 0.5rem;
        margin: -0.25rem -0.5rem;
        margin-inline-end: 0.5rem;
    }

.form-control-lg {
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: var(--bs-border-radius-lg);
}

    .form-control-lg::file-selector-button {
        padding: 0.5rem 1rem;
        margin: -0.5rem -1rem;
        margin-inline-end: 1rem;
    }

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
    width: 3rem;
    height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
    padding: 0.375rem;
}

    .form-control-color:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

    .form-control-color::-moz-color-swatch {
        border: 0 !important;
        border-radius: var(--bs-border-radius);
    }

    .form-control-color::-webkit-color-swatch {
        border: 0 !important;
        border-radius: var(--bs-border-radius);
    }

    .form-control-color.form-control-sm {
        height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
    }

    .form-control-color.form-control-lg {
        height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    }

.form-select {
    --bs-form-select-bg-img: 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 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-select {
        transition: none;
    }
}

.form-select:focus {
    border-color: rgb(134, 182.5, 254);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}

.form-select:disabled {
    background-color: var(--bs-secondary-bg);
}

.form-select:-moz-focusring {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme="dark"] .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

    .form-check .form-check-input {
        float: left;
        margin-left: -1.5em;
    }

.form-check-reverse {
    padding-right: 1.5em;
    padding-left: 0;
    text-align: right;
}

    .form-check-reverse .form-check-input {
        float: right;
        margin-right: -1.5em;
        margin-left: 0;
    }

.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    print-color-adjust: exact;
}

    .form-check-input[type="checkbox"] {
        border-radius: 0.25em;
    }

    .form-check-input[type="radio"] {
        border-radius: 50%;
    }

    .form-check-input:active {
        filter: brightness(90%);
    }

    .form-check-input:focus {
        border-color: rgb(134, 182.5, 254);
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

        .form-check-input:checked[type="checkbox"] {
            --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
        }

        .form-check-input:checked[type="radio"] {
            --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
        }

    .form-check-input[type="checkbox"]:indeterminate {
        background-color: #0d6efd;
        border-color: #0d6efd;
        --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
    }

    .form-check-input:disabled {
        pointer-events: none;
        filter: none;
        opacity: 0.5;
    }

        .form-check-input[disabled] ~ .form-check-label,
        .form-check-input:disabled ~ .form-check-label {
            cursor: default;
            opacity: 0.5;
        }

.form-switch {
    padding-left: 2.5em;
}

    .form-switch .form-check-input {
        --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
        width: 2em;
        margin-left: -2.5em;
        background-image: var(--bs-form-switch-bg);
        background-position: left center;
        border-radius: 2em;
        transition: background-position 0.15s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .form-switch .form-check-input {
        transition: none;
    }
}

.form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-position: right center;
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch.form-check-reverse {
    padding-right: 2.5em;
    padding-left: 0;
}

    .form-switch.form-check-reverse .form-check-input {
        margin-right: -2.5em;
        margin-left: 0;
    }

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

    .btn-check[disabled] + .btn,
    .btn-check:disabled + .btn {
        pointer-events: none;
        filter: none;
        opacity: 0.65;
    }

[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
}

    .form-range:focus {
        outline: 0;
    }

        .form-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        .form-range:focus::-moz-range-thumb {
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

    .form-range::-moz-focus-outer {
        border: 0;
    }

    .form-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -0.25rem;
        appearance: none;
        background-color: #0d6efd;
        border: 0;
        border-radius: 1rem;
        transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        transition: none;
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: rgb(182.4, 211.5, 254.4);
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    background-color: var(--bs-secondary-bg);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 1rem;
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    appearance: none;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        transition: none;
    }
}

.form-range::-moz-range-thumb:active {
    background-color: rgb(182.4, 211.5, 254.4);
}

.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    background-color: var(--bs-secondary-bg);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 1rem;
}

.form-range:disabled {
    pointer-events: none;
}

    .form-range:disabled::-webkit-slider-thumb {
        background-color: var(--bs-secondary-color);
    }

    .form-range:disabled::-moz-range-thumb {
        background-color: var(--bs-secondary-color);
    }

.form-floating {
    position: relative;
}

    .form-floating > .form-control,
    .form-floating > .form-control-plaintext,
    .form-floating > .form-select {
        height: calc(3.5rem + calc(var(--bs-border-width) * 2));
        min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
        line-height: 1.25;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        max-width: 100%;
        height: 100%;
        padding: 1rem 0.75rem;
        overflow: hidden;
        color: rgba(var(--bs-body-color-rgb), 0.65);
        text-align: start;
        text-overflow: ellipsis;
        white-space: nowrap;
        pointer-events: none;
        border: var(--bs-border-width) solid rgba(0, 0, 0, 0);
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        transition: none;
    }
}

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

    .form-floating > .form-control::placeholder,
    .form-floating > .form-control-plaintext::placeholder {
        color: rgba(0, 0, 0, 0);
    }

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

    .form-floating > .form-control:-webkit-autofill,
    .form-floating > .form-control-plaintext:-webkit-autofill {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    padding-left: 0.75rem;
}

    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-control:not(:placeholder-shown) ~ label,
    .form-floating > .form-control-plaintext ~ label,
    .form-floating > .form-select ~ label {
        transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    }

.form-floating > .form-control:-webkit-autofill ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
    position: absolute;
    inset: 1rem 0.375rem;
    z-index: -1;
    height: 1.5em;
    content: "";
    background-color: var(--bs-body-bg);
    border-radius: var(--bs-border-radius);
}

.form-floating > textarea:disabled ~ label::after {
    background-color: var(--bs-secondary-bg);
}

.form-floating > .form-control-plaintext ~ label {
    border-width: var(--bs-border-width) 0;
}

.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
    color: #6c757d;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control,
    .input-group > .form-select,
    .input-group > .form-floating {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
    }

        .input-group > .form-control:focus,
        .input-group > .form-select:focus,
        .input-group > .form-floating:focus-within {
            z-index: 5;
        }

    .input-group .btn {
        position: relative;
        z-index: 2;
    }

        .input-group .btn:focus {
            z-index: 5;
        }

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(-1 * var(--bs-border-width));
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-valid-color);
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: var(--bs-success);
    border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--bs-form-valid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:valid:focus,
    .form-control.is-valid:focus {
        border-color: var(--bs-form-valid-border-color);
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
    }

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid,
.form-select.is-valid {
    border-color: var(--bs-form-valid-border-color);
}

    .was-validated .form-select:valid:not([multiple]):not([size]),
    .was-validated .form-select:valid:not([multiple])[size="1"],
    .form-select.is-valid:not([multiple]):not([size]),
    .form-select.is-valid:not([multiple])[size="1"] {
        --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
        padding-right: 4.125rem;
        background-position: right 0.75rem center, center right 2.25rem;
        background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

    .was-validated .form-select:valid:focus,
    .form-select.is-valid:focus {
        border-color: var(--bs-form-valid-border-color);
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
    }

.was-validated .form-control-color:valid,
.form-control-color.is-valid {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
    border-color: var(--bs-form-valid-border-color);
}

    .was-validated .form-check-input:valid:checked,
    .form-check-input.is-valid:checked {
        background-color: var(--bs-form-valid-color);
    }

    .was-validated .form-check-input:valid:focus,
    .form-check-input.is-valid:focus {
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
    }

    .was-validated .form-check-input:valid ~ .form-check-label,
    .form-check-input.is-valid ~ .form-check-label {
        color: var(--bs-form-valid-color);
    }

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid,
.input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
    z-index: 3;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: var(--bs-danger);
    border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:invalid:focus,
    .form-control.is-invalid:focus {
        border-color: var(--bs-form-invalid-border-color);
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
    }

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid,
.form-select.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

    .was-validated .form-select:invalid:not([multiple]):not([size]),
    .was-validated .form-select:invalid:not([multiple])[size="1"],
    .form-select.is-invalid:not([multiple]):not([size]),
    .form-select.is-invalid:not([multiple])[size="1"] {
        --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
        padding-right: 4.125rem;
        background-position: right 0.75rem center, center right 2.25rem;
        background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

    .was-validated .form-select:invalid:focus,
    .form-select.is-invalid:focus {
        border-color: var(--bs-form-invalid-border-color);
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
    }

.was-validated .form-control-color:invalid,
.form-control-color.is-invalid {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

    .was-validated .form-check-input:invalid:checked,
    .form-check-input.is-invalid:checked {
        background-color: var(--bs-form-invalid-color);
    }

    .was-validated .form-check-input:invalid:focus,
    .form-check-input.is-invalid:focus {
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
    }

    .was-validated .form-check-input:invalid ~ .form-check-label,
    .form-check-input.is-invalid ~ .form-check-label {
        color: var(--bs-form-invalid-color);
    }

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid,
.input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
    z-index: 4;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --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;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    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;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn,
:not(.btn-check) + .btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

    .btn-check:checked + .btn:focus-visible,
    :not(.btn-check) + .btn:active:focus-visible,
    .btn:first-child:active:focus-visible,
    .btn.active:focus-visible,
    .btn.show:focus-visible {
        box-shadow: var(--bs-btn-focus-box-shadow);
    }

.btn-check:checked:focus-visible + .btn {
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(11.05, 93.5, 215.05);
    --bs-btn-hover-border-color: rgb(10.4, 88, 202.4);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(10.4, 88, 202.4);
    --bs-btn-active-border-color: rgb(9.75, 82.5, 189.75);
    --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;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6c757d;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);
    --bs-btn-hover-border-color: rgb(86.4, 93.6, 100);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(86.4, 93.6, 100);
    --bs-btn-active-border-color: rgb(81, 87.75, 93.75);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(21.25, 114.75, 71.4);
    --bs-btn-hover-border-color: rgb(20, 108, 67.2);
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(20, 108, 67.2);
    --bs-btn-active-border-color: rgb(18.75, 101.25, 63);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

.btn-info {
    --bs-btn-color: #000;
    --bs-btn-bg: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);
    --bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
    --bs-btn-focus-shadow-rgb: 11, 172, 204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(61.4, 212.6, 243);
    --bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
    --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(255, 205.4, 56.6);
    --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(187, 45.05, 58.65);
    --bs-btn-hover-border-color: rgb(176, 42.4, 55.2);
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(176, 42.4, 55.2);
    --bs-btn-active-border-color: rgb(165, 39.75, 51.75);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dc3545;
    --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
    --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(198.4, 199.2, 200);
    --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
    --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-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);
    --bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(77.4, 80.6, 83.8);
    --bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #212529;
    --bs-btn-disabled-border-color: #212529;
}

.btn-white {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: white;
    --bs-btn-focus-shadow-rgb: 217, 217, 217;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: white;
    --bs-btn-active-border-color: white;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #fff;
}

.btn-black {
    --bs-btn-color: #fff;
    --bs-btn-bg: #3b4141;
    --bs-btn-border-color: #3b4141;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(50.15, 55.25, 55.25);
    --bs-btn-hover-border-color: rgb(47.2, 52, 52);
    --bs-btn-focus-shadow-rgb: 88, 94, 94;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(47.2, 52, 52);
    --bs-btn-active-border-color: rgb(44.25, 48.75, 48.75);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #3b4141;
    --bs-btn-disabled-border-color: #3b4141;
}

.btn-red {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d71921;
    --bs-btn-border-color: #d71921;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(182.75, 21.25, 28.05);
    --bs-btn-hover-border-color: rgb(172, 20, 26.4);
    --bs-btn-focus-shadow-rgb: 221, 60, 66;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(172, 20, 26.4);
    --bs-btn-active-border-color: rgb(161.25, 18.75, 24.75);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d71921;
    --bs-btn-disabled-border-color: #d71921;
}

.btn-red-50 {
    --bs-btn-color: #fff;
    --bs-btn-bg: #c61f2c;
    --bs-btn-border-color: #c61f2c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(168.3, 26.35, 37.4);
    --bs-btn-hover-border-color: rgb(158.4, 24.8, 35.2);
    --bs-btn-focus-shadow-rgb: 207, 65, 76;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(158.4, 24.8, 35.2);
    --bs-btn-active-border-color: rgb(148.5, 23.25, 33);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #c61f2c;
    --bs-btn-disabled-border-color: #c61f2c;
}

.btn-pink {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffebeb;
    --bs-btn-border-color: #ffebeb;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffeeee;
    --bs-btn-hover-border-color: #ffeded;
    --bs-btn-focus-shadow-rgb: 217, 200, 200;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffefef;
    --bs-btn-active-border-color: #ffeded;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffebeb;
    --bs-btn-disabled-border-color: #ffebeb;
}

.btn-pink-50 {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffc9c9;
    --bs-btn-border-color: #ffc9c9;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(255, 209.1, 209.1);
    --bs-btn-hover-border-color: rgb(255, 206.4, 206.4);
    --bs-btn-focus-shadow-rgb: 217, 171, 171;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(255, 211.8, 211.8);
    --bs-btn-active-border-color: rgb(255, 206.4, 206.4);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc9c9;
    --bs-btn-disabled-border-color: #ffc9c9;
}

.btn-light-pink {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff8f8;
    --bs-btn-border-color: #fff8f8;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(255, 249.05, 249.05);
    --bs-btn-hover-border-color: rgb(255, 248.7, 248.7);
    --bs-btn-focus-shadow-rgb: 217, 211, 211;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(255, 249.4, 249.4);
    --bs-btn-active-border-color: rgb(255, 248.7, 248.7);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #fff8f8;
    --bs-btn-disabled-border-color: #fff8f8;
}

.btn-gray {
    --bs-btn-color: #fff;
    --bs-btn-bg: #454545;
    --bs-btn-border-color: #454545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(58.65, 58.65, 58.65);
    --bs-btn-hover-border-color: rgb(55.2, 55.2, 55.2);
    --bs-btn-focus-shadow-rgb: 97, 97, 97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(55.2, 55.2, 55.2);
    --bs-btn-active-border-color: rgb(51.75, 51.75, 51.75);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #454545;
    --bs-btn-disabled-border-color: #454545;
}

.btn-gray-50 {
    --bs-btn-color: #000;
    --bs-btn-bg: #939393;
    --bs-btn-border-color: #939393;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(163.2, 163.2, 163.2);
    --bs-btn-hover-border-color: rgb(157.8, 157.8, 157.8);
    --bs-btn-focus-shadow-rgb: 125, 125, 125;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(168.6, 168.6, 168.6);
    --bs-btn-active-border-color: rgb(157.8, 157.8, 157.8);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #939393;
    --bs-btn-disabled-border-color: #939393;
}

.btn-light-gray {
    --bs-btn-color: #000;
    --bs-btn-bg: #c8c8c8;
    --bs-btn-border-color: #c8c8c8;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(208.25, 208.25, 208.25);
    --bs-btn-hover-border-color: rgb(205.5, 205.5, 205.5);
    --bs-btn-focus-shadow-rgb: 170, 170, 170;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: lightgray;
    --bs-btn-active-border-color: rgb(205.5, 205.5, 205.5);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #c8c8c8;
    --bs-btn-disabled-border-color: #c8c8c8;
}

.btn-light-gray-50 {
    --bs-btn-color: #000;
    --bs-btn-bg: #f3f4f5;
    --bs-btn-border-color: #f3f4f5;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(244.8, 245.65, 246.5);
    --bs-btn-hover-border-color: rgb(244.2, 245.1, 246);
    --bs-btn-focus-shadow-rgb: 207, 207, 208;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(245.4, 246.2, 247);
    --bs-btn-active-border-color: rgb(244.2, 245.1, 246);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f3f4f5;
    --bs-btn-disabled-border-color: #f3f4f5;
}

.btn-green {
    --bs-btn-color: #000;
    --bs-btn-bg: #0c8858;
    --bs-btn-border-color: #0c8858;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(48.45, 153.85, 113.05);
    --bs-btn-hover-border-color: rgb(36.3, 147.9, 104.7);
    --bs-btn-focus-shadow-rgb: 10, 116, 75;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(60.6, 159.8, 121.4);
    --bs-btn-active-border-color: rgb(36.3, 147.9, 104.7);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0c8858;
    --bs-btn-disabled-border-color: #0c8858;
}

.btn-green-50 {
    --bs-btn-color: #000;
    --bs-btn-bg: #d6ecd7;
    --bs-btn-border-color: #d6ecd7;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(220.15, 238.85, 221);
    --bs-btn-hover-border-color: rgb(218.1, 237.9, 219);
    --bs-btn-focus-shadow-rgb: 182, 201, 183;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(222.2, 239.8, 223);
    --bs-btn-active-border-color: rgb(218.1, 237.9, 219);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #d6ecd7;
    --bs-btn-disabled-border-color: #d6ecd7;
}

.btn-light-green {
    --bs-btn-color: #000;
    --bs-btn-bg: #42c504;
    --bs-btn-border-color: #42c504;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(94.35, 205.7, 41.65);
    --bs-btn-hover-border-color: rgb(84.9, 202.8, 29.1);
    --bs-btn-focus-shadow-rgb: 56, 167, 3;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(103.8, 208.6, 54.2);
    --bs-btn-active-border-color: rgb(84.9, 202.8, 29.1);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #42c504;
    --bs-btn-disabled-border-color: #42c504;
}

.btn-dark-blue {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0e2f87;
    --bs-btn-border-color: #0e2f87;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(11.9, 39.95, 114.75);
    --bs-btn-hover-border-color: rgb(11.2, 37.6, 108);
    --bs-btn-focus-shadow-rgb: 50, 78, 153;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(11.2, 37.6, 108);
    --bs-btn-active-border-color: rgb(10.5, 35.25, 101.25);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0e2f87;
    --bs-btn-disabled-border-color: #0e2f87;
}

.btn-nice-blue {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0e68ba;
    --bs-btn-border-color: #0e68ba;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(11.9, 88.4, 158.1);
    --bs-btn-hover-border-color: rgb(11.2, 83.2, 148.8);
    --bs-btn-focus-shadow-rgb: 50, 127, 196;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(11.2, 83.2, 148.8);
    --bs-btn-active-border-color: rgb(10.5, 78, 139.5);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0e68ba;
    --bs-btn-disabled-border-color: #0e68ba;
}

.btn-navy-blue {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1f296b;
    --bs-btn-border-color: #1f296b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(26.35, 34.85, 90.95);
    --bs-btn-hover-border-color: rgb(24.8, 32.8, 85.6);
    --bs-btn-focus-shadow-rgb: 65, 73, 129;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(24.8, 32.8, 85.6);
    --bs-btn-active-border-color: rgb(23.25, 30.75, 80.25);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1f296b;
    --bs-btn-disabled-border-color: #1f296b;
}

.btn-blueberry {
    --bs-btn-color: #fff;
    --bs-btn-bg: #343e96;
    --bs-btn-border-color: #343e96;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgb(44.2, 52.7, 127.5);
    --bs-btn-hover-border-color: rgb(41.6, 49.6, 120);
    --bs-btn-focus-shadow-rgb: 82, 91, 166;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgb(41.6, 49.6, 120);
    --bs-btn-active-border-color: rgb(39, 46.5, 112.5);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #343e96;
    --bs-btn-disabled-border-color: #343e96;
}

.btn-light-blue {
    --bs-btn-color: #000;
    --bs-btn-bg: #eaf5ff;
    --bs-btn-border-color: #eaf5ff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: rgb(237.15, 246.5, 255);
    --bs-btn-hover-border-color: rgb(236.1, 246, 255);
    --bs-btn-focus-shadow-rgb: 199, 208, 217;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: rgb(238.2, 247, 255);
    --bs-btn-active-border-color: rgb(236.1, 246, 255);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #eaf5ff;
    --bs-btn-disabled-border-color: #eaf5ff;
}

.btn-transparent {
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(0, 0, 0, 0.15);
    --bs-btn-hover-border-color: rgba(0, 0, 0, 0.2);
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(0, 0, 0, 0.2);
    --bs-btn-active-border-color: rgba(0, 0, 0, 0.25);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
    --bs-btn-color: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0d6efd;
    --bs-btn-hover-border-color: #0d6efd;
    --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;
}

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

.btn-outline-success {
    --bs-btn-color: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #198754;
    --bs-btn-hover-border-color: #198754;
    --bs-btn-focus-shadow-rgb: 25, 135, 84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #198754;
    --bs-btn-active-border-color: #198754;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #198754;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #198754;
    --bs-gradient: none;
}

.btn-outline-info {
    --bs-btn-color: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #0dcaf0;
    --bs-btn-hover-border-color: #0dcaf0;
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0dcaf0;
    --bs-btn-active-border-color: #0dcaf0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0dcaf0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-gradient: none;
}

.btn-outline-warning {
    --bs-btn-color: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffc107;
    --bs-btn-hover-border-color: #ffc107;
    --bs-btn-focus-shadow-rgb: 255, 193, 7;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc107;
    --bs-btn-active-border-color: #ffc107;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffc107;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffc107;
    --bs-gradient: none;
}

.btn-outline-danger {
    --bs-btn-color: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dc3545;
    --bs-btn-hover-border-color: #dc3545;
    --bs-btn-focus-shadow-rgb: 220, 53, 69;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #dc3545;
    --bs-btn-active-border-color: #dc3545;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #dc3545;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #dc3545;
    --bs-gradient: none;
}

.btn-outline-light {
    --bs-btn-color: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8f9fa;
    --bs-btn-hover-border-color: #f8f9fa;
    --bs-btn-focus-shadow-rgb: 248, 249, 250;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f8f9fa;
    --bs-btn-active-border-color: #f8f9fa;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f8f9fa;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #f8f9fa;
    --bs-gradient: none;
}

.btn-outline-dark {
    --bs-btn-color: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212529;
    --bs-btn-hover-border-color: #212529;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;
}

.btn-outline-white {
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #fff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #fff;
    --bs-gradient: none;
}

.btn-outline-black {
    --bs-btn-color: #3b4141;
    --bs-btn-border-color: #3b4141;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3b4141;
    --bs-btn-hover-border-color: #3b4141;
    --bs-btn-focus-shadow-rgb: 59, 65, 65;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #3b4141;
    --bs-btn-active-border-color: #3b4141;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #3b4141;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #3b4141;
    --bs-gradient: none;
}

.btn-outline-red {
    --bs-btn-color: #d71921;
    --bs-btn-border-color: #d71921;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d71921;
    --bs-btn-hover-border-color: #d71921;
    --bs-btn-focus-shadow-rgb: 215, 25, 33;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d71921;
    --bs-btn-active-border-color: #d71921;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #d71921;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #d71921;
    --bs-gradient: none;
}

.btn-outline-red-50 {
    --bs-btn-color: #c61f2c;
    --bs-btn-border-color: #c61f2c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c61f2c;
    --bs-btn-hover-border-color: #c61f2c;
    --bs-btn-focus-shadow-rgb: 198, 31, 44;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #c61f2c;
    --bs-btn-active-border-color: #c61f2c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #c61f2c;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #c61f2c;
    --bs-gradient: none;
}

.btn-outline-pink {
    --bs-btn-color: #ffebeb;
    --bs-btn-border-color: #ffebeb;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffebeb;
    --bs-btn-hover-border-color: #ffebeb;
    --bs-btn-focus-shadow-rgb: 255, 235, 235;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffebeb;
    --bs-btn-active-border-color: #ffebeb;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffebeb;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffebeb;
    --bs-gradient: none;
}

.btn-outline-pink-50 {
    --bs-btn-color: #ffc9c9;
    --bs-btn-border-color: #ffc9c9;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffc9c9;
    --bs-btn-hover-border-color: #ffc9c9;
    --bs-btn-focus-shadow-rgb: 255, 201, 201;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc9c9;
    --bs-btn-active-border-color: #ffc9c9;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffc9c9;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffc9c9;
    --bs-gradient: none;
}

.btn-outline-light-pink {
    --bs-btn-color: #fff8f8;
    --bs-btn-border-color: #fff8f8;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #fff8f8;
    --bs-btn-hover-border-color: #fff8f8;
    --bs-btn-focus-shadow-rgb: 255, 248, 248;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #fff8f8;
    --bs-btn-active-border-color: #fff8f8;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff8f8;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #fff8f8;
    --bs-gradient: none;
}

.btn-outline-gray {
    --bs-btn-color: #454545;
    --bs-btn-border-color: #454545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #454545;
    --bs-btn-hover-border-color: #454545;
    --bs-btn-focus-shadow-rgb: 69, 69, 69;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #454545;
    --bs-btn-active-border-color: #454545;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #454545;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #454545;
    --bs-gradient: none;
}

.btn-outline-gray-50 {
    --bs-btn-color: #939393;
    --bs-btn-border-color: #939393;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #939393;
    --bs-btn-hover-border-color: #939393;
    --bs-btn-focus-shadow-rgb: 147, 147, 147;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #939393;
    --bs-btn-active-border-color: #939393;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #939393;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #939393;
    --bs-gradient: none;
}

.btn-outline-light-gray {
    --bs-btn-color: #c8c8c8;
    --bs-btn-border-color: #c8c8c8;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #c8c8c8;
    --bs-btn-hover-border-color: #c8c8c8;
    --bs-btn-focus-shadow-rgb: 200, 200, 200;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c8c8c8;
    --bs-btn-active-border-color: #c8c8c8;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #c8c8c8;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #c8c8c8;
    --bs-gradient: none;
}

.btn-outline-light-gray-50 {
    --bs-btn-color: #f3f4f5;
    --bs-btn-border-color: #f3f4f5;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f3f4f5;
    --bs-btn-hover-border-color: #f3f4f5;
    --bs-btn-focus-shadow-rgb: 243, 244, 245;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f3f4f5;
    --bs-btn-active-border-color: #f3f4f5;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f3f4f5;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #f3f4f5;
    --bs-gradient: none;
}

.btn-outline-green {
    --bs-btn-color: #0c8858;
    --bs-btn-border-color: #0c8858;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #0c8858;
    --bs-btn-hover-border-color: #0c8858;
    --bs-btn-focus-shadow-rgb: 12, 136, 88;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0c8858;
    --bs-btn-active-border-color: #0c8858;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0c8858;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0c8858;
    --bs-gradient: none;
}

.btn-outline-green-50 {
    --bs-btn-color: #d6ecd7;
    --bs-btn-border-color: #d6ecd7;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d6ecd7;
    --bs-btn-hover-border-color: #d6ecd7;
    --bs-btn-focus-shadow-rgb: 214, 236, 215;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #d6ecd7;
    --bs-btn-active-border-color: #d6ecd7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #d6ecd7;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #d6ecd7;
    --bs-gradient: none;
}

.btn-outline-light-green {
    --bs-btn-color: #42c504;
    --bs-btn-border-color: #42c504;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #42c504;
    --bs-btn-hover-border-color: #42c504;
    --bs-btn-focus-shadow-rgb: 66, 197, 4;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #42c504;
    --bs-btn-active-border-color: #42c504;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #42c504;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #42c504;
    --bs-gradient: none;
}

.btn-outline-dark-blue {
    --bs-btn-color: #0e2f87;
    --bs-btn-border-color: #0e2f87;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0e2f87;
    --bs-btn-hover-border-color: #0e2f87;
    --bs-btn-focus-shadow-rgb: 14, 47, 135;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0e2f87;
    --bs-btn-active-border-color: #0e2f87;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0e2f87;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0e2f87;
    --bs-gradient: none;
}

.btn-outline-nice-blue {
    --bs-btn-color: #0e68ba;
    --bs-btn-border-color: #0e68ba;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0e68ba;
    --bs-btn-hover-border-color: #0e68ba;
    --bs-btn-focus-shadow-rgb: 14, 104, 186;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0e68ba;
    --bs-btn-active-border-color: #0e68ba;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0e68ba;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0e68ba;
    --bs-gradient: none;
}

.btn-outline-navy-blue {
    --bs-btn-color: #1f296b;
    --bs-btn-border-color: #1f296b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1f296b;
    --bs-btn-hover-border-color: #1f296b;
    --bs-btn-focus-shadow-rgb: 31, 41, 107;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1f296b;
    --bs-btn-active-border-color: #1f296b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #1f296b;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #1f296b;
    --bs-gradient: none;
}

.btn-outline-blueberry {
    --bs-btn-color: #343e96;
    --bs-btn-border-color: #343e96;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #343e96;
    --bs-btn-hover-border-color: #343e96;
    --bs-btn-focus-shadow-rgb: 52, 62, 150;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #343e96;
    --bs-btn-active-border-color: #343e96;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #343e96;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #343e96;
    --bs-gradient: none;
}

.btn-outline-light-blue {
    --bs-btn-color: #eaf5ff;
    --bs-btn-border-color: #eaf5ff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #eaf5ff;
    --bs-btn-hover-border-color: #eaf5ff;
    --bs-btn-focus-shadow-rgb: 234, 245, 255;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #eaf5ff;
    --bs-btn-active-border-color: #eaf5ff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #eaf5ff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #eaf5ff;
    --bs-gradient: none;
}

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

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-box-shadow: 0 0 0 #000;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    text-decoration: underline;
}

    .btn-link:focus-visible {
        color: var(--bs-btn-color);
    }

    .btn-link:hover {
        color: var(--bs-btn-hover-color);
    }

.btn-lg,
.btn-group-lg > .btn {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}

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

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        transition: none;
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid rgba(0, 0, 0, 0);
        border-bottom: 0;
        border-left: 0.3em solid rgba(0, 0, 0, 0);
    }

    .dropdown-toggle:empty::after {
        margin-left: 0;
    }

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: 0;
        margin-top: var(--bs-dropdown-spacer);
    }

.dropdown-menu-start {
    --bs-position: start;
}

    .dropdown-menu-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

.dropdown-menu-end {
    --bs-position: end;
}

    .dropdown-menu-end[data-bs-popper] {
        right: 0;
        left: auto;
    }

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

        .dropdown-menu-md-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

        .dropdown-menu-md-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

        .dropdown-menu-xxl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

        .dropdown-menu-xxl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (min-width: 1900px) {
    .dropdown-menu-xxxl-start {
        --bs-position: start;
    }

        .dropdown-menu-xxxl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xxxl-end {
        --bs-position: end;
    }

        .dropdown-menu-xxxl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid;
    border-left: 0.3em solid rgba(0, 0, 0, 0);
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropstart .dropdown-toggle::after {
    display: none;
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: var(--bs-dropdown-link-hover-color);
        background-color: var(--bs-dropdown-link-hover-bg);
    }

    .dropdown-item.active,
    .dropdown-item:active {
        color: var(--bs-dropdown-link-active-color);
        text-decoration: none;
        background-color: var(--bs-dropdown-link-active-bg);
    }

    .dropdown-item.disabled,
    .dropdown-item:disabled {
        color: var(--bs-dropdown-link-disabled-color);
        pointer-events: none;
        background-color: rgba(0, 0, 0, 0);
    }

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

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow:;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd;
}

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

    .btn-group > .btn,
    .btn-group-vertical > .btn {
        position: relative;
        flex: 1 1 auto;
    }

        .btn-group > .btn-check:checked + .btn,
        .btn-group > .btn-check:focus + .btn,
        .btn-group > .btn:hover,
        .btn-group > .btn:focus,
        .btn-group > .btn:active,
        .btn-group > .btn.active,
        .btn-group-vertical > .btn-check:checked + .btn,
        .btn-group-vertical > .btn-check:focus + .btn,
        .btn-group-vertical > .btn:hover,
        .btn-group-vertical > .btn:focus,
        .btn-group-vertical > .btn:active,
        .btn-group-vertical > .btn.active {
            z-index: 1;
        }

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .btn-toolbar .input-group {
        width: auto;
    }

.btn-group {
    border-radius: var(--bs-border-radius);
}

    .btn-group > :not(.btn-check:first-child) + .btn,
    .btn-group > .btn-group:not(:first-child) {
        margin-left: calc(-1 * var(--bs-border-width));
    }

    .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
    .btn-group > .btn.dropdown-toggle-split:first-child,
    .btn-group > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn:nth-child(n + 3),
    .btn-group > :not(.btn-check) + .btn,
    .btn-group > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

    .dropdown-toggle-split::after,
    .dropup .dropdown-toggle-split::after,
    .dropend .dropdown-toggle-split::after {
        margin-left: 0;
    }

.dropstart .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .btn-group-vertical > .btn,
    .btn-group-vertical > .btn-group {
        width: 100%;
    }

        .btn-group-vertical > .btn:not(:first-child),
        .btn-group-vertical > .btn-group:not(:first-child) {
            margin-top: calc(-1 * var(--bs-border-width));
        }

        .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
        .btn-group-vertical > .btn-group:not(:last-child) > .btn {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .btn-group-vertical > .btn:nth-child(n + 3),
        .btn-group-vertical > :not(.btn-check) + .btn,
        .btn-group-vertical > .btn-group:not(:first-child) > .btn {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: none;
    border: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:hover,
.nav-link:focus {
    color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.nav-link.disabled,
.nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    --bs-nav-tabs-border-width: var(--bs-border-width);
    --bs-nav-tabs-border-color: var(--bs-border-color);
    --bs-nav-tabs-border-radius: var(--bs-border-radius);
    --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
    --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
    --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
    --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

    .nav-tabs .nav-link {
        margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
        border: var(--bs-nav-tabs-border-width) solid rgba(0, 0, 0, 0);
        border-top-left-radius: var(--bs-nav-tabs-border-radius);
        border-top-right-radius: var(--bs-nav-tabs-border-radius);
    }

        .nav-tabs .nav-link:hover,
        .nav-tabs .nav-link:focus {
            isolation: isolate;
            border-color: var(--bs-nav-tabs-link-hover-border-color);
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-item.show .nav-link {
            color: var(--bs-nav-tabs-link-active-color);
            background-color: var(--bs-nav-tabs-link-active-bg);
            border-color: var(--bs-nav-tabs-link-active-border-color);
        }

    .nav-tabs .dropdown-menu {
        margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.nav-pills {
    --bs-nav-pills-border-radius: var(--bs-border-radius);
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #0d6efd;
}

    .nav-pills .nav-link {
        border-radius: var(--bs-nav-pills-border-radius);
    }

        .nav-pills .nav-link.active,
        .nav-pills .show > .nav-link {
            color: var(--bs-nav-pills-link-active-color);
            background-color: var(--bs-nav-pills-link-active-bg);
        }

.nav-underline {
    --bs-nav-underline-gap: 1rem;
    --bs-nav-underline-border-width: 0.125rem;
    --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
    gap: var(--bs-nav-underline-gap);
}

    .nav-underline .nav-link {
        padding-right: 0;
        padding-left: 0;
        border-bottom: var(--bs-nav-underline-border-width) solid rgba(0, 0, 0, 0);
    }

        .nav-underline .nav-link:hover,
        .nav-underline .nav-link:focus {
            border-bottom-color: currentcolor;
        }

        .nav-underline .nav-link.active,
        .nav-underline .show > .nav-link {
            font-weight: 700;
            color: var(--bs-nav-underline-link-active-color);
            border-bottom-color: currentcolor;
        }

.nav-fill > .nav-link,
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
}

    .nav-fill .nav-item .nav-link,
    .nav-justified .nav-item .nav-link {
        width: 100%;
    }

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
    --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 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(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
    --bs-navbar-toggler-border-radius: var(--bs-border-radius);
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

    .navbar > .container,
    .navbar > .container-fluid,
    .navbar > .container-sm,
    .navbar > .container-md,
    .navbar > .container-lg,
    .navbar > .container-xl,
    .navbar > .container-xxl,
    .navbar > .container-xxxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
    }

.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}

    .navbar-brand:hover,
    .navbar-brand:focus {
        color: var(--bs-navbar-brand-hover-color);
    }

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        color: var(--bs-navbar-active-color);
    }

    .navbar-nav .dropdown-menu {
        position: static;
    }

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-navbar-color);
}

    .navbar-text a,
    .navbar-text a:hover,
    .navbar-text a:focus {
        color: var(--bs-navbar-active-color);
    }

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: rgba(0, 0, 0, 0);
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-sm .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-sm .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-sm .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-sm .navbar-toggler {
            display: none;
        }

        .navbar-expand-sm .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: rgba(0, 0, 0, 0) !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-sm .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-sm .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-md .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-md .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-md .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-md .navbar-toggler {
            display: none;
        }

        .navbar-expand-md .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: rgba(0, 0, 0, 0) !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-md .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-md .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-lg .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-lg .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-lg .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-lg .navbar-toggler {
            display: none;
        }

        .navbar-expand-lg .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: rgba(0, 0, 0, 0) !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-lg .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-lg .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-xl .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-xl .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-xl .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-xl .navbar-toggler {
            display: none;
        }

        .navbar-expand-xl .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: rgba(0, 0, 0, 0) !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-xl .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-xl .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-xxl .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-xxl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xxl .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-xxl .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-xxl .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-xxl .navbar-toggler {
            display: none;
        }

        .navbar-expand-xxl .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: rgba(0, 0, 0, 0) !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-xxl .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-xxl .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

@media (min-width: 1900px) {
    .navbar-expand-xxxl {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-xxxl .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-xxxl .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-xxxl .navbar-nav .nav-link {
                padding-right: var(--bs-navbar-nav-link-padding-x);
                padding-left: var(--bs-navbar-nav-link-padding-x);
            }

        .navbar-expand-xxxl .navbar-nav-scroll {
            overflow: visible;
        }

        .navbar-expand-xxxl .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-xxxl .navbar-toggler {
            display: none;
        }

        .navbar-expand-xxxl .offcanvas {
            position: static;
            z-index: auto;
            flex-grow: 1;
            width: auto !important;
            height: auto !important;
            visibility: visible !important;
            background-color: rgba(0, 0, 0, 0) !important;
            border: 0 !important;
            transform: none !important;
            transition: none;
        }

            .navbar-expand-xxxl .offcanvas .offcanvas-header {
                display: none;
            }

            .navbar-expand-xxxl .offcanvas .offcanvas-body {
                display: flex;
                flex-grow: 0;
                padding: 0;
                overflow-y: visible;
            }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

    .navbar-expand .navbar-nav {
        flex-direction: row;
    }

        .navbar-expand .navbar-nav .dropdown-menu {
            position: absolute;
        }

        .navbar-expand .navbar-nav .nav-link {
            padding-right: var(--bs-navbar-nav-link-padding-x);
            padding-left: var(--bs-navbar-nav-link-padding-x);
        }

    .navbar-expand .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand .navbar-toggler {
        display: none;
    }

    .navbar-expand .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: rgba(0, 0, 0, 0) !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }

        .navbar-expand .offcanvas .offcanvas-header {
            display: none;
        }

        .navbar-expand .offcanvas .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
        }

.navbar-dark,
.navbar[data-bs-theme="dark"] {
    --bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="dark"] .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color:;
    --bs-card-subtitle-color:;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-box-shadow:;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color:;
    --bs-card-height:;
    --bs-card-color:;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: var(--bs-card-inner-border-radius);
            border-top-right-radius: var(--bs-card-inner-border-radius);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: var(--bs-card-inner-border-radius);
            border-bottom-left-radius: var(--bs-card-inner-border-radius);
        }

        .card > .card-header + .list-group,
        .card > .list-group + .card-footer {
            border-top: 0;
        }

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
}

.card-subtitle {
    margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
    margin-bottom: 0;
    color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
}

.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

    .card-header:first-child {
        border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
    }

.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

    .card-footer:last-child {
        border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
    }

.card-header-tabs {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
    border-bottom: 0;
}

    .card-header-tabs .nav-link.active {
        background-color: var(--bs-card-bg);
        border-bottom-color: var(--bs-card-bg);
    }

.card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
    margin-bottom: var(--bs-card-group-margin);
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) > .card-img-top,
                .card-group > .card:not(:last-child) > .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) > .card-img-bottom,
                .card-group > .card:not(:last-child) > .card-footer {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) > .card-img-top,
                .card-group > .card:not(:first-child) > .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) > .card-img-bottom,
                .card-group > .card:not(:first-child) > .card-footer {
                    border-bottom-left-radius: 0;
                }
}

.accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-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, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: var(--bs-border-radius);
    --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--bs-primary-text-emphasis);
    --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: calc(1.275rem + 0.3vw);
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

@media (min-width: 1200px) {
    .accordion-button {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-active-icon);
        transform: var(--bs-accordion-btn-icon-transform);
    }

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

    .accordion-item:first-of-type {
        border-top-left-radius: var(--bs-accordion-border-radius);
        border-top-right-radius: var(--bs-accordion-border-radius);
    }

        .accordion-item:first-of-type > .accordion-header .accordion-button {
            border-top-left-radius: var(--bs-accordion-inner-border-radius);
            border-top-right-radius: var(--bs-accordion-inner-border-radius);
        }

    .accordion-item:not(:first-of-type) {
        border-top: 0;
    }

    .accordion-item:last-of-type {
        border-bottom-right-radius: var(--bs-accordion-border-radius);
        border-bottom-left-radius: var(--bs-accordion-border-radius);
    }

        .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
            border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
            border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
        }

        .accordion-item:last-of-type > .accordion-collapse {
            border-bottom-right-radius: var(--bs-accordion-border-radius);
            border-bottom-left-radius: var(--bs-accordion-border-radius);
        }

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

    .accordion-flush > .accordion-item:first-child {
        border-top: 0;
    }

    .accordion-flush > .accordion-item:last-child {
        border-bottom: 0;
    }

    .accordion-flush > .accordion-item > .accordion-collapse,
    .accordion-flush > .accordion-item > .accordion-header .accordion-button,
    .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
        border-radius: 0;
    }

[data-bs-theme="dark"] .accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    --bs-breadcrumb-bg:;
    --bs-breadcrumb-border-radius:;
    --bs-breadcrumb-divider-color: var(--bs-secondary-color);
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: left;
        padding-right: var(--bs-breadcrumb-item-padding-x);
        color: var(--bs-breadcrumb-divider-color);
        content: var(--bs-breadcrumb-divider, "/"); /* rtl: var(--bs-breadcrumb-divider, "/") */
    }

.breadcrumb-item.active {
    color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #0d6efd;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    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;
}

@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}

.page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow);
}

.page-link.active,
.active > .page-link {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
}

.page-link.disabled,
.disabled > .page-link {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
    margin-left: calc(-1 * var(--bs-border-width));
}

.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
    --bs-pagination-padding-x: 1.5rem;
    --bs-pagination-padding-y: 0.75rem;
    --bs-pagination-font-size: 1.25rem;
    --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
    --bs-pagination-padding-x: 0.5rem;
    --bs-pagination-padding-y: 0.25rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
    --bs-badge-padding-x: 0.65em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #fff;
    --bs-badge-border-radius: var(--bs-border-radius);
    display: inline-block;
    padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    font-size: var(--bs-badge-font-size);
    font-weight: var(--bs-badge-font-weight);
    line-height: 1;
    color: var(--bs-badge-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--bs-badge-border-radius);
}

    .badge:empty {
        display: none;
    }

.btn .badge {
    position: relative;
    top: -1px;
}

.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
    --bs-alert-border-radius: var(--bs-border-radius);
    --bs-alert-link-color: inherit;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
    color: var(--bs-alert-link-color);
}

.alert-dismissible {
    padding-right: 3rem;
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        padding: 1.25rem 1rem;
    }

.alert-primary {
    --bs-alert-color: var(--bs-primary-text-emphasis);
    --bs-alert-bg: var(--bs-primary-bg-subtle);
    --bs-alert-border-color: var(--bs-primary-border-subtle);
    --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
    --bs-alert-color: var(--bs-secondary-text-emphasis);
    --bs-alert-bg: var(--bs-secondary-bg-subtle);
    --bs-alert-border-color: var(--bs-secondary-border-subtle);
    --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
    --bs-alert-color: var(--bs-success-text-emphasis);
    --bs-alert-bg: var(--bs-success-bg-subtle);
    --bs-alert-border-color: var(--bs-success-border-subtle);
    --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
    --bs-alert-color: var(--bs-info-text-emphasis);
    --bs-alert-bg: var(--bs-info-bg-subtle);
    --bs-alert-border-color: var(--bs-info-border-subtle);
    --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
    --bs-alert-color: var(--bs-warning-text-emphasis);
    --bs-alert-bg: var(--bs-warning-bg-subtle);
    --bs-alert-border-color: var(--bs-warning-border-subtle);
    --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
    --bs-alert-color: var(--bs-danger-text-emphasis);
    --bs-alert-bg: var(--bs-danger-bg-subtle);
    --bs-alert-border-color: var(--bs-danger-border-subtle);
    --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
    --bs-alert-color: var(--bs-light-text-emphasis);
    --bs-alert-bg: var(--bs-light-bg-subtle);
    --bs-alert-border-color: var(--bs-light-border-subtle);
    --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
    --bs-alert-color: var(--bs-dark-text-emphasis);
    --bs-alert-bg: var(--bs-dark-bg-subtle);
    --bs-alert-border-color: var(--bs-dark-border-subtle);
    --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

.alert-white {
    --bs-alert-color: var(--bs-white-text-emphasis);
    --bs-alert-bg: var(--bs-white-bg-subtle);
    --bs-alert-border-color: var(--bs-white-border-subtle);
    --bs-alert-link-color: var(--bs-white-text-emphasis);
}

.alert-black {
    --bs-alert-color: var(--bs-black-text-emphasis);
    --bs-alert-bg: var(--bs-black-bg-subtle);
    --bs-alert-border-color: var(--bs-black-border-subtle);
    --bs-alert-link-color: var(--bs-black-text-emphasis);
}

.alert-red {
    --bs-alert-color: var(--bs-red-text-emphasis);
    --bs-alert-bg: var(--bs-red-bg-subtle);
    --bs-alert-border-color: var(--bs-red-border-subtle);
    --bs-alert-link-color: var(--bs-red-text-emphasis);
}

.alert-red-50 {
    --bs-alert-color: var(--bs-red-50-text-emphasis);
    --bs-alert-bg: var(--bs-red-50-bg-subtle);
    --bs-alert-border-color: var(--bs-red-50-border-subtle);
    --bs-alert-link-color: var(--bs-red-50-text-emphasis);
}

.alert-pink {
    --bs-alert-color: var(--bs-pink-text-emphasis);
    --bs-alert-bg: var(--bs-pink-bg-subtle);
    --bs-alert-border-color: var(--bs-pink-border-subtle);
    --bs-alert-link-color: var(--bs-pink-text-emphasis);
}

.alert-pink-50 {
    --bs-alert-color: var(--bs-pink-50-text-emphasis);
    --bs-alert-bg: var(--bs-pink-50-bg-subtle);
    --bs-alert-border-color: var(--bs-pink-50-border-subtle);
    --bs-alert-link-color: var(--bs-pink-50-text-emphasis);
}

.alert-light-pink {
    --bs-alert-color: var(--bs-light-pink-text-emphasis);
    --bs-alert-bg: var(--bs-light-pink-bg-subtle);
    --bs-alert-border-color: var(--bs-light-pink-border-subtle);
    --bs-alert-link-color: var(--bs-light-pink-text-emphasis);
}

.alert-gray {
    --bs-alert-color: var(--bs-gray-text-emphasis);
    --bs-alert-bg: var(--bs-gray-bg-subtle);
    --bs-alert-border-color: var(--bs-gray-border-subtle);
    --bs-alert-link-color: var(--bs-gray-text-emphasis);
}

.alert-gray-50 {
    --bs-alert-color: var(--bs-gray-50-text-emphasis);
    --bs-alert-bg: var(--bs-gray-50-bg-subtle);
    --bs-alert-border-color: var(--bs-gray-50-border-subtle);
    --bs-alert-link-color: var(--bs-gray-50-text-emphasis);
}

.alert-light-gray {
    --bs-alert-color: var(--bs-light-gray-text-emphasis);
    --bs-alert-bg: var(--bs-light-gray-bg-subtle);
    --bs-alert-border-color: var(--bs-light-gray-border-subtle);
    --bs-alert-link-color: var(--bs-light-gray-text-emphasis);
}

.alert-light-gray-50 {
    --bs-alert-color: var(--bs-light-gray-50-text-emphasis);
    --bs-alert-bg: var(--bs-light-gray-50-bg-subtle);
    --bs-alert-border-color: var(--bs-light-gray-50-border-subtle);
    --bs-alert-link-color: var(--bs-light-gray-50-text-emphasis);
}

.alert-green {
    --bs-alert-color: var(--bs-green-text-emphasis);
    --bs-alert-bg: var(--bs-green-bg-subtle);
    --bs-alert-border-color: var(--bs-green-border-subtle);
    --bs-alert-link-color: var(--bs-green-text-emphasis);
}

.alert-green-50 {
    --bs-alert-color: var(--bs-green-50-text-emphasis);
    --bs-alert-bg: var(--bs-green-50-bg-subtle);
    --bs-alert-border-color: var(--bs-green-50-border-subtle);
    --bs-alert-link-color: var(--bs-green-50-text-emphasis);
}

.alert-light-green {
    --bs-alert-color: var(--bs-light-green-text-emphasis);
    --bs-alert-bg: var(--bs-light-green-bg-subtle);
    --bs-alert-border-color: var(--bs-light-green-border-subtle);
    --bs-alert-link-color: var(--bs-light-green-text-emphasis);
}

.alert-dark-blue {
    --bs-alert-color: var(--bs-dark-blue-text-emphasis);
    --bs-alert-bg: var(--bs-dark-blue-bg-subtle);
    --bs-alert-border-color: var(--bs-dark-blue-border-subtle);
    --bs-alert-link-color: var(--bs-dark-blue-text-emphasis);
}

.alert-nice-blue {
    --bs-alert-color: var(--bs-nice-blue-text-emphasis);
    --bs-alert-bg: var(--bs-nice-blue-bg-subtle);
    --bs-alert-border-color: var(--bs-nice-blue-border-subtle);
    --bs-alert-link-color: var(--bs-nice-blue-text-emphasis);
}

.alert-navy-blue {
    --bs-alert-color: var(--bs-navy-blue-text-emphasis);
    --bs-alert-bg: var(--bs-navy-blue-bg-subtle);
    --bs-alert-border-color: var(--bs-navy-blue-border-subtle);
    --bs-alert-link-color: var(--bs-navy-blue-text-emphasis);
}

.alert-blueberry {
    --bs-alert-color: var(--bs-blueberry-text-emphasis);
    --bs-alert-bg: var(--bs-blueberry-bg-subtle);
    --bs-alert-border-color: var(--bs-blueberry-border-subtle);
    --bs-alert-link-color: var(--bs-blueberry-text-emphasis);
}

.alert-light-blue {
    --bs-alert-color: var(--bs-light-blue-text-emphasis);
    --bs-alert-bg: var(--bs-light-blue-bg-subtle);
    --bs-alert-border-color: var(--bs-light-blue-border-subtle);
    --bs-alert-link-color: var(--bs-light-blue-text-emphasis);
}

.alert-transparent {
    --bs-alert-color: var(--bs-transparent-text-emphasis);
    --bs-alert-bg: var(--bs-transparent-bg-subtle);
    --bs-alert-border-color: var(--bs-transparent-border-subtle);
    --bs-alert-link-color: var(--bs-transparent-text-emphasis);
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: var(--bs-progress-height);
    }
}

.progress,
.progress-stacked {
    --bs-progress-height: 1rem;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #0d6efd;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
    overflow: visible;
}

    .progress-stacked > .progress > .progress-bar {
        width: 100%;
    }

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        animation: none;
    }
}

.list-group {
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: var(--bs-body-bg);
    --bs-list-group-border-color: var(--bs-border-color);
    --bs-list-group-border-width: var(--bs-border-width);
    --bs-list-group-border-radius: var(--bs-border-radius);
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: var(--bs-secondary-color);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
    --bs-list-group-action-active-color: var(--bs-body-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-bg);
    --bs-list-group-disabled-color: var(--bs-secondary-color);
    --bs-list-group-disabled-bg: var(--bs-body-bg);
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #0d6efd;
    --bs-list-group-active-border-color: #0d6efd;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}

    .list-group-numbered > .list-group-item::before {
        content: counters(section, ".") ". ";
        counter-increment: section;
    }

.list-group-item {
    position: relative;
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    color: var(--bs-list-group-color);
    text-decoration: none;
    background-color: var(--bs-list-group-bg);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

    .list-group-item:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }

    .list-group-item:last-child {
        border-bottom-right-radius: inherit;
        border-bottom-left-radius: inherit;
    }

    .list-group-item.disabled,
    .list-group-item:disabled {
        color: var(--bs-list-group-disabled-color);
        pointer-events: none;
        background-color: var(--bs-list-group-disabled-bg);
    }

    .list-group-item.active {
        z-index: 2;
        color: var(--bs-list-group-active-color);
        background-color: var(--bs-list-group-active-bg);
        border-color: var(--bs-list-group-active-border-color);
    }

    .list-group-item + .list-group-item {
        border-top-width: 0;
    }

        .list-group-item + .list-group-item.active {
            margin-top: calc(-1 * var(--bs-list-group-border-width));
            border-top-width: var(--bs-list-group-border-width);
        }

.list-group-item-action {
    width: 100%;
    color: var(--bs-list-group-action-color);
    text-align: inherit;
}

    .list-group-item-action:not(.active):hover,
    .list-group-item-action:not(.active):focus {
        z-index: 1;
        color: var(--bs-list-group-action-hover-color);
        text-decoration: none;
        background-color: var(--bs-list-group-action-hover-bg);
    }

    .list-group-item-action:not(.active):active {
        color: var(--bs-list-group-action-active-color);
        background-color: var(--bs-list-group-action-active-bg);
    }

.list-group-horizontal {
    flex-direction: row;
}

    .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: var(--bs-list-group-border-radius);
        border-top-right-radius: 0;
    }

    .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: var(--bs-list-group-border-radius);
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal > .list-group-item + .list-group-item {
        border-top-width: var(--bs-list-group-border-width);
        border-left-width: 0;
    }

        .list-group-horizontal > .list-group-item + .list-group-item.active {
            margin-left: calc(-1 * var(--bs-list-group-border-width));
            border-left-width: var(--bs-list-group-border-width);
        }

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction: row;
    }

        .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-sm > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-sm > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction: row;
    }

        .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-md > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-md > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-md > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction: row;
    }

        .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-lg > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-lg > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction: row;
    }

        .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-xl > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-xl > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row;
    }

        .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-xxl > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-xxl > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

@media (min-width: 1900px) {
    .list-group-horizontal-xxxl {
        flex-direction: row;
    }

        .list-group-horizontal-xxxl > .list-group-item:first-child:not(:last-child) {
            border-bottom-left-radius: var(--bs-list-group-border-radius);
            border-top-right-radius: 0;
        }

        .list-group-horizontal-xxxl > .list-group-item:last-child:not(:first-child) {
            border-top-right-radius: var(--bs-list-group-border-radius);
            border-bottom-left-radius: 0;
        }

        .list-group-horizontal-xxxl > .list-group-item.active {
            margin-top: 0;
        }

        .list-group-horizontal-xxxl > .list-group-item + .list-group-item {
            border-top-width: var(--bs-list-group-border-width);
            border-left-width: 0;
        }

            .list-group-horizontal-xxxl > .list-group-item + .list-group-item.active {
                margin-left: calc(-1 * var(--bs-list-group-border-width));
                border-left-width: var(--bs-list-group-border-width);
            }
}

.list-group-flush {
    border-radius: 0;
}

    .list-group-flush > .list-group-item {
        border-width: 0 0 var(--bs-list-group-border-width);
    }

        .list-group-flush > .list-group-item:last-child {
            border-bottom-width: 0;
        }

.list-group-item-primary {
    --bs-list-group-color: var(--bs-primary-text-emphasis);
    --bs-list-group-bg: var(--bs-primary-bg-subtle);
    --bs-list-group-border-color: var(--bs-primary-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
    --bs-list-group-active-color: var(--bs-primary-bg-subtle);
    --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
    --bs-list-group-color: var(--bs-secondary-text-emphasis);
    --bs-list-group-bg: var(--bs-secondary-bg-subtle);
    --bs-list-group-border-color: var(--bs-secondary-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
    --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
    --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
    --bs-list-group-color: var(--bs-success-text-emphasis);
    --bs-list-group-bg: var(--bs-success-bg-subtle);
    --bs-list-group-border-color: var(--bs-success-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
    --bs-list-group-active-color: var(--bs-success-bg-subtle);
    --bs-list-group-active-bg: var(--bs-success-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
    --bs-list-group-color: var(--bs-info-text-emphasis);
    --bs-list-group-bg: var(--bs-info-bg-subtle);
    --bs-list-group-border-color: var(--bs-info-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
    --bs-list-group-active-color: var(--bs-info-bg-subtle);
    --bs-list-group-active-bg: var(--bs-info-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
    --bs-list-group-color: var(--bs-warning-text-emphasis);
    --bs-list-group-bg: var(--bs-warning-bg-subtle);
    --bs-list-group-border-color: var(--bs-warning-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
    --bs-list-group-active-color: var(--bs-warning-bg-subtle);
    --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
    --bs-list-group-color: var(--bs-danger-text-emphasis);
    --bs-list-group-bg: var(--bs-danger-bg-subtle);
    --bs-list-group-border-color: var(--bs-danger-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
    --bs-list-group-active-color: var(--bs-danger-bg-subtle);
    --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
    --bs-list-group-color: var(--bs-light-text-emphasis);
    --bs-list-group-bg: var(--bs-light-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
    --bs-list-group-active-color: var(--bs-light-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
    --bs-list-group-color: var(--bs-dark-text-emphasis);
    --bs-list-group-bg: var(--bs-dark-bg-subtle);
    --bs-list-group-border-color: var(--bs-dark-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
    --bs-list-group-active-color: var(--bs-dark-bg-subtle);
    --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.list-group-item-white {
    --bs-list-group-color: var(--bs-white-text-emphasis);
    --bs-list-group-bg: var(--bs-white-bg-subtle);
    --bs-list-group-border-color: var(--bs-white-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-white-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-white-border-subtle);
    --bs-list-group-active-color: var(--bs-white-bg-subtle);
    --bs-list-group-active-bg: var(--bs-white-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-white-text-emphasis);
}

.list-group-item-black {
    --bs-list-group-color: var(--bs-black-text-emphasis);
    --bs-list-group-bg: var(--bs-black-bg-subtle);
    --bs-list-group-border-color: var(--bs-black-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-black-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-black-border-subtle);
    --bs-list-group-active-color: var(--bs-black-bg-subtle);
    --bs-list-group-active-bg: var(--bs-black-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-black-text-emphasis);
}

.list-group-item-red {
    --bs-list-group-color: var(--bs-red-text-emphasis);
    --bs-list-group-bg: var(--bs-red-bg-subtle);
    --bs-list-group-border-color: var(--bs-red-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-red-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-red-border-subtle);
    --bs-list-group-active-color: var(--bs-red-bg-subtle);
    --bs-list-group-active-bg: var(--bs-red-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-red-text-emphasis);
}

.list-group-item-red-50 {
    --bs-list-group-color: var(--bs-red-50-text-emphasis);
    --bs-list-group-bg: var(--bs-red-50-bg-subtle);
    --bs-list-group-border-color: var(--bs-red-50-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-red-50-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-red-50-border-subtle);
    --bs-list-group-active-color: var(--bs-red-50-bg-subtle);
    --bs-list-group-active-bg: var(--bs-red-50-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-red-50-text-emphasis);
}

.list-group-item-pink {
    --bs-list-group-color: var(--bs-pink-text-emphasis);
    --bs-list-group-bg: var(--bs-pink-bg-subtle);
    --bs-list-group-border-color: var(--bs-pink-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-pink-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-pink-border-subtle);
    --bs-list-group-active-color: var(--bs-pink-bg-subtle);
    --bs-list-group-active-bg: var(--bs-pink-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-pink-text-emphasis);
}

.list-group-item-pink-50 {
    --bs-list-group-color: var(--bs-pink-50-text-emphasis);
    --bs-list-group-bg: var(--bs-pink-50-bg-subtle);
    --bs-list-group-border-color: var(--bs-pink-50-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-pink-50-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-pink-50-border-subtle);
    --bs-list-group-active-color: var(--bs-pink-50-bg-subtle);
    --bs-list-group-active-bg: var(--bs-pink-50-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-pink-50-text-emphasis);
}

.list-group-item-light-pink {
    --bs-list-group-color: var(--bs-light-pink-text-emphasis);
    --bs-list-group-bg: var(--bs-light-pink-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-pink-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-pink-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-pink-border-subtle);
    --bs-list-group-active-color: var(--bs-light-pink-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-pink-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-pink-text-emphasis);
}

.list-group-item-gray {
    --bs-list-group-color: var(--bs-gray-text-emphasis);
    --bs-list-group-bg: var(--bs-gray-bg-subtle);
    --bs-list-group-border-color: var(--bs-gray-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-gray-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-gray-border-subtle);
    --bs-list-group-active-color: var(--bs-gray-bg-subtle);
    --bs-list-group-active-bg: var(--bs-gray-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-gray-text-emphasis);
}

.list-group-item-gray-50 {
    --bs-list-group-color: var(--bs-gray-50-text-emphasis);
    --bs-list-group-bg: var(--bs-gray-50-bg-subtle);
    --bs-list-group-border-color: var(--bs-gray-50-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-gray-50-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-gray-50-border-subtle);
    --bs-list-group-active-color: var(--bs-gray-50-bg-subtle);
    --bs-list-group-active-bg: var(--bs-gray-50-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-gray-50-text-emphasis);
}

.list-group-item-light-gray {
    --bs-list-group-color: var(--bs-light-gray-text-emphasis);
    --bs-list-group-bg: var(--bs-light-gray-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-gray-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-gray-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-gray-border-subtle);
    --bs-list-group-active-color: var(--bs-light-gray-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-gray-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-gray-text-emphasis);
}

.list-group-item-light-gray-50 {
    --bs-list-group-color: var(--bs-light-gray-50-text-emphasis);
    --bs-list-group-bg: var(--bs-light-gray-50-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-gray-50-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-gray-50-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-gray-50-border-subtle);
    --bs-list-group-active-color: var(--bs-light-gray-50-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-gray-50-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-gray-50-text-emphasis);
}

.list-group-item-green {
    --bs-list-group-color: var(--bs-green-text-emphasis);
    --bs-list-group-bg: var(--bs-green-bg-subtle);
    --bs-list-group-border-color: var(--bs-green-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-green-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-green-border-subtle);
    --bs-list-group-active-color: var(--bs-green-bg-subtle);
    --bs-list-group-active-bg: var(--bs-green-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-green-text-emphasis);
}

.list-group-item-green-50 {
    --bs-list-group-color: var(--bs-green-50-text-emphasis);
    --bs-list-group-bg: var(--bs-green-50-bg-subtle);
    --bs-list-group-border-color: var(--bs-green-50-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-green-50-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-green-50-border-subtle);
    --bs-list-group-active-color: var(--bs-green-50-bg-subtle);
    --bs-list-group-active-bg: var(--bs-green-50-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-green-50-text-emphasis);
}

.list-group-item-light-green {
    --bs-list-group-color: var(--bs-light-green-text-emphasis);
    --bs-list-group-bg: var(--bs-light-green-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-green-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-green-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-green-border-subtle);
    --bs-list-group-active-color: var(--bs-light-green-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-green-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-green-text-emphasis);
}

.list-group-item-dark-blue {
    --bs-list-group-color: var(--bs-dark-blue-text-emphasis);
    --bs-list-group-bg: var(--bs-dark-blue-bg-subtle);
    --bs-list-group-border-color: var(--bs-dark-blue-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-dark-blue-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-dark-blue-border-subtle);
    --bs-list-group-active-color: var(--bs-dark-blue-bg-subtle);
    --bs-list-group-active-bg: var(--bs-dark-blue-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-dark-blue-text-emphasis);
}

.list-group-item-nice-blue {
    --bs-list-group-color: var(--bs-nice-blue-text-emphasis);
    --bs-list-group-bg: var(--bs-nice-blue-bg-subtle);
    --bs-list-group-border-color: var(--bs-nice-blue-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-nice-blue-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-nice-blue-border-subtle);
    --bs-list-group-active-color: var(--bs-nice-blue-bg-subtle);
    --bs-list-group-active-bg: var(--bs-nice-blue-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-nice-blue-text-emphasis);
}

.list-group-item-navy-blue {
    --bs-list-group-color: var(--bs-navy-blue-text-emphasis);
    --bs-list-group-bg: var(--bs-navy-blue-bg-subtle);
    --bs-list-group-border-color: var(--bs-navy-blue-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-navy-blue-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-navy-blue-border-subtle);
    --bs-list-group-active-color: var(--bs-navy-blue-bg-subtle);
    --bs-list-group-active-bg: var(--bs-navy-blue-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-navy-blue-text-emphasis);
}

.list-group-item-blueberry {
    --bs-list-group-color: var(--bs-blueberry-text-emphasis);
    --bs-list-group-bg: var(--bs-blueberry-bg-subtle);
    --bs-list-group-border-color: var(--bs-blueberry-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-blueberry-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-blueberry-border-subtle);
    --bs-list-group-active-color: var(--bs-blueberry-bg-subtle);
    --bs-list-group-active-bg: var(--bs-blueberry-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-blueberry-text-emphasis);
}

.list-group-item-light-blue {
    --bs-list-group-color: var(--bs-light-blue-text-emphasis);
    --bs-list-group-bg: var(--bs-light-blue-bg-subtle);
    --bs-list-group-border-color: var(--bs-light-blue-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-light-blue-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-light-blue-border-subtle);
    --bs-list-group-active-color: var(--bs-light-blue-bg-subtle);
    --bs-list-group-active-bg: var(--bs-light-blue-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-light-blue-text-emphasis);
}

.list-group-item-transparent {
    --bs-list-group-color: var(--bs-transparent-text-emphasis);
    --bs-list-group-bg: var(--bs-transparent-bg-subtle);
    --bs-list-group-border-color: var(--bs-transparent-border-subtle);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-transparent-border-subtle);
    --bs-list-group-action-active-color: var(--bs-emphasis-color);
    --bs-list-group-action-active-bg: var(--bs-transparent-border-subtle);
    --bs-list-group-active-color: var(--bs-transparent-bg-subtle);
    --bs-list-group-active-bg: var(--bs-transparent-text-emphasis);
    --bs-list-group-active-border-color: var(--bs-transparent-text-emphasis);
}

.btn-close {
    --bs-btn-close-color: #000;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: var(--bs-btn-close-color);
    background: rgba(0, 0, 0, 0) var(--bs-btn-close-bg) center/1em auto no-repeat;
    filter: var(--bs-btn-close-filter);
    border: 0;
    border-radius: 0.375rem;
    opacity: var(--bs-btn-close-opacity);
}

    .btn-close:hover {
        color: var(--bs-btn-close-color);
        text-decoration: none;
        opacity: var(--bs-btn-close-hover-opacity);
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: var(--bs-btn-close-focus-shadow);
        opacity: var(--bs-btn-close-focus-opacity);
    }

    .btn-close:disabled,
    .btn-close.disabled {
        pointer-events: none;
        user-select: none;
        opacity: var(--bs-btn-close-disabled-opacity);
    }

.btn-close-white {
    --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root,
[data-bs-theme="light"] {
    --bs-btn-close-filter:;
}

[data-bs-theme="dark"] {
    --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
    --bs-toast-zindex: 1090;
    --bs-toast-padding-x: 0.75rem;
    --bs-toast-padding-y: 0.5rem;
    --bs-toast-spacing: 1.5rem;
    --bs-toast-max-width: 350px;
    --bs-toast-font-size: 0.875rem;
    --bs-toast-color:;
    --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
    --bs-toast-border-width: var(--bs-border-width);
    --bs-toast-border-color: var(--bs-border-color-translucent);
    --bs-toast-border-radius: var(--bs-border-radius);
    --bs-toast-box-shadow: var(--bs-box-shadow);
    --bs-toast-header-color: var(--bs-secondary-color);
    --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
    --bs-toast-header-border-color: var(--bs-border-color-translucent);
    width: var(--bs-toast-max-width);
    max-width: 100%;
    font-size: var(--bs-toast-font-size);
    color: var(--bs-toast-color);
    pointer-events: auto;
    background-color: var(--bs-toast-bg);
    background-clip: padding-box;
    border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
    box-shadow: var(--bs-toast-box-shadow);
    border-radius: var(--bs-toast-border-radius);
}

    .toast.showing {
        opacity: 0;
    }

    .toast:not(.show) {
        display: none;
    }

.toast-container {
    --bs-toast-zindex: 1090;
    position: absolute;
    z-index: var(--bs-toast-zindex);
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

    .toast-container > :not(:last-child) {
        margin-bottom: var(--bs-toast-spacing);
    }

.toast-header {
    display: flex;
    align-items: center;
    padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
    color: var(--bs-toast-header-color);
    background-color: var(--bs-toast-header-bg);
    background-clip: padding-box;
    border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
    border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
    border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}

    .toast-header .btn-close {
        margin-right: calc(-0.5 * var(--bs-toast-padding-x));
        margin-left: var(--bs-toast-padding-x);
    }

.toast-body {
    padding: var(--bs-toast-padding-x);
    word-wrap: break-word;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: var(--bs-body-color);
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg:;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: transform 0.3s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden;
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.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: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: var(--bs-backdrop-opacity);
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

    .modal-header .btn-close {
        padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
        margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
        margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
        margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
        margin-left: auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

    .modal-footer > * {
        margin: calc(var(--bs-modal-footer-gap) * 0.5);
    }

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow);
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --bs-modal-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen .modal-header,
    .modal-fullscreen .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto;
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-header,
        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-header,
        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-header,
        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-header,
        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-header,
        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1899.98px) {
    .modal-fullscreen-xxxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xxxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xxxl-down .modal-header,
        .modal-fullscreen-xxxl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xxxl-down .modal-body {
            overflow-y: auto;
        }
}

.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-margin:;
    --bs-tooltip-font-size: 0.875rem;
    --bs-tooltip-color: var(--bs-body-bg);
    --bs-tooltip-bg: var(--bs-emphasis-color);
    --bs-tooltip-border-radius: var(--bs-border-radius);
    --bs-tooltip-opacity: 0.9;
    --bs-tooltip-arrow-width: 0.8rem;
    --bs-tooltip-arrow-height: 0.4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    margin: var(--bs-tooltip-margin);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-tooltip-font-size);
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.show {
        opacity: var(--bs-tooltip-opacity);
    }

    .tooltip .tooltip-arrow {
        display: block;
        width: var(--bs-tooltip-arrow-width);
        height: var(--bs-tooltip-arrow-height);
    }

        .tooltip .tooltip-arrow::before {
            position: absolute;
            content: "";
            border-color: rgba(0, 0, 0, 0);
            border-style: solid;
        }

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
    bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

    .bs-tooltip-top .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
        top: -1px;
        border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
        border-top-color: var(--bs-tooltip-bg);
    }

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
    left: calc(-1 * var(--bs-tooltip-arrow-height));
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}

    .bs-tooltip-end .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
        right: -1px;
        border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
        border-right-color: var(--bs-tooltip-bg);
    }

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
    top: calc(-1 * var(--bs-tooltip-arrow-height));
}

    .bs-tooltip-bottom .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
        bottom: -1px;
        border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
        border-bottom-color: var(--bs-tooltip-bg);
    }

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
    right: calc(-1 * var(--bs-tooltip-arrow-height));
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}

    .bs-tooltip-start .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
        left: -1px;
        border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
        border-left-color: var(--bs-tooltip-bg);
    }

.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius);
}

.popover {
    --bs-popover-zindex: 1070;
    --bs-popover-max-width: 276px;
    --bs-popover-font-size: 0.875rem;
    --bs-popover-bg: var(--bs-body-bg);
    --bs-popover-border-width: var(--bs-border-width);
    --bs-popover-border-color: var(--bs-border-color-translucent);
    --bs-popover-border-radius: var(--bs-border-radius-lg);
    --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
    --bs-popover-box-shadow: var(--bs-box-shadow);
    --bs-popover-header-padding-x: 1rem;
    --bs-popover-header-padding-y: 0.5rem;
    --bs-popover-header-font-size: 1rem;
    --bs-popover-header-color: inherit;
    --bs-popover-header-bg: var(--bs-secondary-bg);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 1rem;
    --bs-popover-body-color: var(--bs-body-color);
    --bs-popover-arrow-width: 1rem;
    --bs-popover-arrow-height: 0.5rem;
    --bs-popover-arrow-border: var(--bs-popover-border-color);
    z-index: var(--bs-popover-zindex);
    display: block;
    max-width: var(--bs-popover-max-width);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-popover-font-size);
    word-wrap: break-word;
    background-color: var(--bs-popover-bg);
    background-clip: padding-box;
    border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-radius: var(--bs-popover-border-radius);
}

    .popover .popover-arrow {
        display: block;
        width: var(--bs-popover-arrow-width);
        height: var(--bs-popover-arrow-height);
    }

        .popover .popover-arrow::before,
        .popover .popover-arrow::after {
            position: absolute;
            display: block;
            content: "";
            border-color: rgba(0, 0, 0, 0);
            border-style: solid;
            border-width: 0;
        }

.bs-popover-top > .popover-arrow,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
    bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

    .bs-popover-top > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before,
    .bs-popover-top > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
        border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
    }

    .bs-popover-top > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
        bottom: 0;
        border-top-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-top > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
        bottom: var(--bs-popover-border-width);
        border-top-color: var(--bs-popover-bg);
    }

.bs-popover-end > .popover-arrow,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
    left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}

    .bs-popover-end > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before,
    .bs-popover-end > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
        border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
    }

    .bs-popover-end > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
        left: 0;
        border-right-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-end > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
        left: var(--bs-popover-border-width);
        border-right-color: var(--bs-popover-bg);
    }

.bs-popover-bottom > .popover-arrow,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
    top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

    .bs-popover-bottom > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before,
    .bs-popover-bottom > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
        border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
    }

    .bs-popover-bottom > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
        top: 0;
        border-bottom-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-bottom > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
        top: var(--bs-popover-border-width);
        border-bottom-color: var(--bs-popover-bg);
    }

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: var(--bs-popover-arrow-width);
    margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
    content: "";
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

.bs-popover-start > .popover-arrow,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
    right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}

    .bs-popover-start > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before,
    .bs-popover-start > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
        border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
    }

    .bs-popover-start > .popover-arrow::before,
    .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
        right: 0;
        border-left-color: var(--bs-popover-arrow-border);
    }

    .bs-popover-start > .popover-arrow::after,
    .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
        right: var(--bs-popover-border-width);
        border-left-color: var(--bs-popover-bg);
    }

.popover-header {
    padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
    margin-bottom: 0;
    font-size: var(--bs-popover-header-font-size);
    color: var(--bs-popover-header-color);
    background-color: var(--bs-popover-header-bg);
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-top-left-radius: var(--bs-popover-inner-border-radius);
    border-top-right-radius: var(--bs-popover-inner-border-radius);
}

    .popover-header:empty {
        display: none;
    }

.popover-body {
    padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
    color: var(--bs-popover-body-color);
}

.carousel {
    position: relative;
}

    .carousel.pointer-event {
        touch-action: pan-y;
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: "";
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

    .carousel-item-next:not(.carousel-item-start),
    .active.carousel-item-end {
        transform: translateX(100%);
    }

    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start {
        transform: translateX(-100%);
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-start,
    .carousel-fade .carousel-item-prev.carousel-item-end {
        z-index: 1;
        opacity: 1;
    }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    filter: var(--bs-carousel-control-icon-filter);
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

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

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

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: var(--bs-carousel-indicator-active-bg);
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid rgba(0, 0, 0, 0);
        border-bottom: 10px solid rgba(0, 0, 0, 0);
        opacity: 0.5;
        transition: opacity 0.6s ease;
    }

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: var(--bs-carousel-caption-color);
    text-align: center;
}

.carousel-dark {
    --bs-carousel-indicator-active-bg: #000;
    --bs-carousel-caption-color: #000;
    --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme="light"] {
    --bs-carousel-indicator-active-bg: #fff;
    --bs-carousel-caption-color: #fff;
    --bs-carousel-control-icon-filter:;
}

[data-bs-theme="dark"] {
    --bs-carousel-indicator-active-bg: #000;
    --bs-carousel-caption-color: #000;
    --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

.spinner-grow,
.spinner-border {
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg); /* rtl:ignore */
    }
}

.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: rgba(0, 0, 0, 0);
}

.spinner-border-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
    --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-grow;
    background-color: currentcolor;
    opacity: 0;
}

.spinner-grow-sm {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
        --bs-spinner-animation-speed: 1.5s;
    }
}

.offcanvas,
.offcanvas-xxxl,
.offcanvas-xxl,
.offcanvas-xl,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm {
    --bs-offcanvas-zindex: 1045;
    --bs-offcanvas-width: 400px;
    --bs-offcanvas-height: 30vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-color: var(--bs-body-color);
    --bs-offcanvas-bg: var(--bs-body-bg);
    --bs-offcanvas-border-width: var(--bs-border-width);
    --bs-offcanvas-border-color: var(--bs-border-color-translucent);
    --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
    --bs-offcanvas-transition: transform 0.3s ease-in-out;
    --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
    .offcanvas-sm {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-sm {
        transition: none;
    }
}

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-sm.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-sm.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-sm.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-sm.showing,
    .offcanvas-sm.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-sm.showing,
    .offcanvas-sm.hiding,
    .offcanvas-sm.show {
        visibility: visible;
    }
}

@media (min-width: 576px) {
    .offcanvas-sm {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: rgba(0, 0, 0, 0) !important;
    }

        .offcanvas-sm .offcanvas-header {
            display: none;
        }

        .offcanvas-sm .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: rgba(0, 0, 0, 0) !important;
        }
}

@media (max-width: 767.98px) {
    .offcanvas-md {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-md {
        transition: none;
    }
}

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-md.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-md.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-md.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-md.showing,
    .offcanvas-md.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-md.showing,
    .offcanvas-md.hiding,
    .offcanvas-md.show {
        visibility: visible;
    }
}

@media (min-width: 768px) {
    .offcanvas-md {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: rgba(0, 0, 0, 0) !important;
    }

        .offcanvas-md .offcanvas-header {
            display: none;
        }

        .offcanvas-md .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: rgba(0, 0, 0, 0) !important;
        }
}

@media (max-width: 991.98px) {
    .offcanvas-lg {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-lg {
        transition: none;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-lg.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-lg.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-lg.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-lg.showing,
    .offcanvas-lg.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-lg.showing,
    .offcanvas-lg.hiding,
    .offcanvas-lg.show {
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .offcanvas-lg {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: rgba(0, 0, 0, 0) !important;
    }

        .offcanvas-lg .offcanvas-header {
            display: none;
        }

        .offcanvas-lg .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: rgba(0, 0, 0, 0) !important;
        }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xl {
        transition: none;
    }
}

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-xl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-xl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-xl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-xl.showing,
    .offcanvas-xl.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-xl.showing,
    .offcanvas-xl.hiding,
    .offcanvas-xl.show {
        visibility: visible;
    }
}

@media (min-width: 1200px) {
    .offcanvas-xl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: rgba(0, 0, 0, 0) !important;
    }

        .offcanvas-xl .offcanvas-header {
            display: none;
        }

        .offcanvas-xl .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: rgba(0, 0, 0, 0) !important;
        }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xxl {
        transition: none;
    }
}

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-xxl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-xxl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-xxl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-xxl.showing,
    .offcanvas-xxl.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-xxl.showing,
    .offcanvas-xxl.hiding,
    .offcanvas-xxl.show {
        visibility: visible;
    }
}

@media (min-width: 1400px) {
    .offcanvas-xxl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: rgba(0, 0, 0, 0) !important;
    }

        .offcanvas-xxl .offcanvas-header {
            display: none;
        }

        .offcanvas-xxl .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: rgba(0, 0, 0, 0) !important;
        }
}

@media (max-width: 1899.98px) {
    .offcanvas-xxxl {
        position: fixed;
        bottom: 0;
        z-index: var(--bs-offcanvas-zindex);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        color: var(--bs-offcanvas-color);
        visibility: hidden;
        background-color: var(--bs-offcanvas-bg);
        background-clip: padding-box;
        outline: 0;
        transition: var(--bs-offcanvas-transition);
    }
}

@media (max-width: 1899.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xxxl {
        transition: none;
    }
}

@media (max-width: 1899.98px) {
    .offcanvas-xxxl.offcanvas-start {
        top: 0;
        left: 0;
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }

    .offcanvas-xxxl.offcanvas-end {
        top: 0;
        right: 0;
        width: var(--bs-offcanvas-width);
        border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(100%);
    }

    .offcanvas-xxxl.offcanvas-top {
        top: 0;
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(-100%);
    }

    .offcanvas-xxxl.offcanvas-bottom {
        right: 0;
        left: 0;
        height: var(--bs-offcanvas-height);
        max-height: 100%;
        border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateY(100%);
    }

    .offcanvas-xxxl.showing,
    .offcanvas-xxxl.show:not(.hiding) {
        transform: none;
    }

    .offcanvas-xxxl.showing,
    .offcanvas-xxxl.hiding,
    .offcanvas-xxxl.show {
        visibility: visible;
    }
}

@media (min-width: 1900px) {
    .offcanvas-xxxl {
        --bs-offcanvas-height: auto;
        --bs-offcanvas-border-width: 0;
        background-color: rgba(0, 0, 0, 0) !important;
    }

        .offcanvas-xxxl .offcanvas-header {
            display: none;
        }

        .offcanvas-xxxl .offcanvas-body {
            display: flex;
            flex-grow: 0;
            padding: 0;
            overflow-y: visible;
            background-color: rgba(0, 0, 0, 0) !important;
        }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
}

@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        transition: none;
    }
}

.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
}

.offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
}

.offcanvas.showing,
.offcanvas.show:not(.hiding) {
    transform: none;
}

.offcanvas.showing,
.offcanvas.hiding,
.offcanvas.show {
    visibility: visible;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

    .offcanvas-backdrop.fade {
        opacity: 0;
    }

    .offcanvas-backdrop.show {
        opacity: 0.5;
    }

.offcanvas-header {
    display: flex;
    align-items: center;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

    .offcanvas-header .btn-close {
        padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
        margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
        margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
        margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
        margin-left: auto;
    }

.offcanvas-title {
    margin-bottom: 0;
    line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: 0.5;
}

    .placeholder.btn::before {
        display: inline-block;
        content: "";
    }

.placeholder-xs {
    min-height: 0.6em;
}

.placeholder-sm {
    min-height: 0.8em;
}

.placeholder-lg {
    min-height: 1.2em;
}

.placeholder-glow .placeholder {
    animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

.placeholder-wave {
    mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
    mask-size: 200% 100%;
    animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
    100% {
        mask-position: -200% 0%;
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-primary {
    color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-primary:hover,
    .link-primary:focus {
        color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-secondary {
    color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-secondary:hover,
    .link-secondary:focus {
        color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-success {
    color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-success:hover,
    .link-success:focus {
        color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-info {
    color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-info:hover,
    .link-info:focus {
        color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-warning {
    color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-warning:hover,
    .link-warning:focus {
        color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-danger {
    color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-danger:hover,
    .link-danger:focus {
        color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-light {
    color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-light:hover,
    .link-light:focus {
        color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-dark {
    color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-dark:hover,
    .link-dark:focus {
        color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-white {
    color: RGBA(var(--bs-white-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-white-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-white:hover,
    .link-white:focus {
        color: RGBA(255, 255, 255, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(255, 255, 255, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-black {
    color: RGBA(var(--bs-black-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-black-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-black:hover,
    .link-black:focus {
        color: RGBA(47, 52, 52, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(47, 52, 52, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-red {
    color: RGBA(var(--bs-red-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-red-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-red:hover,
    .link-red:focus {
        color: RGBA(172, 20, 26, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(172, 20, 26, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-red-50 {
    color: RGBA(var(--bs-red-50-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-red-50-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-red-50:hover,
    .link-red-50:focus {
        color: RGBA(158, 25, 35, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(158, 25, 35, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-pink {
    color: RGBA(var(--bs-pink-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-pink-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-pink:hover,
    .link-pink:focus {
        color: RGBA(255, 239, 239, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(255, 239, 239, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-pink-50 {
    color: RGBA(var(--bs-pink-50-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-pink-50-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-pink-50:hover,
    .link-pink-50:focus {
        color: RGBA(255, 212, 212, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(255, 212, 212, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-light-pink {
    color: RGBA(var(--bs-light-pink-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-pink-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-light-pink:hover,
    .link-light-pink:focus {
        color: RGBA(255, 249, 249, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(255, 249, 249, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-gray {
    color: RGBA(var(--bs-gray-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-gray-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-gray:hover,
    .link-gray:focus {
        color: RGBA(55, 55, 55, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(55, 55, 55, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-gray-50 {
    color: RGBA(var(--bs-gray-50-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-gray-50-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-gray-50:hover,
    .link-gray-50:focus {
        color: RGBA(169, 169, 169, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(169, 169, 169, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-light-gray {
    color: RGBA(var(--bs-light-gray-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-gray-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-light-gray:hover,
    .link-light-gray:focus {
        color: RGBA(211, 211, 211, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(211, 211, 211, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-light-gray-50 {
    color: RGBA(var(--bs-light-gray-50-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-gray-50-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-light-gray-50:hover,
    .link-light-gray-50:focus {
        color: RGBA(245, 246, 247, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(245, 246, 247, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-green {
    color: RGBA(var(--bs-green-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-green-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-green:hover,
    .link-green:focus {
        color: RGBA(61, 160, 121, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(61, 160, 121, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-green-50 {
    color: RGBA(var(--bs-green-50-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-green-50-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-green-50:hover,
    .link-green-50:focus {
        color: RGBA(222, 240, 223, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(222, 240, 223, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-light-green {
    color: RGBA(var(--bs-light-green-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-green-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-light-green:hover,
    .link-light-green:focus {
        color: RGBA(104, 209, 54, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(104, 209, 54, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-dark-blue {
    color: RGBA(var(--bs-dark-blue-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-dark-blue-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-dark-blue:hover,
    .link-dark-blue:focus {
        color: RGBA(11, 38, 108, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(11, 38, 108, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-nice-blue {
    color: RGBA(var(--bs-nice-blue-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-nice-blue-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-nice-blue:hover,
    .link-nice-blue:focus {
        color: RGBA(11, 83, 149, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(11, 83, 149, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-navy-blue {
    color: RGBA(var(--bs-navy-blue-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-navy-blue-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-navy-blue:hover,
    .link-navy-blue:focus {
        color: RGBA(25, 33, 86, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(25, 33, 86, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-blueberry {
    color: RGBA(var(--bs-blueberry-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-blueberry-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-blueberry:hover,
    .link-blueberry:focus {
        color: RGBA(42, 50, 120, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(42, 50, 120, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-light-blue {
    color: RGBA(var(--bs-light-blue-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-light-blue-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-light-blue:hover,
    .link-light-blue:focus {
        color: RGBA(238, 247, 255, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(238, 247, 255, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-transparent {
    color: RGBA(var(--bs-transparent-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-transparent-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-transparent:hover,
    .link-transparent:focus {
        color: RGBA(0, 0, 0, var(--bs-link-opacity, 1)) !important;
        text-decoration-color: RGBA(0, 0, 0, var(--bs-link-underline-opacity, 1)) !important;
    }

.link-body-emphasis {
    color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

    .link-body-emphasis:hover,
    .link-body-emphasis:focus {
        color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
        text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
    }

.focus-ring:focus {
    outline: 0;
    box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
    display: inline-flex;
    gap: 0.375rem;
    align-items: center;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
    text-underline-offset: 0.25em;
    backface-visibility: hidden;
}

    .icon-link > .bi {
        flex-shrink: 0;
        width: 1em;
        height: 1em;
        fill: currentcolor;
        transition: 0.2s ease-in-out transform;
    }

@media (prefers-reduced-motion: reduce) {
    .icon-link > .bi {
        transition: none;
    }
}

.icon-link-hover:hover > .bi,
.icon-link-hover:focus-visible > .bi {
    transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.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%;
}

.ratio-3x2 {
    --bs-aspect-ratio: 66.6666666667%;
}

.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;
    }
}

@media (min-width: 1900px) {
    .sticky-xxxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sticky-xxxl-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) {
    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;
}

    .visually-hidden:not(caption),
    .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
        position: absolute !important;
    }

    .visually-hidden *,
    .visually-hidden-focusable:not(:focus):not(:focus-within) * {
        overflow: hidden !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: var(--bs-border-width);
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

.object-fit-contain {
    object-fit: contain !important;
}

.object-fit-cover {
    object-fit: cover !important;
}

.object-fit-fill {
    object-fit: fill !important;
}

.object-fit-scale {
    object-fit: scale-down !important;
}

.object-fit-none {
    object-fit: none !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.overflow-x-auto {
    overflow-x: auto !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.overflow-x-visible {
    overflow-x: visible !important;
}

.overflow-x-scroll {
    overflow-x: scroll !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.overflow-y-visible {
    overflow-y: visible !important;
}

.overflow-y-scroll {
    overflow-y: scroll !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-inline-grid {
    display: inline-grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.shadow {
    box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
    box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.focus-ring-primary {
    --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
    --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
    --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
    --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
    --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
    --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
    --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
    --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

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

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-50 {
    right: 50% !important;
}

.end-100 {
    right: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
    transform: translateX(-50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #0d6efd !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #198754 !important;
}

.border-info {
    border-color: #0dcaf0 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #212529 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-black {
    border-color: #3b4141 !important;
}

.border-red {
    border-color: #d71921 !important;
}

.border-red-50 {
    border-color: #c61f2c !important;
}

.border-pink {
    border-color: #ffebeb !important;
}

.border-pink-50 {
    border-color: #ffc9c9 !important;
}

.border-light-pink {
    border-color: #fff8f8 !important;
}

.border-gray {
    border-color: #454545 !important;
}

.border-gray-50 {
    border-color: #939393 !important;
}

.border-light-gray {
    border-color: #c8c8c8 !important;
}

.border-light-gray-50 {
    border-color: #f3f4f5 !important;
}

.border-green {
    border-color: #0c8858 !important;
}

.border-green-50 {
    border-color: #d6ecd7 !important;
}

.border-light-green {
    border-color: #42c504 !important;
}

.border-dark-blue {
    border-color: #0e2f87 !important;
}

.border-nice-blue {
    border-color: #0e68ba !important;
}

.border-navy-blue {
    border-color: #1f296b !important;
}

.border-blueberry {
    border-color: #343e96 !important;
}

.border-light-blue {
    border-color: #eaf5ff !important;
}

.border-transparent {
    border-color: rgba(0, 0, 0, 0) !important;
}

.border-primary-subtle {
    border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
    border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
    border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
    border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
    border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
    border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
    border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
    border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.border-opacity-10 {
    --bs-border-opacity: 0.1;
}

.border-opacity-25 {
    --bs-border-opacity: 0.25;
}

.border-opacity-50 {
    --bs-border-opacity: 0.5;
}

.border-opacity-75 {
    --bs-border-opacity: 0.75;
}

.border-opacity-100 {
    --bs-border-opacity: 1;
}

.w-auto {
    width: auto !important;
}

.w-5 {
    width: 5% !important;
}

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-25 {
    width: 25% !important;
}

.w-30 {
    width: 30% !important;
}

.w-35 {
    width: 35% !important;
}

.w-40 {
    width: 40% !important;
}

.w-45 {
    width: 45% !important;
}

.w-50 {
    width: 50% !important;
}

.w-55 {
    width: 55% !important;
}

.w-60 {
    width: 60% !important;
}

.w-65 {
    width: 65% !important;
}

.w-70 {
    width: 70% !important;
}

.w-75 {
    width: 75% !important;
}

.w-80 {
    width: 80% !important;
}

.w-85 {
    width: 85% !important;
}

.w-90 {
    width: 90% !important;
}

.w-95 {
    width: 95% !important;
}

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

.mw-auto {
    max-width: auto !important;
}

.mw-5 {
    max-width: 5% !important;
}

.mw-10 {
    max-width: 10% !important;
}

.mw-15 {
    max-width: 15% !important;
}

.mw-20 {
    max-width: 20% !important;
}

.mw-25 {
    max-width: 25% !important;
}

.mw-30 {
    max-width: 30% !important;
}

.mw-35 {
    max-width: 35% !important;
}

.mw-40 {
    max-width: 40% !important;
}

.mw-45 {
    max-width: 45% !important;
}

.mw-50 {
    max-width: 50% !important;
}

.mw-55 {
    max-width: 55% !important;
}

.mw-60 {
    max-width: 60% !important;
}

.mw-65 {
    max-width: 65% !important;
}

.mw-70 {
    max-width: 70% !important;
}

.mw-75 {
    max-width: 75% !important;
}

.mw-80 {
    max-width: 80% !important;
}

.mw-85 {
    max-width: 85% !important;
}

.mw-90 {
    max-width: 90% !important;
}

.mw-95 {
    max-width: 95% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-auto {
    width: auto !important;
}

.vw-5 {
    width: 5vw !important;
}

.vw-10 {
    width: 10vw !important;
}

.vw-15 {
    width: 15vw !important;
}

.vw-20 {
    width: 20vw !important;
}

.vw-25 {
    width: 25vw !important;
}

.vw-30 {
    width: 30vw !important;
}

.vw-35 {
    width: 35vw !important;
}

.vw-40 {
    width: 40vw !important;
}

.vw-45 {
    width: 45vw !important;
}

.vw-50 {
    width: 50vw !important;
}

.vw-55 {
    width: 55vw !important;
}

.vw-60 {
    width: 60vw !important;
}

.vw-65 {
    width: 65vw !important;
}

.vw-70 {
    width: 70vw !important;
}

.vw-75 {
    width: 75vw !important;
}

.vw-80 {
    width: 80vw !important;
}

.vw-85 {
    width: 85vw !important;
}

.vw-90 {
    width: 90vw !important;
}

.vw-95 {
    width: 95vw !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-auto {
    min-width: auto !important;
}

.min-vw-5 {
    min-width: 5vw !important;
}

.min-vw-10 {
    min-width: 10vw !important;
}

.min-vw-15 {
    min-width: 15vw !important;
}

.min-vw-20 {
    min-width: 20vw !important;
}

.min-vw-25 {
    min-width: 25vw !important;
}

.min-vw-30 {
    min-width: 30vw !important;
}

.min-vw-35 {
    min-width: 35vw !important;
}

.min-vw-40 {
    min-width: 40vw !important;
}

.min-vw-45 {
    min-width: 45vw !important;
}

.min-vw-50 {
    min-width: 50vw !important;
}

.min-vw-55 {
    min-width: 55vw !important;
}

.min-vw-60 {
    min-width: 60vw !important;
}

.min-vw-65 {
    min-width: 65vw !important;
}

.min-vw-70 {
    min-width: 70vw !important;
}

.min-vw-75 {
    min-width: 75vw !important;
}

.min-vw-80 {
    min-width: 80vw !important;
}

.min-vw-85 {
    min-width: 85vw !important;
}

.min-vw-90 {
    min-width: 90vw !important;
}

.min-vw-95 {
    min-width: 95vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-auto {
    height: auto !important;
}

.h-5 {
    height: 5% !important;
}

.h-10 {
    height: 10% !important;
}

.h-15 {
    height: 15% !important;
}

.h-20 {
    height: 20% !important;
}

.h-25 {
    height: 25% !important;
}

.h-30 {
    height: 30% !important;
}

.h-35 {
    height: 35% !important;
}

.h-40 {
    height: 40% !important;
}

.h-45 {
    height: 45% !important;
}

.h-50 {
    height: 50% !important;
}

.h-55 {
    height: 55% !important;
}

.h-60 {
    height: 60% !important;
}

.h-65 {
    height: 65% !important;
}

.h-70 {
    height: 70% !important;
}

.h-75 {
    height: 75% !important;
}

.h-80 {
    height: 80% !important;
}

.h-85 {
    height: 85% !important;
}

.h-90 {
    height: 90% !important;
}

.h-95 {
    height: 95% !important;
}

.h-100 {
    height: 100% !important;
}

.mh-auto {
    max-height: auto !important;
}

.mh-5 {
    max-height: 5% !important;
}

.mh-10 {
    max-height: 10% !important;
}

.mh-15 {
    max-height: 15% !important;
}

.mh-20 {
    max-height: 20% !important;
}

.mh-25 {
    max-height: 25% !important;
}

.mh-30 {
    max-height: 30% !important;
}

.mh-35 {
    max-height: 35% !important;
}

.mh-40 {
    max-height: 40% !important;
}

.mh-45 {
    max-height: 45% !important;
}

.mh-50 {
    max-height: 50% !important;
}

.mh-55 {
    max-height: 55% !important;
}

.mh-60 {
    max-height: 60% !important;
}

.mh-65 {
    max-height: 65% !important;
}

.mh-70 {
    max-height: 70% !important;
}

.mh-75 {
    max-height: 75% !important;
}

.mh-80 {
    max-height: 80% !important;
}

.mh-85 {
    max-height: 85% !important;
}

.mh-90 {
    max-height: 90% !important;
}

.mh-95 {
    max-height: 95% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-auto {
    height: auto !important;
}

.vh-5 {
    height: 5vh !important;
}

.vh-10 {
    height: 10vh !important;
}

.vh-15 {
    height: 15vh !important;
}

.vh-20 {
    height: 20vh !important;
}

.vh-25 {
    height: 25vh !important;
}

.vh-30 {
    height: 30vh !important;
}

.vh-35 {
    height: 35vh !important;
}

.vh-40 {
    height: 40vh !important;
}

.vh-45 {
    height: 45vh !important;
}

.vh-50 {
    height: 50vh !important;
}

.vh-55 {
    height: 55vh !important;
}

.vh-60 {
    height: 60vh !important;
}

.vh-65 {
    height: 65vh !important;
}

.vh-70 {
    height: 70vh !important;
}

.vh-75 {
    height: 75vh !important;
}

.vh-80 {
    height: 80vh !important;
}

.vh-85 {
    height: 85vh !important;
}

.vh-90 {
    height: 90vh !important;
}

.vh-95 {
    height: 95vh !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-auto {
    min-height: auto !important;
}

.min-vh-5 {
    min-height: 5vh !important;
}

.min-vh-10 {
    min-height: 10vh !important;
}

.min-vh-15 {
    min-height: 15vh !important;
}

.min-vh-20 {
    min-height: 20vh !important;
}

.min-vh-25 {
    min-height: 25vh !important;
}

.min-vh-30 {
    min-height: 30vh !important;
}

.min-vh-35 {
    min-height: 35vh !important;
}

.min-vh-40 {
    min-height: 40vh !important;
}

.min-vh-45 {
    min-height: 45vh !important;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.min-vh-55 {
    min-height: 55vh !important;
}

.min-vh-60 {
    min-height: 60vh !important;
}

.min-vh-65 {
    min-height: 65vh !important;
}

.min-vh-70 {
    min-height: 70vh !important;
}

.min-vh-75 {
    min-height: 75vh !important;
}

.min-vh-80 {
    min-height: 80vh !important;
}

.min-vh-85 {
    min-height: 85vh !important;
}

.min-vh-90 {
    min-height: 90vh !important;
}

.min-vh-95 {
    min-height: 95vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

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

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 0.75rem !important;
}

.m-4 {
    margin: 1rem !important;
}

.m-5 {
    margin: 1.5rem !important;
}

.m-6 {
    margin: 2rem !important;
}

.m-7 {
    margin: 2.5rem !important;
}

.m-8 {
    margin: 3rem !important;
}

.m-9 {
    margin: 3.5rem !important;
}

.m-10 {
    margin: 4rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
}

.mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-6 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
}

.mx-7 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
}

.mx-8 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-9 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
}

.mx-10 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-6 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.my-8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-9 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
}

.my-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.5rem !important;
}

.mt-6 {
    margin-top: 2rem !important;
}

.mt-7 {
    margin-top: 2.5rem !important;
}

.mt-8 {
    margin-top: 3rem !important;
}

.mt-9 {
    margin-top: 3.5rem !important;
}

.mt-10 {
    margin-top: 4rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 0.75rem !important;
}

.me-4 {
    margin-right: 1rem !important;
}

.me-5 {
    margin-right: 1.5rem !important;
}

.me-6 {
    margin-right: 2rem !important;
}

.me-7 {
    margin-right: 2.5rem !important;
}

.me-8 {
    margin-right: 3rem !important;
}

.me-9 {
    margin-right: 3.5rem !important;
}

.me-10 {
    margin-right: 4rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.mb-6 {
    margin-bottom: 2rem !important;
}

.mb-7 {
    margin-bottom: 2.5rem !important;
}

.mb-8 {
    margin-bottom: 3rem !important;
}

.mb-9 {
    margin-bottom: 3.5rem !important;
}

.mb-10 {
    margin-bottom: 4rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 0.75rem !important;
}

.ms-4 {
    margin-left: 1rem !important;
}

.ms-5 {
    margin-left: 1.5rem !important;
}

.ms-6 {
    margin-left: 2rem !important;
}

.ms-7 {
    margin-left: 2.5rem !important;
}

.ms-8 {
    margin-left: 3rem !important;
}

.ms-9 {
    margin-left: 3.5rem !important;
}

.ms-10 {
    margin-left: 4rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

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

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 0.75rem !important;
}

.m-4 {
    margin: 1rem !important;
}

.m-5 {
    margin: 1.5rem !important;
}

.m-6 {
    margin: 2rem !important;
}

.m-7 {
    margin: 2.5rem !important;
}

.m-8 {
    margin: 3rem !important;
}

.m-9 {
    margin: 3.5rem !important;
}

.m-10 {
    margin: 4rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
}

.mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-6 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
}

.mx-7 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
}

.mx-8 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-9 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
}

.mx-10 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-6 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.my-8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-9 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
}

.my-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.5rem !important;
}

.mt-6 {
    margin-top: 2rem !important;
}

.mt-7 {
    margin-top: 2.5rem !important;
}

.mt-8 {
    margin-top: 3rem !important;
}

.mt-9 {
    margin-top: 3.5rem !important;
}

.mt-10 {
    margin-top: 4rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 0.75rem !important;
}

.me-4 {
    margin-right: 1rem !important;
}

.me-5 {
    margin-right: 1.5rem !important;
}

.me-6 {
    margin-right: 2rem !important;
}

.me-7 {
    margin-right: 2.5rem !important;
}

.me-8 {
    margin-right: 3rem !important;
}

.me-9 {
    margin-right: 3.5rem !important;
}

.me-10 {
    margin-right: 4rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.mb-6 {
    margin-bottom: 2rem !important;
}

.mb-7 {
    margin-bottom: 2.5rem !important;
}

.mb-8 {
    margin-bottom: 3rem !important;
}

.mb-9 {
    margin-bottom: 3.5rem !important;
}

.mb-10 {
    margin-bottom: 4rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 0.75rem !important;
}

.ms-4 {
    margin-left: 1rem !important;
}

.ms-5 {
    margin-left: 1.5rem !important;
}

.ms-6 {
    margin-left: 2rem !important;
}

.ms-7 {
    margin-left: 2.5rem !important;
}

.ms-8 {
    margin-left: 3rem !important;
}

.ms-9 {
    margin-left: 3.5rem !important;
}

.ms-10 {
    margin-left: 4rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

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

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 0.75rem !important;
}

.p-4 {
    padding: 1rem !important;
}

.p-5 {
    padding: 1.5rem !important;
}

.p-6 {
    padding: 2rem !important;
}

.p-7 {
    padding: 2.5rem !important;
}

.p-8 {
    padding: 3rem !important;
}

.p-9 {
    padding: 3.5rem !important;
}

.p-10 {
    padding: 4rem !important;
}

.p-auto {
    padding: auto !important;
}

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

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
}

.px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-6 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
}

.px-7 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

.px-8 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.px-9 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
}

.px-10 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
}

.px-auto {
    padding-right: auto !important;
    padding-left: auto !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.py-8 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-9 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.py-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
}

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

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 0.75rem !important;
}

.pt-4 {
    padding-top: 1rem !important;
}

.pt-5 {
    padding-top: 1.5rem !important;
}

.pt-6 {
    padding-top: 2rem !important;
}

.pt-7 {
    padding-top: 2.5rem !important;
}

.pt-8 {
    padding-top: 3rem !important;
}

.pt-9 {
    padding-top: 3.5rem !important;
}

.pt-10 {
    padding-top: 4rem !important;
}

.pt-auto {
    padding-top: auto !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 0.75rem !important;
}

.pe-4 {
    padding-right: 1rem !important;
}

.pe-5 {
    padding-right: 1.5rem !important;
}

.pe-6 {
    padding-right: 2rem !important;
}

.pe-7 {
    padding-right: 2.5rem !important;
}

.pe-8 {
    padding-right: 3rem !important;
}

.pe-9 {
    padding-right: 3.5rem !important;
}

.pe-10 {
    padding-right: 4rem !important;
}

.pe-auto {
    padding-right: auto !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 0.75rem !important;
}

.pb-4 {
    padding-bottom: 1rem !important;
}

.pb-5 {
    padding-bottom: 1.5rem !important;
}

.pb-6 {
    padding-bottom: 2rem !important;
}

.pb-7 {
    padding-bottom: 2.5rem !important;
}

.pb-8 {
    padding-bottom: 3rem !important;
}

.pb-9 {
    padding-bottom: 3.5rem !important;
}

.pb-10 {
    padding-bottom: 4rem !important;
}

.pb-auto {
    padding-bottom: auto !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 0.75rem !important;
}

.ps-4 {
    padding-left: 1rem !important;
}

.ps-5 {
    padding-left: 1.5rem !important;
}

.ps-6 {
    padding-left: 2rem !important;
}

.ps-7 {
    padding-left: 2.5rem !important;
}

.ps-8 {
    padding-left: 3rem !important;
}

.ps-9 {
    padding-left: 3.5rem !important;
}

.ps-10 {
    padding-left: 4rem !important;
}

.ps-auto {
    padding-left: auto !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.row-gap-0 {
    row-gap: 0 !important;
}

.row-gap-1 {
    row-gap: 0.25rem !important;
}

.row-gap-2 {
    row-gap: 0.5rem !important;
}

.row-gap-3 {
    row-gap: 1rem !important;
}

.row-gap-4 {
    row-gap: 1.5rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}

.column-gap-0 {
    column-gap: 0 !important;
}

.column-gap-1 {
    column-gap: 0.25rem !important;
}

.column-gap-2 {
    column-gap: 0.5rem !important;
}

.column-gap-3 {
    column-gap: 1rem !important;
}

.column-gap-4 {
    column-gap: 1.5rem !important;
}

.column-gap-5 {
    column-gap: 3rem !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: 2.75rem !important;
}

.fs-2 {
    font-size: 2.5rem !important;
}

.fs-3 {
    font-size: 2.25rem !important;
}

.fs-4 {
    font-size: 2rem !important;
}

.fs-5 {
    font-size: 1.75rem !important;
}

.fs-6 {
    font-size: 1.5rem !important;
}

.fs-7 {
    font-size: 1.25rem !important;
}

.fs-8 {
    font-size: 1rem !important;
}

.fs-9 {
    font-size: 0.95rem !important;
}

.fs-10 {
    font-size: 0.9rem !important;
}

.fs-11 {
    font-size: 0.85rem !important;
}

.fs-12 {
    font-size: 0.8rem !important;
}

.fs-13 {
    font-size: 0.75rem !important;
}

.fs-14 {
    font-size: 0.7rem !important;
}

.fs-15 {
    font-size: 0.65rem !important;
}

.fs-16 {
    font-size: 0.6rem !important;
}

.fs-17 {
    font-size: 0.55rem !important;
}

.fs-18 {
    font-size: 0.5rem !important;
}

.fs-19 {
    font-size: 0.45rem !important;
}

.fs-20 {
    font-size: 0.4rem !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

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

.fw-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

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

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: hsla(0, 0%, 100%, 0.5) !important;
}

.text-body-secondary {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
    --bs-text-opacity: 1;
    color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
    --bs-text-opacity: 1;
    color: var(--bs-emphasis-color) !important;
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}

.text-opacity-25 {
    --bs-text-opacity: 0.25;
}

.text-opacity-50 {
    --bs-text-opacity: 0.5;
}

.text-opacity-75 {
    --bs-text-opacity: 0.75;
}

.text-opacity-100 {
    --bs-text-opacity: 1;
}

.text-primary {
    color: var(--color-dark-blue) !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-success {
    color: #198754 !important;
}

.text-info {
    color: #0dcaf0 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-light {
    color: #f8f9fa !important;
}

.text-dark {
    color: #212529 !important;
}

.text-white {
    color: #fff !important;
}

.text-black {
    color: #3b4141 !important;
}

.text-red {
    color: #d71921 !important;
}

.text-red-50 {
    color: #c61f2c !important;
}

.text-pink {
    color: #ffebeb !important;
}

.text-pink-50 {
    color: #ffc9c9 !important;
}

.text-light-pink {
    color: #fff8f8 !important;
}

.text-gray {
    color: var(--color-gray) !important;
}

.text-gray-50 {
    color: var(--color-gray-50) !important;
}

.text-light-gray {
    color: var(--color-light-gray) !important;
}

.text-light-gray-50 {
    color: var(--color-light-gray-50) !important;
}

.text-green {
    color: #0c8858 !important;
}

.text-green-50 {
    color: #d6ecd7 !important;
}

.text-light-green {
    color: #42c504 !important;
}

.text-dark-blue {
    color: #0e2f87 !important;
}

.text-nice-blue {
    color: var(--color-nice-blue) !important;
}

.text-navy-blue {
    color: var(--color-navy-blue) !important;
}

.text-blueberry {
    color: var(--color-blueberry) !important;
}

.text-light-blue {
    color: #eaf5ff !important;
}

.text-transparent {
    color: rgba(0, 0, 0, 0) !important;
}

.link-opacity-10 {
    --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
    --bs-link-opacity: 0.1;
}

.link-opacity-25 {
    --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
    --bs-link-opacity: 0.25;
}

.link-opacity-50 {
    --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
    --bs-link-opacity: 0.5;
}

.link-opacity-75 {
    --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
    --bs-link-opacity: 0.75;
}

.link-opacity-100 {
    --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
    --bs-link-opacity: 1;
}

.link-offset-1 {
    text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
    text-underline-offset: 0.125em !important;
}

.link-offset-2 {
    text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
    text-underline-offset: 0.25em !important;
}

.link-offset-3 {
    text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
    text-underline-offset: 0.375em !important;
}

.link-underline-primary {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
    --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
    --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
    --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
    --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
    --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
    --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
    --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
    --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
    --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
    --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
    --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
    --bs-link-underline-opacity: 1;
}

.bg-primary {
    background-color: #0d6efd !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-success {
    background-color: #198754 !important;
}

.bg-info {
    background-color: #0dcaf0 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #212529 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-black {
    background-color: #3b4141 !important;
}

.bg-red {
    background-color: #d71921 !important;
}

.bg-red-50 {
    background-color: #c61f2c !important;
}

.bg-pink {
    background-color: #ffebeb !important;
}

.bg-pink-50 {
    background-color: #ffc9c9 !important;
}

.bg-light-pink {
    background-color: #fff8f8 !important;
}

.bg-gray {
    background-color: #454545 !important;
}

.bg-gray-50 {
    background-color: var(--color-gray-50) !important;
}

.bg-light-gray {
    background-color: #c8c8c8 !important;
}

.bg-light-gray-50 {
    background-color: #f2f2f2 !important;
}

.bg-green {
    background-color: #0c8858 !important;
}

.bg-green-50 {
    background-color: #d6ecd7 !important;
}

.bg-light-green {
    background-color: #42c504 !important;
}

.bg-dark-blue {
    background-color: #0e2f87 !important;
}

.bg-nice-blue {
    background-color: var(--color-nice-blue) !important;
}

.bg-navy-blue {
    background-color: #1f296b !important;
}

.bg-blueberry {
    background-color: var(--color-blueberry) !important;
}

.bg-light-blue {
    background-color: #eaf5ff !important;
}

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

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}

.bg-primary-subtle {
    background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
    background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
    background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
    background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
    background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
    background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
    background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
    background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
    background-image: var(--bs-gradient) !important;
}
.bg-gradient-50 {
    background-image: var(--bs-gradient-50) !important;
}

.user-select-all {
    user-select: all !important;
}

.user-select-auto {
    user-select: auto !important;
}

.user-select-none {
    user-select: none !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 0.25rem !important;
}

.rounded-2 {
    border-radius: 0.375rem !important;
}

.rounded-3 {
    border-radius: 0.5rem !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-top {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.rounded-top-1 {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.rounded-top-2 {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.rounded-top-3 {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

.rounded-top-4 {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.rounded-top-5 {
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 2rem !important;
}

.rounded-top-circle {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
}

.rounded-top-pill {
    border-top-left-radius: 50rem !important;
    border-top-right-radius: 50rem !important;
}

.rounded-end {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.rounded-end-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-end-2 {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.rounded-end-3 {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.rounded-end-4 {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

.rounded-end-5 {
    border-top-right-radius: 2rem !important;
    border-bottom-right-radius: 2rem !important;
}

.rounded-end-circle {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.rounded-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-bottom-2 {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.rounded-bottom-3 {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}

.rounded-bottom-4 {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.rounded-bottom-5 {
    border-bottom-right-radius: 2rem !important;
    border-bottom-left-radius: 2rem !important;
}

.rounded-bottom-circle {
    border-bottom-right-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
    border-bottom-right-radius: 50rem !important;
    border-bottom-left-radius: 50rem !important;
}

.rounded-start {
    border-bottom-left-radius: 0.375rem !important;
    border-top-left-radius: 0.375rem !important;
}

.rounded-start-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.rounded-start-1 {
    border-bottom-left-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !important;
}

.rounded-start-2 {
    border-bottom-left-radius: 0.375rem !important;
    border-top-left-radius: 0.375rem !important;
}

.rounded-start-3 {
    border-bottom-left-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
}

.rounded-start-4 {
    border-bottom-left-radius: 1rem !important;
    border-top-left-radius: 1rem !important;
}

.rounded-start-5 {
    border-bottom-left-radius: 2rem !important;
    border-top-left-radius: 2rem !important;
}

.rounded-start-circle {
    border-bottom-left-radius: 50% !important;
    border-top-left-radius: 50% !important;
}

.rounded-start-pill {
    border-bottom-left-radius: 50rem !important;
    border-top-left-radius: 50rem !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.z-n1 {
    z-index: -1 !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.text-indent-0 {
    text-indent: 0 !important;
}

.text-indent-1 {
    text-indent: 0.25rem !important;
}

.text-indent-2 {
    text-indent: 0.5rem !important;
}

.text-indent-3 {
    text-indent: 0.75rem !important;
}

.text-indent-4 {
    text-indent: 1rem !important;
}

.text-indent-5 {
    text-indent: 1.5rem !important;
}

.text-indent-6 {
    text-indent: 2rem !important;
}

.text-indent-7 {
    text-indent: 2.5rem !important;
}

.text-indent-8 {
    text-indent: 3rem !important;
}

.text-indent-9 {
    text-indent: 3.5rem !important;
}

.text-indent-10 {
    text-indent: 4rem !important;
}

.text-indent-auto {
    text-indent: auto !important;
}

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

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

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

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

.ratio-3x2 {
    aspect-ratio: 66.6666666667% !important;
}

.stroke-primary {
    stroke: #0d6efd !important;
}

.stroke-secondary {
    stroke: #6c757d !important;
}

.stroke-success {
    stroke: #198754 !important;
}

.stroke-info {
    stroke: #0dcaf0 !important;
}

.stroke-warning {
    stroke: #ffc107 !important;
}

.stroke-danger {
    stroke: #dc3545 !important;
}

.stroke-light {
    stroke: #f8f9fa !important;
}

.stroke-dark {
    stroke: #212529 !important;
}

.stroke-white {
    stroke: #fff !important;
}

.stroke-black {
    stroke: #3b4141 !important;
}

.stroke-red {
    stroke: #d71921 !important;
}

.stroke-red-50 {
    stroke: #c61f2c !important;
}

.stroke-pink {
    stroke: #ffebeb !important;
}

.stroke-pink-50 {
    stroke: #ffc9c9 !important;
}

.stroke-light-pink {
    stroke: #fff8f8 !important;
}

.stroke-gray {
    stroke: #454545 !important;
}

.stroke-gray-50 {
    stroke: #939393 !important;
}

.stroke-light-gray {
    stroke: #c8c8c8 !important;
}

.stroke-light-gray-50 {
    stroke: #f3f4f5 !important;
}

.stroke-green {
    stroke: #0c8858 !important;
}

.stroke-green-50 {
    stroke: #d6ecd7 !important;
}

.stroke-light-green {
    stroke: #42c504 !important;
}

.stroke-dark-blue {
    stroke: #0e2f87 !important;
}

.stroke-nice-blue {
    stroke: #0e68ba !important;
}

.stroke-navy-blue {
    stroke: #1f296b !important;
}

.stroke-blueberry {
    stroke: #343e96 !important;
}

.stroke-light-blue {
    stroke: #eaf5ff !important;
}

.stroke-transparent {
    stroke: rgba(0, 0, 0, 0) !important;
}

.fill-primary {
    fill: #0d6efd !important;
}

.fill-secondary {
    fill: #6c757d !important;
}

.fill-success {
    fill: #198754 !important;
}

.fill-info {
    fill: #0dcaf0 !important;
}

.fill-warning {
    fill: #ffc107 !important;
}

.fill-danger {
    fill: #dc3545 !important;
}

.fill-light {
    fill: #f8f9fa !important;
}

.fill-dark {
    fill: #212529 !important;
}

.fill-white {
    fill: #fff !important;
}

.fill-black {
    fill: #3b4141 !important;
}

.fill-red {
    fill: #d71921 !important;
}

.fill-red-50 {
    fill: #c61f2c !important;
}

.fill-pink {
    fill: #ffebeb !important;
}

.fill-pink-50 {
    fill: #ffc9c9 !important;
}

.fill-light-pink {
    fill: #fff8f8 !important;
}

.fill-gray {
    fill: #454545 !important;
}

.fill-gray-50 {
    fill: #939393 !important;
}

.fill-light-gray {
    fill: #c8c8c8 !important;
}

.fill-light-gray-50 {
    fill: #f3f4f5 !important;
}

.fill-green {
    fill: #0c8858 !important;
}

.fill-green-50 {
    fill: #d6ecd7 !important;
}

.fill-light-green {
    fill: #42c504 !important;
}

.fill-dark-blue {
    fill: #0e2f87 !important;
}

.fill-nice-blue {
    fill: #0e68ba !important;
}

.fill-navy-blue {
    fill: #1f296b !important;
}

.fill-blueberry {
    fill: #343e96 !important;
}

.fill-light-blue {
    fill: #eaf5ff !important;
}

.fill-transparent {
    fill: rgba(0, 0, 0, 0) !important;
}

.h-rem-auto {
    height: auto !important;
}

.h-rem-1 {
    height: 0.5rem !important;
}

.h-rem-2 {
    height: 0.75rem !important;
}

.h-rem-3 {
    height: 1rem !important;
}

.h-rem-4 {
    height: 1.25rem !important;
}

.h-rem-5 {
    height: 1.5rem !important;
}

.h-rem-6 {
    height: 1.75rem !important;
}

.h-rem-7 {
    height: 2rem !important;
}

.h-rem-8 {
    height: 2.5rem !important;
}

.h-rem-9 {
    height: 3rem !important;
}

.h-rem-10 {
    height: 3.5rem !important;
}

.h-rem-11 {
    height: 4rem !important;
}

.h-rem-12 {
    height: 4.5rem !important;
}

.h-rem-13 {
    height: 5rem !important;
}

.h-rem-14 {
    height: 5.5rem !important;
}

.h-rem-15 {
    height: 6rem !important;
}

.h-rem-16 {
    height: 7rem !important;
}

.h-rem-17 {
    height: 8rem !important;
}

.h-rem-18 {
    height: 9rem !important;
}

.h-rem-19 {
    height: 10rem !important;
}

.h-rem-20 {
    height: 11rem !important;
}

.h-rem-21 {
    height: 12rem !important;
}

.h-rem-22 {
    height: 13rem !important;
}

.h-rem-23 {
    height: 14rem !important;
}

.h-rem-24 {
    height: 15rem !important;
}

.h-rem-25 {
    height: 16rem !important;
}

.h-rem-26 {
    height: 18rem !important;
}

.h-rem-27 {
    height: 20rem !important;
}

.h-rem-28 {
    height: 22rem !important;
}

.h-rem-29 {
    height: 24rem !important;
}

.h-rem-30 {
    height: 26rem !important;
}

.h-rem-31 {
    height: 28rem !important;
}

.h-rem-32 {
    height: 30rem !important;
}

.h-rem-33 {
    height: 32rem !important;
}

.h-rem-34 {
    height: 34rem !important;
}

.h-rem-35 {
    height: 36rem !important;
}

.h-rem-36 {
    height: 38rem !important;
}

.h-rem-37 {
    height: 40rem !important;
}

.h-rem-38 {
    height: 42rem !important;
}

.h-rem-39 {
    height: 44rem !important;
}

.h-rem-40 {
    height: 46rem !important;
}

.min-h-rem-auto {
    min-height: auto !important;
}

.min-h-rem-1 {
    min-height: 0.5rem !important;
}

.min-h-rem-2 {
    min-height: 0.75rem !important;
}

.min-h-rem-3 {
    min-height: 1rem !important;
}

.min-h-rem-4 {
    min-height: 1.25rem !important;
}

.min-h-rem-5 {
    min-height: 1.5rem !important;
}

.min-h-rem-6 {
    min-height: 1.75rem !important;
}

.min-h-rem-7 {
    min-height: 2rem !important;
}

.min-h-rem-8 {
    min-height: 2.5rem !important;
}

.min-h-rem-9 {
    min-height: 3rem !important;
}

.min-h-rem-10 {
    min-height: 3.5rem !important;
}

.min-h-rem-11 {
    min-height: 4rem !important;
}

.min-h-rem-12 {
    min-height: 4.5rem !important;
}

.min-h-rem-13 {
    min-height: 5rem !important;
}

.min-h-rem-14 {
    min-height: 5.5rem !important;
}

.min-h-rem-15 {
    min-height: 6rem !important;
}

.min-h-rem-16 {
    min-height: 7rem !important;
}

.min-h-rem-17 {
    min-height: 8rem !important;
}

.min-h-rem-18 {
    min-height: 9rem !important;
}

.min-h-rem-19 {
    min-height: 10rem !important;
}

.min-h-rem-20 {
    min-height: 11rem !important;
}

.min-h-rem-21 {
    min-height: 12rem !important;
}

.min-h-rem-22 {
    min-height: 13rem !important;
}

.min-h-rem-23 {
    min-height: 14rem !important;
}

.min-h-rem-24 {
    min-height: 15rem !important;
}

.min-h-rem-25 {
    min-height: 16rem !important;
}

.min-h-rem-26 {
    min-height: 18rem !important;
}

.min-h-rem-27 {
    min-height: 20rem !important;
}

.min-h-rem-28 {
    min-height: 22rem !important;
}

.min-h-rem-29 {
    min-height: 24rem !important;
}

.min-h-rem-30 {
    min-height: 26rem !important;
}

.min-h-rem-31 {
    min-height: 28rem !important;
}

.min-h-rem-32 {
    min-height: 30rem !important;
}

.min-h-rem-33 {
    min-height: 32rem !important;
}

.min-h-rem-34 {
    min-height: 34rem !important;
}

.min-h-rem-35 {
    min-height: 36rem !important;
}

.min-h-rem-36 {
    min-height: 38rem !important;
}

.min-h-rem-37 {
    min-height: 40rem !important;
}

.min-h-rem-38 {
    min-height: 42rem !important;
}

.min-h-rem-39 {
    min-height: 44rem !important;
}

.min-h-rem-40 {
    min-height: 46rem !important;
}

.mh-rem-auto {
    max-height: auto !important;
}

.mh-rem-1 {
    max-height: 0.5rem !important;
}

.mh-rem-2 {
    max-height: 0.75rem !important;
}

.mh-rem-3 {
    max-height: 1rem !important;
}

.mh-rem-4 {
    max-height: 1.25rem !important;
}

.mh-rem-5 {
    max-height: 1.5rem !important;
}

.mh-rem-6 {
    max-height: 1.75rem !important;
}

.mh-rem-7 {
    max-height: 2rem !important;
}

.mh-rem-8 {
    max-height: 2.5rem !important;
}

.mh-rem-9 {
    max-height: 3rem !important;
}

.mh-rem-10 {
    max-height: 3.5rem !important;
}

.mh-rem-11 {
    max-height: 4rem !important;
}

.mh-rem-12 {
    max-height: 4.5rem !important;
}

.mh-rem-13 {
    max-height: 5rem !important;
}

.mh-rem-14 {
    max-height: 5.5rem !important;
}

.mh-rem-15 {
    max-height: 6rem !important;
}

.mh-rem-16 {
    max-height: 7rem !important;
}

.mh-rem-17 {
    max-height: 8rem !important;
}

.mh-rem-18 {
    max-height: 9rem !important;
}

.mh-rem-19 {
    max-height: 10rem !important;
}

.mh-rem-20 {
    max-height: 11rem !important;
}

.mh-rem-21 {
    max-height: 12rem !important;
}

.mh-rem-22 {
    max-height: 13rem !important;
}

.mh-rem-23 {
    max-height: 14rem !important;
}

.mh-rem-24 {
    max-height: 15rem !important;
}

.mh-rem-25 {
    max-height: 16rem !important;
}

.mh-rem-26 {
    max-height: 18rem !important;
}

.mh-rem-27 {
    max-height: 20rem !important;
}

.mh-rem-28 {
    max-height: 22rem !important;
}

.mh-rem-29 {
    max-height: 24rem !important;
}

.mh-rem-30 {
    max-height: 26rem !important;
}

.mh-rem-31 {
    max-height: 28rem !important;
}

.mh-rem-32 {
    max-height: 30rem !important;
}

.mh-rem-33 {
    max-height: 32rem !important;
}

.mh-rem-34 {
    max-height: 34rem !important;
}

.mh-rem-35 {
    max-height: 36rem !important;
}

.mh-rem-36 {
    max-height: 38rem !important;
}

.mh-rem-37 {
    max-height: 40rem !important;
}

.mh-rem-38 {
    max-height: 42rem !important;
}

.mh-rem-39 {
    max-height: 44rem !important;
}

.mh-rem-40 {
    max-height: 46rem !important;
}

.w-rem-auto {
    width: auto !important;
}

.w-rem-1 {
    width: 0.5rem !important;
}

.w-rem-2 {
    width: 0.75rem !important;
}

.w-rem-3 {
    width: 1rem !important;
}

.w-rem-4 {
    width: 1.25rem !important;
}

.w-rem-5 {
    width: 1.5rem !important;
}

.w-rem-6 {
    width: 1.75rem !important;
}

.w-rem-7 {
    width: 2rem !important;
}

.w-rem-8 {
    width: 2.5rem !important;
}

.w-rem-9 {
    width: 3rem !important;
}

.w-rem-10 {
    width: 3.5rem !important;
}

.w-rem-11 {
    width: 4rem !important;
}

.w-rem-12 {
    width: 4.5rem !important;
}

.w-rem-13 {
    width: 5rem !important;
}

.w-rem-14 {
    width: 5.5rem !important;
}

.w-rem-15 {
    width: 6rem !important;
}

.w-rem-16 {
    width: 7rem !important;
}

.w-rem-17 {
    width: 8rem !important;
}

.w-rem-18 {
    width: 9rem !important;
}

.w-rem-19 {
    width: 10rem !important;
}

.w-rem-20 {
    width: 11rem !important;
}

.w-rem-21 {
    width: 12rem !important;
}

.w-rem-22 {
    width: 13rem !important;
}

.w-rem-23 {
    width: 14rem !important;
}

.w-rem-24 {
    width: 15rem !important;
}

.w-rem-25 {
    width: 16rem !important;
}

.w-rem-26 {
    width: 18rem !important;
}

.w-rem-27 {
    width: 20rem !important;
}

.w-rem-28 {
    width: 22rem !important;
}

.w-rem-29 {
    width: 24rem !important;
}

.w-rem-30 {
    width: 26rem !important;
}

.w-rem-31 {
    width: 28rem !important;
}

.w-rem-32 {
    width: 30rem !important;
}

.w-rem-33 {
    width: 32rem !important;
}

.w-rem-34 {
    width: 34rem !important;
}

.w-rem-35 {
    width: 36rem !important;
}

.w-rem-36 {
    width: 38rem !important;
}

.w-rem-37 {
    width: 40rem !important;
}

.w-rem-38 {
    width: 42rem !important;
}

.w-rem-39 {
    width: 44rem !important;
}

.w-rem-40 {
    width: 46rem !important;
}

.min-w-rem-auto {
    min-width: auto !important;
}

.min-w-rem-1 {
    min-width: 0.5rem !important;
}

.min-w-rem-2 {
    min-width: 0.75rem !important;
}

.min-w-rem-3 {
    min-width: 1rem !important;
}

.min-w-rem-4 {
    min-width: 1.25rem !important;
}

.min-w-rem-5 {
    min-width: 1.5rem !important;
}

.min-w-rem-6 {
    min-width: 1.75rem !important;
}

.min-w-rem-7 {
    min-width: 2rem !important;
}

.min-w-rem-8 {
    min-width: 2.5rem !important;
}

.min-w-rem-9 {
    min-width: 3rem !important;
}

.min-w-rem-10 {
    min-width: 3.5rem !important;
}

.min-w-rem-11 {
    min-width: 4rem !important;
}

.min-w-rem-12 {
    min-width: 4.5rem !important;
}

.min-w-rem-13 {
    min-width: 5rem !important;
}

.min-w-rem-14 {
    min-width: 5.5rem !important;
}

.min-w-rem-15 {
    min-width: 6rem !important;
}

.min-w-rem-16 {
    min-width: 7rem !important;
}

.min-w-rem-17 {
    min-width: 8rem !important;
}

.min-w-rem-18 {
    min-width: 9rem !important;
}

.min-w-rem-19 {
    min-width: 10rem !important;
}

.min-w-rem-20 {
    min-width: 11rem !important;
}

.min-w-rem-21 {
    min-width: 12rem !important;
}

.min-w-rem-22 {
    min-width: 13rem !important;
}

.min-w-rem-23 {
    min-width: 14rem !important;
}

.min-w-rem-24 {
    min-width: 15rem !important;
}

.min-w-rem-25 {
    min-width: 16rem !important;
}

.min-w-rem-26 {
    min-width: 18rem !important;
}

.min-w-rem-27 {
    min-width: 20rem !important;
}

.min-w-rem-28 {
    min-width: 22rem !important;
}

.min-w-rem-29 {
    min-width: 24rem !important;
}

.min-w-rem-30 {
    min-width: 26rem !important;
}

.min-w-rem-31 {
    min-width: 28rem !important;
}

.min-w-rem-32 {
    min-width: 30rem !important;
}

.min-w-rem-33 {
    min-width: 32rem !important;
}

.min-w-rem-34 {
    min-width: 34rem !important;
}

.min-w-rem-35 {
    min-width: 36rem !important;
}

.min-w-rem-36 {
    min-width: 38rem !important;
}

.min-w-rem-37 {
    min-width: 40rem !important;
}

.min-w-rem-38 {
    min-width: 42rem !important;
}

.min-w-rem-39 {
    min-width: 44rem !important;
}

.min-w-rem-40 {
    min-width: 46rem !important;
}

.mw-rem-auto {
    max-width: auto !important;
}

.mw-rem-1 {
    max-width: 0.5rem !important;
}

.mw-rem-2 {
    max-width: 0.75rem !important;
}

.mw-rem-3 {
    max-width: 1rem !important;
}

.mw-rem-4 {
    max-width: 1.25rem !important;
}

.mw-rem-5 {
    max-width: 1.5rem !important;
}

.mw-rem-6 {
    max-width: 1.75rem !important;
}

.mw-rem-7 {
    max-width: 2rem !important;
}

.mw-rem-8 {
    max-width: 2.5rem !important;
}

.mw-rem-9 {
    max-width: 3rem !important;
}

.mw-rem-10 {
    max-width: 3.5rem !important;
}

.mw-rem-11 {
    max-width: 4rem !important;
}

.mw-rem-12 {
    max-width: 4.5rem !important;
}

.mw-rem-13 {
    max-width: 5rem !important;
}

.mw-rem-14 {
    max-width: 5.5rem !important;
}

.mw-rem-15 {
    max-width: 6rem !important;
}

.mw-rem-16 {
    max-width: 7rem !important;
}

.mw-rem-17 {
    max-width: 8rem !important;
}

.mw-rem-18 {
    max-width: 9rem !important;
}

.mw-rem-19 {
    max-width: 10rem !important;
}

.mw-rem-20 {
    max-width: 11rem !important;
}

.mw-rem-21 {
    max-width: 12rem !important;
}

.mw-rem-22 {
    max-width: 13rem !important;
}

.mw-rem-23 {
    max-width: 14rem !important;
}

.mw-rem-24 {
    max-width: 15rem !important;
}

.mw-rem-25 {
    max-width: 16rem !important;
}

.mw-rem-26 {
    max-width: 18rem !important;
}

.mw-rem-27 {
    max-width: 20rem !important;
}

.mw-rem-28 {
    max-width: 22rem !important;
}

.mw-rem-29 {
    max-width: 24rem !important;
}

.mw-rem-30 {
    max-width: 26rem !important;
}

.mw-rem-31 {
    max-width: 28rem !important;
}

.mw-rem-32 {
    max-width: 30rem !important;
}

.mw-rem-33 {
    max-width: 32rem !important;
}

.mw-rem-34 {
    max-width: 34rem !important;
}

.mw-rem-35 {
    max-width: 36rem !important;
}

.mw-rem-36 {
    max-width: 38rem !important;
}

.mw-rem-37 {
    max-width: 40rem !important;
}

.mw-rem-38 {
    max-width: 42rem !important;
}

.mw-rem-39 {
    max-width: 44rem !important;
}

.mw-rem-40 {
    max-width: 46rem !important;
}

.svgs-1 {
    width: 16px !important;
    height: 16px !important;
}

.svgs-2 {
    width: 20px !important;
    height: 20px !important;
}

.svgs-3 {
    width: 24px !important;
    height: 24px !important;
}

.svgs-4 {
    width: 28px !important;
    height: 28px !important;
}

.svgs-5 {
    width: 32px !important;
    height: 32px !important;
}

.svgs-6 {
    width: 40px !important;
    height: 40px !important;
}

.svgs-7 {
    width: 48px !important;
    height: 48px !important;
}

.svgs-8 {
    width: 56px !important;
    height: 56px !important;
}

.svgs-9 {
    width: 64px !important;
    height: 64px !important;
}

.svgs-10 {
    width: 72px !important;
    height: 72px !important;
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left !important;
    }

    .float-sm-end {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }

    .object-fit-sm-contain {
        object-fit: contain !important;
    }

    .object-fit-sm-cover {
        object-fit: cover !important;
    }

    .object-fit-sm-fill {
        object-fit: fill !important;
    }

    .object-fit-sm-scale {
        object-fit: scale-down !important;
    }

    .object-fit-sm-none {
        object-fit: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-inline-grid {
        display: inline-grid !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .position-sm-static {
        position: static !important;
    }

    .position-sm-relative {
        position: relative !important;
    }

    .position-sm-absolute {
        position: absolute !important;
    }

    .position-sm-fixed {
        position: fixed !important;
    }

    .position-sm-sticky {
        position: sticky !important;
    }

    .border-sm {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-sm-0 {
        border: 0 !important;
    }

    .border-top-sm {
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-top-sm-0 {
        border-top: 0 !important;
    }

    .border-end-sm {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-end-sm-0 {
        border-right: 0 !important;
    }

    .border-bottom-sm {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-bottom-sm-0 {
        border-bottom: 0 !important;
    }

    .border-start-sm {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-start-sm-0 {
        border-left: 0 !important;
    }

    .border-sm-primary {
        border-color: #0d6efd !important;
    }

    .border-sm-secondary {
        border-color: #6c757d !important;
    }

    .border-sm-success {
        border-color: #198754 !important;
    }

    .border-sm-info {
        border-color: #0dcaf0 !important;
    }

    .border-sm-warning {
        border-color: #ffc107 !important;
    }

    .border-sm-danger {
        border-color: #dc3545 !important;
    }

    .border-sm-light {
        border-color: #f8f9fa !important;
    }

    .border-sm-dark {
        border-color: #212529 !important;
    }

    .border-sm-white {
        border-color: #fff !important;
    }

    .border-sm-black {
        border-color: #3b4141 !important;
    }

    .border-sm-red {
        border-color: #d71921 !important;
    }

    .border-sm-red-50 {
        border-color: #c61f2c !important;
    }

    .border-sm-pink {
        border-color: #ffebeb !important;
    }

    .border-sm-pink-50 {
        border-color: #ffc9c9 !important;
    }

    .border-sm-light-pink {
        border-color: #fff8f8 !important;
    }

    .border-sm-gray {
        border-color: #454545 !important;
    }

    .border-sm-gray-50 {
        border-color: #939393 !important;
    }

    .border-sm-light-gray {
        border-color: #c8c8c8 !important;
    }

    .border-sm-light-gray-50 {
        border-color: #f3f4f5 !important;
    }

    .border-sm-green {
        border-color: #0c8858 !important;
    }

    .border-sm-green-50 {
        border-color: #d6ecd7 !important;
    }

    .border-sm-light-green {
        border-color: #42c504 !important;
    }

    .border-sm-dark-blue {
        border-color: #0e2f87 !important;
    }

    .border-sm-nice-blue {
        border-color: #0e68ba !important;
    }

    .border-sm-navy-blue {
        border-color: #1f296b !important;
    }

    .border-sm-blueberry {
        border-color: #343e96 !important;
    }

    .border-sm-light-blue {
        border-color: #eaf5ff !important;
    }

    .border-sm-transparent {
        border-color: rgba(0, 0, 0, 0) !important;
    }

    .w-sm-auto {
        width: auto !important;
    }

    .w-sm-5 {
        width: 5% !important;
    }

    .w-sm-10 {
        width: 10% !important;
    }

    .w-sm-15 {
        width: 15% !important;
    }

    .w-sm-20 {
        width: 20% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-30 {
        width: 30% !important;
    }

    .w-sm-35 {
        width: 35% !important;
    }

    .w-sm-40 {
        width: 40% !important;
    }

    .w-sm-45 {
        width: 45% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-55 {
        width: 55% !important;
    }

    .w-sm-60 {
        width: 60% !important;
    }

    .w-sm-65 {
        width: 65% !important;
    }

    .w-sm-70 {
        width: 70% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-80 {
        width: 80% !important;
    }

    .w-sm-85 {
        width: 85% !important;
    }

    .w-sm-90 {
        width: 90% !important;
    }

    .w-sm-95 {
        width: 95% !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .mw-sm-auto {
        max-width: auto !important;
    }

    .mw-sm-5 {
        max-width: 5% !important;
    }

    .mw-sm-10 {
        max-width: 10% !important;
    }

    .mw-sm-15 {
        max-width: 15% !important;
    }

    .mw-sm-20 {
        max-width: 20% !important;
    }

    .mw-sm-25 {
        max-width: 25% !important;
    }

    .mw-sm-30 {
        max-width: 30% !important;
    }

    .mw-sm-35 {
        max-width: 35% !important;
    }

    .mw-sm-40 {
        max-width: 40% !important;
    }

    .mw-sm-45 {
        max-width: 45% !important;
    }

    .mw-sm-50 {
        max-width: 50% !important;
    }

    .mw-sm-55 {
        max-width: 55% !important;
    }

    .mw-sm-60 {
        max-width: 60% !important;
    }

    .mw-sm-65 {
        max-width: 65% !important;
    }

    .mw-sm-70 {
        max-width: 70% !important;
    }

    .mw-sm-75 {
        max-width: 75% !important;
    }

    .mw-sm-80 {
        max-width: 80% !important;
    }

    .mw-sm-85 {
        max-width: 85% !important;
    }

    .mw-sm-90 {
        max-width: 90% !important;
    }

    .mw-sm-95 {
        max-width: 95% !important;
    }

    .mw-sm-100 {
        max-width: 100% !important;
    }

    .vw-sm-auto {
        width: auto !important;
    }

    .vw-sm-5 {
        width: 5vw !important;
    }

    .vw-sm-10 {
        width: 10vw !important;
    }

    .vw-sm-15 {
        width: 15vw !important;
    }

    .vw-sm-20 {
        width: 20vw !important;
    }

    .vw-sm-25 {
        width: 25vw !important;
    }

    .vw-sm-30 {
        width: 30vw !important;
    }

    .vw-sm-35 {
        width: 35vw !important;
    }

    .vw-sm-40 {
        width: 40vw !important;
    }

    .vw-sm-45 {
        width: 45vw !important;
    }

    .vw-sm-50 {
        width: 50vw !important;
    }

    .vw-sm-55 {
        width: 55vw !important;
    }

    .vw-sm-60 {
        width: 60vw !important;
    }

    .vw-sm-65 {
        width: 65vw !important;
    }

    .vw-sm-70 {
        width: 70vw !important;
    }

    .vw-sm-75 {
        width: 75vw !important;
    }

    .vw-sm-80 {
        width: 80vw !important;
    }

    .vw-sm-85 {
        width: 85vw !important;
    }

    .vw-sm-90 {
        width: 90vw !important;
    }

    .vw-sm-95 {
        width: 95vw !important;
    }

    .vw-sm-100 {
        width: 100vw !important;
    }

    .min-vw-sm-auto {
        min-width: auto !important;
    }

    .min-vw-sm-5 {
        min-width: 5vw !important;
    }

    .min-vw-sm-10 {
        min-width: 10vw !important;
    }

    .min-vw-sm-15 {
        min-width: 15vw !important;
    }

    .min-vw-sm-20 {
        min-width: 20vw !important;
    }

    .min-vw-sm-25 {
        min-width: 25vw !important;
    }

    .min-vw-sm-30 {
        min-width: 30vw !important;
    }

    .min-vw-sm-35 {
        min-width: 35vw !important;
    }

    .min-vw-sm-40 {
        min-width: 40vw !important;
    }

    .min-vw-sm-45 {
        min-width: 45vw !important;
    }

    .min-vw-sm-50 {
        min-width: 50vw !important;
    }

    .min-vw-sm-55 {
        min-width: 55vw !important;
    }

    .min-vw-sm-60 {
        min-width: 60vw !important;
    }

    .min-vw-sm-65 {
        min-width: 65vw !important;
    }

    .min-vw-sm-70 {
        min-width: 70vw !important;
    }

    .min-vw-sm-75 {
        min-width: 75vw !important;
    }

    .min-vw-sm-80 {
        min-width: 80vw !important;
    }

    .min-vw-sm-85 {
        min-width: 85vw !important;
    }

    .min-vw-sm-90 {
        min-width: 90vw !important;
    }

    .min-vw-sm-95 {
        min-width: 95vw !important;
    }

    .min-vw-sm-100 {
        min-width: 100vw !important;
    }

    .h-sm-auto {
        height: auto !important;
    }

    .h-sm-5 {
        height: 5% !important;
    }

    .h-sm-10 {
        height: 10% !important;
    }

    .h-sm-15 {
        height: 15% !important;
    }

    .h-sm-20 {
        height: 20% !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }

    .h-sm-30 {
        height: 30% !important;
    }

    .h-sm-35 {
        height: 35% !important;
    }

    .h-sm-40 {
        height: 40% !important;
    }

    .h-sm-45 {
        height: 45% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-55 {
        height: 55% !important;
    }

    .h-sm-60 {
        height: 60% !important;
    }

    .h-sm-65 {
        height: 65% !important;
    }

    .h-sm-70 {
        height: 70% !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .h-sm-80 {
        height: 80% !important;
    }

    .h-sm-85 {
        height: 85% !important;
    }

    .h-sm-90 {
        height: 90% !important;
    }

    .h-sm-95 {
        height: 95% !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .mh-sm-auto {
        max-height: auto !important;
    }

    .mh-sm-5 {
        max-height: 5% !important;
    }

    .mh-sm-10 {
        max-height: 10% !important;
    }

    .mh-sm-15 {
        max-height: 15% !important;
    }

    .mh-sm-20 {
        max-height: 20% !important;
    }

    .mh-sm-25 {
        max-height: 25% !important;
    }

    .mh-sm-30 {
        max-height: 30% !important;
    }

    .mh-sm-35 {
        max-height: 35% !important;
    }

    .mh-sm-40 {
        max-height: 40% !important;
    }

    .mh-sm-45 {
        max-height: 45% !important;
    }

    .mh-sm-50 {
        max-height: 50% !important;
    }

    .mh-sm-55 {
        max-height: 55% !important;
    }

    .mh-sm-60 {
        max-height: 60% !important;
    }

    .mh-sm-65 {
        max-height: 65% !important;
    }

    .mh-sm-70 {
        max-height: 70% !important;
    }

    .mh-sm-75 {
        max-height: 75% !important;
    }

    .mh-sm-80 {
        max-height: 80% !important;
    }

    .mh-sm-85 {
        max-height: 85% !important;
    }

    .mh-sm-90 {
        max-height: 90% !important;
    }

    .mh-sm-95 {
        max-height: 95% !important;
    }

    .mh-sm-100 {
        max-height: 100% !important;
    }

    .vh-sm-auto {
        height: auto !important;
    }

    .vh-sm-5 {
        height: 5vh !important;
    }

    .vh-sm-10 {
        height: 10vh !important;
    }

    .vh-sm-15 {
        height: 15vh !important;
    }

    .vh-sm-20 {
        height: 20vh !important;
    }

    .vh-sm-25 {
        height: 25vh !important;
    }

    .vh-sm-30 {
        height: 30vh !important;
    }

    .vh-sm-35 {
        height: 35vh !important;
    }

    .vh-sm-40 {
        height: 40vh !important;
    }

    .vh-sm-45 {
        height: 45vh !important;
    }

    .vh-sm-50 {
        height: 50vh !important;
    }

    .vh-sm-55 {
        height: 55vh !important;
    }

    .vh-sm-60 {
        height: 60vh !important;
    }

    .vh-sm-65 {
        height: 65vh !important;
    }

    .vh-sm-70 {
        height: 70vh !important;
    }

    .vh-sm-75 {
        height: 75vh !important;
    }

    .vh-sm-80 {
        height: 80vh !important;
    }

    .vh-sm-85 {
        height: 85vh !important;
    }

    .vh-sm-90 {
        height: 90vh !important;
    }

    .vh-sm-95 {
        height: 95vh !important;
    }

    .vh-sm-100 {
        height: 100vh !important;
    }

    .min-vh-sm-auto {
        min-height: auto !important;
    }

    .min-vh-sm-5 {
        min-height: 5vh !important;
    }

    .min-vh-sm-10 {
        min-height: 10vh !important;
    }

    .min-vh-sm-15 {
        min-height: 15vh !important;
    }

    .min-vh-sm-20 {
        min-height: 20vh !important;
    }

    .min-vh-sm-25 {
        min-height: 25vh !important;
    }

    .min-vh-sm-30 {
        min-height: 30vh !important;
    }

    .min-vh-sm-35 {
        min-height: 35vh !important;
    }

    .min-vh-sm-40 {
        min-height: 40vh !important;
    }

    .min-vh-sm-45 {
        min-height: 45vh !important;
    }

    .min-vh-sm-50 {
        min-height: 50vh !important;
    }

    .min-vh-sm-55 {
        min-height: 55vh !important;
    }

    .min-vh-sm-60 {
        min-height: 60vh !important;
    }

    .min-vh-sm-65 {
        min-height: 65vh !important;
    }

    .min-vh-sm-70 {
        min-height: 70vh !important;
    }

    .min-vh-sm-75 {
        min-height: 75vh !important;
    }

    .min-vh-sm-80 {
        min-height: 80vh !important;
    }

    .min-vh-sm-85 {
        min-height: 85vh !important;
    }

    .min-vh-sm-90 {
        min-height: 90vh !important;
    }

    .min-vh-sm-95 {
        min-height: 95vh !important;
    }

    .min-vh-sm-100 {
        min-height: 100vh !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }

    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 0.75rem !important;
    }

    .m-sm-4 {
        margin: 1rem !important;
    }

    .m-sm-5 {
        margin: 1.5rem !important;
    }

    .m-sm-6 {
        margin: 2rem !important;
    }

    .m-sm-7 {
        margin: 2.5rem !important;
    }

    .m-sm-8 {
        margin: 3rem !important;
    }

    .m-sm-9 {
        margin: 3.5rem !important;
    }

    .m-sm-10 {
        margin: 4rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-sm-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-sm-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-sm-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-sm-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-sm-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-sm-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-sm-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-sm-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-sm-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-sm-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-sm-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-sm-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-sm-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 0.75rem !important;
    }

    .mt-sm-4 {
        margin-top: 1rem !important;
    }

    .mt-sm-5 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-6 {
        margin-top: 2rem !important;
    }

    .mt-sm-7 {
        margin-top: 2.5rem !important;
    }

    .mt-sm-8 {
        margin-top: 3rem !important;
    }

    .mt-sm-9 {
        margin-top: 3.5rem !important;
    }

    .mt-sm-10 {
        margin-top: 4rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.25rem !important;
    }

    .me-sm-2 {
        margin-right: 0.5rem !important;
    }

    .me-sm-3 {
        margin-right: 0.75rem !important;
    }

    .me-sm-4 {
        margin-right: 1rem !important;
    }

    .me-sm-5 {
        margin-right: 1.5rem !important;
    }

    .me-sm-6 {
        margin-right: 2rem !important;
    }

    .me-sm-7 {
        margin-right: 2.5rem !important;
    }

    .me-sm-8 {
        margin-right: 3rem !important;
    }

    .me-sm-9 {
        margin-right: 3.5rem !important;
    }

    .me-sm-10 {
        margin-right: 4rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-6 {
        margin-bottom: 2rem !important;
    }

    .mb-sm-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-sm-8 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-sm-10 {
        margin-bottom: 4rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-left: 0.75rem !important;
    }

    .ms-sm-4 {
        margin-left: 1rem !important;
    }

    .ms-sm-5 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-6 {
        margin-left: 2rem !important;
    }

    .ms-sm-7 {
        margin-left: 2.5rem !important;
    }

    .ms-sm-8 {
        margin-left: 3rem !important;
    }

    .ms-sm-9 {
        margin-left: 3.5rem !important;
    }

    .ms-sm-10 {
        margin-left: 4rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 0.75rem !important;
    }

    .m-sm-4 {
        margin: 1rem !important;
    }

    .m-sm-5 {
        margin: 1.5rem !important;
    }

    .m-sm-6 {
        margin: 2rem !important;
    }

    .m-sm-7 {
        margin: 2.5rem !important;
    }

    .m-sm-8 {
        margin: 3rem !important;
    }

    .m-sm-9 {
        margin: 3.5rem !important;
    }

    .m-sm-10 {
        margin: 4rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-sm-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-sm-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-sm-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-sm-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-sm-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-sm-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-sm-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-sm-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-sm-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-sm-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-sm-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-sm-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-sm-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-sm-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 0.75rem !important;
    }

    .mt-sm-4 {
        margin-top: 1rem !important;
    }

    .mt-sm-5 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-6 {
        margin-top: 2rem !important;
    }

    .mt-sm-7 {
        margin-top: 2.5rem !important;
    }

    .mt-sm-8 {
        margin-top: 3rem !important;
    }

    .mt-sm-9 {
        margin-top: 3.5rem !important;
    }

    .mt-sm-10 {
        margin-top: 4rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.25rem !important;
    }

    .me-sm-2 {
        margin-right: 0.5rem !important;
    }

    .me-sm-3 {
        margin-right: 0.75rem !important;
    }

    .me-sm-4 {
        margin-right: 1rem !important;
    }

    .me-sm-5 {
        margin-right: 1.5rem !important;
    }

    .me-sm-6 {
        margin-right: 2rem !important;
    }

    .me-sm-7 {
        margin-right: 2.5rem !important;
    }

    .me-sm-8 {
        margin-right: 3rem !important;
    }

    .me-sm-9 {
        margin-right: 3.5rem !important;
    }

    .me-sm-10 {
        margin-right: 4rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-6 {
        margin-bottom: 2rem !important;
    }

    .mb-sm-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-sm-8 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-sm-10 {
        margin-bottom: 4rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-3 {
        margin-left: 0.75rem !important;
    }

    .ms-sm-4 {
        margin-left: 1rem !important;
    }

    .ms-sm-5 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-6 {
        margin-left: 2rem !important;
    }

    .ms-sm-7 {
        margin-left: 2.5rem !important;
    }

    .ms-sm-8 {
        margin-left: 3rem !important;
    }

    .ms-sm-9 {
        margin-left: 3.5rem !important;
    }

    .ms-sm-10 {
        margin-left: 4rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 0.75rem !important;
    }

    .p-sm-4 {
        padding: 1rem !important;
    }

    .p-sm-5 {
        padding: 1.5rem !important;
    }

    .p-sm-6 {
        padding: 2rem !important;
    }

    .p-sm-7 {
        padding: 2.5rem !important;
    }

    .p-sm-8 {
        padding: 3rem !important;
    }

    .p-sm-9 {
        padding: 3.5rem !important;
    }

    .p-sm-10 {
        padding: 4rem !important;
    }

    .p-sm-auto {
        padding: auto !important;
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-sm-3 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .px-sm-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-sm-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-sm-6 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-sm-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-sm-8 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-sm-9 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-sm-10 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-sm-auto {
        padding-right: auto !important;
        padding-left: auto !important;
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-sm-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-sm-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-sm-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-sm-6 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-sm-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-sm-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-sm-9 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-sm-10 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-sm-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pt-sm-3 {
        padding-top: 0.75rem !important;
    }

    .pt-sm-4 {
        padding-top: 1rem !important;
    }

    .pt-sm-5 {
        padding-top: 1.5rem !important;
    }

    .pt-sm-6 {
        padding-top: 2rem !important;
    }

    .pt-sm-7 {
        padding-top: 2.5rem !important;
    }

    .pt-sm-8 {
        padding-top: 3rem !important;
    }

    .pt-sm-9 {
        padding-top: 3.5rem !important;
    }

    .pt-sm-10 {
        padding-top: 4rem !important;
    }

    .pt-sm-auto {
        padding-top: auto !important;
    }

    .pe-sm-0 {
        padding-right: 0 !important;
    }

    .pe-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pe-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pe-sm-3 {
        padding-right: 0.75rem !important;
    }

    .pe-sm-4 {
        padding-right: 1rem !important;
    }

    .pe-sm-5 {
        padding-right: 1.5rem !important;
    }

    .pe-sm-6 {
        padding-right: 2rem !important;
    }

    .pe-sm-7 {
        padding-right: 2.5rem !important;
    }

    .pe-sm-8 {
        padding-right: 3rem !important;
    }

    .pe-sm-9 {
        padding-right: 3.5rem !important;
    }

    .pe-sm-10 {
        padding-right: 4rem !important;
    }

    .pe-sm-auto {
        padding-right: auto !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-sm-6 {
        padding-bottom: 2rem !important;
    }

    .pb-sm-7 {
        padding-bottom: 2.5rem !important;
    }

    .pb-sm-8 {
        padding-bottom: 3rem !important;
    }

    .pb-sm-9 {
        padding-bottom: 3.5rem !important;
    }

    .pb-sm-10 {
        padding-bottom: 4rem !important;
    }

    .pb-sm-auto {
        padding-bottom: auto !important;
    }

    .ps-sm-0 {
        padding-left: 0 !important;
    }

    .ps-sm-1 {
        padding-left: 0.25rem !important;
    }

    .ps-sm-2 {
        padding-left: 0.5rem !important;
    }

    .ps-sm-3 {
        padding-left: 0.75rem !important;
    }

    .ps-sm-4 {
        padding-left: 1rem !important;
    }

    .ps-sm-5 {
        padding-left: 1.5rem !important;
    }

    .ps-sm-6 {
        padding-left: 2rem !important;
    }

    .ps-sm-7 {
        padding-left: 2.5rem !important;
    }

    .ps-sm-8 {
        padding-left: 3rem !important;
    }

    .ps-sm-9 {
        padding-left: 3.5rem !important;
    }

    .ps-sm-10 {
        padding-left: 4rem !important;
    }

    .ps-sm-auto {
        padding-left: auto !important;
    }

    .gap-sm-0 {
        gap: 0 !important;
    }

    .gap-sm-1 {
        gap: 0.25rem !important;
    }

    .gap-sm-2 {
        gap: 0.5rem !important;
    }

    .gap-sm-3 {
        gap: 1rem !important;
    }

    .gap-sm-4 {
        gap: 1.5rem !important;
    }

    .gap-sm-5 {
        gap: 3rem !important;
    }

    .row-gap-sm-0 {
        row-gap: 0 !important;
    }

    .row-gap-sm-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-sm-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-sm-3 {
        row-gap: 1rem !important;
    }

    .row-gap-sm-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-sm-5 {
        row-gap: 3rem !important;
    }

    .column-gap-sm-0 {
        column-gap: 0 !important;
    }

    .column-gap-sm-1 {
        column-gap: 0.25rem !important;
    }

    .column-gap-sm-2 {
        column-gap: 0.5rem !important;
    }

    .column-gap-sm-3 {
        column-gap: 1rem !important;
    }

    .column-gap-sm-4 {
        column-gap: 1.5rem !important;
    }

    .column-gap-sm-5 {
        column-gap: 3rem !important;
    }

    .fs-sm-1 {
        font-size: 2.75rem !important;
    }

    .fs-sm-2 {
        font-size: 2.5rem !important;
    }

    .fs-sm-3 {
        font-size: 2.25rem !important;
    }

    .fs-sm-4 {
        font-size: 2rem !important;
    }

    .fs-sm-5 {
        font-size: 1.75rem !important;
    }

    .fs-sm-6 {
        font-size: 1.5rem !important;
    }

    .fs-sm-7 {
        font-size: 1.25rem !important;
    }

    .fs-sm-8 {
        font-size: 1rem !important;
    }

    .fs-sm-9 {
        font-size: 0.95rem !important;
    }

    .fs-sm-10 {
        font-size: 0.9rem !important;
    }

    .fs-sm-11 {
        font-size: 0.85rem !important;
    }

    .fs-sm-12 {
        font-size: 0.8rem !important;
    }

    .fs-sm-13 {
        font-size: 0.75rem !important;
    }

    .fs-sm-14 {
        font-size: 0.7rem !important;
    }

    .fs-sm-15 {
        font-size: 0.65rem !important;
    }

    .fs-sm-16 {
        font-size: 0.6rem !important;
    }

    .fs-sm-17 {
        font-size: 0.55rem !important;
    }

    .fs-sm-18 {
        font-size: 0.5rem !important;
    }

    .fs-sm-19 {
        font-size: 0.45rem !important;
    }

    .fs-sm-20 {
        font-size: 0.4rem !important;
    }

    .text-sm-start {
        text-align: left !important;
    }

    .text-sm-end {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    .text-sm-primary {
        color: #0d6efd !important;
    }

    .text-sm-secondary {
        color: #6c757d !important;
    }

    .text-sm-success {
        color: #198754 !important;
    }

    .text-sm-info {
        color: #0dcaf0 !important;
    }

    .text-sm-warning {
        color: #ffc107 !important;
    }

    .text-sm-danger {
        color: #dc3545 !important;
    }

    .text-sm-light {
        color: #f8f9fa !important;
    }

    .text-sm-dark {
        color: #212529 !important;
    }

    .text-sm-white {
        color: #fff !important;
    }

    .text-sm-black {
        color: #3b4141 !important;
    }

    .text-sm-red {
        color: #d71921 !important;
    }

    .text-sm-red-50 {
        color: #c61f2c !important;
    }

    .text-sm-pink {
        color: #ffebeb !important;
    }

    .text-sm-pink-50 {
        color: #ffc9c9 !important;
    }

    .text-sm-light-pink {
        color: #fff8f8 !important;
    }

    .text-sm-gray {
        color: #454545 !important;
    }

    .text-sm-gray-50 {
        color: #939393 !important;
    }

    .text-sm-light-gray {
        color: #c8c8c8 !important;
    }

    .text-sm-light-gray-50 {
        color: #f3f4f5 !important;
    }

    .text-sm-green {
        color: #0c8858 !important;
    }

    .text-sm-green-50 {
        color: #d6ecd7 !important;
    }

    .text-sm-light-green {
        color: #42c504 !important;
    }

    .text-sm-dark-blue {
        color: #0e2f87 !important;
    }

    .text-sm-nice-blue {
        color: #0e68ba !important;
    }

    .text-sm-navy-blue {
        color: #1f296b !important;
    }

    .text-sm-blueberry {
        color: #343e96 !important;
    }

    .text-sm-light-blue {
        color: #eaf5ff !important;
    }

    .text-sm-transparent {
        color: rgba(0, 0, 0, 0) !important;
    }

    .text-sm-nowrap {
        white-space: nowrap !important;
    }

    .bg-sm-primary {
        background-color: #0d6efd !important;
    }

    .bg-sm-secondary {
        background-color: #6c757d !important;
    }

    .bg-sm-success {
        background-color: #198754 !important;
    }

    .bg-sm-info {
        background-color: #0dcaf0 !important;
    }

    .bg-sm-warning {
        background-color: #ffc107 !important;
    }

    .bg-sm-danger {
        background-color: #dc3545 !important;
    }

    .bg-sm-light {
        background-color: #f8f9fa !important;
    }

    .bg-sm-dark {
        background-color: #212529 !important;
    }

    .bg-sm-white {
        background-color: #fff !important;
    }

    .bg-sm-black {
        background-color: #3b4141 !important;
    }

    .bg-sm-red {
        background-color: #d71921 !important;
    }

    .bg-sm-red-50 {
        background-color: #c61f2c !important;
    }

    .bg-sm-pink {
        background-color: #ffebeb !important;
    }

    .bg-sm-pink-50 {
        background-color: #ffc9c9 !important;
    }

    .bg-sm-light-pink {
        background-color: #fff8f8 !important;
    }

    .bg-sm-gray {
        background-color: #454545 !important;
    }

    .bg-sm-gray-50 {
        background-color: #939393 !important;
    }

    .bg-sm-light-gray {
        background-color: #c8c8c8 !important;
    }

    .bg-sm-light-gray-50 {
        background-color: #f3f4f5 !important;
    }

    .bg-sm-green {
        background-color: #0c8858 !important;
    }

    .bg-sm-green-50 {
        background-color: #d6ecd7 !important;
    }

    .bg-sm-light-green {
        background-color: #42c504 !important;
    }

    .bg-sm-dark-blue {
        background-color: #0e2f87 !important;
    }

    .bg-sm-nice-blue {
        background-color: #0e68ba !important;
    }

    .bg-sm-navy-blue {
        background-color: #1f296b !important;
    }

    .bg-sm-blueberry {
        background-color: #343e96 !important;
    }

    .bg-sm-light-blue {
        background-color: #eaf5ff !important;
    }

    .bg-sm-transparent {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .rounded-sm {
        border-radius: 0.375rem !important;
    }

    .rounded-sm-0 {
        border-radius: 0 !important;
    }

    .rounded-sm-1 {
        border-radius: 0.25rem !important;
    }

    .rounded-sm-2 {
        border-radius: 0.375rem !important;
    }

    .rounded-sm-3 {
        border-radius: 0.5rem !important;
    }

    .rounded-sm-4 {
        border-radius: 1rem !important;
    }

    .rounded-sm-5 {
        border-radius: 2rem !important;
    }

    .rounded-sm-circle {
        border-radius: 50% !important;
    }

    .rounded-sm-pill {
        border-radius: 50rem !important;
    }

    .rounded-top-sm {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-sm-0 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .rounded-top-sm-1 {
        border-top-left-radius: 0.25rem !important;
        border-top-right-radius: 0.25rem !important;
    }

    .rounded-top-sm-2 {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-sm-3 {
        border-top-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
    }

    .rounded-top-sm-4 {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .rounded-top-sm-5 {
        border-top-left-radius: 2rem !important;
        border-top-right-radius: 2rem !important;
    }

    .rounded-top-sm-circle {
        border-top-left-radius: 50% !important;
        border-top-right-radius: 50% !important;
    }

    .rounded-top-sm-pill {
        border-top-left-radius: 50rem !important;
        border-top-right-radius: 50rem !important;
    }

    .rounded-end-sm {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-sm-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-end-sm-1 {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .rounded-end-sm-2 {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-sm-3 {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .rounded-end-sm-4 {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .rounded-end-sm-5 {
        border-top-right-radius: 2rem !important;
        border-bottom-right-radius: 2rem !important;
    }

    .rounded-end-sm-circle {
        border-top-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important;
    }

    .rounded-end-sm-pill {
        border-top-right-radius: 50rem !important;
        border-bottom-right-radius: 50rem !important;
    }

    .rounded-bottom-sm {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-sm-0 {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .rounded-bottom-sm-1 {
        border-bottom-right-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .rounded-bottom-sm-2 {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-sm-3 {
        border-bottom-right-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
    }

    .rounded-bottom-sm-4 {
        border-bottom-right-radius: 1rem !important;
        border-bottom-left-radius: 1rem !important;
    }

    .rounded-bottom-sm-5 {
        border-bottom-right-radius: 2rem !important;
        border-bottom-left-radius: 2rem !important;
    }

    .rounded-bottom-sm-circle {
        border-bottom-right-radius: 50% !important;
        border-bottom-left-radius: 50% !important;
    }

    .rounded-bottom-sm-pill {
        border-bottom-right-radius: 50rem !important;
        border-bottom-left-radius: 50rem !important;
    }

    .rounded-start-sm {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-sm-0 {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    .rounded-start-sm-1 {
        border-bottom-left-radius: 0.25rem !important;
        border-top-left-radius: 0.25rem !important;
    }

    .rounded-start-sm-2 {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-sm-3 {
        border-bottom-left-radius: 0.5rem !important;
        border-top-left-radius: 0.5rem !important;
    }

    .rounded-start-sm-4 {
        border-bottom-left-radius: 1rem !important;
        border-top-left-radius: 1rem !important;
    }

    .rounded-start-sm-5 {
        border-bottom-left-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
    }

    .rounded-start-sm-circle {
        border-bottom-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
    }

    .rounded-start-sm-pill {
        border-bottom-left-radius: 50rem !important;
        border-top-left-radius: 50rem !important;
    }

    .text-indent-sm-0 {
        text-indent: 0 !important;
    }

    .text-indent-sm-1 {
        text-indent: 0.25rem !important;
    }

    .text-indent-sm-2 {
        text-indent: 0.5rem !important;
    }

    .text-indent-sm-3 {
        text-indent: 0.75rem !important;
    }

    .text-indent-sm-4 {
        text-indent: 1rem !important;
    }

    .text-indent-sm-5 {
        text-indent: 1.5rem !important;
    }

    .text-indent-sm-6 {
        text-indent: 2rem !important;
    }

    .text-indent-sm-7 {
        text-indent: 2.5rem !important;
    }

    .text-indent-sm-8 {
        text-indent: 3rem !important;
    }

    .text-indent-sm-9 {
        text-indent: 3.5rem !important;
    }

    .text-indent-sm-10 {
        text-indent: 4rem !important;
    }

    .text-indent-sm-auto {
        text-indent: auto !important;
    }

    .ratio-sm-1x1 {
        aspect-ratio: 100% !important;
    }

    .ratio-sm-4x3 {
        aspect-ratio: 75% !important;
    }

    .ratio-sm-16x9 {
        aspect-ratio: 56.25% !important;
    }

    .ratio-sm-21x9 {
        aspect-ratio: 42.8571428571% !important;
    }

    .ratio-sm-3x2 {
        aspect-ratio: 66.6666666667% !important;
    }

    .stroke-sm-primary {
        stroke: #0d6efd !important;
    }

    .stroke-sm-secondary {
        stroke: #6c757d !important;
    }

    .stroke-sm-success {
        stroke: #198754 !important;
    }

    .stroke-sm-info {
        stroke: #0dcaf0 !important;
    }

    .stroke-sm-warning {
        stroke: #ffc107 !important;
    }

    .stroke-sm-danger {
        stroke: #dc3545 !important;
    }

    .stroke-sm-light {
        stroke: #f8f9fa !important;
    }

    .stroke-sm-dark {
        stroke: #212529 !important;
    }

    .stroke-sm-white {
        stroke: #fff !important;
    }

    .stroke-sm-black {
        stroke: #3b4141 !important;
    }

    .stroke-sm-red {
        stroke: #d71921 !important;
    }

    .stroke-sm-red-50 {
        stroke: #c61f2c !important;
    }

    .stroke-sm-pink {
        stroke: #ffebeb !important;
    }

    .stroke-sm-pink-50 {
        stroke: #ffc9c9 !important;
    }

    .stroke-sm-light-pink {
        stroke: #fff8f8 !important;
    }

    .stroke-sm-gray {
        stroke: #454545 !important;
    }

    .stroke-sm-gray-50 {
        stroke: #939393 !important;
    }

    .stroke-sm-light-gray {
        stroke: #c8c8c8 !important;
    }

    .stroke-sm-light-gray-50 {
        stroke: #f3f4f5 !important;
    }

    .stroke-sm-green {
        stroke: #0c8858 !important;
    }

    .stroke-sm-green-50 {
        stroke: #d6ecd7 !important;
    }

    .stroke-sm-light-green {
        stroke: #42c504 !important;
    }

    .stroke-sm-dark-blue {
        stroke: #0e2f87 !important;
    }

    .stroke-sm-nice-blue {
        stroke: #0e68ba !important;
    }

    .stroke-sm-navy-blue {
        stroke: #1f296b !important;
    }

    .stroke-sm-blueberry {
        stroke: #343e96 !important;
    }

    .stroke-sm-light-blue {
        stroke: #eaf5ff !important;
    }

    .stroke-sm-transparent {
        stroke: rgba(0, 0, 0, 0) !important;
    }

    .fill-sm-primary {
        fill: #0d6efd !important;
    }

    .fill-sm-secondary {
        fill: #6c757d !important;
    }

    .fill-sm-success {
        fill: #198754 !important;
    }

    .fill-sm-info {
        fill: #0dcaf0 !important;
    }

    .fill-sm-warning {
        fill: #ffc107 !important;
    }

    .fill-sm-danger {
        fill: #dc3545 !important;
    }

    .fill-sm-light {
        fill: #f8f9fa !important;
    }

    .fill-sm-dark {
        fill: #212529 !important;
    }

    .fill-sm-white {
        fill: #fff !important;
    }

    .fill-sm-black {
        fill: #3b4141 !important;
    }

    .fill-sm-red {
        fill: #d71921 !important;
    }

    .fill-sm-red-50 {
        fill: #c61f2c !important;
    }

    .fill-sm-pink {
        fill: #ffebeb !important;
    }

    .fill-sm-pink-50 {
        fill: #ffc9c9 !important;
    }

    .fill-sm-light-pink {
        fill: #fff8f8 !important;
    }

    .fill-sm-gray {
        fill: #454545 !important;
    }

    .fill-sm-gray-50 {
        fill: #939393 !important;
    }

    .fill-sm-light-gray {
        fill: #c8c8c8 !important;
    }

    .fill-sm-light-gray-50 {
        fill: #f3f4f5 !important;
    }

    .fill-sm-green {
        fill: #0c8858 !important;
    }

    .fill-sm-green-50 {
        fill: #d6ecd7 !important;
    }

    .fill-sm-light-green {
        fill: #42c504 !important;
    }

    .fill-sm-dark-blue {
        fill: #0e2f87 !important;
    }

    .fill-sm-nice-blue {
        fill: #0e68ba !important;
    }

    .fill-sm-navy-blue {
        fill: #1f296b !important;
    }

    .fill-sm-blueberry {
        fill: #343e96 !important;
    }

    .fill-sm-light-blue {
        fill: #eaf5ff !important;
    }

    .fill-sm-transparent {
        fill: rgba(0, 0, 0, 0) !important;
    }

    .h-rem-sm-auto {
        height: auto !important;
    }

    .h-rem-sm-1 {
        height: 0.5rem !important;
    }

    .h-rem-sm-2 {
        height: 0.75rem !important;
    }

    .h-rem-sm-3 {
        height: 1rem !important;
    }

    .h-rem-sm-4 {
        height: 1.25rem !important;
    }

    .h-rem-sm-5 {
        height: 1.5rem !important;
    }

    .h-rem-sm-6 {
        height: 1.75rem !important;
    }

    .h-rem-sm-7 {
        height: 2rem !important;
    }

    .h-rem-sm-8 {
        height: 2.5rem !important;
    }

    .h-rem-sm-9 {
        height: 3rem !important;
    }

    .h-rem-sm-10 {
        height: 3.5rem !important;
    }

    .h-rem-sm-11 {
        height: 4rem !important;
    }

    .h-rem-sm-12 {
        height: 4.5rem !important;
    }

    .h-rem-sm-13 {
        height: 5rem !important;
    }

    .h-rem-sm-14 {
        height: 5.5rem !important;
    }

    .h-rem-sm-15 {
        height: 6rem !important;
    }

    .h-rem-sm-16 {
        height: 7rem !important;
    }

    .h-rem-sm-17 {
        height: 8rem !important;
    }

    .h-rem-sm-18 {
        height: 9rem !important;
    }

    .h-rem-sm-19 {
        height: 10rem !important;
    }

    .h-rem-sm-20 {
        height: 11rem !important;
    }

    .h-rem-sm-21 {
        height: 12rem !important;
    }

    .h-rem-sm-22 {
        height: 13rem !important;
    }

    .h-rem-sm-23 {
        height: 14rem !important;
    }

    .h-rem-sm-24 {
        height: 15rem !important;
    }

    .h-rem-sm-25 {
        height: 16rem !important;
    }

    .h-rem-sm-26 {
        height: 18rem !important;
    }

    .h-rem-sm-27 {
        height: 20rem !important;
    }

    .h-rem-sm-28 {
        height: 22rem !important;
    }

    .h-rem-sm-29 {
        height: 24rem !important;
    }

    .h-rem-sm-30 {
        height: 26rem !important;
    }

    .h-rem-sm-31 {
        height: 28rem !important;
    }

    .h-rem-sm-32 {
        height: 30rem !important;
    }

    .h-rem-sm-33 {
        height: 32rem !important;
    }

    .h-rem-sm-34 {
        height: 34rem !important;
    }

    .h-rem-sm-35 {
        height: 36rem !important;
    }

    .h-rem-sm-36 {
        height: 38rem !important;
    }

    .h-rem-sm-37 {
        height: 40rem !important;
    }

    .h-rem-sm-38 {
        height: 42rem !important;
    }

    .h-rem-sm-39 {
        height: 44rem !important;
    }

    .h-rem-sm-40 {
        height: 46rem !important;
    }

    .min-h-rem-sm-auto {
        min-height: auto !important;
    }

    .min-h-rem-sm-1 {
        min-height: 0.5rem !important;
    }

    .min-h-rem-sm-2 {
        min-height: 0.75rem !important;
    }

    .min-h-rem-sm-3 {
        min-height: 1rem !important;
    }

    .min-h-rem-sm-4 {
        min-height: 1.25rem !important;
    }

    .min-h-rem-sm-5 {
        min-height: 1.5rem !important;
    }

    .min-h-rem-sm-6 {
        min-height: 1.75rem !important;
    }

    .min-h-rem-sm-7 {
        min-height: 2rem !important;
    }

    .min-h-rem-sm-8 {
        min-height: 2.5rem !important;
    }

    .min-h-rem-sm-9 {
        min-height: 3rem !important;
    }

    .min-h-rem-sm-10 {
        min-height: 3.5rem !important;
    }

    .min-h-rem-sm-11 {
        min-height: 4rem !important;
    }

    .min-h-rem-sm-12 {
        min-height: 4.5rem !important;
    }

    .min-h-rem-sm-13 {
        min-height: 5rem !important;
    }

    .min-h-rem-sm-14 {
        min-height: 5.5rem !important;
    }

    .min-h-rem-sm-15 {
        min-height: 6rem !important;
    }

    .min-h-rem-sm-16 {
        min-height: 7rem !important;
    }

    .min-h-rem-sm-17 {
        min-height: 8rem !important;
    }

    .min-h-rem-sm-18 {
        min-height: 9rem !important;
    }

    .min-h-rem-sm-19 {
        min-height: 10rem !important;
    }

    .min-h-rem-sm-20 {
        min-height: 11rem !important;
    }

    .min-h-rem-sm-21 {
        min-height: 12rem !important;
    }

    .min-h-rem-sm-22 {
        min-height: 13rem !important;
    }

    .min-h-rem-sm-23 {
        min-height: 14rem !important;
    }

    .min-h-rem-sm-24 {
        min-height: 15rem !important;
    }

    .min-h-rem-sm-25 {
        min-height: 16rem !important;
    }

    .min-h-rem-sm-26 {
        min-height: 18rem !important;
    }

    .min-h-rem-sm-27 {
        min-height: 20rem !important;
    }

    .min-h-rem-sm-28 {
        min-height: 22rem !important;
    }

    .min-h-rem-sm-29 {
        min-height: 24rem !important;
    }

    .min-h-rem-sm-30 {
        min-height: 26rem !important;
    }

    .min-h-rem-sm-31 {
        min-height: 28rem !important;
    }

    .min-h-rem-sm-32 {
        min-height: 30rem !important;
    }

    .min-h-rem-sm-33 {
        min-height: 32rem !important;
    }

    .min-h-rem-sm-34 {
        min-height: 34rem !important;
    }

    .min-h-rem-sm-35 {
        min-height: 36rem !important;
    }

    .min-h-rem-sm-36 {
        min-height: 38rem !important;
    }

    .min-h-rem-sm-37 {
        min-height: 40rem !important;
    }

    .min-h-rem-sm-38 {
        min-height: 42rem !important;
    }

    .min-h-rem-sm-39 {
        min-height: 44rem !important;
    }

    .min-h-rem-sm-40 {
        min-height: 46rem !important;
    }

    .mh-rem-sm-auto {
        max-height: auto !important;
    }

    .mh-rem-sm-1 {
        max-height: 0.5rem !important;
    }

    .mh-rem-sm-2 {
        max-height: 0.75rem !important;
    }

    .mh-rem-sm-3 {
        max-height: 1rem !important;
    }

    .mh-rem-sm-4 {
        max-height: 1.25rem !important;
    }

    .mh-rem-sm-5 {
        max-height: 1.5rem !important;
    }

    .mh-rem-sm-6 {
        max-height: 1.75rem !important;
    }

    .mh-rem-sm-7 {
        max-height: 2rem !important;
    }

    .mh-rem-sm-8 {
        max-height: 2.5rem !important;
    }

    .mh-rem-sm-9 {
        max-height: 3rem !important;
    }

    .mh-rem-sm-10 {
        max-height: 3.5rem !important;
    }

    .mh-rem-sm-11 {
        max-height: 4rem !important;
    }

    .mh-rem-sm-12 {
        max-height: 4.5rem !important;
    }

    .mh-rem-sm-13 {
        max-height: 5rem !important;
    }

    .mh-rem-sm-14 {
        max-height: 5.5rem !important;
    }

    .mh-rem-sm-15 {
        max-height: 6rem !important;
    }

    .mh-rem-sm-16 {
        max-height: 7rem !important;
    }

    .mh-rem-sm-17 {
        max-height: 8rem !important;
    }

    .mh-rem-sm-18 {
        max-height: 9rem !important;
    }

    .mh-rem-sm-19 {
        max-height: 10rem !important;
    }

    .mh-rem-sm-20 {
        max-height: 11rem !important;
    }

    .mh-rem-sm-21 {
        max-height: 12rem !important;
    }

    .mh-rem-sm-22 {
        max-height: 13rem !important;
    }

    .mh-rem-sm-23 {
        max-height: 14rem !important;
    }

    .mh-rem-sm-24 {
        max-height: 15rem !important;
    }

    .mh-rem-sm-25 {
        max-height: 16rem !important;
    }

    .mh-rem-sm-26 {
        max-height: 18rem !important;
    }

    .mh-rem-sm-27 {
        max-height: 20rem !important;
    }

    .mh-rem-sm-28 {
        max-height: 22rem !important;
    }

    .mh-rem-sm-29 {
        max-height: 24rem !important;
    }

    .mh-rem-sm-30 {
        max-height: 26rem !important;
    }

    .mh-rem-sm-31 {
        max-height: 28rem !important;
    }

    .mh-rem-sm-32 {
        max-height: 30rem !important;
    }

    .mh-rem-sm-33 {
        max-height: 32rem !important;
    }

    .mh-rem-sm-34 {
        max-height: 34rem !important;
    }

    .mh-rem-sm-35 {
        max-height: 36rem !important;
    }

    .mh-rem-sm-36 {
        max-height: 38rem !important;
    }

    .mh-rem-sm-37 {
        max-height: 40rem !important;
    }

    .mh-rem-sm-38 {
        max-height: 42rem !important;
    }

    .mh-rem-sm-39 {
        max-height: 44rem !important;
    }

    .mh-rem-sm-40 {
        max-height: 46rem !important;
    }

    .w-rem-sm-auto {
        width: auto !important;
    }

    .w-rem-sm-1 {
        width: 0.5rem !important;
    }

    .w-rem-sm-2 {
        width: 0.75rem !important;
    }

    .w-rem-sm-3 {
        width: 1rem !important;
    }

    .w-rem-sm-4 {
        width: 1.25rem !important;
    }

    .w-rem-sm-5 {
        width: 1.5rem !important;
    }

    .w-rem-sm-6 {
        width: 1.75rem !important;
    }

    .w-rem-sm-7 {
        width: 2rem !important;
    }

    .w-rem-sm-8 {
        width: 2.5rem !important;
    }

    .w-rem-sm-9 {
        width: 3rem !important;
    }

    .w-rem-sm-10 {
        width: 3.5rem !important;
    }

    .w-rem-sm-11 {
        width: 4rem !important;
    }

    .w-rem-sm-12 {
        width: 4.5rem !important;
    }

    .w-rem-sm-13 {
        width: 5rem !important;
    }

    .w-rem-sm-14 {
        width: 5.5rem !important;
    }

    .w-rem-sm-15 {
        width: 6rem !important;
    }

    .w-rem-sm-16 {
        width: 7rem !important;
    }

    .w-rem-sm-17 {
        width: 8rem !important;
    }

    .w-rem-sm-18 {
        width: 9rem !important;
    }

    .w-rem-sm-19 {
        width: 10rem !important;
    }

    .w-rem-sm-20 {
        width: 11rem !important;
    }

    .w-rem-sm-21 {
        width: 12rem !important;
    }

    .w-rem-sm-22 {
        width: 13rem !important;
    }

    .w-rem-sm-23 {
        width: 14rem !important;
    }

    .w-rem-sm-24 {
        width: 15rem !important;
    }

    .w-rem-sm-25 {
        width: 16rem !important;
    }

    .w-rem-sm-26 {
        width: 18rem !important;
    }

    .w-rem-sm-27 {
        width: 20rem !important;
    }

    .w-rem-sm-28 {
        width: 22rem !important;
    }

    .w-rem-sm-29 {
        width: 24rem !important;
    }

    .w-rem-sm-30 {
        width: 26rem !important;
    }

    .w-rem-sm-31 {
        width: 28rem !important;
    }

    .w-rem-sm-32 {
        width: 30rem !important;
    }

    .w-rem-sm-33 {
        width: 32rem !important;
    }

    .w-rem-sm-34 {
        width: 34rem !important;
    }

    .w-rem-sm-35 {
        width: 36rem !important;
    }

    .w-rem-sm-36 {
        width: 38rem !important;
    }

    .w-rem-sm-37 {
        width: 40rem !important;
    }

    .w-rem-sm-38 {
        width: 42rem !important;
    }

    .w-rem-sm-39 {
        width: 44rem !important;
    }

    .w-rem-sm-40 {
        width: 46rem !important;
    }

    .min-w-rem-sm-auto {
        min-width: auto !important;
    }

    .min-w-rem-sm-1 {
        min-width: 0.5rem !important;
    }

    .min-w-rem-sm-2 {
        min-width: 0.75rem !important;
    }

    .min-w-rem-sm-3 {
        min-width: 1rem !important;
    }

    .min-w-rem-sm-4 {
        min-width: 1.25rem !important;
    }

    .min-w-rem-sm-5 {
        min-width: 1.5rem !important;
    }

    .min-w-rem-sm-6 {
        min-width: 1.75rem !important;
    }

    .min-w-rem-sm-7 {
        min-width: 2rem !important;
    }

    .min-w-rem-sm-8 {
        min-width: 2.5rem !important;
    }

    .min-w-rem-sm-9 {
        min-width: 3rem !important;
    }

    .min-w-rem-sm-10 {
        min-width: 3.5rem !important;
    }

    .min-w-rem-sm-11 {
        min-width: 4rem !important;
    }

    .min-w-rem-sm-12 {
        min-width: 4.5rem !important;
    }

    .min-w-rem-sm-13 {
        min-width: 5rem !important;
    }

    .min-w-rem-sm-14 {
        min-width: 5.5rem !important;
    }

    .min-w-rem-sm-15 {
        min-width: 6rem !important;
    }

    .min-w-rem-sm-16 {
        min-width: 7rem !important;
    }

    .min-w-rem-sm-17 {
        min-width: 8rem !important;
    }

    .min-w-rem-sm-18 {
        min-width: 9rem !important;
    }

    .min-w-rem-sm-19 {
        min-width: 10rem !important;
    }

    .min-w-rem-sm-20 {
        min-width: 11rem !important;
    }

    .min-w-rem-sm-21 {
        min-width: 12rem !important;
    }

    .min-w-rem-sm-22 {
        min-width: 13rem !important;
    }

    .min-w-rem-sm-23 {
        min-width: 14rem !important;
    }

    .min-w-rem-sm-24 {
        min-width: 15rem !important;
    }

    .min-w-rem-sm-25 {
        min-width: 16rem !important;
    }

    .min-w-rem-sm-26 {
        min-width: 18rem !important;
    }

    .min-w-rem-sm-27 {
        min-width: 20rem !important;
    }

    .min-w-rem-sm-28 {
        min-width: 22rem !important;
    }

    .min-w-rem-sm-29 {
        min-width: 24rem !important;
    }

    .min-w-rem-sm-30 {
        min-width: 26rem !important;
    }

    .min-w-rem-sm-31 {
        min-width: 28rem !important;
    }

    .min-w-rem-sm-32 {
        min-width: 30rem !important;
    }

    .min-w-rem-sm-33 {
        min-width: 32rem !important;
    }

    .min-w-rem-sm-34 {
        min-width: 34rem !important;
    }

    .min-w-rem-sm-35 {
        min-width: 36rem !important;
    }

    .min-w-rem-sm-36 {
        min-width: 38rem !important;
    }

    .min-w-rem-sm-37 {
        min-width: 40rem !important;
    }

    .min-w-rem-sm-38 {
        min-width: 42rem !important;
    }

    .min-w-rem-sm-39 {
        min-width: 44rem !important;
    }

    .min-w-rem-sm-40 {
        min-width: 46rem !important;
    }

    .mw-rem-sm-auto {
        max-width: auto !important;
    }

    .mw-rem-sm-1 {
        max-width: 0.5rem !important;
    }

    .mw-rem-sm-2 {
        max-width: 0.75rem !important;
    }

    .mw-rem-sm-3 {
        max-width: 1rem !important;
    }

    .mw-rem-sm-4 {
        max-width: 1.25rem !important;
    }

    .mw-rem-sm-5 {
        max-width: 1.5rem !important;
    }

    .mw-rem-sm-6 {
        max-width: 1.75rem !important;
    }

    .mw-rem-sm-7 {
        max-width: 2rem !important;
    }

    .mw-rem-sm-8 {
        max-width: 2.5rem !important;
    }

    .mw-rem-sm-9 {
        max-width: 3rem !important;
    }

    .mw-rem-sm-10 {
        max-width: 3.5rem !important;
    }

    .mw-rem-sm-11 {
        max-width: 4rem !important;
    }

    .mw-rem-sm-12 {
        max-width: 4.5rem !important;
    }

    .mw-rem-sm-13 {
        max-width: 5rem !important;
    }

    .mw-rem-sm-14 {
        max-width: 5.5rem !important;
    }

    .mw-rem-sm-15 {
        max-width: 6rem !important;
    }

    .mw-rem-sm-16 {
        max-width: 7rem !important;
    }

    .mw-rem-sm-17 {
        max-width: 8rem !important;
    }

    .mw-rem-sm-18 {
        max-width: 9rem !important;
    }

    .mw-rem-sm-19 {
        max-width: 10rem !important;
    }

    .mw-rem-sm-20 {
        max-width: 11rem !important;
    }

    .mw-rem-sm-21 {
        max-width: 12rem !important;
    }

    .mw-rem-sm-22 {
        max-width: 13rem !important;
    }

    .mw-rem-sm-23 {
        max-width: 14rem !important;
    }

    .mw-rem-sm-24 {
        max-width: 15rem !important;
    }

    .mw-rem-sm-25 {
        max-width: 16rem !important;
    }

    .mw-rem-sm-26 {
        max-width: 18rem !important;
    }

    .mw-rem-sm-27 {
        max-width: 20rem !important;
    }

    .mw-rem-sm-28 {
        max-width: 22rem !important;
    }

    .mw-rem-sm-29 {
        max-width: 24rem !important;
    }

    .mw-rem-sm-30 {
        max-width: 26rem !important;
    }

    .mw-rem-sm-31 {
        max-width: 28rem !important;
    }

    .mw-rem-sm-32 {
        max-width: 30rem !important;
    }

    .mw-rem-sm-33 {
        max-width: 32rem !important;
    }

    .mw-rem-sm-34 {
        max-width: 34rem !important;
    }

    .mw-rem-sm-35 {
        max-width: 36rem !important;
    }

    .mw-rem-sm-36 {
        max-width: 38rem !important;
    }

    .mw-rem-sm-37 {
        max-width: 40rem !important;
    }

    .mw-rem-sm-38 {
        max-width: 42rem !important;
    }

    .mw-rem-sm-39 {
        max-width: 44rem !important;
    }

    .mw-rem-sm-40 {
        max-width: 46rem !important;
    }

    .svgs-sm-1 {
        width: 16px !important;
        height: 16px !important;
    }

    .svgs-sm-2 {
        width: 20px !important;
        height: 20px !important;
    }

    .svgs-sm-3 {
        width: 24px !important;
        height: 24px !important;
    }

    .svgs-sm-4 {
        width: 28px !important;
        height: 28px !important;
    }

    .svgs-sm-5 {
        width: 32px !important;
        height: 32px !important;
    }

    .svgs-sm-6 {
        width: 40px !important;
        height: 40px !important;
    }

    .svgs-sm-7 {
        width: 48px !important;
        height: 48px !important;
    }

    .svgs-sm-8 {
        width: 56px !important;
        height: 56px !important;
    }

    .svgs-sm-9 {
        width: 64px !important;
        height: 64px !important;
    }

    .svgs-sm-10 {
        width: 72px !important;
        height: 72px !important;
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }

    .object-fit-md-contain {
        object-fit: contain !important;
    }

    .object-fit-md-cover {
        object-fit: cover !important;
    }

    .object-fit-md-fill {
        object-fit: fill !important;
    }

    .object-fit-md-scale {
        object-fit: scale-down !important;
    }

    .object-fit-md-none {
        object-fit: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-inline-grid {
        display: inline-grid !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }

    .d-md-none {
        display: none !important;
    }

    .position-md-static {
        position: static !important;
    }

    .position-md-relative {
        position: relative !important;
    }

    .position-md-absolute {
        position: absolute !important;
    }

    .position-md-fixed {
        position: fixed !important;
    }

    .position-md-sticky {
        position: sticky !important;
    }

    .border-md {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-md-0 {
        border: 0 !important;
    }

    .border-top-md {
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-top-md-0 {
        border-top: 0 !important;
    }

    .border-end-md {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-end-md-0 {
        border-right: 0 !important;
    }

    .border-bottom-md {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-bottom-md-0 {
        border-bottom: 0 !important;
    }

    .border-start-md {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-start-md-0 {
        border-left: 0 !important;
    }

    .border-md-primary {
        border-color: #0d6efd !important;
    }

    .border-md-secondary {
        border-color: #6c757d !important;
    }

    .border-md-success {
        border-color: #198754 !important;
    }

    .border-md-info {
        border-color: #0dcaf0 !important;
    }

    .border-md-warning {
        border-color: #ffc107 !important;
    }

    .border-md-danger {
        border-color: #dc3545 !important;
    }

    .border-md-light {
        border-color: #f8f9fa !important;
    }

    .border-md-dark {
        border-color: #212529 !important;
    }

    .border-md-white {
        border-color: #fff !important;
    }

    .border-md-black {
        border-color: #3b4141 !important;
    }

    .border-md-red {
        border-color: #d71921 !important;
    }

    .border-md-red-50 {
        border-color: #c61f2c !important;
    }

    .border-md-pink {
        border-color: #ffebeb !important;
    }

    .border-md-pink-50 {
        border-color: #ffc9c9 !important;
    }

    .border-md-light-pink {
        border-color: #fff8f8 !important;
    }

    .border-md-gray {
        border-color: #454545 !important;
    }

    .border-md-gray-50 {
        border-color: #939393 !important;
    }

    .border-md-light-gray {
        border-color: #c8c8c8 !important;
    }

    .border-md-light-gray-50 {
        border-color: #f3f4f5 !important;
    }

    .border-md-green {
        border-color: #0c8858 !important;
    }

    .border-md-green-50 {
        border-color: #d6ecd7 !important;
    }

    .border-md-light-green {
        border-color: #42c504 !important;
    }

    .border-md-dark-blue {
        border-color: #0e2f87 !important;
    }

    .border-md-nice-blue {
        border-color: #0e68ba !important;
    }

    .border-md-navy-blue {
        border-color: #1f296b !important;
    }

    .border-md-blueberry {
        border-color: #343e96 !important;
    }

    .border-md-light-blue {
        border-color: #eaf5ff !important;
    }

    .border-md-transparent {
        border-color: rgba(0, 0, 0, 0) !important;
    }

    .w-md-auto {
        width: auto !important;
    }

    .w-md-5 {
        width: 5% !important;
    }

    .w-md-10 {
        width: 10% !important;
    }

    .w-md-15 {
        width: 15% !important;
    }

    .w-md-20 {
        width: 20% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .w-md-30 {
        width: 30% !important;
    }

    .w-md-35 {
        width: 35% !important;
    }

    .w-md-40 {
        width: 40% !important;
    }

    .w-md-45 {
        width: 45% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-55 {
        width: 55% !important;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .w-md-65 {
        width: 65% !important;
    }

    .w-md-70 {
        width: 70% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-80 {
        width: 80% !important;
    }

    .w-md-85 {
        width: 85% !important;
    }

    .w-md-90 {
        width: 90% !important;
    }

    .w-md-95 {
        width: 95% !important;
    }

    .w-md-100 {
        width: 100% !important;
    }

    .mw-md-auto {
        max-width: auto !important;
    }

    .mw-md-5 {
        max-width: 5% !important;
    }

    .mw-md-10 {
        max-width: 10% !important;
    }

    .mw-md-15 {
        max-width: 15% !important;
    }

    .mw-md-20 {
        max-width: 20% !important;
    }

    .mw-md-25 {
        max-width: 25% !important;
    }

    .mw-md-30 {
        max-width: 30% !important;
    }

    .mw-md-35 {
        max-width: 35% !important;
    }

    .mw-md-40 {
        max-width: 40% !important;
    }

    .mw-md-45 {
        max-width: 45% !important;
    }

    .mw-md-50 {
        max-width: 50% !important;
    }

    .mw-md-55 {
        max-width: 55% !important;
    }

    .mw-md-60 {
        max-width: 60% !important;
    }

    .mw-md-65 {
        max-width: 65% !important;
    }

    .mw-md-70 {
        max-width: 70% !important;
    }

    .mw-md-75 {
        max-width: 75% !important;
    }

    .mw-md-80 {
        max-width: 80% !important;
    }

    .mw-md-85 {
        max-width: 85% !important;
    }

    .mw-md-90 {
        max-width: 90% !important;
    }

    .mw-md-95 {
        max-width: 95% !important;
    }

    .mw-md-100 {
        max-width: 100% !important;
    }

    .vw-md-auto {
        width: auto !important;
    }

    .vw-md-5 {
        width: 5vw !important;
    }

    .vw-md-10 {
        width: 10vw !important;
    }

    .vw-md-15 {
        width: 15vw !important;
    }

    .vw-md-20 {
        width: 20vw !important;
    }

    .vw-md-25 {
        width: 25vw !important;
    }

    .vw-md-30 {
        width: 30vw !important;
    }

    .vw-md-35 {
        width: 35vw !important;
    }

    .vw-md-40 {
        width: 40vw !important;
    }

    .vw-md-45 {
        width: 45vw !important;
    }

    .vw-md-50 {
        width: 50vw !important;
    }

    .vw-md-55 {
        width: 55vw !important;
    }

    .vw-md-60 {
        width: 60vw !important;
    }

    .vw-md-65 {
        width: 65vw !important;
    }

    .vw-md-70 {
        width: 70vw !important;
    }

    .vw-md-75 {
        width: 75vw !important;
    }

    .vw-md-80 {
        width: 80vw !important;
    }

    .vw-md-85 {
        width: 85vw !important;
    }

    .vw-md-90 {
        width: 90vw !important;
    }

    .vw-md-95 {
        width: 95vw !important;
    }

    .vw-md-100 {
        width: 100vw !important;
    }

    .min-vw-md-auto {
        min-width: auto !important;
    }

    .min-vw-md-5 {
        min-width: 5vw !important;
    }

    .min-vw-md-10 {
        min-width: 10vw !important;
    }

    .min-vw-md-15 {
        min-width: 15vw !important;
    }

    .min-vw-md-20 {
        min-width: 20vw !important;
    }

    .min-vw-md-25 {
        min-width: 25vw !important;
    }

    .min-vw-md-30 {
        min-width: 30vw !important;
    }

    .min-vw-md-35 {
        min-width: 35vw !important;
    }

    .min-vw-md-40 {
        min-width: 40vw !important;
    }

    .min-vw-md-45 {
        min-width: 45vw !important;
    }

    .min-vw-md-50 {
        min-width: 50vw !important;
    }

    .min-vw-md-55 {
        min-width: 55vw !important;
    }

    .min-vw-md-60 {
        min-width: 60vw !important;
    }

    .min-vw-md-65 {
        min-width: 65vw !important;
    }

    .min-vw-md-70 {
        min-width: 70vw !important;
    }

    .min-vw-md-75 {
        min-width: 75vw !important;
    }

    .min-vw-md-80 {
        min-width: 80vw !important;
    }

    .min-vw-md-85 {
        min-width: 85vw !important;
    }

    .min-vw-md-90 {
        min-width: 90vw !important;
    }

    .min-vw-md-95 {
        min-width: 95vw !important;
    }

    .min-vw-md-100 {
        min-width: 100vw !important;
    }

    .h-md-auto {
        height: auto !important;
    }

    .h-md-5 {
        height: 5% !important;
    }

    .h-md-10 {
        height: 10% !important;
    }

    .h-md-15 {
        height: 15% !important;
    }

    .h-md-20 {
        height: 20% !important;
    }

    .h-md-25 {
        height: 25% !important;
    }

    .h-md-30 {
        height: 30% !important;
    }

    .h-md-35 {
        height: 35% !important;
    }

    .h-md-40 {
        height: 40% !important;
    }

    .h-md-45 {
        height: 45% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-55 {
        height: 55% !important;
    }

    .h-md-60 {
        height: 60% !important;
    }

    .h-md-65 {
        height: 65% !important;
    }

    .h-md-70 {
        height: 70% !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .h-md-80 {
        height: 80% !important;
    }

    .h-md-85 {
        height: 85% !important;
    }

    .h-md-90 {
        height: 90% !important;
    }

    .h-md-95 {
        height: 95% !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .mh-md-auto {
        max-height: auto !important;
    }

    .mh-md-5 {
        max-height: 5% !important;
    }

    .mh-md-10 {
        max-height: 10% !important;
    }

    .mh-md-15 {
        max-height: 15% !important;
    }

    .mh-md-20 {
        max-height: 20% !important;
    }

    .mh-md-25 {
        max-height: 25% !important;
    }

    .mh-md-30 {
        max-height: 30% !important;
    }

    .mh-md-35 {
        max-height: 35% !important;
    }

    .mh-md-40 {
        max-height: 40% !important;
    }

    .mh-md-45 {
        max-height: 45% !important;
    }

    .mh-md-50 {
        max-height: 50% !important;
    }

    .mh-md-55 {
        max-height: 55% !important;
    }

    .mh-md-60 {
        max-height: 60% !important;
    }

    .mh-md-65 {
        max-height: 65% !important;
    }

    .mh-md-70 {
        max-height: 70% !important;
    }

    .mh-md-75 {
        max-height: 75% !important;
    }

    .mh-md-80 {
        max-height: 80% !important;
    }

    .mh-md-85 {
        max-height: 85% !important;
    }

    .mh-md-90 {
        max-height: 90% !important;
    }

    .mh-md-95 {
        max-height: 95% !important;
    }

    .mh-md-100 {
        max-height: 100% !important;
    }

    .vh-md-auto {
        height: auto !important;
    }

    .vh-md-5 {
        height: 5vh !important;
    }

    .vh-md-10 {
        height: 10vh !important;
    }

    .vh-md-15 {
        height: 15vh !important;
    }

    .vh-md-20 {
        height: 20vh !important;
    }

    .vh-md-25 {
        height: 25vh !important;
    }

    .vh-md-30 {
        height: 30vh !important;
    }

    .vh-md-35 {
        height: 35vh !important;
    }

    .vh-md-40 {
        height: 40vh !important;
    }

    .vh-md-45 {
        height: 45vh !important;
    }

    .vh-md-50 {
        height: 50vh !important;
    }

    .vh-md-55 {
        height: 55vh !important;
    }

    .vh-md-60 {
        height: 60vh !important;
    }

    .vh-md-65 {
        height: 65vh !important;
    }

    .vh-md-70 {
        height: 70vh !important;
    }

    .vh-md-75 {
        height: 75vh !important;
    }

    .vh-md-80 {
        height: 80vh !important;
    }

    .vh-md-85 {
        height: 85vh !important;
    }

    .vh-md-90 {
        height: 90vh !important;
    }

    .vh-md-95 {
        height: 95vh !important;
    }

    .vh-md-100 {
        height: 100vh !important;
    }

    .min-vh-md-auto {
        min-height: auto !important;
    }

    .min-vh-md-5 {
        min-height: 5vh !important;
    }

    .min-vh-md-10 {
        min-height: 10vh !important;
    }

    .min-vh-md-15 {
        min-height: 15vh !important;
    }

    .min-vh-md-20 {
        min-height: 20vh !important;
    }

    .min-vh-md-25 {
        min-height: 25vh !important;
    }

    .min-vh-md-30 {
        min-height: 30vh !important;
    }

    .min-vh-md-35 {
        min-height: 35vh !important;
    }

    .min-vh-md-40 {
        min-height: 40vh !important;
    }

    .min-vh-md-45 {
        min-height: 45vh !important;
    }

    .min-vh-md-50 {
        min-height: 50vh !important;
    }

    .min-vh-md-55 {
        min-height: 55vh !important;
    }

    .min-vh-md-60 {
        min-height: 60vh !important;
    }

    .min-vh-md-65 {
        min-height: 65vh !important;
    }

    .min-vh-md-70 {
        min-height: 70vh !important;
    }

    .min-vh-md-75 {
        min-height: 75vh !important;
    }

    .min-vh-md-80 {
        min-height: 80vh !important;
    }

    .min-vh-md-85 {
        min-height: 85vh !important;
    }

    .min-vh-md-90 {
        min-height: 90vh !important;
    }

    .min-vh-md-95 {
        min-height: 95vh !important;
    }

    .min-vh-md-100 {
        min-height: 100vh !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }

    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .m-md-3 {
        margin: 0.75rem !important;
    }

    .m-md-4 {
        margin: 1rem !important;
    }

    .m-md-5 {
        margin: 1.5rem !important;
    }

    .m-md-6 {
        margin: 2rem !important;
    }

    .m-md-7 {
        margin: 2.5rem !important;
    }

    .m-md-8 {
        margin: 3rem !important;
    }

    .m-md-9 {
        margin: 3.5rem !important;
    }

    .m-md-10 {
        margin: 4rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-md-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-md-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-md-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-md-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-md-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-md-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-md-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-md-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-md-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-md-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-md-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-md-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-md-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-md-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-md-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-md-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .mt-md-3 {
        margin-top: 0.75rem !important;
    }

    .mt-md-4 {
        margin-top: 1rem !important;
    }

    .mt-md-5 {
        margin-top: 1.5rem !important;
    }

    .mt-md-6 {
        margin-top: 2rem !important;
    }

    .mt-md-7 {
        margin-top: 2.5rem !important;
    }

    .mt-md-8 {
        margin-top: 3rem !important;
    }

    .mt-md-9 {
        margin-top: 3.5rem !important;
    }

    .mt-md-10 {
        margin-top: 4rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-1 {
        margin-right: 0.25rem !important;
    }

    .me-md-2 {
        margin-right: 0.5rem !important;
    }

    .me-md-3 {
        margin-right: 0.75rem !important;
    }

    .me-md-4 {
        margin-right: 1rem !important;
    }

    .me-md-5 {
        margin-right: 1.5rem !important;
    }

    .me-md-6 {
        margin-right: 2rem !important;
    }

    .me-md-7 {
        margin-right: 2.5rem !important;
    }

    .me-md-8 {
        margin-right: 3rem !important;
    }

    .me-md-9 {
        margin-right: 3.5rem !important;
    }

    .me-md-10 {
        margin-right: 4rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1rem !important;
    }

    .mb-md-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-6 {
        margin-bottom: 2rem !important;
    }

    .mb-md-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-md-8 {
        margin-bottom: 3rem !important;
    }

    .mb-md-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-md-10 {
        margin-bottom: 4rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-1 {
        margin-left: 0.25rem !important;
    }

    .ms-md-2 {
        margin-left: 0.5rem !important;
    }

    .ms-md-3 {
        margin-left: 0.75rem !important;
    }

    .ms-md-4 {
        margin-left: 1rem !important;
    }

    .ms-md-5 {
        margin-left: 1.5rem !important;
    }

    .ms-md-6 {
        margin-left: 2rem !important;
    }

    .ms-md-7 {
        margin-left: 2.5rem !important;
    }

    .ms-md-8 {
        margin-left: 3rem !important;
    }

    .ms-md-9 {
        margin-left: 3.5rem !important;
    }

    .ms-md-10 {
        margin-left: 4rem !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .m-md-3 {
        margin: 0.75rem !important;
    }

    .m-md-4 {
        margin: 1rem !important;
    }

    .m-md-5 {
        margin: 1.5rem !important;
    }

    .m-md-6 {
        margin: 2rem !important;
    }

    .m-md-7 {
        margin: 2.5rem !important;
    }

    .m-md-8 {
        margin: 3rem !important;
    }

    .m-md-9 {
        margin: 3.5rem !important;
    }

    .m-md-10 {
        margin: 4rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-md-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-md-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-md-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-md-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-md-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-md-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-md-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-md-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-md-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-md-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-md-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-md-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-md-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-md-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-md-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-md-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .mt-md-3 {
        margin-top: 0.75rem !important;
    }

    .mt-md-4 {
        margin-top: 1rem !important;
    }

    .mt-md-5 {
        margin-top: 1.5rem !important;
    }

    .mt-md-6 {
        margin-top: 2rem !important;
    }

    .mt-md-7 {
        margin-top: 2.5rem !important;
    }

    .mt-md-8 {
        margin-top: 3rem !important;
    }

    .mt-md-9 {
        margin-top: 3.5rem !important;
    }

    .mt-md-10 {
        margin-top: 4rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-1 {
        margin-right: 0.25rem !important;
    }

    .me-md-2 {
        margin-right: 0.5rem !important;
    }

    .me-md-3 {
        margin-right: 0.75rem !important;
    }

    .me-md-4 {
        margin-right: 1rem !important;
    }

    .me-md-5 {
        margin-right: 1.5rem !important;
    }

    .me-md-6 {
        margin-right: 2rem !important;
    }

    .me-md-7 {
        margin-right: 2.5rem !important;
    }

    .me-md-8 {
        margin-right: 3rem !important;
    }

    .me-md-9 {
        margin-right: 3.5rem !important;
    }

    .me-md-10 {
        margin-right: 4rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1rem !important;
    }

    .mb-md-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-6 {
        margin-bottom: 2rem !important;
    }

    .mb-md-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-md-8 {
        margin-bottom: 3rem !important;
    }

    .mb-md-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-md-10 {
        margin-bottom: 4rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-1 {
        margin-left: 0.25rem !important;
    }

    .ms-md-2 {
        margin-left: 0.5rem !important;
    }

    .ms-md-3 {
        margin-left: 0.75rem !important;
    }

    .ms-md-4 {
        margin-left: 1rem !important;
    }

    .ms-md-5 {
        margin-left: 1.5rem !important;
    }

    .ms-md-6 {
        margin-left: 2rem !important;
    }

    .ms-md-7 {
        margin-left: 2.5rem !important;
    }

    .ms-md-8 {
        margin-left: 3rem !important;
    }

    .ms-md-9 {
        margin-left: 3.5rem !important;
    }

    .ms-md-10 {
        margin-left: 4rem !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .p-md-3 {
        padding: 0.75rem !important;
    }

    .p-md-4 {
        padding: 1rem !important;
    }

    .p-md-5 {
        padding: 1.5rem !important;
    }

    .p-md-6 {
        padding: 2rem !important;
    }

    .p-md-7 {
        padding: 2.5rem !important;
    }

    .p-md-8 {
        padding: 3rem !important;
    }

    .p-md-9 {
        padding: 3.5rem !important;
    }

    .p-md-10 {
        padding: 4rem !important;
    }

    .p-md-auto {
        padding: auto !important;
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-md-3 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .px-md-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-md-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-md-6 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-md-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-md-8 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-md-9 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-md-10 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-md-auto {
        padding-right: auto !important;
        padding-left: auto !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-md-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-md-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-md-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-md-6 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-md-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-md-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-md-9 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-md-10 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-md-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .pt-md-3 {
        padding-top: 0.75rem !important;
    }

    .pt-md-4 {
        padding-top: 1rem !important;
    }

    .pt-md-5 {
        padding-top: 1.5rem !important;
    }

    .pt-md-6 {
        padding-top: 2rem !important;
    }

    .pt-md-7 {
        padding-top: 2.5rem !important;
    }

    .pt-md-8 {
        padding-top: 3rem !important;
    }

    .pt-md-9 {
        padding-top: 3.5rem !important;
    }

    .pt-md-10 {
        padding-top: 4rem !important;
    }

    .pt-md-auto {
        padding-top: auto !important;
    }

    .pe-md-0 {
        padding-right: 0 !important;
    }

    .pe-md-1 {
        padding-right: 0.25rem !important;
    }

    .pe-md-2 {
        padding-right: 0.5rem !important;
    }

    .pe-md-3 {
        padding-right: 0.75rem !important;
    }

    .pe-md-4 {
        padding-right: 1rem !important;
    }

    .pe-md-5 {
        padding-right: 1.5rem !important;
    }

    .pe-md-6 {
        padding-right: 2rem !important;
    }

    .pe-md-7 {
        padding-right: 2.5rem !important;
    }

    .pe-md-8 {
        padding-right: 3rem !important;
    }

    .pe-md-9 {
        padding-right: 3.5rem !important;
    }

    .pe-md-10 {
        padding-right: 4rem !important;
    }

    .pe-md-auto {
        padding-right: auto !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-md-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1rem !important;
    }

    .pb-md-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-md-6 {
        padding-bottom: 2rem !important;
    }

    .pb-md-7 {
        padding-bottom: 2.5rem !important;
    }

    .pb-md-8 {
        padding-bottom: 3rem !important;
    }

    .pb-md-9 {
        padding-bottom: 3.5rem !important;
    }

    .pb-md-10 {
        padding-bottom: 4rem !important;
    }

    .pb-md-auto {
        padding-bottom: auto !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .ps-md-1 {
        padding-left: 0.25rem !important;
    }

    .ps-md-2 {
        padding-left: 0.5rem !important;
    }

    .ps-md-3 {
        padding-left: 0.75rem !important;
    }

    .ps-md-4 {
        padding-left: 1rem !important;
    }

    .ps-md-5 {
        padding-left: 1.5rem !important;
    }

    .ps-md-6 {
        padding-left: 2rem !important;
    }

    .ps-md-7 {
        padding-left: 2.5rem !important;
    }

    .ps-md-8 {
        padding-left: 3rem !important;
    }

    .ps-md-9 {
        padding-left: 3.5rem !important;
    }

    .ps-md-10 {
        padding-left: 4rem !important;
    }

    .ps-md-auto {
        padding-left: auto !important;
    }

    .gap-md-0 {
        gap: 0 !important;
    }

    .gap-md-1 {
        gap: 0.25rem !important;
    }

    .gap-md-2 {
        gap: 0.5rem !important;
    }

    .gap-md-3 {
        gap: 1rem !important;
    }

    .gap-md-4 {
        gap: 1.5rem !important;
    }

    .gap-md-5 {
        gap: 3rem !important;
    }

    .row-gap-md-0 {
        row-gap: 0 !important;
    }

    .row-gap-md-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-md-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-md-3 {
        row-gap: 1rem !important;
    }

    .row-gap-md-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-md-5 {
        row-gap: 3rem !important;
    }

    .column-gap-md-0 {
        column-gap: 0 !important;
    }

    .column-gap-md-1 {
        column-gap: 0.25rem !important;
    }

    .column-gap-md-2 {
        column-gap: 0.5rem !important;
    }

    .column-gap-md-3 {
        column-gap: 1rem !important;
    }

    .column-gap-md-4 {
        column-gap: 1.5rem !important;
    }

    .column-gap-md-5 {
        column-gap: 3rem !important;
    }

    .fs-md-1 {
        font-size: 2.75rem !important;
    }

    .fs-md-2 {
        font-size: 2.5rem !important;
    }

    .fs-md-3 {
        font-size: 2.25rem !important;
    }

    .fs-md-4 {
        font-size: 2rem !important;
    }

    .fs-md-5 {
        font-size: 1.75rem !important;
    }

    .fs-md-6 {
        font-size: 1.5rem !important;
    }

    .fs-md-7 {
        font-size: 1.25rem !important;
    }

    .fs-md-8 {
        font-size: 1rem !important;
    }

    .fs-md-9 {
        font-size: 0.95rem !important;
    }

    .fs-md-10 {
        font-size: 0.9rem !important;
    }

    .fs-md-11 {
        font-size: 0.85rem !important;
    }

    .fs-md-12 {
        font-size: 0.8rem !important;
    }

    .fs-md-13 {
        font-size: 0.75rem !important;
    }

    .fs-md-14 {
        font-size: 0.7rem !important;
    }

    .fs-md-15 {
        font-size: 0.65rem !important;
    }

    .fs-md-16 {
        font-size: 0.6rem !important;
    }

    .fs-md-17 {
        font-size: 0.55rem !important;
    }

    .fs-md-18 {
        font-size: 0.5rem !important;
    }

    .fs-md-19 {
        font-size: 0.45rem !important;
    }

    .fs-md-20 {
        font-size: 0.4rem !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-primary {
        color: #0d6efd !important;
    }

    .text-md-secondary {
        color: #6c757d !important;
    }

    .text-md-success {
        color: #198754 !important;
    }

    .text-md-info {
        color: #0dcaf0 !important;
    }

    .text-md-warning {
        color: #ffc107 !important;
    }

    .text-md-danger {
        color: #dc3545 !important;
    }

    .text-md-light {
        color: #f8f9fa !important;
    }

    .text-md-dark {
        color: #212529 !important;
    }

    .text-md-white {
        color: #fff !important;
    }

    .text-md-black {
        color: #3b4141 !important;
    }

    .text-md-red {
        color: #d71921 !important;
    }

    .text-md-red-50 {
        color: #c61f2c !important;
    }

    .text-md-pink {
        color: #ffebeb !important;
    }

    .text-md-pink-50 {
        color: #ffc9c9 !important;
    }

    .text-md-light-pink {
        color: #fff8f8 !important;
    }

    .text-md-gray {
        color: #454545 !important;
    }

    .text-md-gray-50 {
        color: #939393 !important;
    }

    .text-md-light-gray {
        color: #c8c8c8 !important;
    }

    .text-md-light-gray-50 {
        color: #f3f4f5 !important;
    }

    .text-md-green {
        color: #0c8858 !important;
    }

    .text-md-green-50 {
        color: #d6ecd7 !important;
    }

    .text-md-light-green {
        color: #42c504 !important;
    }

    .text-md-dark-blue {
        color: #0e2f87 !important;
    }

    .text-md-nice-blue {
        color: #0e68ba !important;
    }

    .text-md-navy-blue {
        color: #1f296b !important;
    }

    .text-md-blueberry {
        color: #343e96 !important;
    }

    .text-md-light-blue {
        color: #eaf5ff !important;
    }

    .text-md-transparent {
        color: rgba(0, 0, 0, 0) !important;
    }

    .bg-md-primary {
        background-color: #0d6efd !important;
    }

    .bg-md-secondary {
        background-color: #6c757d !important;
    }

    .bg-md-success {
        background-color: #198754 !important;
    }

    .bg-md-info {
        background-color: #0dcaf0 !important;
    }

    .bg-md-warning {
        background-color: #ffc107 !important;
    }

    .bg-md-danger {
        background-color: #dc3545 !important;
    }

    .bg-md-light {
        background-color: #f8f9fa !important;
    }

    .bg-md-dark {
        background-color: #212529 !important;
    }

    .bg-md-white {
        background-color: #fff !important;
    }

    .bg-md-black {
        background-color: #3b4141 !important;
    }

    .bg-md-red {
        background-color: #d71921 !important;
    }

    .bg-md-red-50 {
        background-color: #c61f2c !important;
    }

    .bg-md-pink {
        background-color: #ffebeb !important;
    }

    .bg-md-pink-50 {
        background-color: #ffc9c9 !important;
    }

    .bg-md-light-pink {
        background-color: #fff8f8 !important;
    }

    .bg-md-gray {
        background-color: #454545 !important;
    }

    .bg-md-gray-50 {
        background-color: #939393 !important;
    }

    .bg-md-light-gray {
        background-color: #c8c8c8 !important;
    }

    .bg-md-light-gray-50 {
        background-color: #f3f4f5 !important;
    }

    .bg-md-green {
        background-color: #0c8858 !important;
    }

    .bg-md-green-50 {
        background-color: #d6ecd7 !important;
    }

    .bg-md-light-green {
        background-color: #42c504 !important;
    }

    .bg-md-dark-blue {
        background-color: #0e2f87 !important;
    }

    .bg-md-nice-blue {
        background-color: #0e68ba !important;
    }

    .bg-md-navy-blue {
        background-color: #1f296b !important;
    }

    .bg-md-blueberry {
        background-color: #343e96 !important;
    }

    .bg-md-light-blue {
        background-color: #eaf5ff !important;
    }

    .bg-md-transparent {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .rounded-md {
        border-radius: 0.375rem !important;
    }

    .rounded-md-0 {
        border-radius: 0 !important;
    }

    .rounded-md-1 {
        border-radius: 0.25rem !important;
    }

    .rounded-md-2 {
        border-radius: 0.375rem !important;
    }

    .rounded-md-3 {
        border-radius: 0.5rem !important;
    }

    .rounded-md-4 {
        border-radius: 1rem !important;
    }

    .rounded-md-5 {
        border-radius: 2rem !important;
    }

    .rounded-md-circle {
        border-radius: 50% !important;
    }

    .rounded-md-pill {
        border-radius: 50rem !important;
    }

    .rounded-top-md {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-md-0 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .rounded-top-md-1 {
        border-top-left-radius: 0.25rem !important;
        border-top-right-radius: 0.25rem !important;
    }

    .rounded-top-md-2 {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-md-3 {
        border-top-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
    }

    .rounded-top-md-4 {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .rounded-top-md-5 {
        border-top-left-radius: 2rem !important;
        border-top-right-radius: 2rem !important;
    }

    .rounded-top-md-circle {
        border-top-left-radius: 50% !important;
        border-top-right-radius: 50% !important;
    }

    .rounded-top-md-pill {
        border-top-left-radius: 50rem !important;
        border-top-right-radius: 50rem !important;
    }

    .rounded-end-md {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-md-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-end-md-1 {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .rounded-end-md-2 {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-md-3 {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .rounded-end-md-4 {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .rounded-end-md-5 {
        border-top-right-radius: 2rem !important;
        border-bottom-right-radius: 2rem !important;
    }

    .rounded-end-md-circle {
        border-top-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important;
    }

    .rounded-end-md-pill {
        border-top-right-radius: 50rem !important;
        border-bottom-right-radius: 50rem !important;
    }

    .rounded-bottom-md {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-md-0 {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .rounded-bottom-md-1 {
        border-bottom-right-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .rounded-bottom-md-2 {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-md-3 {
        border-bottom-right-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
    }

    .rounded-bottom-md-4 {
        border-bottom-right-radius: 1rem !important;
        border-bottom-left-radius: 1rem !important;
    }

    .rounded-bottom-md-5 {
        border-bottom-right-radius: 2rem !important;
        border-bottom-left-radius: 2rem !important;
    }

    .rounded-bottom-md-circle {
        border-bottom-right-radius: 50% !important;
        border-bottom-left-radius: 50% !important;
    }

    .rounded-bottom-md-pill {
        border-bottom-right-radius: 50rem !important;
        border-bottom-left-radius: 50rem !important;
    }

    .rounded-start-md {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-md-0 {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    .rounded-start-md-1 {
        border-bottom-left-radius: 0.25rem !important;
        border-top-left-radius: 0.25rem !important;
    }

    .rounded-start-md-2 {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-md-3 {
        border-bottom-left-radius: 0.5rem !important;
        border-top-left-radius: 0.5rem !important;
    }

    .rounded-start-md-4 {
        border-bottom-left-radius: 1rem !important;
        border-top-left-radius: 1rem !important;
    }

    .rounded-start-md-5 {
        border-bottom-left-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
    }

    .rounded-start-md-circle {
        border-bottom-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
    }

    .rounded-start-md-pill {
        border-bottom-left-radius: 50rem !important;
        border-top-left-radius: 50rem !important;
    }

    .text-indent-md-0 {
        text-indent: 0 !important;
    }

    .text-indent-md-1 {
        text-indent: 0.25rem !important;
    }

    .text-indent-md-2 {
        text-indent: 0.5rem !important;
    }

    .text-indent-md-3 {
        text-indent: 0.75rem !important;
    }

    .text-indent-md-4 {
        text-indent: 1rem !important;
    }

    .text-indent-md-5 {
        text-indent: 1.5rem !important;
    }

    .text-indent-md-6 {
        text-indent: 2rem !important;
    }

    .text-indent-md-7 {
        text-indent: 2.5rem !important;
    }

    .text-indent-md-8 {
        text-indent: 3rem !important;
    }

    .text-indent-md-9 {
        text-indent: 3.5rem !important;
    }

    .text-indent-md-10 {
        text-indent: 4rem !important;
    }

    .text-indent-md-auto {
        text-indent: auto !important;
    }

    .ratio-md-1x1 {
        aspect-ratio: 100% !important;
    }

    .ratio-md-4x3 {
        aspect-ratio: 75% !important;
    }

    .ratio-md-16x9 {
        aspect-ratio: 56.25% !important;
    }

    .ratio-md-21x9 {
        aspect-ratio: 42.8571428571% !important;
    }

    .ratio-md-3x2 {
        aspect-ratio: 66.6666666667% !important;
    }

    .stroke-md-primary {
        stroke: #0d6efd !important;
    }

    .stroke-md-secondary {
        stroke: #6c757d !important;
    }

    .stroke-md-success {
        stroke: #198754 !important;
    }

    .stroke-md-info {
        stroke: #0dcaf0 !important;
    }

    .stroke-md-warning {
        stroke: #ffc107 !important;
    }

    .stroke-md-danger {
        stroke: #dc3545 !important;
    }

    .stroke-md-light {
        stroke: #f8f9fa !important;
    }

    .stroke-md-dark {
        stroke: #212529 !important;
    }

    .stroke-md-white {
        stroke: #fff !important;
    }

    .stroke-md-black {
        stroke: #3b4141 !important;
    }

    .stroke-md-red {
        stroke: #d71921 !important;
    }

    .stroke-md-red-50 {
        stroke: #c61f2c !important;
    }

    .stroke-md-pink {
        stroke: #ffebeb !important;
    }

    .stroke-md-pink-50 {
        stroke: #ffc9c9 !important;
    }

    .stroke-md-light-pink {
        stroke: #fff8f8 !important;
    }

    .stroke-md-gray {
        stroke: #454545 !important;
    }

    .stroke-md-gray-50 {
        stroke: #939393 !important;
    }

    .stroke-md-light-gray {
        stroke: #c8c8c8 !important;
    }

    .stroke-md-light-gray-50 {
        stroke: #f3f4f5 !important;
    }

    .stroke-md-green {
        stroke: #0c8858 !important;
    }

    .stroke-md-green-50 {
        stroke: #d6ecd7 !important;
    }

    .stroke-md-light-green {
        stroke: #42c504 !important;
    }

    .stroke-md-dark-blue {
        stroke: #0e2f87 !important;
    }

    .stroke-md-nice-blue {
        stroke: #0e68ba !important;
    }

    .stroke-md-navy-blue {
        stroke: #1f296b !important;
    }

    .stroke-md-blueberry {
        stroke: #343e96 !important;
    }

    .stroke-md-light-blue {
        stroke: #eaf5ff !important;
    }

    .stroke-md-transparent {
        stroke: rgba(0, 0, 0, 0) !important;
    }

    .fill-md-primary {
        fill: #0d6efd !important;
    }

    .fill-md-secondary {
        fill: #6c757d !important;
    }

    .fill-md-success {
        fill: #198754 !important;
    }

    .fill-md-info {
        fill: #0dcaf0 !important;
    }

    .fill-md-warning {
        fill: #ffc107 !important;
    }

    .fill-md-danger {
        fill: #dc3545 !important;
    }

    .fill-md-light {
        fill: #f8f9fa !important;
    }

    .fill-md-dark {
        fill: #212529 !important;
    }

    .fill-md-white {
        fill: #fff !important;
    }

    .fill-md-black {
        fill: #3b4141 !important;
    }

    .fill-md-red {
        fill: #d71921 !important;
    }

    .fill-md-red-50 {
        fill: #c61f2c !important;
    }

    .fill-md-pink {
        fill: #ffebeb !important;
    }

    .fill-md-pink-50 {
        fill: #ffc9c9 !important;
    }

    .fill-md-light-pink {
        fill: #fff8f8 !important;
    }

    .fill-md-gray {
        fill: #454545 !important;
    }

    .fill-md-gray-50 {
        fill: #939393 !important;
    }

    .fill-md-light-gray {
        fill: #c8c8c8 !important;
    }

    .fill-md-light-gray-50 {
        fill: #f3f4f5 !important;
    }

    .fill-md-green {
        fill: #0c8858 !important;
    }

    .fill-md-green-50 {
        fill: #d6ecd7 !important;
    }

    .fill-md-light-green {
        fill: #42c504 !important;
    }

    .fill-md-dark-blue {
        fill: #0e2f87 !important;
    }

    .fill-md-nice-blue {
        fill: #0e68ba !important;
    }

    .fill-md-navy-blue {
        fill: #1f296b !important;
    }

    .fill-md-blueberry {
        fill: #343e96 !important;
    }

    .fill-md-light-blue {
        fill: #eaf5ff !important;
    }

    .fill-md-transparent {
        fill: rgba(0, 0, 0, 0) !important;
    }

    .h-rem-md-auto {
        height: auto !important;
    }

    .h-rem-md-1 {
        height: 0.5rem !important;
    }

    .h-rem-md-2 {
        height: 0.75rem !important;
    }

    .h-rem-md-3 {
        height: 1rem !important;
    }

    .h-rem-md-4 {
        height: 1.25rem !important;
    }

    .h-rem-md-5 {
        height: 1.5rem !important;
    }

    .h-rem-md-6 {
        height: 1.75rem !important;
    }

    .h-rem-md-7 {
        height: 2rem !important;
    }

    .h-rem-md-8 {
        height: 2.5rem !important;
    }

    .h-rem-md-9 {
        height: 3rem !important;
    }

    .h-rem-md-10 {
        height: 3.5rem !important;
    }

    .h-rem-md-11 {
        height: 4rem !important;
    }

    .h-rem-md-12 {
        height: 4.5rem !important;
    }

    .h-rem-md-13 {
        height: 5rem !important;
    }

    .h-rem-md-14 {
        height: 5.5rem !important;
    }

    .h-rem-md-15 {
        height: 6rem !important;
    }

    .h-rem-md-16 {
        height: 7rem !important;
    }

    .h-rem-md-17 {
        height: 8rem !important;
    }

    .h-rem-md-18 {
        height: 9rem !important;
    }

    .h-rem-md-19 {
        height: 10rem !important;
    }

    .h-rem-md-20 {
        height: 11rem !important;
    }

    .h-rem-md-21 {
        height: 12rem !important;
    }

    .h-rem-md-22 {
        height: 13rem !important;
    }

    .h-rem-md-23 {
        height: 14rem !important;
    }

    .h-rem-md-24 {
        height: 15rem !important;
    }

    .h-rem-md-25 {
        height: 16rem !important;
    }

    .h-rem-md-26 {
        height: 18rem !important;
    }

    .h-rem-md-27 {
        height: 20rem !important;
    }

    .h-rem-md-28 {
        height: 22rem !important;
    }

    .h-rem-md-29 {
        height: 24rem !important;
    }

    .h-rem-md-30 {
        height: 26rem !important;
    }

    .h-rem-md-31 {
        height: 28rem !important;
    }

    .h-rem-md-32 {
        height: 30rem !important;
    }

    .h-rem-md-33 {
        height: 32rem !important;
    }

    .h-rem-md-34 {
        height: 34rem !important;
    }

    .h-rem-md-35 {
        height: 36rem !important;
    }

    .h-rem-md-36 {
        height: 38rem !important;
    }

    .h-rem-md-37 {
        height: 40rem !important;
    }

    .h-rem-md-38 {
        height: 42rem !important;
    }

    .h-rem-md-39 {
        height: 44rem !important;
    }

    .h-rem-md-40 {
        height: 46rem !important;
    }

    .min-h-rem-md-auto {
        min-height: auto !important;
    }

    .min-h-rem-md-1 {
        min-height: 0.5rem !important;
    }

    .min-h-rem-md-2 {
        min-height: 0.75rem !important;
    }

    .min-h-rem-md-3 {
        min-height: 1rem !important;
    }

    .min-h-rem-md-4 {
        min-height: 1.25rem !important;
    }

    .min-h-rem-md-5 {
        min-height: 1.5rem !important;
    }

    .min-h-rem-md-6 {
        min-height: 1.75rem !important;
    }

    .min-h-rem-md-7 {
        min-height: 2rem !important;
    }

    .min-h-rem-md-8 {
        min-height: 2.5rem !important;
    }

    .min-h-rem-md-9 {
        min-height: 3rem !important;
    }

    .min-h-rem-md-10 {
        min-height: 3.5rem !important;
    }

    .min-h-rem-md-11 {
        min-height: 4rem !important;
    }

    .min-h-rem-md-12 {
        min-height: 4.5rem !important;
    }

    .min-h-rem-md-13 {
        min-height: 5rem !important;
    }

    .min-h-rem-md-14 {
        min-height: 5.5rem !important;
    }

    .min-h-rem-md-15 {
        min-height: 6rem !important;
    }

    .min-h-rem-md-16 {
        min-height: 7rem !important;
    }

    .min-h-rem-md-17 {
        min-height: 8rem !important;
    }

    .min-h-rem-md-18 {
        min-height: 9rem !important;
    }

    .min-h-rem-md-19 {
        min-height: 10rem !important;
    }

    .min-h-rem-md-20 {
        min-height: 11rem !important;
    }

    .min-h-rem-md-21 {
        min-height: 12rem !important;
    }

    .min-h-rem-md-22 {
        min-height: 13rem !important;
    }

    .min-h-rem-md-23 {
        min-height: 14rem !important;
    }

    .min-h-rem-md-24 {
        min-height: 15rem !important;
    }

    .min-h-rem-md-25 {
        min-height: 16rem !important;
    }

    .min-h-rem-md-26 {
        min-height: 18rem !important;
    }

    .min-h-rem-md-27 {
        min-height: 20rem !important;
    }

    .min-h-rem-md-28 {
        min-height: 22rem !important;
    }

    .min-h-rem-md-29 {
        min-height: 24rem !important;
    }

    .min-h-rem-md-30 {
        min-height: 26rem !important;
    }

    .min-h-rem-md-31 {
        min-height: 28rem !important;
    }

    .min-h-rem-md-32 {
        min-height: 30rem !important;
    }

    .min-h-rem-md-33 {
        min-height: 32rem !important;
    }

    .min-h-rem-md-34 {
        min-height: 34rem !important;
    }

    .min-h-rem-md-35 {
        min-height: 36rem !important;
    }

    .min-h-rem-md-36 {
        min-height: 38rem !important;
    }

    .min-h-rem-md-37 {
        min-height: 40rem !important;
    }

    .min-h-rem-md-38 {
        min-height: 42rem !important;
    }

    .min-h-rem-md-39 {
        min-height: 44rem !important;
    }

    .min-h-rem-md-40 {
        min-height: 46rem !important;
    }

    .mh-rem-md-auto {
        max-height: auto !important;
    }

    .mh-rem-md-1 {
        max-height: 0.5rem !important;
    }

    .mh-rem-md-2 {
        max-height: 0.75rem !important;
    }

    .mh-rem-md-3 {
        max-height: 1rem !important;
    }

    .mh-rem-md-4 {
        max-height: 1.25rem !important;
    }

    .mh-rem-md-5 {
        max-height: 1.5rem !important;
    }

    .mh-rem-md-6 {
        max-height: 1.75rem !important;
    }

    .mh-rem-md-7 {
        max-height: 2rem !important;
    }

    .mh-rem-md-8 {
        max-height: 2.5rem !important;
    }

    .mh-rem-md-9 {
        max-height: 3rem !important;
    }

    .mh-rem-md-10 {
        max-height: 3.5rem !important;
    }

    .mh-rem-md-11 {
        max-height: 4rem !important;
    }

    .mh-rem-md-12 {
        max-height: 4.5rem !important;
    }

    .mh-rem-md-13 {
        max-height: 5rem !important;
    }

    .mh-rem-md-14 {
        max-height: 5.5rem !important;
    }

    .mh-rem-md-15 {
        max-height: 6rem !important;
    }

    .mh-rem-md-16 {
        max-height: 7rem !important;
    }

    .mh-rem-md-17 {
        max-height: 8rem !important;
    }

    .mh-rem-md-18 {
        max-height: 9rem !important;
    }

    .mh-rem-md-19 {
        max-height: 10rem !important;
    }

    .mh-rem-md-20 {
        max-height: 11rem !important;
    }

    .mh-rem-md-21 {
        max-height: 12rem !important;
    }

    .mh-rem-md-22 {
        max-height: 13rem !important;
    }

    .mh-rem-md-23 {
        max-height: 14rem !important;
    }

    .mh-rem-md-24 {
        max-height: 15rem !important;
    }

    .mh-rem-md-25 {
        max-height: 16rem !important;
    }

    .mh-rem-md-26 {
        max-height: 18rem !important;
    }

    .mh-rem-md-27 {
        max-height: 20rem !important;
    }

    .mh-rem-md-28 {
        max-height: 22rem !important;
    }

    .mh-rem-md-29 {
        max-height: 24rem !important;
    }

    .mh-rem-md-30 {
        max-height: 26rem !important;
    }

    .mh-rem-md-31 {
        max-height: 28rem !important;
    }

    .mh-rem-md-32 {
        max-height: 30rem !important;
    }

    .mh-rem-md-33 {
        max-height: 32rem !important;
    }

    .mh-rem-md-34 {
        max-height: 34rem !important;
    }

    .mh-rem-md-35 {
        max-height: 36rem !important;
    }

    .mh-rem-md-36 {
        max-height: 38rem !important;
    }

    .mh-rem-md-37 {
        max-height: 40rem !important;
    }

    .mh-rem-md-38 {
        max-height: 42rem !important;
    }

    .mh-rem-md-39 {
        max-height: 44rem !important;
    }

    .mh-rem-md-40 {
        max-height: 46rem !important;
    }

    .w-rem-md-auto {
        width: auto !important;
    }

    .w-rem-md-1 {
        width: 0.5rem !important;
    }

    .w-rem-md-2 {
        width: 0.75rem !important;
    }

    .w-rem-md-3 {
        width: 1rem !important;
    }

    .w-rem-md-4 {
        width: 1.25rem !important;
    }

    .w-rem-md-5 {
        width: 1.5rem !important;
    }

    .w-rem-md-6 {
        width: 1.75rem !important;
    }

    .w-rem-md-7 {
        width: 2rem !important;
    }

    .w-rem-md-8 {
        width: 2.5rem !important;
    }

    .w-rem-md-9 {
        width: 3rem !important;
    }

    .w-rem-md-10 {
        width: 3.5rem !important;
    }

    .w-rem-md-11 {
        width: 4rem !important;
    }

    .w-rem-md-12 {
        width: 4.5rem !important;
    }

    .w-rem-md-13 {
        width: 5rem !important;
    }

    .w-rem-md-14 {
        width: 5.5rem !important;
    }

    .w-rem-md-15 {
        width: 6rem !important;
    }

    .w-rem-md-16 {
        width: 7rem !important;
    }

    .w-rem-md-17 {
        width: 8rem !important;
    }

    .w-rem-md-18 {
        width: 9rem !important;
    }

    .w-rem-md-19 {
        width: 10rem !important;
    }

    .w-rem-md-20 {
        width: 11rem !important;
    }

    .w-rem-md-21 {
        width: 12rem !important;
    }

    .w-rem-md-22 {
        width: 13rem !important;
    }

    .w-rem-md-23 {
        width: 14rem !important;
    }

    .w-rem-md-24 {
        width: 15rem !important;
    }

    .w-rem-md-25 {
        width: 16rem !important;
    }

    .w-rem-md-26 {
        width: 18rem !important;
    }

    .w-rem-md-27 {
        width: 20rem !important;
    }

    .w-rem-md-28 {
        width: 22rem !important;
    }

    .w-rem-md-29 {
        width: 24rem !important;
    }

    .w-rem-md-30 {
        width: 26rem !important;
    }

    .w-rem-md-31 {
        width: 28rem !important;
    }

    .w-rem-md-32 {
        width: 30rem !important;
    }

    .w-rem-md-33 {
        width: 32rem !important;
    }

    .w-rem-md-34 {
        width: 34rem !important;
    }

    .w-rem-md-35 {
        width: 36rem !important;
    }

    .w-rem-md-36 {
        width: 38rem !important;
    }

    .w-rem-md-37 {
        width: 40rem !important;
    }

    .w-rem-md-38 {
        width: 42rem !important;
    }

    .w-rem-md-39 {
        width: 44rem !important;
    }

    .w-rem-md-40 {
        width: 46rem !important;
    }

    .min-w-rem-md-auto {
        min-width: auto !important;
    }

    .min-w-rem-md-1 {
        min-width: 0.5rem !important;
    }

    .min-w-rem-md-2 {
        min-width: 0.75rem !important;
    }

    .min-w-rem-md-3 {
        min-width: 1rem !important;
    }

    .min-w-rem-md-4 {
        min-width: 1.25rem !important;
    }

    .min-w-rem-md-5 {
        min-width: 1.5rem !important;
    }

    .min-w-rem-md-6 {
        min-width: 1.75rem !important;
    }

    .min-w-rem-md-7 {
        min-width: 2rem !important;
    }

    .min-w-rem-md-8 {
        min-width: 2.5rem !important;
    }

    .min-w-rem-md-9 {
        min-width: 3rem !important;
    }

    .min-w-rem-md-10 {
        min-width: 3.5rem !important;
    }

    .min-w-rem-md-11 {
        min-width: 4rem !important;
    }

    .min-w-rem-md-12 {
        min-width: 4.5rem !important;
    }

    .min-w-rem-md-13 {
        min-width: 5rem !important;
    }

    .min-w-rem-md-14 {
        min-width: 5.5rem !important;
    }

    .min-w-rem-md-15 {
        min-width: 6rem !important;
    }

    .min-w-rem-md-16 {
        min-width: 7rem !important;
    }

    .min-w-rem-md-17 {
        min-width: 8rem !important;
    }

    .min-w-rem-md-18 {
        min-width: 9rem !important;
    }

    .min-w-rem-md-19 {
        min-width: 10rem !important;
    }

    .min-w-rem-md-20 {
        min-width: 11rem !important;
    }

    .min-w-rem-md-21 {
        min-width: 12rem !important;
    }

    .min-w-rem-md-22 {
        min-width: 13rem !important;
    }

    .min-w-rem-md-23 {
        min-width: 14rem !important;
    }

    .min-w-rem-md-24 {
        min-width: 15rem !important;
    }

    .min-w-rem-md-25 {
        min-width: 16rem !important;
    }

    .min-w-rem-md-26 {
        min-width: 18rem !important;
    }

    .min-w-rem-md-27 {
        min-width: 20rem !important;
    }

    .min-w-rem-md-28 {
        min-width: 22rem !important;
    }

    .min-w-rem-md-29 {
        min-width: 24rem !important;
    }

    .min-w-rem-md-30 {
        min-width: 26rem !important;
    }

    .min-w-rem-md-31 {
        min-width: 28rem !important;
    }

    .min-w-rem-md-32 {
        min-width: 30rem !important;
    }

    .min-w-rem-md-33 {
        min-width: 32rem !important;
    }

    .min-w-rem-md-34 {
        min-width: 34rem !important;
    }

    .min-w-rem-md-35 {
        min-width: 36rem !important;
    }

    .min-w-rem-md-36 {
        min-width: 38rem !important;
    }

    .min-w-rem-md-37 {
        min-width: 40rem !important;
    }

    .min-w-rem-md-38 {
        min-width: 42rem !important;
    }

    .min-w-rem-md-39 {
        min-width: 44rem !important;
    }

    .min-w-rem-md-40 {
        min-width: 46rem !important;
    }

    .mw-rem-md-auto {
        max-width: auto !important;
    }

    .mw-rem-md-1 {
        max-width: 0.5rem !important;
    }

    .mw-rem-md-2 {
        max-width: 0.75rem !important;
    }

    .mw-rem-md-3 {
        max-width: 1rem !important;
    }

    .mw-rem-md-4 {
        max-width: 1.25rem !important;
    }

    .mw-rem-md-5 {
        max-width: 1.5rem !important;
    }

    .mw-rem-md-6 {
        max-width: 1.75rem !important;
    }

    .mw-rem-md-7 {
        max-width: 2rem !important;
    }

    .mw-rem-md-8 {
        max-width: 2.5rem !important;
    }

    .mw-rem-md-9 {
        max-width: 3rem !important;
    }

    .mw-rem-md-10 {
        max-width: 3.5rem !important;
    }

    .mw-rem-md-11 {
        max-width: 4rem !important;
    }

    .mw-rem-md-12 {
        max-width: 4.5rem !important;
    }

    .mw-rem-md-13 {
        max-width: 5rem !important;
    }

    .mw-rem-md-14 {
        max-width: 5.5rem !important;
    }

    .mw-rem-md-15 {
        max-width: 6rem !important;
    }

    .mw-rem-md-16 {
        max-width: 7rem !important;
    }

    .mw-rem-md-17 {
        max-width: 8rem !important;
    }

    .mw-rem-md-18 {
        max-width: 9rem !important;
    }

    .mw-rem-md-19 {
        max-width: 10rem !important;
    }

    .mw-rem-md-20 {
        max-width: 11rem !important;
    }

    .mw-rem-md-21 {
        max-width: 12rem !important;
    }

    .mw-rem-md-22 {
        max-width: 13rem !important;
    }

    .mw-rem-md-23 {
        max-width: 14rem !important;
    }

    .mw-rem-md-24 {
        max-width: 15rem !important;
    }

    .mw-rem-md-25 {
        max-width: 16rem !important;
    }

    .mw-rem-md-26 {
        max-width: 18rem !important;
    }

    .mw-rem-md-27 {
        max-width: 20rem !important;
    }

    .mw-rem-md-28 {
        max-width: 22rem !important;
    }

    .mw-rem-md-29 {
        max-width: 24rem !important;
    }

    .mw-rem-md-30 {
        max-width: 26rem !important;
    }

    .mw-rem-md-31 {
        max-width: 28rem !important;
    }

    .mw-rem-md-32 {
        max-width: 30rem !important;
    }

    .mw-rem-md-33 {
        max-width: 32rem !important;
    }

    .mw-rem-md-34 {
        max-width: 34rem !important;
    }

    .mw-rem-md-35 {
        max-width: 36rem !important;
    }

    .mw-rem-md-36 {
        max-width: 38rem !important;
    }

    .mw-rem-md-37 {
        max-width: 40rem !important;
    }

    .mw-rem-md-38 {
        max-width: 42rem !important;
    }

    .mw-rem-md-39 {
        max-width: 44rem !important;
    }

    .mw-rem-md-40 {
        max-width: 46rem !important;
    }

    .svgs-md-1 {
        width: 16px !important;
        height: 16px !important;
    }

    .svgs-md-2 {
        width: 20px !important;
        height: 20px !important;
    }

    .svgs-md-3 {
        width: 24px !important;
        height: 24px !important;
    }

    .svgs-md-4 {
        width: 28px !important;
        height: 28px !important;
    }

    .svgs-md-5 {
        width: 32px !important;
        height: 32px !important;
    }

    .svgs-md-6 {
        width: 40px !important;
        height: 40px !important;
    }

    .svgs-md-7 {
        width: 48px !important;
        height: 48px !important;
    }

    .svgs-md-8 {
        width: 56px !important;
        height: 56px !important;
    }

    .svgs-md-9 {
        width: 64px !important;
        height: 64px !important;
    }

    .svgs-md-10 {
        width: 72px !important;
        height: 72px !important;
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left !important;
    }

    .float-lg-end {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }

    .object-fit-lg-contain {
        object-fit: contain !important;
    }

    .object-fit-lg-cover {
        object-fit: cover !important;
    }

    .object-fit-lg-fill {
        object-fit: fill !important;
    }

    .object-fit-lg-scale {
        object-fit: scale-down !important;
    }

    .object-fit-lg-none {
        object-fit: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-inline-grid {
        display: inline-grid !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .position-lg-static {
        position: static !important;
    }

    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .position-lg-sticky {
        position: sticky !important;
    }

    .border-lg {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-lg-0 {
        border: 0 !important;
    }

    .border-top-lg {
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-top-lg-0 {
        border-top: 0 !important;
    }

    .border-end-lg {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-end-lg-0 {
        border-right: 0 !important;
    }

    .border-bottom-lg {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-bottom-lg-0 {
        border-bottom: 0 !important;
    }

    .border-start-lg {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-start-lg-0 {
        border-left: 0 !important;
    }

    .border-lg-primary {
        border-color: #0d6efd !important;
    }

    .border-lg-secondary {
        border-color: #6c757d !important;
    }

    .border-lg-success {
        border-color: #198754 !important;
    }

    .border-lg-info {
        border-color: #0dcaf0 !important;
    }

    .border-lg-warning {
        border-color: #ffc107 !important;
    }

    .border-lg-danger {
        border-color: #dc3545 !important;
    }

    .border-lg-light {
        border-color: #f8f9fa !important;
    }

    .border-lg-dark {
        border-color: #212529 !important;
    }

    .border-lg-white {
        border-color: #fff !important;
    }

    .border-lg-black {
        border-color: #3b4141 !important;
    }

    .border-lg-red {
        border-color: #d71921 !important;
    }

    .border-lg-red-50 {
        border-color: #c61f2c !important;
    }

    .border-lg-pink {
        border-color: #ffebeb !important;
    }

    .border-lg-pink-50 {
        border-color: #ffc9c9 !important;
    }

    .border-lg-light-pink {
        border-color: #fff8f8 !important;
    }

    .border-lg-gray {
        border-color: #454545 !important;
    }

    .border-lg-gray-50 {
        border-color: #939393 !important;
    }

    .border-lg-light-gray {
        border-color: #c8c8c8 !important;
    }

    .border-lg-light-gray-50 {
        border-color: #f3f4f5 !important;
    }

    .border-lg-green {
        border-color: #0c8858 !important;
    }

    .border-lg-green-50 {
        border-color: #d6ecd7 !important;
    }

    .border-lg-light-green {
        border-color: #42c504 !important;
    }

    .border-lg-dark-blue {
        border-color: #0e2f87 !important;
    }

    .border-lg-nice-blue {
        border-color: #0e68ba !important;
    }

    .border-lg-navy-blue {
        border-color: #1f296b !important;
    }

    .border-lg-blueberry {
        border-color: #343e96 !important;
    }

    .border-lg-light-blue {
        border-color: #eaf5ff !important;
    }

    .border-lg-transparent {
        border-color: rgba(0, 0, 0, 0) !important;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .w-lg-5 {
        width: 5% !important;
    }

    .w-lg-10 {
        width: 10% !important;
    }

    .w-lg-15 {
        width: 15% !important;
    }

    .w-lg-20 {
        width: 20% !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }

    .w-lg-30 {
        width: 30% !important;
    }

    .w-lg-35 {
        width: 35% !important;
    }

    .w-lg-40 {
        width: 40% !important;
    }

    .w-lg-45 {
        width: 45% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-55 {
        width: 55% !important;
    }

    .w-lg-60 {
        width: 60% !important;
    }

    .w-lg-65 {
        width: 65% !important;
    }

    .w-lg-70 {
        width: 70% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-80 {
        width: 80% !important;
    }

    .w-lg-85 {
        width: 85% !important;
    }

    .w-lg-90 {
        width: 90% !important;
    }

    .w-lg-95 {
        width: 95% !important;
    }

    .w-lg-100 {
        width: 100% !important;
    }

    .mw-lg-auto {
        max-width: auto !important;
    }

    .mw-lg-5 {
        max-width: 5% !important;
    }

    .mw-lg-10 {
        max-width: 10% !important;
    }

    .mw-lg-15 {
        max-width: 15% !important;
    }

    .mw-lg-20 {
        max-width: 20% !important;
    }

    .mw-lg-25 {
        max-width: 25% !important;
    }

    .mw-lg-30 {
        max-width: 30% !important;
    }

    .mw-lg-35 {
        max-width: 35% !important;
    }

    .mw-lg-40 {
        max-width: 40% !important;
    }

    .mw-lg-45 {
        max-width: 45% !important;
    }

    .mw-lg-50 {
        max-width: 50% !important;
    }

    .mw-lg-55 {
        max-width: 55% !important;
    }

    .mw-lg-60 {
        max-width: 60% !important;
    }

    .mw-lg-65 {
        max-width: 65% !important;
    }

    .mw-lg-70 {
        max-width: 70% !important;
    }

    .mw-lg-75 {
        max-width: 75% !important;
    }

    .mw-lg-80 {
        max-width: 80% !important;
    }

    .mw-lg-85 {
        max-width: 85% !important;
    }

    .mw-lg-90 {
        max-width: 90% !important;
    }

    .mw-lg-95 {
        max-width: 95% !important;
    }

    .mw-lg-100 {
        max-width: 100% !important;
    }

    .vw-lg-auto {
        width: auto !important;
    }

    .vw-lg-5 {
        width: 5vw !important;
    }

    .vw-lg-10 {
        width: 10vw !important;
    }

    .vw-lg-15 {
        width: 15vw !important;
    }

    .vw-lg-20 {
        width: 20vw !important;
    }

    .vw-lg-25 {
        width: 25vw !important;
    }

    .vw-lg-30 {
        width: 30vw !important;
    }

    .vw-lg-35 {
        width: 35vw !important;
    }

    .vw-lg-40 {
        width: 40vw !important;
    }

    .vw-lg-45 {
        width: 45vw !important;
    }

    .vw-lg-50 {
        width: 50vw !important;
    }

    .vw-lg-55 {
        width: 55vw !important;
    }

    .vw-lg-60 {
        width: 60vw !important;
    }

    .vw-lg-65 {
        width: 65vw !important;
    }

    .vw-lg-70 {
        width: 70vw !important;
    }

    .vw-lg-75 {
        width: 75vw !important;
    }

    .vw-lg-80 {
        width: 80vw !important;
    }

    .vw-lg-85 {
        width: 85vw !important;
    }

    .vw-lg-90 {
        width: 90vw !important;
    }

    .vw-lg-95 {
        width: 95vw !important;
    }

    .vw-lg-100 {
        width: 100vw !important;
    }

    .min-vw-lg-auto {
        min-width: auto !important;
    }

    .min-vw-lg-5 {
        min-width: 5vw !important;
    }

    .min-vw-lg-10 {
        min-width: 10vw !important;
    }

    .min-vw-lg-15 {
        min-width: 15vw !important;
    }

    .min-vw-lg-20 {
        min-width: 20vw !important;
    }

    .min-vw-lg-25 {
        min-width: 25vw !important;
    }

    .min-vw-lg-30 {
        min-width: 30vw !important;
    }

    .min-vw-lg-35 {
        min-width: 35vw !important;
    }

    .min-vw-lg-40 {
        min-width: 40vw !important;
    }

    .min-vw-lg-45 {
        min-width: 45vw !important;
    }

    .min-vw-lg-50 {
        min-width: 50vw !important;
    }

    .min-vw-lg-55 {
        min-width: 55vw !important;
    }

    .min-vw-lg-60 {
        min-width: 60vw !important;
    }

    .min-vw-lg-65 {
        min-width: 65vw !important;
    }

    .min-vw-lg-70 {
        min-width: 70vw !important;
    }

    .min-vw-lg-75 {
        min-width: 75vw !important;
    }

    .min-vw-lg-80 {
        min-width: 80vw !important;
    }

    .min-vw-lg-85 {
        min-width: 85vw !important;
    }

    .min-vw-lg-90 {
        min-width: 90vw !important;
    }

    .min-vw-lg-95 {
        min-width: 95vw !important;
    }

    .min-vw-lg-100 {
        min-width: 100vw !important;
    }

    .h-lg-auto {
        height: auto !important;
    }

    .h-lg-5 {
        height: 5% !important;
    }

    .h-lg-10 {
        height: 10% !important;
    }

    .h-lg-15 {
        height: 15% !important;
    }

    .h-lg-20 {
        height: 20% !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }

    .h-lg-30 {
        height: 30% !important;
    }

    .h-lg-35 {
        height: 35% !important;
    }

    .h-lg-40 {
        height: 40% !important;
    }

    .h-lg-45 {
        height: 45% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-55 {
        height: 55% !important;
    }

    .h-lg-60 {
        height: 60% !important;
    }

    .h-lg-65 {
        height: 65% !important;
    }

    .h-lg-70 {
        height: 70% !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .h-lg-80 {
        height: 80% !important;
    }

    .h-lg-85 {
        height: 85% !important;
    }

    .h-lg-90 {
        height: 90% !important;
    }

    .h-lg-95 {
        height: 95% !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .mh-lg-auto {
        max-height: auto !important;
    }

    .mh-lg-5 {
        max-height: 5% !important;
    }

    .mh-lg-10 {
        max-height: 10% !important;
    }

    .mh-lg-15 {
        max-height: 15% !important;
    }

    .mh-lg-20 {
        max-height: 20% !important;
    }

    .mh-lg-25 {
        max-height: 25% !important;
    }

    .mh-lg-30 {
        max-height: 30% !important;
    }

    .mh-lg-35 {
        max-height: 35% !important;
    }

    .mh-lg-40 {
        max-height: 40% !important;
    }

    .mh-lg-45 {
        max-height: 45% !important;
    }

    .mh-lg-50 {
        max-height: 50% !important;
    }

    .mh-lg-55 {
        max-height: 55% !important;
    }

    .mh-lg-60 {
        max-height: 60% !important;
    }

    .mh-lg-65 {
        max-height: 65% !important;
    }

    .mh-lg-70 {
        max-height: 70% !important;
    }

    .mh-lg-75 {
        max-height: 75% !important;
    }

    .mh-lg-80 {
        max-height: 80% !important;
    }

    .mh-lg-85 {
        max-height: 85% !important;
    }

    .mh-lg-90 {
        max-height: 90% !important;
    }

    .mh-lg-95 {
        max-height: 95% !important;
    }

    .mh-lg-100 {
        max-height: 100% !important;
    }

    .vh-lg-auto {
        height: auto !important;
    }

    .vh-lg-5 {
        height: 5vh !important;
    }

    .vh-lg-10 {
        height: 10vh !important;
    }

    .vh-lg-15 {
        height: 15vh !important;
    }

    .vh-lg-20 {
        height: 20vh !important;
    }

    .vh-lg-25 {
        height: 25vh !important;
    }

    .vh-lg-30 {
        height: 30vh !important;
    }

    .vh-lg-35 {
        height: 35vh !important;
    }

    .vh-lg-40 {
        height: 40vh !important;
    }

    .vh-lg-45 {
        height: 45vh !important;
    }

    .vh-lg-50 {
        height: 50vh !important;
    }

    .vh-lg-55 {
        height: 55vh !important;
    }

    .vh-lg-60 {
        height: 60vh !important;
    }

    .vh-lg-65 {
        height: 65vh !important;
    }

    .vh-lg-70 {
        height: 70vh !important;
    }

    .vh-lg-75 {
        height: 75vh !important;
    }

    .vh-lg-80 {
        height: 80vh !important;
    }

    .vh-lg-85 {
        height: 85vh !important;
    }

    .vh-lg-90 {
        height: 90vh !important;
    }

    .vh-lg-95 {
        height: 95vh !important;
    }

    .vh-lg-100 {
        height: 100vh !important;
    }

    .min-vh-lg-auto {
        min-height: auto !important;
    }

    .min-vh-lg-5 {
        min-height: 5vh !important;
    }

    .min-vh-lg-10 {
        min-height: 10vh !important;
    }

    .min-vh-lg-15 {
        min-height: 15vh !important;
    }

    .min-vh-lg-20 {
        min-height: 20vh !important;
    }

    .min-vh-lg-25 {
        min-height: 25vh !important;
    }

    .min-vh-lg-30 {
        min-height: 30vh !important;
    }

    .min-vh-lg-35 {
        min-height: 35vh !important;
    }

    .min-vh-lg-40 {
        min-height: 40vh !important;
    }

    .min-vh-lg-45 {
        min-height: 45vh !important;
    }

    .min-vh-lg-50 {
        min-height: 50vh !important;
    }

    .min-vh-lg-55 {
        min-height: 55vh !important;
    }

    .min-vh-lg-60 {
        min-height: 60vh !important;
    }

    .min-vh-lg-65 {
        min-height: 65vh !important;
    }

    .min-vh-lg-70 {
        min-height: 70vh !important;
    }

    .min-vh-lg-75 {
        min-height: 75vh !important;
    }

    .min-vh-lg-80 {
        min-height: 80vh !important;
    }

    .min-vh-lg-85 {
        min-height: 85vh !important;
    }

    .min-vh-lg-90 {
        min-height: 90vh !important;
    }

    .min-vh-lg-95 {
        min-height: 95vh !important;
    }

    .min-vh-lg-100 {
        min-height: 100vh !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 0.75rem !important;
    }

    .m-lg-4 {
        margin: 1rem !important;
    }

    .m-lg-5 {
        margin: 1.5rem !important;
    }

    .m-lg-6 {
        margin: 2rem !important;
    }

    .m-lg-7 {
        margin: 2.5rem !important;
    }

    .m-lg-8 {
        margin: 3rem !important;
    }

    .m-lg-9 {
        margin: 3.5rem !important;
    }

    .m-lg-10 {
        margin: 4rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-lg-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-lg-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-lg-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-lg-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-lg-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-lg-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-lg-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-lg-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-lg-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-lg-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-lg-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-lg-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-lg-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-lg-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-lg-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-lg-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 0.75rem !important;
    }

    .mt-lg-4 {
        margin-top: 1rem !important;
    }

    .mt-lg-5 {
        margin-top: 1.5rem !important;
    }

    .mt-lg-6 {
        margin-top: 2rem !important;
    }

    .mt-lg-7 {
        margin-top: 2.5rem !important;
    }

    .mt-lg-8 {
        margin-top: 3rem !important;
    }

    .mt-lg-9 {
        margin-top: 3.5rem !important;
    }

    .mt-lg-10 {
        margin-top: 4rem !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-1 {
        margin-right: 0.25rem !important;
    }

    .me-lg-2 {
        margin-right: 0.5rem !important;
    }

    .me-lg-3 {
        margin-right: 0.75rem !important;
    }

    .me-lg-4 {
        margin-right: 1rem !important;
    }

    .me-lg-5 {
        margin-right: 1.5rem !important;
    }

    .me-lg-6 {
        margin-right: 2rem !important;
    }

    .me-lg-7 {
        margin-right: 2.5rem !important;
    }

    .me-lg-8 {
        margin-right: 3rem !important;
    }

    .me-lg-9 {
        margin-right: 3.5rem !important;
    }

    .me-lg-10 {
        margin-right: 4rem !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-lg-6 {
        margin-bottom: 2rem !important;
    }

    .mb-lg-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-lg-8 {
        margin-bottom: 3rem !important;
    }

    .mb-lg-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-lg-10 {
        margin-bottom: 4rem !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }

    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }

    .ms-lg-3 {
        margin-left: 0.75rem !important;
    }

    .ms-lg-4 {
        margin-left: 1rem !important;
    }

    .ms-lg-5 {
        margin-left: 1.5rem !important;
    }

    .ms-lg-6 {
        margin-left: 2rem !important;
    }

    .ms-lg-7 {
        margin-left: 2.5rem !important;
    }

    .ms-lg-8 {
        margin-left: 3rem !important;
    }

    .ms-lg-9 {
        margin-left: 3.5rem !important;
    }

    .ms-lg-10 {
        margin-left: 4rem !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 0.75rem !important;
    }

    .m-lg-4 {
        margin: 1rem !important;
    }

    .m-lg-5 {
        margin: 1.5rem !important;
    }

    .m-lg-6 {
        margin: 2rem !important;
    }

    .m-lg-7 {
        margin: 2.5rem !important;
    }

    .m-lg-8 {
        margin: 3rem !important;
    }

    .m-lg-9 {
        margin: 3.5rem !important;
    }

    .m-lg-10 {
        margin: 4rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-lg-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-lg-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-lg-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-lg-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-lg-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-lg-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-lg-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-lg-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-lg-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-lg-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-lg-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-lg-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-lg-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-lg-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-lg-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-lg-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 0.75rem !important;
    }

    .mt-lg-4 {
        margin-top: 1rem !important;
    }

    .mt-lg-5 {
        margin-top: 1.5rem !important;
    }

    .mt-lg-6 {
        margin-top: 2rem !important;
    }

    .mt-lg-7 {
        margin-top: 2.5rem !important;
    }

    .mt-lg-8 {
        margin-top: 3rem !important;
    }

    .mt-lg-9 {
        margin-top: 3.5rem !important;
    }

    .mt-lg-10 {
        margin-top: 4rem !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-1 {
        margin-right: 0.25rem !important;
    }

    .me-lg-2 {
        margin-right: 0.5rem !important;
    }

    .me-lg-3 {
        margin-right: 0.75rem !important;
    }

    .me-lg-4 {
        margin-right: 1rem !important;
    }

    .me-lg-5 {
        margin-right: 1.5rem !important;
    }

    .me-lg-6 {
        margin-right: 2rem !important;
    }

    .me-lg-7 {
        margin-right: 2.5rem !important;
    }

    .me-lg-8 {
        margin-right: 3rem !important;
    }

    .me-lg-9 {
        margin-right: 3.5rem !important;
    }

    .me-lg-10 {
        margin-right: 4rem !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-lg-6 {
        margin-bottom: 2rem !important;
    }

    .mb-lg-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-lg-8 {
        margin-bottom: 3rem !important;
    }

    .mb-lg-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-lg-10 {
        margin-bottom: 4rem !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }

    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }

    .ms-lg-3 {
        margin-left: 0.75rem !important;
    }

    .ms-lg-4 {
        margin-left: 1rem !important;
    }

    .ms-lg-5 {
        margin-left: 1.5rem !important;
    }

    .ms-lg-6 {
        margin-left: 2rem !important;
    }

    .ms-lg-7 {
        margin-left: 2.5rem !important;
    }

    .ms-lg-8 {
        margin-left: 3rem !important;
    }

    .ms-lg-9 {
        margin-left: 3.5rem !important;
    }

    .ms-lg-10 {
        margin-left: 4rem !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 0.75rem !important;
    }

    .p-lg-4 {
        padding: 1rem !important;
    }

    .p-lg-5 {
        padding: 1.5rem !important;
    }

    .p-lg-6 {
        padding: 2rem !important;
    }

    .p-lg-7 {
        padding: 2.5rem !important;
    }

    .p-lg-8 {
        padding: 3rem !important;
    }

    .p-lg-9 {
        padding: 3.5rem !important;
    }

    .p-lg-10 {
        padding: 4rem !important;
    }

    .p-lg-auto {
        padding: auto !important;
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-lg-3 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .px-lg-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-lg-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-lg-6 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-lg-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-lg-8 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-lg-9 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-lg-10 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-lg-auto {
        padding-right: auto !important;
        padding-left: auto !important;
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-lg-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-lg-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-lg-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-lg-6 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-lg-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-lg-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-lg-9 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-lg-10 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-lg-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pt-lg-3 {
        padding-top: 0.75rem !important;
    }

    .pt-lg-4 {
        padding-top: 1rem !important;
    }

    .pt-lg-5 {
        padding-top: 1.5rem !important;
    }

    .pt-lg-6 {
        padding-top: 2rem !important;
    }

    .pt-lg-7 {
        padding-top: 2.5rem !important;
    }

    .pt-lg-8 {
        padding-top: 3rem !important;
    }

    .pt-lg-9 {
        padding-top: 3.5rem !important;
    }

    .pt-lg-10 {
        padding-top: 4rem !important;
    }

    .pt-lg-auto {
        padding-top: auto !important;
    }

    .pe-lg-0 {
        padding-right: 0 !important;
    }

    .pe-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pe-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pe-lg-3 {
        padding-right: 0.75rem !important;
    }

    .pe-lg-4 {
        padding-right: 1rem !important;
    }

    .pe-lg-5 {
        padding-right: 1.5rem !important;
    }

    .pe-lg-6 {
        padding-right: 2rem !important;
    }

    .pe-lg-7 {
        padding-right: 2.5rem !important;
    }

    .pe-lg-8 {
        padding-right: 3rem !important;
    }

    .pe-lg-9 {
        padding-right: 3.5rem !important;
    }

    .pe-lg-10 {
        padding-right: 4rem !important;
    }

    .pe-lg-auto {
        padding-right: auto !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 1rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-lg-6 {
        padding-bottom: 2rem !important;
    }

    .pb-lg-7 {
        padding-bottom: 2.5rem !important;
    }

    .pb-lg-8 {
        padding-bottom: 3rem !important;
    }

    .pb-lg-9 {
        padding-bottom: 3.5rem !important;
    }

    .pb-lg-10 {
        padding-bottom: 4rem !important;
    }

    .pb-lg-auto {
        padding-bottom: auto !important;
    }

    .ps-lg-0 {
        padding-left: 0 !important;
    }

    .ps-lg-1 {
        padding-left: 0.25rem !important;
    }

    .ps-lg-2 {
        padding-left: 0.5rem !important;
    }

    .ps-lg-3 {
        padding-left: 0.75rem !important;
    }

    .ps-lg-4 {
        padding-left: 1rem !important;
    }

    .ps-lg-5 {
        padding-left: 1.5rem !important;
    }

    .ps-lg-6 {
        padding-left: 2rem !important;
    }

    .ps-lg-7 {
        padding-left: 2.5rem !important;
    }

    .ps-lg-8 {
        padding-left: 3rem !important;
    }

    .ps-lg-9 {
        padding-left: 3.5rem !important;
    }

    .ps-lg-10 {
        padding-left: 4rem !important;
    }

    .ps-lg-auto {
        padding-left: auto !important;
    }

    .gap-lg-0 {
        gap: 0 !important;
    }

    .gap-lg-1 {
        gap: 0.25rem !important;
    }

    .gap-lg-2 {
        gap: 0.5rem !important;
    }

    .gap-lg-3 {
        gap: 1rem !important;
    }

    .gap-lg-4 {
        gap: 1.5rem !important;
    }

    .gap-lg-5 {
        gap: 3rem !important;
    }

    .row-gap-lg-0 {
        row-gap: 0 !important;
    }

    .row-gap-lg-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-lg-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-lg-3 {
        row-gap: 1rem !important;
    }

    .row-gap-lg-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-lg-5 {
        row-gap: 3rem !important;
    }

    .column-gap-lg-0 {
        column-gap: 0 !important;
    }

    .column-gap-lg-1 {
        column-gap: 0.25rem !important;
    }

    .column-gap-lg-2 {
        column-gap: 0.5rem !important;
    }

    .column-gap-lg-3 {
        column-gap: 1rem !important;
    }

    .column-gap-lg-4 {
        column-gap: 1.5rem !important;
    }

    .column-gap-lg-5 {
        column-gap: 3rem !important;
    }

    .fs-lg-1 {
        font-size: 2.75rem !important;
    }

    .fs-lg-2 {
        font-size: 2.5rem !important;
    }

    .fs-lg-3 {
        font-size: 2.25rem !important;
    }

    .fs-lg-4 {
        font-size: 2rem !important;
    }

    .fs-lg-5 {
        font-size: 1.75rem !important;
    }

    .fs-lg-6 {
        font-size: 1.5rem !important;
    }

    .fs-lg-7 {
        font-size: 1.25rem !important;
    }

    .fs-lg-8 {
        font-size: 1rem !important;
    }

    .fs-lg-9 {
        font-size: 0.95rem !important;
    }

    .fs-lg-10 {
        font-size: 0.9rem !important;
    }

    .fs-lg-11 {
        font-size: 0.85rem !important;
    }

    .fs-lg-12 {
        font-size: 0.8rem !important;
    }

    .fs-lg-13 {
        font-size: 0.75rem !important;
    }

    .fs-lg-14 {
        font-size: 0.7rem !important;
    }

    .fs-lg-15 {
        font-size: 0.65rem !important;
    }

    .fs-lg-16 {
        font-size: 0.6rem !important;
    }

    .fs-lg-17 {
        font-size: 0.55rem !important;
    }

    .fs-lg-18 {
        font-size: 0.5rem !important;
    }

    .fs-lg-19 {
        font-size: 0.45rem !important;
    }

    .fs-lg-20 {
        font-size: 0.4rem !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-primary {
        color: #0d6efd !important;
    }

    .text-lg-secondary {
        color: #6c757d !important;
    }

    .text-lg-success {
        color: #198754 !important;
    }

    .text-lg-info {
        color: #0dcaf0 !important;
    }

    .text-lg-warning {
        color: #ffc107 !important;
    }

    .text-lg-danger {
        color: #dc3545 !important;
    }

    .text-lg-light {
        color: #f8f9fa !important;
    }

    .text-lg-dark {
        color: #212529 !important;
    }

    .text-lg-white {
        color: #fff !important;
    }

    .text-lg-black {
        color: #3b4141 !important;
    }

    .text-lg-red {
        color: #d71921 !important;
    }

    .text-lg-red-50 {
        color: #c61f2c !important;
    }

    .text-lg-pink {
        color: #ffebeb !important;
    }

    .text-lg-pink-50 {
        color: #ffc9c9 !important;
    }

    .text-lg-light-pink {
        color: #fff8f8 !important;
    }

    .text-lg-gray {
        color: #454545 !important;
    }

    .text-lg-gray-50 {
        color: #939393 !important;
    }

    .text-lg-light-gray {
        color: #c8c8c8 !important;
    }

    .text-lg-light-gray-50 {
        color: #f3f4f5 !important;
    }

    .text-lg-green {
        color: #0c8858 !important;
    }

    .text-lg-green-50 {
        color: #d6ecd7 !important;
    }

    .text-lg-light-green {
        color: #42c504 !important;
    }

    .text-lg-dark-blue {
        color: #0e2f87 !important;
    }

    .text-lg-nice-blue {
        color: #0e68ba !important;
    }

    .text-lg-navy-blue {
        color: #1f296b !important;
    }

    .text-lg-blueberry {
        color: #343e96 !important;
    }

    .text-lg-light-blue {
        color: #eaf5ff !important;
    }

    .text-lg-transparent {
        color: rgba(0, 0, 0, 0) !important;
    }

    .bg-lg-primary {
        background-color: #0d6efd !important;
    }

    .bg-lg-secondary {
        background-color: #6c757d !important;
    }

    .bg-lg-success {
        background-color: #198754 !important;
    }

    .bg-lg-info {
        background-color: #0dcaf0 !important;
    }

    .bg-lg-warning {
        background-color: #ffc107 !important;
    }

    .bg-lg-danger {
        background-color: #dc3545 !important;
    }

    .bg-lg-light {
        background-color: #f8f9fa !important;
    }

    .bg-lg-dark {
        background-color: #212529 !important;
    }

    .bg-lg-white {
        background-color: #fff !important;
    }

    .bg-lg-black {
        background-color: #3b4141 !important;
    }

    .bg-lg-red {
        background-color: #d71921 !important;
    }

    .bg-lg-red-50 {
        background-color: #c61f2c !important;
    }

    .bg-lg-pink {
        background-color: #ffebeb !important;
    }

    .bg-lg-pink-50 {
        background-color: #ffc9c9 !important;
    }

    .bg-lg-light-pink {
        background-color: #fff8f8 !important;
    }

    .bg-lg-gray {
        background-color: #454545 !important;
    }

    .bg-lg-gray-50 {
        background-color: #939393 !important;
    }

    .bg-lg-light-gray {
        background-color: #c8c8c8 !important;
    }

    .bg-lg-light-gray-50 {
        background-color: #f3f4f5 !important;
    }

    .bg-lg-green {
        background-color: #0c8858 !important;
    }

    .bg-lg-green-50 {
        background-color: #d6ecd7 !important;
    }

    .bg-lg-light-green {
        background-color: #42c504 !important;
    }

    .bg-lg-dark-blue {
        background-color: #0e2f87 !important;
    }

    .bg-lg-nice-blue {
        background-color: #0e68ba !important;
    }

    .bg-lg-navy-blue {
        background-color: #1f296b !important;
    }

    .bg-lg-blueberry {
        background-color: #343e96 !important;
    }

    .bg-lg-light-blue {
        background-color: #eaf5ff !important;
    }

    .bg-lg-transparent {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .rounded-lg {
        border-radius: 0.375rem !important;
    }

    .rounded-lg-0 {
        border-radius: 0 !important;
    }

    .rounded-lg-1 {
        border-radius: 0.25rem !important;
    }

    .rounded-lg-2 {
        border-radius: 0.375rem !important;
    }

    .rounded-lg-3 {
        border-radius: 0.5rem !important;
    }

    .rounded-lg-4 {
        border-radius: 1rem !important;
    }

    .rounded-lg-5 {
        border-radius: 2rem !important;
    }

    .rounded-lg-circle {
        border-radius: 50% !important;
    }

    .rounded-lg-pill {
        border-radius: 50rem !important;
    }

    .rounded-top-lg {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-lg-0 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .rounded-top-lg-1 {
        border-top-left-radius: 0.25rem !important;
        border-top-right-radius: 0.25rem !important;
    }

    .rounded-top-lg-2 {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-lg-3 {
        border-top-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
    }

    .rounded-top-lg-4 {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .rounded-top-lg-5 {
        border-top-left-radius: 2rem !important;
        border-top-right-radius: 2rem !important;
    }

    .rounded-top-lg-circle {
        border-top-left-radius: 50% !important;
        border-top-right-radius: 50% !important;
    }

    .rounded-top-lg-pill {
        border-top-left-radius: 50rem !important;
        border-top-right-radius: 50rem !important;
    }

    .rounded-end-lg {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-lg-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-end-lg-1 {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .rounded-end-lg-2 {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-lg-3 {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .rounded-end-lg-4 {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .rounded-end-lg-5 {
        border-top-right-radius: 2rem !important;
        border-bottom-right-radius: 2rem !important;
    }

    .rounded-end-lg-circle {
        border-top-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important;
    }

    .rounded-end-lg-pill {
        border-top-right-radius: 50rem !important;
        border-bottom-right-radius: 50rem !important;
    }

    .rounded-bottom-lg {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-lg-0 {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .rounded-bottom-lg-1 {
        border-bottom-right-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .rounded-bottom-lg-2 {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-lg-3 {
        border-bottom-right-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
    }

    .rounded-bottom-lg-4 {
        border-bottom-right-radius: 1rem !important;
        border-bottom-left-radius: 1rem !important;
    }

    .rounded-bottom-lg-5 {
        border-bottom-right-radius: 2rem !important;
        border-bottom-left-radius: 2rem !important;
    }

    .rounded-bottom-lg-circle {
        border-bottom-right-radius: 50% !important;
        border-bottom-left-radius: 50% !important;
    }

    .rounded-bottom-lg-pill {
        border-bottom-right-radius: 50rem !important;
        border-bottom-left-radius: 50rem !important;
    }

    .rounded-start-lg {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-lg-0 {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    .rounded-start-lg-1 {
        border-bottom-left-radius: 0.25rem !important;
        border-top-left-radius: 0.25rem !important;
    }

    .rounded-start-lg-2 {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-lg-3 {
        border-bottom-left-radius: 0.5rem !important;
        border-top-left-radius: 0.5rem !important;
    }

    .rounded-start-lg-4 {
        border-bottom-left-radius: 1rem !important;
        border-top-left-radius: 1rem !important;
    }

    .rounded-start-lg-5 {
        border-bottom-left-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
    }

    .rounded-start-lg-circle {
        border-bottom-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
    }

    .rounded-start-lg-pill {
        border-bottom-left-radius: 50rem !important;
        border-top-left-radius: 50rem !important;
    }

    .text-indent-lg-0 {
        text-indent: 0 !important;
    }

    .text-indent-lg-1 {
        text-indent: 0.25rem !important;
    }

    .text-indent-lg-2 {
        text-indent: 0.5rem !important;
    }

    .text-indent-lg-3 {
        text-indent: 0.75rem !important;
    }

    .text-indent-lg-4 {
        text-indent: 1rem !important;
    }

    .text-indent-lg-5 {
        text-indent: 1.5rem !important;
    }

    .text-indent-lg-6 {
        text-indent: 2rem !important;
    }

    .text-indent-lg-7 {
        text-indent: 2.5rem !important;
    }

    .text-indent-lg-8 {
        text-indent: 3rem !important;
    }

    .text-indent-lg-9 {
        text-indent: 3.5rem !important;
    }

    .text-indent-lg-10 {
        text-indent: 4rem !important;
    }

    .text-indent-lg-auto {
        text-indent: auto !important;
    }

    .ratio-lg-1x1 {
        aspect-ratio: 100% !important;
    }

    .ratio-lg-4x3 {
        aspect-ratio: 75% !important;
    }

    .ratio-lg-16x9 {
        aspect-ratio: 56.25% !important;
    }

    .ratio-lg-21x9 {
        aspect-ratio: 42.8571428571% !important;
    }

    .ratio-lg-3x2 {
        aspect-ratio: 66.6666666667% !important;
    }

    .stroke-lg-primary {
        stroke: #0d6efd !important;
    }

    .stroke-lg-secondary {
        stroke: #6c757d !important;
    }

    .stroke-lg-success {
        stroke: #198754 !important;
    }

    .stroke-lg-info {
        stroke: #0dcaf0 !important;
    }

    .stroke-lg-warning {
        stroke: #ffc107 !important;
    }

    .stroke-lg-danger {
        stroke: #dc3545 !important;
    }

    .stroke-lg-light {
        stroke: #f8f9fa !important;
    }

    .stroke-lg-dark {
        stroke: #212529 !important;
    }

    .stroke-lg-white {
        stroke: #fff !important;
    }

    .stroke-lg-black {
        stroke: #3b4141 !important;
    }

    .stroke-lg-red {
        stroke: #d71921 !important;
    }

    .stroke-lg-red-50 {
        stroke: #c61f2c !important;
    }

    .stroke-lg-pink {
        stroke: #ffebeb !important;
    }

    .stroke-lg-pink-50 {
        stroke: #ffc9c9 !important;
    }

    .stroke-lg-light-pink {
        stroke: #fff8f8 !important;
    }

    .stroke-lg-gray {
        stroke: #454545 !important;
    }

    .stroke-lg-gray-50 {
        stroke: #939393 !important;
    }

    .stroke-lg-light-gray {
        stroke: #c8c8c8 !important;
    }

    .stroke-lg-light-gray-50 {
        stroke: #f3f4f5 !important;
    }

    .stroke-lg-green {
        stroke: #0c8858 !important;
    }

    .stroke-lg-green-50 {
        stroke: #d6ecd7 !important;
    }

    .stroke-lg-light-green {
        stroke: #42c504 !important;
    }

    .stroke-lg-dark-blue {
        stroke: #0e2f87 !important;
    }

    .stroke-lg-nice-blue {
        stroke: #0e68ba !important;
    }

    .stroke-lg-navy-blue {
        stroke: #1f296b !important;
    }

    .stroke-lg-blueberry {
        stroke: #343e96 !important;
    }

    .stroke-lg-light-blue {
        stroke: #eaf5ff !important;
    }

    .stroke-lg-transparent {
        stroke: rgba(0, 0, 0, 0) !important;
    }

    .fill-lg-primary {
        fill: #0d6efd !important;
    }

    .fill-lg-secondary {
        fill: #6c757d !important;
    }

    .fill-lg-success {
        fill: #198754 !important;
    }

    .fill-lg-info {
        fill: #0dcaf0 !important;
    }

    .fill-lg-warning {
        fill: #ffc107 !important;
    }

    .fill-lg-danger {
        fill: #dc3545 !important;
    }

    .fill-lg-light {
        fill: #f8f9fa !important;
    }

    .fill-lg-dark {
        fill: #212529 !important;
    }

    .fill-lg-white {
        fill: #fff !important;
    }

    .fill-lg-black {
        fill: #3b4141 !important;
    }

    .fill-lg-red {
        fill: #d71921 !important;
    }

    .fill-lg-red-50 {
        fill: #c61f2c !important;
    }

    .fill-lg-pink {
        fill: #ffebeb !important;
    }

    .fill-lg-pink-50 {
        fill: #ffc9c9 !important;
    }

    .fill-lg-light-pink {
        fill: #fff8f8 !important;
    }

    .fill-lg-gray {
        fill: #454545 !important;
    }

    .fill-lg-gray-50 {
        fill: #939393 !important;
    }

    .fill-lg-light-gray {
        fill: #c8c8c8 !important;
    }

    .fill-lg-light-gray-50 {
        fill: #f3f4f5 !important;
    }

    .fill-lg-green {
        fill: #0c8858 !important;
    }

    .fill-lg-green-50 {
        fill: #d6ecd7 !important;
    }

    .fill-lg-light-green {
        fill: #42c504 !important;
    }

    .fill-lg-dark-blue {
        fill: #0e2f87 !important;
    }

    .fill-lg-nice-blue {
        fill: #0e68ba !important;
    }

    .fill-lg-navy-blue {
        fill: #1f296b !important;
    }

    .fill-lg-blueberry {
        fill: #343e96 !important;
    }

    .fill-lg-light-blue {
        fill: #eaf5ff !important;
    }

    .fill-lg-transparent {
        fill: rgba(0, 0, 0, 0) !important;
    }

    .h-rem-lg-auto {
        height: auto !important;
    }

    .h-rem-lg-1 {
        height: 0.5rem !important;
    }

    .h-rem-lg-2 {
        height: 0.75rem !important;
    }

    .h-rem-lg-3 {
        height: 1rem !important;
    }

    .h-rem-lg-4 {
        height: 1.25rem !important;
    }

    .h-rem-lg-5 {
        height: 1.5rem !important;
    }

    .h-rem-lg-6 {
        height: 1.75rem !important;
    }

    .h-rem-lg-7 {
        height: 2rem !important;
    }

    .h-rem-lg-8 {
        height: 2.5rem !important;
    }

    .h-rem-lg-9 {
        height: 3rem !important;
    }

    .h-rem-lg-10 {
        height: 3.5rem !important;
    }

    .h-rem-lg-11 {
        height: 4rem !important;
    }

    .h-rem-lg-12 {
        height: 4.5rem !important;
    }

    .h-rem-lg-13 {
        height: 5rem !important;
    }

    .h-rem-lg-14 {
        height: 5.5rem !important;
    }

    .h-rem-lg-15 {
        height: 6rem !important;
    }

    .h-rem-lg-16 {
        height: 7rem !important;
    }

    .h-rem-lg-17 {
        height: 8rem !important;
    }

    .h-rem-lg-18 {
        height: 9rem !important;
    }

    .h-rem-lg-19 {
        height: 10rem !important;
    }

    .h-rem-lg-20 {
        height: 11rem !important;
    }

    .h-rem-lg-21 {
        height: 12rem !important;
    }

    .h-rem-lg-22 {
        height: 13rem !important;
    }

    .h-rem-lg-23 {
        height: 14rem !important;
    }

    .h-rem-lg-24 {
        height: 15rem !important;
    }

    .h-rem-lg-25 {
        height: 16rem !important;
    }

    .h-rem-lg-26 {
        height: 18rem !important;
    }

    .h-rem-lg-27 {
        height: 20rem !important;
    }

    .h-rem-lg-28 {
        height: 22rem !important;
    }

    .h-rem-lg-29 {
        height: 24rem !important;
    }

    .h-rem-lg-30 {
        height: 26rem !important;
    }

    .h-rem-lg-31 {
        height: 28rem !important;
    }

    .h-rem-lg-32 {
        height: 30rem !important;
    }

    .h-rem-lg-33 {
        height: 32rem !important;
    }

    .h-rem-lg-34 {
        height: 34rem !important;
    }

    .h-rem-lg-35 {
        height: 36rem !important;
    }

    .h-rem-lg-36 {
        height: 38rem !important;
    }

    .h-rem-lg-37 {
        height: 40rem !important;
    }

    .h-rem-lg-38 {
        height: 42rem !important;
    }

    .h-rem-lg-39 {
        height: 44rem !important;
    }

    .h-rem-lg-40 {
        height: 46rem !important;
    }

    .min-h-rem-lg-auto {
        min-height: auto !important;
    }

    .min-h-rem-lg-1 {
        min-height: 0.5rem !important;
    }

    .min-h-rem-lg-2 {
        min-height: 0.75rem !important;
    }

    .min-h-rem-lg-3 {
        min-height: 1rem !important;
    }

    .min-h-rem-lg-4 {
        min-height: 1.25rem !important;
    }

    .min-h-rem-lg-5 {
        min-height: 1.5rem !important;
    }

    .min-h-rem-lg-6 {
        min-height: 1.75rem !important;
    }

    .min-h-rem-lg-7 {
        min-height: 2rem !important;
    }

    .min-h-rem-lg-8 {
        min-height: 2.5rem !important;
    }

    .min-h-rem-lg-9 {
        min-height: 3rem !important;
    }

    .min-h-rem-lg-10 {
        min-height: 3.5rem !important;
    }

    .min-h-rem-lg-11 {
        min-height: 4rem !important;
    }

    .min-h-rem-lg-12 {
        min-height: 4.5rem !important;
    }

    .min-h-rem-lg-13 {
        min-height: 5rem !important;
    }

    .min-h-rem-lg-14 {
        min-height: 5.5rem !important;
    }

    .min-h-rem-lg-15 {
        min-height: 6rem !important;
    }

    .min-h-rem-lg-16 {
        min-height: 7rem !important;
    }

    .min-h-rem-lg-17 {
        min-height: 8rem !important;
    }

    .min-h-rem-lg-18 {
        min-height: 9rem !important;
    }

    .min-h-rem-lg-19 {
        min-height: 10rem !important;
    }

    .min-h-rem-lg-20 {
        min-height: 11rem !important;
    }

    .min-h-rem-lg-21 {
        min-height: 12rem !important;
    }

    .min-h-rem-lg-22 {
        min-height: 13rem !important;
    }

    .min-h-rem-lg-23 {
        min-height: 14rem !important;
    }

    .min-h-rem-lg-24 {
        min-height: 15rem !important;
    }

    .min-h-rem-lg-25 {
        min-height: 16rem !important;
    }

    .min-h-rem-lg-26 {
        min-height: 18rem !important;
    }

    .min-h-rem-lg-27 {
        min-height: 20rem !important;
    }

    .min-h-rem-lg-28 {
        min-height: 22rem !important;
    }

    .min-h-rem-lg-29 {
        min-height: 24rem !important;
    }

    .min-h-rem-lg-30 {
        min-height: 26rem !important;
    }

    .min-h-rem-lg-31 {
        min-height: 28rem !important;
    }

    .min-h-rem-lg-32 {
        min-height: 30rem !important;
    }

    .min-h-rem-lg-33 {
        min-height: 32rem !important;
    }

    .min-h-rem-lg-34 {
        min-height: 34rem !important;
    }

    .min-h-rem-lg-35 {
        min-height: 36rem !important;
    }

    .min-h-rem-lg-36 {
        min-height: 38rem !important;
    }

    .min-h-rem-lg-37 {
        min-height: 40rem !important;
    }

    .min-h-rem-lg-38 {
        min-height: 42rem !important;
    }

    .min-h-rem-lg-39 {
        min-height: 44rem !important;
    }

    .min-h-rem-lg-40 {
        min-height: 46rem !important;
    }

    .mh-rem-lg-auto {
        max-height: auto !important;
    }

    .mh-rem-lg-1 {
        max-height: 0.5rem !important;
    }

    .mh-rem-lg-2 {
        max-height: 0.75rem !important;
    }

    .mh-rem-lg-3 {
        max-height: 1rem !important;
    }

    .mh-rem-lg-4 {
        max-height: 1.25rem !important;
    }

    .mh-rem-lg-5 {
        max-height: 1.5rem !important;
    }

    .mh-rem-lg-6 {
        max-height: 1.75rem !important;
    }

    .mh-rem-lg-7 {
        max-height: 2rem !important;
    }

    .mh-rem-lg-8 {
        max-height: 2.5rem !important;
    }

    .mh-rem-lg-9 {
        max-height: 3rem !important;
    }

    .mh-rem-lg-10 {
        max-height: 3.5rem !important;
    }

    .mh-rem-lg-11 {
        max-height: 4rem !important;
    }

    .mh-rem-lg-12 {
        max-height: 4.5rem !important;
    }

    .mh-rem-lg-13 {
        max-height: 5rem !important;
    }

    .mh-rem-lg-14 {
        max-height: 5.5rem !important;
    }

    .mh-rem-lg-15 {
        max-height: 6rem !important;
    }

    .mh-rem-lg-16 {
        max-height: 7rem !important;
    }

    .mh-rem-lg-17 {
        max-height: 8rem !important;
    }

    .mh-rem-lg-18 {
        max-height: 9rem !important;
    }

    .mh-rem-lg-19 {
        max-height: 10rem !important;
    }

    .mh-rem-lg-20 {
        max-height: 11rem !important;
    }

    .mh-rem-lg-21 {
        max-height: 12rem !important;
    }

    .mh-rem-lg-22 {
        max-height: 13rem !important;
    }

    .mh-rem-lg-23 {
        max-height: 14rem !important;
    }

    .mh-rem-lg-24 {
        max-height: 15rem !important;
    }

    .mh-rem-lg-25 {
        max-height: 16rem !important;
    }

    .mh-rem-lg-26 {
        max-height: 18rem !important;
    }

    .mh-rem-lg-27 {
        max-height: 20rem !important;
    }

    .mh-rem-lg-28 {
        max-height: 22rem !important;
    }

    .mh-rem-lg-29 {
        max-height: 24rem !important;
    }

    .mh-rem-lg-30 {
        max-height: 26rem !important;
    }

    .mh-rem-lg-31 {
        max-height: 28rem !important;
    }

    .mh-rem-lg-32 {
        max-height: 30rem !important;
    }

    .mh-rem-lg-33 {
        max-height: 32rem !important;
    }

    .mh-rem-lg-34 {
        max-height: 34rem !important;
    }

    .mh-rem-lg-35 {
        max-height: 36rem !important;
    }

    .mh-rem-lg-36 {
        max-height: 38rem !important;
    }

    .mh-rem-lg-37 {
        max-height: 40rem !important;
    }

    .mh-rem-lg-38 {
        max-height: 42rem !important;
    }

    .mh-rem-lg-39 {
        max-height: 44rem !important;
    }

    .mh-rem-lg-40 {
        max-height: 46rem !important;
    }

    .w-rem-lg-auto {
        width: auto !important;
    }

    .w-rem-lg-1 {
        width: 0.5rem !important;
    }

    .w-rem-lg-2 {
        width: 0.75rem !important;
    }

    .w-rem-lg-3 {
        width: 1rem !important;
    }

    .w-rem-lg-4 {
        width: 1.25rem !important;
    }

    .w-rem-lg-5 {
        width: 1.5rem !important;
    }

    .w-rem-lg-6 {
        width: 1.75rem !important;
    }

    .w-rem-lg-7 {
        width: 2rem !important;
    }

    .w-rem-lg-8 {
        width: 2.5rem !important;
    }

    .w-rem-lg-9 {
        width: 3rem !important;
    }

    .w-rem-lg-10 {
        width: 3.5rem !important;
    }

    .w-rem-lg-11 {
        width: 4rem !important;
    }

    .w-rem-lg-12 {
        width: 4.5rem !important;
    }

    .w-rem-lg-13 {
        width: 5rem !important;
    }

    .w-rem-lg-14 {
        width: 5.5rem !important;
    }

    .w-rem-lg-15 {
        width: 6rem !important;
    }

    .w-rem-lg-16 {
        width: 7rem !important;
    }

    .w-rem-lg-17 {
        width: 8rem !important;
    }

    .w-rem-lg-18 {
        width: 9rem !important;
    }

    .w-rem-lg-19 {
        width: 10rem !important;
    }

    .w-rem-lg-20 {
        width: 11rem !important;
    }

    .w-rem-lg-21 {
        width: 12rem !important;
    }

    .w-rem-lg-22 {
        width: 13rem !important;
    }

    .w-rem-lg-23 {
        width: 14rem !important;
    }

    .w-rem-lg-24 {
        width: 15rem !important;
    }

    .w-rem-lg-25 {
        width: 16rem !important;
    }

    .w-rem-lg-26 {
        width: 18rem !important;
    }

    .w-rem-lg-27 {
        width: 20rem !important;
    }

    .w-rem-lg-28 {
        width: 22rem !important;
    }

    .w-rem-lg-29 {
        width: 24rem !important;
    }

    .w-rem-lg-30 {
        width: 26rem !important;
    }

    .w-rem-lg-31 {
        width: 28rem !important;
    }

    .w-rem-lg-32 {
        width: 30rem !important;
    }

    .w-rem-lg-33 {
        width: 32rem !important;
    }

    .w-rem-lg-34 {
        width: 34rem !important;
    }

    .w-rem-lg-35 {
        width: 36rem !important;
    }

    .w-rem-lg-36 {
        width: 38rem !important;
    }

    .w-rem-lg-37 {
        width: 40rem !important;
    }

    .w-rem-lg-38 {
        width: 42rem !important;
    }

    .w-rem-lg-39 {
        width: 44rem !important;
    }

    .w-rem-lg-40 {
        width: 46rem !important;
    }

    .min-w-rem-lg-auto {
        min-width: auto !important;
    }

    .min-w-rem-lg-1 {
        min-width: 0.5rem !important;
    }

    .min-w-rem-lg-2 {
        min-width: 0.75rem !important;
    }

    .min-w-rem-lg-3 {
        min-width: 1rem !important;
    }

    .min-w-rem-lg-4 {
        min-width: 1.25rem !important;
    }

    .min-w-rem-lg-5 {
        min-width: 1.5rem !important;
    }

    .min-w-rem-lg-6 {
        min-width: 1.75rem !important;
    }

    .min-w-rem-lg-7 {
        min-width: 2rem !important;
    }

    .min-w-rem-lg-8 {
        min-width: 2.5rem !important;
    }

    .min-w-rem-lg-9 {
        min-width: 3rem !important;
    }

    .min-w-rem-lg-10 {
        min-width: 3.5rem !important;
    }

    .min-w-rem-lg-11 {
        min-width: 4rem !important;
    }

    .min-w-rem-lg-12 {
        min-width: 4.5rem !important;
    }

    .min-w-rem-lg-13 {
        min-width: 5rem !important;
    }

    .min-w-rem-lg-14 {
        min-width: 5.5rem !important;
    }

    .min-w-rem-lg-15 {
        min-width: 6rem !important;
    }

    .min-w-rem-lg-16 {
        min-width: 7rem !important;
    }

    .min-w-rem-lg-17 {
        min-width: 8rem !important;
    }

    .min-w-rem-lg-18 {
        min-width: 9rem !important;
    }

    .min-w-rem-lg-19 {
        min-width: 10rem !important;
    }

    .min-w-rem-lg-20 {
        min-width: 11rem !important;
    }

    .min-w-rem-lg-21 {
        min-width: 12rem !important;
    }

    .min-w-rem-lg-22 {
        min-width: 13rem !important;
    }

    .min-w-rem-lg-23 {
        min-width: 14rem !important;
    }

    .min-w-rem-lg-24 {
        min-width: 15rem !important;
    }

    .min-w-rem-lg-25 {
        min-width: 16rem !important;
    }

    .min-w-rem-lg-26 {
        min-width: 18rem !important;
    }

    .min-w-rem-lg-27 {
        min-width: 20rem !important;
    }

    .min-w-rem-lg-28 {
        min-width: 22rem !important;
    }

    .min-w-rem-lg-29 {
        min-width: 24rem !important;
    }

    .min-w-rem-lg-30 {
        min-width: 26rem !important;
    }

    .min-w-rem-lg-31 {
        min-width: 28rem !important;
    }

    .min-w-rem-lg-32 {
        min-width: 30rem !important;
    }

    .min-w-rem-lg-33 {
        min-width: 32rem !important;
    }

    .min-w-rem-lg-34 {
        min-width: 34rem !important;
    }

    .min-w-rem-lg-35 {
        min-width: 36rem !important;
    }

    .min-w-rem-lg-36 {
        min-width: 38rem !important;
    }

    .min-w-rem-lg-37 {
        min-width: 40rem !important;
    }

    .min-w-rem-lg-38 {
        min-width: 42rem !important;
    }

    .min-w-rem-lg-39 {
        min-width: 44rem !important;
    }

    .min-w-rem-lg-40 {
        min-width: 46rem !important;
    }

    .mw-rem-lg-auto {
        max-width: auto !important;
    }

    .mw-rem-lg-1 {
        max-width: 0.5rem !important;
    }

    .mw-rem-lg-2 {
        max-width: 0.75rem !important;
    }

    .mw-rem-lg-3 {
        max-width: 1rem !important;
    }

    .mw-rem-lg-4 {
        max-width: 1.25rem !important;
    }

    .mw-rem-lg-5 {
        max-width: 1.5rem !important;
    }

    .mw-rem-lg-6 {
        max-width: 1.75rem !important;
    }

    .mw-rem-lg-7 {
        max-width: 2rem !important;
    }

    .mw-rem-lg-8 {
        max-width: 2.5rem !important;
    }

    .mw-rem-lg-9 {
        max-width: 3rem !important;
    }

    .mw-rem-lg-10 {
        max-width: 3.5rem !important;
    }

    .mw-rem-lg-11 {
        max-width: 4rem !important;
    }

    .mw-rem-lg-12 {
        max-width: 4.5rem !important;
    }

    .mw-rem-lg-13 {
        max-width: 5rem !important;
    }

    .mw-rem-lg-14 {
        max-width: 5.5rem !important;
    }

    .mw-rem-lg-15 {
        max-width: 6rem !important;
    }

    .mw-rem-lg-16 {
        max-width: 7rem !important;
    }

    .mw-rem-lg-17 {
        max-width: 8rem !important;
    }

    .mw-rem-lg-18 {
        max-width: 9rem !important;
    }

    .mw-rem-lg-19 {
        max-width: 10rem !important;
    }

    .mw-rem-lg-20 {
        max-width: 11rem !important;
    }

    .mw-rem-lg-21 {
        max-width: 12rem !important;
    }

    .mw-rem-lg-22 {
        max-width: 13rem !important;
    }

    .mw-rem-lg-23 {
        max-width: 14rem !important;
    }

    .mw-rem-lg-24 {
        max-width: 15rem !important;
    }

    .mw-rem-lg-25 {
        max-width: 16rem !important;
    }

    .mw-rem-lg-26 {
        max-width: 18rem !important;
    }

    .mw-rem-lg-27 {
        max-width: 20rem !important;
    }

    .mw-rem-lg-28 {
        max-width: 22rem !important;
    }

    .mw-rem-lg-29 {
        max-width: 24rem !important;
    }

    .mw-rem-lg-30 {
        max-width: 26rem !important;
    }

    .mw-rem-lg-31 {
        max-width: 28rem !important;
    }

    .mw-rem-lg-32 {
        max-width: 30rem !important;
    }

    .mw-rem-lg-33 {
        max-width: 32rem !important;
    }

    .mw-rem-lg-34 {
        max-width: 34rem !important;
    }

    .mw-rem-lg-35 {
        max-width: 36rem !important;
    }

    .mw-rem-lg-36 {
        max-width: 38rem !important;
    }

    .mw-rem-lg-37 {
        max-width: 40rem !important;
    }

    .mw-rem-lg-38 {
        max-width: 42rem !important;
    }

    .mw-rem-lg-39 {
        max-width: 44rem !important;
    }

    .mw-rem-lg-40 {
        max-width: 46rem !important;
    }

    .svgs-lg-1 {
        width: 16px !important;
        height: 16px !important;
    }

    .svgs-lg-2 {
        width: 20px !important;
        height: 20px !important;
    }

    .svgs-lg-3 {
        width: 24px !important;
        height: 24px !important;
    }

    .svgs-lg-4 {
        width: 28px !important;
        height: 28px !important;
    }

    .svgs-lg-5 {
        width: 32px !important;
        height: 32px !important;
    }

    .svgs-lg-6 {
        width: 40px !important;
        height: 40px !important;
    }

    .svgs-lg-7 {
        width: 48px !important;
        height: 48px !important;
    }

    .svgs-lg-8 {
        width: 56px !important;
        height: 56px !important;
    }

    .svgs-lg-9 {
        width: 64px !important;
        height: 64px !important;
    }

    .svgs-lg-10 {
        width: 72px !important;
        height: 72px !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: left !important;
    }

    .float-xl-end {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }

    .object-fit-xl-contain {
        object-fit: contain !important;
    }

    .object-fit-xl-cover {
        object-fit: cover !important;
    }

    .object-fit-xl-fill {
        object-fit: fill !important;
    }

    .object-fit-xl-scale {
        object-fit: scale-down !important;
    }

    .object-fit-xl-none {
        object-fit: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-inline-grid {
        display: inline-grid !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }

    .d-xl-none {
        display: none !important;
    }

    .position-xl-static {
        position: static !important;
    }

    .position-xl-relative {
        position: relative !important;
    }

    .position-xl-absolute {
        position: absolute !important;
    }

    .position-xl-fixed {
        position: fixed !important;
    }

    .position-xl-sticky {
        position: sticky !important;
    }

    .border-xl {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-xl-0 {
        border: 0 !important;
    }

    .border-top-xl {
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-top-xl-0 {
        border-top: 0 !important;
    }

    .border-end-xl {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-end-xl-0 {
        border-right: 0 !important;
    }

    .border-bottom-xl {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-bottom-xl-0 {
        border-bottom: 0 !important;
    }

    .border-start-xl {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-start-xl-0 {
        border-left: 0 !important;
    }

    .border-xl-primary {
        border-color: #0d6efd !important;
    }

    .border-xl-secondary {
        border-color: #6c757d !important;
    }

    .border-xl-success {
        border-color: #198754 !important;
    }

    .border-xl-info {
        border-color: #0dcaf0 !important;
    }

    .border-xl-warning {
        border-color: #ffc107 !important;
    }

    .border-xl-danger {
        border-color: #dc3545 !important;
    }

    .border-xl-light {
        border-color: #f8f9fa !important;
    }

    .border-xl-dark {
        border-color: #212529 !important;
    }

    .border-xl-white {
        border-color: #fff !important;
    }

    .border-xl-black {
        border-color: #3b4141 !important;
    }

    .border-xl-red {
        border-color: #d71921 !important;
    }

    .border-xl-red-50 {
        border-color: #c61f2c !important;
    }

    .border-xl-pink {
        border-color: #ffebeb !important;
    }

    .border-xl-pink-50 {
        border-color: #ffc9c9 !important;
    }

    .border-xl-light-pink {
        border-color: #fff8f8 !important;
    }

    .border-xl-gray {
        border-color: #454545 !important;
    }

    .border-xl-gray-50 {
        border-color: #939393 !important;
    }

    .border-xl-light-gray {
        border-color: #c8c8c8 !important;
    }

    .border-xl-light-gray-50 {
        border-color: #f3f4f5 !important;
    }

    .border-xl-green {
        border-color: #0c8858 !important;
    }

    .border-xl-green-50 {
        border-color: #d6ecd7 !important;
    }

    .border-xl-light-green {
        border-color: #42c504 !important;
    }

    .border-xl-dark-blue {
        border-color: #0e2f87 !important;
    }

    .border-xl-nice-blue {
        border-color: #0e68ba !important;
    }

    .border-xl-navy-blue {
        border-color: #1f296b !important;
    }

    .border-xl-blueberry {
        border-color: #343e96 !important;
    }

    .border-xl-light-blue {
        border-color: #eaf5ff !important;
    }

    .border-xl-transparent {
        border-color: rgba(0, 0, 0, 0) !important;
    }

    .w-xl-auto {
        width: auto !important;
    }

    .w-xl-5 {
        width: 5% !important;
    }

    .w-xl-10 {
        width: 10% !important;
    }

    .w-xl-15 {
        width: 15% !important;
    }

    .w-xl-20 {
        width: 20% !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }

    .w-xl-30 {
        width: 30% !important;
    }

    .w-xl-35 {
        width: 35% !important;
    }

    .w-xl-40 {
        width: 40% !important;
    }

    .w-xl-45 {
        width: 45% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-55 {
        width: 55% !important;
    }

    .w-xl-60 {
        width: 60% !important;
    }

    .w-xl-65 {
        width: 65% !important;
    }

    .w-xl-70 {
        width: 70% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-80 {
        width: 80% !important;
    }

    .w-xl-85 {
        width: 85% !important;
    }

    .w-xl-90 {
        width: 90% !important;
    }

    .w-xl-95 {
        width: 95% !important;
    }

    .w-xl-100 {
        width: 100% !important;
    }

    .mw-xl-auto {
        max-width: auto !important;
    }

    .mw-xl-5 {
        max-width: 5% !important;
    }

    .mw-xl-10 {
        max-width: 10% !important;
    }

    .mw-xl-15 {
        max-width: 15% !important;
    }

    .mw-xl-20 {
        max-width: 20% !important;
    }

    .mw-xl-25 {
        max-width: 25% !important;
    }

    .mw-xl-30 {
        max-width: 30% !important;
    }

    .mw-xl-35 {
        max-width: 35% !important;
    }

    .mw-xl-40 {
        max-width: 40% !important;
    }

    .mw-xl-45 {
        max-width: 45% !important;
    }

    .mw-xl-50 {
        max-width: 50% !important;
    }

    .mw-xl-55 {
        max-width: 55% !important;
    }

    .mw-xl-60 {
        max-width: 60% !important;
    }

    .mw-xl-65 {
        max-width: 65% !important;
    }

    .mw-xl-70 {
        max-width: 70% !important;
    }

    .mw-xl-75 {
        max-width: 75% !important;
    }

    .mw-xl-80 {
        max-width: 80% !important;
    }

    .mw-xl-85 {
        max-width: 85% !important;
    }

    .mw-xl-90 {
        max-width: 90% !important;
    }

    .mw-xl-95 {
        max-width: 95% !important;
    }

    .mw-xl-100 {
        max-width: 100% !important;
    }

    .vw-xl-auto {
        width: auto !important;
    }

    .vw-xl-5 {
        width: 5vw !important;
    }

    .vw-xl-10 {
        width: 10vw !important;
    }

    .vw-xl-15 {
        width: 15vw !important;
    }

    .vw-xl-20 {
        width: 20vw !important;
    }

    .vw-xl-25 {
        width: 25vw !important;
    }

    .vw-xl-30 {
        width: 30vw !important;
    }

    .vw-xl-35 {
        width: 35vw !important;
    }

    .vw-xl-40 {
        width: 40vw !important;
    }

    .vw-xl-45 {
        width: 45vw !important;
    }

    .vw-xl-50 {
        width: 50vw !important;
    }

    .vw-xl-55 {
        width: 55vw !important;
    }

    .vw-xl-60 {
        width: 60vw !important;
    }

    .vw-xl-65 {
        width: 65vw !important;
    }

    .vw-xl-70 {
        width: 70vw !important;
    }

    .vw-xl-75 {
        width: 75vw !important;
    }

    .vw-xl-80 {
        width: 80vw !important;
    }

    .vw-xl-85 {
        width: 85vw !important;
    }

    .vw-xl-90 {
        width: 90vw !important;
    }

    .vw-xl-95 {
        width: 95vw !important;
    }

    .vw-xl-100 {
        width: 100vw !important;
    }

    .min-vw-xl-auto {
        min-width: auto !important;
    }

    .min-vw-xl-5 {
        min-width: 5vw !important;
    }

    .min-vw-xl-10 {
        min-width: 10vw !important;
    }

    .min-vw-xl-15 {
        min-width: 15vw !important;
    }

    .min-vw-xl-20 {
        min-width: 20vw !important;
    }

    .min-vw-xl-25 {
        min-width: 25vw !important;
    }

    .min-vw-xl-30 {
        min-width: 30vw !important;
    }

    .min-vw-xl-35 {
        min-width: 35vw !important;
    }

    .min-vw-xl-40 {
        min-width: 40vw !important;
    }

    .min-vw-xl-45 {
        min-width: 45vw !important;
    }

    .min-vw-xl-50 {
        min-width: 50vw !important;
    }

    .min-vw-xl-55 {
        min-width: 55vw !important;
    }

    .min-vw-xl-60 {
        min-width: 60vw !important;
    }

    .min-vw-xl-65 {
        min-width: 65vw !important;
    }

    .min-vw-xl-70 {
        min-width: 70vw !important;
    }

    .min-vw-xl-75 {
        min-width: 75vw !important;
    }

    .min-vw-xl-80 {
        min-width: 80vw !important;
    }

    .min-vw-xl-85 {
        min-width: 85vw !important;
    }

    .min-vw-xl-90 {
        min-width: 90vw !important;
    }

    .min-vw-xl-95 {
        min-width: 95vw !important;
    }

    .min-vw-xl-100 {
        min-width: 100vw !important;
    }

    .h-xl-auto {
        height: auto !important;
    }

    .h-xl-5 {
        height: 5% !important;
    }

    .h-xl-10 {
        height: 10% !important;
    }

    .h-xl-15 {
        height: 15% !important;
    }

    .h-xl-20 {
        height: 20% !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }

    .h-xl-30 {
        height: 30% !important;
    }

    .h-xl-35 {
        height: 35% !important;
    }

    .h-xl-40 {
        height: 40% !important;
    }

    .h-xl-45 {
        height: 45% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-55 {
        height: 55% !important;
    }

    .h-xl-60 {
        height: 60% !important;
    }

    .h-xl-65 {
        height: 65% !important;
    }

    .h-xl-70 {
        height: 70% !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .h-xl-80 {
        height: 80% !important;
    }

    .h-xl-85 {
        height: 85% !important;
    }

    .h-xl-90 {
        height: 90% !important;
    }

    .h-xl-95 {
        height: 95% !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .mh-xl-auto {
        max-height: auto !important;
    }

    .mh-xl-5 {
        max-height: 5% !important;
    }

    .mh-xl-10 {
        max-height: 10% !important;
    }

    .mh-xl-15 {
        max-height: 15% !important;
    }

    .mh-xl-20 {
        max-height: 20% !important;
    }

    .mh-xl-25 {
        max-height: 25% !important;
    }

    .mh-xl-30 {
        max-height: 30% !important;
    }

    .mh-xl-35 {
        max-height: 35% !important;
    }

    .mh-xl-40 {
        max-height: 40% !important;
    }

    .mh-xl-45 {
        max-height: 45% !important;
    }

    .mh-xl-50 {
        max-height: 50% !important;
    }

    .mh-xl-55 {
        max-height: 55% !important;
    }

    .mh-xl-60 {
        max-height: 60% !important;
    }

    .mh-xl-65 {
        max-height: 65% !important;
    }

    .mh-xl-70 {
        max-height: 70% !important;
    }

    .mh-xl-75 {
        max-height: 75% !important;
    }

    .mh-xl-80 {
        max-height: 80% !important;
    }

    .mh-xl-85 {
        max-height: 85% !important;
    }

    .mh-xl-90 {
        max-height: 90% !important;
    }

    .mh-xl-95 {
        max-height: 95% !important;
    }

    .mh-xl-100 {
        max-height: 100% !important;
    }

    .vh-xl-auto {
        height: auto !important;
    }

    .vh-xl-5 {
        height: 5vh !important;
    }

    .vh-xl-10 {
        height: 10vh !important;
    }

    .vh-xl-15 {
        height: 15vh !important;
    }

    .vh-xl-20 {
        height: 20vh !important;
    }

    .vh-xl-25 {
        height: 25vh !important;
    }

    .vh-xl-30 {
        height: 30vh !important;
    }

    .vh-xl-35 {
        height: 35vh !important;
    }

    .vh-xl-40 {
        height: 40vh !important;
    }

    .vh-xl-45 {
        height: 45vh !important;
    }

    .vh-xl-50 {
        height: 50vh !important;
    }

    .vh-xl-55 {
        height: 55vh !important;
    }

    .vh-xl-60 {
        height: 60vh !important;
    }

    .vh-xl-65 {
        height: 65vh !important;
    }

    .vh-xl-70 {
        height: 70vh !important;
    }

    .vh-xl-75 {
        height: 75vh !important;
    }

    .vh-xl-80 {
        height: 80vh !important;
    }

    .vh-xl-85 {
        height: 85vh !important;
    }

    .vh-xl-90 {
        height: 90vh !important;
    }

    .vh-xl-95 {
        height: 95vh !important;
    }

    .vh-xl-100 {
        height: 100vh !important;
    }

    .min-vh-xl-auto {
        min-height: auto !important;
    }

    .min-vh-xl-5 {
        min-height: 5vh !important;
    }

    .min-vh-xl-10 {
        min-height: 10vh !important;
    }

    .min-vh-xl-15 {
        min-height: 15vh !important;
    }

    .min-vh-xl-20 {
        min-height: 20vh !important;
    }

    .min-vh-xl-25 {
        min-height: 25vh !important;
    }

    .min-vh-xl-30 {
        min-height: 30vh !important;
    }

    .min-vh-xl-35 {
        min-height: 35vh !important;
    }

    .min-vh-xl-40 {
        min-height: 40vh !important;
    }

    .min-vh-xl-45 {
        min-height: 45vh !important;
    }

    .min-vh-xl-50 {
        min-height: 50vh !important;
    }

    .min-vh-xl-55 {
        min-height: 55vh !important;
    }

    .min-vh-xl-60 {
        min-height: 60vh !important;
    }

    .min-vh-xl-65 {
        min-height: 65vh !important;
    }

    .min-vh-xl-70 {
        min-height: 70vh !important;
    }

    .min-vh-xl-75 {
        min-height: 75vh !important;
    }

    .min-vh-xl-80 {
        min-height: 80vh !important;
    }

    .min-vh-xl-85 {
        min-height: 85vh !important;
    }

    .min-vh-xl-90 {
        min-height: 90vh !important;
    }

    .min-vh-xl-95 {
        min-height: 95vh !important;
    }

    .min-vh-xl-100 {
        min-height: 100vh !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }

    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 0.75rem !important;
    }

    .m-xl-4 {
        margin: 1rem !important;
    }

    .m-xl-5 {
        margin: 1.5rem !important;
    }

    .m-xl-6 {
        margin: 2rem !important;
    }

    .m-xl-7 {
        margin: 2.5rem !important;
    }

    .m-xl-8 {
        margin: 3rem !important;
    }

    .m-xl-9 {
        margin: 3.5rem !important;
    }

    .m-xl-10 {
        margin: 4rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xl-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-xl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xl-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xl-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-xl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-xl-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xl-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-xl-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xl-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-xl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xl-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xl-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-xl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-xl-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xl-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-xl-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xl-3 {
        margin-top: 0.75rem !important;
    }

    .mt-xl-4 {
        margin-top: 1rem !important;
    }

    .mt-xl-5 {
        margin-top: 1.5rem !important;
    }

    .mt-xl-6 {
        margin-top: 2rem !important;
    }

    .mt-xl-7 {
        margin-top: 2.5rem !important;
    }

    .mt-xl-8 {
        margin-top: 3rem !important;
    }

    .mt-xl-9 {
        margin-top: 3.5rem !important;
    }

    .mt-xl-10 {
        margin-top: 4rem !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xl-3 {
        margin-right: 0.75rem !important;
    }

    .me-xl-4 {
        margin-right: 1rem !important;
    }

    .me-xl-5 {
        margin-right: 1.5rem !important;
    }

    .me-xl-6 {
        margin-right: 2rem !important;
    }

    .me-xl-7 {
        margin-right: 2.5rem !important;
    }

    .me-xl-8 {
        margin-right: 3rem !important;
    }

    .me-xl-9 {
        margin-right: 3.5rem !important;
    }

    .me-xl-10 {
        margin-right: 4rem !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xl-6 {
        margin-bottom: 2rem !important;
    }

    .mb-xl-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-xl-8 {
        margin-bottom: 3rem !important;
    }

    .mb-xl-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-xl-10 {
        margin-bottom: 4rem !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xl-3 {
        margin-left: 0.75rem !important;
    }

    .ms-xl-4 {
        margin-left: 1rem !important;
    }

    .ms-xl-5 {
        margin-left: 1.5rem !important;
    }

    .ms-xl-6 {
        margin-left: 2rem !important;
    }

    .ms-xl-7 {
        margin-left: 2.5rem !important;
    }

    .ms-xl-8 {
        margin-left: 3rem !important;
    }

    .ms-xl-9 {
        margin-left: 3.5rem !important;
    }

    .ms-xl-10 {
        margin-left: 4rem !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 0.75rem !important;
    }

    .m-xl-4 {
        margin: 1rem !important;
    }

    .m-xl-5 {
        margin: 1.5rem !important;
    }

    .m-xl-6 {
        margin: 2rem !important;
    }

    .m-xl-7 {
        margin: 2.5rem !important;
    }

    .m-xl-8 {
        margin: 3rem !important;
    }

    .m-xl-9 {
        margin: 3.5rem !important;
    }

    .m-xl-10 {
        margin: 4rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xl-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-xl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xl-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xl-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-xl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-xl-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xl-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-xl-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xl-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-xl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xl-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xl-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-xl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-xl-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xl-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-xl-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xl-3 {
        margin-top: 0.75rem !important;
    }

    .mt-xl-4 {
        margin-top: 1rem !important;
    }

    .mt-xl-5 {
        margin-top: 1.5rem !important;
    }

    .mt-xl-6 {
        margin-top: 2rem !important;
    }

    .mt-xl-7 {
        margin-top: 2.5rem !important;
    }

    .mt-xl-8 {
        margin-top: 3rem !important;
    }

    .mt-xl-9 {
        margin-top: 3.5rem !important;
    }

    .mt-xl-10 {
        margin-top: 4rem !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xl-3 {
        margin-right: 0.75rem !important;
    }

    .me-xl-4 {
        margin-right: 1rem !important;
    }

    .me-xl-5 {
        margin-right: 1.5rem !important;
    }

    .me-xl-6 {
        margin-right: 2rem !important;
    }

    .me-xl-7 {
        margin-right: 2.5rem !important;
    }

    .me-xl-8 {
        margin-right: 3rem !important;
    }

    .me-xl-9 {
        margin-right: 3.5rem !important;
    }

    .me-xl-10 {
        margin-right: 4rem !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xl-6 {
        margin-bottom: 2rem !important;
    }

    .mb-xl-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-xl-8 {
        margin-bottom: 3rem !important;
    }

    .mb-xl-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-xl-10 {
        margin-bottom: 4rem !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xl-3 {
        margin-left: 0.75rem !important;
    }

    .ms-xl-4 {
        margin-left: 1rem !important;
    }

    .ms-xl-5 {
        margin-left: 1.5rem !important;
    }

    .ms-xl-6 {
        margin-left: 2rem !important;
    }

    .ms-xl-7 {
        margin-left: 2.5rem !important;
    }

    .ms-xl-8 {
        margin-left: 3rem !important;
    }

    .ms-xl-9 {
        margin-left: 3.5rem !important;
    }

    .ms-xl-10 {
        margin-left: 4rem !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 0.75rem !important;
    }

    .p-xl-4 {
        padding: 1rem !important;
    }

    .p-xl-5 {
        padding: 1.5rem !important;
    }

    .p-xl-6 {
        padding: 2rem !important;
    }

    .p-xl-7 {
        padding: 2.5rem !important;
    }

    .p-xl-8 {
        padding: 3rem !important;
    }

    .p-xl-9 {
        padding: 3.5rem !important;
    }

    .p-xl-10 {
        padding: 4rem !important;
    }

    .p-xl-auto {
        padding: auto !important;
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xl-3 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .px-xl-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xl-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xl-6 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-xl-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-xl-8 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-xl-9 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-xl-10 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-xl-auto {
        padding-right: auto !important;
        padding-left: auto !important;
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xl-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-xl-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xl-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xl-6 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-xl-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-xl-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-xl-9 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-xl-10 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-xl-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xl-3 {
        padding-top: 0.75rem !important;
    }

    .pt-xl-4 {
        padding-top: 1rem !important;
    }

    .pt-xl-5 {
        padding-top: 1.5rem !important;
    }

    .pt-xl-6 {
        padding-top: 2rem !important;
    }

    .pt-xl-7 {
        padding-top: 2.5rem !important;
    }

    .pt-xl-8 {
        padding-top: 3rem !important;
    }

    .pt-xl-9 {
        padding-top: 3.5rem !important;
    }

    .pt-xl-10 {
        padding-top: 4rem !important;
    }

    .pt-xl-auto {
        padding-top: auto !important;
    }

    .pe-xl-0 {
        padding-right: 0 !important;
    }

    .pe-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xl-3 {
        padding-right: 0.75rem !important;
    }

    .pe-xl-4 {
        padding-right: 1rem !important;
    }

    .pe-xl-5 {
        padding-right: 1.5rem !important;
    }

    .pe-xl-6 {
        padding-right: 2rem !important;
    }

    .pe-xl-7 {
        padding-right: 2.5rem !important;
    }

    .pe-xl-8 {
        padding-right: 3rem !important;
    }

    .pe-xl-9 {
        padding-right: 3.5rem !important;
    }

    .pe-xl-10 {
        padding-right: 4rem !important;
    }

    .pe-xl-auto {
        padding-right: auto !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 1rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xl-6 {
        padding-bottom: 2rem !important;
    }

    .pb-xl-7 {
        padding-bottom: 2.5rem !important;
    }

    .pb-xl-8 {
        padding-bottom: 3rem !important;
    }

    .pb-xl-9 {
        padding-bottom: 3.5rem !important;
    }

    .pb-xl-10 {
        padding-bottom: 4rem !important;
    }

    .pb-xl-auto {
        padding-bottom: auto !important;
    }

    .ps-xl-0 {
        padding-left: 0 !important;
    }

    .ps-xl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xl-3 {
        padding-left: 0.75rem !important;
    }

    .ps-xl-4 {
        padding-left: 1rem !important;
    }

    .ps-xl-5 {
        padding-left: 1.5rem !important;
    }

    .ps-xl-6 {
        padding-left: 2rem !important;
    }

    .ps-xl-7 {
        padding-left: 2.5rem !important;
    }

    .ps-xl-8 {
        padding-left: 3rem !important;
    }

    .ps-xl-9 {
        padding-left: 3.5rem !important;
    }

    .ps-xl-10 {
        padding-left: 4rem !important;
    }

    .ps-xl-auto {
        padding-left: auto !important;
    }

    .gap-xl-0 {
        gap: 0 !important;
    }

    .gap-xl-1 {
        gap: 0.25rem !important;
    }

    .gap-xl-2 {
        gap: 0.5rem !important;
    }

    .gap-xl-3 {
        gap: 1rem !important;
    }

    .gap-xl-4 {
        gap: 1.5rem !important;
    }

    .gap-xl-5 {
        gap: 3rem !important;
    }

    .row-gap-xl-0 {
        row-gap: 0 !important;
    }

    .row-gap-xl-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-xl-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-xl-3 {
        row-gap: 1rem !important;
    }

    .row-gap-xl-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-xl-5 {
        row-gap: 3rem !important;
    }

    .column-gap-xl-0 {
        column-gap: 0 !important;
    }

    .column-gap-xl-1 {
        column-gap: 0.25rem !important;
    }

    .column-gap-xl-2 {
        column-gap: 0.5rem !important;
    }

    .column-gap-xl-3 {
        column-gap: 1rem !important;
    }

    .column-gap-xl-4 {
        column-gap: 1.5rem !important;
    }

    .column-gap-xl-5 {
        column-gap: 3rem !important;
    }

    .fs-xl-1 {
        font-size: 2.75rem !important;
    }

    .fs-xl-2 {
        font-size: 2.5rem !important;
    }

    .fs-xl-3 {
        font-size: 2.25rem !important;
    }

    .fs-xl-4 {
        font-size: 2rem !important;
    }

    .fs-xl-5 {
        font-size: 1.75rem !important;
    }

    .fs-xl-6 {
        font-size: 1.5rem !important;
    }

    .fs-xl-7 {
        font-size: 1.25rem !important;
    }

    .fs-xl-8 {
        font-size: 1rem !important;
    }

    .fs-xl-9 {
        font-size: 0.95rem !important;
    }

    .fs-xl-10 {
        font-size: 0.9rem !important;
    }

    .fs-xl-11 {
        font-size: 0.85rem !important;
    }

    .fs-xl-12 {
        font-size: 0.8rem !important;
    }

    .fs-xl-13 {
        font-size: 0.75rem !important;
    }

    .fs-xl-14 {
        font-size: 0.7rem !important;
    }

    .fs-xl-15 {
        font-size: 0.65rem !important;
    }

    .fs-xl-16 {
        font-size: 0.6rem !important;
    }

    .fs-xl-17 {
        font-size: 0.55rem !important;
    }

    .fs-xl-18 {
        font-size: 0.5rem !important;
    }

    .fs-xl-19 {
        font-size: 0.45rem !important;
    }

    .fs-xl-20 {
        font-size: 0.4rem !important;
    }

    .text-xl-start {
        text-align: left !important;
    }

    .text-xl-end {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    .text-xl-primary {
        color: #0d6efd !important;
    }

    .text-xl-secondary {
        color: #6c757d !important;
    }

    .text-xl-success {
        color: #198754 !important;
    }

    .text-xl-info {
        color: #0dcaf0 !important;
    }

    .text-xl-warning {
        color: #ffc107 !important;
    }

    .text-xl-danger {
        color: #dc3545 !important;
    }

    .text-xl-light {
        color: #f8f9fa !important;
    }

    .text-xl-dark {
        color: #212529 !important;
    }

    .text-xl-white {
        color: #fff !important;
    }

    .text-xl-black {
        color: #3b4141 !important;
    }

    .text-xl-red {
        color: #d71921 !important;
    }

    .text-xl-red-50 {
        color: #c61f2c !important;
    }

    .text-xl-pink {
        color: #ffebeb !important;
    }

    .text-xl-pink-50 {
        color: #ffc9c9 !important;
    }

    .text-xl-light-pink {
        color: #fff8f8 !important;
    }

    .text-xl-gray {
        color: #454545 !important;
    }

    .text-xl-gray-50 {
        color: #939393 !important;
    }

    .text-xl-light-gray {
        color: #c8c8c8 !important;
    }

    .text-xl-light-gray-50 {
        color: #f3f4f5 !important;
    }

    .text-xl-green {
        color: #0c8858 !important;
    }

    .text-xl-green-50 {
        color: #d6ecd7 !important;
    }

    .text-xl-light-green {
        color: #42c504 !important;
    }

    .text-xl-dark-blue {
        color: #0e2f87 !important;
    }

    .text-xl-nice-blue {
        color: #0e68ba !important;
    }

    .text-xl-navy-blue {
        color: #1f296b !important;
    }

    .text-xl-blueberry {
        color: #343e96 !important;
    }

    .text-xl-light-blue {
        color: #eaf5ff !important;
    }

    .text-xl-transparent {
        color: rgba(0, 0, 0, 0) !important;
    }

    .bg-xl-primary {
        background-color: #0d6efd !important;
    }

    .bg-xl-secondary {
        background-color: #6c757d !important;
    }

    .bg-xl-success {
        background-color: #198754 !important;
    }

    .bg-xl-info {
        background-color: #0dcaf0 !important;
    }

    .bg-xl-warning {
        background-color: #ffc107 !important;
    }

    .bg-xl-danger {
        background-color: #dc3545 !important;
    }

    .bg-xl-light {
        background-color: #f8f9fa !important;
    }

    .bg-xl-dark {
        background-color: #212529 !important;
    }

    .bg-xl-white {
        background-color: #fff !important;
    }

    .bg-xl-black {
        background-color: #3b4141 !important;
    }

    .bg-xl-red {
        background-color: #d71921 !important;
    }

    .bg-xl-red-50 {
        background-color: #c61f2c !important;
    }

    .bg-xl-pink {
        background-color: #ffebeb !important;
    }

    .bg-xl-pink-50 {
        background-color: #ffc9c9 !important;
    }

    .bg-xl-light-pink {
        background-color: #fff8f8 !important;
    }

    .bg-xl-gray {
        background-color: #454545 !important;
    }

    .bg-xl-gray-50 {
        background-color: #939393 !important;
    }

    .bg-xl-light-gray {
        background-color: #c8c8c8 !important;
    }

    .bg-xl-light-gray-50 {
        background-color: #f3f4f5 !important;
    }

    .bg-xl-green {
        background-color: #0c8858 !important;
    }

    .bg-xl-green-50 {
        background-color: #d6ecd7 !important;
    }

    .bg-xl-light-green {
        background-color: #42c504 !important;
    }

    .bg-xl-dark-blue {
        background-color: #0e2f87 !important;
    }

    .bg-xl-nice-blue {
        background-color: #0e68ba !important;
    }

    .bg-xl-navy-blue {
        background-color: #1f296b !important;
    }

    .bg-xl-blueberry {
        background-color: #343e96 !important;
    }

    .bg-xl-light-blue {
        background-color: #eaf5ff !important;
    }

    .bg-xl-transparent {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .rounded-xl {
        border-radius: 0.375rem !important;
    }

    .rounded-xl-0 {
        border-radius: 0 !important;
    }

    .rounded-xl-1 {
        border-radius: 0.25rem !important;
    }

    .rounded-xl-2 {
        border-radius: 0.375rem !important;
    }

    .rounded-xl-3 {
        border-radius: 0.5rem !important;
    }

    .rounded-xl-4 {
        border-radius: 1rem !important;
    }

    .rounded-xl-5 {
        border-radius: 2rem !important;
    }

    .rounded-xl-circle {
        border-radius: 50% !important;
    }

    .rounded-xl-pill {
        border-radius: 50rem !important;
    }

    .rounded-top-xl {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-xl-0 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .rounded-top-xl-1 {
        border-top-left-radius: 0.25rem !important;
        border-top-right-radius: 0.25rem !important;
    }

    .rounded-top-xl-2 {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-xl-3 {
        border-top-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
    }

    .rounded-top-xl-4 {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .rounded-top-xl-5 {
        border-top-left-radius: 2rem !important;
        border-top-right-radius: 2rem !important;
    }

    .rounded-top-xl-circle {
        border-top-left-radius: 50% !important;
        border-top-right-radius: 50% !important;
    }

    .rounded-top-xl-pill {
        border-top-left-radius: 50rem !important;
        border-top-right-radius: 50rem !important;
    }

    .rounded-end-xl {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-xl-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-end-xl-1 {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .rounded-end-xl-2 {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-xl-3 {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .rounded-end-xl-4 {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .rounded-end-xl-5 {
        border-top-right-radius: 2rem !important;
        border-bottom-right-radius: 2rem !important;
    }

    .rounded-end-xl-circle {
        border-top-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important;
    }

    .rounded-end-xl-pill {
        border-top-right-radius: 50rem !important;
        border-bottom-right-radius: 50rem !important;
    }

    .rounded-bottom-xl {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-xl-0 {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .rounded-bottom-xl-1 {
        border-bottom-right-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .rounded-bottom-xl-2 {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-xl-3 {
        border-bottom-right-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
    }

    .rounded-bottom-xl-4 {
        border-bottom-right-radius: 1rem !important;
        border-bottom-left-radius: 1rem !important;
    }

    .rounded-bottom-xl-5 {
        border-bottom-right-radius: 2rem !important;
        border-bottom-left-radius: 2rem !important;
    }

    .rounded-bottom-xl-circle {
        border-bottom-right-radius: 50% !important;
        border-bottom-left-radius: 50% !important;
    }

    .rounded-bottom-xl-pill {
        border-bottom-right-radius: 50rem !important;
        border-bottom-left-radius: 50rem !important;
    }

    .rounded-start-xl {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-xl-0 {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    .rounded-start-xl-1 {
        border-bottom-left-radius: 0.25rem !important;
        border-top-left-radius: 0.25rem !important;
    }

    .rounded-start-xl-2 {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-xl-3 {
        border-bottom-left-radius: 0.5rem !important;
        border-top-left-radius: 0.5rem !important;
    }

    .rounded-start-xl-4 {
        border-bottom-left-radius: 1rem !important;
        border-top-left-radius: 1rem !important;
    }

    .rounded-start-xl-5 {
        border-bottom-left-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
    }

    .rounded-start-xl-circle {
        border-bottom-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
    }

    .rounded-start-xl-pill {
        border-bottom-left-radius: 50rem !important;
        border-top-left-radius: 50rem !important;
    }

    .text-indent-xl-0 {
        text-indent: 0 !important;
    }

    .text-indent-xl-1 {
        text-indent: 0.25rem !important;
    }

    .text-indent-xl-2 {
        text-indent: 0.5rem !important;
    }

    .text-indent-xl-3 {
        text-indent: 0.75rem !important;
    }

    .text-indent-xl-4 {
        text-indent: 1rem !important;
    }

    .text-indent-xl-5 {
        text-indent: 1.5rem !important;
    }

    .text-indent-xl-6 {
        text-indent: 2rem !important;
    }

    .text-indent-xl-7 {
        text-indent: 2.5rem !important;
    }

    .text-indent-xl-8 {
        text-indent: 3rem !important;
    }

    .text-indent-xl-9 {
        text-indent: 3.5rem !important;
    }

    .text-indent-xl-10 {
        text-indent: 4rem !important;
    }

    .text-indent-xl-auto {
        text-indent: auto !important;
    }

    .ratio-xl-1x1 {
        aspect-ratio: 100% !important;
    }

    .ratio-xl-4x3 {
        aspect-ratio: 75% !important;
    }

    .ratio-xl-16x9 {
        aspect-ratio: 56.25% !important;
    }

    .ratio-xl-21x9 {
        aspect-ratio: 42.8571428571% !important;
    }

    .ratio-xl-3x2 {
        aspect-ratio: 66.6666666667% !important;
    }

    .stroke-xl-primary {
        stroke: #0d6efd !important;
    }

    .stroke-xl-secondary {
        stroke: #6c757d !important;
    }

    .stroke-xl-success {
        stroke: #198754 !important;
    }

    .stroke-xl-info {
        stroke: #0dcaf0 !important;
    }

    .stroke-xl-warning {
        stroke: #ffc107 !important;
    }

    .stroke-xl-danger {
        stroke: #dc3545 !important;
    }

    .stroke-xl-light {
        stroke: #f8f9fa !important;
    }

    .stroke-xl-dark {
        stroke: #212529 !important;
    }

    .stroke-xl-white {
        stroke: #fff !important;
    }

    .stroke-xl-black {
        stroke: #3b4141 !important;
    }

    .stroke-xl-red {
        stroke: #d71921 !important;
    }

    .stroke-xl-red-50 {
        stroke: #c61f2c !important;
    }

    .stroke-xl-pink {
        stroke: #ffebeb !important;
    }

    .stroke-xl-pink-50 {
        stroke: #ffc9c9 !important;
    }

    .stroke-xl-light-pink {
        stroke: #fff8f8 !important;
    }

    .stroke-xl-gray {
        stroke: #454545 !important;
    }

    .stroke-xl-gray-50 {
        stroke: #939393 !important;
    }

    .stroke-xl-light-gray {
        stroke: #c8c8c8 !important;
    }

    .stroke-xl-light-gray-50 {
        stroke: #f3f4f5 !important;
    }

    .stroke-xl-green {
        stroke: #0c8858 !important;
    }

    .stroke-xl-green-50 {
        stroke: #d6ecd7 !important;
    }

    .stroke-xl-light-green {
        stroke: #42c504 !important;
    }

    .stroke-xl-dark-blue {
        stroke: #0e2f87 !important;
    }

    .stroke-xl-nice-blue {
        stroke: #0e68ba !important;
    }

    .stroke-xl-navy-blue {
        stroke: #1f296b !important;
    }

    .stroke-xl-blueberry {
        stroke: #343e96 !important;
    }

    .stroke-xl-light-blue {
        stroke: #eaf5ff !important;
    }

    .stroke-xl-transparent {
        stroke: rgba(0, 0, 0, 0) !important;
    }

    .fill-xl-primary {
        fill: #0d6efd !important;
    }

    .fill-xl-secondary {
        fill: #6c757d !important;
    }

    .fill-xl-success {
        fill: #198754 !important;
    }

    .fill-xl-info {
        fill: #0dcaf0 !important;
    }

    .fill-xl-warning {
        fill: #ffc107 !important;
    }

    .fill-xl-danger {
        fill: #dc3545 !important;
    }

    .fill-xl-light {
        fill: #f8f9fa !important;
    }

    .fill-xl-dark {
        fill: #212529 !important;
    }

    .fill-xl-white {
        fill: #fff !important;
    }

    .fill-xl-black {
        fill: #3b4141 !important;
    }

    .fill-xl-red {
        fill: #d71921 !important;
    }

    .fill-xl-red-50 {
        fill: #c61f2c !important;
    }

    .fill-xl-pink {
        fill: #ffebeb !important;
    }

    .fill-xl-pink-50 {
        fill: #ffc9c9 !important;
    }

    .fill-xl-light-pink {
        fill: #fff8f8 !important;
    }

    .fill-xl-gray {
        fill: #454545 !important;
    }

    .fill-xl-gray-50 {
        fill: #939393 !important;
    }

    .fill-xl-light-gray {
        fill: #c8c8c8 !important;
    }

    .fill-xl-light-gray-50 {
        fill: #f3f4f5 !important;
    }

    .fill-xl-green {
        fill: #0c8858 !important;
    }

    .fill-xl-green-50 {
        fill: #d6ecd7 !important;
    }

    .fill-xl-light-green {
        fill: #42c504 !important;
    }

    .fill-xl-dark-blue {
        fill: #0e2f87 !important;
    }

    .fill-xl-nice-blue {
        fill: #0e68ba !important;
    }

    .fill-xl-navy-blue {
        fill: #1f296b !important;
    }

    .fill-xl-blueberry {
        fill: #343e96 !important;
    }

    .fill-xl-light-blue {
        fill: #eaf5ff !important;
    }

    .fill-xl-transparent {
        fill: rgba(0, 0, 0, 0) !important;
    }

    .h-rem-xl-auto {
        height: auto !important;
    }

    .h-rem-xl-1 {
        height: 0.5rem !important;
    }

    .h-rem-xl-2 {
        height: 0.75rem !important;
    }

    .h-rem-xl-3 {
        height: 1rem !important;
    }

    .h-rem-xl-4 {
        height: 1.25rem !important;
    }

    .h-rem-xl-5 {
        height: 1.5rem !important;
    }

    .h-rem-xl-6 {
        height: 1.75rem !important;
    }

    .h-rem-xl-7 {
        height: 2rem !important;
    }

    .h-rem-xl-8 {
        height: 2.5rem !important;
    }

    .h-rem-xl-9 {
        height: 3rem !important;
    }

    .h-rem-xl-10 {
        height: 3.5rem !important;
    }

    .h-rem-xl-11 {
        height: 4rem !important;
    }

    .h-rem-xl-12 {
        height: 4.5rem !important;
    }

    .h-rem-xl-13 {
        height: 5rem !important;
    }

    .h-rem-xl-14 {
        height: 5.5rem !important;
    }

    .h-rem-xl-15 {
        height: 6rem !important;
    }

    .h-rem-xl-16 {
        height: 7rem !important;
    }

    .h-rem-xl-17 {
        height: 8rem !important;
    }

    .h-rem-xl-18 {
        height: 9rem !important;
    }

    .h-rem-xl-19 {
        height: 10rem !important;
    }

    .h-rem-xl-20 {
        height: 11rem !important;
    }

    .h-rem-xl-21 {
        height: 12rem !important;
    }

    .h-rem-xl-22 {
        height: 13rem !important;
    }

    .h-rem-xl-23 {
        height: 14rem !important;
    }

    .h-rem-xl-24 {
        height: 15rem !important;
    }

    .h-rem-xl-25 {
        height: 16rem !important;
    }

    .h-rem-xl-26 {
        height: 18rem !important;
    }

    .h-rem-xl-27 {
        height: 20rem !important;
    }

    .h-rem-xl-28 {
        height: 22rem !important;
    }

    .h-rem-xl-29 {
        height: 24rem !important;
    }

    .h-rem-xl-30 {
        height: 26rem !important;
    }

    .h-rem-xl-31 {
        height: 28rem !important;
    }

    .h-rem-xl-32 {
        height: 30rem !important;
    }

    .h-rem-xl-33 {
        height: 32rem !important;
    }

    .h-rem-xl-34 {
        height: 34rem !important;
    }

    .h-rem-xl-35 {
        height: 36rem !important;
    }

    .h-rem-xl-36 {
        height: 38rem !important;
    }

    .h-rem-xl-37 {
        height: 40rem !important;
    }

    .h-rem-xl-38 {
        height: 42rem !important;
    }

    .h-rem-xl-39 {
        height: 44rem !important;
    }

    .h-rem-xl-40 {
        height: 46rem !important;
    }

    .min-h-rem-xl-auto {
        min-height: auto !important;
    }

    .min-h-rem-xl-1 {
        min-height: 0.5rem !important;
    }

    .min-h-rem-xl-2 {
        min-height: 0.75rem !important;
    }

    .min-h-rem-xl-3 {
        min-height: 1rem !important;
    }

    .min-h-rem-xl-4 {
        min-height: 1.25rem !important;
    }

    .min-h-rem-xl-5 {
        min-height: 1.5rem !important;
    }

    .min-h-rem-xl-6 {
        min-height: 1.75rem !important;
    }

    .min-h-rem-xl-7 {
        min-height: 2rem !important;
    }

    .min-h-rem-xl-8 {
        min-height: 2.5rem !important;
    }

    .min-h-rem-xl-9 {
        min-height: 3rem !important;
    }

    .min-h-rem-xl-10 {
        min-height: 3.5rem !important;
    }

    .min-h-rem-xl-11 {
        min-height: 4rem !important;
    }

    .min-h-rem-xl-12 {
        min-height: 4.5rem !important;
    }

    .min-h-rem-xl-13 {
        min-height: 5rem !important;
    }

    .min-h-rem-xl-14 {
        min-height: 5.5rem !important;
    }

    .min-h-rem-xl-15 {
        min-height: 6rem !important;
    }

    .min-h-rem-xl-16 {
        min-height: 7rem !important;
    }

    .min-h-rem-xl-17 {
        min-height: 8rem !important;
    }

    .min-h-rem-xl-18 {
        min-height: 9rem !important;
    }

    .min-h-rem-xl-19 {
        min-height: 10rem !important;
    }

    .min-h-rem-xl-20 {
        min-height: 11rem !important;
    }

    .min-h-rem-xl-21 {
        min-height: 12rem !important;
    }

    .min-h-rem-xl-22 {
        min-height: 13rem !important;
    }

    .min-h-rem-xl-23 {
        min-height: 14rem !important;
    }

    .min-h-rem-xl-24 {
        min-height: 15rem !important;
    }

    .min-h-rem-xl-25 {
        min-height: 16rem !important;
    }

    .min-h-rem-xl-26 {
        min-height: 18rem !important;
    }

    .min-h-rem-xl-27 {
        min-height: 20rem !important;
    }

    .min-h-rem-xl-28 {
        min-height: 22rem !important;
    }

    .min-h-rem-xl-29 {
        min-height: 24rem !important;
    }

    .min-h-rem-xl-30 {
        min-height: 26rem !important;
    }

    .min-h-rem-xl-31 {
        min-height: 28rem !important;
    }

    .min-h-rem-xl-32 {
        min-height: 30rem !important;
    }

    .min-h-rem-xl-33 {
        min-height: 32rem !important;
    }

    .min-h-rem-xl-34 {
        min-height: 34rem !important;
    }

    .min-h-rem-xl-35 {
        min-height: 36rem !important;
    }

    .min-h-rem-xl-36 {
        min-height: 38rem !important;
    }

    .min-h-rem-xl-37 {
        min-height: 40rem !important;
    }

    .min-h-rem-xl-38 {
        min-height: 42rem !important;
    }

    .min-h-rem-xl-39 {
        min-height: 44rem !important;
    }

    .min-h-rem-xl-40 {
        min-height: 46rem !important;
    }

    .mh-rem-xl-auto {
        max-height: auto !important;
    }

    .mh-rem-xl-1 {
        max-height: 0.5rem !important;
    }

    .mh-rem-xl-2 {
        max-height: 0.75rem !important;
    }

    .mh-rem-xl-3 {
        max-height: 1rem !important;
    }

    .mh-rem-xl-4 {
        max-height: 1.25rem !important;
    }

    .mh-rem-xl-5 {
        max-height: 1.5rem !important;
    }

    .mh-rem-xl-6 {
        max-height: 1.75rem !important;
    }

    .mh-rem-xl-7 {
        max-height: 2rem !important;
    }

    .mh-rem-xl-8 {
        max-height: 2.5rem !important;
    }

    .mh-rem-xl-9 {
        max-height: 3rem !important;
    }

    .mh-rem-xl-10 {
        max-height: 3.5rem !important;
    }

    .mh-rem-xl-11 {
        max-height: 4rem !important;
    }

    .mh-rem-xl-12 {
        max-height: 4.5rem !important;
    }

    .mh-rem-xl-13 {
        max-height: 5rem !important;
    }

    .mh-rem-xl-14 {
        max-height: 5.5rem !important;
    }

    .mh-rem-xl-15 {
        max-height: 6rem !important;
    }

    .mh-rem-xl-16 {
        max-height: 7rem !important;
    }

    .mh-rem-xl-17 {
        max-height: 8rem !important;
    }

    .mh-rem-xl-18 {
        max-height: 9rem !important;
    }

    .mh-rem-xl-19 {
        max-height: 10rem !important;
    }

    .mh-rem-xl-20 {
        max-height: 11rem !important;
    }

    .mh-rem-xl-21 {
        max-height: 12rem !important;
    }

    .mh-rem-xl-22 {
        max-height: 13rem !important;
    }

    .mh-rem-xl-23 {
        max-height: 14rem !important;
    }

    .mh-rem-xl-24 {
        max-height: 15rem !important;
    }

    .mh-rem-xl-25 {
        max-height: 16rem !important;
    }

    .mh-rem-xl-26 {
        max-height: 18rem !important;
    }

    .mh-rem-xl-27 {
        max-height: 20rem !important;
    }

    .mh-rem-xl-28 {
        max-height: 22rem !important;
    }

    .mh-rem-xl-29 {
        max-height: 24rem !important;
    }

    .mh-rem-xl-30 {
        max-height: 26rem !important;
    }

    .mh-rem-xl-31 {
        max-height: 28rem !important;
    }

    .mh-rem-xl-32 {
        max-height: 30rem !important;
    }

    .mh-rem-xl-33 {
        max-height: 32rem !important;
    }

    .mh-rem-xl-34 {
        max-height: 34rem !important;
    }

    .mh-rem-xl-35 {
        max-height: 36rem !important;
    }

    .mh-rem-xl-36 {
        max-height: 38rem !important;
    }

    .mh-rem-xl-37 {
        max-height: 40rem !important;
    }

    .mh-rem-xl-38 {
        max-height: 42rem !important;
    }

    .mh-rem-xl-39 {
        max-height: 44rem !important;
    }

    .mh-rem-xl-40 {
        max-height: 46rem !important;
    }

    .w-rem-xl-auto {
        width: auto !important;
    }

    .w-rem-xl-1 {
        width: 0.5rem !important;
    }

    .w-rem-xl-2 {
        width: 0.75rem !important;
    }

    .w-rem-xl-3 {
        width: 1rem !important;
    }

    .w-rem-xl-4 {
        width: 1.25rem !important;
    }

    .w-rem-xl-5 {
        width: 1.5rem !important;
    }

    .w-rem-xl-6 {
        width: 1.75rem !important;
    }

    .w-rem-xl-7 {
        width: 2rem !important;
    }

    .w-rem-xl-8 {
        width: 2.5rem !important;
    }

    .w-rem-xl-9 {
        width: 3rem !important;
    }

    .w-rem-xl-10 {
        width: 3.5rem !important;
    }

    .w-rem-xl-11 {
        width: 4rem !important;
    }

    .w-rem-xl-12 {
        width: 4.5rem !important;
    }

    .w-rem-xl-13 {
        width: 5rem !important;
    }

    .w-rem-xl-14 {
        width: 5.5rem !important;
    }

    .w-rem-xl-15 {
        width: 6rem !important;
    }

    .w-rem-xl-16 {
        width: 7rem !important;
    }

    .w-rem-xl-17 {
        width: 8rem !important;
    }

    .w-rem-xl-18 {
        width: 9rem !important;
    }

    .w-rem-xl-19 {
        width: 10rem !important;
    }

    .w-rem-xl-20 {
        width: 11rem !important;
    }

    .w-rem-xl-21 {
        width: 12rem !important;
    }

    .w-rem-xl-22 {
        width: 13rem !important;
    }

    .w-rem-xl-23 {
        width: 14rem !important;
    }

    .w-rem-xl-24 {
        width: 15rem !important;
    }

    .w-rem-xl-25 {
        width: 16rem !important;
    }

    .w-rem-xl-26 {
        width: 18rem !important;
    }

    .w-rem-xl-27 {
        width: 20rem !important;
    }

    .w-rem-xl-28 {
        width: 22rem !important;
    }

    .w-rem-xl-29 {
        width: 24rem !important;
    }

    .w-rem-xl-30 {
        width: 26rem !important;
    }

    .w-rem-xl-31 {
        width: 28rem !important;
    }

    .w-rem-xl-32 {
        width: 30rem !important;
    }

    .w-rem-xl-33 {
        width: 32rem !important;
    }

    .w-rem-xl-34 {
        width: 34rem !important;
    }

    .w-rem-xl-35 {
        width: 36rem !important;
    }

    .w-rem-xl-36 {
        width: 38rem !important;
    }

    .w-rem-xl-37 {
        width: 40rem !important;
    }

    .w-rem-xl-38 {
        width: 42rem !important;
    }

    .w-rem-xl-39 {
        width: 44rem !important;
    }

    .w-rem-xl-40 {
        width: 46rem !important;
    }

    .min-w-rem-xl-auto {
        min-width: auto !important;
    }

    .min-w-rem-xl-1 {
        min-width: 0.5rem !important;
    }

    .min-w-rem-xl-2 {
        min-width: 0.75rem !important;
    }

    .min-w-rem-xl-3 {
        min-width: 1rem !important;
    }

    .min-w-rem-xl-4 {
        min-width: 1.25rem !important;
    }

    .min-w-rem-xl-5 {
        min-width: 1.5rem !important;
    }

    .min-w-rem-xl-6 {
        min-width: 1.75rem !important;
    }

    .min-w-rem-xl-7 {
        min-width: 2rem !important;
    }

    .min-w-rem-xl-8 {
        min-width: 2.5rem !important;
    }

    .min-w-rem-xl-9 {
        min-width: 3rem !important;
    }

    .min-w-rem-xl-10 {
        min-width: 3.5rem !important;
    }

    .min-w-rem-xl-11 {
        min-width: 4rem !important;
    }

    .min-w-rem-xl-12 {
        min-width: 4.5rem !important;
    }

    .min-w-rem-xl-13 {
        min-width: 5rem !important;
    }

    .min-w-rem-xl-14 {
        min-width: 5.5rem !important;
    }

    .min-w-rem-xl-15 {
        min-width: 6rem !important;
    }

    .min-w-rem-xl-16 {
        min-width: 7rem !important;
    }

    .min-w-rem-xl-17 {
        min-width: 8rem !important;
    }

    .min-w-rem-xl-18 {
        min-width: 9rem !important;
    }

    .min-w-rem-xl-19 {
        min-width: 10rem !important;
    }

    .min-w-rem-xl-20 {
        min-width: 11rem !important;
    }

    .min-w-rem-xl-21 {
        min-width: 12rem !important;
    }

    .min-w-rem-xl-22 {
        min-width: 13rem !important;
    }

    .min-w-rem-xl-23 {
        min-width: 14rem !important;
    }

    .min-w-rem-xl-24 {
        min-width: 15rem !important;
    }

    .min-w-rem-xl-25 {
        min-width: 16rem !important;
    }

    .min-w-rem-xl-26 {
        min-width: 18rem !important;
    }

    .min-w-rem-xl-27 {
        min-width: 20rem !important;
    }

    .min-w-rem-xl-28 {
        min-width: 22rem !important;
    }

    .min-w-rem-xl-29 {
        min-width: 24rem !important;
    }

    .min-w-rem-xl-30 {
        min-width: 26rem !important;
    }

    .min-w-rem-xl-31 {
        min-width: 28rem !important;
    }

    .min-w-rem-xl-32 {
        min-width: 30rem !important;
    }

    .min-w-rem-xl-33 {
        min-width: 32rem !important;
    }

    .min-w-rem-xl-34 {
        min-width: 34rem !important;
    }

    .min-w-rem-xl-35 {
        min-width: 36rem !important;
    }

    .min-w-rem-xl-36 {
        min-width: 38rem !important;
    }

    .min-w-rem-xl-37 {
        min-width: 40rem !important;
    }

    .min-w-rem-xl-38 {
        min-width: 42rem !important;
    }

    .min-w-rem-xl-39 {
        min-width: 44rem !important;
    }

    .min-w-rem-xl-40 {
        min-width: 46rem !important;
    }

    .mw-rem-xl-auto {
        max-width: auto !important;
    }

    .mw-rem-xl-1 {
        max-width: 0.5rem !important;
    }

    .mw-rem-xl-2 {
        max-width: 0.75rem !important;
    }

    .mw-rem-xl-3 {
        max-width: 1rem !important;
    }

    .mw-rem-xl-4 {
        max-width: 1.25rem !important;
    }

    .mw-rem-xl-5 {
        max-width: 1.5rem !important;
    }

    .mw-rem-xl-6 {
        max-width: 1.75rem !important;
    }

    .mw-rem-xl-7 {
        max-width: 2rem !important;
    }

    .mw-rem-xl-8 {
        max-width: 2.5rem !important;
    }

    .mw-rem-xl-9 {
        max-width: 3rem !important;
    }

    .mw-rem-xl-10 {
        max-width: 3.5rem !important;
    }

    .mw-rem-xl-11 {
        max-width: 4rem !important;
    }

    .mw-rem-xl-12 {
        max-width: 4.5rem !important;
    }

    .mw-rem-xl-13 {
        max-width: 5rem !important;
    }

    .mw-rem-xl-14 {
        max-width: 5.5rem !important;
    }

    .mw-rem-xl-15 {
        max-width: 6rem !important;
    }

    .mw-rem-xl-16 {
        max-width: 7rem !important;
    }

    .mw-rem-xl-17 {
        max-width: 8rem !important;
    }

    .mw-rem-xl-18 {
        max-width: 9rem !important;
    }

    .mw-rem-xl-19 {
        max-width: 10rem !important;
    }

    .mw-rem-xl-20 {
        max-width: 11rem !important;
    }

    .mw-rem-xl-21 {
        max-width: 12rem !important;
    }

    .mw-rem-xl-22 {
        max-width: 13rem !important;
    }

    .mw-rem-xl-23 {
        max-width: 14rem !important;
    }

    .mw-rem-xl-24 {
        max-width: 15rem !important;
    }

    .mw-rem-xl-25 {
        max-width: 16rem !important;
    }

    .mw-rem-xl-26 {
        max-width: 18rem !important;
    }

    .mw-rem-xl-27 {
        max-width: 20rem !important;
    }

    .mw-rem-xl-28 {
        max-width: 22rem !important;
    }

    .mw-rem-xl-29 {
        max-width: 24rem !important;
    }

    .mw-rem-xl-30 {
        max-width: 26rem !important;
    }

    .mw-rem-xl-31 {
        max-width: 28rem !important;
    }

    .mw-rem-xl-32 {
        max-width: 30rem !important;
    }

    .mw-rem-xl-33 {
        max-width: 32rem !important;
    }

    .mw-rem-xl-34 {
        max-width: 34rem !important;
    }

    .mw-rem-xl-35 {
        max-width: 36rem !important;
    }

    .mw-rem-xl-36 {
        max-width: 38rem !important;
    }

    .mw-rem-xl-37 {
        max-width: 40rem !important;
    }

    .mw-rem-xl-38 {
        max-width: 42rem !important;
    }

    .mw-rem-xl-39 {
        max-width: 44rem !important;
    }

    .mw-rem-xl-40 {
        max-width: 46rem !important;
    }

    .svgs-xl-1 {
        width: 16px !important;
        height: 16px !important;
    }

    .svgs-xl-2 {
        width: 20px !important;
        height: 20px !important;
    }

    .svgs-xl-3 {
        width: 24px !important;
        height: 24px !important;
    }

    .svgs-xl-4 {
        width: 28px !important;
        height: 28px !important;
    }

    .svgs-xl-5 {
        width: 32px !important;
        height: 32px !important;
    }

    .svgs-xl-6 {
        width: 40px !important;
        height: 40px !important;
    }

    .svgs-xl-7 {
        width: 48px !important;
        height: 48px !important;
    }

    .svgs-xl-8 {
        width: 56px !important;
        height: 56px !important;
    }

    .svgs-xl-9 {
        width: 64px !important;
        height: 64px !important;
    }

    .svgs-xl-10 {
        width: 72px !important;
        height: 72px !important;
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float: left !important;
    }

    .float-xxl-end {
        float: right !important;
    }

    .float-xxl-none {
        float: none !important;
    }

    .object-fit-xxl-contain {
        object-fit: contain !important;
    }

    .object-fit-xxl-cover {
        object-fit: cover !important;
    }

    .object-fit-xxl-fill {
        object-fit: fill !important;
    }

    .object-fit-xxl-scale {
        object-fit: scale-down !important;
    }

    .object-fit-xxl-none {
        object-fit: none !important;
    }

    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-inline-grid {
        display: inline-grid !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: inline-flex !important;
    }

    .d-xxl-none {
        display: none !important;
    }

    .position-xxl-static {
        position: static !important;
    }

    .position-xxl-relative {
        position: relative !important;
    }

    .position-xxl-absolute {
        position: absolute !important;
    }

    .position-xxl-fixed {
        position: fixed !important;
    }

    .position-xxl-sticky {
        position: sticky !important;
    }

    .border-xxl {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-xxl-0 {
        border: 0 !important;
    }

    .border-top-xxl {
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-top-xxl-0 {
        border-top: 0 !important;
    }

    .border-end-xxl {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-end-xxl-0 {
        border-right: 0 !important;
    }

    .border-bottom-xxl {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-bottom-xxl-0 {
        border-bottom: 0 !important;
    }

    .border-start-xxl {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-start-xxl-0 {
        border-left: 0 !important;
    }

    .border-xxl-primary {
        border-color: #0d6efd !important;
    }

    .border-xxl-secondary {
        border-color: #6c757d !important;
    }

    .border-xxl-success {
        border-color: #198754 !important;
    }

    .border-xxl-info {
        border-color: #0dcaf0 !important;
    }

    .border-xxl-warning {
        border-color: #ffc107 !important;
    }

    .border-xxl-danger {
        border-color: #dc3545 !important;
    }

    .border-xxl-light {
        border-color: #f8f9fa !important;
    }

    .border-xxl-dark {
        border-color: #212529 !important;
    }

    .border-xxl-white {
        border-color: #fff !important;
    }

    .border-xxl-black {
        border-color: #3b4141 !important;
    }

    .border-xxl-red {
        border-color: #d71921 !important;
    }

    .border-xxl-red-50 {
        border-color: #c61f2c !important;
    }

    .border-xxl-pink {
        border-color: #ffebeb !important;
    }

    .border-xxl-pink-50 {
        border-color: #ffc9c9 !important;
    }

    .border-xxl-light-pink {
        border-color: #fff8f8 !important;
    }

    .border-xxl-gray {
        border-color: #454545 !important;
    }

    .border-xxl-gray-50 {
        border-color: #939393 !important;
    }

    .border-xxl-light-gray {
        border-color: #c8c8c8 !important;
    }

    .border-xxl-light-gray-50 {
        border-color: #f3f4f5 !important;
    }

    .border-xxl-green {
        border-color: #0c8858 !important;
    }

    .border-xxl-green-50 {
        border-color: #d6ecd7 !important;
    }

    .border-xxl-light-green {
        border-color: #42c504 !important;
    }

    .border-xxl-dark-blue {
        border-color: #0e2f87 !important;
    }

    .border-xxl-nice-blue {
        border-color: #0e68ba !important;
    }

    .border-xxl-navy-blue {
        border-color: #1f296b !important;
    }

    .border-xxl-blueberry {
        border-color: #343e96 !important;
    }

    .border-xxl-light-blue {
        border-color: #eaf5ff !important;
    }

    .border-xxl-transparent {
        border-color: rgba(0, 0, 0, 0) !important;
    }

    .w-xxl-auto {
        width: auto !important;
    }

    .w-xxl-5 {
        width: 5% !important;
    }

    .w-xxl-10 {
        width: 10% !important;
    }

    .w-xxl-15 {
        width: 15% !important;
    }

    .w-xxl-20 {
        width: 20% !important;
    }

    .w-xxl-25 {
        width: 25% !important;
    }

    .w-xxl-30 {
        width: 30% !important;
    }

    .w-xxl-35 {
        width: 35% !important;
    }

    .w-xxl-40 {
        width: 40% !important;
    }

    .w-xxl-45 {
        width: 45% !important;
    }

    .w-xxl-50 {
        width: 50% !important;
    }

    .w-xxl-55 {
        width: 55% !important;
    }

    .w-xxl-60 {
        width: 60% !important;
    }

    .w-xxl-65 {
        width: 65% !important;
    }

    .w-xxl-70 {
        width: 70% !important;
    }

    .w-xxl-75 {
        width: 75% !important;
    }

    .w-xxl-80 {
        width: 80% !important;
    }

    .w-xxl-85 {
        width: 85% !important;
    }

    .w-xxl-90 {
        width: 90% !important;
    }

    .w-xxl-95 {
        width: 95% !important;
    }

    .w-xxl-100 {
        width: 100% !important;
    }

    .mw-xxl-auto {
        max-width: auto !important;
    }

    .mw-xxl-5 {
        max-width: 5% !important;
    }

    .mw-xxl-10 {
        max-width: 10% !important;
    }

    .mw-xxl-15 {
        max-width: 15% !important;
    }

    .mw-xxl-20 {
        max-width: 20% !important;
    }

    .mw-xxl-25 {
        max-width: 25% !important;
    }

    .mw-xxl-30 {
        max-width: 30% !important;
    }

    .mw-xxl-35 {
        max-width: 35% !important;
    }

    .mw-xxl-40 {
        max-width: 40% !important;
    }

    .mw-xxl-45 {
        max-width: 45% !important;
    }

    .mw-xxl-50 {
        max-width: 50% !important;
    }

    .mw-xxl-55 {
        max-width: 55% !important;
    }

    .mw-xxl-60 {
        max-width: 60% !important;
    }

    .mw-xxl-65 {
        max-width: 65% !important;
    }

    .mw-xxl-70 {
        max-width: 70% !important;
    }

    .mw-xxl-75 {
        max-width: 75% !important;
    }

    .mw-xxl-80 {
        max-width: 80% !important;
    }

    .mw-xxl-85 {
        max-width: 85% !important;
    }

    .mw-xxl-90 {
        max-width: 90% !important;
    }

    .mw-xxl-95 {
        max-width: 95% !important;
    }

    .mw-xxl-100 {
        max-width: 100% !important;
    }

    .vw-xxl-auto {
        width: auto !important;
    }

    .vw-xxl-5 {
        width: 5vw !important;
    }

    .vw-xxl-10 {
        width: 10vw !important;
    }

    .vw-xxl-15 {
        width: 15vw !important;
    }

    .vw-xxl-20 {
        width: 20vw !important;
    }

    .vw-xxl-25 {
        width: 25vw !important;
    }

    .vw-xxl-30 {
        width: 30vw !important;
    }

    .vw-xxl-35 {
        width: 35vw !important;
    }

    .vw-xxl-40 {
        width: 40vw !important;
    }

    .vw-xxl-45 {
        width: 45vw !important;
    }

    .vw-xxl-50 {
        width: 50vw !important;
    }

    .vw-xxl-55 {
        width: 55vw !important;
    }

    .vw-xxl-60 {
        width: 60vw !important;
    }

    .vw-xxl-65 {
        width: 65vw !important;
    }

    .vw-xxl-70 {
        width: 70vw !important;
    }

    .vw-xxl-75 {
        width: 75vw !important;
    }

    .vw-xxl-80 {
        width: 80vw !important;
    }

    .vw-xxl-85 {
        width: 85vw !important;
    }

    .vw-xxl-90 {
        width: 90vw !important;
    }

    .vw-xxl-95 {
        width: 95vw !important;
    }

    .vw-xxl-100 {
        width: 100vw !important;
    }

    .min-vw-xxl-auto {
        min-width: auto !important;
    }

    .min-vw-xxl-5 {
        min-width: 5vw !important;
    }

    .min-vw-xxl-10 {
        min-width: 10vw !important;
    }

    .min-vw-xxl-15 {
        min-width: 15vw !important;
    }

    .min-vw-xxl-20 {
        min-width: 20vw !important;
    }

    .min-vw-xxl-25 {
        min-width: 25vw !important;
    }

    .min-vw-xxl-30 {
        min-width: 30vw !important;
    }

    .min-vw-xxl-35 {
        min-width: 35vw !important;
    }

    .min-vw-xxl-40 {
        min-width: 40vw !important;
    }

    .min-vw-xxl-45 {
        min-width: 45vw !important;
    }

    .min-vw-xxl-50 {
        min-width: 50vw !important;
    }

    .min-vw-xxl-55 {
        min-width: 55vw !important;
    }

    .min-vw-xxl-60 {
        min-width: 60vw !important;
    }

    .min-vw-xxl-65 {
        min-width: 65vw !important;
    }

    .min-vw-xxl-70 {
        min-width: 70vw !important;
    }

    .min-vw-xxl-75 {
        min-width: 75vw !important;
    }

    .min-vw-xxl-80 {
        min-width: 80vw !important;
    }

    .min-vw-xxl-85 {
        min-width: 85vw !important;
    }

    .min-vw-xxl-90 {
        min-width: 90vw !important;
    }

    .min-vw-xxl-95 {
        min-width: 95vw !important;
    }

    .min-vw-xxl-100 {
        min-width: 100vw !important;
    }

    .h-xxl-auto {
        height: auto !important;
    }

    .h-xxl-5 {
        height: 5% !important;
    }

    .h-xxl-10 {
        height: 10% !important;
    }

    .h-xxl-15 {
        height: 15% !important;
    }

    .h-xxl-20 {
        height: 20% !important;
    }

    .h-xxl-25 {
        height: 25% !important;
    }

    .h-xxl-30 {
        height: 30% !important;
    }

    .h-xxl-35 {
        height: 35% !important;
    }

    .h-xxl-40 {
        height: 40% !important;
    }

    .h-xxl-45 {
        height: 45% !important;
    }

    .h-xxl-50 {
        height: 50% !important;
    }

    .h-xxl-55 {
        height: 55% !important;
    }

    .h-xxl-60 {
        height: 60% !important;
    }

    .h-xxl-65 {
        height: 65% !important;
    }

    .h-xxl-70 {
        height: 70% !important;
    }

    .h-xxl-75 {
        height: 75% !important;
    }

    .h-xxl-80 {
        height: 80% !important;
    }

    .h-xxl-85 {
        height: 85% !important;
    }

    .h-xxl-90 {
        height: 90% !important;
    }

    .h-xxl-95 {
        height: 95% !important;
    }

    .h-xxl-100 {
        height: 100% !important;
    }

    .mh-xxl-auto {
        max-height: auto !important;
    }

    .mh-xxl-5 {
        max-height: 5% !important;
    }

    .mh-xxl-10 {
        max-height: 10% !important;
    }

    .mh-xxl-15 {
        max-height: 15% !important;
    }

    .mh-xxl-20 {
        max-height: 20% !important;
    }

    .mh-xxl-25 {
        max-height: 25% !important;
    }

    .mh-xxl-30 {
        max-height: 30% !important;
    }

    .mh-xxl-35 {
        max-height: 35% !important;
    }

    .mh-xxl-40 {
        max-height: 40% !important;
    }

    .mh-xxl-45 {
        max-height: 45% !important;
    }

    .mh-xxl-50 {
        max-height: 50% !important;
    }

    .mh-xxl-55 {
        max-height: 55% !important;
    }

    .mh-xxl-60 {
        max-height: 60% !important;
    }

    .mh-xxl-65 {
        max-height: 65% !important;
    }

    .mh-xxl-70 {
        max-height: 70% !important;
    }

    .mh-xxl-75 {
        max-height: 75% !important;
    }

    .mh-xxl-80 {
        max-height: 80% !important;
    }

    .mh-xxl-85 {
        max-height: 85% !important;
    }

    .mh-xxl-90 {
        max-height: 90% !important;
    }

    .mh-xxl-95 {
        max-height: 95% !important;
    }

    .mh-xxl-100 {
        max-height: 100% !important;
    }

    .vh-xxl-auto {
        height: auto !important;
    }

    .vh-xxl-5 {
        height: 5vh !important;
    }

    .vh-xxl-10 {
        height: 10vh !important;
    }

    .vh-xxl-15 {
        height: 15vh !important;
    }

    .vh-xxl-20 {
        height: 20vh !important;
    }

    .vh-xxl-25 {
        height: 25vh !important;
    }

    .vh-xxl-30 {
        height: 30vh !important;
    }

    .vh-xxl-35 {
        height: 35vh !important;
    }

    .vh-xxl-40 {
        height: 40vh !important;
    }

    .vh-xxl-45 {
        height: 45vh !important;
    }

    .vh-xxl-50 {
        height: 50vh !important;
    }

    .vh-xxl-55 {
        height: 55vh !important;
    }

    .vh-xxl-60 {
        height: 60vh !important;
    }

    .vh-xxl-65 {
        height: 65vh !important;
    }

    .vh-xxl-70 {
        height: 70vh !important;
    }

    .vh-xxl-75 {
        height: 75vh !important;
    }

    .vh-xxl-80 {
        height: 80vh !important;
    }

    .vh-xxl-85 {
        height: 85vh !important;
    }

    .vh-xxl-90 {
        height: 90vh !important;
    }

    .vh-xxl-95 {
        height: 95vh !important;
    }

    .vh-xxl-100 {
        height: 100vh !important;
    }

    .min-vh-xxl-auto {
        min-height: auto !important;
    }

    .min-vh-xxl-5 {
        min-height: 5vh !important;
    }

    .min-vh-xxl-10 {
        min-height: 10vh !important;
    }

    .min-vh-xxl-15 {
        min-height: 15vh !important;
    }

    .min-vh-xxl-20 {
        min-height: 20vh !important;
    }

    .min-vh-xxl-25 {
        min-height: 25vh !important;
    }

    .min-vh-xxl-30 {
        min-height: 30vh !important;
    }

    .min-vh-xxl-35 {
        min-height: 35vh !important;
    }

    .min-vh-xxl-40 {
        min-height: 40vh !important;
    }

    .min-vh-xxl-45 {
        min-height: 45vh !important;
    }

    .min-vh-xxl-50 {
        min-height: 50vh !important;
    }

    .min-vh-xxl-55 {
        min-height: 55vh !important;
    }

    .min-vh-xxl-60 {
        min-height: 60vh !important;
    }

    .min-vh-xxl-65 {
        min-height: 65vh !important;
    }

    .min-vh-xxl-70 {
        min-height: 70vh !important;
    }

    .min-vh-xxl-75 {
        min-height: 75vh !important;
    }

    .min-vh-xxl-80 {
        min-height: 80vh !important;
    }

    .min-vh-xxl-85 {
        min-height: 85vh !important;
    }

    .min-vh-xxl-90 {
        min-height: 90vh !important;
    }

    .min-vh-xxl-95 {
        min-height: 95vh !important;
    }

    .min-vh-xxl-100 {
        min-height: 100vh !important;
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xxl-row {
        flex-direction: row !important;
    }

    .flex-xxl-column {
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        justify-content: space-around !important;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-content-xxl-between {
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        align-self: auto !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        align-self: stretch !important;
    }

    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxl-3 {
        margin: 0.75rem !important;
    }

    .m-xxl-4 {
        margin: 1rem !important;
    }

    .m-xxl-5 {
        margin: 1.5rem !important;
    }

    .m-xxl-6 {
        margin: 2rem !important;
    }

    .m-xxl-7 {
        margin: 2.5rem !important;
    }

    .m-xxl-8 {
        margin: 3rem !important;
    }

    .m-xxl-9 {
        margin: 3.5rem !important;
    }

    .m-xxl-10 {
        margin: 4rem !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxl-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-xxl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxl-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxl-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-xxl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-xxl-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxl-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-xxl-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxl-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-xxl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxl-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxl-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-xxl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-xxl-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxl-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-xxl-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxl-3 {
        margin-top: 0.75rem !important;
    }

    .mt-xxl-4 {
        margin-top: 1rem !important;
    }

    .mt-xxl-5 {
        margin-top: 1.5rem !important;
    }

    .mt-xxl-6 {
        margin-top: 2rem !important;
    }

    .mt-xxl-7 {
        margin-top: 2.5rem !important;
    }

    .mt-xxl-8 {
        margin-top: 3rem !important;
    }

    .mt-xxl-9 {
        margin-top: 3.5rem !important;
    }

    .mt-xxl-10 {
        margin-top: 4rem !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxl-3 {
        margin-right: 0.75rem !important;
    }

    .me-xxl-4 {
        margin-right: 1rem !important;
    }

    .me-xxl-5 {
        margin-right: 1.5rem !important;
    }

    .me-xxl-6 {
        margin-right: 2rem !important;
    }

    .me-xxl-7 {
        margin-right: 2.5rem !important;
    }

    .me-xxl-8 {
        margin-right: 3rem !important;
    }

    .me-xxl-9 {
        margin-right: 3.5rem !important;
    }

    .me-xxl-10 {
        margin-right: 4rem !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 1rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxl-6 {
        margin-bottom: 2rem !important;
    }

    .mb-xxl-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-xxl-8 {
        margin-bottom: 3rem !important;
    }

    .mb-xxl-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-xxl-10 {
        margin-bottom: 4rem !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxl-3 {
        margin-left: 0.75rem !important;
    }

    .ms-xxl-4 {
        margin-left: 1rem !important;
    }

    .ms-xxl-5 {
        margin-left: 1.5rem !important;
    }

    .ms-xxl-6 {
        margin-left: 2rem !important;
    }

    .ms-xxl-7 {
        margin-left: 2.5rem !important;
    }

    .ms-xxl-8 {
        margin-left: 3rem !important;
    }

    .ms-xxl-9 {
        margin-left: 3.5rem !important;
    }

    .ms-xxl-10 {
        margin-left: 4rem !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxl-3 {
        margin: 0.75rem !important;
    }

    .m-xxl-4 {
        margin: 1rem !important;
    }

    .m-xxl-5 {
        margin: 1.5rem !important;
    }

    .m-xxl-6 {
        margin: 2rem !important;
    }

    .m-xxl-7 {
        margin: 2.5rem !important;
    }

    .m-xxl-8 {
        margin: 3rem !important;
    }

    .m-xxl-9 {
        margin: 3.5rem !important;
    }

    .m-xxl-10 {
        margin: 4rem !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxl-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-xxl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxl-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxl-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-xxl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-xxl-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxl-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-xxl-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxl-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-xxl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxl-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxl-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-xxl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-xxl-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxl-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-xxl-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxl-3 {
        margin-top: 0.75rem !important;
    }

    .mt-xxl-4 {
        margin-top: 1rem !important;
    }

    .mt-xxl-5 {
        margin-top: 1.5rem !important;
    }

    .mt-xxl-6 {
        margin-top: 2rem !important;
    }

    .mt-xxl-7 {
        margin-top: 2.5rem !important;
    }

    .mt-xxl-8 {
        margin-top: 3rem !important;
    }

    .mt-xxl-9 {
        margin-top: 3.5rem !important;
    }

    .mt-xxl-10 {
        margin-top: 4rem !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxl-3 {
        margin-right: 0.75rem !important;
    }

    .me-xxl-4 {
        margin-right: 1rem !important;
    }

    .me-xxl-5 {
        margin-right: 1.5rem !important;
    }

    .me-xxl-6 {
        margin-right: 2rem !important;
    }

    .me-xxl-7 {
        margin-right: 2.5rem !important;
    }

    .me-xxl-8 {
        margin-right: 3rem !important;
    }

    .me-xxl-9 {
        margin-right: 3.5rem !important;
    }

    .me-xxl-10 {
        margin-right: 4rem !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 1rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxl-6 {
        margin-bottom: 2rem !important;
    }

    .mb-xxl-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-xxl-8 {
        margin-bottom: 3rem !important;
    }

    .mb-xxl-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-xxl-10 {
        margin-bottom: 4rem !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxl-3 {
        margin-left: 0.75rem !important;
    }

    .ms-xxl-4 {
        margin-left: 1rem !important;
    }

    .ms-xxl-5 {
        margin-left: 1.5rem !important;
    }

    .ms-xxl-6 {
        margin-left: 2rem !important;
    }

    .ms-xxl-7 {
        margin-left: 2.5rem !important;
    }

    .ms-xxl-8 {
        margin-left: 3rem !important;
    }

    .ms-xxl-9 {
        margin-left: 3.5rem !important;
    }

    .ms-xxl-10 {
        margin-left: 4rem !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .p-xxl-3 {
        padding: 0.75rem !important;
    }

    .p-xxl-4 {
        padding: 1rem !important;
    }

    .p-xxl-5 {
        padding: 1.5rem !important;
    }

    .p-xxl-6 {
        padding: 2rem !important;
    }

    .p-xxl-7 {
        padding: 2.5rem !important;
    }

    .p-xxl-8 {
        padding: 3rem !important;
    }

    .p-xxl-9 {
        padding: 3.5rem !important;
    }

    .p-xxl-10 {
        padding: 4rem !important;
    }

    .p-xxl-auto {
        padding: auto !important;
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xxl-3 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .px-xxl-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xxl-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xxl-6 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-xxl-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-xxl-8 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-xxl-9 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-xxl-10 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-xxl-auto {
        padding-right: auto !important;
        padding-left: auto !important;
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xxl-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-xxl-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xxl-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xxl-6 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-xxl-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-xxl-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-xxl-9 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-xxl-10 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-xxl-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xxl-3 {
        padding-top: 0.75rem !important;
    }

    .pt-xxl-4 {
        padding-top: 1rem !important;
    }

    .pt-xxl-5 {
        padding-top: 1.5rem !important;
    }

    .pt-xxl-6 {
        padding-top: 2rem !important;
    }

    .pt-xxl-7 {
        padding-top: 2.5rem !important;
    }

    .pt-xxl-8 {
        padding-top: 3rem !important;
    }

    .pt-xxl-9 {
        padding-top: 3.5rem !important;
    }

    .pt-xxl-10 {
        padding-top: 4rem !important;
    }

    .pt-xxl-auto {
        padding-top: auto !important;
    }

    .pe-xxl-0 {
        padding-right: 0 !important;
    }

    .pe-xxl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xxl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xxl-3 {
        padding-right: 0.75rem !important;
    }

    .pe-xxl-4 {
        padding-right: 1rem !important;
    }

    .pe-xxl-5 {
        padding-right: 1.5rem !important;
    }

    .pe-xxl-6 {
        padding-right: 2rem !important;
    }

    .pe-xxl-7 {
        padding-right: 2.5rem !important;
    }

    .pe-xxl-8 {
        padding-right: 3rem !important;
    }

    .pe-xxl-9 {
        padding-right: 3.5rem !important;
    }

    .pe-xxl-10 {
        padding-right: 4rem !important;
    }

    .pe-xxl-auto {
        padding-right: auto !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xxl-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-xxl-4 {
        padding-bottom: 1rem !important;
    }

    .pb-xxl-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xxl-6 {
        padding-bottom: 2rem !important;
    }

    .pb-xxl-7 {
        padding-bottom: 2.5rem !important;
    }

    .pb-xxl-8 {
        padding-bottom: 3rem !important;
    }

    .pb-xxl-9 {
        padding-bottom: 3.5rem !important;
    }

    .pb-xxl-10 {
        padding-bottom: 4rem !important;
    }

    .pb-xxl-auto {
        padding-bottom: auto !important;
    }

    .ps-xxl-0 {
        padding-left: 0 !important;
    }

    .ps-xxl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xxl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xxl-3 {
        padding-left: 0.75rem !important;
    }

    .ps-xxl-4 {
        padding-left: 1rem !important;
    }

    .ps-xxl-5 {
        padding-left: 1.5rem !important;
    }

    .ps-xxl-6 {
        padding-left: 2rem !important;
    }

    .ps-xxl-7 {
        padding-left: 2.5rem !important;
    }

    .ps-xxl-8 {
        padding-left: 3rem !important;
    }

    .ps-xxl-9 {
        padding-left: 3.5rem !important;
    }

    .ps-xxl-10 {
        padding-left: 4rem !important;
    }

    .ps-xxl-auto {
        padding-left: auto !important;
    }

    .gap-xxl-0 {
        gap: 0 !important;
    }

    .gap-xxl-1 {
        gap: 0.25rem !important;
    }

    .gap-xxl-2 {
        gap: 0.5rem !important;
    }

    .gap-xxl-3 {
        gap: 1rem !important;
    }

    .gap-xxl-4 {
        gap: 1.5rem !important;
    }

    .gap-xxl-5 {
        gap: 3rem !important;
    }

    .row-gap-xxl-0 {
        row-gap: 0 !important;
    }

    .row-gap-xxl-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-xxl-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-xxl-3 {
        row-gap: 1rem !important;
    }

    .row-gap-xxl-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-xxl-5 {
        row-gap: 3rem !important;
    }

    .column-gap-xxl-0 {
        column-gap: 0 !important;
    }

    .column-gap-xxl-1 {
        column-gap: 0.25rem !important;
    }

    .column-gap-xxl-2 {
        column-gap: 0.5rem !important;
    }

    .column-gap-xxl-3 {
        column-gap: 1rem !important;
    }

    .column-gap-xxl-4 {
        column-gap: 1.5rem !important;
    }

    .column-gap-xxl-5 {
        column-gap: 3rem !important;
    }

    .fs-xxl-1 {
        font-size: 2.75rem !important;
    }

    .fs-xxl-2 {
        font-size: 2.5rem !important;
    }

    .fs-xxl-3 {
        font-size: 2.25rem !important;
    }

    .fs-xxl-4 {
        font-size: 2rem !important;
    }

    .fs-xxl-5 {
        font-size: 1.75rem !important;
    }

    .fs-xxl-6 {
        font-size: 1.5rem !important;
    }

    .fs-xxl-7 {
        font-size: 1.25rem !important;
    }

    .fs-xxl-8 {
        font-size: 1rem !important;
    }

    .fs-xxl-9 {
        font-size: 0.95rem !important;
    }

    .fs-xxl-10 {
        font-size: 0.9rem !important;
    }

    .fs-xxl-11 {
        font-size: 0.85rem !important;
    }

    .fs-xxl-12 {
        font-size: 0.8rem !important;
    }

    .fs-xxl-13 {
        font-size: 0.75rem !important;
    }

    .fs-xxl-14 {
        font-size: 0.7rem !important;
    }

    .fs-xxl-15 {
        font-size: 0.65rem !important;
    }

    .fs-xxl-16 {
        font-size: 0.6rem !important;
    }

    .fs-xxl-17 {
        font-size: 0.55rem !important;
    }

    .fs-xxl-18 {
        font-size: 0.5rem !important;
    }

    .fs-xxl-19 {
        font-size: 0.45rem !important;
    }

    .fs-xxl-20 {
        font-size: 0.4rem !important;
    }

    .text-xxl-start {
        text-align: left !important;
    }

    .text-xxl-end {
        text-align: right !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }

    .text-xxl-primary {
        color: #0d6efd !important;
    }

    .text-xxl-secondary {
        color: #6c757d !important;
    }

    .text-xxl-success {
        color: #198754 !important;
    }

    .text-xxl-info {
        color: #0dcaf0 !important;
    }

    .text-xxl-warning {
        color: #ffc107 !important;
    }

    .text-xxl-danger {
        color: #dc3545 !important;
    }

    .text-xxl-light {
        color: #f8f9fa !important;
    }

    .text-xxl-dark {
        color: #212529 !important;
    }

    .text-xxl-white {
        color: #fff !important;
    }

    .text-xxl-black {
        color: #3b4141 !important;
    }

    .text-xxl-red {
        color: #d71921 !important;
    }

    .text-xxl-red-50 {
        color: #c61f2c !important;
    }

    .text-xxl-pink {
        color: #ffebeb !important;
    }

    .text-xxl-pink-50 {
        color: #ffc9c9 !important;
    }

    .text-xxl-light-pink {
        color: #fff8f8 !important;
    }

    .text-xxl-gray {
        color: #454545 !important;
    }

    .text-xxl-gray-50 {
        color: #939393 !important;
    }

    .text-xxl-light-gray {
        color: #c8c8c8 !important;
    }

    .text-xxl-light-gray-50 {
        color: #f3f4f5 !important;
    }

    .text-xxl-green {
        color: #0c8858 !important;
    }

    .text-xxl-green-50 {
        color: #d6ecd7 !important;
    }

    .text-xxl-light-green {
        color: #42c504 !important;
    }

    .text-xxl-dark-blue {
        color: #0e2f87 !important;
    }

    .text-xxl-nice-blue {
        color: #0e68ba !important;
    }

    .text-xxl-navy-blue {
        color: #1f296b !important;
    }

    .text-xxl-blueberry {
        color: #343e96 !important;
    }

    .text-xxl-light-blue {
        color: #eaf5ff !important;
    }

    .text-xxl-transparent {
        color: rgba(0, 0, 0, 0) !important;
    }

    .bg-xxl-primary {
        background-color: #0d6efd !important;
    }

    .bg-xxl-secondary {
        background-color: #6c757d !important;
    }

    .bg-xxl-success {
        background-color: #198754 !important;
    }

    .bg-xxl-info {
        background-color: #0dcaf0 !important;
    }

    .bg-xxl-warning {
        background-color: #ffc107 !important;
    }

    .bg-xxl-danger {
        background-color: #dc3545 !important;
    }

    .bg-xxl-light {
        background-color: #f8f9fa !important;
    }

    .bg-xxl-dark {
        background-color: #212529 !important;
    }

    .bg-xxl-white {
        background-color: #fff !important;
    }

    .bg-xxl-black {
        background-color: #3b4141 !important;
    }

    .bg-xxl-red {
        background-color: #d71921 !important;
    }

    .bg-xxl-red-50 {
        background-color: #c61f2c !important;
    }

    .bg-xxl-pink {
        background-color: #ffebeb !important;
    }

    .bg-xxl-pink-50 {
        background-color: #ffc9c9 !important;
    }

    .bg-xxl-light-pink {
        background-color: #fff8f8 !important;
    }

    .bg-xxl-gray {
        background-color: #454545 !important;
    }

    .bg-xxl-gray-50 {
        background-color: #939393 !important;
    }

    .bg-xxl-light-gray {
        background-color: #c8c8c8 !important;
    }

    .bg-xxl-light-gray-50 {
        background-color: #f3f4f5 !important;
    }

    .bg-xxl-green {
        background-color: #0c8858 !important;
    }

    .bg-xxl-green-50 {
        background-color: #d6ecd7 !important;
    }

    .bg-xxl-light-green {
        background-color: #42c504 !important;
    }

    .bg-xxl-dark-blue {
        background-color: #0e2f87 !important;
    }

    .bg-xxl-nice-blue {
        background-color: #0e68ba !important;
    }

    .bg-xxl-navy-blue {
        background-color: #1f296b !important;
    }

    .bg-xxl-blueberry {
        background-color: #343e96 !important;
    }

    .bg-xxl-light-blue {
        background-color: #eaf5ff !important;
    }

    .bg-xxl-transparent {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .rounded-xxl {
        border-radius: 0.375rem !important;
    }

    .rounded-xxl-0 {
        border-radius: 0 !important;
    }

    .rounded-xxl-1 {
        border-radius: 0.25rem !important;
    }

    .rounded-xxl-2 {
        border-radius: 0.375rem !important;
    }

    .rounded-xxl-3 {
        border-radius: 0.5rem !important;
    }

    .rounded-xxl-4 {
        border-radius: 1rem !important;
    }

    .rounded-xxl-5 {
        border-radius: 2rem !important;
    }

    .rounded-xxl-circle {
        border-radius: 50% !important;
    }

    .rounded-xxl-pill {
        border-radius: 50rem !important;
    }

    .rounded-top-xxl {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-xxl-0 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .rounded-top-xxl-1 {
        border-top-left-radius: 0.25rem !important;
        border-top-right-radius: 0.25rem !important;
    }

    .rounded-top-xxl-2 {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-xxl-3 {
        border-top-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
    }

    .rounded-top-xxl-4 {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .rounded-top-xxl-5 {
        border-top-left-radius: 2rem !important;
        border-top-right-radius: 2rem !important;
    }

    .rounded-top-xxl-circle {
        border-top-left-radius: 50% !important;
        border-top-right-radius: 50% !important;
    }

    .rounded-top-xxl-pill {
        border-top-left-radius: 50rem !important;
        border-top-right-radius: 50rem !important;
    }

    .rounded-end-xxl {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-xxl-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-end-xxl-1 {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .rounded-end-xxl-2 {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-xxl-3 {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .rounded-end-xxl-4 {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .rounded-end-xxl-5 {
        border-top-right-radius: 2rem !important;
        border-bottom-right-radius: 2rem !important;
    }

    .rounded-end-xxl-circle {
        border-top-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important;
    }

    .rounded-end-xxl-pill {
        border-top-right-radius: 50rem !important;
        border-bottom-right-radius: 50rem !important;
    }

    .rounded-bottom-xxl {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-xxl-0 {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .rounded-bottom-xxl-1 {
        border-bottom-right-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .rounded-bottom-xxl-2 {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-xxl-3 {
        border-bottom-right-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
    }

    .rounded-bottom-xxl-4 {
        border-bottom-right-radius: 1rem !important;
        border-bottom-left-radius: 1rem !important;
    }

    .rounded-bottom-xxl-5 {
        border-bottom-right-radius: 2rem !important;
        border-bottom-left-radius: 2rem !important;
    }

    .rounded-bottom-xxl-circle {
        border-bottom-right-radius: 50% !important;
        border-bottom-left-radius: 50% !important;
    }

    .rounded-bottom-xxl-pill {
        border-bottom-right-radius: 50rem !important;
        border-bottom-left-radius: 50rem !important;
    }

    .rounded-start-xxl {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-xxl-0 {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    .rounded-start-xxl-1 {
        border-bottom-left-radius: 0.25rem !important;
        border-top-left-radius: 0.25rem !important;
    }

    .rounded-start-xxl-2 {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-xxl-3 {
        border-bottom-left-radius: 0.5rem !important;
        border-top-left-radius: 0.5rem !important;
    }

    .rounded-start-xxl-4 {
        border-bottom-left-radius: 1rem !important;
        border-top-left-radius: 1rem !important;
    }

    .rounded-start-xxl-5 {
        border-bottom-left-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
    }

    .rounded-start-xxl-circle {
        border-bottom-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
    }

    .rounded-start-xxl-pill {
        border-bottom-left-radius: 50rem !important;
        border-top-left-radius: 50rem !important;
    }

    .text-indent-xxl-0 {
        text-indent: 0 !important;
    }

    .text-indent-xxl-1 {
        text-indent: 0.25rem !important;
    }

    .text-indent-xxl-2 {
        text-indent: 0.5rem !important;
    }

    .text-indent-xxl-3 {
        text-indent: 0.75rem !important;
    }

    .text-indent-xxl-4 {
        text-indent: 1rem !important;
    }

    .text-indent-xxl-5 {
        text-indent: 1.5rem !important;
    }

    .text-indent-xxl-6 {
        text-indent: 2rem !important;
    }

    .text-indent-xxl-7 {
        text-indent: 2.5rem !important;
    }

    .text-indent-xxl-8 {
        text-indent: 3rem !important;
    }

    .text-indent-xxl-9 {
        text-indent: 3.5rem !important;
    }

    .text-indent-xxl-10 {
        text-indent: 4rem !important;
    }

    .text-indent-xxl-auto {
        text-indent: auto !important;
    }

    .ratio-xxl-1x1 {
        aspect-ratio: 100% !important;
    }

    .ratio-xxl-4x3 {
        aspect-ratio: 75% !important;
    }

    .ratio-xxl-16x9 {
        aspect-ratio: 56.25% !important;
    }

    .ratio-xxl-21x9 {
        aspect-ratio: 42.8571428571% !important;
    }

    .ratio-xxl-3x2 {
        aspect-ratio: 66.6666666667% !important;
    }

    .stroke-xxl-primary {
        stroke: #0d6efd !important;
    }

    .stroke-xxl-secondary {
        stroke: #6c757d !important;
    }

    .stroke-xxl-success {
        stroke: #198754 !important;
    }

    .stroke-xxl-info {
        stroke: #0dcaf0 !important;
    }

    .stroke-xxl-warning {
        stroke: #ffc107 !important;
    }

    .stroke-xxl-danger {
        stroke: #dc3545 !important;
    }

    .stroke-xxl-light {
        stroke: #f8f9fa !important;
    }

    .stroke-xxl-dark {
        stroke: #212529 !important;
    }

    .stroke-xxl-white {
        stroke: #fff !important;
    }

    .stroke-xxl-black {
        stroke: #3b4141 !important;
    }

    .stroke-xxl-red {
        stroke: #d71921 !important;
    }

    .stroke-xxl-red-50 {
        stroke: #c61f2c !important;
    }

    .stroke-xxl-pink {
        stroke: #ffebeb !important;
    }

    .stroke-xxl-pink-50 {
        stroke: #ffc9c9 !important;
    }

    .stroke-xxl-light-pink {
        stroke: #fff8f8 !important;
    }

    .stroke-xxl-gray {
        stroke: #454545 !important;
    }

    .stroke-xxl-gray-50 {
        stroke: #939393 !important;
    }

    .stroke-xxl-light-gray {
        stroke: #c8c8c8 !important;
    }

    .stroke-xxl-light-gray-50 {
        stroke: #f3f4f5 !important;
    }

    .stroke-xxl-green {
        stroke: #0c8858 !important;
    }

    .stroke-xxl-green-50 {
        stroke: #d6ecd7 !important;
    }

    .stroke-xxl-light-green {
        stroke: #42c504 !important;
    }

    .stroke-xxl-dark-blue {
        stroke: #0e2f87 !important;
    }

    .stroke-xxl-nice-blue {
        stroke: #0e68ba !important;
    }

    .stroke-xxl-navy-blue {
        stroke: #1f296b !important;
    }

    .stroke-xxl-blueberry {
        stroke: #343e96 !important;
    }

    .stroke-xxl-light-blue {
        stroke: #eaf5ff !important;
    }

    .stroke-xxl-transparent {
        stroke: rgba(0, 0, 0, 0) !important;
    }

    .fill-xxl-primary {
        fill: #0d6efd !important;
    }

    .fill-xxl-secondary {
        fill: #6c757d !important;
    }

    .fill-xxl-success {
        fill: #198754 !important;
    }

    .fill-xxl-info {
        fill: #0dcaf0 !important;
    }

    .fill-xxl-warning {
        fill: #ffc107 !important;
    }

    .fill-xxl-danger {
        fill: #dc3545 !important;
    }

    .fill-xxl-light {
        fill: #f8f9fa !important;
    }

    .fill-xxl-dark {
        fill: #212529 !important;
    }

    .fill-xxl-white {
        fill: #fff !important;
    }

    .fill-xxl-black {
        fill: #3b4141 !important;
    }

    .fill-xxl-red {
        fill: #d71921 !important;
    }

    .fill-xxl-red-50 {
        fill: #c61f2c !important;
    }

    .fill-xxl-pink {
        fill: #ffebeb !important;
    }

    .fill-xxl-pink-50 {
        fill: #ffc9c9 !important;
    }

    .fill-xxl-light-pink {
        fill: #fff8f8 !important;
    }

    .fill-xxl-gray {
        fill: #454545 !important;
    }

    .fill-xxl-gray-50 {
        fill: #939393 !important;
    }

    .fill-xxl-light-gray {
        fill: #c8c8c8 !important;
    }

    .fill-xxl-light-gray-50 {
        fill: #f3f4f5 !important;
    }

    .fill-xxl-green {
        fill: #0c8858 !important;
    }

    .fill-xxl-green-50 {
        fill: #d6ecd7 !important;
    }

    .fill-xxl-light-green {
        fill: #42c504 !important;
    }

    .fill-xxl-dark-blue {
        fill: #0e2f87 !important;
    }

    .fill-xxl-nice-blue {
        fill: #0e68ba !important;
    }

    .fill-xxl-navy-blue {
        fill: #1f296b !important;
    }

    .fill-xxl-blueberry {
        fill: #343e96 !important;
    }

    .fill-xxl-light-blue {
        fill: #eaf5ff !important;
    }

    .fill-xxl-transparent {
        fill: rgba(0, 0, 0, 0) !important;
    }

    .h-rem-xxl-auto {
        height: auto !important;
    }

    .h-rem-xxl-1 {
        height: 0.5rem !important;
    }

    .h-rem-xxl-2 {
        height: 0.75rem !important;
    }

    .h-rem-xxl-3 {
        height: 1rem !important;
    }

    .h-rem-xxl-4 {
        height: 1.25rem !important;
    }

    .h-rem-xxl-5 {
        height: 1.5rem !important;
    }

    .h-rem-xxl-6 {
        height: 1.75rem !important;
    }

    .h-rem-xxl-7 {
        height: 2rem !important;
    }

    .h-rem-xxl-8 {
        height: 2.5rem !important;
    }

    .h-rem-xxl-9 {
        height: 3rem !important;
    }

    .h-rem-xxl-10 {
        height: 3.5rem !important;
    }

    .h-rem-xxl-11 {
        height: 4rem !important;
    }

    .h-rem-xxl-12 {
        height: 4.5rem !important;
    }

    .h-rem-xxl-13 {
        height: 5rem !important;
    }

    .h-rem-xxl-14 {
        height: 5.5rem !important;
    }

    .h-rem-xxl-15 {
        height: 6rem !important;
    }

    .h-rem-xxl-16 {
        height: 7rem !important;
    }

    .h-rem-xxl-17 {
        height: 8rem !important;
    }

    .h-rem-xxl-18 {
        height: 9rem !important;
    }

    .h-rem-xxl-19 {
        height: 10rem !important;
    }

    .h-rem-xxl-20 {
        height: 11rem !important;
    }

    .h-rem-xxl-21 {
        height: 12rem !important;
    }

    .h-rem-xxl-22 {
        height: 13rem !important;
    }

    .h-rem-xxl-23 {
        height: 14rem !important;
    }

    .h-rem-xxl-24 {
        height: 15rem !important;
    }

    .h-rem-xxl-25 {
        height: 16rem !important;
    }

    .h-rem-xxl-26 {
        height: 18rem !important;
    }

    .h-rem-xxl-27 {
        height: 20rem !important;
    }

    .h-rem-xxl-28 {
        height: 22rem !important;
    }

    .h-rem-xxl-29 {
        height: 24rem !important;
    }

    .h-rem-xxl-30 {
        height: 26rem !important;
    }

    .h-rem-xxl-31 {
        height: 28rem !important;
    }

    .h-rem-xxl-32 {
        height: 30rem !important;
    }

    .h-rem-xxl-33 {
        height: 32rem !important;
    }

    .h-rem-xxl-34 {
        height: 34rem !important;
    }

    .h-rem-xxl-35 {
        height: 36rem !important;
    }

    .h-rem-xxl-36 {
        height: 38rem !important;
    }

    .h-rem-xxl-37 {
        height: 40rem !important;
    }

    .h-rem-xxl-38 {
        height: 42rem !important;
    }

    .h-rem-xxl-39 {
        height: 44rem !important;
    }

    .h-rem-xxl-40 {
        height: 46rem !important;
    }

    .min-h-rem-xxl-auto {
        min-height: auto !important;
    }

    .min-h-rem-xxl-1 {
        min-height: 0.5rem !important;
    }

    .min-h-rem-xxl-2 {
        min-height: 0.75rem !important;
    }

    .min-h-rem-xxl-3 {
        min-height: 1rem !important;
    }

    .min-h-rem-xxl-4 {
        min-height: 1.25rem !important;
    }

    .min-h-rem-xxl-5 {
        min-height: 1.5rem !important;
    }

    .min-h-rem-xxl-6 {
        min-height: 1.75rem !important;
    }

    .min-h-rem-xxl-7 {
        min-height: 2rem !important;
    }

    .min-h-rem-xxl-8 {
        min-height: 2.5rem !important;
    }

    .min-h-rem-xxl-9 {
        min-height: 3rem !important;
    }

    .min-h-rem-xxl-10 {
        min-height: 3.5rem !important;
    }

    .min-h-rem-xxl-11 {
        min-height: 4rem !important;
    }

    .min-h-rem-xxl-12 {
        min-height: 4.5rem !important;
    }

    .min-h-rem-xxl-13 {
        min-height: 5rem !important;
    }

    .min-h-rem-xxl-14 {
        min-height: 5.5rem !important;
    }

    .min-h-rem-xxl-15 {
        min-height: 6rem !important;
    }

    .min-h-rem-xxl-16 {
        min-height: 7rem !important;
    }

    .min-h-rem-xxl-17 {
        min-height: 8rem !important;
    }

    .min-h-rem-xxl-18 {
        min-height: 9rem !important;
    }

    .min-h-rem-xxl-19 {
        min-height: 10rem !important;
    }

    .min-h-rem-xxl-20 {
        min-height: 11rem !important;
    }

    .min-h-rem-xxl-21 {
        min-height: 12rem !important;
    }

    .min-h-rem-xxl-22 {
        min-height: 13rem !important;
    }

    .min-h-rem-xxl-23 {
        min-height: 14rem !important;
    }

    .min-h-rem-xxl-24 {
        min-height: 15rem !important;
    }

    .min-h-rem-xxl-25 {
        min-height: 16rem !important;
    }

    .min-h-rem-xxl-26 {
        min-height: 18rem !important;
    }

    .min-h-rem-xxl-27 {
        min-height: 20rem !important;
    }

    .min-h-rem-xxl-28 {
        min-height: 22rem !important;
    }

    .min-h-rem-xxl-29 {
        min-height: 24rem !important;
    }

    .min-h-rem-xxl-30 {
        min-height: 26rem !important;
    }

    .min-h-rem-xxl-31 {
        min-height: 28rem !important;
    }

    .min-h-rem-xxl-32 {
        min-height: 30rem !important;
    }

    .min-h-rem-xxl-33 {
        min-height: 32rem !important;
    }

    .min-h-rem-xxl-34 {
        min-height: 34rem !important;
    }

    .min-h-rem-xxl-35 {
        min-height: 36rem !important;
    }

    .min-h-rem-xxl-36 {
        min-height: 38rem !important;
    }

    .min-h-rem-xxl-37 {
        min-height: 40rem !important;
    }

    .min-h-rem-xxl-38 {
        min-height: 42rem !important;
    }

    .min-h-rem-xxl-39 {
        min-height: 44rem !important;
    }

    .min-h-rem-xxl-40 {
        min-height: 46rem !important;
    }

    .mh-rem-xxl-auto {
        max-height: auto !important;
    }

    .mh-rem-xxl-1 {
        max-height: 0.5rem !important;
    }

    .mh-rem-xxl-2 {
        max-height: 0.75rem !important;
    }

    .mh-rem-xxl-3 {
        max-height: 1rem !important;
    }

    .mh-rem-xxl-4 {
        max-height: 1.25rem !important;
    }

    .mh-rem-xxl-5 {
        max-height: 1.5rem !important;
    }

    .mh-rem-xxl-6 {
        max-height: 1.75rem !important;
    }

    .mh-rem-xxl-7 {
        max-height: 2rem !important;
    }

    .mh-rem-xxl-8 {
        max-height: 2.5rem !important;
    }

    .mh-rem-xxl-9 {
        max-height: 3rem !important;
    }

    .mh-rem-xxl-10 {
        max-height: 3.5rem !important;
    }

    .mh-rem-xxl-11 {
        max-height: 4rem !important;
    }

    .mh-rem-xxl-12 {
        max-height: 4.5rem !important;
    }

    .mh-rem-xxl-13 {
        max-height: 5rem !important;
    }

    .mh-rem-xxl-14 {
        max-height: 5.5rem !important;
    }

    .mh-rem-xxl-15 {
        max-height: 6rem !important;
    }

    .mh-rem-xxl-16 {
        max-height: 7rem !important;
    }

    .mh-rem-xxl-17 {
        max-height: 8rem !important;
    }

    .mh-rem-xxl-18 {
        max-height: 9rem !important;
    }

    .mh-rem-xxl-19 {
        max-height: 10rem !important;
    }

    .mh-rem-xxl-20 {
        max-height: 11rem !important;
    }

    .mh-rem-xxl-21 {
        max-height: 12rem !important;
    }

    .mh-rem-xxl-22 {
        max-height: 13rem !important;
    }

    .mh-rem-xxl-23 {
        max-height: 14rem !important;
    }

    .mh-rem-xxl-24 {
        max-height: 15rem !important;
    }

    .mh-rem-xxl-25 {
        max-height: 16rem !important;
    }

    .mh-rem-xxl-26 {
        max-height: 18rem !important;
    }

    .mh-rem-xxl-27 {
        max-height: 20rem !important;
    }

    .mh-rem-xxl-28 {
        max-height: 22rem !important;
    }

    .mh-rem-xxl-29 {
        max-height: 24rem !important;
    }

    .mh-rem-xxl-30 {
        max-height: 26rem !important;
    }

    .mh-rem-xxl-31 {
        max-height: 28rem !important;
    }

    .mh-rem-xxl-32 {
        max-height: 30rem !important;
    }

    .mh-rem-xxl-33 {
        max-height: 32rem !important;
    }

    .mh-rem-xxl-34 {
        max-height: 34rem !important;
    }

    .mh-rem-xxl-35 {
        max-height: 36rem !important;
    }

    .mh-rem-xxl-36 {
        max-height: 38rem !important;
    }

    .mh-rem-xxl-37 {
        max-height: 40rem !important;
    }

    .mh-rem-xxl-38 {
        max-height: 42rem !important;
    }

    .mh-rem-xxl-39 {
        max-height: 44rem !important;
    }

    .mh-rem-xxl-40 {
        max-height: 46rem !important;
    }

    .w-rem-xxl-auto {
        width: auto !important;
    }

    .w-rem-xxl-1 {
        width: 0.5rem !important;
    }

    .w-rem-xxl-2 {
        width: 0.75rem !important;
    }

    .w-rem-xxl-3 {
        width: 1rem !important;
    }

    .w-rem-xxl-4 {
        width: 1.25rem !important;
    }

    .w-rem-xxl-5 {
        width: 1.5rem !important;
    }

    .w-rem-xxl-6 {
        width: 1.75rem !important;
    }

    .w-rem-xxl-7 {
        width: 2rem !important;
    }

    .w-rem-xxl-8 {
        width: 2.5rem !important;
    }

    .w-rem-xxl-9 {
        width: 3rem !important;
    }

    .w-rem-xxl-10 {
        width: 3.5rem !important;
    }

    .w-rem-xxl-11 {
        width: 4rem !important;
    }

    .w-rem-xxl-12 {
        width: 4.5rem !important;
    }

    .w-rem-xxl-13 {
        width: 5rem !important;
    }

    .w-rem-xxl-14 {
        width: 5.5rem !important;
    }

    .w-rem-xxl-15 {
        width: 6rem !important;
    }

    .w-rem-xxl-16 {
        width: 7rem !important;
    }

    .w-rem-xxl-17 {
        width: 8rem !important;
    }

    .w-rem-xxl-18 {
        width: 9rem !important;
    }

    .w-rem-xxl-19 {
        width: 10rem !important;
    }

    .w-rem-xxl-20 {
        width: 11rem !important;
    }

    .w-rem-xxl-21 {
        width: 12rem !important;
    }

    .w-rem-xxl-22 {
        width: 13rem !important;
    }

    .w-rem-xxl-23 {
        width: 14rem !important;
    }

    .w-rem-xxl-24 {
        width: 15rem !important;
    }

    .w-rem-xxl-25 {
        width: 16rem !important;
    }

    .w-rem-xxl-26 {
        width: 18rem !important;
    }

    .w-rem-xxl-27 {
        width: 20rem !important;
    }

    .w-rem-xxl-28 {
        width: 22rem !important;
    }

    .w-rem-xxl-29 {
        width: 24rem !important;
    }

    .w-rem-xxl-30 {
        width: 26rem !important;
    }

    .w-rem-xxl-31 {
        width: 28rem !important;
    }

    .w-rem-xxl-32 {
        width: 30rem !important;
    }

    .w-rem-xxl-33 {
        width: 32rem !important;
    }

    .w-rem-xxl-34 {
        width: 34rem !important;
    }

    .w-rem-xxl-35 {
        width: 36rem !important;
    }

    .w-rem-xxl-36 {
        width: 38rem !important;
    }

    .w-rem-xxl-37 {
        width: 40rem !important;
    }

    .w-rem-xxl-38 {
        width: 42rem !important;
    }

    .w-rem-xxl-39 {
        width: 44rem !important;
    }

    .w-rem-xxl-40 {
        width: 46rem !important;
    }

    .min-w-rem-xxl-auto {
        min-width: auto !important;
    }

    .min-w-rem-xxl-1 {
        min-width: 0.5rem !important;
    }

    .min-w-rem-xxl-2 {
        min-width: 0.75rem !important;
    }

    .min-w-rem-xxl-3 {
        min-width: 1rem !important;
    }

    .min-w-rem-xxl-4 {
        min-width: 1.25rem !important;
    }

    .min-w-rem-xxl-5 {
        min-width: 1.5rem !important;
    }

    .min-w-rem-xxl-6 {
        min-width: 1.75rem !important;
    }

    .min-w-rem-xxl-7 {
        min-width: 2rem !important;
    }

    .min-w-rem-xxl-8 {
        min-width: 2.5rem !important;
    }

    .min-w-rem-xxl-9 {
        min-width: 3rem !important;
    }

    .min-w-rem-xxl-10 {
        min-width: 3.5rem !important;
    }

    .min-w-rem-xxl-11 {
        min-width: 4rem !important;
    }

    .min-w-rem-xxl-12 {
        min-width: 4.5rem !important;
    }

    .min-w-rem-xxl-13 {
        min-width: 5rem !important;
    }

    .min-w-rem-xxl-14 {
        min-width: 5.5rem !important;
    }

    .min-w-rem-xxl-15 {
        min-width: 6rem !important;
    }

    .min-w-rem-xxl-16 {
        min-width: 7rem !important;
    }

    .min-w-rem-xxl-17 {
        min-width: 8rem !important;
    }

    .min-w-rem-xxl-18 {
        min-width: 9rem !important;
    }

    .min-w-rem-xxl-19 {
        min-width: 10rem !important;
    }

    .min-w-rem-xxl-20 {
        min-width: 11rem !important;
    }

    .min-w-rem-xxl-21 {
        min-width: 12rem !important;
    }

    .min-w-rem-xxl-22 {
        min-width: 13rem !important;
    }

    .min-w-rem-xxl-23 {
        min-width: 14rem !important;
    }

    .min-w-rem-xxl-24 {
        min-width: 15rem !important;
    }

    .min-w-rem-xxl-25 {
        min-width: 16rem !important;
    }

    .min-w-rem-xxl-26 {
        min-width: 18rem !important;
    }

    .min-w-rem-xxl-27 {
        min-width: 20rem !important;
    }

    .min-w-rem-xxl-28 {
        min-width: 22rem !important;
    }

    .min-w-rem-xxl-29 {
        min-width: 24rem !important;
    }

    .min-w-rem-xxl-30 {
        min-width: 26rem !important;
    }

    .min-w-rem-xxl-31 {
        min-width: 28rem !important;
    }

    .min-w-rem-xxl-32 {
        min-width: 30rem !important;
    }

    .min-w-rem-xxl-33 {
        min-width: 32rem !important;
    }

    .min-w-rem-xxl-34 {
        min-width: 34rem !important;
    }

    .min-w-rem-xxl-35 {
        min-width: 36rem !important;
    }

    .min-w-rem-xxl-36 {
        min-width: 38rem !important;
    }

    .min-w-rem-xxl-37 {
        min-width: 40rem !important;
    }

    .min-w-rem-xxl-38 {
        min-width: 42rem !important;
    }

    .min-w-rem-xxl-39 {
        min-width: 44rem !important;
    }

    .min-w-rem-xxl-40 {
        min-width: 46rem !important;
    }

    .mw-rem-xxl-auto {
        max-width: auto !important;
    }

    .mw-rem-xxl-1 {
        max-width: 0.5rem !important;
    }

    .mw-rem-xxl-2 {
        max-width: 0.75rem !important;
    }

    .mw-rem-xxl-3 {
        max-width: 1rem !important;
    }

    .mw-rem-xxl-4 {
        max-width: 1.25rem !important;
    }

    .mw-rem-xxl-5 {
        max-width: 1.5rem !important;
    }

    .mw-rem-xxl-6 {
        max-width: 1.75rem !important;
    }

    .mw-rem-xxl-7 {
        max-width: 2rem !important;
    }

    .mw-rem-xxl-8 {
        max-width: 2.5rem !important;
    }

    .mw-rem-xxl-9 {
        max-width: 3rem !important;
    }

    .mw-rem-xxl-10 {
        max-width: 3.5rem !important;
    }

    .mw-rem-xxl-11 {
        max-width: 4rem !important;
    }

    .mw-rem-xxl-12 {
        max-width: 4.5rem !important;
    }

    .mw-rem-xxl-13 {
        max-width: 5rem !important;
    }

    .mw-rem-xxl-14 {
        max-width: 5.5rem !important;
    }

    .mw-rem-xxl-15 {
        max-width: 6rem !important;
    }

    .mw-rem-xxl-16 {
        max-width: 7rem !important;
    }

    .mw-rem-xxl-17 {
        max-width: 8rem !important;
    }

    .mw-rem-xxl-18 {
        max-width: 9rem !important;
    }

    .mw-rem-xxl-19 {
        max-width: 10rem !important;
    }

    .mw-rem-xxl-20 {
        max-width: 11rem !important;
    }

    .mw-rem-xxl-21 {
        max-width: 12rem !important;
    }

    .mw-rem-xxl-22 {
        max-width: 13rem !important;
    }

    .mw-rem-xxl-23 {
        max-width: 14rem !important;
    }

    .mw-rem-xxl-24 {
        max-width: 15rem !important;
    }

    .mw-rem-xxl-25 {
        max-width: 16rem !important;
    }

    .mw-rem-xxl-26 {
        max-width: 18rem !important;
    }

    .mw-rem-xxl-27 {
        max-width: 20rem !important;
    }

    .mw-rem-xxl-28 {
        max-width: 22rem !important;
    }

    .mw-rem-xxl-29 {
        max-width: 24rem !important;
    }

    .mw-rem-xxl-30 {
        max-width: 26rem !important;
    }

    .mw-rem-xxl-31 {
        max-width: 28rem !important;
    }

    .mw-rem-xxl-32 {
        max-width: 30rem !important;
    }

    .mw-rem-xxl-33 {
        max-width: 32rem !important;
    }

    .mw-rem-xxl-34 {
        max-width: 34rem !important;
    }

    .mw-rem-xxl-35 {
        max-width: 36rem !important;
    }

    .mw-rem-xxl-36 {
        max-width: 38rem !important;
    }

    .mw-rem-xxl-37 {
        max-width: 40rem !important;
    }

    .mw-rem-xxl-38 {
        max-width: 42rem !important;
    }

    .mw-rem-xxl-39 {
        max-width: 44rem !important;
    }

    .mw-rem-xxl-40 {
        max-width: 46rem !important;
    }

    .svgs-xxl-1 {
        width: 16px !important;
        height: 16px !important;
    }

    .svgs-xxl-2 {
        width: 20px !important;
        height: 20px !important;
    }

    .svgs-xxl-3 {
        width: 24px !important;
        height: 24px !important;
    }

    .svgs-xxl-4 {
        width: 28px !important;
        height: 28px !important;
    }

    .svgs-xxl-5 {
        width: 32px !important;
        height: 32px !important;
    }

    .svgs-xxl-6 {
        width: 40px !important;
        height: 40px !important;
    }

    .svgs-xxl-7 {
        width: 48px !important;
        height: 48px !important;
    }

    .svgs-xxl-8 {
        width: 56px !important;
        height: 56px !important;
    }

    .svgs-xxl-9 {
        width: 64px !important;
        height: 64px !important;
    }

    .svgs-xxl-10 {
        width: 72px !important;
        height: 72px !important;
    }
}

@media (min-width: 1900px) {
    .float-xxxl-start {
        float: left !important;
    }

    .float-xxxl-end {
        float: right !important;
    }

    .float-xxxl-none {
        float: none !important;
    }

    .object-fit-xxxl-contain {
        object-fit: contain !important;
    }

    .object-fit-xxxl-cover {
        object-fit: cover !important;
    }

    .object-fit-xxxl-fill {
        object-fit: fill !important;
    }

    .object-fit-xxxl-scale {
        object-fit: scale-down !important;
    }

    .object-fit-xxxl-none {
        object-fit: none !important;
    }

    .d-xxxl-inline {
        display: inline !important;
    }

    .d-xxxl-inline-block {
        display: inline-block !important;
    }

    .d-xxxl-block {
        display: block !important;
    }

    .d-xxxl-grid {
        display: grid !important;
    }

    .d-xxxl-inline-grid {
        display: inline-grid !important;
    }

    .d-xxxl-table {
        display: table !important;
    }

    .d-xxxl-table-row {
        display: table-row !important;
    }

    .d-xxxl-table-cell {
        display: table-cell !important;
    }

    .d-xxxl-flex {
        display: flex !important;
    }

    .d-xxxl-inline-flex {
        display: inline-flex !important;
    }

    .d-xxxl-none {
        display: none !important;
    }

    .position-xxxl-static {
        position: static !important;
    }

    .position-xxxl-relative {
        position: relative !important;
    }

    .position-xxxl-absolute {
        position: absolute !important;
    }

    .position-xxxl-fixed {
        position: fixed !important;
    }

    .position-xxxl-sticky {
        position: sticky !important;
    }

    .border-xxxl {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-xxxl-0 {
        border: 0 !important;
    }

    .border-top-xxxl {
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-top-xxxl-0 {
        border-top: 0 !important;
    }

    .border-end-xxxl {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-end-xxxl-0 {
        border-right: 0 !important;
    }

    .border-bottom-xxxl {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-bottom-xxxl-0 {
        border-bottom: 0 !important;
    }

    .border-start-xxxl {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .border-start-xxxl-0 {
        border-left: 0 !important;
    }

    .border-xxxl-primary {
        border-color: #0d6efd !important;
    }

    .border-xxxl-secondary {
        border-color: #6c757d !important;
    }

    .border-xxxl-success {
        border-color: #198754 !important;
    }

    .border-xxxl-info {
        border-color: #0dcaf0 !important;
    }

    .border-xxxl-warning {
        border-color: #ffc107 !important;
    }

    .border-xxxl-danger {
        border-color: #dc3545 !important;
    }

    .border-xxxl-light {
        border-color: #f8f9fa !important;
    }

    .border-xxxl-dark {
        border-color: #212529 !important;
    }

    .border-xxxl-white {
        border-color: #fff !important;
    }

    .border-xxxl-black {
        border-color: #3b4141 !important;
    }

    .border-xxxl-red {
        border-color: #d71921 !important;
    }

    .border-xxxl-red-50 {
        border-color: #c61f2c !important;
    }

    .border-xxxl-pink {
        border-color: #ffebeb !important;
    }

    .border-xxxl-pink-50 {
        border-color: #ffc9c9 !important;
    }

    .border-xxxl-light-pink {
        border-color: #fff8f8 !important;
    }

    .border-xxxl-gray {
        border-color: #454545 !important;
    }

    .border-xxxl-gray-50 {
        border-color: #939393 !important;
    }

    .border-xxxl-light-gray {
        border-color: #c8c8c8 !important;
    }

    .border-xxxl-light-gray-50 {
        border-color: #f3f4f5 !important;
    }

    .border-xxxl-green {
        border-color: #0c8858 !important;
    }

    .border-xxxl-green-50 {
        border-color: #d6ecd7 !important;
    }

    .border-xxxl-light-green {
        border-color: #42c504 !important;
    }

    .border-xxxl-dark-blue {
        border-color: #0e2f87 !important;
    }

    .border-xxxl-nice-blue {
        border-color: #0e68ba !important;
    }

    .border-xxxl-navy-blue {
        border-color: #1f296b !important;
    }

    .border-xxxl-blueberry {
        border-color: #343e96 !important;
    }

    .border-xxxl-light-blue {
        border-color: #eaf5ff !important;
    }

    .border-xxxl-transparent {
        border-color: rgba(0, 0, 0, 0) !important;
    }

    .w-xxxl-auto {
        width: auto !important;
    }

    .w-xxxl-5 {
        width: 5% !important;
    }

    .w-xxxl-10 {
        width: 10% !important;
    }

    .w-xxxl-15 {
        width: 15% !important;
    }

    .w-xxxl-20 {
        width: 20% !important;
    }

    .w-xxxl-25 {
        width: 25% !important;
    }

    .w-xxxl-30 {
        width: 30% !important;
    }

    .w-xxxl-35 {
        width: 35% !important;
    }

    .w-xxxl-40 {
        width: 40% !important;
    }

    .w-xxxl-45 {
        width: 45% !important;
    }

    .w-xxxl-50 {
        width: 50% !important;
    }

    .w-xxxl-55 {
        width: 55% !important;
    }

    .w-xxxl-60 {
        width: 60% !important;
    }

    .w-xxxl-65 {
        width: 65% !important;
    }

    .w-xxxl-70 {
        width: 70% !important;
    }

    .w-xxxl-75 {
        width: 75% !important;
    }

    .w-xxxl-80 {
        width: 80% !important;
    }

    .w-xxxl-85 {
        width: 85% !important;
    }

    .w-xxxl-90 {
        width: 90% !important;
    }

    .w-xxxl-95 {
        width: 95% !important;
    }

    .w-xxxl-100 {
        width: 100% !important;
    }

    .mw-xxxl-auto {
        max-width: auto !important;
    }

    .mw-xxxl-5 {
        max-width: 5% !important;
    }

    .mw-xxxl-10 {
        max-width: 10% !important;
    }

    .mw-xxxl-15 {
        max-width: 15% !important;
    }

    .mw-xxxl-20 {
        max-width: 20% !important;
    }

    .mw-xxxl-25 {
        max-width: 25% !important;
    }

    .mw-xxxl-30 {
        max-width: 30% !important;
    }

    .mw-xxxl-35 {
        max-width: 35% !important;
    }

    .mw-xxxl-40 {
        max-width: 40% !important;
    }

    .mw-xxxl-45 {
        max-width: 45% !important;
    }

    .mw-xxxl-50 {
        max-width: 50% !important;
    }

    .mw-xxxl-55 {
        max-width: 55% !important;
    }

    .mw-xxxl-60 {
        max-width: 60% !important;
    }

    .mw-xxxl-65 {
        max-width: 65% !important;
    }

    .mw-xxxl-70 {
        max-width: 70% !important;
    }

    .mw-xxxl-75 {
        max-width: 75% !important;
    }

    .mw-xxxl-80 {
        max-width: 80% !important;
    }

    .mw-xxxl-85 {
        max-width: 85% !important;
    }

    .mw-xxxl-90 {
        max-width: 90% !important;
    }

    .mw-xxxl-95 {
        max-width: 95% !important;
    }

    .mw-xxxl-100 {
        max-width: 100% !important;
    }

    .vw-xxxl-auto {
        width: auto !important;
    }

    .vw-xxxl-5 {
        width: 5vw !important;
    }

    .vw-xxxl-10 {
        width: 10vw !important;
    }

    .vw-xxxl-15 {
        width: 15vw !important;
    }

    .vw-xxxl-20 {
        width: 20vw !important;
    }

    .vw-xxxl-25 {
        width: 25vw !important;
    }

    .vw-xxxl-30 {
        width: 30vw !important;
    }

    .vw-xxxl-35 {
        width: 35vw !important;
    }

    .vw-xxxl-40 {
        width: 40vw !important;
    }

    .vw-xxxl-45 {
        width: 45vw !important;
    }

    .vw-xxxl-50 {
        width: 50vw !important;
    }

    .vw-xxxl-55 {
        width: 55vw !important;
    }

    .vw-xxxl-60 {
        width: 60vw !important;
    }

    .vw-xxxl-65 {
        width: 65vw !important;
    }

    .vw-xxxl-70 {
        width: 70vw !important;
    }

    .vw-xxxl-75 {
        width: 75vw !important;
    }

    .vw-xxxl-80 {
        width: 80vw !important;
    }

    .vw-xxxl-85 {
        width: 85vw !important;
    }

    .vw-xxxl-90 {
        width: 90vw !important;
    }

    .vw-xxxl-95 {
        width: 95vw !important;
    }

    .vw-xxxl-100 {
        width: 100vw !important;
    }

    .min-vw-xxxl-auto {
        min-width: auto !important;
    }

    .min-vw-xxxl-5 {
        min-width: 5vw !important;
    }

    .min-vw-xxxl-10 {
        min-width: 10vw !important;
    }

    .min-vw-xxxl-15 {
        min-width: 15vw !important;
    }

    .min-vw-xxxl-20 {
        min-width: 20vw !important;
    }

    .min-vw-xxxl-25 {
        min-width: 25vw !important;
    }

    .min-vw-xxxl-30 {
        min-width: 30vw !important;
    }

    .min-vw-xxxl-35 {
        min-width: 35vw !important;
    }

    .min-vw-xxxl-40 {
        min-width: 40vw !important;
    }

    .min-vw-xxxl-45 {
        min-width: 45vw !important;
    }

    .min-vw-xxxl-50 {
        min-width: 50vw !important;
    }

    .min-vw-xxxl-55 {
        min-width: 55vw !important;
    }

    .min-vw-xxxl-60 {
        min-width: 60vw !important;
    }

    .min-vw-xxxl-65 {
        min-width: 65vw !important;
    }

    .min-vw-xxxl-70 {
        min-width: 70vw !important;
    }

    .min-vw-xxxl-75 {
        min-width: 75vw !important;
    }

    .min-vw-xxxl-80 {
        min-width: 80vw !important;
    }

    .min-vw-xxxl-85 {
        min-width: 85vw !important;
    }

    .min-vw-xxxl-90 {
        min-width: 90vw !important;
    }

    .min-vw-xxxl-95 {
        min-width: 95vw !important;
    }

    .min-vw-xxxl-100 {
        min-width: 100vw !important;
    }

    .h-xxxl-auto {
        height: auto !important;
    }

    .h-xxxl-5 {
        height: 5% !important;
    }

    .h-xxxl-10 {
        height: 10% !important;
    }

    .h-xxxl-15 {
        height: 15% !important;
    }

    .h-xxxl-20 {
        height: 20% !important;
    }

    .h-xxxl-25 {
        height: 25% !important;
    }

    .h-xxxl-30 {
        height: 30% !important;
    }

    .h-xxxl-35 {
        height: 35% !important;
    }

    .h-xxxl-40 {
        height: 40% !important;
    }

    .h-xxxl-45 {
        height: 45% !important;
    }

    .h-xxxl-50 {
        height: 50% !important;
    }

    .h-xxxl-55 {
        height: 55% !important;
    }

    .h-xxxl-60 {
        height: 60% !important;
    }

    .h-xxxl-65 {
        height: 65% !important;
    }

    .h-xxxl-70 {
        height: 70% !important;
    }

    .h-xxxl-75 {
        height: 75% !important;
    }

    .h-xxxl-80 {
        height: 80% !important;
    }

    .h-xxxl-85 {
        height: 85% !important;
    }

    .h-xxxl-90 {
        height: 90% !important;
    }

    .h-xxxl-95 {
        height: 95% !important;
    }

    .h-xxxl-100 {
        height: 100% !important;
    }

    .mh-xxxl-auto {
        max-height: auto !important;
    }

    .mh-xxxl-5 {
        max-height: 5% !important;
    }

    .mh-xxxl-10 {
        max-height: 10% !important;
    }

    .mh-xxxl-15 {
        max-height: 15% !important;
    }

    .mh-xxxl-20 {
        max-height: 20% !important;
    }

    .mh-xxxl-25 {
        max-height: 25% !important;
    }

    .mh-xxxl-30 {
        max-height: 30% !important;
    }

    .mh-xxxl-35 {
        max-height: 35% !important;
    }

    .mh-xxxl-40 {
        max-height: 40% !important;
    }

    .mh-xxxl-45 {
        max-height: 45% !important;
    }

    .mh-xxxl-50 {
        max-height: 50% !important;
    }

    .mh-xxxl-55 {
        max-height: 55% !important;
    }

    .mh-xxxl-60 {
        max-height: 60% !important;
    }

    .mh-xxxl-65 {
        max-height: 65% !important;
    }

    .mh-xxxl-70 {
        max-height: 70% !important;
    }

    .mh-xxxl-75 {
        max-height: 75% !important;
    }

    .mh-xxxl-80 {
        max-height: 80% !important;
    }

    .mh-xxxl-85 {
        max-height: 85% !important;
    }

    .mh-xxxl-90 {
        max-height: 90% !important;
    }

    .mh-xxxl-95 {
        max-height: 95% !important;
    }

    .mh-xxxl-100 {
        max-height: 100% !important;
    }

    .vh-xxxl-auto {
        height: auto !important;
    }

    .vh-xxxl-5 {
        height: 5vh !important;
    }

    .vh-xxxl-10 {
        height: 10vh !important;
    }

    .vh-xxxl-15 {
        height: 15vh !important;
    }

    .vh-xxxl-20 {
        height: 20vh !important;
    }

    .vh-xxxl-25 {
        height: 25vh !important;
    }

    .vh-xxxl-30 {
        height: 30vh !important;
    }

    .vh-xxxl-35 {
        height: 35vh !important;
    }

    .vh-xxxl-40 {
        height: 40vh !important;
    }

    .vh-xxxl-45 {
        height: 45vh !important;
    }

    .vh-xxxl-50 {
        height: 50vh !important;
    }

    .vh-xxxl-55 {
        height: 55vh !important;
    }

    .vh-xxxl-60 {
        height: 60vh !important;
    }

    .vh-xxxl-65 {
        height: 65vh !important;
    }

    .vh-xxxl-70 {
        height: 70vh !important;
    }

    .vh-xxxl-75 {
        height: 75vh !important;
    }

    .vh-xxxl-80 {
        height: 80vh !important;
    }

    .vh-xxxl-85 {
        height: 85vh !important;
    }

    .vh-xxxl-90 {
        height: 90vh !important;
    }

    .vh-xxxl-95 {
        height: 95vh !important;
    }

    .vh-xxxl-100 {
        height: 100vh !important;
    }

    .min-vh-xxxl-auto {
        min-height: auto !important;
    }

    .min-vh-xxxl-5 {
        min-height: 5vh !important;
    }

    .min-vh-xxxl-10 {
        min-height: 10vh !important;
    }

    .min-vh-xxxl-15 {
        min-height: 15vh !important;
    }

    .min-vh-xxxl-20 {
        min-height: 20vh !important;
    }

    .min-vh-xxxl-25 {
        min-height: 25vh !important;
    }

    .min-vh-xxxl-30 {
        min-height: 30vh !important;
    }

    .min-vh-xxxl-35 {
        min-height: 35vh !important;
    }

    .min-vh-xxxl-40 {
        min-height: 40vh !important;
    }

    .min-vh-xxxl-45 {
        min-height: 45vh !important;
    }

    .min-vh-xxxl-50 {
        min-height: 50vh !important;
    }

    .min-vh-xxxl-55 {
        min-height: 55vh !important;
    }

    .min-vh-xxxl-60 {
        min-height: 60vh !important;
    }

    .min-vh-xxxl-65 {
        min-height: 65vh !important;
    }

    .min-vh-xxxl-70 {
        min-height: 70vh !important;
    }

    .min-vh-xxxl-75 {
        min-height: 75vh !important;
    }

    .min-vh-xxxl-80 {
        min-height: 80vh !important;
    }

    .min-vh-xxxl-85 {
        min-height: 85vh !important;
    }

    .min-vh-xxxl-90 {
        min-height: 90vh !important;
    }

    .min-vh-xxxl-95 {
        min-height: 95vh !important;
    }

    .min-vh-xxxl-100 {
        min-height: 100vh !important;
    }

    .flex-xxxl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xxxl-row {
        flex-direction: row !important;
    }

    .flex-xxxl-column {
        flex-direction: column !important;
    }

    .flex-xxxl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xxxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxxl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xxxl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xxxl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xxxl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xxxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxxl-center {
        justify-content: center !important;
    }

    .justify-content-xxxl-between {
        justify-content: space-between !important;
    }

    .justify-content-xxxl-around {
        justify-content: space-around !important;
    }

    .justify-content-xxxl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xxxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxxl-center {
        align-items: center !important;
    }

    .align-items-xxxl-baseline {
        align-items: baseline !important;
    }

    .align-items-xxxl-stretch {
        align-items: stretch !important;
    }

    .align-content-xxxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxxl-center {
        align-content: center !important;
    }

    .align-content-xxxl-between {
        align-content: space-between !important;
    }

    .align-content-xxxl-around {
        align-content: space-around !important;
    }

    .align-content-xxxl-stretch {
        align-content: stretch !important;
    }

    .align-self-xxxl-auto {
        align-self: auto !important;
    }

    .align-self-xxxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxxl-center {
        align-self: center !important;
    }

    .align-self-xxxl-baseline {
        align-self: baseline !important;
    }

    .align-self-xxxl-stretch {
        align-self: stretch !important;
    }

    .order-xxxl-first {
        order: -1 !important;
    }

    .order-xxxl-0 {
        order: 0 !important;
    }

    .order-xxxl-1 {
        order: 1 !important;
    }

    .order-xxxl-2 {
        order: 2 !important;
    }

    .order-xxxl-3 {
        order: 3 !important;
    }

    .order-xxxl-4 {
        order: 4 !important;
    }

    .order-xxxl-5 {
        order: 5 !important;
    }

    .order-xxxl-last {
        order: 6 !important;
    }

    .m-xxxl-0 {
        margin: 0 !important;
    }

    .m-xxxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxxl-3 {
        margin: 0.75rem !important;
    }

    .m-xxxl-4 {
        margin: 1rem !important;
    }

    .m-xxxl-5 {
        margin: 1.5rem !important;
    }

    .m-xxxl-6 {
        margin: 2rem !important;
    }

    .m-xxxl-7 {
        margin: 2.5rem !important;
    }

    .m-xxxl-8 {
        margin: 3rem !important;
    }

    .m-xxxl-9 {
        margin: 3.5rem !important;
    }

    .m-xxxl-10 {
        margin: 4rem !important;
    }

    .m-xxxl-auto {
        margin: auto !important;
    }

    .mx-xxxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxxl-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-xxxl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxxl-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxxl-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-xxxl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-xxxl-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxxl-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-xxxl-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-xxxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxxl-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-xxxl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxxl-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxxl-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-xxxl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-xxxl-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxxl-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-xxxl-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-xxxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxxl-3 {
        margin-top: 0.75rem !important;
    }

    .mt-xxxl-4 {
        margin-top: 1rem !important;
    }

    .mt-xxxl-5 {
        margin-top: 1.5rem !important;
    }

    .mt-xxxl-6 {
        margin-top: 2rem !important;
    }

    .mt-xxxl-7 {
        margin-top: 2.5rem !important;
    }

    .mt-xxxl-8 {
        margin-top: 3rem !important;
    }

    .mt-xxxl-9 {
        margin-top: 3.5rem !important;
    }

    .mt-xxxl-10 {
        margin-top: 4rem !important;
    }

    .mt-xxxl-auto {
        margin-top: auto !important;
    }

    .me-xxxl-0 {
        margin-right: 0 !important;
    }

    .me-xxxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxxl-3 {
        margin-right: 0.75rem !important;
    }

    .me-xxxl-4 {
        margin-right: 1rem !important;
    }

    .me-xxxl-5 {
        margin-right: 1.5rem !important;
    }

    .me-xxxl-6 {
        margin-right: 2rem !important;
    }

    .me-xxxl-7 {
        margin-right: 2.5rem !important;
    }

    .me-xxxl-8 {
        margin-right: 3rem !important;
    }

    .me-xxxl-9 {
        margin-right: 3.5rem !important;
    }

    .me-xxxl-10 {
        margin-right: 4rem !important;
    }

    .me-xxxl-auto {
        margin-right: auto !important;
    }

    .mb-xxxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxxl-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-xxxl-4 {
        margin-bottom: 1rem !important;
    }

    .mb-xxxl-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxxl-6 {
        margin-bottom: 2rem !important;
    }

    .mb-xxxl-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-xxxl-8 {
        margin-bottom: 3rem !important;
    }

    .mb-xxxl-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-xxxl-10 {
        margin-bottom: 4rem !important;
    }

    .mb-xxxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxxl-3 {
        margin-left: 0.75rem !important;
    }

    .ms-xxxl-4 {
        margin-left: 1rem !important;
    }

    .ms-xxxl-5 {
        margin-left: 1.5rem !important;
    }

    .ms-xxxl-6 {
        margin-left: 2rem !important;
    }

    .ms-xxxl-7 {
        margin-left: 2.5rem !important;
    }

    .ms-xxxl-8 {
        margin-left: 3rem !important;
    }

    .ms-xxxl-9 {
        margin-left: 3.5rem !important;
    }

    .ms-xxxl-10 {
        margin-left: 4rem !important;
    }

    .ms-xxxl-auto {
        margin-left: auto !important;
    }

    .m-xxxl-0 {
        margin: 0 !important;
    }

    .m-xxxl-1 {
        margin: 0.25rem !important;
    }

    .m-xxxl-2 {
        margin: 0.5rem !important;
    }

    .m-xxxl-3 {
        margin: 0.75rem !important;
    }

    .m-xxxl-4 {
        margin: 1rem !important;
    }

    .m-xxxl-5 {
        margin: 1.5rem !important;
    }

    .m-xxxl-6 {
        margin: 2rem !important;
    }

    .m-xxxl-7 {
        margin: 2.5rem !important;
    }

    .m-xxxl-8 {
        margin: 3rem !important;
    }

    .m-xxxl-9 {
        margin: 3.5rem !important;
    }

    .m-xxxl-10 {
        margin: 4rem !important;
    }

    .m-xxxl-auto {
        margin: auto !important;
    }

    .mx-xxxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-xxxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-xxxl-3 {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
    }

    .mx-xxxl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-xxxl-5 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-xxxl-6 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-xxxl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-xxxl-8 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-xxxl-9 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-xxxl-10 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-xxxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-xxxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-xxxl-3 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .my-xxxl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-xxxl-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-xxxl-6 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-xxxl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-xxxl-8 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-xxxl-9 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-xxxl-10 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-xxxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxxl-1 {
        margin-top: 0.25rem !important;
    }

    .mt-xxxl-2 {
        margin-top: 0.5rem !important;
    }

    .mt-xxxl-3 {
        margin-top: 0.75rem !important;
    }

    .mt-xxxl-4 {
        margin-top: 1rem !important;
    }

    .mt-xxxl-5 {
        margin-top: 1.5rem !important;
    }

    .mt-xxxl-6 {
        margin-top: 2rem !important;
    }

    .mt-xxxl-7 {
        margin-top: 2.5rem !important;
    }

    .mt-xxxl-8 {
        margin-top: 3rem !important;
    }

    .mt-xxxl-9 {
        margin-top: 3.5rem !important;
    }

    .mt-xxxl-10 {
        margin-top: 4rem !important;
    }

    .mt-xxxl-auto {
        margin-top: auto !important;
    }

    .me-xxxl-0 {
        margin-right: 0 !important;
    }

    .me-xxxl-1 {
        margin-right: 0.25rem !important;
    }

    .me-xxxl-2 {
        margin-right: 0.5rem !important;
    }

    .me-xxxl-3 {
        margin-right: 0.75rem !important;
    }

    .me-xxxl-4 {
        margin-right: 1rem !important;
    }

    .me-xxxl-5 {
        margin-right: 1.5rem !important;
    }

    .me-xxxl-6 {
        margin-right: 2rem !important;
    }

    .me-xxxl-7 {
        margin-right: 2.5rem !important;
    }

    .me-xxxl-8 {
        margin-right: 3rem !important;
    }

    .me-xxxl-9 {
        margin-right: 3.5rem !important;
    }

    .me-xxxl-10 {
        margin-right: 4rem !important;
    }

    .me-xxxl-auto {
        margin-right: auto !important;
    }

    .mb-xxxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-xxxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxxl-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-xxxl-4 {
        margin-bottom: 1rem !important;
    }

    .mb-xxxl-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-xxxl-6 {
        margin-bottom: 2rem !important;
    }

    .mb-xxxl-7 {
        margin-bottom: 2.5rem !important;
    }

    .mb-xxxl-8 {
        margin-bottom: 3rem !important;
    }

    .mb-xxxl-9 {
        margin-bottom: 3.5rem !important;
    }

    .mb-xxxl-10 {
        margin-bottom: 4rem !important;
    }

    .mb-xxxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxxl-1 {
        margin-left: 0.25rem !important;
    }

    .ms-xxxl-2 {
        margin-left: 0.5rem !important;
    }

    .ms-xxxl-3 {
        margin-left: 0.75rem !important;
    }

    .ms-xxxl-4 {
        margin-left: 1rem !important;
    }

    .ms-xxxl-5 {
        margin-left: 1.5rem !important;
    }

    .ms-xxxl-6 {
        margin-left: 2rem !important;
    }

    .ms-xxxl-7 {
        margin-left: 2.5rem !important;
    }

    .ms-xxxl-8 {
        margin-left: 3rem !important;
    }

    .ms-xxxl-9 {
        margin-left: 3.5rem !important;
    }

    .ms-xxxl-10 {
        margin-left: 4rem !important;
    }

    .ms-xxxl-auto {
        margin-left: auto !important;
    }

    .p-xxxl-0 {
        padding: 0 !important;
    }

    .p-xxxl-1 {
        padding: 0.25rem !important;
    }

    .p-xxxl-2 {
        padding: 0.5rem !important;
    }

    .p-xxxl-3 {
        padding: 0.75rem !important;
    }

    .p-xxxl-4 {
        padding: 1rem !important;
    }

    .p-xxxl-5 {
        padding: 1.5rem !important;
    }

    .p-xxxl-6 {
        padding: 2rem !important;
    }

    .p-xxxl-7 {
        padding: 2.5rem !important;
    }

    .p-xxxl-8 {
        padding: 3rem !important;
    }

    .p-xxxl-9 {
        padding: 3.5rem !important;
    }

    .p-xxxl-10 {
        padding: 4rem !important;
    }

    .p-xxxl-auto {
        padding: auto !important;
    }

    .px-xxxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-xxxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-xxxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-xxxl-3 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .px-xxxl-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-xxxl-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-xxxl-6 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-xxxl-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-xxxl-8 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-xxxl-9 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-xxxl-10 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-xxxl-auto {
        padding-right: auto !important;
        padding-left: auto !important;
    }

    .py-xxxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xxxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-xxxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-xxxl-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .py-xxxl-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-xxxl-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-xxxl-6 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-xxxl-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-xxxl-8 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-xxxl-9 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-xxxl-10 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-xxxl-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }

    .pt-xxxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxxl-1 {
        padding-top: 0.25rem !important;
    }

    .pt-xxxl-2 {
        padding-top: 0.5rem !important;
    }

    .pt-xxxl-3 {
        padding-top: 0.75rem !important;
    }

    .pt-xxxl-4 {
        padding-top: 1rem !important;
    }

    .pt-xxxl-5 {
        padding-top: 1.5rem !important;
    }

    .pt-xxxl-6 {
        padding-top: 2rem !important;
    }

    .pt-xxxl-7 {
        padding-top: 2.5rem !important;
    }

    .pt-xxxl-8 {
        padding-top: 3rem !important;
    }

    .pt-xxxl-9 {
        padding-top: 3.5rem !important;
    }

    .pt-xxxl-10 {
        padding-top: 4rem !important;
    }

    .pt-xxxl-auto {
        padding-top: auto !important;
    }

    .pe-xxxl-0 {
        padding-right: 0 !important;
    }

    .pe-xxxl-1 {
        padding-right: 0.25rem !important;
    }

    .pe-xxxl-2 {
        padding-right: 0.5rem !important;
    }

    .pe-xxxl-3 {
        padding-right: 0.75rem !important;
    }

    .pe-xxxl-4 {
        padding-right: 1rem !important;
    }

    .pe-xxxl-5 {
        padding-right: 1.5rem !important;
    }

    .pe-xxxl-6 {
        padding-right: 2rem !important;
    }

    .pe-xxxl-7 {
        padding-right: 2.5rem !important;
    }

    .pe-xxxl-8 {
        padding-right: 3rem !important;
    }

    .pe-xxxl-9 {
        padding-right: 3.5rem !important;
    }

    .pe-xxxl-10 {
        padding-right: 4rem !important;
    }

    .pe-xxxl-auto {
        padding-right: auto !important;
    }

    .pb-xxxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxxl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-xxxl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xxxl-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-xxxl-4 {
        padding-bottom: 1rem !important;
    }

    .pb-xxxl-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-xxxl-6 {
        padding-bottom: 2rem !important;
    }

    .pb-xxxl-7 {
        padding-bottom: 2.5rem !important;
    }

    .pb-xxxl-8 {
        padding-bottom: 3rem !important;
    }

    .pb-xxxl-9 {
        padding-bottom: 3.5rem !important;
    }

    .pb-xxxl-10 {
        padding-bottom: 4rem !important;
    }

    .pb-xxxl-auto {
        padding-bottom: auto !important;
    }

    .ps-xxxl-0 {
        padding-left: 0 !important;
    }

    .ps-xxxl-1 {
        padding-left: 0.25rem !important;
    }

    .ps-xxxl-2 {
        padding-left: 0.5rem !important;
    }

    .ps-xxxl-3 {
        padding-left: 0.75rem !important;
    }

    .ps-xxxl-4 {
        padding-left: 1rem !important;
    }

    .ps-xxxl-5 {
        padding-left: 1.5rem !important;
    }

    .ps-xxxl-6 {
        padding-left: 2rem !important;
    }

    .ps-xxxl-7 {
        padding-left: 2.5rem !important;
    }

    .ps-xxxl-8 {
        padding-left: 3rem !important;
    }

    .ps-xxxl-9 {
        padding-left: 3.5rem !important;
    }

    .ps-xxxl-10 {
        padding-left: 4rem !important;
    }

    .ps-xxxl-auto {
        padding-left: auto !important;
    }

    .gap-xxxl-0 {
        gap: 0 !important;
    }

    .gap-xxxl-1 {
        gap: 0.25rem !important;
    }

    .gap-xxxl-2 {
        gap: 0.5rem !important;
    }

    .gap-xxxl-3 {
        gap: 1rem !important;
    }

    .gap-xxxl-4 {
        gap: 1.5rem !important;
    }

    .gap-xxxl-5 {
        gap: 3rem !important;
    }

    .row-gap-xxxl-0 {
        row-gap: 0 !important;
    }

    .row-gap-xxxl-1 {
        row-gap: 0.25rem !important;
    }

    .row-gap-xxxl-2 {
        row-gap: 0.5rem !important;
    }

    .row-gap-xxxl-3 {
        row-gap: 1rem !important;
    }

    .row-gap-xxxl-4 {
        row-gap: 1.5rem !important;
    }

    .row-gap-xxxl-5 {
        row-gap: 3rem !important;
    }

    .column-gap-xxxl-0 {
        column-gap: 0 !important;
    }

    .column-gap-xxxl-1 {
        column-gap: 0.25rem !important;
    }

    .column-gap-xxxl-2 {
        column-gap: 0.5rem !important;
    }

    .column-gap-xxxl-3 {
        column-gap: 1rem !important;
    }

    .column-gap-xxxl-4 {
        column-gap: 1.5rem !important;
    }

    .column-gap-xxxl-5 {
        column-gap: 3rem !important;
    }

    .fs-xxxl-1 {
        font-size: 2.75rem !important;
    }

    .fs-xxxl-2 {
        font-size: 2.5rem !important;
    }

    .fs-xxxl-3 {
        font-size: 2.25rem !important;
    }

    .fs-xxxl-4 {
        font-size: 2rem !important;
    }

    .fs-xxxl-5 {
        font-size: 1.75rem !important;
    }

    .fs-xxxl-6 {
        font-size: 1.5rem !important;
    }

    .fs-xxxl-7 {
        font-size: 1.25rem !important;
    }

    .fs-xxxl-8 {
        font-size: 1rem !important;
    }

    .fs-xxxl-9 {
        font-size: 0.95rem !important;
    }

    .fs-xxxl-10 {
        font-size: 0.9rem !important;
    }

    .fs-xxxl-11 {
        font-size: 0.85rem !important;
    }

    .fs-xxxl-12 {
        font-size: 0.8rem !important;
    }

    .fs-xxxl-13 {
        font-size: 0.75rem !important;
    }

    .fs-xxxl-14 {
        font-size: 0.7rem !important;
    }

    .fs-xxxl-15 {
        font-size: 0.65rem !important;
    }

    .fs-xxxl-16 {
        font-size: 0.6rem !important;
    }

    .fs-xxxl-17 {
        font-size: 0.55rem !important;
    }

    .fs-xxxl-18 {
        font-size: 0.5rem !important;
    }

    .fs-xxxl-19 {
        font-size: 0.45rem !important;
    }

    .fs-xxxl-20 {
        font-size: 0.4rem !important;
    }

    .text-xxxl-start {
        text-align: left !important;
    }

    .text-xxxl-end {
        text-align: right !important;
    }

    .text-xxxl-center {
        text-align: center !important;
    }

    .text-xxxl-primary {
        color: #0d6efd !important;
    }

    .text-xxxl-secondary {
        color: #6c757d !important;
    }

    .text-xxxl-success {
        color: #198754 !important;
    }

    .text-xxxl-info {
        color: #0dcaf0 !important;
    }

    .text-xxxl-warning {
        color: #ffc107 !important;
    }

    .text-xxxl-danger {
        color: #dc3545 !important;
    }

    .text-xxxl-light {
        color: #f8f9fa !important;
    }

    .text-xxxl-dark {
        color: #212529 !important;
    }

    .text-xxxl-white {
        color: #fff !important;
    }

    .text-xxxl-black {
        color: #3b4141 !important;
    }

    .text-xxxl-red {
        color: #d71921 !important;
    }

    .text-xxxl-red-50 {
        color: #c61f2c !important;
    }

    .text-xxxl-pink {
        color: #ffebeb !important;
    }

    .text-xxxl-pink-50 {
        color: #ffc9c9 !important;
    }

    .text-xxxl-light-pink {
        color: #fff8f8 !important;
    }

    .text-xxxl-gray {
        color: #454545 !important;
    }

    .text-xxxl-gray-50 {
        color: #939393 !important;
    }

    .text-xxxl-light-gray {
        color: #c8c8c8 !important;
    }

    .text-xxxl-light-gray-50 {
        color: #f3f4f5 !important;
    }

    .text-xxxl-green {
        color: #0c8858 !important;
    }

    .text-xxxl-green-50 {
        color: #d6ecd7 !important;
    }

    .text-xxxl-light-green {
        color: #42c504 !important;
    }

    .text-xxxl-dark-blue {
        color: #0e2f87 !important;
    }

    .text-xxxl-nice-blue {
        color: #0e68ba !important;
    }

    .text-xxxl-navy-blue {
        color: #1f296b !important;
    }

    .text-xxxl-blueberry {
        color: #343e96 !important;
    }

    .text-xxxl-light-blue {
        color: #eaf5ff !important;
    }

    .text-xxxl-transparent {
        color: rgba(0, 0, 0, 0) !important;
    }

    .bg-xxxl-primary {
        background-color: #0d6efd !important;
    }

    .bg-xxxl-secondary {
        background-color: #6c757d !important;
    }

    .bg-xxxl-success {
        background-color: #198754 !important;
    }

    .bg-xxxl-info {
        background-color: #0dcaf0 !important;
    }

    .bg-xxxl-warning {
        background-color: #ffc107 !important;
    }

    .bg-xxxl-danger {
        background-color: #dc3545 !important;
    }

    .bg-xxxl-light {
        background-color: #f8f9fa !important;
    }

    .bg-xxxl-dark {
        background-color: #212529 !important;
    }

    .bg-xxxl-white {
        background-color: #fff !important;
    }

    .bg-xxxl-black {
        background-color: #3b4141 !important;
    }

    .bg-xxxl-red {
        background-color: #d71921 !important;
    }

    .bg-xxxl-red-50 {
        background-color: #c61f2c !important;
    }

    .bg-xxxl-pink {
        background-color: #ffebeb !important;
    }

    .bg-xxxl-pink-50 {
        background-color: #ffc9c9 !important;
    }

    .bg-xxxl-light-pink {
        background-color: #fff8f8 !important;
    }

    .bg-xxxl-gray {
        background-color: #454545 !important;
    }

    .bg-xxxl-gray-50 {
        background-color: #939393 !important;
    }

    .bg-xxxl-light-gray {
        background-color: #c8c8c8 !important;
    }

    .bg-xxxl-light-gray-50 {
        background-color: #f3f4f5 !important;
    }

    .bg-xxxl-green {
        background-color: #0c8858 !important;
    }

    .bg-xxxl-green-50 {
        background-color: #d6ecd7 !important;
    }

    .bg-xxxl-light-green {
        background-color: #42c504 !important;
    }

    .bg-xxxl-dark-blue {
        background-color: #0e2f87 !important;
    }

    .bg-xxxl-nice-blue {
        background-color: #0e68ba !important;
    }

    .bg-xxxl-navy-blue {
        background-color: #1f296b !important;
    }

    .bg-xxxl-blueberry {
        background-color: #343e96 !important;
    }

    .bg-xxxl-light-blue {
        background-color: #eaf5ff !important;
    }

    .bg-xxxl-transparent {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .rounded-xxxl {
        border-radius: 0.375rem !important;
    }

    .rounded-xxxl-0 {
        border-radius: 0 !important;
    }

    .rounded-xxxl-1 {
        border-radius: 0.25rem !important;
    }

    .rounded-xxxl-2 {
        border-radius: 0.375rem !important;
    }

    .rounded-xxxl-3 {
        border-radius: 0.5rem !important;
    }

    .rounded-xxxl-4 {
        border-radius: 1rem !important;
    }

    .rounded-xxxl-5 {
        border-radius: 2rem !important;
    }

    .rounded-xxxl-circle {
        border-radius: 50% !important;
    }

    .rounded-xxxl-pill {
        border-radius: 50rem !important;
    }

    .rounded-top-xxxl {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-xxxl-0 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .rounded-top-xxxl-1 {
        border-top-left-radius: 0.25rem !important;
        border-top-right-radius: 0.25rem !important;
    }

    .rounded-top-xxxl-2 {
        border-top-left-radius: 0.375rem !important;
        border-top-right-radius: 0.375rem !important;
    }

    .rounded-top-xxxl-3 {
        border-top-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
    }

    .rounded-top-xxxl-4 {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .rounded-top-xxxl-5 {
        border-top-left-radius: 2rem !important;
        border-top-right-radius: 2rem !important;
    }

    .rounded-top-xxxl-circle {
        border-top-left-radius: 50% !important;
        border-top-right-radius: 50% !important;
    }

    .rounded-top-xxxl-pill {
        border-top-left-radius: 50rem !important;
        border-top-right-radius: 50rem !important;
    }

    .rounded-end-xxxl {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-xxxl-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-end-xxxl-1 {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .rounded-end-xxxl-2 {
        border-top-right-radius: 0.375rem !important;
        border-bottom-right-radius: 0.375rem !important;
    }

    .rounded-end-xxxl-3 {
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .rounded-end-xxxl-4 {
        border-top-right-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .rounded-end-xxxl-5 {
        border-top-right-radius: 2rem !important;
        border-bottom-right-radius: 2rem !important;
    }

    .rounded-end-xxxl-circle {
        border-top-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important;
    }

    .rounded-end-xxxl-pill {
        border-top-right-radius: 50rem !important;
        border-bottom-right-radius: 50rem !important;
    }

    .rounded-bottom-xxxl {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-xxxl-0 {
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .rounded-bottom-xxxl-1 {
        border-bottom-right-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .rounded-bottom-xxxl-2 {
        border-bottom-right-radius: 0.375rem !important;
        border-bottom-left-radius: 0.375rem !important;
    }

    .rounded-bottom-xxxl-3 {
        border-bottom-right-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
    }

    .rounded-bottom-xxxl-4 {
        border-bottom-right-radius: 1rem !important;
        border-bottom-left-radius: 1rem !important;
    }

    .rounded-bottom-xxxl-5 {
        border-bottom-right-radius: 2rem !important;
        border-bottom-left-radius: 2rem !important;
    }

    .rounded-bottom-xxxl-circle {
        border-bottom-right-radius: 50% !important;
        border-bottom-left-radius: 50% !important;
    }

    .rounded-bottom-xxxl-pill {
        border-bottom-right-radius: 50rem !important;
        border-bottom-left-radius: 50rem !important;
    }

    .rounded-start-xxxl {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-xxxl-0 {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
    }

    .rounded-start-xxxl-1 {
        border-bottom-left-radius: 0.25rem !important;
        border-top-left-radius: 0.25rem !important;
    }

    .rounded-start-xxxl-2 {
        border-bottom-left-radius: 0.375rem !important;
        border-top-left-radius: 0.375rem !important;
    }

    .rounded-start-xxxl-3 {
        border-bottom-left-radius: 0.5rem !important;
        border-top-left-radius: 0.5rem !important;
    }

    .rounded-start-xxxl-4 {
        border-bottom-left-radius: 1rem !important;
        border-top-left-radius: 1rem !important;
    }

    .rounded-start-xxxl-5 {
        border-bottom-left-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
    }

    .rounded-start-xxxl-circle {
        border-bottom-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
    }

    .rounded-start-xxxl-pill {
        border-bottom-left-radius: 50rem !important;
        border-top-left-radius: 50rem !important;
    }

    .text-indent-xxxl-0 {
        text-indent: 0 !important;
    }

    .text-indent-xxxl-1 {
        text-indent: 0.25rem !important;
    }

    .text-indent-xxxl-2 {
        text-indent: 0.5rem !important;
    }

    .text-indent-xxxl-3 {
        text-indent: 0.75rem !important;
    }

    .text-indent-xxxl-4 {
        text-indent: 1rem !important;
    }

    .text-indent-xxxl-5 {
        text-indent: 1.5rem !important;
    }

    .text-indent-xxxl-6 {
        text-indent: 2rem !important;
    }

    .text-indent-xxxl-7 {
        text-indent: 2.5rem !important;
    }

    .text-indent-xxxl-8 {
        text-indent: 3rem !important;
    }

    .text-indent-xxxl-9 {
        text-indent: 3.5rem !important;
    }

    .text-indent-xxxl-10 {
        text-indent: 4rem !important;
    }

    .text-indent-xxxl-auto {
        text-indent: auto !important;
    }

    .ratio-xxxl-1x1 {
        aspect-ratio: 100% !important;
    }

    .ratio-xxxl-4x3 {
        aspect-ratio: 75% !important;
    }

    .ratio-xxxl-16x9 {
        aspect-ratio: 56.25% !important;
    }

    .ratio-xxxl-21x9 {
        aspect-ratio: 42.8571428571% !important;
    }

    .ratio-xxxl-3x2 {
        aspect-ratio: 66.6666666667% !important;
    }

    .stroke-xxxl-primary {
        stroke: #0d6efd !important;
    }

    .stroke-xxxl-secondary {
        stroke: #6c757d !important;
    }

    .stroke-xxxl-success {
        stroke: #198754 !important;
    }

    .stroke-xxxl-info {
        stroke: #0dcaf0 !important;
    }

    .stroke-xxxl-warning {
        stroke: #ffc107 !important;
    }

    .stroke-xxxl-danger {
        stroke: #dc3545 !important;
    }

    .stroke-xxxl-light {
        stroke: #f8f9fa !important;
    }

    .stroke-xxxl-dark {
        stroke: #212529 !important;
    }

    .stroke-xxxl-white {
        stroke: #fff !important;
    }

    .stroke-xxxl-black {
        stroke: #3b4141 !important;
    }

    .stroke-xxxl-red {
        stroke: #d71921 !important;
    }

    .stroke-xxxl-red-50 {
        stroke: #c61f2c !important;
    }

    .stroke-xxxl-pink {
        stroke: #ffebeb !important;
    }

    .stroke-xxxl-pink-50 {
        stroke: #ffc9c9 !important;
    }

    .stroke-xxxl-light-pink {
        stroke: #fff8f8 !important;
    }

    .stroke-xxxl-gray {
        stroke: #454545 !important;
    }

    .stroke-xxxl-gray-50 {
        stroke: #939393 !important;
    }

    .stroke-xxxl-light-gray {
        stroke: #c8c8c8 !important;
    }

    .stroke-xxxl-light-gray-50 {
        stroke: #f3f4f5 !important;
    }

    .stroke-xxxl-green {
        stroke: #0c8858 !important;
    }

    .stroke-xxxl-green-50 {
        stroke: #d6ecd7 !important;
    }

    .stroke-xxxl-light-green {
        stroke: #42c504 !important;
    }

    .stroke-xxxl-dark-blue {
        stroke: #0e2f87 !important;
    }

    .stroke-xxxl-nice-blue {
        stroke: #0e68ba !important;
    }

    .stroke-xxxl-navy-blue {
        stroke: #1f296b !important;
    }

    .stroke-xxxl-blueberry {
        stroke: #343e96 !important;
    }

    .stroke-xxxl-light-blue {
        stroke: #eaf5ff !important;
    }

    .stroke-xxxl-transparent {
        stroke: rgba(0, 0, 0, 0) !important;
    }

    .fill-xxxl-primary {
        fill: #0d6efd !important;
    }

    .fill-xxxl-secondary {
        fill: #6c757d !important;
    }

    .fill-xxxl-success {
        fill: #198754 !important;
    }

    .fill-xxxl-info {
        fill: #0dcaf0 !important;
    }

    .fill-xxxl-warning {
        fill: #ffc107 !important;
    }

    .fill-xxxl-danger {
        fill: #dc3545 !important;
    }

    .fill-xxxl-light {
        fill: #f8f9fa !important;
    }

    .fill-xxxl-dark {
        fill: #212529 !important;
    }

    .fill-xxxl-white {
        fill: #fff !important;
    }

    .fill-xxxl-black {
        fill: #3b4141 !important;
    }

    .fill-xxxl-red {
        fill: #d71921 !important;
    }

    .fill-xxxl-red-50 {
        fill: #c61f2c !important;
    }

    .fill-xxxl-pink {
        fill: #ffebeb !important;
    }

    .fill-xxxl-pink-50 {
        fill: #ffc9c9 !important;
    }

    .fill-xxxl-light-pink {
        fill: #fff8f8 !important;
    }

    .fill-xxxl-gray {
        fill: #454545 !important;
    }

    .fill-xxxl-gray-50 {
        fill: #939393 !important;
    }

    .fill-xxxl-light-gray {
        fill: #c8c8c8 !important;
    }

    .fill-xxxl-light-gray-50 {
        fill: #f3f4f5 !important;
    }

    .fill-xxxl-green {
        fill: #0c8858 !important;
    }

    .fill-xxxl-green-50 {
        fill: #d6ecd7 !important;
    }

    .fill-xxxl-light-green {
        fill: #42c504 !important;
    }

    .fill-xxxl-dark-blue {
        fill: #0e2f87 !important;
    }

    .fill-xxxl-nice-blue {
        fill: #0e68ba !important;
    }

    .fill-xxxl-navy-blue {
        fill: #1f296b !important;
    }

    .fill-xxxl-blueberry {
        fill: #343e96 !important;
    }

    .fill-xxxl-light-blue {
        fill: #eaf5ff !important;
    }

    .fill-xxxl-transparent {
        fill: rgba(0, 0, 0, 0) !important;
    }

    .h-rem-xxxl-auto {
        height: auto !important;
    }

    .h-rem-xxxl-1 {
        height: 0.5rem !important;
    }

    .h-rem-xxxl-2 {
        height: 0.75rem !important;
    }

    .h-rem-xxxl-3 {
        height: 1rem !important;
    }

    .h-rem-xxxl-4 {
        height: 1.25rem !important;
    }

    .h-rem-xxxl-5 {
        height: 1.5rem !important;
    }

    .h-rem-xxxl-6 {
        height: 1.75rem !important;
    }

    .h-rem-xxxl-7 {
        height: 2rem !important;
    }

    .h-rem-xxxl-8 {
        height: 2.5rem !important;
    }

    .h-rem-xxxl-9 {
        height: 3rem !important;
    }

    .h-rem-xxxl-10 {
        height: 3.5rem !important;
    }

    .h-rem-xxxl-11 {
        height: 4rem !important;
    }

    .h-rem-xxxl-12 {
        height: 4.5rem !important;
    }

    .h-rem-xxxl-13 {
        height: 5rem !important;
    }

    .h-rem-xxxl-14 {
        height: 5.5rem !important;
    }

    .h-rem-xxxl-15 {
        height: 6rem !important;
    }

    .h-rem-xxxl-16 {
        height: 7rem !important;
    }

    .h-rem-xxxl-17 {
        height: 8rem !important;
    }

    .h-rem-xxxl-18 {
        height: 9rem !important;
    }

    .h-rem-xxxl-19 {
        height: 10rem !important;
    }

    .h-rem-xxxl-20 {
        height: 11rem !important;
    }

    .h-rem-xxxl-21 {
        height: 12rem !important;
    }

    .h-rem-xxxl-22 {
        height: 13rem !important;
    }

    .h-rem-xxxl-23 {
        height: 14rem !important;
    }

    .h-rem-xxxl-24 {
        height: 15rem !important;
    }

    .h-rem-xxxl-25 {
        height: 16rem !important;
    }

    .h-rem-xxxl-26 {
        height: 18rem !important;
    }

    .h-rem-xxxl-27 {
        height: 20rem !important;
    }

    .h-rem-xxxl-28 {
        height: 22rem !important;
    }

    .h-rem-xxxl-29 {
        height: 24rem !important;
    }

    .h-rem-xxxl-30 {
        height: 26rem !important;
    }

    .h-rem-xxxl-31 {
        height: 28rem !important;
    }

    .h-rem-xxxl-32 {
        height: 30rem !important;
    }

    .h-rem-xxxl-33 {
        height: 32rem !important;
    }

    .h-rem-xxxl-34 {
        height: 34rem !important;
    }

    .h-rem-xxxl-35 {
        height: 36rem !important;
    }

    .h-rem-xxxl-36 {
        height: 38rem !important;
    }

    .h-rem-xxxl-37 {
        height: 40rem !important;
    }

    .h-rem-xxxl-38 {
        height: 42rem !important;
    }

    .h-rem-xxxl-39 {
        height: 44rem !important;
    }

    .h-rem-xxxl-40 {
        height: 46rem !important;
    }

    .min-h-rem-xxxl-auto {
        min-height: auto !important;
    }

    .min-h-rem-xxxl-1 {
        min-height: 0.5rem !important;
    }

    .min-h-rem-xxxl-2 {
        min-height: 0.75rem !important;
    }

    .min-h-rem-xxxl-3 {
        min-height: 1rem !important;
    }

    .min-h-rem-xxxl-4 {
        min-height: 1.25rem !important;
    }

    .min-h-rem-xxxl-5 {
        min-height: 1.5rem !important;
    }

    .min-h-rem-xxxl-6 {
        min-height: 1.75rem !important;
    }

    .min-h-rem-xxxl-7 {
        min-height: 2rem !important;
    }

    .min-h-rem-xxxl-8 {
        min-height: 2.5rem !important;
    }

    .min-h-rem-xxxl-9 {
        min-height: 3rem !important;
    }

    .min-h-rem-xxxl-10 {
        min-height: 3.5rem !important;
    }

    .min-h-rem-xxxl-11 {
        min-height: 4rem !important;
    }

    .min-h-rem-xxxl-12 {
        min-height: 4.5rem !important;
    }

    .min-h-rem-xxxl-13 {
        min-height: 5rem !important;
    }

    .min-h-rem-xxxl-14 {
        min-height: 5.5rem !important;
    }

    .min-h-rem-xxxl-15 {
        min-height: 6rem !important;
    }

    .min-h-rem-xxxl-16 {
        min-height: 7rem !important;
    }

    .min-h-rem-xxxl-17 {
        min-height: 8rem !important;
    }

    .min-h-rem-xxxl-18 {
        min-height: 9rem !important;
    }

    .min-h-rem-xxxl-19 {
        min-height: 10rem !important;
    }

    .min-h-rem-xxxl-20 {
        min-height: 11rem !important;
    }

    .min-h-rem-xxxl-21 {
        min-height: 12rem !important;
    }

    .min-h-rem-xxxl-22 {
        min-height: 13rem !important;
    }

    .min-h-rem-xxxl-23 {
        min-height: 14rem !important;
    }

    .min-h-rem-xxxl-24 {
        min-height: 15rem !important;
    }

    .min-h-rem-xxxl-25 {
        min-height: 16rem !important;
    }

    .min-h-rem-xxxl-26 {
        min-height: 18rem !important;
    }

    .min-h-rem-xxxl-27 {
        min-height: 20rem !important;
    }

    .min-h-rem-xxxl-28 {
        min-height: 22rem !important;
    }

    .min-h-rem-xxxl-29 {
        min-height: 24rem !important;
    }

    .min-h-rem-xxxl-30 {
        min-height: 26rem !important;
    }

    .min-h-rem-xxxl-31 {
        min-height: 28rem !important;
    }

    .min-h-rem-xxxl-32 {
        min-height: 30rem !important;
    }

    .min-h-rem-xxxl-33 {
        min-height: 32rem !important;
    }

    .min-h-rem-xxxl-34 {
        min-height: 34rem !important;
    }

    .min-h-rem-xxxl-35 {
        min-height: 36rem !important;
    }

    .min-h-rem-xxxl-36 {
        min-height: 38rem !important;
    }

    .min-h-rem-xxxl-37 {
        min-height: 40rem !important;
    }

    .min-h-rem-xxxl-38 {
        min-height: 42rem !important;
    }

    .min-h-rem-xxxl-39 {
        min-height: 44rem !important;
    }

    .min-h-rem-xxxl-40 {
        min-height: 46rem !important;
    }

    .mh-rem-xxxl-auto {
        max-height: auto !important;
    }

    .mh-rem-xxxl-1 {
        max-height: 0.5rem !important;
    }

    .mh-rem-xxxl-2 {
        max-height: 0.75rem !important;
    }

    .mh-rem-xxxl-3 {
        max-height: 1rem !important;
    }

    .mh-rem-xxxl-4 {
        max-height: 1.25rem !important;
    }

    .mh-rem-xxxl-5 {
        max-height: 1.5rem !important;
    }

    .mh-rem-xxxl-6 {
        max-height: 1.75rem !important;
    }

    .mh-rem-xxxl-7 {
        max-height: 2rem !important;
    }

    .mh-rem-xxxl-8 {
        max-height: 2.5rem !important;
    }

    .mh-rem-xxxl-9 {
        max-height: 3rem !important;
    }

    .mh-rem-xxxl-10 {
        max-height: 3.5rem !important;
    }

    .mh-rem-xxxl-11 {
        max-height: 4rem !important;
    }

    .mh-rem-xxxl-12 {
        max-height: 4.5rem !important;
    }

    .mh-rem-xxxl-13 {
        max-height: 5rem !important;
    }

    .mh-rem-xxxl-14 {
        max-height: 5.5rem !important;
    }

    .mh-rem-xxxl-15 {
        max-height: 6rem !important;
    }

    .mh-rem-xxxl-16 {
        max-height: 7rem !important;
    }

    .mh-rem-xxxl-17 {
        max-height: 8rem !important;
    }

    .mh-rem-xxxl-18 {
        max-height: 9rem !important;
    }

    .mh-rem-xxxl-19 {
        max-height: 10rem !important;
    }

    .mh-rem-xxxl-20 {
        max-height: 11rem !important;
    }

    .mh-rem-xxxl-21 {
        max-height: 12rem !important;
    }

    .mh-rem-xxxl-22 {
        max-height: 13rem !important;
    }

    .mh-rem-xxxl-23 {
        max-height: 14rem !important;
    }

    .mh-rem-xxxl-24 {
        max-height: 15rem !important;
    }

    .mh-rem-xxxl-25 {
        max-height: 16rem !important;
    }

    .mh-rem-xxxl-26 {
        max-height: 18rem !important;
    }

    .mh-rem-xxxl-27 {
        max-height: 20rem !important;
    }

    .mh-rem-xxxl-28 {
        max-height: 22rem !important;
    }

    .mh-rem-xxxl-29 {
        max-height: 24rem !important;
    }

    .mh-rem-xxxl-30 {
        max-height: 26rem !important;
    }

    .mh-rem-xxxl-31 {
        max-height: 28rem !important;
    }

    .mh-rem-xxxl-32 {
        max-height: 30rem !important;
    }

    .mh-rem-xxxl-33 {
        max-height: 32rem !important;
    }

    .mh-rem-xxxl-34 {
        max-height: 34rem !important;
    }

    .mh-rem-xxxl-35 {
        max-height: 36rem !important;
    }

    .mh-rem-xxxl-36 {
        max-height: 38rem !important;
    }

    .mh-rem-xxxl-37 {
        max-height: 40rem !important;
    }

    .mh-rem-xxxl-38 {
        max-height: 42rem !important;
    }

    .mh-rem-xxxl-39 {
        max-height: 44rem !important;
    }

    .mh-rem-xxxl-40 {
        max-height: 46rem !important;
    }

    .w-rem-xxxl-auto {
        width: auto !important;
    }

    .w-rem-xxxl-1 {
        width: 0.5rem !important;
    }

    .w-rem-xxxl-2 {
        width: 0.75rem !important;
    }

    .w-rem-xxxl-3 {
        width: 1rem !important;
    }

    .w-rem-xxxl-4 {
        width: 1.25rem !important;
    }

    .w-rem-xxxl-5 {
        width: 1.5rem !important;
    }

    .w-rem-xxxl-6 {
        width: 1.75rem !important;
    }

    .w-rem-xxxl-7 {
        width: 2rem !important;
    }

    .w-rem-xxxl-8 {
        width: 2.5rem !important;
    }

    .w-rem-xxxl-9 {
        width: 3rem !important;
    }

    .w-rem-xxxl-10 {
        width: 3.5rem !important;
    }

    .w-rem-xxxl-11 {
        width: 4rem !important;
    }

    .w-rem-xxxl-12 {
        width: 4.5rem !important;
    }

    .w-rem-xxxl-13 {
        width: 5rem !important;
    }

    .w-rem-xxxl-14 {
        width: 5.5rem !important;
    }

    .w-rem-xxxl-15 {
        width: 6rem !important;
    }

    .w-rem-xxxl-16 {
        width: 7rem !important;
    }

    .w-rem-xxxl-17 {
        width: 8rem !important;
    }

    .w-rem-xxxl-18 {
        width: 9rem !important;
    }

    .w-rem-xxxl-19 {
        width: 10rem !important;
    }

    .w-rem-xxxl-20 {
        width: 11rem !important;
    }

    .w-rem-xxxl-21 {
        width: 12rem !important;
    }

    .w-rem-xxxl-22 {
        width: 13rem !important;
    }

    .w-rem-xxxl-23 {
        width: 14rem !important;
    }

    .w-rem-xxxl-24 {
        width: 15rem !important;
    }

    .w-rem-xxxl-25 {
        width: 16rem !important;
    }

    .w-rem-xxxl-26 {
        width: 18rem !important;
    }

    .w-rem-xxxl-27 {
        width: 20rem !important;
    }

    .w-rem-xxxl-28 {
        width: 22rem !important;
    }

    .w-rem-xxxl-29 {
        width: 24rem !important;
    }

    .w-rem-xxxl-30 {
        width: 26rem !important;
    }

    .w-rem-xxxl-31 {
        width: 28rem !important;
    }

    .w-rem-xxxl-32 {
        width: 30rem !important;
    }

    .w-rem-xxxl-33 {
        width: 32rem !important;
    }

    .w-rem-xxxl-34 {
        width: 34rem !important;
    }

    .w-rem-xxxl-35 {
        width: 36rem !important;
    }

    .w-rem-xxxl-36 {
        width: 38rem !important;
    }

    .w-rem-xxxl-37 {
        width: 40rem !important;
    }

    .w-rem-xxxl-38 {
        width: 42rem !important;
    }

    .w-rem-xxxl-39 {
        width: 44rem !important;
    }

    .w-rem-xxxl-40 {
        width: 46rem !important;
    }

    .min-w-rem-xxxl-auto {
        min-width: auto !important;
    }

    .min-w-rem-xxxl-1 {
        min-width: 0.5rem !important;
    }

    .min-w-rem-xxxl-2 {
        min-width: 0.75rem !important;
    }

    .min-w-rem-xxxl-3 {
        min-width: 1rem !important;
    }

    .min-w-rem-xxxl-4 {
        min-width: 1.25rem !important;
    }

    .min-w-rem-xxxl-5 {
        min-width: 1.5rem !important;
    }

    .min-w-rem-xxxl-6 {
        min-width: 1.75rem !important;
    }

    .min-w-rem-xxxl-7 {
        min-width: 2rem !important;
    }

    .min-w-rem-xxxl-8 {
        min-width: 2.5rem !important;
    }

    .min-w-rem-xxxl-9 {
        min-width: 3rem !important;
    }

    .min-w-rem-xxxl-10 {
        min-width: 3.5rem !important;
    }

    .min-w-rem-xxxl-11 {
        min-width: 4rem !important;
    }

    .min-w-rem-xxxl-12 {
        min-width: 4.5rem !important;
    }

    .min-w-rem-xxxl-13 {
        min-width: 5rem !important;
    }

    .min-w-rem-xxxl-14 {
        min-width: 5.5rem !important;
    }

    .min-w-rem-xxxl-15 {
        min-width: 6rem !important;
    }

    .min-w-rem-xxxl-16 {
        min-width: 7rem !important;
    }

    .min-w-rem-xxxl-17 {
        min-width: 8rem !important;
    }

    .min-w-rem-xxxl-18 {
        min-width: 9rem !important;
    }

    .min-w-rem-xxxl-19 {
        min-width: 10rem !important;
    }

    .min-w-rem-xxxl-20 {
        min-width: 11rem !important;
    }

    .min-w-rem-xxxl-21 {
        min-width: 12rem !important;
    }

    .min-w-rem-xxxl-22 {
        min-width: 13rem !important;
    }

    .min-w-rem-xxxl-23 {
        min-width: 14rem !important;
    }

    .min-w-rem-xxxl-24 {
        min-width: 15rem !important;
    }

    .min-w-rem-xxxl-25 {
        min-width: 16rem !important;
    }

    .min-w-rem-xxxl-26 {
        min-width: 18rem !important;
    }

    .min-w-rem-xxxl-27 {
        min-width: 20rem !important;
    }

    .min-w-rem-xxxl-28 {
        min-width: 22rem !important;
    }

    .min-w-rem-xxxl-29 {
        min-width: 24rem !important;
    }

    .min-w-rem-xxxl-30 {
        min-width: 26rem !important;
    }

    .min-w-rem-xxxl-31 {
        min-width: 28rem !important;
    }

    .min-w-rem-xxxl-32 {
        min-width: 30rem !important;
    }

    .min-w-rem-xxxl-33 {
        min-width: 32rem !important;
    }

    .min-w-rem-xxxl-34 {
        min-width: 34rem !important;
    }

    .min-w-rem-xxxl-35 {
        min-width: 36rem !important;
    }

    .min-w-rem-xxxl-36 {
        min-width: 38rem !important;
    }

    .min-w-rem-xxxl-37 {
        min-width: 40rem !important;
    }

    .min-w-rem-xxxl-38 {
        min-width: 42rem !important;
    }

    .min-w-rem-xxxl-39 {
        min-width: 44rem !important;
    }

    .min-w-rem-xxxl-40 {
        min-width: 46rem !important;
    }

    .mw-rem-xxxl-auto {
        max-width: auto !important;
    }

    .mw-rem-xxxl-1 {
        max-width: 0.5rem !important;
    }

    .mw-rem-xxxl-2 {
        max-width: 0.75rem !important;
    }

    .mw-rem-xxxl-3 {
        max-width: 1rem !important;
    }

    .mw-rem-xxxl-4 {
        max-width: 1.25rem !important;
    }

    .mw-rem-xxxl-5 {
        max-width: 1.5rem !important;
    }

    .mw-rem-xxxl-6 {
        max-width: 1.75rem !important;
    }

    .mw-rem-xxxl-7 {
        max-width: 2rem !important;
    }

    .mw-rem-xxxl-8 {
        max-width: 2.5rem !important;
    }

    .mw-rem-xxxl-9 {
        max-width: 3rem !important;
    }

    .mw-rem-xxxl-10 {
        max-width: 3.5rem !important;
    }

    .mw-rem-xxxl-11 {
        max-width: 4rem !important;
    }

    .mw-rem-xxxl-12 {
        max-width: 4.5rem !important;
    }

    .mw-rem-xxxl-13 {
        max-width: 5rem !important;
    }

    .mw-rem-xxxl-14 {
        max-width: 5.5rem !important;
    }

    .mw-rem-xxxl-15 {
        max-width: 6rem !important;
    }

    .mw-rem-xxxl-16 {
        max-width: 7rem !important;
    }

    .mw-rem-xxxl-17 {
        max-width: 8rem !important;
    }

    .mw-rem-xxxl-18 {
        max-width: 9rem !important;
    }

    .mw-rem-xxxl-19 {
        max-width: 10rem !important;
    }

    .mw-rem-xxxl-20 {
        max-width: 11rem !important;
    }

    .mw-rem-xxxl-21 {
        max-width: 12rem !important;
    }

    .mw-rem-xxxl-22 {
        max-width: 13rem !important;
    }

    .mw-rem-xxxl-23 {
        max-width: 14rem !important;
    }

    .mw-rem-xxxl-24 {
        max-width: 15rem !important;
    }

    .mw-rem-xxxl-25 {
        max-width: 16rem !important;
    }

    .mw-rem-xxxl-26 {
        max-width: 18rem !important;
    }

    .mw-rem-xxxl-27 {
        max-width: 20rem !important;
    }

    .mw-rem-xxxl-28 {
        max-width: 22rem !important;
    }

    .mw-rem-xxxl-29 {
        max-width: 24rem !important;
    }

    .mw-rem-xxxl-30 {
        max-width: 26rem !important;
    }

    .mw-rem-xxxl-31 {
        max-width: 28rem !important;
    }

    .mw-rem-xxxl-32 {
        max-width: 30rem !important;
    }

    .mw-rem-xxxl-33 {
        max-width: 32rem !important;
    }

    .mw-rem-xxxl-34 {
        max-width: 34rem !important;
    }

    .mw-rem-xxxl-35 {
        max-width: 36rem !important;
    }

    .mw-rem-xxxl-36 {
        max-width: 38rem !important;
    }

    .mw-rem-xxxl-37 {
        max-width: 40rem !important;
    }

    .mw-rem-xxxl-38 {
        max-width: 42rem !important;
    }

    .mw-rem-xxxl-39 {
        max-width: 44rem !important;
    }

    .mw-rem-xxxl-40 {
        max-width: 46rem !important;
    }

    .svgs-xxxl-1 {
        width: 16px !important;
        height: 16px !important;
    }

    .svgs-xxxl-2 {
        width: 20px !important;
        height: 20px !important;
    }

    .svgs-xxxl-3 {
        width: 24px !important;
        height: 24px !important;
    }

    .svgs-xxxl-4 {
        width: 28px !important;
        height: 28px !important;
    }

    .svgs-xxxl-5 {
        width: 32px !important;
        height: 32px !important;
    }

    .svgs-xxxl-6 {
        width: 40px !important;
        height: 40px !important;
    }

    .svgs-xxxl-7 {
        width: 48px !important;
        height: 48px !important;
    }

    .svgs-xxxl-8 {
        width: 56px !important;
        height: 56px !important;
    }

    .svgs-xxxl-9 {
        width: 64px !important;
        height: 64px !important;
    }

    .svgs-xxxl-10 {
        width: 72px !important;
        height: 72px !important;
    }
}

@media print {
    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-grid {
        display: grid !important;
    }

    .d-print-inline-grid {
        display: inline-grid !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }

    .d-print-none {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 75px !important;
        padding-right: 75px !important;
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
    }
}
/*# sourceMappingURL=custom-bootstrap.css.map */
