:root {
    --st-font-monospace: "Fira Code", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --st-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Docs sidebar */

#sidebar .offcanvas-header {
    height: 63px;
}

.filter-docs {
    background-color: var(--st-sidebar-bg);
}

/* Docs navbar */

.docs-navbar {
    min-height: 63px;
}

:target {
    scroll-margin-top: 84px;
}

/* Docs card */

.docs-card,
.code-card {
    border-radius: var(--st-border-radius-lg);
}

.docs-card>.card-body,
.code-card+pre {
    padding: var(--st-spacer-4);
}

.code-card+pre {
    /*
    padding-left: calc(var(--st-spacer) * 2);
    padding-right: calc(var(--st-spacer) * 2);
    */
    font-size: var(--st-font-size-base);
    background-color: var(--st-secondary-bg);
    border: var(--st-border-width-1) solid var(--st-content-border-color);
    border-top: 0;
    border-bottom-left-radius: var(--st-border-radius-lg);
    border-bottom-right-radius: var(--st-border-radius-lg);
    tab-size: 2;
}

@media (min-width: 576px) {
    .code-card+pre {
        max-height: 37.5rem;
        overflow-y: auto;
    }
}

@media (max-width: 575.98px) {

    .docs-card,
    .code-card,
    .code-card+pre {
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0;
        margin-left: calc(var(--st-spacer-3) * -1);
        margin-right: calc(var(--st-spacer-3) * -1);
    }

    .docs-card>.card-body,
    .code-card+pre {
        padding: var(--st-spacer-3);
    }
}

.docs-card-alt {
    background-color: var(--st-secondary-bg);
}

[data-st-theme=dark] .sponsor-card {
    background-color: var(--st-secondary-bg);
}

/* Line numbers */

.code-card+pre {
    position: relative;
    padding: var(--st-spacer-3) var(--st-spacer-5) !important;
}

.hljs-ln-numbers {
    display: block;
    width: auto;
    user-select: none;
    text-align: center;
    vertical-align: top;
    color: var(--st-tertiary-color);
    margin-left: calc(-1 * var(--st-spacer-5));
}

.hljs-ln-code {
    padding-right: var(--st-spacer-4) !important;
}

/* Demo box and column */

.demo-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 3.125rem;
    height: 3.125rem;
    color: var(--st-action-color);
    background-color: var(--st-action-bg);
    border: var(--st-border-width) solid var(--st-action-border-color);
    border-radius: var(--st-border-radius);
}

.demo-box-sm {
    width: 1.625rem;
    height: 1.625rem;
}

.demo-box.col-demo {
    width: 100%;
    height: 2.75rem;
    border-radius: 0;
}

.demo-box.border-demo {
    background-color: var(--st-action-hover-bg);
    border: 0;
    border-radius: 0;
}

