.dp-modal {
    background: #ffffffbf;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.dp {
    background: #fff;
    border-radius: 4px;
    box-shadow: 2px 2px 16px #00000040;
    line-height: 1.4;
    max-height: 400px;
    overflow: hidden;
    padding-top: 6px;
    position: relative;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent
}

.dp:before {
    background: #3b99fc;
    background: linear-gradient(-90deg, #3b99fc, #8aefc8);
    content: " ";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.dp-permanent .dp {
    border: 1px solid #eee;
    box-shadow: none;
    padding-top: 0
}

.dp-permanent .dp:before {
    display: none
}

.dp-cal {
    min-height: 300px
}

.dp-below {
    position: absolute
}

.dp-below,
.dp-permanent {
    font-size: .8em;
    max-width: 100vw;
    width: 400px
}

.dp-permanent {
    position: relative
}

.dp-permanent .dp {
    z-index: 0
}

.dp-modal .dp {
    animation: slide-up .3s forwards;
    left: 50%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 4em)
}

.dp-months {
    padding: 24px
}

.dp-years {
    box-sizing: border-box;
    max-height: 400px;
    overflow: auto !important;
    padding: 8px 0
}

.dp-cal-month,
.dp-cal-year,
.dp-day,
.dp-month,
.dp-year {
    background: #0000;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    color: #3b404d;
    position: relative;
    text-align: center;
    text-decoration: none
}

.dp-cal-header {
    background: #f5f5f5;
    padding-bottom: 16px;
    position: relative;
    text-align: center
}

.dp-next,
.dp-prev {
    background: #0000;
    border: 0;
    border-radius: 2px;
    color: #777;
    height: 30px;
    overflow: hidden;
    position: absolute;
    top: 14px;
    width: 30px
}

.dp-next:focus,
.dp-next:hover,
.dp-prev:focus,
.dp-prev:hover {
    color: inherit;
    outline: none
}

.dp-prev {
    left: 24px
}

.dp-next {
    right: 24px
}

.dp-next:before,
.dp-prev:before {
    border: 2px solid;
    content: "";
    display: inline-block;
    height: 10px;
    margin: 9px 0 40px 4px;
    transform: rotate(-45deg);
    transition: border-color .2s;
    width: 10px
}

.dp-prev:before {
    border-bottom: 0;
    border-right: 0
}

.dp-next:before {
    border-left: 0;
    border-top: 0;
    margin-left: 0;
    margin-right: 4px
}

.dp-cal-month,
.dp-cal-year {
    display: inline-block;
    font-size: 1.4em;
    outline: none;
    padding: 16px 8px 8px
}

.dp-cal-footer {
    background: #f5f5f5;
    text-align: center
}

.dp-day-today:after {
    border-color: #227bd7 #227bd7 #0000 #0000;
    border-style: solid;
    border-width: 7px;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 0
}

.dp-clear,
.dp-close,
.dp-today {
    background: #0000;
    border: 0;
    box-sizing: border-box;
    color: inherit;
    display: inline-block;
    padding: 8px;
    text-decoration: none;
    width: 33%
}

.dp-permanent .dp-clear,
.dp-permanent .dp-close {
    display: none
}

.dp-cal-month:active,
.dp-cal-year:active,
.dp-clear:active,
.dp-close:active,
.dp-next:active,
.dp-prev:active,
.dp-today:active {
    background: #75bcfc;
    color: #fff
}

@media screen and (min-device-width:1200px) {

    .dp-cal-month:focus,
    .dp-cal-month:hover,
    .dp-cal-year:focus,
    .dp-cal-year:hover,
    .dp-clear:focus,
    .dp-clear:hover,
    .dp-close:focus,
    .dp-close:hover,
    .dp-next:focus,
    .dp-next:hover,
    .dp-prev:focus,
    .dp-prev:hover,
    .dp-today:focus,
    .dp-today:hover {
        background: #75bcfc;
        color: #fff
    }
}

.dp-col-header,
.dp-day {
    display: inline-block;
    padding: 8px;
    text-align: center;
    width: 14.28571429%
}

.dp-col-header {
    color: #aaa;
    font-size: .8em;
    font-weight: 300;
    padding: 8px 0;
    text-transform: uppercase
}

.dp-month {
    display: inline-block;
    padding: 8px;
    width: 33%
}

.dp-year {
    display: block;
    padding: 8px 40px;
    width: 100%
}

.dp-edge-day {
    color: #aaa
}

.dp-current,
.dp-current:focus,
.dp-day:focus,
.dp-day:hover,
.dp-month:focus,
.dp-month:hover,
.dp-year:focus,
.dp-year:hover {
    background: #75bcfc;
    color: #fff;
    outline: none
}

.dp-selected,
.dp-selected:focus,
.dp-selected:hover {
    background: #3b99fc;
    color: #fff
}

.dp-day-disabled {
    background: #0000;
    color: #ddd
}

.dp-day-disabled:focus,
.dp-day-disabled:hover {
    background: #ddd
}

.dp-focuser {
    left: 50%;
    position: absolute;
    top: 50%;
    z-index: 0
}

@media(max-height:480px), (max-width:480px) {
    .dp-modal .dp {
        font-size: .9em;
        width: auto;
        width: 100%
    }

    .dp-day,
    .dp-day-of-week {
        padding: 8px
    }
}

@keyframes slide-up {
    0% {
        transform: translate(-50%, 100%)
    }

    to {
        transform: translate(-50%, -50%)
    }
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    box-sizing: initial;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, #00000080, #0000)
}

.swiper-lazy-preloader {
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid #0000;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: .35;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next svg,
.swiper-button-prev svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 10px)
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    left: 0;
    top: var(--swiper-pagination-top, auto);
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    display: inline-block;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    left: var(--swiper-pagination-left, auto);
    right: var(--swiper-pagination-right, 8px);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, #00000040);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px)
}

.swiper-pagination-lock {
    display: none
}

.swiper .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

:root,
[data-bs-theme=light] {
    --bs-blue: #283582;
    --bs-indigo: #6610f2;
    --bs-purple: #883bbe;
    --bs-pink: #d63384;
    --bs-red: #d90331;
    --bs-orange: #ff612d;
    --bs-yellow: #ffbc1e;
    --bs-green: #22872f;
    --bs-teal: #73d562;
    --bs-cyan: #357e92;
    --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: #283582;
    --bs-secondary: #6c757d;
    --bs-success: #73d562;
    --bs-info: #9dc7d2;
    --bs-warning: #ffbc1e;
    --bs-danger: #d90331;
    --bs-light: #ebf4f6;
    --bs-dark: #253554;
    --bs-primary-rgb: 40, 53, 130;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 115, 213, 98;
    --bs-info-rgb: 157, 199, 210;
    --bs-warning-rgb: 255, 188, 30;
    --bs-danger-rgb: 217, 3, 49;
    --bs-light-rgb: 235, 244, 246;
    --bs-dark-rgb: 37, 53, 84;
    --bs-primary-text-emphasis: #101534;
    --bs-secondary-text-emphasis: #2b2f32;
    --bs-success-text-emphasis: #2e5527;
    --bs-info-text-emphasis: #3f5054;
    --bs-warning-text-emphasis: #664b0c;
    --bs-danger-text-emphasis: #570114;
    --bs-light-text-emphasis: #495057;
    --bs-dark-text-emphasis: #495057;
    --bs-primary-bg-subtle: #d4d7e6;
    --bs-secondary-bg-subtle: #e2e3e5;
    --bs-success-bg-subtle: #e3f7e0;
    --bs-info-bg-subtle: #ebf4f6;
    --bs-warning-bg-subtle: #fff2d2;
    --bs-danger-bg-subtle: #f7cdd6;
    --bs-light-bg-subtle: #fcfcfd;
    --bs-dark-bg-subtle: #ced4da;
    --bs-primary-border-subtle: #a9aecd;
    --bs-secondary-border-subtle: #c4c8cb;
    --bs-success-border-subtle: #c7eec0;
    --bs-info-border-subtle: #d8e9ed;
    --bs-warning-border-subtle: #ffe4a5;
    --bs-danger-border-subtle: #f09aad;
    --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: "Space Grotesk", "Trebuchet MS", sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, #ffffff26, #fff0);
    --bs-body-font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    --bs-body-font-size: 0.9999999992rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #1b1b1b;
    --bs-body-color-rgb: 27, 27, 27;
    --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: #1b1b1bbf;
    --bs-secondary-color-rgb: 27, 27, 27;
    --bs-secondary-bg: #e9ecef;
    --bs-secondary-bg-rgb: 233, 236, 239;
    --bs-tertiary-color: #1b1b1b80;
    --bs-tertiary-color-rgb: 27, 27, 27;
    --bs-tertiary-bg: #f8f9fa;
    --bs-tertiary-bg-rgb: 248, 249, 250;
    --bs-heading-color: #11457d;
    --bs-link-color: #283582;
    --bs-link-color-rgb: 40, 53, 130;
    --bs-link-decoration: none;
    --bs-link-hover-color: #357e92;
    --bs-link-hover-color-rgb: 53, 126, 146;
    --bs-code-color: #d63384;
    --bs-highlight-color: #1b1b1b;
    --bs-highlight-bg: #fff2d2;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, .175);
    --bs-border-radius: 8px;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 10px;
    --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 #00000026;
    --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
    --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, .175);
    --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, .075);
    --bs-focus-ring-width: 0.25rem;
    --bs-focus-ring-opacity: 0.25;
    --bs-focus-ring-color: #9dc7d2;
    --bs-form-valid-color: #73d562;
    --bs-form-valid-border-color: #73d562;
    --bs-form-invalid-color: #d90331;
    --bs-form-invalid-border-color: #d90331
}

@media(min-width:1200px) {

    :root,
    [data-bs-theme=light] {
        --bs-body-font-size: 1rem
    }
}

[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: #dee2e6bf;
    --bs-secondary-color-rgb: 222, 226, 230;
    --bs-secondary-bg: #343a40;
    --bs-secondary-bg-rgb: 52, 58, 64;
    --bs-tertiary-color: #dee2e680;
    --bs-tertiary-color-rgb: 222, 226, 230;
    --bs-tertiary-bg: #2b3035;
    --bs-tertiary-bg-rgb: 43, 48, 53;
    --bs-primary-text-emphasis: #7e86b4;
    --bs-secondary-text-emphasis: #a7acb1;
    --bs-success-text-emphasis: #abe6a1;
    --bs-info-text-emphasis: #c4dde4;
    --bs-warning-text-emphasis: #ffd778;
    --bs-danger-text-emphasis: #e86883;
    --bs-light-text-emphasis: #f8f9fa;
    --bs-dark-text-emphasis: #dee2e6;
    --bs-primary-bg-subtle: #080b1a;
    --bs-secondary-bg-subtle: #161719;
    --bs-success-bg-subtle: #172b14;
    --bs-info-bg-subtle: #1f282a;
    --bs-warning-bg-subtle: #332606;
    --bs-danger-bg-subtle: #2b010a;
    --bs-light-bg-subtle: #343a40;
    --bs-dark-bg-subtle: #1a1d20;
    --bs-primary-border-subtle: #18204e;
    --bs-secondary-border-subtle: #41464b;
    --bs-success-border-subtle: #45803b;
    --bs-info-border-subtle: #5e777e;
    --bs-warning-border-subtle: #997112;
    --bs-danger-border-subtle: #82021d;
    --bs-light-border-subtle: #495057;
    --bs-dark-border-subtle: #343a40;
    --bs-heading-color: inherit;
    --bs-link-color: #7e86b4;
    --bs-link-hover-color: #989ec3;
    --bs-link-color-rgb: 126, 134, 180;
    --bs-link-hover-color-rgb: 152, 158, 195;
    --bs-code-color: #e685b5;
    --bs-highlight-color: #dee2e6;
    --bs-highlight-bg: #664b0c;
    --bs-border-color: #495057;
    --bs-border-color-translucent: #ffffff26;
    --bs-form-valid-color: #7ab782;
    --bs-form-valid-border-color: #7ab782;
    --bs-form-invalid-color: #e86883;
    --bs-form-invalid-border-color: #e86883
}

*,
:after,
:before {
    box-sizing: border-box
}

@media(prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    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);
    margin: 0;
    text-align: var(--bs-body-text-align);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

hr {
    border: 0;
    border-top: 2px solid #dee2e6;
    color: inherit;
    margin: 1rem 0;
    opacity: .25
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-heading-color);
    font-weight: 600;
    line-height: 1.17;
    margin-bottom: .5rem;
    margin-top: 0
}

.h1,
h1 {
    font-size: calc(1.27083rem + 3.09375vw)
}

@media(min-width:1200px) {

    .h1,
    h1 {
        font-size: 3.3333333333rem
    }
}

.h2,
h2 {
    font-size: calc(1.26361rem + 2.02125vw)
}

@media(min-width:1200px) {

    .h2,
    h2 {
        font-size: 2.6111111111rem
    }
}

.h3,
h3 {
    font-size: calc(1.25083rem + .12375vw)
}

@media(min-width:1200px) {

    .h3,
    h3 {
        font-size: 1.3333333333rem
    }
}

.h4,
h4 {
    font-size: 1rem
}

.h5,
h5 {
    font-size: 1.249999999rem
}

@media(min-width:1200px) {

    .h5,
    h5 {
        font-size: 1.25rem
    }
}

.h6,
h6 {
    font-size: .9999999992rem
}

@media(min-width:1200px) {

    .h6,
    h6 {
        font-size: 1rem
    }
}

p {
    margin-bottom: 1rem;
    margin-top: 0
}

abbr[title] {
    cursor: help;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-bottom: 1rem;
    margin-top: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

.small,
small {
    font-size: .8em
}

.mark,
mark {
    background-color: var(--bs-highlight-bg);
    color: var(--bs-highlight-color);
    padding: .1875em
}

sub,
sup {
    font-size: .75em;
    line-height: 0;
    position: relative;
    vertical-align: initial
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none
}

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
}

code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    font-size: .8em;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto
}

pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal
}

code {
    color: var(--bs-code-color);
    font-size: .8em;
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    background-color: var(--bs-body-color);
    border-radius: .25rem;
    color: var(--bs-body-bg);
    font-size: .8em;
    padding: .1875rem .375rem
}

kbd kbd {
    font-size: 1em;
    padding: 0
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    border-collapse: collapse;
    caption-side: bottom
}

caption {
    color: var(--bs-secondary-color);
    padding-bottom: .5rem;
    padding-top: .5rem;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

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
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

textarea {
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    float: left;
    font-size: calc(1.2525rem + .37125vw);
    line-height: inherit;
    margin-bottom: .5rem;
    padding: 0;
    width: 100%
}

@media(min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-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 {
    -webkit-appearance: button;
    font: inherit
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    cursor: pointer;
    display: list-item
}

progress {
    vertical-align: initial
}

[hidden] {
    display: none !important
}

.lead {
    font-size: calc(1.25306rem + .45375vw);
    font-weight: 500
}

@media(min-width:1200px) {
    .lead {
        font-size: 1.5555555556rem
    }
}

.display-1 {
    font-size: calc(1.26194rem + 1.77375vw);
    font-weight: 600;
    line-height: 1.33
}

@media(min-width:1200px) {
    .display-1 {
        font-size: 2.4444444444rem
    }
}

.display-2 {
    font-size: calc(1.2575rem + 1.11375vw);
    font-weight: 600;
    line-height: 1.33
}

@media(min-width:1200px) {
    .display-2 {
        font-size: 2rem
    }
}

.display-3 {
    font-size: calc(1.25306rem + .45375vw);
    font-weight: 600;
    line-height: 1.33
}

@media(min-width:1200px) {
    .display-3 {
        font-size: 1.5555555556rem
    }
}

.display-4 {
    font-size: 1.1111111111rem
}

.display-4,
.display-5 {
    font-weight: 600;
    line-height: 1.33
}

.display-5 {
    font-size: .8888888889rem
}

.display-6 {
    font-size: .6666666667rem;
    font-weight: 600;
    line-height: 1.33
}

.list-inline,
.list-unstyled {
    list-style: none;
    padding-left: 0
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: .8em;
    text-transform: uppercase
}

.blockquote {
    font-size: 1.249999999rem;
    margin-bottom: 1rem
}

@media(min-width:1200px) {
    .blockquote {
        font-size: 1.25rem
    }
}

.blockquote>:last-child {
    margin-bottom: 0
}

.blockquote-footer {
    color: #6c757d;
    font-size: .8em;
    margin-bottom: 1rem;
    margin-top: -1rem
}

.blockquote-footer:before {
    content: "— "
}

.img-fluid,
.img-thumbnail {
    height: auto;
    max-width: 100%
}

.img-thumbnail {
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow-sm);
    padding: .25rem
}

.figure {
    display: inline-block
}

.figure-img {
    line-height: 1;
    margin-bottom: .5rem
}

.figure-caption {
    color: var(--bs-secondary-color);
    font-size: .8em
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

@media(min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media(min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media(min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1000px
    }
}

@media(min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px
    }
}

: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
}

.row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1)
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

.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: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media(min-width:576px) {
    .col-sm {
        flex: 1 0 0
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.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: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:768px) {
    .col-md {
        flex: 1 0 0
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.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: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:992px) {
    .col-lg {
        flex: 1 0 0
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.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: 1rem
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:1200px) {
    .col-xl {
        flex: 1 0 0
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.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: 1rem
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:1400px) {
    .col-xxl {
        flex: 1 0 0
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.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: 1rem
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.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: #0000;
    --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);
    border-color: var(--bs-table-border-color);
    margin-bottom: 1rem;
    vertical-align: top;
    width: 100%
}

.table>:not(caption)>*>* {
    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)));
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    padding: .5rem
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table-group-divider {
    border-top: calc(var(--bs-border-width)*2) solid
}

.caption-top {
    caption-side: top
}

.table-sm>:not(caption)>*>* {
    padding: .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-columns>:not(caption)>tr>:nth-child(2n),
.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-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: #d4d7e6;
    --bs-table-border-color: #aaacb8;
    --bs-table-striped-bg: #c9ccdb;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bfc1cf;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c4c7d5;
    --bs-table-hover-color: #000
}

.table-primary,
.table-secondary {
    border-color: var(--bs-table-border-color);
    color: var(--bs-table-color)
}

.table-secondary {
    --bs-table-color: #000;
    --bs-table-bg: #e2e3e5;
    --bs-table-border-color: #b4b6b7;
    --bs-table-striped-bg: #d6d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbcdce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000
}

.table-success {
    --bs-table-color: #000;
    --bs-table-bg: #e3f7e0;
    --bs-table-border-color: #b6c5b3;
    --bs-table-striped-bg: #d8ead4;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #ccdec9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d2e4cf;
    --bs-table-hover-color: #000
}

.table-info,
.table-success {
    border-color: var(--bs-table-border-color);
    color: var(--bs-table-color)
}

.table-info {
    --bs-table-color: #000;
    --bs-table-bg: #ebf4f6;
    --bs-table-border-color: #bcc3c5;
    --bs-table-striped-bg: #e0e8ea;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #d4dbdd;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #dae2e4;
    --bs-table-hover-color: #000
}

.table-warning {
    --bs-table-color: #000;
    --bs-table-bg: #fff2d2;
    --bs-table-border-color: #ccc1a8;
    --bs-table-striped-bg: #f2e6c8;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6d9bd;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ecdfc2;
    --bs-table-hover-color: #000
}

.table-danger,
.table-warning {
    border-color: var(--bs-table-border-color);
    color: var(--bs-table-color)
}

.table-danger {
    --bs-table-color: #000;
    --bs-table-bg: #f7cdd6;
    --bs-table-border-color: #c6a4ab;
    --bs-table-striped-bg: #ebc2cb;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfb8c0;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5bdc6;
    --bs-table-hover-color: #000
}

.table-light {
    --bs-table-color: #000;
    --bs-table-bg: #ebf4f6;
    --bs-table-border-color: #bcc3c5;
    --bs-table-striped-bg: #dfe8ea;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #d4dcdd;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d9e2e4;
    --bs-table-hover-color: #000
}

.table-dark,
.table-light {
    border-color: var(--bs-table-border-color);
    color: var(--bs-table-color)
}

.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: #253554;
    --bs-table-border-color: #515d76;
    --bs-table-striped-bg: #303f5d;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #3b4965;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #354461;
    --bs-table-hover-color: #fff
}

.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
    }
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    font-size: inherit;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: calc(.375rem + 2px);
    padding-top: calc(.375rem + 2px)
}

.col-form-label-lg {
    font-size: 1.249999999rem;
    padding-bottom: 13px;
    padding-top: 13px
}

@media(min-width:1200px) {
    .col-form-label-lg {
        font-size: 1.25rem
    }
}

.col-form-label-sm {
    font-size: .8749999993rem;
    padding-bottom: calc(.25rem + 2px);
    padding-top: calc(.25rem + 2px)
}

@media(min-width:1200px) {
    .col-form-label-sm {
        font-size: .875rem
    }
}

.form-text {
    color: var(--bs-secondary-color);
    font-size: .8em;
    margin-top: .25rem
}

.form-control {
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 1px 6px 0 #00000026;
    color: #495057;
    display: block;
    font-size: .9999999992rem;
    font-weight: 500;
    line-height: 1.5;
    padding: .375rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media(min-width:1200px) {
    .form-control {
        font-size: 1rem
    }
}

@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 {
    background-color: #fff;
    border-color: #206d82;
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem #9dc7d2;
    color: #495057;
    outline: 0
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
    margin: 0;
    min-width: 85px
}

.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 {
    background-color: var(--bs-tertiary-bg);
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 2px;
    border-radius: 0;
    color: #495057;
    margin: -.375rem -1rem;
    margin-inline-end: 1rem;
    padding: .375rem 1rem;
    pointer-events: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .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 {
    background-color: #0000;
    border: solid #0000;
    border-width: 2px 0;
    color: var(--bs-body-color);
    display: block;
    line-height: 1.5;
    margin-bottom: 0;
    padding: .375rem 0;
    width: 100%
}

.form-control-plaintext:focus {
    outline: 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-left: 0;
    padding-right: 0
}

.form-control-sm {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem;
    min-height: calc(1.5em + .5rem + 4px);
    padding: .25rem .5rem
}

@media(min-width:1200px) {
    .form-control-sm {
        font-size: .875rem
    }
}

.form-control-sm::file-selector-button {
    margin: -.25rem -.5rem;
    margin-inline-end: .5rem;
    padding: .25rem .5rem
}

.form-control-lg {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem;
    min-height: calc(1.5em + 26px);
    padding: 11px 37px
}

@media(min-width:1200px) {
    .form-control-lg {
        font-size: 1.25rem
    }
}

.form-control-lg::file-selector-button {
    margin: -11px -37px;
    margin-inline-end: 37px;
    padding: 11px 37px
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 4px)
}

textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 4px)
}

textarea.form-control-lg {
    min-height: calc(1.5em + 26px)
}

.form-control-color {
    height: calc(1.5em + .75rem + 4px);
    padding: .375rem;
    width: 3rem
}

.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 + .5rem + 4px)
}

