html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
}

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

a {
    color: var(--color-text);
    outline: 0;
}

a.link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

a.link:hover {
    text-decoration: underline;
}

a.danger:hover {
    color: var(--color-danger);
}

a.danger:hover svg {
    fill: var(--color-danger);
}

input[type="submit"] {
    -webkit-appearance: none;
}

.hide {
    display: none !important;
}

.hidden,
.btn.hidden {
    display: none;
}

.chart {
    width: 99% !important;
    height: auto !important;
}

.overflowY {
    overflow-y: scroll;
}

.circle {
    border-radius: 50%;
}

svg.disabled {
    filter: brightness(4);
}

.center {
    text-align: center;
}

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

ul {
    margin-left: 20px;
}

ul.nostyle {
    list-style-type: none;
    margin-left: 0;
}

ul.nostyle li {
    margin-bottom: 5px;
}

.display-flex {
    display: flex;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/************\
    button
\************/
.btn, .btn-flat {
    box-sizing: border-box;
    border: none;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    outline: 0;
    font-size: 1rem;
    padding: .375rem .75rem;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

.btn.disabled, .btn:disabled {
    background-color: #DFDFDF !important;
    box-shadow: none;
    color: #9F9F9F !important;
    cursor: default;
}

.btn.disabled *, .btn:disabled * {
    pointer-events: none;
}

.btn.disabled:hover, .btn:disabled:hover {
    background-color: #DFDFDF;
    color: #9F9F9F;
}

.btn i, .btn-flat i {
    font-size: 1rem;
    line-height: inherit;
}

.btn:focus {
    background-color: var(--color-primary-light);
}

.btn {
    text-decoration: none;
    color: #FFF;
    background-color: var(--color-primary);
    letter-spacing: .5px;
    transition: .2s ease-out;
    cursor: pointer;
}

.btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn.btn-outline:hover svg {
    fill: #fff;
}

.btn svg {
    fill: #fff;
    transition: .2s ease-out;
}

.btn.btn-outline svg {
    fill: var(--color-primary);
}

.btn:hover {
    background-color: var(--color-primary-light);
}

.btn-loader .spinner {
    margin: 0;
}

.btn-loader .spinner > div {
    background: #fff;
    width: 12px;
    height: 12px;
}

.fixed-action-btn {
    position: fixed;
    right: 23px;
    bottom: 23px;
    padding-top: 15px;
    margin-bottom: 0;
    z-index: 998;
}

.fixed-action-btn.active ul {
    visibility: visible;
}

.fixed-action-btn.horizontal {
    padding: 0 0 0 15px;
}

.fixed-action-btn.horizontal ul {
    text-align: right;
    right: 64px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    left: initial;
    width: 500px;
    /*width 100% only goes to width of button container */
}

.fixed-action-btn.horizontal ul li {
    display: inline-block;
    margin: 15px 15px 0 0;
}

.fixed-action-btn ul {
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    bottom: 64px;
    margin: 0;
    visibility: hidden;
}

.fixed-action-btn ul li {
    margin-bottom: 15px;
}

.btn-flat {
    box-shadow: none;
    background-color: transparent;
    color: var(--bs-body-color);
    cursor: pointer;
}

.btn-flat.btn-flat-light {
    color: #fff;
}

.btn-flat svg {
    fill: var(--bs-body-color);
}

.btn-flat.btn-flat-light svg {
    fill: #fff;
}

.btn-flat.rounded {
    border-radius: 50%;
    width: 36px;
    padding: 0;
    height: 36px;
    line-height: 36px;
}

.btn-flat:hover {
    background-color: rgba(95,99,104,0.039);
    color: var(--bs-body-color);
}

.btn-flat-light:hover {
    background-color: rgba(170, 170, 170, 0.36);
    color: #fff;
}

.btn-flat.danger:hover {
    background-color: rgb(255 144 144 / 21%);
    color: var(--bs-body-color);
}

.btn-flat.disabled {
    color: #B3B3B3;
    cursor: default;
}

.btn-flat.disabled svg {
    fill: #B3B3B3;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: .5rem 1rem;
    font-size: 1.25rem;
}

.btn-large i {
    font-size: 1.25rem;
}

.btn-small {
    min-height: 31px;
    padding: .25rem .5rem;
    font-size: .875rem;
}

.btn-small i {
    font-size: .875rem;
}

.btn-block{
    display: flex;
    width: 100%;
}

.btn-left {
    float: left;
}

.btn-right {
    float: right;
}

.btn.btn-default {
    background: #373C44;
}

.btn.btn-default.btn-outline {
    background: transparent;
    border: 2px solid #373C44;
    color: #373C44;
}

.btn.btn-default.btn-outline svg {
    fill: #373C44;
}

.btn.btn-default.btn-outline:hover svg {
    fill: #fff;
}

.btn.btn-default.btn-outline:hover {
    color: #fff;
}

.btn.btn-default:hover {
    background: #4A515C;
    color: #fff;
}

.btn.btn-default:focus {
    background: #4A515C;
}

.btn.btn-danger {
    background: var(--color-danger);
}

.btn.btn-danger:hover {
    background: var(--color-danger-light);
    color: #fff;
}

.btn.btn-danger:focus {
    background: var(--color-danger-light);
}

i {
    line-height: inherit;
}

i.left,
svg.left,
img.left {
    float: left;
    margin-right: .75rem;
}

i.right,
svg.right,
img.right {
    float: right;
    margin-left: .75rem;
}

.btn-small i.left,
.btn-small svg.left {
    margin-right: .5rem;
}

.btn-small i.right,
.btn-small svg.right {
    margin-left: .5rem;
}

/*
 * tippy.js
 */
.tippy-box[data-theme~='dropdown'] {
    background-color: #fff;
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2),0 2px 4px 0 rgba(0, 0, 0, 0.1),inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.tippy-box[data-theme~='dropdown'] .tippy-content {
    padding: 0;
}

.tippy-box[data-theme~='dropdown'] .tippy-arrow {
    color: #fff;
}

.tippy-box[data-animation=shift-away][data-state=hidden] {
    opacity: 0
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
    transform: translateY(10px)
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
    transform: translateY(-10px)
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
    transform: translateX(10px)
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
    transform: translateX(-10px)
}

.tippy-box[data-animation=scale][data-placement^=top] {
    transform-origin: bottom
}

.tippy-box[data-animation=scale][data-placement^=bottom] {
    transform-origin: top
}

.tippy-box[data-animation=scale][data-placement^=left] {
    transform-origin: right
}

.tippy-box[data-animation=scale][data-placement^=right] {
    transform-origin: left
}

.tippy-box[data-animation=scale][data-state=hidden] {
    transform: scale(.5);
    opacity: 0
}

/*
 * Dropdown
 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    /*position: absolute;*/
    z-index: 1000;
    display: none;
    min-width: 10rem;
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: .25rem;
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2),0 2px 4px 0 rgba(0, 0, 0, 0.1),inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.tippy-box .dropdown-menu {
    display: block;
    box-shadow: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .7rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--color-text);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: rgba(0, 0, 0, .025);
}