.demo-box-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.demo-box-group .push-start {
    margin-left: calc(-1 * var(--st-border-width));
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.demo-box-group .push-top {
    margin-top: calc(-1 * var(--st-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.demo-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 2.625rem;
    color: var(--st-action-color);
    background-color: var(--st-action-bg);
    border: var(--st-border-width) solid var(--st-action-border-color);
    border-radius: 0;
}

.demo-col.push-top {
    margin-top: calc(-1 * var(--st-border-width));
}

.demo-col.push-start {
    margin-left: calc(-1 * var(--st-border-width));
}

@media (max-width: 767.98px) {
    .demo-col.push-top-md-down {
        margin-top: calc(-1 * var(--st-border-width));
    }
}

@media (min-width: 768px) {
    .demo-col.push-start-md {
        margin-left: calc(-1 * var(--st-border-width));
    }
}

.demo-col-wrapper {
    background-color: var(--st-secondary-bg);
    /*
    background-color: transparent;
    background-image: linear-gradient(
        135deg,
        hsla(var(--st-secondary-hsl), 0.2) 10%,
        transparent 0,
        transparent 50%,
        hsla(var(--st-secondary-hsl), 0.2) 0,
        hsla(var(--st-secondary-hsl), 0.2) 60%,
        transparent 0,
        transparent
    );
    background-size: 7.07px 7.07px;
    */
}

.border-docs-demo-container {
    border: var(--st-border-width) solid hsla(var(--st-secondary-hsl), 0.25) !important;
}

/* Custom scrollbar */

.custom-scrollbar::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: hsla(var(--st-emphasis-color-hsl), 0.25);
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: var(--st-border-radius-pill);
}

.custom-scrollbar::-webkit-scrollbar-thumb:vertical {
    min-height: 24px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:horizontal {
    min-width: 24px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: hsla(var(--st-emphasis-color-hsl), 0.5);
    background-clip: padding-box;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: 0 0;
}

.custom-scrollbar::-webkit-scrollbar-corner {
    background-color: transparent;
}

.custom-scrollbar {
    scrollbar-color: hsla(var(--st-emphasis-color-hsl), 0.25) transparent;
    scrollbar-width: thin;
}

/* Misc. */

.btn-square {
    width: 30px;
    height: 30px;
    padding-left: 0;
    padding-right: 0;
}

.copy-btn {
    width: 4rem;
}

.toc {
    margin-top: var(--st-spacer-4);
}

.toc.h5 {
    font-size: calc(var(--st-font-size-base) + 0.375rem);
}

.docs-lead {
    font-size: var(--st-font-size-lg);
}

.table-as-example code {
    background-color: transparent;
    padding: 0;
}

.simple-link {
    color: hsla(var(--st-emphasis-color-hsl), 0.75);
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.simple-link:hover {
    color: hsla(var(--st-emphasis-color-hsl), 0.9);
}

@media (min-width: 768px) {
    #subscribe-section {
        border-left: var(--st-border-width) solid var(--st-content-border-color);
    }
}

@media (min-width: 1200px) {
    #subscribe-section {
        border-top: var(--st-border-width) solid var(--st-content-border-color);
        border-left: 0;
    }
}

@media (min-width: 1400px) {
    #subscribe-section {
        border-top: 0;
        border-left: var(--st-border-width) solid var(--st-content-border-color);
    }
}

@media (max-width: 767.98px) {
    #subscribe-section {
        border-top: var(--st-border-width) solid var(--st-content-border-color);
    }
}

@keyframes ping-animation {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping-animation 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media (prefers-reduced-motion) {
    .animate-ping {
        animation: none;
    }
}

/* Core theme picker */

.core-theme-button .btn-check+.btn {
    border: 0;
    outline: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.core-theme-button .btn-check:focus-visible+.btn {
    box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-primary-hsl), 0.5);
}

.core-theme-button .btn-check:checked+.btn {
    color: var(--st-primary-foreground);
    background-color: var(--st-primary);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

/* The following sections are for specific docs pages */

/* Popovers */

.custom-popover {
    --st-popover-bg: var(--st-primary-bg-subtle);
    --st-popover-border-color: var(--st-primary-border-subtle);
    --st-popover-header-bg: var(--st-primary-bg-subtle);
    --st-popover-header-color: var(--st-primary-text-emphasis);
    --st-popover-header-border-color: var(--st-primary-border-subtle);
}

/* Scrollspy */

#scrollspy-4-links>a {
    text-decoration: none;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#scrollspy-4-links>a.active {
    color: var(--st-primary-foreground);
    background-color: var(--st-primary);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

/* Sidebar */

.demo-sidebar-container .sidebar {
    --st-offcanvas-zindex: 1015;
}

.demo-sidebar-container .offcanvas-backdrop {
    position: absolute;
    z-index: 1010;
}

/* Tooltips */

.custom-tooltip {
    --st-tooltip-color: var(--st-primary-foreground);
    --st-tooltip-bg: var(--st-primary);
}

/* Core conditional display */

[data-st-core=default] .d-default-block {
    display: block !important;
}

[data-st-core=modern] .d-modern-block {
    display: block !important;
}

[data-st-core=elegant] .d-elegant-block {
    display: block !important;
}

/* Core specific styles */

#sidebar .offcanvas-header {
    border-bottom: var(--st-border-width) solid var(--st-content-border-color);
}