.form-control-color.form-control-lg {
    height: calc(1.5em + 26px)
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%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");
    appearance: none;
    background-color: #fff;
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 2px solid #fff;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 1px 6px 0 #00000026;
    color: #495057;
    display: block;
    font-size: .9999999992rem;
    font-weight: 500;
    line-height: 1.5;
    padding: .375rem 3rem .375rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media(min-width:1200px) {
    .form-select {
        font-size: 1rem
    }
}

@media(prefers-reduced-motion:reduce) {
    .form-select {
        transition: none
    }
}

.form-select:focus {
    border-color: #206d82;
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    background-image: none;
    padding-right: 1rem
}

.form-select:disabled {
    background-color: var(--bs-secondary-bg)
}

.form-select:-moz-focusring {
    color: #0000;
    text-shadow: 0 0 0 #495057
}

.form-select-sm {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-top: .25rem
}

@media(min-width:1200px) {
    .form-select-sm {
        font-size: .875rem
    }
}

.form-select-lg {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem;
    padding-bottom: 11px;
    padding-left: 37px;
    padding-top: 11px
}

@media(min-width:1200px) {
    .form-select-lg {
        font-size: 1.25rem
    }
}

[data-bs-theme=dark] .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%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;
    margin-bottom: .125rem;
    min-height: 1.5rem;
    padding-left: 1.5em
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-reverse {
    padding-left: 0;
    padding-right: 1.5em;
    text-align: right
}

.form-check-reverse .form-check-input {
    float: right;
    margin-left: 0;
    margin-right: -1.5em
}

.form-check-input {
    --bs-form-check-bg: #0003;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    flex-shrink: 0;
    height: 1em;
    margin-top: .25em;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    vertical-align: top;
    width: 1em
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #206d82;
    box-shadow: 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.form-check-input:checked {
    background-color: #283582;
    border-color: #283582
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml;charset=utf-8,%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;charset=utf-8,%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: #283582;
    border-color: #283582;
    --bs-form-check-bg-image: url("data:image/svg+xml;charset=utf-8,%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 {
    filter: none;
    opacity: .5;
    pointer-events: none
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    cursor: default;
    opacity: .5
}

.form-switch {
    padding-left: 2.5em
}

.form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
    background-image: var(--bs-form-switch-bg);
    background-position: 0;
    border-radius: 2em;
    margin-left: -2.5em;
    transition: background-position .15s ease-in-out;
    width: 2em
}

@media(prefers-reduced-motion:reduce) {
    .form-switch .form-check-input {
        transition: none
    }
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml;charset=utf-8,%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-input:checked {
    background-position: 100%
}

.form-switch.form-check-reverse {
    padding-left: 0;
    padding-right: 2.5em
}

.form-switch.form-check-reverse .form-check-input {
    margin-left: 0;
    margin-right: -2.5em
}

.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 {
    filter: none;
    opacity: .65;
    pointer-events: none
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
    --bs-form-switch-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(255, 255, 255, 0.25)'/%3E%3C/svg%3E")
}

.form-range {
    appearance: none;
    background-color: #0000;
    height: 1.5rem;
    padding: 0;
    width: 100%
}

.form-range:focus {
    outline: 0
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #9dc7d2
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #9dc7d2
}

.form-range::-moz-focus-outer {
    border: 0
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    background-color: #283582;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .1rem .25rem #0000001a;
    height: 1rem;
    margin-top: -.25rem;
    -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #bfc2da
}

.form-range::-webkit-slider-runnable-track {
    background-color: var(--bs-secondary-bg);
    border-color: #0000;
    border-radius: 1rem;
    box-shadow: var(--bs-box-shadow-inset);
    color: #0000;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-range::-moz-range-thumb {
    appearance: none;
    background-color: #283582;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .1rem .25rem #0000001a;
    height: 1rem;
    -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #bfc2da
}

.form-range::-moz-range-track {
    background-color: var(--bs-secondary-bg);
    border-color: #0000;
    border-radius: 1rem;
    box-shadow: var(--bs-box-shadow-inset);
    color: #0000;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.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 + 4px);
    line-height: 1.25;
    min-height: calc(3.5rem + 4px)
}

.form-floating>label {
    border: 2px solid #0000;
    color: rgba(var(--bs-body-color-rgb), .65);
    height: 100%;
    left: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem;
    pointer-events: none;
    position: absolute;
    text-align: start;
    text-overflow: ellipsis;
    top: 0;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    white-space: nowrap;
    z-index: 2
}

@media(prefers-reduced-motion:reduce) {
    .form-floating>label {
        transition: none
    }
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
    padding: 1rem
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
    color: #0000
}

.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-control-plaintext:-webkit-autofill,
.form-floating>.form-control:-webkit-autofill {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-select {
    padding-bottom: .625rem;
    padding-left: 1rem;
    padding-top: 1.625rem
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>textarea:focus~label:after,
.form-floating>textarea:not(:placeholder-shown)~label:after {
    background-color: #fff;
    border-radius: var(--bs-border-radius);
    content: "";
    height: 1.5em;
    inset: 1rem .5rem;
    position: absolute;
    z-index: -1
}

.form-floating>textarea:disabled~label:after {
    background-color: var(--bs-secondary-bg)
}

.form-floating>.form-control-plaintext~label {
    border-width: 2px 0
}

.form-floating>.form-control:disabled~label,
.form-floating>:disabled~label {
    color: #6c757d
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    width: 1%
}

.input-group>.form-control:focus,
.input-group>.form-floating:focus-within,
.input-group>.form-select:focus {
    z-index: 5
}

.input-group .btn {
    position: relative;
    z-index: 2
}

.input-group .btn:focus {
    z-index: 5
}

.input-group-text {
    align-items: center;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: var(--bs-border-radius);
    color: #606880;
    display: flex;
    font-size: .9999999992rem;
    line-height: 1.5;
    padding: .375rem 1rem;
    text-align: center;
    white-space: nowrap
}

@media(min-width:1200px) {
    .input-group-text {
        font-size: 1rem
    }
}

.input-group-lg>.btn,
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem;
    padding: 11px 37px
}

@media(min-width:1200px) {

    .input-group-lg>.btn,
    .input-group-lg>.form-control,
    .input-group-lg>.form-select,
    .input-group-lg>.input-group-text {
        font-size: 1.25rem
    }
}

.input-group-sm>.btn,
.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem;
    padding: .25rem .5rem
}

@media(min-width:1200px) {

    .input-group-sm>.btn,
    .input-group-sm>.form-control,
    .input-group-sm>.form-select,
    .input-group-sm>.input-group-text {
        font-size: .875rem
    }
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
    padding-right: 4rem
}

.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,
.input-group.has-validation>:nth-last-child(n+3):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,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -2px
}

.input-group>.form-floating:not(:first-child)>.form-control,
.input-group>.form-floating:not(:first-child)>.form-select {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.valid-feedback {
    color: var(--bs-form-valid-color);
    display: none;
    font-size: .8em;
    margin-top: .25rem;
    width: 100%
}

.valid-tooltip {
    background-color: var(--bs-success);
    border-radius: var(--bs-border-radius);
    color: #fff;
    display: none;
    font-size: .8749999993rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

@media(min-width:1200px) {
    .valid-tooltip {
        font-size: .875rem
    }
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: var(--bs-form-valid-border-color);
    padding-right: calc(1.5em + .75rem)
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: var(--bs-form-valid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.form-select.is-valid,
.was-validated .form-select:valid {
    border-color: var(--bs-form-valid-border-color)
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right 1rem center, center right 3rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right: 5.5rem
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
    border-color: var(--bs-form-valid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
}

.form-control-color.is-valid,
.was-validated .form-control-color:valid {
    width: calc(3.75rem + 1.5em)
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border-color: var(--bs-form-valid-border-color)
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
    background-color: var(--bs-form-valid-color)
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: var(--bs-form-valid-color)
}

.form-check-inline .form-check-input~.valid-feedback {
    margin-left: .5em
}

.input-group>.form-control:not(:focus).is-valid,
.input-group>.form-floating:not(:focus-within).is-valid,
.input-group>.form-select:not(:focus).is-valid,
.was-validated .input-group>.form-control:not(:focus):valid,
.was-validated .input-group>.form-floating:not(:focus-within):valid,
.was-validated .input-group>.form-select:not(:focus):valid {
    z-index: 3
}

.invalid-feedback {
    color: var(--bs-form-invalid-color);
    display: none;
    font-size: .8em;
    margin-top: .25rem;
    width: 100%
}

.invalid-tooltip {
    background-color: var(--bs-danger);
    border-radius: var(--bs-border-radius);
    color: #fff;
    display: none;
    font-size: .8749999993rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

@media(min-width:1200px) {
    .invalid-tooltip {
        font-size: .875rem
    }
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + .75rem)
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.form-select.is-invalid,
.was-validated .form-select:invalid {
    border-color: var(--bs-form-invalid-border-color)
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right 1rem center, center right 3rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right: 5.5rem
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
}

.form-control-color.is-invalid,
.was-validated .form-control-color:invalid {
    width: calc(3.75rem + 1.5em)
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
    border-color: var(--bs-form-invalid-border-color)
}

.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
    background-color: var(--bs-form-invalid-color)
}

.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: var(--bs-form-invalid-color)
}

.form-check-inline .form-check-input~.invalid-feedback {
    margin-left: .5em
}

.input-group>.form-control:not(:focus).is-invalid,
.input-group>.form-floating:not(:focus-within).is-invalid,
.input-group>.form-select:not(:focus).is-invalid,
.was-validated .input-group>.form-control:not(:focus):invalid,
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
.was-validated .input-group>.form-select:not(:focus):invalid {
    z-index: 4
}

.btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 0.9999999992rem;
    --bs-btn-font-weight: 600;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: #0000;
    --bs-btn-border-width: 2px;
    --bs-btn-border-color: #0000;
    --bs-btn-border-radius: 20px;
    --bs-btn-hover-border-color: #0000;
    --bs-btn-box-shadow: none;
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    background-color: var(--bs-btn-bg);
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    box-shadow: var(--bs-btn-box-shadow);
    color: var(--bs-btn-color);
    cursor: pointer;
    display: inline-block;
    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);
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    text-align: center;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle
}

@media(min-width:1200px) {
    .btn {
        --bs-btn-font-size: 1rem
    }
}

@media(prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    color: var(--bs-btn-hover-color)
}

.btn-check+.btn:hover {
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color);
    color: var(--bs-btn-color)
}

.btn:focus-visible {
    background-color: var(--bs-btn-hover-bg);
    color: var(--bs-btn-hover-color)
}

.btn-check:focus-visible+.btn,
.btn:focus-visible {
    border-color: var(--bs-btn-hover-border-color);
    box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
    outline: 0
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
    box-shadow: var(--bs-btn-active-shadow);
    color: var(--bs-btn-active-color)
}

.btn-check:checked+.btn:focus-visible,
.btn-check:checked:focus-visible+.btn,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow)
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    box-shadow: none;
    color: var(--bs-btn-disabled-color);
    opacity: var(--bs-btn-disabled-opacity);
    pointer-events: none
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #283582;
    --bs-btn-border-color: #283582;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #222d6f;
    --bs-btn-hover-border-color: #202a68;
    --bs-btn-focus-shadow-rgb: 72, 83, 149;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #202a68;
    --bs-btn-active-border-color: #1e2862;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #283582;
    --bs-btn-disabled-border-color: #283582
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6c757d;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d
}

.btn-success {
    --bs-btn-color: #000;
    --bs-btn-bg: #73d562;
    --bs-btn-border-color: #73d562;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #88db7a;
    --bs-btn-hover-border-color: #81d972;
    --bs-btn-focus-shadow-rgb: 98, 181, 83;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #8fdd81;
    --bs-btn-active-border-color: #81d972;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #73d562;
    --bs-btn-disabled-border-color: #73d562
}

.btn-info {
    --bs-btn-color: #000;
    --bs-btn-bg: #9dc7d2;
    --bs-btn-border-color: #9dc7d2;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #accfd9;
    --bs-btn-hover-border-color: #a7cdd7;
    --bs-btn-focus-shadow-rgb: 133, 169, 179;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #b1d2db;
    --bs-btn-active-border-color: #a7cdd7;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #9dc7d2;
    --bs-btn-disabled-border-color: #9dc7d2
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffbc1e;
    --bs-btn-border-color: #ffbc1e;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffc640;
    --bs-btn-hover-border-color: #ffc335;
    --bs-btn-focus-shadow-rgb: 217, 160, 26;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffc94b;
    --bs-btn-active-border-color: #ffc335;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffbc1e;
    --bs-btn-disabled-border-color: #ffbc1e
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d90331;
    --bs-btn-border-color: #d90331;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b8032a;
    --bs-btn-hover-border-color: #ae0227;
    --bs-btn-focus-shadow-rgb: 223, 41, 80;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ae0227;
    --bs-btn-active-border-color: #a30225;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d90331;
    --bs-btn-disabled-border-color: #d90331
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #ebf4f6;
    --bs-btn-border-color: #ebf4f6;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #c8cfd1;
    --bs-btn-hover-border-color: #bcc3c5;
    --bs-btn-focus-shadow-rgb: 200, 207, 209;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #bcc3c5;
    --bs-btn-active-border-color: #b0b7b9;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ebf4f6;
    --bs-btn-disabled-border-color: #ebf4f6
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #253554;
    --bs-btn-border-color: #253554;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #46536e;
    --bs-btn-hover-border-color: #3b4965;
    --bs-btn-focus-shadow-rgb: 70, 83, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #515d76;
    --bs-btn-active-border-color: #3b4965;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #253554;
    --bs-btn-disabled-border-color: #253554
}

.btn-outline-primary {
    --bs-btn-color: #283582;
    --bs-btn-border-color: #283582;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #283582;
    --bs-btn-hover-border-color: #283582;
    --bs-btn-focus-shadow-rgb: 40, 53, 130;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #283582;
    --bs-btn-active-border-color: #283582;
    --bs-btn-disabled-color: #283582;
    --bs-btn-disabled-border-color: #283582
}

.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: none;
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none
}

.btn-outline-success {
    --bs-btn-color: #73d562;
    --bs-btn-border-color: #73d562;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #73d562;
    --bs-btn-hover-border-color: #73d562;
    --bs-btn-focus-shadow-rgb: 115, 213, 98;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #73d562;
    --bs-btn-active-border-color: #73d562;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #73d562;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #73d562;
    --bs-gradient: none
}

.btn-outline-info {
    --bs-btn-color: #9dc7d2;
    --bs-btn-border-color: #9dc7d2;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #9dc7d2;
    --bs-btn-hover-border-color: #9dc7d2;
    --bs-btn-focus-shadow-rgb: 157, 199, 210;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #9dc7d2;
    --bs-btn-active-border-color: #9dc7d2;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #9dc7d2;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #9dc7d2;
    --bs-gradient: none
}

.btn-outline-warning {
    --bs-btn-color: #ffbc1e;
    --bs-btn-border-color: #ffbc1e;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffbc1e;
    --bs-btn-hover-border-color: #ffbc1e;
    --bs-btn-focus-shadow-rgb: 255, 188, 30;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffbc1e;
    --bs-btn-active-border-color: #ffbc1e;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #ffbc1e;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #ffbc1e;
    --bs-gradient: none
}

.btn-outline-danger {
    --bs-btn-color: #d90331;
    --bs-btn-border-color: #d90331;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d90331;
    --bs-btn-hover-border-color: #d90331;
    --bs-btn-focus-shadow-rgb: 217, 3, 49;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d90331;
    --bs-btn-active-border-color: #d90331;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #d90331;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #d90331;
    --bs-gradient: none
}

.btn-outline-light {
    --bs-btn-color: #ebf4f6;
    --bs-btn-border-color: #ebf4f6;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ebf4f6;
    --bs-btn-hover-border-color: #ebf4f6;
    --bs-btn-focus-shadow-rgb: 235, 244, 246;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ebf4f6;
    --bs-btn-active-border-color: #ebf4f6;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #ebf4f6;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #ebf4f6;
    --bs-gradient: none
}

.btn-outline-dark {
    --bs-btn-color: #253554;
    --bs-btn-border-color: #253554;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #253554;
    --bs-btn-hover-border-color: #253554;
    --bs-btn-focus-shadow-rgb: 37, 53, 84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #253554;
    --bs-btn-active-border-color: #253554;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #253554;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #253554;
    --bs-gradient: none
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: #0000;
    --bs-btn-border-color: #0000;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: #0000;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: #0000;
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-border-color: #0000;
    --bs-btn-box-shadow: 0 0 0 #000;
    --bs-btn-focus-shadow-rgb: 72, 83, 149;
    text-decoration: none
}

.btn-link:focus-visible {
    color: var(--bs-btn-color)
}

.btn-link:hover {
    color: var(--bs-btn-hover-color)
}

.btn-lg {
    --bs-btn-padding-y: 11px;
    --bs-btn-padding-x: 37px;
    --bs-btn-font-size: 1.1111111111rem;
    --bs-btn-border-radius: 30px
}

.btn-sm {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.8749999993rem;
    --bs-btn-border-radius: var(--bs-border-radius-sm)
}

@media(min-width:1200px) {
    .btn-sm {
        --bs-btn-font-size: 0.875rem
    }
}

.fade {
    transition: opacity .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 .35s ease
}

@media(prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.collapsing.collapse-horizontal {
    height: auto;
    transition: width .35s ease;
    width: 0
}

@media(prefers-reduced-motion:reduce) {
    .collapsing.collapse-horizontal {
        transition: none
    }
}

.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    border-bottom: 0;
    border-left: .3em solid #0000;
    border-right: .3em solid #0000;
    border-top: .3em solid;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.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: 0.9999999992rem;
    --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: #2835821a;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #283582;
    --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;
    background-clip: padding-box;
    background-color: var(--bs-dropdown-bg);
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
    box-shadow: var(--bs-dropdown-box-shadow);
    color: var(--bs-dropdown-color);
    display: none;
    font-size: var(--bs-dropdown-font-size);
    list-style: none;
    margin: 0;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    position: absolute;
    text-align: left;
    z-index: var(--bs-dropdown-zindex)
}

@media(min-width:1200px) {
    .dropdown-menu {
        --bs-dropdown-font-size: 1rem
    }
}

.dropdown-menu[data-bs-popper] {
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
    top: 100%
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    left: 0;
    right: auto
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    left: auto;
    right: 0
}

@media(min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    bottom: 100%;
    margin-bottom: var(--bs-dropdown-spacer);
    margin-top: 0;
    top: auto
}

.dropup .dropdown-toggle:after {
    border-bottom: .3em solid;
    border-left: .3em solid #0000;
    border-right: .3em solid #0000;
    border-top: 0;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    left: 100%;
    margin-left: var(--bs-dropdown-spacer);
    margin-top: 0;
    right: auto;
    top: 0
}

.dropend .dropdown-toggle:after {
    border-bottom: .3em solid #0000;
    border-left: .3em solid;
    border-right: 0;
    border-top: .3em solid #0000;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropend .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-toggle:after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    left: auto;
    margin-right: var(--bs-dropdown-spacer);
    margin-top: 0;
    right: 100%;
    top: 0
}

.dropstart .dropdown-toggle:after {
    content: "";
    display: inline-block;
    display: none;
    margin-left: .255em;
    vertical-align: .255em
}

.dropstart .dropdown-toggle:before {
    border-bottom: .3em solid #0000;
    border-right: .3em solid;
    border-top: .3em solid #0000;
    content: "";
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em
}

.dropstart .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropstart .dropdown-toggle:before {
    vertical-align: 0
}

.dropdown-divider {
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    opacity: 1;
    overflow: hidden
}

.dropdown-item {
    background-color: #0000;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
    clear: both;
    color: var(--bs-dropdown-link-color);
    display: block;
    font-weight: 400;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    text-align: inherit;
    white-space: nowrap;
    width: 100%
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--bs-dropdown-link-hover-bg);
    color: var(--bs-dropdown-link-hover-color)
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-dropdown-link-active-bg);
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    background-color: #0000;
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    color: var(--bs-dropdown-header-color);
    display: block;
    font-size: .8749999993rem;
    margin-bottom: 0;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    white-space: nowrap
}

@media(min-width:1200px) {
    .dropdown-header {
        font-size: .875rem
    }
}

.dropdown-item-text {
    color: var(--bs-dropdown-link-color);
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x)
}

.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: #ffffff26;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #283582;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd
}

.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: #283582;
    --bs-list-group-active-border-color: #283582;
    border-radius: var(--bs-list-group-border-radius);
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 0
}

.list-group-numbered {
    counter-reset: section;
    list-style-type: none
}

.list-group-numbered>.list-group-item:before {
    content: counters(section, ".") ". ";
    counter-increment: section
}

.list-group-item {
    background-color: var(--bs-list-group-bg);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
    color: var(--bs-list-group-color);
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    position: relative
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit
}

.list-group-item.disabled,
.list-group-item:disabled {
    background-color: var(--bs-list-group-disabled-bg);
    color: var(--bs-list-group-disabled-color);
    pointer-events: none
}

.list-group-item.active {
    background-color: var(--bs-list-group-active-bg);
    border-color: var(--bs-list-group-active-border-color);
    color: var(--bs-list-group-active-color);
    z-index: 2
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    border-top-width: var(--bs-list-group-border-width);
    margin-top: calc(var(--bs-list-group-border-width)*-1)
}

.list-group-item-action {
    color: var(--bs-list-group-action-color);
    text-align: inherit;
    width: 100%
}

.list-group-item-action:not(.active):focus,
.list-group-item-action:not(.active):hover {
    background-color: var(--bs-list-group-action-hover-bg);
    color: var(--bs-list-group-action-hover-color);
    text-decoration: none;
    z-index: 1
}

.list-group-item-action:not(.active):active {
    background-color: var(--bs-list-group-action-active-bg);
    color: var(--bs-list-group-action-active-color)
}

.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-bottom-left-radius: 0;
    border-top-right-radius: var(--bs-list-group-border-radius)
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-left-width: 0;
    border-top-width: var(--bs-list-group-border-width)
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    border-left-width: var(--bs-list-group-border-width);
    margin-left: calc(var(--bs-list-group-border-width)*-1)
}

@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-bottom-left-radius: 0;
        border-top-right-radius: var(--bs-list-group-border-radius)
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: var(--bs-list-group-border-width)
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        border-left-width: var(--bs-list-group-border-width);
        margin-left: calc(var(--bs-list-group-border-width)*-1)
    }
}

@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-bottom-left-radius: 0;
        border-top-right-radius: var(--bs-list-group-border-radius)
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: var(--bs-list-group-border-width)
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        border-left-width: var(--bs-list-group-border-width);
        margin-left: calc(var(--bs-list-group-border-width)*-1)
    }
}

@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-bottom-left-radius: 0;
        border-top-right-radius: var(--bs-list-group-border-radius)
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: var(--bs-list-group-border-width)
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        border-left-width: var(--bs-list-group-border-width);
        margin-left: calc(var(--bs-list-group-border-width)*-1)
    }
}

@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-bottom-left-radius: 0;
        border-top-right-radius: var(--bs-list-group-border-radius)
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: var(--bs-list-group-border-width)
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        border-left-width: var(--bs-list-group-border-width);
        margin-left: calc(var(--bs-list-group-border-width)*-1)
    }
}

@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-bottom-left-radius: 0;
        border-top-right-radius: var(--bs-list-group-border-radius)
    }

    .list-group-horizontal-xxl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: var(--bs-list-group-border-width)
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
        border-left-width: var(--bs-list-group-border-width);
        margin-left: calc(var(--bs-list-group-border-width)*-1)
    }
}

.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)
}

.clearfix:after {
    clear: both;
    content: "";
    display: block
}

.text-bg-primary {
    background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #fff !important
}

.text-bg-secondary {
    background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #fff !important
}

.text-bg-success {
    background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #000 !important
}

.text-bg-info {
    background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #000 !important
}

.text-bg-warning {
    background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #000 !important
}

.text-bg-danger {
    background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #fff !important
}

.text-bg-light {
    background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #000 !important
}

.text-bg-dark {
    background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
    color: #fff !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:focus,
.link-primary:hover {
    color: RGBA(32, 42, 104, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(32, 42, 104, 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:focus,
.link-secondary:hover {
    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:focus,
.link-success:hover {
    color: RGBA(143, 221, 129, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(143, 221, 129, 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:focus,
.link-info:hover {
    color: RGBA(177, 210, 219, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(177, 210, 219, 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:focus,
.link-warning:hover {
    color: RGBA(255, 201, 75, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(255, 201, 75, 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:focus,
.link-danger:hover {
    color: RGBA(174, 2, 39, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(174, 2, 39, 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:focus,
.link-light:hover {
    color: RGBA(239, 246, 248, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(239, 246, 248, 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:focus,
.link-dark:hover {
    color: RGBA(30, 42, 67, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(30, 42, 67, 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:focus,
.link-body-emphasis:hover {
    color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, .75)) !important;
    text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, .75)) !important
}

.focus-ring:focus {
    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);
    outline: 0
}

.icon-link {
    align-items: center;
    backface-visibility: hidden;
    display: inline-flex;
    gap: .375rem;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, .5));
    text-underline-offset: .25em
}

.icon-link>.bi {
    flex-shrink: 0;
    height: 1em;
    width: 1em;
    fill: currentcolor;
    transition: transform .2s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .icon-link>.bi {
        transition: none
    }
}

.icon-link-hover:focus-visible>.bi,
.icon-link-hover:hover>.bi {
    transform: var(--bs-icon-link-transform, translate3d(.25em, 0, 0))
}

.ratio {
    position: relative;
    width: 100%
}

.ratio:before {
    content: "";
    display: block;
    padding-top: var(--bs-aspect-ratio)
}

.ratio>* {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%
}

.fixed-top {
    top: 0
}

.fixed-bottom,
.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1030
}

.fixed-bottom {
    bottom: 0
}

.sticky-top {
    top: 0
}

.sticky-bottom,
.sticky-top {
    position: sticky;
    z-index: 1020
}

.sticky-bottom {
    bottom: 0
}

@media(min-width:576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-sm-bottom {
        bottom: 0;
        position: sticky;
        z-index: 1020
    }
}

@media(min-width:768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-md-bottom {
        bottom: 0;
        position: sticky;
        z-index: 1020
    }
}

@media(min-width:992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-lg-bottom {
        bottom: 0;
        position: sticky;
        z-index: 1020
    }
}

@media(min-width:1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xl-bottom {
        bottom: 0;
        position: sticky;
        z-index: 1020
    }
}

@media(min-width:1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xxl-bottom {
        bottom: 0;
        position: sticky;
        z-index: 1020
    }
}

.hstack {
    align-items: center;
    flex-direction: row
}

.hstack,
.vstack {
    align-self: stretch;
    display: flex
}

.vstack {
    flex: 1 1 auto;
    flex-direction: column
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    width: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important
}

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),
.visually-hidden:not(caption) {
    position: absolute !important
}

.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
    overflow: hidden !important
}

.stretched-link:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.vr {
    align-self: stretch;
    background-color: currentcolor;
    display: inline-block;
    min-height: 1em;
    opacity: .25;
    width: var(--bs-border-width)
}

.align-baseline {
    vertical-align: initial !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: .25 !important
}

.opacity-50 {
    opacity: .5 !important
}

.opacity-75 {
    opacity: .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 {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
}

.border-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
}

.border-black {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important
}

.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !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-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !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: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important
}

.mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.my-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.my-1 {
    margin-bottom: .25rem !important;
    margin-top: .25rem !important
}

.my-2 {
    margin-bottom: .5rem !important;
    margin-top: .5rem !important
}

.my-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important
}

.my-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important
}

.my-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important
}

.my-auto {
    margin-bottom: auto !important;
    margin-top: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important
}

.px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important
}

.py-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.py-1 {
    padding-bottom: .25rem !important;
    padding-top: .25rem !important
}

.py-2 {
    padding-bottom: .5rem !important;
    padding-top: .5rem !important
}

.py-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important
}

.py-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important
}

.py-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .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: .25rem !important
}

.row-gap-2 {
    row-gap: .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: .25rem !important
}

.column-gap-2 {
    column-gap: .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: calc(1.27083rem + 3.09375vw) !important
}

.fs-2 {
    font-size: calc(1.26361rem + 2.02125vw) !important
}

.fs-3 {
    font-size: calc(1.25083rem + .12375vw) !important
}

.fs-4 {
    font-size: 1rem !important
}

.fs-5 {
    font-size: 1.249999999rem !important
}

.fs-6 {
    font-size: .9999999992rem !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: #00000080 !important
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: #ffffff80 !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-emphasis {
    color: var(--bs-primary-text-emphasis) !important
}

.text-secondary-emphasis {
    color: var(--bs-secondary-text-emphasis) !important
}

.text-success-emphasis {
    color: var(--bs-success-text-emphasis) !important
}

.text-info-emphasis {
    color: var(--bs-info-text-emphasis) !important
}

.text-warning-emphasis {
    color: var(--bs-warning-text-emphasis) !important
}

.text-danger-emphasis {
    color: var(--bs-danger-text-emphasis) !important
}

.text-light-emphasis {
    color: var(--bs-light-text-emphasis) !important
}

.text-dark-emphasis {
    color: var(--bs-dark-text-emphasis) !important
}

.link-opacity-10,
.link-opacity-10-hover:hover {
    --bs-link-opacity: 0.1
}

.link-opacity-25,
.link-opacity-25-hover:hover {
    --bs-link-opacity: 0.25
}

.link-opacity-50,
.link-opacity-50-hover:hover {
    --bs-link-opacity: 0.5
}

.link-opacity-75,
.link-opacity-75-hover:hover {
    --bs-link-opacity: 0.75
}

.link-opacity-100,
.link-opacity-100-hover:hover {
    --bs-link-opacity: 1
}

.link-offset-1,
.link-offset-1-hover:hover {
    text-underline-offset: .125em !important
}

.link-offset-2,
.link-offset-2-hover:hover {
    text-underline-offset: .25em !important
}

.link-offset-3,
.link-offset-3-hover:hover {
    text-underline-offset: .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,
.link-underline-opacity-0-hover:hover {
    --bs-link-underline-opacity: 0
}

.link-underline-opacity-10,
.link-underline-opacity-10-hover:hover {
    --bs-link-underline-opacity: 0.1
}

.link-underline-opacity-25,
.link-underline-opacity-25-hover:hover {
    --bs-link-underline-opacity: 0.25
}

.link-underline-opacity-50,
.link-underline-opacity-50-hover:hover {
    --bs-link-underline-opacity: 0.5
}

.link-underline-opacity-75,
.link-underline-opacity-75-hover:hover {
    --bs-link-underline-opacity: 0.75
}

.link-underline-opacity-100,
.link-underline-opacity-100-hover:hover {
    --bs-link-underline-opacity: 1
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: #0000 !important
}

.bg-body-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !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
}

.user-select-all {
    -webkit-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    user-select: none !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: var(--bs-border-radius) !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important
}

.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important
}

.rounded-4 {
    border-radius: var(--bs-border-radius-xl) !important
}

.rounded-5 {
    border-radius: var(--bs-border-radius-xxl) !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important
}

.rounded-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important
}

.rounded-top-1 {
    border-top-left-radius: var(--bs-border-radius-sm) !important;
    border-top-right-radius: var(--bs-border-radius-sm) !important
}

.rounded-top-2 {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-top-3 {
    border-top-left-radius: var(--bs-border-radius-lg) !important;
    border-top-right-radius: var(--bs-border-radius-lg) !important
}

.rounded-top-4 {
    border-top-left-radius: var(--bs-border-radius-xl) !important;
    border-top-right-radius: var(--bs-border-radius-xl) !important
}

.rounded-top-5 {
    border-top-left-radius: var(--bs-border-radius-xxl) !important;
    border-top-right-radius: var(--bs-border-radius-xxl) !important
}

.rounded-top-circle {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important
}

.rounded-top-pill {
    border-top-left-radius: var(--bs-border-radius-pill) !important;
    border-top-right-radius: var(--bs-border-radius-pill) !important
}

.rounded-end {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-end-0 {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important
}

.rounded-end-1 {
    border-bottom-right-radius: var(--bs-border-radius-sm) !important;
    border-top-right-radius: var(--bs-border-radius-sm) !important
}

.rounded-end-2 {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-end-3 {
    border-bottom-right-radius: var(--bs-border-radius-lg) !important;
    border-top-right-radius: var(--bs-border-radius-lg) !important
}

.rounded-end-4 {
    border-bottom-right-radius: var(--bs-border-radius-xl) !important;
    border-top-right-radius: var(--bs-border-radius-xl) !important
}

.rounded-end-5 {
    border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
    border-top-right-radius: var(--bs-border-radius-xxl) !important
}

.rounded-end-circle {
    border-bottom-right-radius: 50% !important;
    border-top-right-radius: 50% !important
}

.rounded-end-pill {
    border-bottom-right-radius: var(--bs-border-radius-pill) !important;
    border-top-right-radius: var(--bs-border-radius-pill) !important
}

.rounded-bottom {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important
}

.rounded-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.rounded-bottom-1 {
    border-bottom-left-radius: var(--bs-border-radius-sm) !important;
    border-bottom-right-radius: var(--bs-border-radius-sm) !important
}

.rounded-bottom-2 {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important
}

.rounded-bottom-3 {
    border-bottom-left-radius: var(--bs-border-radius-lg) !important;
    border-bottom-right-radius: var(--bs-border-radius-lg) !important
}

.rounded-bottom-4 {
    border-bottom-left-radius: var(--bs-border-radius-xl) !important;
    border-bottom-right-radius: var(--bs-border-radius-xl) !important
}

.rounded-bottom-5 {
    border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
    border-bottom-right-radius: var(--bs-border-radius-xxl) !important
}

.rounded-bottom-circle {
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important
}

.rounded-bottom-pill {
    border-bottom-left-radius: var(--bs-border-radius-pill) !important;
    border-bottom-right-radius: var(--bs-border-radius-pill) !important
}

.rounded-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important
}

.rounded-start-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important
}

.rounded-start-1 {
    border-bottom-left-radius: var(--bs-border-radius-sm) !important;
    border-top-left-radius: var(--bs-border-radius-sm) !important
}

.rounded-start-2 {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important
}

.rounded-start-3 {
    border-bottom-left-radius: var(--bs-border-radius-lg) !important;
    border-top-left-radius: var(--bs-border-radius-lg) !important
}

.rounded-start-4 {
    border-bottom-left-radius: var(--bs-border-radius-xl) !important;
    border-top-left-radius: var(--bs-border-radius-xl) !important
}

.rounded-start-5 {
    border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
    border-top-left-radius: var(--bs-border-radius-xxl) !important
}

.rounded-start-circle {
    border-bottom-left-radius: 50% !important;
    border-top-left-radius: 50% !important
}

.rounded-start-pill {
    border-bottom-left-radius: var(--bs-border-radius-pill) !important;
    border-top-left-radius: var(--bs-border-radius-pill) !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
}

@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
    }

    .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: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-sm-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-sm-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-sm-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-sm-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-sm-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-sm-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-sm-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-sm-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-sm-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-sm-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-right: 0 !important
    }

    .me-sm-1 {
        margin-right: .25rem !important
    }

    .me-sm-2 {
        margin-right: .5rem !important
    }

    .me-sm-3 {
        margin-right: 1rem !important
    }

    .me-sm-4 {
        margin-right: 1.5rem !important
    }

    .me-sm-5 {
        margin-right: 3rem !important
    }

    .me-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-left: 0 !important
    }

    .ms-sm-1 {
        margin-left: .25rem !important
    }

    .ms-sm-2 {
        margin-left: .5rem !important
    }

    .ms-sm-3 {
        margin-left: 1rem !important
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important
    }

    .ms-sm-5 {
        margin-left: 3rem !important
    }

    .ms-sm-auto {
        margin-left: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-sm-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-sm-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-sm-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-sm-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-sm-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-sm-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-sm-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-sm-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-sm-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-right: 0 !important
    }

    .pe-sm-1 {
        padding-right: .25rem !important
    }

    .pe-sm-2 {
        padding-right: .5rem !important
    }

    .pe-sm-3 {
        padding-right: 1rem !important
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important
    }

    .pe-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-left: 0 !important
    }

    .ps-sm-1 {
        padding-left: .25rem !important
    }

    .ps-sm-2 {
        padding-left: .5rem !important
    }

    .ps-sm-3 {
        padding-left: 1rem !important
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important
    }

    .ps-sm-5 {
        padding-left: 3rem !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .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: .25rem !important
    }

    .row-gap-sm-2 {
        row-gap: .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: .25rem !important
    }

    .column-gap-sm-2 {
        column-gap: .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
    }

    .text-sm-start {
        text-align: left !important
    }

    .text-sm-end {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !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
    }

    .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: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-md-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-md-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-md-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-md-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-md-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-md-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-md-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-md-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-md-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-md-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-1 {
        margin-right: .25rem !important
    }

    .me-md-2 {
        margin-right: .5rem !important
    }

    .me-md-3 {
        margin-right: 1rem !important
    }

    .me-md-4 {
        margin-right: 1.5rem !important
    }

    .me-md-5 {
        margin-right: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-1 {
        margin-left: .25rem !important
    }

    .ms-md-2 {
        margin-left: .5rem !important
    }

    .ms-md-3 {
        margin-left: 1rem !important
    }

    .ms-md-4 {
        margin-left: 1.5rem !important
    }

    .ms-md-5 {
        margin-left: 3rem !important
    }

    .ms-md-auto {
        margin-left: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-md-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-md-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-md-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-md-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-md-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-md-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-md-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-md-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-md-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-1 {
        padding-right: .25rem !important
    }

    .pe-md-2 {
        padding-right: .5rem !important
    }

    .pe-md-3 {
        padding-right: 1rem !important
    }

    .pe-md-4 {
        padding-right: 1.5rem !important
    }

    .pe-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-left: 0 !important
    }

    .ps-md-1 {
        padding-left: .25rem !important
    }

    .ps-md-2 {
        padding-left: .5rem !important
    }

    .ps-md-3 {
        padding-left: 1rem !important
    }

    .ps-md-4 {
        padding-left: 1.5rem !important
    }

    .ps-md-5 {
        padding-left: 3rem !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .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: .25rem !important
    }

    .row-gap-md-2 {
        row-gap: .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: .25rem !important
    }

    .column-gap-md-2 {
        column-gap: .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
    }

    .text-md-start {
        text-align: left !important
    }

    .text-md-end {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !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
    }

    .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: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-lg-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-lg-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-lg-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-lg-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-lg-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-lg-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-lg-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-lg-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-lg-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-lg-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .me-lg-1 {
        margin-right: .25rem !important
    }

    .me-lg-2 {
        margin-right: .5rem !important
    }

    .me-lg-3 {
        margin-right: 1rem !important
    }

    .me-lg-4 {
        margin-right: 1.5rem !important
    }

    .me-lg-5 {
        margin-right: 3rem !important
    }

    .me-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-left: 0 !important
    }

    .ms-lg-1 {
        margin-left: .25rem !important
    }

    .ms-lg-2 {
        margin-left: .5rem !important
    }

    .ms-lg-3 {
        margin-left: 1rem !important
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important
    }

    .ms-lg-5 {
        margin-left: 3rem !important
    }

    .ms-lg-auto {
        margin-left: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-lg-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-lg-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-lg-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-lg-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-lg-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-lg-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-lg-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-lg-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-lg-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-1 {
        padding-right: .25rem !important
    }

    .pe-lg-2 {
        padding-right: .5rem !important
    }

    .pe-lg-3 {
        padding-right: 1rem !important
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important
    }

    .pe-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-left: 0 !important
    }

    .ps-lg-1 {
        padding-left: .25rem !important
    }

    .ps-lg-2 {
        padding-left: .5rem !important
    }

    .ps-lg-3 {
        padding-left: 1rem !important
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important
    }

    .ps-lg-5 {
        padding-left: 3rem !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .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: .25rem !important
    }

    .row-gap-lg-2 {
        row-gap: .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: .25rem !important
    }

    .column-gap-lg-2 {
        column-gap: .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
    }

    .text-lg-start {
        text-align: left !important
    }

    .text-lg-end {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !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
    }

    .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: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xl-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-xl-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-xl-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-xl-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-xl-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-xl-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-xl-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-right: 0 !important
    }

    .me-xl-1 {
        margin-right: .25rem !important
    }

    .me-xl-2 {
        margin-right: .5rem !important
    }

    .me-xl-3 {
        margin-right: 1rem !important
    }

    .me-xl-4 {
        margin-right: 1.5rem !important
    }

    .me-xl-5 {
        margin-right: 3rem !important
    }

    .me-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-left: 0 !important
    }

    .ms-xl-1 {
        margin-left: .25rem !important
    }

    .ms-xl-2 {
        margin-left: .5rem !important
    }

    .ms-xl-3 {
        margin-left: 1rem !important
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xl-5 {
        margin-left: 3rem !important
    }

    .ms-xl-auto {
        margin-left: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xl-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-xl-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-xl-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-xl-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-xl-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-xl-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-right: 0 !important
    }

    .pe-xl-1 {
        padding-right: .25rem !important
    }

    .pe-xl-2 {
        padding-right: .5rem !important
    }

    .pe-xl-3 {
        padding-right: 1rem !important
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-left: 0 !important
    }

    .ps-xl-1 {
        padding-left: .25rem !important
    }

    .ps-xl-2 {
        padding-left: .5rem !important
    }

    .ps-xl-3 {
        padding-left: 1rem !important
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xl-5 {
        padding-left: 3rem !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .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: .25rem !important
    }

    .row-gap-xl-2 {
        row-gap: .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: .25rem !important
    }

    .column-gap-xl-2 {
        column-gap: .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
    }

    .text-xl-start {
        text-align: left !important
    }

    .text-xl-end {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !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
    }

    .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: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xxl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xxl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xxl-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-xxl-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-xxl-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-xxl-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-xxl-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-xxl-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-xxl-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-right: 0 !important
    }

    .me-xxl-1 {
        margin-right: .25rem !important
    }

    .me-xxl-2 {
        margin-right: .5rem !important
    }

    .me-xxl-3 {
        margin-right: 1rem !important
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important
    }

    .me-xxl-5 {
        margin-right: 3rem !important
    }

    .me-xxl-auto {
        margin-right: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-left: 0 !important
    }

    .ms-xxl-1 {
        margin-left: .25rem !important
    }

    .ms-xxl-2 {
        margin-left: .5rem !important
    }

    .ms-xxl-3 {
        margin-left: 1rem !important
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-left: 3rem !important
    }

    .ms-xxl-auto {
        margin-left: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xxl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xxl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xxl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xxl-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-xxl-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-xxl-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-xxl-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-xxl-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-xxl-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-right: 0 !important
    }

    .pe-xxl-1 {
        padding-right: .25rem !important
    }

    .pe-xxl-2 {
        padding-right: .5rem !important
    }

    .pe-xxl-3 {
        padding-right: 1rem !important
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-right: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-left: 0 !important
    }

    .ps-xxl-1 {
        padding-left: .25rem !important
    }

    .ps-xxl-2 {
        padding-left: .5rem !important
    }

    .ps-xxl-3 {
        padding-left: 1rem !important
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-left: 3rem !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: .25rem !important
    }

    .gap-xxl-2 {
        gap: .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: .25rem !important
    }

    .row-gap-xxl-2 {
        row-gap: .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: .25rem !important
    }

    .column-gap-xxl-2 {
        column-gap: .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
    }

    .text-xxl-start {
        text-align: left !important
    }

    .text-xxl-end {
        text-align: right !important
    }

    .text-xxl-center {
        text-align: center !important
    }
}