/*********************************************************************************\
							    Collection
\*********************************************************************************/
.collection {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-left: 0;
}

.collection .collection-item.avatar i.circle {
    font-size: 18px;
    line-height: 34px;
    color: #fff;
    text-align: center;
    background: var(--color-primary);
}

.collection .collection-item.avatar .circle svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary-dark);
}

/* Solid backgrounds — the .color-* classes of global.css — keep a white glyph. */
.collection .collection-item.avatar > .circle[class*="color-"] svg {
    fill: #fff;
}

.collection.with-header .collection-item.avatar > .circle {
    left: 32px;
}

/* Soft tile rather than a filled disc: the icon labels the row, it does not
   stand for a portrait. */
.collection .collection-item.avatar > .circle {
    width: 34px;
    height: 34px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    background: var(--color-primary-white);
    /* Spacing comes from the row's `gap`, see .collection .collection-item. */
    flex: 0 0 auto;
}

.collection .collection-item.avatar > .circle.success {
    background: var(--color-success-white);
}

.collection .collection-item.avatar > .circle.success svg {
    fill: var(--color-success-dark);
}

.collection .collection-item.avatar > .circle.warning {
    background: var(--color-warning-white);
}

.collection .collection-item.avatar > .circle.warning svg {
    fill: var(--color-warning-dark);
}

.collection .collection-item.avatar > .circle.danger {
    background: var(--color-danger-white);
}

.collection .collection-item.avatar > .circle.danger svg {
    fill: var(--color-danger-dark);
}