.docs-navbar {
    background-color: var(--st-content-bg);
    border-bottom: var(--st-border-width) solid var(--st-content-border-color);
}

@media (min-width: 992px) {
    [data-st-theme=dark] .docs-navbar {
        background-color: var(--st-secondary-bg);
    }
}

.docs-footer {
    background-color: var(--st-secondary-bg);
    border-top: var(--st-border-width) solid var(--st-content-border-color);
}

.demo-brand path {
    fill: var(--st-primary);
    stop-color: var(--st-primary);
}

.demo-sidebar-container {
    background-color: var(--st-secondary-bg);
}

/* Default core */

[data-st-core=default][data-st-theme=dark] .core-picker-dropdown-menu {
    box-shadow: 0 0.125rem 0.25rem hsla(var(--st-black-hsl), 0.05);
}

/* Modern core */

@media (min-width: 992px) {
    [data-st-core=modern] {
        background-color: var(--st-body-bg);
        background-image:
            radial-gradient(ellipse at top right,
                hsla(var(--st-indigo-hsl), 0.01),
                transparent 50%),
            radial-gradient(ellipse at top right,
                hsla(var(--st-primary-hsl), 0.01),
                transparent 50%),
            radial-gradient(ellipse at top right,
                hsla(var(--st-info-hsl), 0.008),
                transparent 50%);
        background-size: 100% 37.5rem;
        background-repeat: no-repeat;
    }

    [data-st-core=modern][data-st-theme=dark] {
        background-image:
            radial-gradient(ellipse at top right,
                hsla(var(--st-indigo-hsl), 0.05),
                transparent 50%),
            radial-gradient(ellipse at top right,
                hsla(var(--st-primary-hsl), 0.05),
                transparent 50%),
            radial-gradient(ellipse at top right,
                hsla(var(--st-info-hsl), 0.04),
                transparent 50%);
    }

    [data-st-core=modern] body {
        background-color: transparent;
        background-image:
            linear-gradient(to bottom right,
                transparent, 80%,
                hsla(var(--st-primary-hsl), 0.025),
                hsla(var(--st-primary-hsl), 0.075),
                hsla(var(--st-info-hsl), 0.075),
                hsla(var(--st-info-hsl), 0.025));
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

[data-st-core=modern] .docs-navbar {
    background-color: hsla(var(--st-body-bg-hsl), 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

[data-st-core=modern] .demo-brand path {
    fill: var(--st-info);
    stop-color: var(--st-info);
}

[data-st-core=modern][data-st-theme=dark] .demo-box.border-demo {
    background-color: var(--st-action-bg);
}

/* Elegant core */

[data-st-core=elegant] #sidebar .offcanvas-header {
    border-bottom: 0;
}

[data-st-core=elegant] .docs-navbar {
    background-color: var(--st-body-bg);
    border-bottom: 0;
}

@media (min-width: 992px) {
    [data-st-core=elegant][data-st-theme=dark] .docs-navbar {
        background-color: var(--st-body-bg);
    }
}

[data-st-core=elegant] .docs-footer {
    background-color: var(--st-tertiary-bg);
    border-top: 0;
}

[data-st-core=elegant] .demo-brand path {
    fill: var(--st-info);
    stop-color: var(--st-info);
}

[data-st-core=elegant] .demo-sidebar-container {
    background-color: var(--st-tertiary-bg);
}




/* #scroll-to-top{
    display: none;
        right: 10%;
        bottom: 10%;
} */


.card-cut {
    height: 20px;
    margin: 0 6px;
    /* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAACCAYAAAB7Xa1eAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuOWwzfk4AAAAaSURBVBhXY5g7f97/2XPn/AcCBmSMQ+I/AwB2eyNBlrqzUQAAAABJRU5ErkJggg==); */
    background-size: 4px 2px;
    background-repeat: repeat-x;
    background-position: center;
    position: relative;
    /* box-shadow: 0 1px 0 0 #fff, 0 -1px 0 0 #fff; */
}

.card-cut:before,
.card-cut:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: var(--st-card-border-width) solid transparent;
    border-top-color: var(--st-card-border-color);
    border-right-color: var(--st-card-border-color);
    border-radius: 100%;
    pointer-events: none;
}

.card-cut:before {
    left: 0px;
}

.card-cut:after {
    transform: translate(-50%, -50%) rotate(225deg);
    right: -20px;
}




:root {
    --st-font-monospace: "Fira Code", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --st-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Layout */

@media (min-width: 1500px) {
    body {
        /* width: 92.5rem; */
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        border-left: var(--st-border-width) solid hsla(var(--st-secondary-hsl), 0.25);
        border-right: var(--st-border-width) solid hsla(var(--st-secondary-hsl), 0.25);
    }
}

/* Background */

:root {
    --st-graph-border-color: hsla(var(--st-secondary-hsl), 0.1);
}

body {
    background-color: var(--st-content-bg);
}

.graph-pattern {
    background-image:
        linear-gradient(var(--st-graph-border-color) 1px,
            transparent 1px),
        linear-gradient(to right,
            var(--st-graph-border-color) 1px,
            transparent 1px);
    background-size: 40px 40px;
    background-position: 20px 20px;
}

@media (max-width: 991.98px) {
    #core-demo-container {
        background-color: var(--st-secondary-bg);
        background-image:
            linear-gradient(var(--st-graph-border-color) 1px,
                transparent 1px),
            linear-gradient(to right,
                var(--st-graph-border-color) 1px,
                transparent 1px);
        background-size: 40px 40px;
        background-position: 20px 20px;
        border-top: var(--st-border-width) solid hsla(var(--st-secondary-hsl), 0.25);
    }
}

/* Misc. */

.btn-square {
    width: 30px;
    height: 30px;
    padding-left: 0;
    padding-right: 0;
}

@keyframes ping-animation {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping-animation 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media (prefers-reduced-motion) {
    .animate-ping {
        animation: none;
    }
}

/* Core theme picker */

.core-theme-button .btn-check+.btn {
    border: 0;
    outline: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.core-theme-button .btn-check:focus-visible+.btn {
    box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-primary-hsl), 0.5);
}

.core-theme-button .btn-check:checked+.btn {
    color: var(--st-primary-foreground);
    background-color: var(--st-primary);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

/* Core specific styles */

/* Default core */

[data-st-core=default][data-st-theme=dark] {
    --st-core-demo-bg: var(--st-body-bg);
}

[data-st-core=default][data-st-theme=dark] .core-picker-dropdown-menu {
    box-shadow: 0 0.125rem 0.25rem hsla(var(--st-black-hsl), 0.05);
}

.tab-content {
    position: relative;
}

.stLoading {
    width: 100%;
    height: 100%;
}




.st-select.show .filter-option:after {
    transform: rotate(-135deg);
}

.st-select .filter-option:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all .15s ease-in-out;
    width: 5px;
}

.st-select{
    padding: 0px !important;
}
.st-select>select.select-hidden,
select.select-hidden,
select.st-select {
    display: none !important;
}

/* table */
.table th.sortable.desc .sort-indicator::after {
    content: " ▼";
    color: rgb(74, 144, 226);
}
.table th.sortable.asc .sort-indicator::after {
    content: " ▲";
    color: rgb(74, 144, 226);
}


/* uploader */
.st-uploader{
    color: #333;
    position: relative;
}

.st-uploader .uploader-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.st-uploader-inner{
    background-color: #f4f4f4;
    /* border: 1px solid #eaeaea; */
    border-radius: 5px;
    max-height: 100%;
    max-width: 100%;
    outline: 0;
    position: relative;
    width: 100%;
    height: 376px;
}

.st-uploader-innerWrap{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* opacity: 0; */
    overflow: hidden;
        
}

.st-uploader-dropFilesHereHint {
    align-items: center;
    border: 1px dashed #1269cf;
    border-radius: 3px;
    color: #757575;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    justify-content: center;
    position: absolute;
    text-align: center;
    bottom: 7px;
    left: 7px;
    right: 7px;
    top: 7px;
    visibility: hidden;
    z-index: 2000;
}
.st-uploader-AddFiles{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
    top: 7px;
    border: 1px dashed #dfdfdf;
    border-radius: 3px;
    height: calc(100% - 14px);
    margin: 7px;
}

.st-uploader-Informer {
    bottom: 8%;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1005;
    pointer-events: none;
}

.st-uploader-isDraggingOver .st-uploader-dropFilesHereHint {
    pointer-events: none;
    visibility: visible;
}
.st-uploader-isDraggingOver .st-uploader-AddFiles,
.st-uploader-isDraggingOver .st-uploader-files,
.st-uploader-isDraggingOver .st-uploader-footer,
.st-uploader-isDraggingOver .st-uploader-serviceMsg,
.st-uploader-isDraggingOver .st-uploader-header{
    opacity: .03;
    pointer-events: none;
}

.st-uploader-AddFiles-list {
    display: flex;
}

.st-uploader-header {
    align-items: center;
    background-color: #fafafa;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: space-between;
    padding: 0 10px;
    position: relative;
    width: 100%;
    z-index: 1004;
}

.st-uploader-header-addMore,
.st-uploader-header-back,
.st-uploader-header-save {
    background: none;
    color: #1269cf;
    font-family: inherit;
    line-height: 1;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
}

.st-uploader-header-back,
.st-uploader-header-save {
    border: 0;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 400;
    margin-inline-start: -6px;
    padding: 7px 6px;
}

.st-uploader-header .st-uploader-header-title {
    font-size: 12px;
    font-weight: 500;
    left: 0;
    line-height: 40px;
    margin: auto;
    max-width: 170px;
    overflow-x: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    text-overflow: ellipsis;
    top: 0;
    white-space: nowrap;
    width: 100%;
}


.st-uploader-header .st-uploader-header-addMore {
    border: 0;
    border-radius: 3px;
    font-size: inherit;
    font-weight: 500;
    height: 29px;
    margin-inline-end: -5px;
    padding: 7px 8px;
    width: auto;
}

.st-uploader-files {
    flex: 1;
    margin: 0;
    overflow-y: auto;
    padding: 0 0 10px;
    -webkit-overflow-scrolling: touch;
}

.st-uploader-filesInner{
    display: flex;
    flex-direction: column;
}
.st-uploader-singleFile .st-uploader-filesInner{
    justify-content: space-evenly;
    align-items: center;
}

.st-uploader-footer {
    background-color: #fff;
    display: flex;
    height: 46px;
    line-height: 40px;
    transition: height .2s;
    z-index: 1001;
    justify-content: space-between;
    position: relative;
    padding: 0 15px;
    width: 100%;
}

.st-uploader-footer.is-waiting {
    border-top: 1px solid #eaeaea;
    height: 48px;
}

.st-uploader-footer-progress {
    background-color: #1269cf;
    height: 2px;
    position: absolute;
    transition: background-color, width .3s ease-out;
    z-index: 1012;
    top: 0;
    right: 0;
    left: 0;
}

.st-uploader-footer-actions {
    align-items: center;
    background-color: #fff;
    display: flex;
    inset-inline-end: 10px;
    z-index: 1004;
}

.st-uploader-footer-content {
    align-items: center;
    color: #333;
    display: flex;
    height: 100%;
    padding-inline-start: 10px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1002;
}

.st-uploader-footer-status {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    justify-content: center;
    line-height: 1.4;
    padding-inline-end: 0.3em;
}

.st-uploader-footer-spinner {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: c;
    animation-timing-function: linear;
    fill: #1269cf;
    margin-inline-end: 10px;
}

.st-uploader-singleFile .st-uploader-filesInner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}

.st-uploader-Item {
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    padding: 10px;
}
.st-uploader-singleFile .st-uploader-Item {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 400px;
    padding: 15px;
    position: relative;
    width: 100%;
}
.st-uploader:not(.st-uploader-singleFile) .st-uploader-Item {
    padding-inline-end: 0;
}


.st-uploader-Item-preview {
    flex-grow: 0;
    flex-shrink: 0;
    height: 50px;
    position: relative;
    width: 50px;
}
.st-uploader-singleFile .st-uploader-Item-preview {
    flex-grow: 1;
    max-height: 75%;
    width: 100%;
}

.st-uploader-Item-previewInnerWrap {
    align-items: center;
    border-radius: 3px;
    box-shadow: 0 0 2px 0 #0006;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.st-uploader-Item-previewInnerWrap:after {
    background-color: #000000a6;
    bottom: 0;
    content: "";
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1001;
}
.st-uploader-Item.is-inprogress .st-uploader-Item-previewInnerWrap:after{
    display: block;
}
.st-uploader-singleFile .st-uploader-Item-previewInnerWrap {
    box-shadow: none;
}

.st-uploader-Item-progress {
    color: #fff;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    z-index: 1002;
}

.st-uploader-Item-progressIndicator {
    color: #fff;
    display: inline-block;
    height: 38px;
    opacity: .9;
    width: 38px;
    padding: 0;
}
.st-uploader-Item-progressIcon--circle {
    height: 100%;
    width: 100%;
}
.st-uploader-Item-progressIcon--bg {
    stroke: #fff6;
}
.st-uploader-Item-progressIcon--pause {
    transition: .2s;
    fill: #fff;
    stroke: #fff;
}
.st-uploader-Item-progressIcon--play {
    stroke: #fff;
}

.st-uploader-Item-previewIconWrap {
    height: 76px;
    max-height: 75%;
    position: relative;
}
.st-uploader-singleFile .st-uploader-Item-previewIconWrap {
    height: 100%;
    width: 100%;
}

.st-uploader-Item-previewIcon {
    height: 25px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    z-index: 100;
}
.st-uploader-singleFile .st-uploader-Item-previewIcon {
    height: 100%;
    max-height: 60%;
    max-width: 60%;
    width: 100%;
}

.st-uploader-Item-previewIcon svg {
    height: 100%;
    width: 100%;
}

.st-uploader-Item-previewIconBg {
    filter: drop-shadow(rgba(0, 0, 0, .1) 0 1px 1px);
    height: 100%;
    width: 100%;
}

.st-uploader-Item-fileInfoAndButtons {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    padding-inline-end: 8px;
    padding-inline-start: 12px;
}
.st-uploader-singleFile .st-uploader-Item-fileInfoAndButtons {
    flex-grow: 0;
    width: 100%;
}
.st-uploader-Item-fileInfo {
    flex-grow: 1;
    flex-shrink: 1;
}

.st-uploader-Item-fileName {
    align-items: baseline;
    display: flex;
}

.st-uploader-Item-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 5px;
    word-wrap: anywhere;
    word-break: break-all;
}