@media(min-width:1200px) {
    .fs-1 {
        font-size: 3.3333333333rem !important
    }

    .fs-2 {
        font-size: 2.6111111111rem !important
    }

    .fs-3 {
        font-size: 1.3333333333rem !important
    }

    .fs-5 {
        font-size: 1.25rem !important
    }

    .fs-6 {
        font-size: 1rem !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
    }
}

[hidden][hidden] {
    display: none !important
}

up-wrapper {
    display: inline-block
}

up-bounds {
    position: absolute
}

.up-focus-hidden:focus-visible {
    outline-color: #0000 !important;
    outline-style: none !important
}

body.up-scrollbar-away {
    padding-right: calc(var(--up-scrollbar-width) + var(--up-original-padding-right)) !important
}

body.up-scrollbar-away,
html:has(>body.up-scrollbar-away) {
    overflow-y: hidden !important;
    overflow-y: clip !important
}

body.up-scrollbar-away .up-scrollbar-away {
    right: calc(var(--up-scrollbar-width) + var(--up-original-right)) !important
}

.up-request-loader {
    display: none
}

up-progress-bar {
    background-color: #007bff;
    height: 3px;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 999999999
}

up-focus-trap {
    height: 0;
    left: 0;
    position: fixed;
    top: 0;
    width: 0
}

up-cover,
up-cover-viewport,
up-drawer,
up-drawer-backdrop,
up-drawer-viewport,
up-modal,
up-modal-backdrop,
up-modal-viewport {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0
}

up-drawer-box,
up-modal-box {
    box-shadow: 0 0 10px 1px #0000004d
}

up-popup {
    box-shadow: 0 0 4px #0000004d
}

up-cover-box:focus,
up-cover-box:focus-visible,
up-cover:focus,
up-cover:focus-visible,
up-drawer-box:focus,
up-drawer-box:focus-visible,
up-drawer:focus,
up-drawer:focus-visible,
up-modal-box:focus,
up-modal-box:focus-visible,
up-modal:focus,
up-modal:focus-visible,
up-popup:focus,
up-popup:focus-visible {
    outline: none
}

up-cover,
up-drawer,
up-modal {
    position: fixed;
    z-index: 2000
}

up-drawer-backdrop,
up-modal-backdrop {
    background: #0006;
    position: absolute
}

up-cover-viewport,
up-drawer-viewport,
up-modal-viewport {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    position: absolute
}

up-cover-box,
up-drawer-box,
up-modal-box,
up-popup {
    background-color: #fff;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    padding: 20px;
    position: relative
}

up-cover-content,
up-drawer-content,
up-modal-content,
up-popup-content {
    display: block
}

up-popup {
    z-index: 1000
}

up-cover-dismiss,
up-drawer-dismiss,
up-modal-dismiss,
up-popup-dismiss {
    color: #888;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: .5;
    position: absolute;
    right: 10px;
    top: 10px
}

up-modal[nesting="0"] up-modal-viewport {
    padding: 25px 15px
}

up-modal[nesting="1"] up-modal-viewport {
    padding: 50px 30px
}

up-modal[nesting="2"] up-modal-viewport {
    padding: 75px 45px
}

up-modal[nesting="3"] up-modal-viewport {
    padding: 100px 60px
}

up-modal[nesting="4"] up-modal-viewport {
    padding: 125px 75px
}

up-modal[size=small] up-modal-box {
    width: 350px
}

up-modal[size=medium] up-modal-box {
    width: 650px
}

up-modal[size=large] up-modal-box {
    width: 1000px
}

up-modal[size=grow] up-modal-box {
    width: auto
}

up-modal[size=full] up-modal-box {
    width: 100%
}

up-drawer-viewport {
    justify-content: flex-start
}

up-drawer[position=right] up-drawer-viewport {
    justify-content: flex-end
}

up-drawer-box {
    min-height: 100vh
}

up-drawer[size=small] up-drawer-box {
    width: 150px
}

up-drawer[size=medium] up-drawer-box {
    width: 340px
}

up-drawer[size=large] up-drawer-box {
    width: 600px
}

up-drawer[size=grow] up-drawer-box {
    width: auto
}

up-drawer[size=full] up-drawer-box {
    width: 100%
}

up-cover-box {
    min-height: 100vh;
    padding: 0;
    width: 100%
}

up-popup {
    padding: 15px;
    text-align: left
}

up-popup[size=small] {
    width: 180px
}

up-popup[size=medium] {
    width: 300px
}

up-popup[size=large] {
    width: 550px
}

up-popup[size=grow] up-popup {
    width: auto
}

up-popup[size=full] up-popup {
    width: 100%
}

[up-clickable][role=link],
[up-expand]:not([role]),
[up-expand][role=link] {
    cursor: pointer
}

up-drawer .container,
up-drawer .container-fluid,
up-drawer .container-lg,
up-drawer .container-md,
up-drawer .container-sm,
up-drawer .container-xl,
up-modal .container,
up-modal .container-fluid,
up-modal .container-lg,
up-modal .container-md,
up-modal .container-sm,
up-modal .container-xl,
up-popup .container,
up-popup .container-fluid,
up-popup .container-lg,
up-popup .container-md,
up-popup .container-sm,
up-popup .container-xl {
    max-width: none;
    padding-left: 0;
    padding-right: 0
}

html {
    font-size: 18px
}

body {
    background-color: #fff;
    overflow-y: scroll
}

body[data-env=test] {
    text-transform: none !important
}

.h1,
h1 {
    font-weight: 700
}

.date-group.input-group {
    flex-wrap: nowrap
}

.date-group .date-group--input {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    text-align: center
}

.date-group .date-group--input.-day,
.date-group .date-group--input.-month {
    flex: 1 2 30%;
    margin-right: .5rem
}

.date-group .date-group--input.-year {
    flex: 2 1 35%
}

.date-group .date-group--input:focus::placeholder {
    opacity: 0 !important
}

.date-input {
    --min-width: 7.5em;
    flex-basis: var(--min-width)
}

.date-input:not(:focus)::placeholder {
    opacity: 0 !important
}

.input-group>.date-input.form-control {
    flex-basis: var(--min-width);
    flex-grow: 0;
    flex-shrink: 2
}

.form-group.-stretch .date-input {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 0
}

.-plain-input-style .input-group .form-control.date-input {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    flex: 1 1 auto
}

.debug-frame {
    background: #fff;
    border: 1px solid #ff4500;
    bottom: 0;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    position: fixed;
    right: 0
}

body[data-env=test] .ghost-in-tests {
    display: block !important;
    opacity: .1;
    position: absolute
}

body[data-env=test] input[type=file] {
    opacity: .1
}

@media print {
    .page-break {
        page-break-before: always
    }
}

.input-group .time-input {
    flex: 0 1 75px
}

.input-group .time-input.is-invalid {
    flex-basis: 100px
}

.time-input:not(:focus)::placeholder {
    opacity: 0 !important
}

form.up-active {
    cursor: progress
}

form.up-active button[type=submit] {
    box-shadow: none;
    opacity: .65;
    pointer-events: none
}

.alternative-tariff-selection {
    margin: 1.5rem 0;
    text-align: center
}

.alternative-tariff-selection--input {
    background-color: initial;
    border: 1px solid #adb5bd
}

.alternative-tariff-selection--input:active,
.alternative-tariff-selection--input:checked {
    background-color: #f90 !important;
    border-color: #f90 !important
}

.alternative-tariff-selection--label {
    font-weight: 400
}

.benefit {
    display: inline-grid;
    gap: .25rem .5rem;
    grid-template-areas: "text-top" "text-bottom";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr
}

.benefit.-with-logo {
    grid-template-areas: "logo text-top" "logo text-bottom";
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr
}

.benefits.-column .benefit+.benefit {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem
}

.benefit--logo {
    align-self: center;
    grid-area: logo
}

.benefit--logo img {
    max-height: 60px
}

.benefit--text-top {
    align-self: end;
    color: #606880;
    font-size: 14px;
    grid-area: text-top
}

.benefit--text-top img {
    display: inline-block;
    height: 1rem;
    vertical-align: text-bottom
}

.benefit--text-top a:not(.btn) {
    color: #606880;
    text-decoration: underline
}

.benefit--text-top a:not(.btn):focus,
.benefit--text-top a:not(.btn):hover {
    text-decoration: none
}

.benefit--text-bottom {
    align-self: start;
    color: #606880;
    font-size: 14px;
    grid-area: text-bottom
}

.benefit--text-bottom a:not(.btn) {
    color: #606880;
    text-decoration: underline
}

.benefit--text-bottom a:not(.btn):focus,
.benefit--text-bottom a:not(.btn):hover {
    text-decoration: none
}

.benefits {
    display: flex;
    flex-direction: column;
    margin-top: 3rem
}

.benefits.-row {
    align-items: center
}

.benefits.-column {
    margin: 0
}

.benefits--title {
    margin-bottom: 1rem
}

@media(max-width:767.98px) {
    .benefits--title {
        display: none
    }
}

.benefits--items {
    display: flex;
    width: 100%
}

.benefits.-row .benefits--items {
    align-items: center;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between
}

@media(max-width:767.98px) {
    .benefits.-row .benefits--items {
        flex-direction: column;
        gap: 1rem
    }
}

.benefits.-column .benefits--items {
    flex-direction: column;
    gap: 1rem
}

.check-bullet {
    background-color: #ffbc1e;
    border-radius: 50%;
    height: 48px;
    position: relative;
    width: 48px
}

@media(min-width:992px) {
    .check-bullet {
        height: 60px;
        width: 60px
    }
}

.check-bullet:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='m19.728 3 1.744.981-9.56 16.994L3 14.29l1.2-1.6 7.087 5.315z'/%3E%3C/svg%3E") no-repeat 50%;
    content: "";
    height: 24px;
    left: calc(50% - 12px);
    position: absolute;
    top: calc(50% - 12px);
    width: 24px
}

.checked-list {
    list-style: none;
    padding-left: 0
}

.checked-list>li {
    padding-left: 1.5em;
    position: relative
}

.checked-list>li:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2322872f' fill-rule='evenodd' d='m19.728 3 1.744.981-9.56 16.994L3 14.29l1.2-1.6 7.087 5.315z'/%3E%3C/svg%3E") no-repeat left 0 top 60%;
    background-size: 75%;
    content: "";
    display: inline-block;
    height: 1.5em;
    line-height: 0;
    margin-bottom: -.25em;
    margin-left: -1.5em;
    margin-top: -.25em;
    width: 1.5em
}

.contact-links {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin-bottom: 0;
    padding: 0
}

@media(min-width:768px) {
    .contact-links {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center
    }
}

.contact-links>li {
    display: flex;
    line-height: 2;
    margin: 0;
    padding: 0
}

@media(min-width:768px) {
    .contact-links>li {
        border-bottom-width: 0;
        border-left: 1px solid #e6e6e6;
        border-right-width: 1px;
        border-top-width: 0;
        margin-right: -1px;
        padding-left: 20px;
        padding-right: 20px
    }

    .contact-links>li:first-child {
        border-left-width: 0;
        padding-left: 0
    }

    .contact-links>li:last-child {
        border-right-width: 0;
        padding-right: 0
    }
}

.contact-links a {
    color: #1b1b1b;
    font-weight: 500
}

.contact-links a:focus,
.contact-links a:hover {
    color: var(--bs-secondary-color)
}

.container-narrow {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

@media(min-width:576px) {
    .container-narrow {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .container-narrow {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .container-narrow {
        max-width: 1000px
    }
}

@media(min-width:1200px) {
    .container-narrow {
        max-width: 1200px;
        padding-left: 120px;
        padding-right: 120px
    }

    up-modal .container-narrow {
        padding-left: 0;
        padding-right: 0
    }
}

.container-narrow .container-narrow {
    padding-left: 0;
    padding-right: 0
}

@media(min-width:992px) {
    .container-narrow .container-narrow {
        padding-left: 83.3333333333px;
        padding-right: 83.3333333333px
    }
}

@media(min-width:1200px) {
    .container-narrow .container-narrow {
        padding-left: 100px;
        padding-right: 100px
    }

    .container-narrow--grow {
        margin-left: -100px;
        margin-right: -100px
    }
}

.contract-details {
    display: flex;
    flex-direction: column
}

.contract-details--line {
    display: flex
}

@media(max-width:991.98px) {
    .contract-details--line {
        flex-wrap: wrap;
        justify-content: space-between
    }
}

@media(min-width:992px) {
    .contract-details--line:first-child:not(:last-child) {
        padding-top: 2rem
    }

    .contract-details--line+.contract-details--line {
        margin-top: 1rem
    }
}

.contract-details--item {
    flex: 0 0 auto;
    margin-left: 1.5rem
}

@media(max-width:991.98px) {
    .contract-details--item {
        margin: .5rem 0;
        width: calc(50% - 20px)
    }
}

@media(max-width:991.98px)and (max-width:991.98px) {
    .contract-details--item {
        width: calc(50% - 10px)
    }
}

@media(max-width:991.98px)and (max-width:420px) {
    .contract-details--item {
        font-size: 11px;
        width: calc(50% - 4px)
    }
}

.contract-details--item.-flexible {
    flex-shrink: 1;
    overflow: hidden
}

.contract-offer-details {
    display: flex;
    font-weight: 600;
    justify-content: center;
    margin-top: 3rem
}

.contract-offer-details a:not(.btn) {
    color: #283582;
    text-decoration: underline
}

.contract-offer-details a:not(.btn):focus,
.contract-offer-details a:not(.btn):hover {
    text-decoration: none
}

@media(max-width:575.98px) {
    .cookie-consent-dialog--text {
        font-size: .8em
    }

    .cookie-consent-dialog--options p,
    .cookie-consent-dialog--text {
        line-height: 1.25
    }
}

.cookie-consent-dialog--heading {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

@media(max-width:575.98px) {
    .cookie-consent-dialog--heading {
        align-items: baseline
    }

    .cookie-consent-dialog--heading>h2 {
        font-size: 18px;
        word-wrap: break-word;
        flex: 1 1 0
    }
}

.cookie-consent-dialog--heading>a {
    flex: 0 0 auto;
    font-size: .8em;
    margin-bottom: .5rem;
    margin-left: 1rem
}

.cookie-consent-dialog--buttons {
    align-items: center;
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
    justify-content: space-between
}

@media(min-width:576px) {
    .cookie-consent-dialog--buttons {
        flex-direction: row
    }
}

.cookie-consent-dialog--buttons-button-group {
    display: flex;
    flex-direction: column;
    gap: 1em
}

@media(min-width:576px) {
    .cookie-consent-dialog--buttons-button-group {
        flex-direction: row
    }
}

.cookie-consent-dialog--checkbox-row {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.customer-feedback {
    font-size: 16px;
    margin-bottom: 1rem
}

.customer-feedback--name {
    font-weight: 700;
    height: 24px;
    margin-bottom: .5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.customer-feedback--logo {
    height: 1.5em;
    margin-top: .5rem
}

.customer-feedback--logo.-provenexpert {
    height: 2.5em
}

.customer-feedback--logo.-google {
    padding-top: .5em
}

.customer-feedback--rating {
    margin-top: 1rem;
    min-height: 50px;
    padding-left: 60px;
    padding-top: 4px;
    position: relative
}

.customer-feedback--rating:before {
    content: "";
    display: block;
    height: 20px;
    margin-top: 4px;
    min-width: 112px
}

.customer-feedback--rating:after {
    background: #c8b274 url("../images/feedback_person-803e462d.svg") no-repeat 50%;
    border-radius: 50%;
    content: "";
    display: block;
    height: 50px;
    left: 0;
    position: absolute;
    top: 0;
    width: 50px
}

.customer-feedback--rating.-x:before {
    background: url("../images/star-24300d33.svg") no-repeat left 0 top
}

.customer-feedback--rating.-xx:before {
    background: url("../images/star-24300d33.svg") no-repeat left 0 top, url("../images/star-24300d33.svg") no-repeat left 23px top
}

.customer-feedback--rating.-xxx:before {
    background: url("../images/star-24300d33.svg") no-repeat left 0 top, url("../images/star-24300d33.svg") no-repeat left 23px top, url("../images/star-24300d33.svg") no-repeat left 46px top
}

.customer-feedback--rating.-xxxx:before {
    background: url("../images/star-24300d33.svg") no-repeat left 0 top, url("../images/star-24300d33.svg") no-repeat left 23px top, url("../images/star-24300d33.svg") no-repeat left 46px top, url("../images/star-24300d33.svg") no-repeat left 69px top
}

.customer-feedback--rating.-xxxxx:before {
    background: url("../images/star-24300d33.svg") no-repeat left 0 top, url("../images/star-24300d33.svg") no-repeat left 23px top, url("../images/star-24300d33.svg") no-repeat left 46px top, url("../images/star-24300d33.svg") no-repeat left 69px top, url("../images/star-24300d33.svg") no-repeat left 92px top
}

.drawer {
    color: #283582
}

.drawer--heading {
    font-weight: 700
}

.drawer--link {
    margin-left: 10px
}

.error {
    margin: 1rem 0
}

@media(min-width:992px) {
    .error {
        margin: 3rem 0
    }

    .error.-not-found {
        background: no-repeat url("../images/trees-f072481a.svg") right top 20px/contain;
        min-height: 600px
    }

    .error.-server-error {
        background: no-repeat url("../images/trust-eb69bedd.svg") 100% 0/contain;
        min-height: 500px
    }

    .error--title {
        padding-right: 140px
    }

    .error--message {
        padding-right: 280px
    }
}

.faq--section {
    position: relative
}

@media(min-width:992px) {
    .faq--section {
        z-index: 1
    }

    .faq--section:before {
        background: url("../images/bulb-1000f27b.svg") no-repeat left 60px top 330px, url("../images/blubs-ade6ddf6.svg") no-repeat right 60px top 95px;
        background-size: auto 970px, 700px auto;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }

    .faq--list {
        padding-top: 3rem
    }
}

.faq--list.list-group {
    border-radius: 0
}

.faq--list.list-group-item {
    border-left: none;
    border-right: none;
    border-top: none
}

.faq--list.list-group-item:last-child {
    border-bottom: none
}

.faq--question {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    margin: .5rem 0;
    position: relative
}

.faq--question:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23939393' fill-rule='evenodd' d='M7 0v5h5v2H7v5H5V7H0V5h5V0z'/%3E%3C/svg%3E");
    background-position: 100%;
    background-repeat: no-repeat;
    content: "";
    flex: 0 0 auto;
    height: 21.06px;
    margin-left: auto;
    width: calc(12px + .5rem)
}

.faq--question:not(.collapsed):after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2'%3E%3Cpath fill='%23939393' fill-rule='evenodd' d='M0 0h12v2H0z'/%3E%3C/svg%3E")
}

.faq--question a {
    color: #000;
    font-weight: 600
}

.faq--question a:hover,
.faq--question:hover a {
    color: #939393
}

.faq--question h4 {
    margin-bottom: 0
}

.faq--answer {
    line-height: 1.85
}

.faq--answer ul {
    list-style-type: none;
    padding-left: 1.5em
}

.faq--answer ul li:before {
    border: 2px solid #22872f;
    border-radius: 50%;
    content: "";
    height: 8px;
    margin-left: -1.2em;
    margin-top: calc(.925em - 4px);
    overflow: hidden;
    position: absolute;
    width: 8px
}

.floating-action-button {
    position: absolute;
    right: 20px;
    top: 20px
}

.footer {
    font-size: 16px;
    line-height: 1.6
}

@media(max-width:575.98px) {
    .footer {
        font-size: 14px
    }
}

@media(max-width:420px) {
    .footer {
        font-size: 3.5vw
    }
}

.footer--copyright {
    margin-top: 3rem;
    text-align: center
}

@media(max-width:575.98px) {
    .footer--copyright {
        margin-top: 1rem
    }
}

.footer--reviews {
    display: none;
    flex-direction: column;
    gap: 1rem
}

@media(min-width:992px) {
    .footer--reviews.-desktop {
        display: flex
    }
}

@media(max-width:991.98px) {
    .footer--reviews.-mobile {
        display: flex;
        flex-direction: row
    }
}

.form-body {
    border-radius: 10px;
    box-shadow: 20px 30px 28px #00000026;
    padding: 60px 100px 80px
}

@media(max-width:991.98px) {
    .form-body {
        padding: 40px
    }
}

@media(max-width:575.98px) {
    .form-body {
        border-radius: 0;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px
    }
}

.form-body:not(.-white) {
    background-color: #357e92;
    font-weight: 500
}

.form-body:not(.-white) .invalid-feedback {
    color: #ffcb00;
    font-weight: 600
}

.form-body:not(.-white) h1,
.form-body:not(.-white) h2,
.form-body:not(.-white) h3,
.form-body:not(.-white) h4,
.form-body:not(.-white) h5,
.form-body:not(.-white) h6 {
    color: #fff
}

.form-body:not(.-white) a {
    color: #ebf4f6
}

.form-body:not(.-white) a:hover {
    color: #fff
}

.form-body--lead {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.33;
    margin-bottom: 1.5rem
}

@media(max-width:991.98px) {
    .form-body--lead {
        font-size: 20px
    }
}

.form-control::placeholder {
    color: #6c757d !important
}

.form-step {
    margin-bottom: 3rem
}

@media(max-width:991.98px) {
    .form-step {
        padding: 40px
    }
}

@media(max-width:575.98px) {
    .form-step {
        border-radius: 0;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px
    }
}

.form-step--indicator {
    margin-bottom: 3rem
}

.form-step--title {
    margin-bottom: 1.5rem
}

.form-step--subtitle {
    color: #495057;
    font-size: 16px
}

.form-step--body.-card,
.form-step.-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem #00000026;
    padding: 30px 40px
}

.form-step--back {
    font-weight: 700;
    margin-left: 1rem;
    margin-top: .5rem
}

.form-step--back a {
    color: #11457d;
    text-decoration: underline
}

.form-step--back a:hover {
    color: #11457d;
    text-decoration: none
}

.form-step--navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem
}

.form-step--body .form-check label,
.form-step--body .radio label {
    font-weight: 400
}

.form-step--body label {
    font-weight: 700
}

.form-step--body .hint {
    color: var(--bs-secondary-color)
}

.form-step .form-step--body .form-label {
    margin-bottom: .5rem
}

.form-step .form-step--body .col-form-label {
    font-size: inherit;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: calc(.375rem + 2px);
    padding-top: calc(.375rem + 2px)
}

.form-step .form-step--body .col-form-label-lg {
    font-size: 1.249999999rem;
    padding-bottom: 13px;
    padding-top: 13px
}

@media(min-width:1200px) {
    .form-step .form-step--body .col-form-label-lg {
        font-size: 1.25rem
    }
}

.form-step .form-step--body .col-form-label-sm {
    font-size: .8749999993rem;
    padding-bottom: calc(.25rem + 2px);
    padding-top: calc(.25rem + 2px)
}

@media(min-width:1200px) {
    .form-step .form-step--body .col-form-label-sm {
        font-size: .875rem
    }
}

.form-step .form-step--body .form-text {
    color: var(--bs-secondary-color);
    font-size: .8em;
    margin-top: .25rem
}

.form-step .form-step--body .form-control {
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 2px solid #ced4da;
    border-radius: var(--bs-border-radius);
    box-shadow: inset 0 1px 3px #e9ecef;
    color: #495057;
    display: block;
    font-size: .9999999992rem;
    font-weight: 500;
    line-height: 1.5;
    padding: .375rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media(min-width:1200px) {
    .form-step .form-step--body .form-control {
        font-size: 1rem
    }
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-control {
        transition: none
    }
}

.form-step .form-step--body .form-control[type=file] {
    overflow: hidden
}

.form-step .form-step--body .form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-step .form-step--body .form-control:focus {
    background-color: #fff;
    border-color: #206d82;
    box-shadow: 0 0 0 .25rem #9dc7d2;
    color: #495057;
    outline: 0
}

.form-step .form-step--body .form-control::-webkit-date-and-time-value {
    height: 1.5em;
    margin: 0;
    min-width: 85px
}

.form-step .form-step--body .form-control::-webkit-datetime-edit {
    display: block;
    padding: 0
}

.form-step .form-step--body .form-control::placeholder {
    color: var(--bs-secondary-color);
    opacity: 1
}

.form-step .form-step--body .form-control:disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1
}

.form-step .form-step--body .form-control::file-selector-button {
    background-color: var(--bs-tertiary-bg);
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 2px;
    border-radius: 0;
    color: #495057;
    margin: -.375rem -1rem;
    margin-inline-end: 1rem;
    padding: .375rem 1rem;
    pointer-events: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-control::file-selector-button {
        transition: none
    }
}

.form-step .form-step--body .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: var(--bs-secondary-bg)
}

.form-step .form-step--body .form-control-plaintext {
    background-color: #0000;
    border: solid #0000;
    border-width: 2px 0;
    color: var(--bs-body-color);
    display: block;
    line-height: 1.5;
    margin-bottom: 0;
    padding: .375rem 0;
    width: 100%
}

.form-step .form-step--body .form-control-plaintext:focus {
    outline: 0
}

.form-step .form-step--body .form-control-plaintext.form-control-lg,
.form-step .form-step--body .form-control-plaintext.form-control-sm {
    padding-left: 0;
    padding-right: 0
}

.form-step .form-step--body .form-control-sm {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem;
    min-height: calc(1.5em + .5rem + 4px);
    padding: .25rem .5rem
}

@media(min-width:1200px) {
    .form-step .form-step--body .form-control-sm {
        font-size: .875rem
    }
}

.form-step .form-step--body .form-control-sm::file-selector-button {
    margin: -.25rem -.5rem;
    margin-inline-end: .5rem;
    padding: .25rem .5rem
}

.form-step .form-step--body .form-control-lg {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem;
    min-height: calc(1.5em + 26px);
    padding: 11px 37px
}

@media(min-width:1200px) {
    .form-step .form-step--body .form-control-lg {
        font-size: 1.25rem
    }
}

.form-step .form-step--body .form-control-lg::file-selector-button {
    margin: -11px -37px;
    margin-inline-end: 37px;
    padding: 11px 37px
}

.form-step .form-step--body textarea.form-control {
    min-height: calc(1.5em + .75rem + 4px)
}

.form-step .form-step--body textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 4px)
}