.collection .collection-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 12px 16px;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #efeef4;
}

.collection .collection-item.active {
    background: #f7f7f7;
    color: var(--color-primary-dark);
}

.collection .collection-item:last-child {
    border-bottom: none;
}

.collection a.collection-item {
    transition: .25s;
}

.collection a.collection-item:hover {
    color: var(--color-primary-dark);
    background: #f7f7f7;
    transition: .25s;
}

.collection-item .title {
    display: inline-block;
    font-size: .9rem;
    font-weight: 600;
}

.collection-item p {
    font-size: .78rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.4;
}

.collection.with-header .collection-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 14px 16px;
}

.collection.with-header .collection-item {
    padding-left: 32px;
}

.collection label {
    font-weight: 400;
    margin: 0;
    display: initial;
}

.secondary-content {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.secondary-content:not(.btn):not(.btn-flat) .icon {
    font-size: 24px;
}

.secondary-content:not(.btn):not(.btn-flat):hover {
    color: var(--color-primary);
}

/*********************************************************************************\
							      Collapsible
\*********************************************************************************/
.collapsible {
    margin: 0.5rem 0 1rem 0;
    list-style-type: none;
}

.collapsible-bordered {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.collapsible-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
    padding: 1rem;
    background-color: #fff;
    gap: 16px;
}

.collapsible-header.active,
.collapsible-bordered .collapsible-header {
    border-bottom: 1px solid #ddd;
}

.collapsible-header-icon {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible-header.active .collapsible-header-icon {
    transform: rotate(180deg);
}

.collapsible-header:focus {
    outline: 0;
}

.collapsible-header i {
    width: 2rem;
    font-size: 1.6rem;
    display: inline-block;
    text-align: center;
    margin-right: 1rem;
}

.collapsible-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.keyboard-focused .collapsible-header:focus {
    background-color: #eee;
}

.collapsible-body {
    display: none;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2rem;
}

.collapsible-bordered .collapsible-body {
    border-bottom: 1px solid #ddd;
}

.collapsible.popout {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.collapsible.popout > li {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin: 0 24px;
    -webkit-transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collapsible.popout > li.active {
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    margin: 16px 0;
}

/*********************************************************************************\
							        Tabs
\*********************************************************************************/
.tabs {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 48px;
    /*width: 100%;*/
    /*background-color: #fff;*/
    margin: 0 auto;
    white-space: nowrap;
}

.article .tabs,
.card .tabs {
    /*margin: -10px -10px -10px -10px;*/
    margin: -10px -24px -24px -24px;
}

.tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.tabs .tab {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.tabs .tab {
    display: inline-block;
    text-align: center;
    line-height: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.tabs .tab button {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: color .28s ease;
    transition: color .28s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: .75rem;
}

.tabs .tab button svg {
    width: 18px;
    height: 18px;
}

.tabs .tab button:hover, .tabs .tab button.active {
    background-color: transparent;
    color: var(--color-primary-dark);
}

.tabs .tab.disabled button,
.tabs .tab.disabled button:hover {
    color: rgba(121, 121, 121, 0.7);
    cursor: default;
}

.tabs .indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: var(--color-primary-light);
    will-change: left, right;
    list-style-type: none;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

@media only screen and (max-width: 1024px) {
    .tabs {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .tabs .tab {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .tabs .tab button {
        padding: 0 12px;
    }
}

/*********************************************************************************\
							        Tooltip
\*********************************************************************************/
.material-tooltip {
    padding: 8px 8px;
    font-size: 12px;
    z-index: 2000;
    border-radius: 2px;
    color: #fff;
    opacity: 0;
    position: absolute;
    text-align: center;
    max-width: calc(100% - 4px);
    overflow: hidden;
    left: 0;
    top: 0;
    pointer-events: none;
    visibility: hidden;
    background-color: #323a45;
}

.backdrop {
    position: absolute;
    opacity: 0;
    height: 7px;
    width: 14px;
    border-radius: 0 0 50% 50%;
    background-color: #323232;
    z-index: -1;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    visibility: hidden;
}

/*********************************************************************************\
                                    Chips
\*********************************************************************************/
.chip-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chip {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 26px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-primary-dark);
    letter-spacing: 0.005em;
    line-height: 1;
    padding: 0 12px;
    border-radius: 999px;
    background-color: var(--color-primary-white);
    border: 1px solid var(--color-primary-ultra-light);
    white-space: nowrap;
}

.chip i {
    background-color: var(--color-primary);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: -9px;
}

.chip svg {
    fill: var(--color-primary);
}

.chip.success {
    background-color: var(--color-success-white);
    color: var(--color-success);
    border-color: var(--color-success-ultra-light);
}

.chip.success i {
    background-color: var(--color-success);
    color: #fff;
}

.chip.error {
    background-color: var(--color-danger-white);
    color: var(--color-danger);
    border-color: var(--color-danger-ultra-light);
}

.chip.error i {
    background-color: var(--color-danger);
    color: #fff;
}

.chip.chip-default {
    background-color: #eeebf3;
    color: #5a5470;
    border-color: #e0dbe8;
}

.chip.chip-default i {
    background-color: #5a5470;
    color: #fff;
    fill: #fff;
}

.chip img {
    float: left;
    margin: 0 6px 0 -8px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.chip i svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.chip .close,
.chip .chip-remove {
    background-color: rgba(0, 0, 0, 0.15);
    color: currentColor;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 -9px 0 4px;
    flex: 0 0 auto;
}

.chip .chip-remove svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

/*********************************************************************************\
                                    Badge
\*********************************************************************************/
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 22px;
    height: 22px;
    padding: .35em .65em;
    margin-right: .5rem;
    text-align: center;
    font-size: .75em;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--color-primary-dark);
    background-color: var(--color-primary-white);
    border: 1px solid var(--color-primary-ultra-light);
    border-radius: 999px;
    white-space: nowrap;
}

.badge-lg {
    font-size: 1em;
    padding: 1em;
}

.badge.solid {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.badge.solid.default {
    background-color: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.badge.default {
    background-color: var(--color-background);
    color: var(--color-text);
    border-color: var(--color-text-light);
}

.badge.muted {
    background-color: var(--color-background);
    color: var(--color-text-light);
    border-color: var(--color-primary-ultra-light);
    opacity: .6;
}

.badge.success {
    background-color: var(--color-success-white);
    color: var(--color-success-dark);
    border-color: var(--color-success-ultra-light);
}

.badge.success.white {
    background-color: #fff;
}

.badge.error,
.badge.danger {
    background-color: var(--color-danger-white);
    color: var(--color-danger-dark);
    border-color: var(--color-danger-ultra-light);
}

.badge.warning {
    background-color: var(--color-warning-white);
    color: var(--color-warning-dark);
    border-color: var(--color-warning-ultra-light);
}

/* Variantes de teinte, pour un badge qui nomme une catégorie et non un état
   (type de contenu, matière, module…). Même formule que success/warning/danger,
   appliquée aux teintes déclarées dans colors.css : une variante n'a donc qu'à
   fixer sa teinte. */
.badge.tint-light-blue,
.badge.tint-indigo,
.badge.tint-teal,
.badge.tint-green,
.badge.tint-amber,
.badge.tint-deep-orange,
.badge.tint-deep-purple {
    background-color: oklch(93.83% 0.0265 var(--badge-hue));
    color: oklch(57.32% 0.194 var(--badge-hue));
    border-color: oklch(89.31% 0.06 var(--badge-hue));
}

.badge.tint-light-blue   { --badge-hue: var(--hue-light-blue); }
.badge.tint-indigo       { --badge-hue: var(--hue-indigo); }
.badge.tint-teal         { --badge-hue: var(--hue-teal); }
.badge.tint-green        { --badge-hue: var(--hue-green); }
.badge.tint-amber        { --badge-hue: var(--hue-amber); }
.badge.tint-deep-orange  { --badge-hue: var(--hue-deep-orange); }
.badge.tint-deep-purple  { --badge-hue: var(--hue-deep-purple); }

.badge svg {
    fill: currentColor;
    width: 14px;
    height: 14px;
}

.collection-item .badge-container .badge {
    display: inline-flex;
    float: none;
}

/*********************************************************************************\
							   checkbox / radio
\*********************************************************************************/
.checkbox-group, .radio-group {
    display: flex;
    gap: 1rem;
}

.checkbox-group.column, .radio-group.column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

label.radio,
label.radio-with-icon,
label.checkbox {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    margin-bottom: 0;
    padding: 0.4rem;
}

label.radio-with-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 72px;
    min-height: 72px;
    border: 2px solid #ced4da;
    border-radius: 0.25rem;
}

label.radio > div,
label.checkbox > div {
    position: relative;
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}

.radio > div::before,
.checkbox > div::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

.radio > div:empty::before,
.checkbox > div:empty::before {
    margin-right: 1px;
}

.radio > div::before {
    border-radius: 50%;
}

.radio > div::after,
.checkbox > div::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 2px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

.radio input,
.checkbox input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -5px;
    top: -2px;
    display: block;
    margin: 0 !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.4s;
}

/* Checked, Indeterminate */
.radio input:checked,
.checkbox input:checked {
    background-color: var(--color-primary);
}

.radio input:checked + div::before,
.checkbox input:checked + div::before {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.radio input:checked + div::after,
.checkbox input:checked + div::after {
    border-color: rgb(255, 255, 255);
}

/* hover, focus */
.radio:hover input,
.checkbox:hover input {
    opacity: 0.04;
}

.radio:hover input:checked,
.checkbox:hover input:checked {
    opacity: 0.12;
}

/* Active */
.radio input:active,
.checkbox input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.radio input:active + div::before,
.checkbox input:active + div::before {
    border-color: var(--color-primary);
}

.radio input:checked:active + div::before,
.checkbox input:checked:active + div::before {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Disabled */
.radio input:disabled,
.checkbox input:disabled {
    opacity: 0;
}

.radio input:disabled + div,
.checkbox input:disabled + div {
    color: rgba(0, 0, 0, 0.38);
    cursor: initial;
}

.radio input:disabled + div::before,
.checkbox input:disabled + div::before {
    border-color: currentColor;
}

.radio input:checked:disabled + div::before,
.checkbox input:checked:disabled + div::before {
    border-color: transparent;
    background-color: currentColor;
}

.radio-with-icon:hover {
    border: 2px solid #a0a5aa;
}

.radio-with-icon input {
    display: none;
}

.radio-with-icon svg {
    margin-bottom: 3px;
}

.radio-with-icon:has(input:disabled) {
    color: hsla(150, 5%, 75%, 1);
    border-color: hsla(150, 5%, 75%, 1);
    box-shadow: none;
    cursor: not-allowed;
}

.radio-with-icon:has(input[type="radio"]:checked) {
    border: 2px solid var(--color-primary);
}

.radio-with-icon div {
    text-align: center;
}

.radio-with-icon .help {
    font-size: 0.8rem;
    color: #535B60;
    margin-top: 3px;
}

/*********************************************************************************\
							switch (checkbox style)
\*********************************************************************************/
.switch-container {
    margin: 5px 0;
}

.switch-container-inline {
    margin: 3px 0 5px 0;
    display: inline-block;
}

.switch-container-inline + label {
    vertical-align: top;
    margin-left: 10px;
}

.switch {
    position: relative;
    display: block;
    height: 14px;
    width: 36px;
    background: rgba(0, 0, 0, 0.26);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.switch.big {
    width: 42px;
    height: 18px;
}

.switch:after {
    position: absolute;
    left: -2px;
    top: -3px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FAFAFA;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    content: '';
    transition: all 0.3s ease;
}

.switch.big:after {
    left: -4px;
    top: -5px;
    width: 28px;
    height: 26px;
}

.switch .check {
    opacity: 0;
    z-index: 10;
    position: absolute;
    top: -1px;
    right: 0;
    transition: all 0.1s ease 0s;
}

.switch .check svg {
    fill: #fff;
}

.switch .uncheck {
    opacity: 1;
    z-index: 10;
    position: absolute;
    top: -1px;
    left: 1px;
    transition: all 0.1s ease 0.2s;
}

.switch svg {
    width: 13px;
    height: 13px;
}

.switch.big svg {
    width: 16px;
    height: 16px;
}

.switch-cbx:checked ~ label .uncheck {
    opacity: 0;
    transition-delay: 0s;
}

.switch-cbx:checked ~ label .check {
    opacity: 1;
    transition-delay: 0.2s;
}

.switch:active:after {
    transform: scale(1.15, 0.85);
}

.switch-cbx:checked ~ label {
    background: var(--color-primary-ultra-light);
}

.switch-cbx:checked ~ label:after {
    left: 20px;
    background: var(--color-primary-dark);
}

.switch-cbx:disabled ~ label {
    background: #d5d5d5;
    pointer-events: none;
}

.switch-cbx:disabled ~ label:after {
    background: #bcbdbc;
}

/************\
  Progress circle bar
\************/
@keyframes growProgressBar {
    0%   { --pgFactor: 0; }
    100% { --pgFactor: 1; }
}

@property --pgFactor {
    syntax: '<number>';
    inherits: false;
    initial-value: 1;
}

.progress-circle-bar {
    --size: 8.4rem;
    --pgFactor: 1;
    animation: growProgressBar 1s 1 forwards ease-out;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--color-primary) calc(var(--pgFactor) * var(--value) * 1%), #def 0);
    font-size: calc(var(--size) / 5);
    color: var(--color-primary);
}

.progress-circle-bar .number {
    display: flex;
    align-items: start;
}

.progress-circle-bar .unit {
    font-size: .6em;
    margin-left: .2em;
}

/************\
   article
\************/
.article {
    position: relative;
    background: #fff;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.article.info,
.card.info {
    border-left: 5px solid #4fc3f7;
    background: #e1f5fe;
}

.article.success,
.card.success {
    border-left: 5px solid var(--color-success);
    background: #e8f5e9;
}

.article.danger,
.card.danger {
    border-left: 5px solid var(--color-danger-light);
    background: #ffebee;
}

.article.warning,
.card.warning {
    border-left: 5px solid var(--color-warning-light);
    background: #fff8e1;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.3rem;
    line-height: 2rem;
    display: flex;
    align-items: center;
}

.article-title svg {
    width: 30px;
    height: 30px;
    margin-right: .6rem;
}

.article-title i {
    font-size: 25px;
}

.article-sub-title {
    font-size: 1rem;
    margin: 15px 0 10px 0;
}

.article-tool {
    float: right;
}

.article-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    margin-top: 20px;
}

.article > .collapsible-header:not(.active) .article-title,
.card > .collapsible-header:not(.active) .article-title {
    margin: 0;
}

/************\
    Forms
\************/
.form-group {
    margin-bottom: 15px;
    position: relative;
}

label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 1rem;
}

label + .icon-info {
    font-size: 17px;
    position: relative;
    top: 3px;
    margin-left: 3px;
}

label svg.remix {
    width: 18px;
    height: 18px;
}

.checkbox {
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.checkbox label {
    min-height: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
    padding-left: 20px;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    line-height: normal;
    margin: 2px 0 0 -20px;
}

.form-tooltip svg {
    position: relative;
    top: 6px;
}

.form-helper {
    display: block;
    margin: 5px 0 10px 0;
    color: #535B60;
    font-size: 14px;
}

/* bootstrap 5 */
.form-control {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select:disabled, .form-select[readonly],
.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

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

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

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

.form-select {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus,
.form-select:focus {
    border-color: #888;
    outline: none;
}

.form-control.highlight:focus {
    border-color: var(--color-primary);
}

textarea.form-control {
    height: auto;
}

.form-error {
    margin-top: .3rem;
    color: var(--color-danger);
}

.form-control-char-counter {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
    font-size: 11px;
    color: #6b7689;
}

.form-control:has(+ .form-error),
.form-select:has(+ .form-error) {
    border-color: var(--color-danger);
}

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

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

.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-file .form-file-input:focus ~ .form-file-label {
    z-index: 3;
}

.input-group > .form-file > .form-file-input:focus {
    z-index: 4;
}

.input-group > .form-file:not(:last-child) > .form-file-label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .form-file:not(:first-child) > .form-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

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

.input-group .btn:focus {
    z-index: 3;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #ededed;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group-lg > .form-control {
    min-height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-select {
    height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.input-group-sm > .form-control {
    min-height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-select {
    height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 1.75rem;
}

.input-group > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group > .dropdown-toggle:nth-last-child(n + 3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* bootstrap 5 - utilities */
.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-muted {
    font-size: .85rem;
    color: #6b7689;
}

.font-normal {
    font-weight: 400 !important;
}

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

.fill-primary {
    fill: var(--color-primary);
}

.fill-success {
    fill: var(--color-success);
}

.fill-danger {
    fill: var(--color-danger);
}

.fill-warning {
    fill: var(--color-warning);
}

/************\
     Card
\************/
.card-panel {
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 24px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
}

.card {
    position: relative;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6e4ee;
    box-shadow: 0 1px 2px rgba(20, 30, 50, .04);
}

.card .card-header {
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid #efeef4;
}

.card .card-header .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 32px;
    width: 32px;
    color: var(--color-primary);
    fill: var(--color-primary-dark);
    background-color: var(--color-primary-white);
    border: 1px solid var(--color-primary-ultra-light);
    border-radius: 8px;
}

.card .card-header .card-icon svg {
    width: 18px;
    height: 18px;
}

.card .card-header.success {
    background-color: var(--color-success-white);
}

.card .card-header.success .card-title {
    color: var(--color-success-dark);
}

.card .card-header.success .card-icon {
    background: #fff;
    border-color: var(--color-success-ultra-light);
    fill: var(--color-success-dark);
}

.card .card-header.danger {
    background-color: var(--color-danger-white);
}

.card .card-header.danger .card-title {
    color: var(--color-danger-dark);
}

.card .card-header.danger .card-icon {
    background: #fff;
    border-color: var(--color-danger-ultra-light);
    fill: var(--color-danger-dark);
}

.card .card-header .card-header-actions {
    display: flex;
    gap: .4rem;
    align-items: center;
    margin-left: auto;
}

.card .card-title {
    font-size: 16px;
    font-weight: 600;
}

.card .card-subtitle {
    color: var(--color-text-light);
    font-size: 14px;
}

.card.horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.card.horizontal .card-image {
    max-width: 50%;
}

.card.horizontal .card-image img {
    border-radius: 2px 0 0 2px;
    max-width: 100%;
    width: auto;
}

.card.horizontal .card-stacked {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.card.horizontal .card-stacked .card-content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.card .card-image {
    position: relative;
}

.card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
}

.card .card-image .card-title {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 24px;
}

.card .card-content {
    padding: 24px;
    border-radius: 0 0 2px 2px;
}

.card .card-content p {
    margin: 0;
}

.card .card-content .card-title {
    display: block;
    line-height: 32px;
    margin-bottom: 16px;
}

.card .card-content .card-title i {
    line-height: 32px;
}

.card .card-action {
    display: flex;
    background-color: inherit;
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    position: relative;
    padding: 16px 24px;
}

.card .card-action:last-child {
    border-radius: 0 0 2px 2px;
}

.card .card-action a,
.card .card-action button {
    margin: 0 .3rem;
}

.card .card-action a:first-child,
.card .card-action button:first-child {
    margin-left: 0;
}

.card .card-action a:last-child,
.card .card-action button:last-child {
    margin-right: 0;
}

.card .card-action a:not(.btn):hover,
.collection-item a:not(.btn):hover,
.collection-item a.active:not(.btn) {
    color: var(--color-primary);
}

.card .card-action a:not(.btn) {
    color: var(--color-primary-dark);
}

/************\
     KPI card
\************/
.card-kpi {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 0;
}

.card-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-kpi-icon .remix { width: 1.25em; height: 1.25em; }

.card-kpi-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-kpi-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
}

.card-kpi-label {
    font-size: 0.78rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.metric-purple { background: var(--color-primary-ultra-light); }
.metric-purple .remix { fill: var(--color-primary-dark); }

.metric-teal { background: oklch(87.74% 0.052 184.38); }
.metric-teal .remix { fill: oklch(40% 0.12 184.38); }

.metric-orange { background: var(--color-orange-ultra-light); }
.metric-orange .remix { fill: var(--color-orange-dark); }

.metric-green { background: var(--color-success-ultra-light); }
.metric-green .remix { fill: oklch(40% 0.15 144.31); }

/************\
     Empty state (hero banner)
\************/
.empty-state {
    text-align: center;
    margin-top: 5rem;
}

.empty-state-title {
    margin-bottom: .8rem;
}

.empty-state-text {
    margin-bottom: 1rem;
}

/************\
     progress-bar
\************/
.progress-bar {
    width: 100%;
}

.progress-bar-thin {
    display: flex;
    align-items: center;
}

.progress-bar-outer {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.progress-bar-thin .progress-bar-outer {
    height: 8px;
}

.progress-bar .progress-bar-inner {
    background: var(--color-primary);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-bar .progress-bar-legend {
    margin: .6rem 0 0 .5rem;
}

.progress-bar-thin .progress-bar-legend {
    margin: 0 0 0 .5rem;
    font-size: 0.8rem;
}

/* Permissions Field Styles */
.permissions-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.permissions-table thead {
    background-color: var(--color-bg-light, #f5f5f5);
}

.permissions-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--color-text, #333);
    border-bottom: 2px solid var(--color-border, #e0e0e0);
}

.permissions-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border, #e0e0e0);
    vertical-align: middle;
}

.permissions-table tbody tr:hover {
    background-color: var(--color-bg-hover, #fafafa);
}

.permissions-table tbody tr:last-child td {
    border-bottom: none;
}

.permissions-table tfoot {
    background-color: var(--color-bg-light, #fafafa);
}

.permissions-table-footer td {
    padding: 0.75rem 1rem;
    border-top: 2px solid var(--color-border, #e0e0e0);
    border-bottom: none;
}

.permissions-table .remix {
    width: 24px;
    height: 24px;
}

.permissions-table .switch {
    margin: 0;
}

.permissions-table .switch label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.permissions-table .switch label .lever {
    margin: 0;
}

.table-container {
    overflow-x: auto;
}

.js-subject-selector .card {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New permission row styles */
.js-new-permission-row {
    background-color: var(--color-bg-light, #f9f9f9);
    animation: slideDown 0.2s ease-out;
}

.js-new-permission-row td {
    border-color: var(--color-primary, #1976d2) !important;
    border-width: 2px !important;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/*********************************************************************************\
                                    Toast
\*********************************************************************************/
.toast-viewport {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: flex-start;
    width: 360px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #ece8f3;
    border-left: 3px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 12px 28px -8px rgba(30, 26, 46, 0.18), 0 2px 6px rgba(30, 26, 46, 0.06);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.success { border-left-color: var(--color-success); }
.toast.danger  { border-left-color: var(--color-danger); }
.toast.warning { border-left-color: var(--color-warning); }
.toast.info    { border-left-color: var(--color-primary); }

.toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--color-primary-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary-ultra-light);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 1px;
}

.toast.success .toast-icon {
    background: var(--color-success-white);
    color: var(--color-success);
    border-color: var(--color-success-ultra-light);
}

.toast.danger .toast-icon {
    background: var(--color-danger-white);
    color: var(--color-danger);
    border-color: var(--color-danger-ultra-light);
}

.toast.warning .toast-icon {
    background: var(--color-warning-white);
    color: var(--color-warning);
    border-color: var(--color-warning-ultra-light);
}

.toast-icon svg.remix {
    width: 16px;
    height: 16px;
}

.toast-body {
    min-width: 0;
}

.toast-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e1a2e;
    line-height: 1.35;
}

.toast-msg {
    font-size: 12.5px;
    color: #6b6480;
    line-height: 1.45;
    margin: 0;
}

.toast-title + .toast-msg {
    margin-top: 2px;
}

.toast-action {
    display: block;
    margin-top: 8px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    color: var(--color-primary);
}

.toast.success .toast-action { color: var(--color-success); }
.toast.danger  .toast-action { color: var(--color-danger); }
.toast.warning .toast-action { color: var(--color-warning); }

.toast-close {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: #9b94ad;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 1px;
    transition: background 0.15s, color 0.15s;
}

.toast-close svg {
    width: 12px;
    height: 12px;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1e1a2e;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(20px);
}

.table.table-sticky-col {
    border-collapse: separate;
    border-spacing: 0;
}

.table.table-sticky-col thead th {
    border-top: 1px solid #C5C5C5;
    border-left: none;
    border-right: 1px solid #C5C5C5;
    border-bottom: 1px solid #C5C5C5;
}

.table.table-sticky-col tbody tr td {
    border-top: none;
    border-left: none;
    border-right: 1px solid #C5C5C5;
    border-bottom: 1px solid #C5C5C5;
}

.table.table-sticky-col thead th:first-child,
.table.table-sticky-col tbody tr td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    border-left: 1px solid #C5C5C5;
    border-right: 1px solid #C5C5C5;
}

.table.table-sticky-col thead th:first-child {
    z-index: 50;
}

.table.table-sticky-col tbody tr td:first-child {
    z-index: 49;
}

.table.table-sticky-col tbody tr:hover td:first-child {
    background: #eee;
}