.st-uploader-Item-actionWrapper {
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
    display: flex;
}


.st-uploader-Item-action {
    color: #939393;
    cursor: pointer;
}

.st-uploader-singleFile .st-uploader-Item-action--remove {
    inset-inline-end: 0;
    position: absolute;
    top: 0;
}

.st-uploader:not(.st-uploader-singleFile) .st-uploader-Item-action {
    /* height: 22px; */
    margin-left: 3px;
    padding: 3px;
    /* width: 22px; */
}


@media (min-width: 768px) {
    .st-uploader-filesInner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .st-uploader-Item {
        border-bottom: 0;
        display: block;
        float: inline-start;
        height: 215px;
        margin: 5px 15px;
        padding: 0;
        position: relative;
        width: calc(33.333% - 30px);
    }

    .st-uploader-Item-preview {
        height: 140px;
        width: 100%;
    }

    .st-uploader-singleFile .st-uploader-Item-preview {
        max-height: 100%;
    }

    .st-uploader-Item-previewInnerWrap {
        box-shadow: 0 1px 2px #00000026;
    }

    .st-uploader-Item-previewIcon {
        height: 38px;
        width: 38px;
    }

    /* .st-uploader:not(.st-uploader-size--md):not(.st-uploader-singleFile) .st-uploader-Item-actionWrapper {
        align-items: center;
            display: flex;
    } */

    .st-uploader-singleFile .st-uploader-Item-fileInfo {
        padding-inline-end: 15px;
    }

    .st-uploader-Item-progressIndicator {
        height: 55px;
        width: 55px;
    }
}