.form-step .form-step--body textarea.form-control-lg {
    min-height: calc(1.5em + 26px)
}

.form-step .form-step--body .form-control-color {
    height: calc(1.5em + .75rem + 4px);
    padding: .375rem;
    width: 3rem
}

.form-step .form-step--body .form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-step .form-step--body .form-control-color::-moz-color-swatch {
    border: 0 !important;
    border-radius: var(--bs-border-radius)
}

.form-step .form-step--body .form-control-color::-webkit-color-swatch {
    border: 0 !important;
    border-radius: var(--bs-border-radius)
}

.form-step .form-step--body .form-control-color.form-control-sm {
    height: calc(1.5em + .5rem + 4px)
}

.form-step .form-step--body .form-control-color.form-control-lg {
    height: calc(1.5em + 26px)
}

.form-step .form-step--body .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%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");
    appearance: none;
    background-color: #fff;
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 2px solid #ced4da;
    border-radius: var(--bs-border-radius);
    box-shadow: inset 0 1px 3px #e9ecef;
    color: #495057;
    display: block;
    font-size: .9999999992rem;
    font-weight: 500;
    line-height: 1.5;
    padding: .375rem 3rem .375rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media(min-width:1200px) {
    .form-step .form-step--body .form-select {
        font-size: 1rem
    }
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-select {
        transition: none
    }
}

.form-step .form-step--body .form-select:focus {
    border-color: #206d82;
    box-shadow: 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.form-step .form-step--body .form-select[multiple],
.form-step .form-step--body .form-select[size]:not([size="1"]) {
    background-image: none;
    padding-right: 1rem
}

.form-step .form-step--body .form-select:disabled {
    background-color: var(--bs-secondary-bg)
}

.form-step .form-step--body .form-select:-moz-focusring {
    color: #0000;
    text-shadow: 0 0 0 #495057
}

.form-step .form-step--body .form-select-sm {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-top: .25rem
}

@media(min-width:1200px) {
    .form-step .form-step--body .form-select-sm {
        font-size: .875rem
    }
}

.form-step .form-step--body .form-select-lg {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem;
    padding-bottom: 11px;
    padding-left: 37px;
    padding-top: 11px
}

@media(min-width:1200px) {
    .form-step .form-step--body .form-select-lg {
        font-size: 1.25rem
    }
}

.form-step .form-step--body [data-bs-theme=dark] .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml;charset=utf-8,%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-step .form-step--body .form-check {
    display: block;
    margin-bottom: .125rem;
    min-height: 1.5rem;
    padding-left: 1.5em
}

.form-step .form-step--body .form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-step .form-step--body .form-check-reverse {
    padding-left: 0;
    padding-right: 1.5em;
    text-align: right
}

.form-step .form-step--body .form-check-reverse .form-check-input {
    float: right;
    margin-left: 0;
    margin-right: -1.5em
}

.form-step .form-step--body .form-check-input {
    --bs-form-check-bg: #0003;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    flex-shrink: 0;
    height: 1em;
    margin-top: .25em;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    vertical-align: top;
    width: 1em
}

.form-step .form-step--body .form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-step .form-step--body .form-check-input[type=radio] {
    border-radius: 50%
}

.form-step .form-step--body .form-check-input:active {
    filter: brightness(90%)
}

.form-step .form-step--body .form-check-input:focus {
    border-color: #206d82;
    box-shadow: 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.form-step .form-step--body .form-check-input:checked {
    background-color: #283582;
    border-color: #283582
}

.form-step .form-step--body .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml;charset=utf-8,%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-step .form-step--body .form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")
}

.form-step .form-step--body .form-check-input[type=checkbox]:indeterminate {
    background-color: #283582;
    border-color: #283582;
    --bs-form-check-bg-image: url("data:image/svg+xml;charset=utf-8,%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-step .form-step--body .form-check-input:disabled {
    filter: none;
    opacity: .5;
    pointer-events: none
}

.form-step .form-step--body .form-check-input:disabled~.form-check-label,
.form-step .form-step--body .form-check-input[disabled]~.form-check-label {
    cursor: default;
    opacity: .5
}

.form-step .form-step--body .form-switch {
    padding-left: 2.5em
}

.form-step .form-step--body .form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
    background-image: var(--bs-form-switch-bg);
    background-position: 0;
    border-radius: 2em;
    margin-left: -2.5em;
    transition: background-position .15s ease-in-out;
    width: 2em
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-switch .form-check-input {
        transition: none
    }
}

.form-step .form-step--body .form-switch .form-check-input:checked,
.form-step .form-step--body .form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.form-step .form-step--body .form-switch .form-check-input:checked {
    background-position: 100%
}

.form-step .form-step--body .form-switch.form-check-reverse {
    padding-left: 0;
    padding-right: 2.5em
}

.form-step .form-step--body .form-switch.form-check-reverse .form-check-input {
    margin-left: 0;
    margin-right: -2.5em
}

.form-step .form-step--body .form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.form-step .form-step--body .btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.form-step .form-step--body .btn-check:disabled+.btn,
.form-step .form-step--body .btn-check[disabled]+.btn {
    filter: none;
    opacity: .65;
    pointer-events: none
}

.form-step .form-step--body [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
    --bs-form-switch-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(255, 255, 255, 0.25)'/%3E%3C/svg%3E")
}

.form-step .form-step--body .form-range {
    appearance: none;
    background-color: #0000;
    height: 1.5rem;
    padding: 0;
    width: 100%
}

.form-step .form-step--body .form-range:focus {
    outline: 0
}

.form-step .form-step--body .form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #9dc7d2
}

.form-step .form-step--body .form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #9dc7d2
}

.form-step .form-step--body .form-range::-moz-focus-outer {
    border: 0
}

.form-step .form-step--body .form-range::-webkit-slider-thumb {
    appearance: none;
    background-color: #283582;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .1rem .25rem #0000001a;
    height: 1rem;
    margin-top: -.25rem;
    -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-step .form-step--body .form-range::-webkit-slider-thumb:active {
    background-color: #bfc2da
}

.form-step .form-step--body .form-range::-webkit-slider-runnable-track {
    background-color: var(--bs-secondary-bg);
    border-color: #0000;
    border-radius: 1rem;
    box-shadow: var(--bs-box-shadow-inset);
    color: #0000;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-step .form-step--body .form-range::-moz-range-thumb {
    appearance: none;
    background-color: #283582;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .1rem .25rem #0000001a;
    height: 1rem;
    -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-step .form-step--body .form-range::-moz-range-thumb:active {
    background-color: #bfc2da
}

.form-step .form-step--body .form-range::-moz-range-track {
    background-color: var(--bs-secondary-bg);
    border-color: #0000;
    border-radius: 1rem;
    box-shadow: var(--bs-box-shadow-inset);
    color: #0000;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-step .form-step--body .form-range:disabled {
    pointer-events: none
}

.form-step .form-step--body .form-range:disabled::-webkit-slider-thumb {
    background-color: var(--bs-secondary-color)
}

.form-step .form-step--body .form-range:disabled::-moz-range-thumb {
    background-color: var(--bs-secondary-color)
}

.form-step .form-step--body .form-floating {
    position: relative
}

.form-step .form-step--body .form-floating>.form-control,
.form-step .form-step--body .form-floating>.form-control-plaintext,
.form-step .form-step--body .form-floating>.form-select {
    height: calc(3.5rem + 4px);
    line-height: 1.25;
    min-height: calc(3.5rem + 4px)
}

.form-step .form-step--body .form-floating>label {
    border: 2px solid #0000;
    color: rgba(var(--bs-body-color-rgb), .65);
    height: 100%;
    left: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem;
    pointer-events: none;
    position: absolute;
    text-align: start;
    text-overflow: ellipsis;
    top: 0;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    white-space: nowrap;
    z-index: 2
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .form-floating>label {
        transition: none
    }
}

.form-step .form-step--body .form-floating>.form-control,
.form-step .form-step--body .form-floating>.form-control-plaintext {
    padding: 1rem
}

.form-step .form-step--body .form-floating>.form-control-plaintext::placeholder,
.form-step .form-step--body .form-floating>.form-control::placeholder {
    color: #0000
}

.form-step .form-step--body .form-floating>.form-control-plaintext:focus,
.form-step .form-step--body .form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-step .form-step--body .form-floating>.form-control:focus,
.form-step .form-step--body .form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-step .form-step--body .form-floating>.form-control-plaintext:-webkit-autofill,
.form-step .form-step--body .form-floating>.form-control:-webkit-autofill {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-step .form-step--body .form-floating>.form-select {
    padding-bottom: .625rem;
    padding-left: 1rem;
    padding-top: 1.625rem
}

.form-step .form-step--body .form-floating>.form-control-plaintext~label,
.form-step .form-step--body .form-floating>.form-control:focus~label,
.form-step .form-step--body .form-floating>.form-control:not(:placeholder-shown)~label,
.form-step .form-step--body .form-floating>.form-select~label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-step .form-step--body .form-floating>.form-control:-webkit-autofill~label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-step .form-step--body .form-floating>textarea:focus~label:after,
.form-step .form-step--body .form-floating>textarea:not(:placeholder-shown)~label:after {
    background-color: #fff;
    border-radius: var(--bs-border-radius);
    content: "";
    height: 1.5em;
    inset: 1rem .5rem;
    position: absolute;
    z-index: -1
}

.form-step .form-step--body .form-floating>textarea:disabled~label:after {
    background-color: var(--bs-secondary-bg)
}

.form-step .form-step--body .form-floating>.form-control-plaintext~label {
    border-width: 2px 0
}

.form-step .form-step--body .form-floating>.form-control:disabled~label,
.form-step .form-step--body .form-floating>:disabled~label {
    color: #6c757d
}

.form-step .form-step--body .input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%
}

.form-step .form-step--body .input-group>.form-control,
.form-step .form-step--body .input-group>.form-floating,
.form-step .form-step--body .input-group>.form-select {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    width: 1%
}

.form-step .form-step--body .input-group>.form-control:focus,
.form-step .form-step--body .input-group>.form-floating:focus-within,
.form-step .form-step--body .input-group>.form-select:focus {
    z-index: 5
}

.form-step .form-step--body .input-group .btn {
    position: relative;
    z-index: 2
}

.form-step .form-step--body .input-group .btn:focus {
    z-index: 5
}

.form-step .form-step--body .input-group-text {
    align-items: center;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: var(--bs-border-radius);
    color: #606880;
    display: flex;
    font-size: .9999999992rem;
    font-weight: 500;
    line-height: 1.5;
    padding: .375rem 1rem;
    text-align: center;
    white-space: nowrap
}

@media(min-width:1200px) {
    .form-step .form-step--body .input-group-text {
        font-size: 1rem
    }
}

.form-step .form-step--body .input-group-lg>.btn,
.form-step .form-step--body .input-group-lg>.form-control,
.form-step .form-step--body .input-group-lg>.form-select,
.form-step .form-step--body .input-group-lg>.input-group-text {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem;
    padding: 11px 37px
}

@media(min-width:1200px) {

    .form-step .form-step--body .input-group-lg>.btn,
    .form-step .form-step--body .input-group-lg>.form-control,
    .form-step .form-step--body .input-group-lg>.form-select,
    .form-step .form-step--body .input-group-lg>.input-group-text {
        font-size: 1.25rem
    }
}

.form-step .form-step--body .input-group-sm>.btn,
.form-step .form-step--body .input-group-sm>.form-control,
.form-step .form-step--body .input-group-sm>.form-select,
.form-step .form-step--body .input-group-sm>.input-group-text {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem;
    padding: .25rem .5rem
}

@media(min-width:1200px) {

    .form-step .form-step--body .input-group-sm>.btn,
    .form-step .form-step--body .input-group-sm>.form-control,
    .form-step .form-step--body .input-group-sm>.form-select,
    .form-step .form-step--body .input-group-sm>.input-group-text {
        font-size: .875rem
    }
}

.form-step .form-step--body .input-group-lg>.form-select,
.form-step .form-step--body .input-group-sm>.form-select {
    padding-right: 4rem
}

.form-step .form-step--body .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
.form-step .form-step--body .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
.form-step .form-step--body .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,
.form-step .form-step--body .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.form-step .form-step--body .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.form-step .form-step--body .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.form-step .form-step--body .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.form-step .form-step--body .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.form-step .form-step--body .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -2px
}

.form-step .form-step--body .input-group>.form-floating:not(:first-child)>.form-control,
.form-step .form-step--body .input-group>.form-floating:not(:first-child)>.form-select {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.form-step .form-step--body .valid-feedback {
    color: var(--bs-form-valid-color);
    display: none;
    font-size: .8em;
    margin-top: .25rem;
    width: 100%
}

.form-step .form-step--body .valid-tooltip {
    background-color: var(--bs-success);
    border-radius: var(--bs-border-radius);
    color: #fff;
    display: none;
    font-size: .8749999993rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

@media(min-width:1200px) {
    .form-step .form-step--body .valid-tooltip {
        font-size: .875rem
    }
}

.form-step .form-step--body.is-valid~.valid-feedback,
.form-step .form-step--body.is-valid~.valid-tooltip,
.was-validated .form-step .form-step--body:valid~.valid-feedback,
.was-validated .form-step .form-step--body:valid~.valid-tooltip {
    display: block
}

.form-step .form-step--body .form-control.is-valid,
.was-validated .form-step .form-step--body .form-control:valid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: var(--bs-form-valid-border-color);
    padding-right: calc(1.5em + .75rem)
}

.form-step .form-step--body .form-control.is-valid:focus,
.was-validated .form-step .form-step--body .form-control:valid:focus {
    border-color: var(--bs-form-valid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
}

.form-step .form-step--body textarea.form-control.is-valid,
.was-validated .form-step .form-step--body textarea.form-control:valid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.form-step .form-step--body .form-select.is-valid,
.was-validated .form-step .form-step--body .form-select:valid {
    border-color: var(--bs-form-valid-border-color)
}

.form-step .form-step--body .form-select.is-valid:not([multiple]):not([size]),
.form-step .form-step--body .form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-step .form-step--body .form-select:valid:not([multiple]):not([size]),
.was-validated .form-step .form-step--body .form-select:valid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right 1rem center, center right 3rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right: 5.5rem
}

.form-step .form-step--body .form-select.is-valid:focus,
.was-validated .form-step .form-step--body .form-select:valid:focus {
    border-color: var(--bs-form-valid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
}

.form-step .form-step--body .form-control-color.is-valid,
.was-validated .form-step .form-step--body .form-control-color:valid {
    width: calc(3.75rem + 1.5em)
}

.form-step .form-step--body .form-check-input.is-valid,
.was-validated .form-step .form-step--body .form-check-input:valid {
    border-color: var(--bs-form-valid-border-color)
}

.form-step .form-step--body .form-check-input.is-valid:checked,
.was-validated .form-step .form-step--body .form-check-input:valid:checked {
    background-color: var(--bs-form-valid-color)
}

.form-step .form-step--body .form-check-input.is-valid:focus,
.was-validated .form-step .form-step--body .form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
}

.form-step .form-step--body .form-check-input.is-valid~.form-check-label,
.was-validated .form-step .form-step--body .form-check-input:valid~.form-check-label {
    color: var(--bs-form-valid-color)
}

.form-step .form-step--body .form-check-inline .form-check-input~.valid-feedback {
    margin-left: .5em
}

.form-step .form-step--body .input-group>.form-control:not(:focus).is-valid,
.form-step .form-step--body .input-group>.form-floating:not(:focus-within).is-valid,
.form-step .form-step--body .input-group>.form-select:not(:focus).is-valid,
.was-validated .form-step .form-step--body .input-group>.form-control:not(:focus):valid,
.was-validated .form-step .form-step--body .input-group>.form-floating:not(:focus-within):valid,
.was-validated .form-step .form-step--body .input-group>.form-select:not(:focus):valid {
    z-index: 3
}

.form-step .form-step--body .invalid-feedback {
    color: var(--bs-form-invalid-color);
    display: none;
    font-size: .8em;
    margin-top: .25rem;
    width: 100%
}

.form-step .form-step--body .invalid-tooltip {
    background-color: var(--bs-danger);
    border-radius: var(--bs-border-radius);
    color: #fff;
    display: none;
    font-size: .8749999993rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

@media(min-width:1200px) {
    .form-step .form-step--body .invalid-tooltip {
        font-size: .875rem
    }
}

.form-step .form-step--body.is-invalid~.invalid-feedback,
.form-step .form-step--body.is-invalid~.invalid-tooltip,
.was-validated .form-step .form-step--body:invalid~.invalid-feedback,
.was-validated .form-step .form-step--body:invalid~.invalid-tooltip {
    display: block
}

.form-step .form-step--body .form-control.is-invalid,
.was-validated .form-step .form-step--body .form-control:invalid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + .75rem)
}

.form-step .form-step--body .form-control.is-invalid:focus,
.was-validated .form-step .form-step--body .form-control:invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
}

.form-step .form-step--body textarea.form-control.is-invalid,
.was-validated .form-step .form-step--body textarea.form-control:invalid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.form-step .form-step--body .form-select.is-invalid,
.was-validated .form-step .form-step--body .form-select:invalid {
    border-color: var(--bs-form-invalid-border-color)
}

.form-step .form-step--body .form-select.is-invalid:not([multiple]):not([size]),
.form-step .form-step--body .form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-step .form-step--body .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-step .form-step--body .form-select:invalid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right 1rem center, center right 3rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right: 5.5rem
}

.form-step .form-step--body .form-select.is-invalid:focus,
.was-validated .form-step .form-step--body .form-select:invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
}

.form-step .form-step--body .form-control-color.is-invalid,
.was-validated .form-step .form-step--body .form-control-color:invalid {
    width: calc(3.75rem + 1.5em)
}

.form-step .form-step--body .form-check-input.is-invalid,
.was-validated .form-step .form-step--body .form-check-input:invalid {
    border-color: var(--bs-form-invalid-border-color)
}

.form-step .form-step--body .form-check-input.is-invalid:checked,
.was-validated .form-step .form-step--body .form-check-input:invalid:checked {
    background-color: var(--bs-form-invalid-color)
}

.form-step .form-step--body .form-check-input.is-invalid:focus,
.was-validated .form-step .form-step--body .form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
}

.form-step .form-step--body .form-check-input.is-invalid~.form-check-label,
.was-validated .form-step .form-step--body .form-check-input:invalid~.form-check-label {
    color: var(--bs-form-invalid-color)
}

.form-step .form-step--body .form-check-inline .form-check-input~.invalid-feedback {
    margin-left: .5em
}

.form-step .form-step--body .input-group>.form-control:not(:focus).is-invalid,
.form-step .form-step--body .input-group>.form-floating:not(:focus-within).is-invalid,
.form-step .form-step--body .input-group>.form-select:not(:focus).is-invalid,
.was-validated .form-step .form-step--body .input-group>.form-control:not(:focus):invalid,
.was-validated .form-step .form-step--body .input-group>.form-floating:not(:focus-within):invalid,
.was-validated .form-step .form-step--body .input-group>.form-select:not(:focus):invalid {
    z-index: 4
}

.form-step .form-step--body .ts-control {
    border: 2px solid #ced4da;
    border-radius: var(--bs-border-radius);
    box-shadow: none;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow: hidden;
    padding: .375rem 1rem;
    position: relative;
    width: 100%;
    z-index: 1
}

.ts-wrapper.multi.has-items .form-step .form-step--body .ts-control {
    padding: calc(.375rem - 1px) 1rem calc(.375rem - 4px)
}

.full .form-step .form-step--body .ts-control {
    background-color: #fff
}

.disabled .form-step .form-step--body .ts-control,
.disabled .form-step .form-step--body .ts-control * {
    cursor: default !important
}

.focus .form-step .form-step--body .ts-control {
    box-shadow: none
}

.form-step .form-step--body .ts-control>* {
    display: inline-block;
    vertical-align: initial
}

.ts-wrapper.multi .form-step .form-step--body .ts-control>div {
    background: #efefef;
    border: 0 solid #dee2e6;
    color: #343a40;
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 1px 5px
}

.ts-wrapper.multi .form-step .form-step--body .ts-control>div.active {
    background: #283582;
    border: 0 solid #0000;
    color: #fff
}

.ts-wrapper.multi.disabled .form-step .form-step--body .ts-control>div,
.ts-wrapper.multi.disabled .form-step .form-step--body .ts-control>div.active {
    background: #fff;
    border: 0 solid #fff;
    color: #878787
}

.form-step .form-step--body .ts-control>input {
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
    flex: 1 1 auto;
    line-height: inherit !important;
    margin: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    min-height: 0 !important;
    min-width: 7rem;
    padding: 0 !important;
    text-indent: 0 !important;
    -webkit-user-select: auto !important;
    user-select: auto !important
}

.form-step .form-step--body .ts-control>input::-ms-clear {
    display: none
}

.form-step .form-step--body .ts-control>input:focus {
    outline: none !important
}

.has-items .form-step .form-step--body .ts-control>input {
    margin: 0 4px !important
}

.form-step .form-step--body .ts-control.rtl {
    text-align: right
}

.form-step .form-step--body .ts-control.rtl.single .ts-control:after {
    left: calc(1rem + 5px);
    right: auto
}

.form-step .form-step--body .ts-control.rtl .ts-control>input {
    margin: 0 4px 0 -2px !important
}

.disabled .form-step .form-step--body .ts-control {
    background-color: var(--bs-secondary-bg);
    opacity: .5
}

.input-hidden .form-step .form-step--body .ts-control>input {
    left: -10000px;
    opacity: 0;
    position: absolute
}

.form-step .form-step--body .ts-dropdown {
    background: var(--bs-body-bg);
    border: 1px solid #d0d0d0;
    border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
    border-top: 0;
    box-shadow: 0 1px 3px #0000001a;
    box-sizing: border-box;
    left: 0;
    margin: .25rem 0 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10
}

.form-step .form-step--body .ts-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden
}

.form-step .form-step--body .ts-dropdown [data-selectable] .highlight {
    background: #ffed2866;
    border-radius: 1px
}

.form-step .form-step--body .ts-dropdown .create,
.form-step .form-step--body .ts-dropdown .no-results,
.form-step .form-step--body .ts-dropdown .optgroup-header,
.form-step .form-step--body .ts-dropdown .option {
    padding: 3px 1rem
}

.form-step .form-step--body .ts-dropdown .option,
.form-step .form-step--body .ts-dropdown [data-disabled],
.form-step .form-step--body .ts-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: .5
}

.form-step .form-step--body .ts-dropdown [data-selectable].option {
    cursor: pointer;
    opacity: 1
}

.form-step .form-step--body .ts-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0
}

.form-step .form-step--body .ts-dropdown .optgroup-header {
    background: var(--bs-body-bg);
    color: #6c757d;
    cursor: default
}

.form-step .form-step--body .ts-dropdown .active {
    background-color: #2835821a;
    color: var(--bs-body-color)
}

.form-step .form-step--body .ts-dropdown .active.create {
    color: var(--bs-body-color)
}

.form-step .form-step--body .ts-dropdown .create {
    color: #343a4080
}

.form-step .form-step--body .ts-dropdown .spinner {
    display: inline-block;
    height: 30px;
    margin: 3px 1rem;
    width: 30px
}

.form-step .form-step--body .ts-dropdown .spinner:after {
    animation: lds-dual-ring 1.2s linear infinite;
    border-color: #d0d0d0 #0000;
    border-radius: 50%;
    border-style: solid;
    border-width: 5px;
    content: " ";
    display: block;
    height: 24px;
    margin: 3px;
    width: 24px
}

.form-step .form-step--body .ts-dropdown-content {
    max-height: 200px;
    overflow: hidden auto;
    scroll-behavior: smooth
}

.form-step .form-step--body .ts-wrapper.plugin-drag_drop .ts-dragging {
    color: #0000 !important
}

.form-step .form-step--body .ts-wrapper.plugin-drag_drop .ts-dragging>* {
    visibility: hidden !important
}

.form-step .form-step--body .plugin-checkbox_options:not(.rtl) .option input {
    margin-right: .5rem
}

.form-step .form-step--body .plugin-checkbox_options.rtl .option input {
    margin-left: .5rem
}

.form-step .form-step--body .plugin-clear_button {
    --ts-pr-clear-button: 1em
}

.form-step .form-step--body .plugin-clear_button .clear-button {
    background: #0000 !important;
    cursor: pointer;
    margin-right: 0 !important;
    opacity: 0;
    position: absolute;
    right: calc(1rem - 5px);
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .5s
}

.form-step .form-step--body .plugin-clear_button.form-select .clear-button,
.form-step .form-step--body .plugin-clear_button.single .clear-button {
    right: max(var(--ts-pr-caret), 1rem)
}

.form-step .form-step--body .plugin-clear_button.focus.has-items .clear-button,
.form-step .form-step--body .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
    opacity: 1
}

.form-step .form-step--body .ts-wrapper .dropdown-header {
    background: color-mix(var(--bs-body-bg), #d0d0d0, 85%);
    border-bottom: 1px solid #d0d0d0;
    border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
    padding: 6px 1rem;
    position: relative
}

.form-step .form-step--body .ts-wrapper .dropdown-header-close {
    color: #343a40;
    font-size: 20px !important;
    line-height: 20px;
    margin-top: -12px;
    opacity: .4;
    position: absolute;
    right: 1rem;
    top: 50%
}

.form-step .form-step--body .ts-wrapper .dropdown-header-close:hover {
    color: #000
}

.form-step .form-step--body .plugin-dropdown_input.focus.dropdown-active .ts-control {
    border: 2px solid #ced4da;
    box-shadow: none;
    box-shadow: inset 0 1px 3px #e9ecef
}

.form-step .form-step--body .plugin-dropdown_input .dropdown-input {
    background: #0000;
    border: solid #d0d0d0;
    border-width: 0 0 1px;
    box-shadow: none;
    display: block;
    padding: .375rem 1rem;
    width: 100%
}

.form-step .form-step--body .plugin-dropdown_input.focus .ts-dropdown .dropdown-input {
    border-color: #206d82;
    box-shadow: 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.form-step .form-step--body .plugin-dropdown_input .items-placeholder {
    border: 0 !important;
    box-shadow: none !important;
    width: 100%
}

.form-step .form-step--body .plugin-dropdown_input.dropdown-active .items-placeholder,
.form-step .form-step--body .plugin-dropdown_input.has-items .items-placeholder {
    display: none !important
}

.form-step .form-step--body .ts-wrapper.plugin-input_autogrow.has-items .ts-control>input {
    min-width: 0
}

.form-step .form-step--body .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input {
    flex: none;
    min-width: 4px
}

.form-step .form-step--body .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::placeholder {
    color: #0000
}

.form-step .form-step--body .ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
    display: flex
}

.form-step .form-step--body .ts-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0;
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0
}

.form-step .form-step--body .ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0
}