@media (min-width: 998px) {
    .st-uploader-Item {
        height: 190px;
        margin: 5px 15px;
        padding: 0;
        width: calc(25% - 30px);
    }

    .st-uploader-Item-preview {
        height: 120px;
    }
}

@keyframes c {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}




.steps {
    --tblr-steps-color: var(--tblr-primary);
    --tblr-steps-inactive-color: var(--tblr-border-color);
    --tblr-steps-dot-size: .5rem;
    --tblr-steps-border-width: 2px;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps-blue {
    --tblr-steps-color: var(--tblr-blue);
}

.steps-blue-lt {
    --tblr-steps-color: var(--tblr-blue-lt);
}

.steps-azure {
    --tblr-steps-color: var(--tblr-azure);
}

.steps-azure-lt {
    --tblr-steps-color: var(--tblr-azure-lt);
}

.steps-indigo {
    --tblr-steps-color: var(--tblr-indigo);
}

.steps-indigo-lt {
    --tblr-steps-color: var(--tblr-indigo-lt);
}

.steps-purple {
    --tblr-steps-color: var(--tblr-purple);
}

.steps-purple-lt {
    --tblr-steps-color: var(--tblr-purple-lt);
}

.steps-pink {
    --tblr-steps-color: var(--tblr-pink);
}

.steps-pink-lt {
    --tblr-steps-color: var(--tblr-pink-lt);
}

.steps-red {
    --tblr-steps-color: var(--tblr-red);
}

.steps-red-lt {
    --tblr-steps-color: var(--tblr-red-lt);
}

.steps-orange {
    --tblr-steps-color: var(--tblr-orange);
}

.steps-orange-lt {
    --tblr-steps-color: var(--tblr-orange-lt);
}

.steps-yellow {
    --tblr-steps-color: var(--tblr-yellow);
}

.steps-yellow-lt {
    --tblr-steps-color: var(--tblr-yellow-lt);
}

.steps-lime {
    --tblr-steps-color: var(--tblr-lime);
}

.steps-lime-lt {
    --tblr-steps-color: var(--tblr-lime-lt);
}

.steps-green {
    --tblr-steps-color: var(--tblr-green);
}

.steps-green-lt {
    --tblr-steps-color: var(--tblr-green-lt);
}

.steps-teal {
    --tblr-steps-color: var(--tblr-teal);
}

.steps-teal-lt {
    --tblr-steps-color: var(--tblr-teal-lt);
}

.steps-cyan {
    --tblr-steps-color: var(--tblr-cyan);
}

.steps-cyan-lt {
    --tblr-steps-color: var(--tblr-cyan-lt);
}

.step-item {
    position: relative;
    flex: 1 1 0;
    min-height: 1rem;
    margin-top: 0;
    color: inherit;
    text-align: center;
    cursor: default;
    padding-top: calc(var(--tblr-steps-dot-size));
}

a.step-item {
    cursor: pointer;
}

a.step-item:hover {
    color: inherit;
}

.step-item:after,
.step-item:before {
    background: var(--tblr-steps-color);
}

.step-item:not(:last-child):after {
    position: absolute;
    left: 50%;
    width: 100%;
    content: "";
    transform: translateY(-50%);
}

.step-item:after {
    top: calc(var(--tblr-steps-dot-size) * 0.5);
    height: var(--tblr-steps-border-width);
}

.step-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100rem;
    transform: translateX(-50%);
    color: var(--tblr-white);
    width: var(--tblr-steps-dot-size);
    height: var(--tblr-steps-dot-size);
}