.form-step .form-step--body .ts-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.form-step .form-step--body .ts-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button .item {
    align-items: center;
    display: inline-flex
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button .item .remove {
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    color: inherit;
    display: inline-block;
    padding: 0 5px;
    text-decoration: none;
    vertical-align: middle
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button .item .remove:hover {
    background: #0000000d
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
    background: none
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button .remove-single {
    font-size: 23px;
    position: absolute;
    right: 0;
    top: 0
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button:not(.rtl) .item {
    padding-right: 0 !important
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
    border-left: 1px solid #dee2e6;
    margin-left: 5px
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
    border-left-color: #0000
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
    border-left-color: #fff
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button.rtl .item {
    padding-left: 0 !important
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button.rtl .item .remove {
    border-right: 1px solid #dee2e6;
    margin-right: 5px
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button.rtl .item.active .remove {
    border-right-color: #0000
}

.form-step .form-step--body .ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
    border-right-color: #fff
}

.form-step .form-step--body :root {
    --ts-pr-clear-button: 0px;
    --ts-pr-caret: 0px;
    --ts-pr-min: .75rem
}

.form-step .form-step--body .ts-wrapper.single .ts-control,
.form-step .form-step--body .ts-wrapper.single .ts-control input {
    cursor: pointer
}

.form-step .form-step--body .ts-control:not(.rtl) {
    padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important
}

.form-step .form-step--body .ts-control.rtl {
    padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important
}

.form-step .form-step--body .ts-wrapper {
    position: relative
}

.form-step .form-step--body .ts-control,
.form-step .form-step--body .ts-control input,
.form-step .form-step--body .ts-dropdown {
    color: #343a40;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5
}

.form-step .form-step--body .ts-control,
.form-step .form-step--body .ts-wrapper.single.input-active .ts-control {
    background: #fff;
    cursor: text
}

.form-step .form-step--body .ts-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important
}

.form-step .form-step--body .ts-dropdown,
.form-step .form-step--body .ts-dropdown.form-control,
.form-step .form-step--body .ts-dropdown.form-select {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    height: auto;
    padding: 0;
    z-index: 1000
}

.form-step .form-step--body .ts-dropdown .optgroup-header {
    font-size: .875rem;
    line-height: 1.5
}

.form-step .form-step--body .ts-dropdown .optgroup:first-child:before {
    display: none
}

.form-step .form-step--body .ts-dropdown .optgroup:before {
    border-top: 1px solid var(--bs-border-color-translucent);
    content: " ";
    display: block;
    height: 0;
    margin: .5rem -1rem;
    overflow: hidden
}

.form-step .form-step--body .ts-dropdown .create {
    padding-left: 1rem
}

.form-step .form-step--body .ts-dropdown-content {
    padding: 5px 0
}

.form-step .form-step--body .ts-control {
    align-items: center;
    box-shadow: inset 0 1px 3px #e9ecef;
    display: flex;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .form-step .form-step--body .ts-control {
        transition: none
    }
}

.focus .form-step .form-step--body .ts-control {
    border-color: #206d82;
    box-shadow: 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.form-step .form-step--body .ts-control .item {
    align-items: center;
    display: flex
}

.form-step .form-step--body .ts-wrapper.is-invalid,
.form-step .form-step--body .was-validated .invalid,
.form-step .form-step--body .was-validated :invalid+.ts-wrapper {
    border-color: var(--bs-form-invalid-color)
}

.form-step .form-step--body .ts-wrapper.is-invalid:not(.single),
.form-step .form-step--body .was-validated .invalid:not(.single),
.form-step .form-step--body .was-validated :invalid+.ts-wrapper:not(.single) {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-step .form-step--body .ts-wrapper.is-invalid.single,
.form-step .form-step--body .was-validated .invalid.single,
.form-step .form-step--body .was-validated :invalid+.ts-wrapper.single {
    background-image: url("data:image/svg+xml;charset=utf-8,%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"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right 1rem center, center right 3rem;
    background-repeat: no-repeat;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-step .form-step--body .ts-wrapper.is-invalid.focus .ts-control,
.form-step .form-step--body .was-validated .invalid.focus .ts-control,
.form-step .form-step--body .was-validated :invalid+.ts-wrapper.focus .ts-control {
    border-color: var(--bs-form-invalid-color);
    box-shadow: 0 0 0 .25rem rgba(var(--bs-form-invalid-color), .25)
}

.form-step .form-step--body .ts-wrapper.is-valid,
.form-step .form-step--body .was-validated .valid,
.form-step .form-step--body .was-validated :valid+.ts-wrapper {
    border-color: var(--bs-form-valid-color)
}

.form-step .form-step--body .ts-wrapper.is-valid:not(.single),
.form-step .form-step--body .was-validated .valid:not(.single),
.form-step .form-step--body .was-validated :valid+.ts-wrapper:not(.single) {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-step .form-step--body .ts-wrapper.is-valid.single,
.form-step .form-step--body .was-validated .valid.single,
.form-step .form-step--body .was-validated :valid+.ts-wrapper.single {
    background-image: url("data:image/svg+xml;charset=utf-8,%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"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right 1rem center, center right 3rem;
    background-repeat: no-repeat;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-step .form-step--body .ts-wrapper.is-valid.focus .ts-control,
.form-step .form-step--body .was-validated .valid.focus .ts-control,
.form-step .form-step--body .was-validated :valid+.ts-wrapper.focus .ts-control {
    border-color: var(--bs-form-valid-color);
    box-shadow: 0 0 0 .25rem rgba(var(--bs-form-valid-color), .25)
}

.form-step .form-step--body .ts-wrapper {
    display: flex;
    min-height: calc(1.5em + .75rem + 4px)
}

.form-step .form-step--body .ts-wrapper.form-control-sm,
.form-step .form-step--body .ts-wrapper.form-select-sm,
.input-group-sm>.form-step .form-step--body .ts-wrapper {
    min-height: calc(1.5em + .5rem + 4px)
}

.form-step .form-step--body .ts-wrapper.form-control-sm .ts-control,
.form-step .form-step--body .ts-wrapper.form-select-sm .ts-control,
.input-group-sm>.form-step .form-step--body .ts-wrapper .ts-control {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem
}

@media(min-width:1200px) {

    .form-step .form-step--body .ts-wrapper.form-control-sm .ts-control,
    .form-step .form-step--body .ts-wrapper.form-select-sm .ts-control,
    .input-group-sm>.form-step .form-step--body .ts-wrapper .ts-control {
        font-size: .875rem
    }
}

.form-step .form-step--body .ts-wrapper.form-control-sm.has-items .ts-control,
.form-step .form-step--body .ts-wrapper.form-select-sm.has-items .ts-control,
.input-group-sm>.form-step .form-step--body .ts-wrapper.has-items .ts-control {
    font-size: .875rem;
    padding-bottom: 0
}

.form-step .form-step--body .ts-wrapper.form-control-sm.multi.has-items .ts-control,
.form-step .form-step--body .ts-wrapper.form-select-sm.multi.has-items .ts-control,
.input-group-sm>.form-step .form-step--body .ts-wrapper.multi.has-items .ts-control {
    padding-top: calc(.75em - .40625rem - 1px) !important
}

.form-step .form-step--body .ts-wrapper.multi.has-items .ts-control {
    padding-left: calc(1rem - 5px);
    --ts-pr-min: calc(1rem - 5px)
}

.form-step .form-step--body .ts-wrapper.multi .ts-control>div {
    border-radius: calc(var(--bs-border-radius) - 1px)
}

.form-step .form-step--body .ts-wrapper.form-control-lg,
.form-step .form-step--body .ts-wrapper.form-select-lg,
.input-group-lg>.form-step .form-step--body .ts-wrapper {
    min-height: calc(1.5em + 26px)
}

.form-step .form-step--body .ts-wrapper.form-control-lg .ts-control,
.form-step .form-step--body .ts-wrapper.form-select-lg .ts-control,
.input-group-lg>.form-step .form-step--body .ts-wrapper .ts-control {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem
}

@media(min-width:1200px) {

    .form-step .form-step--body .ts-wrapper.form-control-lg .ts-control,
    .form-step .form-step--body .ts-wrapper.form-select-lg .ts-control,
    .input-group-lg>.form-step .form-step--body .ts-wrapper .ts-control {
        font-size: 1.25rem
    }
}

.form-step .form-step--body .ts-wrapper:not(.form-control, .form-select) {
    background: none;
    border: none;
    box-shadow: none;
    height: auto;
    padding: 0
}

.form-step .form-step--body .ts-wrapper:not(.form-control, .form-select).single .ts-control {
    background-image: url("data:image/svg+xml;charset=utf-8,%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");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px
}

.form-step .form-step--body .ts-wrapper.form-select,
.form-step .form-step--body .ts-wrapper.single {
    --ts-pr-caret: 3rem
}

.form-step .form-step--body .ts-wrapper.form-control,
.form-step .form-step--body .ts-wrapper.form-select {
    box-shadow: none;
    display: flex;
    height: auto;
    padding: 0 !important
}

.form-step .form-step--body .ts-wrapper.form-control .ts-control,
.form-step .form-step--body .ts-wrapper.form-control.single.input-active .ts-control,
.form-step .form-step--body .ts-wrapper.form-select .ts-control,
.form-step .form-step--body .ts-wrapper.form-select.single.input-active .ts-control {
    border: none !important
}

.form-step .form-step--body .ts-wrapper.form-control:not(.disabled) .ts-control,
.form-step .form-step--body .ts-wrapper.form-control:not(.disabled).single.input-active .ts-control,
.form-step .form-step--body .ts-wrapper.form-select:not(.disabled) .ts-control,
.form-step .form-step--body .ts-wrapper.form-select:not(.disabled).single.input-active .ts-control {
    background: #0000 !important
}

.form-step .form-step--body .input-group>.ts-wrapper {
    flex-grow: 1;
    width: 1%
}

.form-step .form-step--body .input-group>.ts-wrapper:not(:nth-child(2))>.ts-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.form-step .form-step--body .input-group>.ts-wrapper:not(:last-child)>.ts-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.form-step .form-step--body .form-check-input {
    --bs-form-check-bg: #fff;
    --bs-border-color: #adb5bd;
    --bs-border-width: 2px
}

.form-step .form-step--body .form-check-input:disabled:checked {
    background-color: #495057;
    border-color: #adb5bd;
    filter: invert(1)
}

.form-step .form-step--body .ts-wrapper.disabled {
    border-radius: var(--bs-border-radius)
}

.form-step .form-step--body .ts-wrapper.disabled,
.form-step .form-step--body .ts-wrapper.disabled .ts-control {
    background-color: var(--bs-secondary-bg);
    opacity: 1
}

.form-step .form-step--body .is-invalid~.invalid-feedback {
    display: block
}

form.with-required label.required.boolean>span:after,
form.with-required label.required:not(.boolean):after {
    color: #d90331;
    content: " *";
    font-weight: 700
}

.frontend-icon {
    align-items: center;
    display: inline-flex;
    max-width: 100%;
    vertical-align: bottom
}

.frontend-icon--image {
    flex: 0 0 24px;
    height: 24px;
    object-fit: contain;
    width: 24px
}

.frontend-icon--image.-big {
    flex: 0 0 32px;
    height: 32px;
    width: 32px
}

.frontend-icon--text {
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.frontend-icon-badge {
    align-items: center;
    color: hsla(0, 0%, 100%, .651);
    display: flex;
    flex-direction: row
}

@media(max-width:991.98px) {
    .frontend-icon-badge {
        align-items: stretch
    }
}

.frontend-icon-badge--icon {
    height: 16px;
    object-fit: contain;
    width: 16px
}

.frontend-icon-badge--text {
    color: #fff;
    margin-left: 10px
}

.full-width {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px
}

@media(min-width:576px) {
    .full-width {
        margin-left: -440px;
        margin-right: -440px;
        padding-left: 440px;
        padding-right: 440px
    }
}

@media(min-width:768px) {
    .full-width {
        margin-left: -350px;
        margin-right: -350px;
        padding-left: 350px;
        padding-right: 350px
    }
}

@media(min-width:992px) {
    .full-width {
        margin-left: -210px;
        margin-right: -210px;
        padding-left: 210px;
        padding-right: 210px
    }
}

@media(min-width:1200px) {
    .full-width {
        margin-left: -110px;
        margin-right: -110px;
        padding-left: 110px;
        padding-right: 110px
    }

    .container-narrow .full-width {
        margin-left: -210px;
        margin-right: -210px;
        padding-left: 210px;
        padding-right: 210px
    }
}

.full-width.-section {
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 40px;
    padding-top: 40px
}

@media(min-width:992px) {
    .full-width.-section {
        padding-top: 140px
    }

    .scroll-down+.full-width.-section {
        padding-top: 70px
    }

    .full-width.-section {
        padding-bottom: 140px
    }
}

.full-width.-white {
    background-color: #fff
}

.full-width.-green {
    background-color: #eff7f2
}

.full-width.-blue {
    background-color: #ebf4f6
}

.full-width.-same-color {
    padding-top: 0
}

@media(min-width:992px) {

    .full-width.-same-color,
    .scroll-down+.full-width.-same-color {
        padding-top: 0
    }
}

.full-width.-overlaps-previous {
    margin-top: -40px;
    padding-top: 0
}

@media(min-width:992px) {
    .full-width.-overlaps-previous {
        margin-top: -140px
    }
}

.header {
    align-items: center;
    display: flex;
    flex-direction: row
}

@media(max-width:575.98px) {
    .header.-with-offer-number {
        flex-direction: column
    }
}

.header.-column-for-small-layout {
    align-items: flex-start;
    flex-direction: column
}

@media(min-width:992px) {
    .header.-column-for-small-layout {
        align-items: center;
        flex-direction: row
    }
}

.header--logo {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    height: 70px;
    margin-right: auto
}

@media(min-width:992px) {
    .header--logo {
        height: 110px
    }
}

.header--logo>img {
    max-width: 100%;
    width: 170px
}

.header--offer-number {
    font-size: 16px;
    font-weight: 600
}

.header--details {
    flex: 0 1 auto;
    font-size: 14px;
    font-weight: 600
}

@media(min-width:992px) {
    .header--details {
        font-size: 16px;
        overflow: hidden
    }
}

.header-navigation {
    display: flex;
    gap: 20px
}

@media(max-width:991.98px) {
    .header-navigation {
        display: none
    }
}

.header-navigation--link {
    color: #283582;
    display: flex
}

.header-navigation--link:hover {
    color: #357e92
}

.header-navigation--link.:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath fill='%23283582' d='m24 30.75-12-12 2.15-2.15L24 26.5l9.85-9.85L36 18.8Z'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 90%;
    content: "";
    display: inline-block;
    height: 1.5em;
    line-height: 0;
    margin-top: 2px;
    width: 1.5em
}

.hero {
    display: flex;
    flex-direction: column
}

@media(min-width:768px) {
    .hero {
        flex-direction: row;
        margin-right: -100px;
        min-height: 460px
    }
}

.hero--text {
    flex: 1 1 auto;
    margin-bottom: 1rem;
    z-index: 1
}

.hero--image {
    flex: 0 0 auto;
    margin-bottom: 3rem;
    margin-left: -20px;
    margin-right: -180px;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 0
}

@media(min-width:768px) {
    .hero--image {
        flex-basis: 560px;
        margin-left: -140px;
        margin-right: -40px
    }
}

@media(min-width:992px) {
    .hero--image {
        flex-basis: 640px
    }
}

.hero--image img {
    width: 100%
}

.hero-badges {
    --hero-badges-header-height: 60px;
    --hero-badges-body-height: 140px;
    --hero-badges-width: 200px;
    display: grid;
    gap: 20px;
    grid-template-columns: auto repeat(3, var(--hero-badges-width)) 1fr;
    justify-content: center;
    margin-bottom: -113px;
    position: relative;
    top: -158px;
    z-index: 1
}

@media(max-width:991.98px) {
    .hero-badges {
        --hero-badges-header-height: 50px;
        --hero-badges-body-height: 130px;
        --hero-badges-width: 180px;
        margin-bottom: -55px;
        top: -100px
    }
}

@media(max-width:767.98px) {
    .hero-badges {
        --hero-badges-header-height: 35px;
        --hero-badges-body-height: 105px;
        --hero-badges-width: 140px;
        grid-template-columns: repeat(2, var(--hero-badges-width));
        justify-content: center;
        margin-bottom: 45px;
        top: 0
    }
}

@media(max-width:310px) {
    .hero-badges {
        grid-template-columns: var(--hero-badges-width);
        justify-content: center
    }
}

.hero-badges--badge {
    display: flex
}

.hero-badges--badge.-computer-bild {
    align-items: center;
    flex-direction: row;
    height: calc(var(--hero-badges-header-height) + var(--hero-badges-body-height));
    justify-content: center
}

.hero-badges--badge.-proven-expert,
.hero-badges--badge.-versicherungskammer-bayern {
    background-color: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 0 20px #0000001a;
    flex-direction: column
}

.hero-badges--badge.-stiftung-warentest {
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 20px #0000001a;
    flex-direction: row;
    justify-content: center;
    max-height: calc(var(--hero-badges-header-height) + var(--hero-badges-body-height));
    padding: 10px 0
}

@media(max-width:991.98px) {
    .hero-badges--badge {
        font-size: .7rem
    }
}

.hero-badges--badge-header {
    align-items: center;
    background-color: #3f3f3f;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: var(--hero-badges-header-height);
    justify-content: center;
    margin: -1px;
    padding: 5px 10px
}

.hero-badges--badge-headline {
    display: flex;
    gap: .5ch;
    line-height: 1.2;
    text-align: center
}

.hero-badges--badge-body {
    align-items: center;
    display: flex;
    height: var(--hero-badges-body-height);
    justify-content: center;
    padding: 10px
}

.hero-badge--proven-expert-text {
    color: #9b8536;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 700;
    justify-content: flex-start;
    line-height: 1.2;
    width: 100%
}

@media(max-width:991.98px) {
    .hero-badge--proven-expert-text {
        font-size: 1rem;
        line-height: 1.4
    }
}

.hero-badges--badge-image {
    height: 100%;
    object-fit: contain
}

.highlight-text {
    color: #22872f
}

.hint {
    color: #000
}

.info-element {
    display: inline;
    font-size: .8em;
    margin-left: 1rem
}

.inquiry-form {
    line-height: 1.5;
    position: relative
}

@media(max-width:575.98px) {
    .inquiry-form {
        margin: 0 -20px
    }
}

@media(min-width:1200px) {
    .inquiry-form {
        margin-left: -188px;
        margin-right: -450px;
        padding-bottom: 80px;
        padding-left: 188px;
        padding-right: 450px
    }

    .inquiry-form:after,
    .inquiry-form:before {
        background-repeat: no-repeat;
        content: "";
        height: 828px;
        left: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: -195px
    }



    .inquiry-form:after {
        background-image: url("../img/3.webp"), url("../img/2.webp");
        background-position: 80% 80%, 0 100%
    }



    .external-content .inquiry-form {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0
    }

    .external-content .inquiry-form:after,
    .external-content .inquiry-form:before {
        display: none
    }
}

.inquiry-form--tabs {
    margin-left: 100px
}

@media(max-width:991.98px) {
    .inquiry-form--tabs {
        margin-left: 40px
    }
}

@media(max-width:575.98px) {
    .inquiry-form--tabs {
        margin: 0 .75rem
    }
}

.inquiry-form--body {
    border-radius: 10px;
    box-shadow: 20px 30px 28px #00000026;
    padding: 60px 100px 80px
}

.-compact>.inquiry-form--body {
    padding: 30px 50px 40px
}

@media(max-width:991.98px) {
    .inquiry-form--body {
        padding: 40px 40px 60px
    }
}

@media(max-width:575.98px) {
    .inquiry-form--body {
        border-radius: 0;
        padding: 20px 20px 60px
    }
}

.inquiry-form-body {
    background-color: #357e92;
    color: #000;
    display: flex;
    flex-direction: column;
    position: relative
}

.inquiry-form-body .invalid-feedback {
    color: #ffcb00;
    display: block;
    font-weight: 600
}

.inquiry-form-body .form-group.numeric label {
    white-space: nowrap
}

.inquiry-form-body--tariff-options {
    margin-top: .5rem
}

.inquiry-form-body--wallpaper {
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 0
}

@media(max-width:991.98px) {
    .inquiry-form-body--wallpaper {
        top: 60px
    }
}

.inquiry-form-body--wallpaper:before {
    background-repeat: no-repeat;
    background-size: auto 528px;
    content: "";
    display: block;
    height: 100%;
    min-height: 558px
}

@media(min-width:768px) {
    .-compact>.inquiry-form-body--wallpaper:before {
        background-size: auto 264px
    }
}

@media(max-width:991.98px) {
    .inquiry-form-body--wallpaper:before {
        background-size: auto 440px;
        min-height: 470px
    }
}

@media(max-width:767.98px) {
    .inquiry-form-body--wallpaper:before {
        background-size: auto 280px;
        min-height: 310px
    }
}

.inquiry-form-body.-usage-only .inquiry-form-body--wallpaper:before {
    display: none
}

.inquiry-form-body--wallpaper.-electricity:before,
.inquiry-form-body--wallpaper.-heating_electricity:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='24' viewBox='0 0 22 24'%3E%3Cpath fill='hsla(0,0%25,100%25,.1)' fill-rule='evenodd' d='M4 0v5h5V0h1v5h3v5c0 3.238-2.75 5.872-6.255 5.996l.205-.011v3.018c0 2.233 1.728 4.016 3.891 4.016 2.098 0 3.787-1.677 3.887-3.814l.005-.202v-4.006c0-2.703 2.044-4.883 4.636-4.993l.205-.004H22v.98h-2.426c-2.098 0-3.786 1.678-3.886 3.815l-.005.202v4.006c0 2.774-2.153 4.997-4.842 4.997-2.619 0-4.73-2.11-4.837-4.785L6 19.003v-3.02c-3.367-.234-6-2.812-6-5.984V5h3V0zM3 5.999 1 6v4.001c0 2.702 2.325 4.884 5.257 4.995L6.49 15l.227-.004C9.674 14.893 12 12.701 12 10.001V6l-2-.001V6H9v-.001H4V6H3z'/%3E%3C/svg%3E");
    background-position: right -70px bottom 30px
}

@media(min-width:992px) {

    .-compact>.inquiry-form-body--wallpaper.-electricity:before,
    .-compact>.inquiry-form-body--wallpaper.-heating_electricity:before {
        background-position: right 0 bottom 250px
    }
}

@media(min-width:768px)and (max-width:991.98px) {

    .-compact>.inquiry-form-body--wallpaper.-electricity:before,
    .-compact>.inquiry-form-body--wallpaper.-heating_electricity:before {
        background-position: right 0 bottom 70px
    }
}

@media(max-width:767.98px) {

    .inquiry-form-body--wallpaper.-electricity:before,
    .inquiry-form-body--wallpaper.-heating_electricity:before {
        background-position: right -40px bottom 30px
    }
}

.inquiry-form-body--wallpaper.-gas:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='22' viewBox='0 0 17 22'%3E%3Cpath fill='hsla(0,0%25,100%25,.1)' fill-rule='evenodd' d='m7.335 0 .714.449c1.376.864 2.28 2.146 2.783 3.721.463 1.451.547 2.972.414 4.339l-.036.313-.104.63-.987-.168.084-.495a7 7 0 0 0 .046-.378c.121-1.242.045-2.634-.37-3.934-.32-1-.816-1.85-1.516-2.52l-.188-.17-.045.234a7.3 7.3 0 0 1-2.367 3.992l-.216.179C2.9 8.527.977 11.348 1.002 14.022a7.5 7.5 0 0 0 3.39 6.332l.092.057.013-.062a5.6 5.6 0 0 1 1.629-2.848l.211-.19a3.63 3.63 0 0 0 1.354-2.218l.033-.221.088-.726.644.343a7.94 7.94 0 0 1 4.108 5.784l.012.095.079-.045a6.98 6.98 0 0 0 3.323-5.4l.016-.27a11.14 11.14 0 0 0-2.331-7.158l-.22-.275-.32-.387.77-.64.32.385a12.15 12.15 0 0 1 2.782 8.11 7.98 7.98 0 0 1-4.373 6.8l-.26.126-.71.327v-.783a6.94 6.94 0 0 0-3-5.379l-.083-.055-.071.227a4.6 4.6 0 0 1-1.343 1.988l-.189.153a4.57 4.57 0 0 0-1.568 2.911l-.024.244-.053.753-.672-.34A8.5 8.5 0 0 1 0 14.021c-.029-3.042 2.037-6.071 4.905-8.6a6.34 6.34 0 0 0 2.356-4.296l.023-.282.05-.844z'/%3E%3C/svg%3E");
    background-position: right 20px bottom 30px
}

@media(min-width:992px) {
    .-compact>.inquiry-form-body--wallpaper.-gas:before {
        background-position: right 20px bottom 300px
    }
}

@media(min-width:768px)and (max-width:991.98px) {
    .-compact>.inquiry-form-body--wallpaper.-gas:before {
        background-position: right 20px bottom 100px
    }
}

.inquiry-form-body--fields {
    flex: 0 0 auto;
    z-index: 1
}

.inquiry-form-body--actions {
    flex: 0 0 auto;
    z-index: 0
}

.-compact>.inquiry-form-body--actions {
    margin-top: 15px
}

.inquiry-form-body.-usage-only .inquiry-form-body--actions {
    margin-top: 1.5rem
}

.label-link {
    cursor: pointer;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under
}

.landing-page-intro {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.5rem
}

@media(max-width:991.98px) {
    .landing-page-intro {
        flex-direction: column
    }
}

.landing-page-intro--section {
    flex: 1 0 33.33%;
    min-height: 300px;
    padding: 40px
}

.landing-page-intro--section:not(:last-child) {
    background: url("../images/divider_vertical-21fc932a.svg") no-repeat right 0 top 110px
}

@media(max-width:991.98px) {
    .landing-page-intro--section {
        min-height: 0;
        padding: 40px 0;
        text-align: center
    }

    .landing-page-intro--section:not(:last-child) {
        background: url("../images/divider_horizontal-1fef6eb4.svg") no-repeat bottom
    }
}

.landing-page-section--image {
    height: 80px;
    margin-bottom: 1rem
}

.landing-page-section--heading {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.17;
    margin-bottom: 1rem
}

.landing-page-section--text {
    font-weight: 500;
    line-height: 1.4
}

.layout {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1380px;
    min-height: 100vh;
    outline: 1px solid #ebf4f6;
    overflow-x: hidden;
    position: relative
}

.layout:after,
.layout:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    z-index: -1
}

.layout:before {
    background: url("../images/header-3f319e95.svg") no-repeat 0 0, url("../images/header-cutoff-42d59b33.svg") no-repeat bottom;
    background-color: #ebf4f6;
    height: 900px;
    left: 0;
    top: 0
}

@media(max-width:767.98px) {
    .layout:before {
        background-size: 80vw, 100vw;
        height: 990px
    }
}

@media(max-width:575.98px) {
    .layout:before {
        height: 810px
    }
}

.layout:after {
    background: #fff;
    bottom: 0;
    left: 0;
    top: 899px
}

@media(max-width:767.98px) {
    .layout:after {
        top: 990px
    }
}

@media(max-width:575.98px) {
    .layout:after {
        top: 810px
    }
}

.layout.-no-overflow-x {
    overflow-x: visible
}

.layout.-light-background:before {
    background: url("../images/header-3f319e95.svg") no-repeat 0 0
}

.layout.-light-background:after,
.layout.-light-background:before {
    background-color: #ebf4f6
}

.layout--header {
    flex: 0 0 auto
}

.layout.-no-hero .layout--header {
    box-shadow: 0 0 10px #357e9233;
    outline: 1px solid #357e9226;
    z-index: 1
}

.layout--body {
    flex: 1 0 auto;
    padding-top: 10px
}

@media(min-width:768px) {
    .layout--body {
        padding-top: 30px
    }
}

@media screen and (min-width:768px) {
    .layout--body {
        min-height: 800px
    }

    up-modal-content .layout--body {
        min-height: 0;
        padding-top: 0
    }
}

.layout.-no-hero .layout--body {
    background: #fff
}

.layout--footer {
    background: #253554 url("../images/footer-526bbf44.svg") repeat-x 100% 100%;
    background-size: 100%;
    color: #fff;
    flex: 0 0 auto;
    font-size: 16px;
    padding-bottom: 40px;
    padding-top: 40px;
    position: relative
}

@media(min-width:992px) {
    .layout--footer {
        padding-top: 140px
    }

    .scroll-down+.layout--footer {
        padding-top: 70px
    }
}

@media(max-width:991.98px) {
    .layout--footer {
        background-size: 200%
    }
}

.layout--footer a {
    color: #fff
}

.layout--footer a:hover {
    color: #9dc7d2
}

.lazy-bg-loaded {
    background-position: 50%;
    background-size: cover
}

.mobile-header-navigation {
    display: none
}

@media(max-width:991.98px) {
    .mobile-header-navigation {
        display: flex
    }
}

.navigation-dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.navigation-dropdown--link:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px
}

.no-savings-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between
}

@media(min-width:576px) {
    .no-savings-form {
        background: url("../images/guide-62c38ed8.svg") no-repeat 100% 0/auto 240px;
        max-width: 580px;
        min-height: 240px;
        padding-right: 220px
    }
}

.no-savings-form--fields {
    padding-top: 1rem
}

.no-savings-form--actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.no-savings-form--submit {
    text-wrap: nowrap
}

.no-savings-form--cancel {
    font-size: .8em;
    text-align: right
}

.no-savings-form .invalid-feedback {
    color: #ffcb00;
    display: block;
    font-weight: 600
}

.non-resizable-textarea {
    resize: none
}

.numeric-bullet {
    background-color: #ffbc1e;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 48px
}

@media(min-width:992px) {
    .numeric-bullet {
        font-size: 22px;
        height: 60px;
        line-height: 60px;
        width: 60px
    }
}

.offer-overview {
    background: #ffffffa8;
    border-radius: 10px
}

@media(min-width:992px) {
    .offer-overview {
        position: sticky;
        top: 1rem
    }
}

.offer-overview--selected-tariff {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 20px 40px
}

.offer-overview--benefits {
    padding: 40px 20px 20px
}

.optimization {
    background: no-repeat bottom;
    background-size: contain;
    position: relative;
    text-align: center
}

.optimization:before {
    content: "";
    display: block;
    padding-top: 100%
}

.optimization.-first {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cpath fill='%23ff612d' fill-rule='evenodd' d='M186.095 42.483c21.243 16.696 42.763 29.192 56.537 47.989 13.83 18.796 19.916 43.788 15.38 66.68-4.592 22.892-19.805 43.684-38.393 58.752s-40.55 24.467-63.84 32.343c-23.345 7.876-48.073 14.229-71.197 10.186-23.069-4.043-44.589-18.587-57.92-37.436-13.278-18.849-18.423-42.056-22.295-65.578-3.873-23.574-6.528-47.516.498-69.358 7.026-21.894 23.732-41.688 45.03-58.332 21.3-16.696 47.19-30.19 70.645-26.514 23.4 3.675 44.367 24.572 65.555 41.268'/%3E%3C/svg%3E")
}

.optimization.-second {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='261' height='257' viewBox='0 0 261 257'%3E%3Cpath fill='%23ffbc1e' fill-rule='evenodd' d='M210.25 12.369c22.22 11.589 40.006 32.852 46.607 56.483 6.6 23.63 2.015 49.68-2.117 75.478-4.131 25.848-7.86 51.444-21.414 70.34-13.604 18.894-36.983 31.037-61.521 37.386-24.538 6.298-50.235 6.802-74.017.1-23.782-6.7-45.65-20.557-61.874-39.25-16.225-18.744-26.856-42.375-32.197-67.82-5.391-25.495-5.543-52.805 6.097-73.312 11.588-20.507 34.968-34.162 57.742-45.498C90.331 14.888 112.45 5.869 136.887 2.342S188.03.78 210.25 12.37z'/%3E%3C/svg%3E")
}

.optimization.-third {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='261' height='257' viewBox='0 0 261 257'%3E%3Cpath fill='%2373d562' fill-rule='evenodd' d='M210.25 12.369c22.22 11.589 40.006 32.852 46.607 56.483 6.6 23.63 2.015 49.68-2.117 75.478-4.131 25.848-7.86 51.444-21.414 70.34-13.604 18.894-36.983 31.037-61.521 37.386-24.538 6.298-50.235 6.802-74.017.1-23.782-6.7-45.65-20.557-61.874-39.25-16.225-18.744-26.856-42.375-32.197-67.82-5.391-25.495-5.543-52.805 6.097-73.312 11.588-20.507 34.968-34.162 57.742-45.498C90.331 14.888 112.45 5.869 136.887 2.342S188.03.78 210.25 12.37z'/%3E%3C/svg%3E")
}

.optimization--content-wrapper {
    align-items: center;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

@media(max-width:767.98px) {
    .optimization--content-wrapper {
        padding-top: 8%
    }
}

.optimization--heading,
.optimization--label {
    font-size: .8888888889rem
}

@media(max-width:991.98px) {

    .optimization--heading,
    .optimization--label {
        font-size: 12px
    }
}

@media(max-width:767.98px) {

    .optimization--heading,
    .optimization--label {
        font-size: 8px
    }
}

.optimization--heading {
    color: #1b1b1b;
    font-weight: 700
}

.optimization--percentage {
    color: #fff;
    font-size: calc(1.27861rem + 4.24875vw);
    font-weight: 700;
    line-height: 1.1
}

@media(min-width:1200px) {
    .optimization--percentage {
        font-size: 4.1111111111rem
    }
}

.optimization--label {
    color: #fff;
    font-weight: 500
}

.optimizations {
    align-items: flex-start;
    display: flex;
    margin: 0 -20px
}

@media(max-width:767.98px) {
    .optimizations {
        margin: 0 20px
    }
}

.optimizations--optimization {
    flex: 0 0 auto;
    margin: 0 20px;
    position: relative;
    width: calc(30% - 40px)
}

.optimizations--optimization:before {
    content: "";
    display: block
}

.optimizations--optimization.lazyload:not(.lazyloaded):before {
    background-image: none !important
}

.optimizations--optimization.-first:before {
    background: url("../images/sparkles1-630ee030.svg") no-repeat bottom 10% left 10%, url("../images/arrow-right-bb14226d.svg") no-repeat 100% 100%;
    padding-top: 45%
}

.optimizations--optimization.-second:before {
    background: url("../images/sparkles2-586c9195.svg") no-repeat bottom right 10%;
    padding-top: 20%
}

.optimizations--optimization.-third:before {
    background: url("../images/sparkles3-0a0d9188.svg") no-repeat 100% 100%, url("../images/arrow-right-bb14226d.svg") no-repeat 0 0;
    margin: 30% -20% -30% -5%;
    padding-top: 45%
}

@media(max-width:991.98px) {
    .optimizations--optimization.-first:before {
        margin: 0 -10% 0 -20%;
        padding-top: 100%;
        transform: rotate(-20deg);
        transform-origin: bottom center
    }

    .optimizations--optimization.-third:before {
        background-position: 100% 100%, bottom 30% left;
        margin-left: -25%;
        padding-top: 100%;
        transform: rotate(20deg);
        transform-origin: bottom center
    }
}

@media(max-width:767.98px) {
    .optimizations--optimization {
        margin: 0 -4%;
        width: 40%
    }

    .optimizations--optimization.-first:before {
        background-position: 0 100%, 100% 100%;
        background-size: 50%, 30%;
        margin-right: 20%
    }

    .optimizations--optimization.-second:before {
        background-size: 50%
    }

    .optimizations--optimization.-third:before {
        background-position: bottom 10% right, bottom 40% left 0;
        background-size: 50%, 25%;
        margin-left: 15%;
        margin-right: -10%
    }
}

.page-header {
    margin: 0 0 1.5rem
}

.page-header--title {
    color: #11457d;
    font-size: calc(1.27083rem + 3.09375vw);
    font-weight: 700;
    line-height: 1.17;
    margin: 0;
    word-wrap: break-word
}

@media(min-width:1200px) {
    .page-header--title {
        font-size: 3.3333333333rem
    }
}

.page-header--title.-smaller {
    font-size: calc(1.26361rem + 2.02125vw)
}

@media(min-width:1200px) {
    .page-header--title.-smaller {
        font-size: 2.6111111111rem
    }
}

.page-header--title.-smaller-2 {
    font-size: calc(1.25083rem + .12375vw)
}

@media(min-width:1200px) {
    .page-header--title.-smaller-2 {
        font-size: 1.3333333333rem
    }
}

.page-header--subtitle {
    color: #1f782b;
    font-size: 1.2222222222rem;
    font-weight: 500;
    margin: 1.5rem 0 0;
    text-align: center
}

.page-header--text {
    margin: 1.5rem 0;
    text-align: center
}

.pinned-card {
    margin: 0 auto
}

.pinned-card--card {
    background-color: #f3f4f5;
    margin: 13px auto 0;
    max-height: 250px;
    max-width: 260px;
    padding: 30px;
    position: relative
}

.pinned-card--card:before {
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    box-shadow: inset -1px -2px 1px #0000001a;
    content: "";
    display: block;
    height: 26px;
    left: calc(50% - 13px);
    position: absolute;
    top: -13px;
    width: 26px
}

.pinned-card--card>img {
    width: 100%
}

.pinned-card--text {
    margin-top: 1rem;
    text-align: center
}

.pinned-card--text a:not(.btn) {
    color: #1b1b1b;
    text-decoration: underline
}

.pinned-card--text a:not(.btn):focus,
.pinned-card--text a:not(.btn):hover {
    text-decoration: none
}

@media(min-width:768px) {
    .pinned-card--text {
        text-align: left
    }
}

.pinned-cards {
    display: flex;
    flex-direction: column
}

@media(min-width:768px) {
    .pinned-cards {
        flex-direction: row;
        margin: 0 -20px
    }
}

.pinned-cards--image {
    display: none;
    flex: 0 1 16.66667%
}

@media(min-width:768px) {
    .pinned-cards--image {
        padding: 0 20px
    }
}

@media(min-width:992px) {
    .pinned-cards--image {
        display: block
    }
}

@media(max-width:767.98px) {
    .pinned-cards--card {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        text-align: center
    }

    .pinned-cards--card+.pinned-cards--card {
        border-top: 1px solid #e6e6e6
    }
}

@media(min-width:768px) {
    .pinned-cards--card {
        flex: 0 1 33.33333%
    }
}

@media(min-width:768px)and (min-width:768px) {
    .pinned-cards--card {
        padding: 0 20px
    }
}

@media(min-width:992px) {
    .pinned-cards--card {
        flex: 0 1 25%
    }
}

@media(min-width:992px)and (min-width:768px) {
    .pinned-cards--card {
        padding: 0 20px
    }
}

.press-logo {
    display: flex;
    justify-content: center
}

.press-logo.-bild {
    max-width: 30%
}

.press-logo.-ntv {
    margin-bottom: 5%;
    max-width: 50%
}

.press-logo.-focus {
    display: flex;
    max-width: 60%
}

.press-logo.-Magdeburger-allgemeine {
    margin-top: 1%
}

.press-logo.-frankfurter-allgemeine {
    margin-top: 5%
}

.press-logo.-sueddeutsche {
    margin-top: 2%
}

.protection-banner {
    background-color: #357e92;
    border-radius: 8px;
    display: flex;
    font-weight: 400;
    padding: 40px 20px
}

@media(max-width:991.98px) {
    .protection-banner {
        flex-direction: column
    }
}

.protection-banner a:not(.btn) {
    color: #fff;
    text-decoration: underline
}

.protection-banner a:not(.btn):focus,
.protection-banner a:not(.btn):hover {
    text-decoration: none
}

.protection-banner,
.protection-banner h1,
.protection-banner h2,
.protection-banner h3,
.protection-banner h4,
.protection-banner h5,
.protection-banner h6 {
    color: #fff
}

.protection-banner--image {
    flex: 0 0 auto;
    margin: 0 20px 1rem;
    text-align: center
}

@media(min-width:992px) {
    .protection-banner--image {
        align-self: flex-end;
        margin-bottom: 2px
    }
}

.protection-banner--image>img {
    width: 200px
}

.protection-banner--text {
    margin: 0 20px
}

.proven-expert-rating {
    display: inline-block;
    margin-right: .5rem
}

.proven-expert-rating--star {
    display: inline-block
}

.proven-expert-rating--star.-inactive {
    filter: grayscale(1)
}

.proven-expert-rating--star+.proven-expert-rating--star {
    margin-left: 3px
}

.quotation-request-suggestion {
    line-height: 1.5;
    margin: 3rem 0
}

.full-width .quotation-request-suggestion {
    margin-bottom: 0
}

.quotation-request-suggestion:empty {
    display: none
}

.savings {
    background: url("../images/person-54ee2d57.svg") no-repeat 0 100%;
    background-size: 98%;
    padding-bottom: 75%;
    position: relative
}

.savings.-has-no-saving {
    padding-bottom: 50%
}

.savings--text {
    left: 0;
    position: absolute;
    top: 6%;
    transform: rotate(-5deg);
    transform-origin: left top
}

@media(max-width:991.98px) {
    .savings--text {
        transform: rotate(-5deg) scale(.72)
    }
}

@media(max-width:767.98px) {
    .savings--text {
        transform: rotate(-5deg) scale(.54)
    }
}

@media(max-width:575.98px) {
    .savings--text {
        transform: rotate(-5deg) scale(.375)
    }
}

.savings--text>span {
    background-color: #ffbc1e;
    color: #000;
    font-size: 47px;
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 7px;
    padding: 0 1.5rem
}

.savings--amount,
.savings--text>span {
    display: inline-block;
    white-space: nowrap
}

.savings--amount {
    background-color: #ff612d;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    padding: 1rem 1.5rem
}

.savings--per-year {
    font-size: 18px;
    font-weight: 600;
    padding-left: .25rem
}

.savings--arrow {
    background: url("../images/arrow-00779967.svg") no-repeat 50%;
    background-size: contain;
    height: 96px;
    left: 53%;
    position: absolute;
    top: 29.5%;
    transform: rotate(0);
    transform-origin: left top;
    width: 96px
}

@media(max-width:991.98px) {
    .savings--arrow {
        transform: rotate(0) scale(.72)
    }
}

@media(max-width:767.98px) {
    .savings--arrow {
        transform: rotate(0) scale(.54)
    }
}

@media(max-width:575.98px) {
    .savings--arrow {
        transform: rotate(0) scale(.375)
    }
}

.savings--sparkles {
    background: url("../images/sparkles-3fe4dcf9.svg") no-repeat 50%;
    background-size: contain;
    height: 91px;
    left: 82%;
    position: absolute;
    top: 22%;
    transform: rotate(0);
    transform-origin: left top;
    width: 74px
}

@media(max-width:991.98px) {
    .savings--sparkles {
        transform: rotate(0) scale(.72)
    }
}

@media(max-width:767.98px) {
    .savings--sparkles {
        transform: rotate(0) scale(.54)
    }
}

@media(max-width:575.98px) {
    .savings--sparkles {
        transform: rotate(0) scale(.375)
    }
}

.savings--suggested-tariff {
    border: 6px solid #22872f;
    border-radius: 50%;
    bottom: 46%;
    color: #22872f;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 700;
    height: 174px;
    justify-content: center;
    position: absolute;
    right: 12%;
    text-align: center;
    transform: rotate(-5deg);
    transform-origin: right bottom;
    width: 174px
}

@media(max-width:991.98px) {
    .savings--suggested-tariff {
        transform: rotate(-5deg) scale(.72)
    }
}

@media(max-width:767.98px) {
    .savings--suggested-tariff {
        transform: rotate(-5deg) scale(.54)
    }
}

@media(max-width:575.98px) {
    .savings--suggested-tariff {
        transform: rotate(-5deg) scale(.375)
    }
}

.savings--suggested-tariff>span {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.savings--suggested-tariff.-has-4-digits>span {
    font-size: 42.5px
}

.savings--suggested-tariff.-has-5-digits>span {
    font-size: 37.5px
}

.savings--suggested-tariff.-has-6-digits>span {
    font-size: 32.5px
}

.savings--suggested-tariff.-has-7-digits>span {
    font-size: 27.5px
}

.savings--original-tariff {
    border: 4px solid #357e92;
    border-radius: 50%;
    bottom: 36%;
    color: #357e92;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    height: 117px;
    justify-content: center;
    position: absolute;
    right: 1%;
    text-align: center;
    transform: rotate(3deg);
    transform-origin: right bottom;
    width: 117px
}

@media(max-width:991.98px) {
    .savings--original-tariff {
        transform: rotate(3deg) scale(.72)
    }
}

@media(max-width:767.98px) {
    .savings--original-tariff {
        transform: rotate(3deg) scale(.54)
    }
}

@media(max-width:575.98px) {
    .savings--original-tariff {
        transform: rotate(3deg) scale(.375)
    }
}

.savings--original-tariff>span {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.savings--original-tariff.-has-4-digits>span {
    font-size: 28.9px
}

.savings--original-tariff.-has-5-digits>span {
    font-size: 25.5px
}

.savings--original-tariff.-has-6-digits>span {
    font-size: 22.1px
}

.savings--original-tariff.-has-7-digits>span {
    font-size: 18.7px
}

.schedule-follow-up-form .form-control.date-group--input {
    border-radius: 10px
}

.schedule-follow-up-form--follow-up-date {
    margin-top: 1.5rem
}

.schedule-follow-up-form--follow-up-date label {
    font-weight: 700
}

.schedule-follow-up-form--actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem
}

.scroll-down {
    background: url("../images/scroll-down-eb8a77d0.svg") no-repeat 50%;
    background-size: contain;
    height: 96px;
    margin: 0 auto;
    width: 96px
}

.scroll-down.-dark {
    background-image: url("../images/scroll-down-dark-084f9fe1.svg")
}

.section-spacing-bottom {
    padding-bottom: 40px
}

@media(min-width:992px) {
    .section-spacing-bottom {
        padding-bottom: 140px
    }
}

.section-spacing-top {
    padding-top: 40px
}

@media(min-width:992px) {
    .section-spacing-top {
        padding-top: 140px
    }

    .scroll-down+.section-spacing-top {
        padding-top: 70px
    }
}

.selected-tariff--head {
    align-items: baseline;
    display: flex;
    justify-content: space-between
}

.selected-tariff--eco {
    background: #22872f;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 6px 4px
}

.selected-tariff-detail {
    border-bottom: 1px solid #e9ecef;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    padding: .5rem 0
}

.selected-tariff-detail:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.selected-tariff-detail--provider {
    font-size: 16px;
    font-weight: 700
}

.selected-tariff-detail--label {
    color: #6c757d
}

.selected-tariff-detail--value.-highlight {
    color: #1f782b;
    font-weight: 700
}

.selected-tariff-detail--value.-bold {
    font-weight: 700
}

.slider {
    margin: 0 -20px;
    position: relative
}

.slider:after,
.slider:before {
    bottom: 0;
    content: "";
    left: calc(50% - 49vw + 5px);
    position: absolute;
    right: calc(50% - 49vw + 5px);
    top: 0
}

@media(min-width:1381px) {

    .slider:after,
    .slider:before {
        left: calc(50% - 671.2px);
        right: calc(50% - 671.2px)
    }
}

.slider:before {
    left: calc(50% - 49vw + 5px);
    right: 100%
}

@media(min-width:1381px) {
    .slider:before {
        left: calc(50% - 671.2px)
    }
}

.slider:after {
    left: 100%;
    right: calc(50% - 49vw + 5px)
}

@media(min-width:1381px) {
    .slider:after {
        right: calc(50% - 671.2px)
    }
}

.slider--slide {
    min-height: 48px;
    padding: 0 20px
}

.slider:not(.-ready) .slider--slide+.slider--slide {
    display: none
}

.slider--image {
    display: grid;
    min-height: 48px;
    place-items: center
}

.slider--container-wrapper {
    overflow: hidden
}

.slider--container-wrapper>* {
    margin: 0 -1px !important
}

.slider--next,
.slider--previous {
    background: no-repeat 50%;
    background-size: contain;
    border: none;
    height: 48px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: calc(50% - 24px);
    transition: opacity .2s ease-out;
    width: 48px;
    z-index: 1
}

.slider--pagination:not(.-inside)~.slider--next,
.slider--pagination:not(.-inside)~.slider--previous {
    top: calc(50% - 39px)
}

.slider--next:focus,
.slider--previous:focus {
    outline: none
}

.slider:hover .slider--next:not(.-disabled),
.slider:hover .slider--previous:not(.-disabled) {
    cursor: pointer;
    opacity: 1
}

.slider.-all-slides-visible .slider--next,
.slider.-all-slides-visible .slider--previous,
body:not(.-desktop):not([data-env=test]) .slider--next,
body:not(.-desktop):not([data-env=test]) .slider--previous {
    display: none
}

.slider.-show-buttons .slider--next,
.slider.-show-buttons .slider--previous {
    display: block !important
}

.slider--previous {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23adb5bd' fill-rule='evenodd' d='M24 4c11.046 0 20 8.954 20 20s-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4m0 2C14.059 6 6 14.059 6 24s8.059 18 18 18 18-8.059 18-18S33.941 6 24 6m-2.05 13 1.414 1.414L20.777 23H32v2H20.88l2.484 2.485L21.95 28.9 17 23.95z'/%3E%3C/svg%3E");
    left: calc(50% - 49vw + 20px)
}

@media(min-width:1381px) {
    .slider--previous {
        left: calc(50% - 656.2px)
    }
}

.slider--next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23adb5bd' fill-rule='evenodd' d='M24 4c11.046 0 20 8.954 20 20s-8.954 20-20 20S4 35.046 4 24 12.954 4 24 4m0 2C14.059 6 6 14.059 6 24s8.059 18 18 18 18-8.059 18-18S33.941 6 24 6m3.05 13L32 23.95l-4.95 4.95-1.414-1.415L28.121 25H17v-2h11.223l-2.587-2.586z'/%3E%3C/svg%3E");
    right: calc(50% - 49vw + 20px)
}

@media(min-width:1381px) {
    .slider--next {
        right: calc(50% - 656.2px)
    }
}

.slider--pagination {
    align-items: center;
    display: flex;
    height: 30px;
    justify-content: center;
    line-height: 30px
}

.slider--pagination.-with-spacer {
    margin-top: 1rem
}

.slider--pagination.-inside {
    margin-top: -30px
}

.slider.-all-slides-visible .slider--pagination {
    display: none
}

.slider--pagination-bullet {
    background-clip: content-box;
    background-color: #606880;
    border: 3.5px solid #0000;
    border-radius: 50%;
    height: 14px;
    position: relative;
    transition: all .2s linear;
    width: 14px;
    z-index: 1
}

.slider--pagination-bullet.-active {
    border-width: 0;
    margin: 0 3px
}

.slider--pagination.-clickable .slider--pagination-bullet {
    cursor: pointer
}

.slider--pagination-bullet:focus {
    outline: none
}

.stepwise-form--next-button-1,
.stepwise-form--next-button-2,
.stepwise-form--next-button-3 {
    padding-left: 60px;
    padding-right: 60px
}

.subheadline {
    color: #1f782b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: .5rem
}

.swiper-wrapper.-centered {
    align-items: center;
    display: flex
}

.tabs {
    align-items: flex-end;
    display: flex;
    height: 80px;
    overflow: hidden
}

.tabs--tab-input {
    opacity: .1
}

body:not([data-env=test]) .tabs--tab-input {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.tabs--tab {
    background-color: #9dc7d2;
    border-radius: 10px 10px 0 0;
    color: #2e6e7f;
    cursor: pointer;
    flex: 0 1 200px;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 .25rem 0 0;
    padding: 20px 50px 10px;
    text-align: center;
    transition: all .1s ease-out
}

@media(max-width:991.98px) {
    .tabs--tab {
        flex-basis: 160px;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media(max-width:767.98px) {
    .tabs--tab {
        flex-basis: 110px;
        font-size: 22px;
        line-height: 24px;
        padding-left: 12px;
        padding-right: 12px
    }
}

.tabs--tab-input:checked+.tabs--tab,
.tabs--tab:hover {
    padding-bottom: 20px
}

@media(min-width:768px) {

    .-compact>.tabs--tab-input:checked+.tabs--tab,
    .-compact>.tabs--tab:hover {
        padding-bottom: 8px
    }
}

.tabs--tab-input:checked+.tabs--tab {
    background-color: #357e92;
    box-shadow: 0 14px 20px 4px #00000040;
    color: #fff
}

@media(min-width:768px) {
    .-compact>.tabs--tab {
        padding-bottom: 3px;
        padding-top: 8px
    }
}

.tariff-card {
    border-radius: 10px;
    box-shadow: 0 10px 20px 0 #0000001a;
    display: flex;
    flex-direction: column;
    position: relative
}

.tariff-card.-suggested .tariff-card--body,
.tariff-card.-suggested .tariff-card--head {
    background-color: #22872f;
    color: #fff
}

.tariff-card.-alternative .tariff-card--body,
.tariff-card.-alternative .tariff-card--head {
    background-color: #11457d;
    color: #fff
}

.tariff-card.-original .tariff-card--body,
.tariff-card.-original .tariff-card--head {
    background-color: #357e92;
    color: #fff
}

.tariff-card.-negative-savings .tariff-card--body,
.tariff-card.-negative-savings .tariff-card--head {
    background-color: #ffbc1e;
    color: #3f3f3f
}

.tariff-card--eco {
    background: #fff;
    border-radius: 3px;
    color: #22872f;
    font-size: 12px;
    font-weight: 700;
    padding: 2px .25rem 0;
    position: absolute;
    right: .5rem;
    text-transform: uppercase;
    top: 1rem
}

.tariff-card--head {
    border-radius: 10px 10px 0 0;
    flex: 0 0 auto;
    padding-top: 55%;
    position: relative
}

.tariff-card.-suggested .tariff-card--head {
    background-color: #cae4d6;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='55' preserveAspectRatio='none' viewBox='0 0 360 55'%3E%3Cpath fill='%2322872f' fill-rule='evenodd' d='M0 55V27.5l6.122 4.208C11.4 35.32 20.7 41.49 30 44.688c10 3.437 20 3.437 30-5.737 10-9.088 20-27.564 30-28.639s20 14.825 30 20.626c10 5.8 20 1.074 30 2.298 10 1.139 20 8.014 30 11.452 10 3.437 20 3.437 30-3.438 9.898-6.805 19.796-20.345 29.694-28.392l.306-.247c10-8.1 20-10.248 30-10.312 10 .064 20 2.213 30 5.715l.6.204 1.176.407c9.408 3.3 18.816 7.416 28.224 6.264 10-1.139 20-8.014 25-11.451L360 0v55z'/%3E%3C/svg%3E")
}

.tariff-card.-alternative .tariff-card--head,
.tariff-card.-suggested .tariff-card--head {
    background-position: center bottom -1px;
    background-repeat: no-repeat;
    background-size: contain
}

.tariff-card.-alternative .tariff-card--head {
    background-color: #e0edfb;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='55' preserveAspectRatio='none' viewBox='0 0 360 55'%3E%3Cpath fill='%2311457d' fill-rule='evenodd' d='M0 55V27.5l6.122 4.208C11.4 35.32 20.7 41.49 30 44.688c10 3.437 20 3.437 30-5.737 10-9.088 20-27.564 30-28.639s20 14.825 30 20.626c10 5.8 20 1.074 30 2.298 10 1.139 20 8.014 30 11.452 10 3.437 20 3.437 30-3.438 9.898-6.805 19.796-20.345 29.694-28.392l.306-.247c10-8.1 20-10.248 30-10.312 10 .064 20 2.213 30 5.715l.6.204 1.176.407c9.408 3.3 18.816 7.416 28.224 6.264 10-1.139 20-8.014 25-11.451L360 0v55z'/%3E%3C/svg%3E")
}

.tariff-card.-alternative.-negative-savings .tariff-card--head {
    background-color: #11457d
}

.tariff-card.-original .tariff-card--head {
    background-color: #357e92
}

.tariff-card.-original .tariff-card--head:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50px
}

@media(max-width:575.98px) {
    .tariff-card.-original .tariff-card--head:before {
        top: 20px
    }
}

.tariff-card.-original .tariff-card--head.-electricity:before,
.tariff-card.-original .tariff-card--head.-heating_electricity:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='24' viewBox='0 0 22 24'%3E%3Cpath fill='hsla(0,0%25,100%25,.3)' fill-rule='evenodd' d='M4 0v5h5V0h1v5h3v5c0 3.238-2.75 5.872-6.255 5.996l.205-.011v3.018c0 2.233 1.728 4.016 3.891 4.016 2.098 0 3.787-1.677 3.887-3.814l.005-.202v-4.006c0-2.703 2.044-4.883 4.636-4.993l.205-.004H22v.98h-2.426c-2.098 0-3.786 1.678-3.886 3.815l-.005.202v4.006c0 2.774-2.153 4.997-4.842 4.997-2.619 0-4.73-2.11-4.837-4.785L6 19.003v-3.02c-3.367-.234-6-2.812-6-5.984V5h3V0zM3 5.999 1 6v4.001c0 2.702 2.325 4.884 5.257 4.995L6.49 15l.227-.004C9.674 14.893 12 12.701 12 10.001V6l-2-.001V6H9v-.001H4V6H3z'/%3E%3C/svg%3E")
}

.tariff-card.-original .tariff-card--head.-gas:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='22' viewBox='0 0 17 22'%3E%3Cpath fill='hsla(0,0%25,100%25,.3)' fill-rule='evenodd' d='m7.335 0 .714.449c1.376.864 2.28 2.146 2.783 3.721.463 1.451.547 2.972.414 4.339l-.036.313-.104.63-.987-.168.084-.495a7 7 0 0 0 .046-.378c.121-1.242.045-2.634-.37-3.934-.32-1-.816-1.85-1.516-2.52l-.188-.17-.045.234a7.3 7.3 0 0 1-2.367 3.992l-.216.179C2.9 8.527.977 11.348 1.002 14.022a7.5 7.5 0 0 0 3.39 6.332l.092.057.013-.062a5.6 5.6 0 0 1 1.629-2.848l.211-.19a3.63 3.63 0 0 0 1.354-2.218l.033-.221.088-.726.644.343a7.94 7.94 0 0 1 4.108 5.784l.012.095.079-.045a6.98 6.98 0 0 0 3.323-5.4l.016-.27a11.14 11.14 0 0 0-2.331-7.158l-.22-.275-.32-.387.77-.64.32.385a12.15 12.15 0 0 1 2.782 8.11 7.98 7.98 0 0 1-4.373 6.8l-.26.126-.71.327v-.783a6.94 6.94 0 0 0-3-5.379l-.083-.055-.071.227a4.6 4.6 0 0 1-1.343 1.988l-.189.153a4.57 4.57 0 0 0-1.568 2.911l-.024.244-.053.753-.672-.34A8.5 8.5 0 0 1 0 14.021c-.029-3.042 2.037-6.071 4.905-8.6a6.34 6.34 0 0 0 2.356-4.296l.023-.282.05-.844z'/%3E%3C/svg%3E")
}

.tariff-card--body,
.tariff-card--footer {
    padding: 20px
}

@media(max-width:575.98px) {

    .tariff-card--body,
    .tariff-card--footer {
        padding: 20px 10px
    }
}

.tariff-card--body {
    flex: 1 0 auto
}

.tariff-card.-suggested .tariff-card--body {
    background-color: #22872f;
    color: #fff
}

.tariff-card.-alternative .tariff-card--body {
    background-color: #11457d;
    color: #fff
}

.tariff-card.-original .tariff-card--body {
    background-color: #357e92;
    color: #fff
}

.tariff-card--footer {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    flex: 0 0 auto;
    font-weight: 500;
    margin-top: auto;
    text-align: center
}

.tariff-card--footer a:not(.btn) {
    color: var(--bs-secondary-color);
    text-decoration: underline
}

.tariff-card--footer a:not(.btn):focus,
.tariff-card--footer a:not(.btn):hover {
    text-decoration: none
}

@media(max-width:575.98px) {
    .tariffs:not(.-without-alternative) .tariff-card--footer a.btn {
        padding-left: 12px;
        padding-right: 12px
    }

    .tariff-card--footer a:not(.btn) {
        font-size: 11px
    }

    .tariff-card--footer a.btn {
        font-size: 14px
    }
}

@media(max-width:420px) {
    .tariff-card--footer a.btn {
        padding-left: 12px;
        padding-right: 12px
    }
}

.tariff-card--savings {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='261' height='257' viewBox='0 0 261 257'%3E%3Cpath fill='%23ff612d' fill-rule='evenodd' d='M210.25 12.369c22.22 11.589 40.006 32.852 46.607 56.483 6.6 23.63 2.015 49.68-2.117 75.478-4.131 25.848-7.86 51.444-21.414 70.34-13.604 18.894-36.983 31.037-61.521 37.386-24.538 6.298-50.235 6.802-74.017.1-23.782-6.7-45.65-20.557-61.874-39.25-16.225-18.744-26.856-42.375-32.197-67.82-5.391-25.495-5.543-52.805 6.097-73.312 11.588-20.507 34.968-34.162 57.742-45.498C90.331 14.888 112.45 5.869 136.887 2.342S188.03.78 210.25 12.37z'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    height: 160px;
    justify-content: center;
    left: calc(50% - 80px);
    line-height: 1.2;
    position: absolute;
    text-align: center;
    top: -35px;
    transform: rotate(-5deg);
    transform-origin: top;
    width: 160px
}

@media(max-width:575.98px) {
    .tariffs:not(.-without-alternative) .tariff-card--savings {
        transform: rotate(-5deg) scale(.6)
    }
}

@media(max-width:575.98px)and (max-width:575px) {
    .tariffs:not(.-without-alternative) .tariff-card--savings {
        left: -12px;
        transform: rotate(-5deg) scale(.5)
    }
}

@media(max-width:575.98px) {
    .tariffs.-without-alternative .tariff-card--savings {
        transform: rotate(-5deg) scale(.7)
    }
}

@media(max-width:575.98px)and (max-width:500px) {
    .tariffs.-without-alternative .tariff-card--savings {
        left: -5px
    }
}

@media(max-width:575.98px)and (max-width:420px) {
    .tariffs.-without-alternative .tariff-card--savings {
        left: -22px;
        transform: rotate(-5deg) scale(.6)
    }
}

@media(max-width:575.98px)and (max-width:360px) {
    .tariffs.-without-alternative .tariff-card--savings {
        left: -30px;
        transform: rotate(-5deg) scale(.5)
    }
}

.tariff-card--savings>span {
    font-size: 46px
}

.tariff-card-body {
    font-size: 16px
}

@media(max-width:767.98px) {
    .tariff-card-body {
        font-size: 11px
    }
}

.tariff-card-body--costs-amount,
.tariff-card-body--headline,
.tariff-card-body--provider-name {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.23
}

@media(max-width:767.98px) {

    .tariff-card-body--costs-amount,
    .tariff-card-body--headline,
    .tariff-card-body--provider-name {
        font-size: 14px
    }
}

.tariff-card-body--negative-savings {
    font-size: 18px
}

@media(max-width:767.98px) {
    .tariff-card-body--negative-savings {
        font-size: 12px
    }
}

.tariff-card-body--costs-amount,
.tariff-card-body--provider-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.tariff-card-body--costs-amount+.tariff-card-body--costs-headline {
    margin-top: 1rem
}

.tariff-card-body--headline {
    overflow: hidden;
    width: 100%;
    word-wrap: break-word;
    color: #fff;
    margin: 0;
    text-transform: uppercase
}

.tariff-card-body--headline.-negative-savings {
    color: #3f3f3f
}

.tariff-card.-alternative .tariff-card-body--headline.-negative-savings {
    color: #fff
}

.tariff-card-body--separator {
    background: #fff6;
    height: 1px;
    margin: 1rem -4px
}

.tariff-card-body--separator.-bold {
    background: #fff;
    height: 2px
}

.tariff-card-body--separator.-negative-savings {
    background: #3f3f3f
}

.tariff-card.-alternative .tariff-card-body--separator.-negative-savings {
    background: #fff
}

.tariff-card-body--additional-information {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-top: 1rem
}

.tariff-card-footer--button-text {
    display: none
}

@media(min-width:992px) {
    .tariff-card-footer--button-text.-up-lg {
        display: inline
    }
}

@media(max-width:991.98px) {
    .tariff-card-footer--button-text.-down-lg {
        display: inline
    }
}

.tariff-card-footer--spacer {
    margin-top: 1rem
}

.tariff-card-footer--spacer.-hidden {
    visibility: hidden
}

@media(min-width:768px) {
    .tariff-card-footer--spacer {
        margin-top: 1.5rem
    }
}

.tariff-details {
    background-color: #fff;
    box-shadow: 0 .5rem 1rem #00000026;
    font-size: 16px
}

@media(max-width:575.98px) {
    .tariff-details {
        margin-left: -20px;
        margin-right: -20px
    }
}

.tariff-details,
.tariff-details>tbody {
    display: block
}

.tariff-details>tbody>tr {
    display: grid;
    grid-template-areas: "label current previous";
    grid-template-columns: 42% 1fr 1fr;
    grid-template-rows: auto
}

.tariff-details>tbody>tr>td,
.tariff-details>tbody>tr>th {
    display: block;
    padding: 15px 20px;
    word-break: break-word
}

.tariff-details>tbody>tr>th {
    font-weight: 600;
    grid-area: label
}

.tariff-details>tbody>tr>td:first-of-type:last-of-type {
    grid-column: current/span 2
}

.tariff-details>tbody>tr:not(.tariff-details--heading):nth-of-type(odd) {
    background-color: #ebf4f6
}

.tariff-details>tbody>tr:not(.tariff-details--heading)>td.-previous {
    color: #606880
}

@media(max-width:767.98px) {
    .tariff-details>tbody>tr {
        grid-template-areas: "label label" "current previous";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto
    }

    .tariff-details>tbody>tr>td:not(:first-child),
    .tariff-details>tbody>tr>th:not(:first-child) {
        padding-top: 0
    }
}

@media(min-width:768px) {
    .tariff-details>tbody>tr:not(.tariff-details--heading)>th {
        font-weight: 400
    }

    .tariff-details>tbody>tr:not(.tariff-details--heading)>th+td {
        border-left: 1px solid #d0d0d0
    }
}

.tariff-details--heading {
    background-color: #357e92;
    color: #fff
}

.tariffs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 22px;
    padding-left: 12px;
    padding-right: 12px;
    position: relative
}

@media(min-width:1200px) {
    .tariffs {
        margin-left: -188px;
        margin-right: -420px;
        padding-left: 188px;
        padding-right: 420px
    }

    .tariffs.-narrow {
        margin-left: -68px;
        margin-right: -300px
    }

    .tariffs:after,
    .tariffs:before {
        background-repeat: no-repeat;
        content: "";
        height: 828px;
        left: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: -75px
    }

    .tariffs:before {
        background-image: url("../images/tree-f80476ab.svg");
        background-position: 100% 100%
    }

    .tariffs:after {
        background-image: url("../images/person-866ba9be.svg");
        background-position: 0 100%
    }
}

.tariffs--tariff-card {
    flex: 0 1 auto;
    margin-top: 55px;
    min-width: 270px;
    width: calc(33% - 20px)
}

@media(max-width:767.98px) {
    .tariffs--tariff-card {
        min-width: 200px
    }
}

@media(max-width:575.98px) {
    .tariffs--tariff-card {
        min-width: 160px
    }
}

.tariffs.-without-alternative .tariffs--tariff-card {
    min-width: auto
}

@media(max-width:991.98px) {
    .tariffs--tariff-card+.tariffs--tariff-card {
        margin-left: 1.5rem
    }

    .tariffs.-without-alternative .tariffs--tariff-card+.tariffs--tariff-card {
        margin-left: 0
    }
}

.tariffs.-without-alternative .tariffs--tariff-card {
    width: calc(50% - 20px)
}

@media(max-width:767.98px) {
    .tariffs--tariff-card {
        width: calc(33% - 10px)
    }

    .tariffs.-without-alternative .tariffs--tariff-card {
        width: calc(50% - 10px)
    }
}

.tariffs--tariff-card.-suggested:before {
    background: url("../images/sparkles-d37572d6.svg") no-repeat bottom;
    background-size: contain;
    content: "";
    display: block;
    height: 50px;
    margin: -55px 0 5px;
    width: 100%
}

.tariffs-hint {
    margin-top: 3rem;
    text-align: center
}

.tariffs-hint a:not(.btn) {
    color: #283582;
    text-decoration: underline
}

.tariffs-hint a:not(.btn):focus,
.tariffs-hint a:not(.btn):hover {
    text-decoration: none
}

@media(max-width:767.98px) {
    .tariffs-hint {
        font-size: 14px;
        text-align: left
    }
}

.tariffs-scroll-container {
    margin-left: -12px;
    margin-right: -12px;
    overflow-x: auto;
    scrollbar-width: none
}

.tariffs-scroll-container::-webkit-scrollbar {
    display: none
}

body.-desktop .tariffs-scroll-container {
    overflow-x: visible
}

.text-underline {
    text-decoration: underline
}

.tooltip {
    background-color: #111;
    max-width: 300px;
    z-index: 30000
}

@media(max-width:767.98px) {
    .tooltip {
        max-width: 250px
    }
}

@media(max-width:575.98px) {
    .tooltip {
        max-width: 200px
    }
}

.tooltip.-hidden {
    display: none
}

.tooltip[data-popper-placement^=top]>.tooltip--arrow {
    bottom: -4px
}

.tooltip[data-popper-placement^=bottom]>.tooltip--arrow {
    top: -4px
}

.tooltip[data-popper-placement^=left]>.tooltip--arrow {
    right: -4px
}

.tooltip[data-popper-placement^=right]>.tooltip--arrow {
    left: -4px
}

.tooltip--help-icon {
    background-color: #fff;
    border: 2px solid #606880;
    border-radius: 50%;
    cursor: help;
    display: inline-block;
    height: calc(1em + 4px);
    line-height: 1;
    margin-left: .5rem;
    text-align: center;
    width: calc(1em + 4px)
}

.tooltip--help-icon:before {
    color: #606880;
    content: "?"
}

.tooltip--help-icon:focus {
    box-shadow: 0 0 0 .25rem #9dc7d2
}

.tooltip--content {
    color: #fff;
    padding: 6px 9px
}

.tooltip--arrow {
    visibility: hidden
}

.tooltip--arrow,
.tooltip--arrow:before {
    background: #111;
    height: 8px;
    position: absolute;
    width: 8px
}

.tooltip--arrow:before {
    content: "";
    transform: rotate(45deg);
    visibility: visible
}

.unit-price-adjustment-form {
    margin-bottom: 1.5rem
}

.unit-price-adjustment-form .invalid-feedback {
    display: block
}

.unit-price-adjustment-form--input {
    max-width: 150px
}

.unit-price-adjustment-form--button {
    margin-top: 1rem
}

.usage-buttons {
    display: flex;
    flex-direction: row
}

.usage-buttons--button {
    background-color: #ffffff40;
    background-repeat: no-repeat;
    border-width: 0;
    color: #fff;
    display: block;
    flex: 0 0 auto;
    height: 44px;
    width: 53.24px
}

.usage-buttons--button:first-child {
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px
}

.usage-buttons--button:last-child {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px
}

.usage-buttons--button:hover {
    opacity: .7
}

.usage-buttons--button.active {
    background-color: #fff;
    color: #357e92;
    opacity: 1
}

.usage-buttons--button.-electricity-1,
.usage-buttons--button.-electricity-2,
.usage-buttons--button.-electricity-3,
.usage-buttons--button.-electricity-4 {
    background-position: 50%;
    background-size: auto 36px
}

.usage-buttons--button.-electricity-1 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='38' viewBox='0 0 16 38'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M8 13a8 8 0 0 1 8 8v6a1 1 0 0 1-1 1h-2.246l-.757 9.083c-.039.46-.385.827-.827.903L11 38H5c-.52 0-.953-.399-.997-.917L3.244 28H1a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6v5h2.166a1 1 0 0 1 .968.749l.029.168L5.92 36h4.158l.76-9.083a1 1 0 0 1 .826-.903l.17-.014H14v-5a6 6 0 0 0-5.647-5.99zM8 0a6.5 6.5 0 1 1 0 13A6.5 6.5 0 0 1 8 0m0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E")
}

.usage-buttons--button.-electricity-1.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='38' viewBox='0 0 16 38'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M8 13a8 8 0 0 1 8 8v6a1 1 0 0 1-1 1h-2.246l-.757 9.083c-.039.46-.385.827-.827.903L11 38H5c-.52 0-.953-.399-.997-.917L3.244 28H1a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6v5h2.166a1 1 0 0 1 .968.749l.029.168L5.92 36h4.158l.76-9.083a1 1 0 0 1 .826-.903l.17-.014H14v-5a6 6 0 0 0-5.647-5.99zM8 0a6.5 6.5 0 1 1 0 13A6.5 6.5 0 0 1 8 0m0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E")
}

.usage-buttons--button.-electricity-2 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='38' viewBox='0 0 32 38'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M25 5.002a5.5 5.5 0 1 1 0 11l.051-.002A7 7 0 0 1 32 23v5a1 1 0 0 1-1 1h-2.106l-.9 8.11c-.05.45-.394.803-.828.876L27 38h-4a1 1 0 0 1-.994-.89L21.104 29H19a1 1 0 0 1-.984-.82L18 28v-5a7 7 0 0 1 7-7l-.051.002a5.501 5.501 0 0 1 .051-11M8 13a8 8 0 0 1 8 8v6a1 1 0 0 1-1 1h-2.246l-.757 9.083c-.039.46-.385.827-.827.903L11 38H5c-.52 0-.953-.399-.997-.917L3.244 28H1a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 8-8m17 5a5 5 0 0 0-5 5v4h2c.453 0 .841.303.962.726l.032.164.9 8.11h2.21l.902-8.11c.05-.45.394-.803.828-.876L28 27h2v-4a5 5 0 0 0-4.671-4.99zM8 15a6 6 0 0 0-6 6v5h2.166a1 1 0 0 1 .968.749l.029.168L5.92 36h4.158l.76-9.083a1 1 0 0 1 .826-.903l.17-.014H14v-5a6 6 0 0 0-5.647-5.99zm17-7.998a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M8 0a6.5 6.5 0 1 1 0 13A6.5 6.5 0 0 1 8 0m0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E")
}

.usage-buttons--button.-electricity-2.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='38' viewBox='0 0 32 38'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M25 5.002a5.5 5.5 0 1 1 0 11l.051-.002A7 7 0 0 1 32 23v5a1 1 0 0 1-1 1h-2.106l-.9 8.11c-.05.45-.394.803-.828.876L27 38h-4a1 1 0 0 1-.994-.89L21.104 29H19a1 1 0 0 1-.984-.82L18 28v-5a7 7 0 0 1 7-7l-.051.002a5.501 5.501 0 0 1 .051-11M8 13a8 8 0 0 1 8 8v6a1 1 0 0 1-1 1h-2.246l-.757 9.083c-.039.46-.385.827-.827.903L11 38H5c-.52 0-.953-.399-.997-.917L3.244 28H1a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 8-8m17 5a5 5 0 0 0-5 5v4h2c.453 0 .841.303.962.726l.032.164.9 8.11h2.21l.902-8.11c.05-.45.394-.803.828-.876L28 27h2v-4a5 5 0 0 0-4.671-4.99zM8 15a6 6 0 0 0-6 6v5h2.166a1 1 0 0 1 .968.749l.029.168L5.92 36h4.158l.76-9.083a1 1 0 0 1 .826-.903l.17-.014H14v-5a6 6 0 0 0-5.647-5.99zm17-7.998a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M8 0a6.5 6.5 0 1 1 0 13A6.5 6.5 0 0 1 8 0m0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E")
}

.usage-buttons--button.-electricity-3 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='38' viewBox='0 0 48 38'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M24 16a7 7 0 0 1 7 7v5a1 1 0 0 1-1 1h-2.106l-.9 8.11c-.05.45-.394.803-.828.876L26 38h-4a1 1 0 0 1-.994-.89L20.104 29H18a1 1 0 0 1-.984-.82L17 28v-5a7 7 0 0 1 7-7M8-.002a6.5 6.5 0 1 1 0 13l.141-.003a8 8 0 0 1 7.148 4.703 1 1 0 1 1-1.822.824 5.999 5.999 0 0 0-11.456 2.111L2 21l-.002 4.998L4 26a1 1 0 0 1 .964.735l.031.165.909 9.098h4.19l.911-9.098a1 1 0 0 1 .827-.886L12 26h2a1 1 0 0 1 .18 1.984L14 28l-1.096-.002-.909 9.102a1 1 0 0 1-.827.886L11 38H5a1 1 0 0 1-.964-.735l-.031-.165-.911-9.102L1 28a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 7.858-8.005A6.5 6.5 0 0 1 8-.002m32 0a6.5 6.5 0 1 1 0 13l.142-.003q.77.013 1.547.18a8 8 0 0 1 6.301 7.423L48 21v6a1 1 0 0 1-.82.984L47 28l-2.096-.002-.909 9.102a1 1 0 0 1-.827.886L43 38h-6a1 1 0 0 1-.964-.735l-.031-.165-.911-9.102L34 28a1 1 0 0 1-.984-.82L33 27a1 1 0 0 1 .82-.984L34 26h2a1 1 0 0 1 .964.735l.031.165.909 9.098h4.19l.911-9.098a1 1 0 0 1 .827-.886L44 26l2-.002v-4.999a6 6 0 0 0-4.377-5.78l-.356-.09a6 6 0 0 0-6.734 3.393 1 1 0 0 1-1.823-.824 8 8 0 0 1 7.149-4.703A6.5 6.5 0 0 1 40-.002M24 18a5 5 0 0 0-5 5v4h2c.453 0 .841.303.962.726l.032.164.9 8.11h2.21l.902-8.11c.05-.45.394-.803.828-.876L27 27h2v-4a5 5 0 0 0-4.671-4.99zm0-13a5.5 5.5 0 1 1 0 11 5.5 5.5 0 1 1 0-11m0 2a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M8 1.998a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9m32 0a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E");
    width: 62px
}

.usage-buttons--button.-electricity-3.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='38' viewBox='0 0 48 38'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M24 16a7 7 0 0 1 7 7v5a1 1 0 0 1-1 1h-2.106l-.9 8.11c-.05.45-.394.803-.828.876L26 38h-4a1 1 0 0 1-.994-.89L20.104 29H18a1 1 0 0 1-.984-.82L17 28v-5a7 7 0 0 1 7-7M8-.002a6.5 6.5 0 1 1 0 13l.141-.003a8 8 0 0 1 7.148 4.703 1 1 0 1 1-1.822.824 5.999 5.999 0 0 0-11.456 2.111L2 21l-.002 4.998L4 26a1 1 0 0 1 .964.735l.031.165.909 9.098h4.19l.911-9.098a1 1 0 0 1 .827-.886L12 26h2a1 1 0 0 1 .18 1.984L14 28l-1.096-.002-.909 9.102a1 1 0 0 1-.827.886L11 38H5a1 1 0 0 1-.964-.735l-.031-.165-.911-9.102L1 28a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 7.858-8.005A6.5 6.5 0 0 1 8-.002m32 0a6.5 6.5 0 1 1 0 13l.142-.003q.77.013 1.547.18a8 8 0 0 1 6.301 7.423L48 21v6a1 1 0 0 1-.82.984L47 28l-2.096-.002-.909 9.102a1 1 0 0 1-.827.886L43 38h-6a1 1 0 0 1-.964-.735l-.031-.165-.911-9.102L34 28a1 1 0 0 1-.984-.82L33 27a1 1 0 0 1 .82-.984L34 26h2a1 1 0 0 1 .964.735l.031.165.909 9.098h4.19l.911-9.098a1 1 0 0 1 .827-.886L44 26l2-.002v-4.999a6 6 0 0 0-4.377-5.78l-.356-.09a6 6 0 0 0-6.734 3.393 1 1 0 0 1-1.823-.824 8 8 0 0 1 7.149-4.703A6.5 6.5 0 0 1 40-.002M24 18a5 5 0 0 0-5 5v4h2c.453 0 .841.303.962.726l.032.164.9 8.11h2.21l.902-8.11c.05-.45.394-.803.828-.876L27 27h2v-4a5 5 0 0 0-4.671-4.99zm0-13a5.5 5.5 0 1 1 0 11 5.5 5.5 0 1 1 0-11m0 2a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M8 1.998a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9m32 0a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E")
}

.usage-buttons--button.-electricity-4 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='38' viewBox='0 0 48 38'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M30 16a7 7 0 0 1 7 7v5a1 1 0 0 1-1 1h-2.106l-.9 8.11c-.05.45-.394.803-.828.876L32 38h-4a1 1 0 0 1-.994-.89L26.104 29H25v1a1 1 0 0 1-.883.993L24 31h-2.134l-.876 6.141a1 1 0 0 1-.807.842L20 38h-4a1 1 0 0 1-.99-.859L14.132 31H12a1 1 0 0 1-.984-.82L11 30v-5a7 7 0 0 1 12.43-4.418A7 7 0 0 1 30 16m10-3a8 8 0 0 1 7.99 7.6l.01.4v6a1 1 0 0 1-.82.984L47 28l-2.246-.002-.757 9.085c-.039.46-.385.827-.827.903L43 38h-6a1 1 0 0 1-.968-.749l-.029-.168-.4-4.8a1.002 1.002 0 0 1 1.963-.344l.03.178.324 3.881h4.158l.76-9.081a1 1 0 0 1 .826-.903l.17-.014L46 25.998V21a6 6 0 0 0-5.649-5.99L40 15c-.53 0-1.058.068-1.57.204a1 1 0 1 1-.514-1.932A8 8 0 0 1 40.001 13zM7.999 13c.704 0 1.406.09 2.086.272a1 1 0 0 1-.514 1.933A6 6 0 0 0 8 15a6 6 0 0 0-5.99 5.647L2 21v4.998L4.166 26a1 1 0 0 1 .968.749l.029.168.757 9.081h4.158l.137-1.635a1 1 0 0 1 .9-.912l.18-.002a1 1 0 0 1 .912.9l.002.18-.212 2.554c-.039.46-.385.827-.827.903L11 38H5a1 1 0 0 1-.968-.749l-.029-.168-.759-9.085L1 28a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 7.999-8M30 18a5 5 0 0 0-5 5v4h2c.453 0 .841.303.962.726l.032.164.9 8.11h2.21l.902-8.11c.05-.45.394-.803.828-.876L33 27h2v-4a5 5 0 0 0-4.671-4.99zm-12 2a5 5 0 0 0-5 5v4h2c.435 0 .813.28.948.68l.042.179.876 6.141h2.266l.878-6.141a1 1 0 0 1 .807-.842L21 29h2v-4a5 5 0 0 0-4.671-4.99zm0-12a5 5 0 1 1-.001 10.001A5 5 0 0 1 18 8m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6m12-4a5 5 0 1 1-.001 10.001A5 5 0 0 1 30 6m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6M42.985.726a6.5 6.5 0 0 1-4.859 11.998 1 1 0 0 1 .576-1.916 4.5 4.5 0 1 0-2.492-6.736 1 1 0 1 1-1.684-1.08 6.5 6.5 0 0 1 8.46-2.266zM13.474 2.992a1 1 0 1 1-1.684 1.08 4.5 4.5 0 1 0-2.492 6.738 1 1 0 1 1 .576 1.915 6.501 6.501 0 1 1 3.6-9.732z'/%3E%3C/svg%3E");
    width: 62px
}

.usage-buttons--button.-electricity-4.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='38' viewBox='0 0 48 38'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M30 16a7 7 0 0 1 7 7v5a1 1 0 0 1-1 1h-2.106l-.9 8.11c-.05.45-.394.803-.828.876L32 38h-4a1 1 0 0 1-.994-.89L26.104 29H25v1a1 1 0 0 1-.883.993L24 31h-2.134l-.876 6.141a1 1 0 0 1-.807.842L20 38h-4a1 1 0 0 1-.99-.859L14.132 31H12a1 1 0 0 1-.984-.82L11 30v-5a7 7 0 0 1 12.43-4.418A7 7 0 0 1 30 16m10-3a8 8 0 0 1 7.99 7.6l.01.4v6a1 1 0 0 1-.82.984L47 28l-2.246-.002-.757 9.085c-.039.46-.385.827-.827.903L43 38h-6a1 1 0 0 1-.968-.749l-.029-.168-.4-4.8a1.002 1.002 0 0 1 1.963-.344l.03.178.324 3.881h4.158l.76-9.081a1 1 0 0 1 .826-.903l.17-.014L46 25.998V21a6 6 0 0 0-5.649-5.99L40 15c-.53 0-1.058.068-1.57.204a1 1 0 1 1-.514-1.932A8 8 0 0 1 40.001 13zM7.999 13c.704 0 1.406.09 2.086.272a1 1 0 0 1-.514 1.933A6 6 0 0 0 8 15a6 6 0 0 0-5.99 5.647L2 21v4.998L4.166 26a1 1 0 0 1 .968.749l.029.168.757 9.081h4.158l.137-1.635a1 1 0 0 1 .9-.912l.18-.002a1 1 0 0 1 .912.9l.002.18-.212 2.554c-.039.46-.385.827-.827.903L11 38H5a1 1 0 0 1-.968-.749l-.029-.168-.759-9.085L1 28a1 1 0 0 1-.984-.82L0 27v-6a8 8 0 0 1 7.999-8M30 18a5 5 0 0 0-5 5v4h2c.453 0 .841.303.962.726l.032.164.9 8.11h2.21l.902-8.11c.05-.45.394-.803.828-.876L33 27h2v-4a5 5 0 0 0-4.671-4.99zm-12 2a5 5 0 0 0-5 5v4h2c.435 0 .813.28.948.68l.042.179.876 6.141h2.266l.878-6.141a1 1 0 0 1 .807-.842L21 29h2v-4a5 5 0 0 0-4.671-4.99zm0-12a5 5 0 1 1-.001 10.001A5 5 0 0 1 18 8m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6m12-4a5 5 0 1 1-.001 10.001A5 5 0 0 1 30 6m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6M42.985.726a6.5 6.5 0 0 1-4.859 11.998 1 1 0 0 1 .576-1.916 4.5 4.5 0 1 0-2.492-6.736 1 1 0 1 1-1.684-1.08 6.5 6.5 0 0 1 8.46-2.266zM13.474 2.992a1 1 0 1 1-1.684 1.08 4.5 4.5 0 1 0-2.492 6.738 1 1 0 1 1 .576 1.915 6.501 6.501 0 1 1 3.6-9.732z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-1,
.usage-buttons--button.-gas-2,
.usage-buttons--button.-gas-3,
.usage-buttons--button.-gas-4 {
    background-position: center bottom 14px;
    background-size: 28px auto;
    font-size: 11px;
    line-height: 12px;
    padding-top: 32px;
    text-align: center
}