.step-item.active {
    font-weight: var(--tblr-font-weight-bold);
}

.step-item.active:after {
    background: var(--tblr-steps-inactive-color);
}

.step-item.active~.step-item {
    color: var(--tblr-disabled-color);
}

.step-item.active~.step-item:after,
.step-item.active~.step-item:before {
    background: var(--tblr-steps-inactive-color);
}

.steps-counter {
    --tblr-steps-dot-size: 1.5rem;
    counter-reset: steps;
}

.steps-counter .step-item {
    counter-increment: steps;
}

.steps-counter .step-item:before {
    content: counter(steps);
}

.steps-vertical {
    --tblr-steps-dot-offset: 6px;
    flex-direction: column;
}

.steps-vertical.steps-counter {
    --tblr-steps-dot-offset: -2px;
}

.steps-vertical .step-item {
    text-align: left;
    padding-top: 0;
    padding-left: calc(var(--tblr-steps-dot-size) + 1rem);
    min-height: auto;
}

.steps-vertical .step-item:not(:first-child) {
    margin-top: 1rem;
}

.steps-vertical .step-item:before {
    top: var(--tblr-steps-dot-offset);
    left: 0;
    transform: translate(0, 0);
}

.steps-vertical .step-item:not(:last-child):after {
    position: absolute;
    content: "";
    transform: translateX(-50%);
    top: var(--tblr-steps-dot-offset);
    left: calc(var(--tblr-steps-dot-size) * 0.5);
    width: var(--tblr-steps-border-width);
    height: calc(100% + 1rem);
}