.usage-buttons--button.-gas-1 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='18' viewBox='0 0 23 18'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M5 8v9h4v-6h5v6h4V8h1v10H4V8zm8 4h-3v5h3zM11.5.93l11.24 6.131-.48.878-10.76-5.87L.74 7.939.26 7.06 11.5.931z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-1.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='18' viewBox='0 0 23 18'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M5 8v9h4v-6h5v6h4V8h1v10H4V8zm8 4h-3v5h3zM11.5.93l11.24 6.131-.48.878-10.76-5.87L.74 7.939.26 7.06 11.5.931z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-2 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' viewBox='0 0 23 21'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M4 10v10h5v-6h5v6h5V10h1v11H3V10zm9 5h-3v5h3zm0-7v3h-3V8zM11.5.907l11.268 7.171-.536.844L11.5 2.092.768 8.922l-.536-.844L11.5.908z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-2.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' viewBox='0 0 23 21'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M4 10v10h5v-6h5v6h5V10h1v11H3V10zm9 5h-3v5h3zm0-7v3h-3V8zM11.5.907l11.268 7.171-.536.844L11.5 2.092.768 8.922l-.536-.844L11.5.908z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-3 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='22' viewBox='0 0 23 22'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M4 6v15h5v-6h5v6h5V6h1v16H3V6zm9 10h-3v5h3zm-3-8v3H7V8zm6 0v3h-3V8zM11.5-.032 22.67 4.03l-.34.94L11.5 1.03.67 4.97l-.34-.94z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-3.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='22' viewBox='0 0 23 22'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M4 6v15h5v-6h5v6h5V6h1v16H3V6zm9 10h-3v5h3zm-3-8v3H7V8zm6 0v3h-3V8zM11.5-.032 22.67 4.03l-.34.94L11.5 1.03.67 4.97l-.34-.94z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-4 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='22' viewBox='0 0 23 22'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M4 3v18h5v-6h5v6h5V3h1v19H3V3zm9 13h-3v5h3zm-3-7v3H7V9zm6 0v3h-3V9zm-6-5v3H7V4zm6 0v3h-3V4zm6.5-4v1H.5V0z'/%3E%3C/svg%3E")
}

.usage-buttons--button.-gas-4.active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='22' viewBox='0 0 23 22'%3E%3Cpath fill='%23357e92' fill-rule='evenodd' d='M4 3v18h5v-6h5v6h5V3h1v19H3V3zm9 13h-3v5h3zm-3-7v3H7V9zm6 0v3h-3V9zm-6-5v3H7V4zm6 0v3h-3V4zm6.5-4v1H.5V0z'/%3E%3C/svg%3E")
}

.btn-block {
    display: block;
    width: 100%
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

body[data-env=test] .form-control {
    opacity: 1 !important;
    z-index: 1 !important
}

.form-group {
    margin-bottom: .5rem
}

.form-group.hidden {
    display: none
}

.form-label {
    cursor: pointer
}

.form-label:has(~input:disabled) {
    cursor: not-allowed
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

html {
    -webkit-text-size-adjust: 100%
}

img[src="//:0"] {
    opacity: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input[type=date] {
    white-space: nowrap
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none
}

.btn:not(.btn-link):not(:disabled):not(.disabled):focus,
.btn:not(.btn-link):not(:disabled):not(.disabled):focus:active {
    box-shadow: 0 0 0 .2rem #9dc7d2
}

.btn:not(.btn-link):not(:disabled):not(.disabled)[class*=-outline-]:not(:focus):not(:hover) {
    background-color: #fff
}

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-bg: #f90;
    --bs-btn-border-color: #f90;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffbc1e;
    --bs-btn-hover-border-color: #ffbc1e;
    --bs-btn-focus-shadow-rgb: 217, 130, 0;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f90;
    --bs-btn-active-border-color: #f90;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f90;
    --bs-btn-disabled-border-color: #f90
}

.btn-primary:focus,
.btn-primary:hover {
    color: #755200
}

.btn-outline-primary {
    --bs-btn-color: #f90;
    --bs-btn-border-color: #f90;
    --bs-btn-hover-color: #573400;
    --bs-btn-hover-bg: #ffbc1e;
    --bs-btn-hover-border-color: #ffbc1e;
    --bs-btn-focus-shadow-rgb: 255, 153, 0;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffbc1e;
    --bs-btn-active-border-color: #ffbc1e;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #f90;
    --bs-btn-disabled-bg: #0000;
    --bs-btn-disabled-border-color: #f90;
    --bs-gradient: none
}

.inquiry-form .form-check-input {
    --bs-border-color: #0000
}

.form-control {
    background-clip: initial
}

.form-control[readonly] {
    background-color: #fff;
    cursor: not-allowed
}

.form-control[disabled] {
    cursor: not-allowed
}

.form-switch .form-check-input:checked~.form-check-label:after,
.form-switch .form-check-input~.form-check-label:after {
    background-color: #fff
}

.input-group-text {
    font-size: .8em;
    font-weight: 500
}

label {
    color: #000;
    font-weight: 500
}

@media(max-width:575.98px) {
    .lead {
        font-size: 1rem
    }
}

.list-group-item {
    --bs-list-group-item-padding-y: 0.75rem;
    --bs-list-group-item-padding-x: 1.25rem
}

body:not([data-env=test]) .sr-label {
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    width: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important
}

body:not([data-env=test]) .sr-label:not(caption) {
    position: absolute !important
}

body:not([data-env=test]) .sr-label * {
    overflow: hidden !important
}

body[data-env=test] .sr-label {
    color: var(--bs-secondary-color);
    font-size: .8em;
    outline: 1px dashed var(--bs-secondary-color)
}

.ts-control {
    border: 1px solid #fff;
    border-radius: var(--bs-border-radius);
    box-shadow: none;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow: hidden;
    padding: .375rem 1rem;
    position: relative;
    width: 100%;
    z-index: 1
}

.ts-wrapper.multi.has-items .ts-control {
    padding: calc(.375rem - 1px) 1rem calc(.375rem - 4px)
}

.full .ts-control {
    background-color: #fff
}

.disabled .ts-control,
.disabled .ts-control * {
    cursor: default !important
}

.focus .ts-control {
    box-shadow: none
}

.ts-control>* {
    display: inline-block;
    vertical-align: initial
}

.ts-wrapper.multi .ts-control>div {
    background: #efefef;
    border: 0 solid #dee2e6;
    color: #343a40;
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 1px 5px
}

.ts-wrapper.multi .ts-control>div.active {
    background: #283582;
    border: 0 solid #0000;
    color: #fff
}

.ts-wrapper.multi.disabled .ts-control>div,
.ts-wrapper.multi.disabled .ts-control>div.active {
    background: #fff;
    border: 0 solid #fff;
    color: #878787
}

.ts-control>input {
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
    flex: 1 1 auto;
    line-height: inherit !important;
    margin: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    min-height: 0 !important;
    min-width: 7rem;
    padding: 0 !important;
    text-indent: 0 !important;
    -webkit-user-select: auto !important;
    user-select: auto !important
}

.ts-control>input::-ms-clear {
    display: none
}

.ts-control>input:focus {
    outline: none !important
}

.has-items .ts-control>input {
    margin: 0 4px !important
}

.ts-control.rtl {
    text-align: right
}

.ts-control.rtl.single .ts-control:after {
    left: calc(1rem + 5px);
    right: auto
}

.ts-control.rtl .ts-control>input {
    margin: 0 4px 0 -2px !important
}

.disabled .ts-control {
    background-color: var(--bs-secondary-bg);
    opacity: .5
}

.input-hidden .ts-control>input {
    left: -10000px;
    opacity: 0;
    position: absolute
}

.ts-dropdown {
    background: var(--bs-body-bg);
    border: 1px solid #d0d0d0;
    border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
    border-top: 0;
    box-shadow: 0 1px 3px #0000001a;
    box-sizing: border-box;
    left: 0;
    margin: .25rem 0 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10
}

.ts-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden
}

.ts-dropdown [data-selectable] .highlight {
    background: #ffed2866;
    border-radius: 1px
}

.ts-dropdown .create,
.ts-dropdown .no-results,
.ts-dropdown .optgroup-header,
.ts-dropdown .option {
    padding: 3px 1rem
}

.ts-dropdown .option,
.ts-dropdown [data-disabled],
.ts-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: .5
}

.ts-dropdown [data-selectable].option {
    cursor: pointer;
    opacity: 1
}

.ts-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0
}

.ts-dropdown .optgroup-header {
    background: var(--bs-body-bg);
    color: #6c757d;
    cursor: default
}

.ts-dropdown .active {
    background-color: #2835821a
}

.ts-dropdown .active,
.ts-dropdown .active.create {
    color: var(--bs-body-color)
}

.ts-dropdown .create {
    color: #343a4080
}

.ts-dropdown .spinner {
    display: inline-block;
    height: 30px;
    margin: 3px 1rem;
    width: 30px
}

.ts-dropdown .spinner:after {
    animation: lds-dual-ring 1.2s linear infinite;
    border-color: #d0d0d0 #0000;
    border-radius: 50%;
    border-style: solid;
    border-width: 5px;
    content: " ";
    display: block;
    height: 24px;
    margin: 3px;
    width: 24px
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.ts-dropdown-content {
    max-height: 200px;
    overflow: hidden auto;
    scroll-behavior: smooth
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
    color: #0000 !important
}

.ts-wrapper.plugin-drag_drop .ts-dragging>* {
    visibility: hidden !important
}

.plugin-checkbox_options:not(.rtl) .option input {
    margin-right: .5rem
}

.plugin-checkbox_options.rtl .option input {
    margin-left: .5rem
}

.plugin-clear_button {
    --ts-pr-clear-button: 1em
}

.plugin-clear_button .clear-button {
    background: #0000 !important;
    cursor: pointer;
    margin-right: 0 !important;
    opacity: 0;
    position: absolute;
    right: calc(1rem - 5px);
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .5s
}

.plugin-clear_button.form-select .clear-button,
.plugin-clear_button.single .clear-button {
    right: max(var(--ts-pr-caret), 1rem)
}

.plugin-clear_button.focus.has-items .clear-button,
.plugin-clear_button:not(.disabled):hover.has-items .clear-button {
    opacity: 1
}

.ts-wrapper .dropdown-header {
    background: color-mix(var(--bs-body-bg), #d0d0d0, 85%);
    border-bottom: 1px solid #d0d0d0;
    border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
    padding: 6px 1rem;
    position: relative
}

.ts-wrapper .dropdown-header-close {
    color: #343a40;
    font-size: 20px !important;
    line-height: 20px;
    margin-top: -12px;
    opacity: .4;
    position: absolute;
    right: 1rem;
    top: 50%
}

.ts-wrapper .dropdown-header-close:hover {
    color: #000
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
    border: 1px solid #fff;
    box-shadow: none;
    box-shadow: 0 1px 6px 0 #00000026
}

.plugin-dropdown_input .dropdown-input {
    background: #0000;
    border: solid #d0d0d0;
    border-width: 0 0 1px;
    box-shadow: none;
    display: block;
    padding: .375rem 1rem;
    width: 100%
}

.plugin-dropdown_input.focus .ts-dropdown .dropdown-input {
    border-color: #206d82;
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control>input {
    min-width: 0
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input {
    flex: none;
    min-width: 4px
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::placeholder {
    color: #0000
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
    display: flex
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0;
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0
}

.ts-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0
}

.ts-wrapper.plugin-remove_button .item {
    align-items: center;
    display: inline-flex
}

.ts-wrapper.plugin-remove_button .item .remove {
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    color: inherit;
    display: inline-block;
    padding: 0 5px;
    text-decoration: none;
    vertical-align: middle
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
    background: #0000000d
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
    background: none
}

.ts-wrapper.plugin-remove_button .remove-single {
    font-size: 23px;
    position: absolute;
    right: 0;
    top: 0
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
    padding-right: 0 !important
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
    border-left: 1px solid #dee2e6;
    margin-left: 5px
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
    border-left-color: #0000
}

.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
    border-left-color: #fff
}

.ts-wrapper.plugin-remove_button.rtl .item {
    padding-left: 0 !important
}

.ts-wrapper.plugin-remove_button.rtl .item .remove {
    border-right: 1px solid #dee2e6;
    margin-right: 5px
}

.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
    border-right-color: #0000
}

.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
    border-right-color: #fff
}

:root {
    --ts-pr-clear-button: 0px;
    --ts-pr-caret: 0px;
    --ts-pr-min: .75rem
}

.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input {
    cursor: pointer
}

.ts-control:not(.rtl) {
    padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important
}

.ts-control.rtl {
    padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important
}

.ts-wrapper {
    position: relative
}

.ts-control,
.ts-control input,
.ts-dropdown {
    color: #343a40;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
    background: #fff;
    cursor: text
}

.ts-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important
}

.ts-dropdown,
.ts-dropdown.form-control,
.ts-dropdown.form-select {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    height: auto;
    padding: 0;
    z-index: 1000
}

.ts-dropdown .optgroup-header {
    font-size: .875rem;
    line-height: 1.5
}

.ts-dropdown .optgroup:first-child:before {
    display: none
}

.ts-dropdown .optgroup:before {
    border-top: 1px solid var(--bs-border-color-translucent);
    content: " ";
    display: block;
    height: 0;
    margin: .5rem -1rem;
    overflow: hidden
}

.ts-dropdown .create {
    padding-left: 1rem
}

.ts-dropdown-content {
    padding: 5px 0
}

.ts-control {
    align-items: center;
    box-shadow: 0 1px 6px 0 #00000026;
    display: flex;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .ts-control {
        transition: none
    }
}

.focus .ts-control {
    border-color: #206d82;
    box-shadow: 0 1px 6px 0 #00000026, 0 0 0 .25rem #9dc7d2;
    outline: 0
}

.ts-control .item {
    align-items: center;
    display: flex
}

.ts-wrapper.is-invalid,
.was-validated .invalid,
.was-validated :invalid+.ts-wrapper {
    border-color: var(--bs-form-invalid-color)
}

.ts-wrapper.is-invalid:not(.single),
.was-validated .invalid:not(.single),
.was-validated :invalid+.ts-wrapper:not(.single) {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.ts-wrapper.is-invalid.single,
.was-validated .invalid.single,
.was-validated :invalid+.ts-wrapper.single {
    background-image: url("data:image/svg+xml;charset=utf-8,%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"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d90331' viewBox='0 0 12 12'%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='%23d90331' stroke='none'/%3E%3C/svg%3E");
    background-position: right 1rem center, center right 3rem;
    background-repeat: no-repeat;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.ts-wrapper.is-invalid.focus .ts-control,
.was-validated .invalid.focus .ts-control,
.was-validated :invalid+.ts-wrapper.focus .ts-control {
    border-color: var(--bs-form-invalid-color);
    box-shadow: 0 0 0 .25rem rgba(var(--bs-form-invalid-color), .25)
}

.ts-wrapper.is-valid,
.was-validated .valid,
.was-validated :valid+.ts-wrapper {
    border-color: var(--bs-form-valid-color)
}

.ts-wrapper.is-valid:not(.single),
.was-validated .valid:not(.single),
.was-validated :valid+.ts-wrapper:not(.single) {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.ts-wrapper.is-valid.single,
.was-validated .valid.single,
.was-validated :valid+.ts-wrapper.single {
    background-image: url("data:image/svg+xml;charset=utf-8,%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"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2373d562' 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-position: right 1rem center, center right 3rem;
    background-repeat: no-repeat;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
}

.ts-wrapper.is-valid.focus .ts-control,
.was-validated .valid.focus .ts-control,
.was-validated :valid+.ts-wrapper.focus .ts-control {
    border-color: var(--bs-form-valid-color);
    box-shadow: 0 0 0 .25rem rgba(var(--bs-form-valid-color), .25)
}

.ts-wrapper {
    display: flex;
    min-height: calc(1.5em + .75rem + 4px)
}

.input-group-sm>.ts-wrapper,
.ts-wrapper.form-control-sm,
.ts-wrapper.form-select-sm {
    min-height: calc(1.5em + .5rem + 4px)
}

.input-group-sm>.ts-wrapper .ts-control,
.ts-wrapper.form-control-sm .ts-control,
.ts-wrapper.form-select-sm .ts-control {
    border-radius: var(--bs-border-radius-sm);
    font-size: .8749999993rem
}

@media(min-width:1200px) {

    .input-group-sm>.ts-wrapper .ts-control,
    .ts-wrapper.form-control-sm .ts-control,
    .ts-wrapper.form-select-sm .ts-control {
        font-size: .875rem
    }
}

.input-group-sm>.ts-wrapper.has-items .ts-control,
.ts-wrapper.form-control-sm.has-items .ts-control,
.ts-wrapper.form-select-sm.has-items .ts-control {
    font-size: .875rem;
    padding-bottom: 0
}

.input-group-sm>.ts-wrapper.multi.has-items .ts-control,
.ts-wrapper.form-control-sm.multi.has-items .ts-control,
.ts-wrapper.form-select-sm.multi.has-items .ts-control {
    padding-top: calc(.75em - .40625rem - 1px) !important
}

.ts-wrapper.multi.has-items .ts-control {
    padding-left: calc(1rem - 5px);
    --ts-pr-min: calc(1rem - 5px)
}

.ts-wrapper.multi .ts-control>div {
    border-radius: calc(var(--bs-border-radius) - 1px)
}

.input-group-lg>.ts-wrapper,
.ts-wrapper.form-control-lg,
.ts-wrapper.form-select-lg {
    min-height: calc(1.5em + 26px)
}

.input-group-lg>.ts-wrapper .ts-control,
.ts-wrapper.form-control-lg .ts-control,
.ts-wrapper.form-select-lg .ts-control {
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.249999999rem
}

@media(min-width:1200px) {

    .input-group-lg>.ts-wrapper .ts-control,
    .ts-wrapper.form-control-lg .ts-control,
    .ts-wrapper.form-select-lg .ts-control {
        font-size: 1.25rem
    }
}

.ts-wrapper:not(.form-control, .form-select) {
    background: none;
    border: none;
    box-shadow: none;
    height: auto;
    padding: 0
}

.ts-wrapper:not(.form-control, .form-select).single .ts-control {
    background-image: url("data:image/svg+xml;charset=utf-8,%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");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px
}

.ts-wrapper.form-select,
.ts-wrapper.single {
    --ts-pr-caret: 3rem
}

.ts-wrapper.form-control,
.ts-wrapper.form-select {
    box-shadow: none;
    display: flex;
    height: auto;
    padding: 0 !important
}

.ts-wrapper.form-control .ts-control,
.ts-wrapper.form-control.single.input-active .ts-control,
.ts-wrapper.form-select .ts-control,
.ts-wrapper.form-select.single.input-active .ts-control {
    border: none !important
}

.ts-wrapper.form-control:not(.disabled) .ts-control,
.ts-wrapper.form-control:not(.disabled).single.input-active .ts-control,
.ts-wrapper.form-select:not(.disabled) .ts-control,
.ts-wrapper.form-select:not(.disabled).single.input-active .ts-control {
    background: #0000 !important
}

.input-group>.ts-wrapper {
    flex-grow: 1;
    width: 1%
}

.input-group>.ts-wrapper:not(:nth-child(2))>.ts-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group>.ts-wrapper:not(:last-child)>.ts-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ts-control {
    --ts-pr-clear-button: 0px
}

.ts-control .item {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ts-wrapper.disabled {
    border-radius: var(--bs-border-radius)
}

.ts-wrapper.disabled,
.ts-wrapper.disabled .ts-control {
    background-color: var(--bs-secondary-bg);
    opacity: 1
}

.ts-dropdown .option {
    word-wrap: break-word;
    white-space: normal
}

.ts-dropdown .option:empty {
    opacity: 1
}

.ts-dropdown .option:empty:before {
    content: "Bitte treffen Sie eine Auswahl.";
    opacity: .5
}

.ts-dropdown .option.active {
    background-color: #2835821a;
    color: var(--bs-body-color)
}

.ts-dropdown .option.selected {
    background-color: #283582;
    color: #fff
}

.ts-dropdown .ts-dropdown-content {
    max-height: 320px
}

@media(max-height:520px) {
    .ts-dropdown .ts-dropdown-content {
        max-height: calc(100vh - 200px)
    }
}

body.-mobile.-ios .ts-dropdown .ts-dropdown-content {
    max-height: 35vh
}

.plugin-dropdown_input .dropdown-input-wrap {
    padding: 0 -2px
}

.plugin-dropdown_input .dropdown-input-wrap>.form-control {
    margin: .5rem 0
}

.plugin-dropdown_input .items-placeholder {
    border: 0 !important;
    box-shadow: none !important;
    width: 100%
}

.plugin-dropdown_input.dropdown-active .items-placeholder,
.plugin-dropdown_input.has-items .items-placeholder {
    display: none !important
}

up-modal .dp-below {
    left: unset !important;
    margin-top: 45px;
    position: fixed;
    top: unset !important
}

up-modal.centered>up-modal-viewport {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center
}

up-popup {
    box-shadow: 0 0 20px #0000001a;
    padding: 20px
}

up-progress-bar {
    background-color: #283582
}

@font-face {
    font-display: swap;
    font-family: Space Grotesk;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/SpaceGrotesk-Regular-f9ddbf44.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Regular-d65c4fbb.woff") format("woff")
}

@font-face {
    font-display: swap;
    font-family: Space Grotesk;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/SpaceGrotesk-Medium-41b62635.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Medium-08ededc7.woff") format("woff")
}

@font-face {
    font-display: swap;
    font-family: Space Grotesk;
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/SpaceGrotesk-SemiBold-55ff6d7c.woff2") format("woff2"), url("../fonts/SpaceGrotesk-SemiBold-fe6e9791.woff") format("woff")
}

@font-face {
    font-display: swap;
    font-family: Space Grotesk;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/SpaceGrotesk-Bold-644105e4.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Bold-0ab6cb7b.woff") format("woff")
}