.nav-segmented {
    --tblr-nav-bg: var(--tblr-bg-surface-tertiary);
    --tblr-nav-padding: 2px;
    --tblr-nav-height: 2.5rem;
    --tblr-nav-gap: .25rem;
    --tblr-nav-active-bg: var(--tblr-bg-surface);
    --tblr-nav-font-size: inherit;
    --tblr-nav-radius: 6px;
    --tblr-nav-link-disabled-color: var(--tblr-disabled-color);
    --tblr-nav-link-gap: .25rem;
    --tblr-nav-link-padding-x: .75rem;
    --tblr-nav-link-icon-size: 1.25rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--tblr-nav-gap);
    padding: var(--tblr-nav-padding);
    list-style: none;
    background: var(--tblr-nav-bg);
    border-radius: calc(var(--tblr-nav-radius) + var(--tblr-nav-padding));
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.nav-segmented .nav-link {
    display: inline-flex;
    gap: calc(0.25rem + var(--tblr-nav-link-gap));
    align-items: center;
    margin: 0;
    font-size: var(--tblr-nav-font-size);
    min-width: calc(var(--tblr-nav-height) - 2 * var(--tblr-nav-padding));
    height: calc(var(--tblr-nav-height) - 2 * var(--tblr-nav-padding));
    padding: 0 calc(var(--tblr-nav-link-padding-x) - 2px);
    border: 1px solid transparent;
    background: transparent;
    color: var(--tblr-secondary);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: var(--tblr-nav-radius);
    flex-grow: 1;
    justify-content: center;
}

.nav-segmented .nav-link:hover,
.nav-segmented .nav-link.hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--tblr-body-color);
}

.nav-segmented .nav-link.disabled,
.nav-segmented .nav-link:disabled {
    color: var(--tblr-nav-link-disabled-color);
    cursor: not-allowed;
}

.nav-segmented .nav-link-input:checked+.nav-link,
.nav-segmented .nav-link.active {
    color: var(--tblr-body-color);
    background: var(--tblr-nav-active-bg);
    border-color: var(--tblr-border-color);
}

.nav-segmented .nav-link-input {
    display: none;
}

.nav-segmented .nav-link-icon {
    width: var(--tblr-nav-link-icon-size);
    height: var(--tblr-nav-link-icon-size);
    margin: 0 -0.25rem;
    color: inherit;
}

.nav-segmented-vertical {
    flex-direction: column;
}

.nav-segmented-vertical .nav-link {
    justify-content: flex-start;
}