@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

:root {
    --scrollbar-track-bg: #FFFFFF;
    --scrollbar-track-hover-bg: #FFFFFF;
    --scrollbar-track-active-bg: #FFFFFF;
    --scrollbar-thumb-color: #CDCDCD;
    --scrollbar-thumb-hover-color: #BABABA;
    --scrollbar-thumb-active-color: #BABABA;
}

* {
    font-family: Poppins, 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";
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-bg);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: var(--scrollbar-track-bg);
}

*::-webkit-scrollbar-track:hover {
    background-color: var(--scrollbar-track-bg);
}

*::-webkit-scrollbar-track:active {
    background-color: var(--scrollbar-track-bg);
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--scrollbar-thumb-color);
    border: 2px solid var(--scrollbar-track-bg);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover-color);
}

*::-webkit-scrollbar-thumb:active {
    background-color: var(--scrollbar-thumb-active-color);
}

#main:focus,
#content:focus {
    outline: none;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
}

.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem;
    background-color: black;
    font-weight: 600;
    color: white;
    opacity: 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.skip-to-main-content-link:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.quill-content p {
    margin: 0;
}

.link-underline-hover {
    text-decoration: none;
}

.link-underline-hover:hover {
    text-decoration: underline;
}

.form-label {
    margin-bottom: 0.25rem;
}

.ql-container.ql-snow {
    font-size: initial;
}

.inbox-badge {
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-content: center;
    border-radius: 999px;
    opacity: 1;
    transform: scale(1);
    animation: pulse-white 2s infinite;
}

.active .inbox-badge {
    color: #fff !important;
    background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
    animation: pulse-red 2s infinite !important;
}

.alerts-badge {
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-content: center;
    border-radius: 999px;
    opacity: 1;
    transform: scale(1);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 7px rgba(220, 53, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.alert-white {
    --bs-alert-color: var(--bs-body-color);
    --bs-alert-bg: var(--bs-white);
    --bs-alert-border-color: var(--bs-light-border-subtle);
    --bs-alert-link-color: var(--bs-link-color);
}

.message-recipient-btn {
    position: relative;
    padding: 0 0.25rem;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 0.25rem;
    line-height: 1;
    transition-property: background-color, border;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.message-recipient-btn.deleted {
    color: var(--bs-danger);
    font-style: italic;
}

.message-recipient-btn.self {
    color: var(--bs-primary);
    font-weight: 500;
}

.message-recipient-btn:not(.deleted):hover,
.message-recipient-btn:not(.deleted):focus-visible,
.message-recipient-btn:not(.deleted):focus-within {
    background-color: var(--bs-light);
    border-color: var(--bs-border-color);
}

.message-recipient-btn::after {
    --arrow-size: 6px;
    content: "";
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--arrow-size) var(--arrow-size) 0 var(--arrow-size);
    border-color: var(--bs-dark) transparent transparent transparent;
    bottom: calc(100% + (var(--arrow-size) / 2));
    left: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) scale(0.85);
    transform-origin: bottom left;
    transition-property: opacity, transform;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.message-recipient-btn:focus-within::after,
.message-recipient-btn:focus-visible::after {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.message-recipient-btn-content {
    position: absolute;
    user-select: text;
    visibility: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    bottom: calc(100% + 0.5rem);
    left: 0;
    min-width: min(15rem, 90vw);
    padding: 0.75rem;
    text-align: left;
    color: var(--bs-light);
    background-color: var(--bs-dark);
    opacity: 0;
    z-index: 99;
    border-radius: 0.25rem;
    cursor: auto;
    transform-origin: bottom left;
    transform: scale(0.85);
    transition-property: opacity, transform;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.message-recipient-btn:focus-within .message-recipient-btn-content,
.message-recipient-btn:focus-visible .message-recipient-btn-content {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.user-message-body {
    white-space: pre-line;
}

.user-message-body h1,
.user-message-body h2,
.user-message-body h3,
.user-message-body h4,
.user-message-body h5,
.user-message-body h6,
.user-message-body p {
    margin: 0;
}

.dropzone {
    position: relative;
    cursor: pointer;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.15s ease-in-out;
}

.dropzone.dragover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dropzone-help {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: translateY(0) scale(1);
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    transition-property: opacity, transform;
}

.dropzone.dragover .dropzone-help,
.dropzone.active .dropzone-help {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.dragover-help {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    transition-property: opacity, transform;
}

.dropzone.dragover:not(.active) .dragover-help {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.dropzone-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dropzone-preview {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    justify-content: start;
    text-align: start;
    line-height: 1;
    background-color: var(--bs-light);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    transition: border-color 0.15s ease-in-out;
}

.dropzone-preview:hover,
.dropzone-preview:focus {
    border-color: var(--bs-primary);
}

.dropzone-preview i {
    display: block;
    font-size: 2rem;
}

.dropzone-preview p {
    margin: 0;
}

.dropzone-preview small.error {
    color: var(--bs-danger);
    text-decoration: underline;
    font-weight: bold;
}

.dropzone-preview small.error::after {
    content: attr(data-error);
    display: inline;
}

.alert.alert-danger.validation-summary-errors ul {
    margin: 0 !important;
}

.alert-danger.validation-summary-valid {
    display: none;
}

.side-nav nav.nav .nav-link:not(.active):hover,
.side-nav nav.nav .nav-link:not(.active):focus-visible {
    --bs-accordion-transition: box-shadow 0.15s ease-in-out;
    background-color: rgba(255, 255, 255, 0.1);
}

.side-nav nav.nav .nav-link:not(.active):focus-visible {
    box-shadow: inset 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.side-nav nav.nav .nav-link.active:hover,
.side-nav nav.nav .nav-link.active:focus-visible {
    --bs-accordion-transition: box-shadow 0.15s ease-in-out;
    background-color: var(--bs-link-hover-color);
}

.side-nav nav.nav .nav-link.active:focus-visible {
    box-shadow: inset 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5);
}

.divider {
    margin-block: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    height: 1rem;
    white-space: nowrap;
}

.divider:not(:empty) {
    gap: 1rem;
}

.divider::before,
.divider::after {
    content: "";
    flex-grow: 1;
    height: 0.125rem;
    width: 100%;
    background-color: var(--bs-border-color);
}

td {
    vertical-align: middle;
}

/*.btn-square {*/
/*    height: 2.5rem;*/
/*    width: 2.5rem;*/
/*    padding: 0;*/
/*}*/

.btn-square-icon,
.btn-circle-icon {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem !important;
}

.btn-sm.btn-square {
    height: 2rem;
    width: 2rem;
    padding: 0;
}

/*.btn-circle {*/
/*    height: 2.5rem;*/
/*    width: 2.5rem;*/
/*    padding: 0;*/
/*    border-radius: 9999px;*/
/*}*/

.btn-sm .btn-square-icon,
.btn-sm .btn-circle-icon {
    width: 2rem;
    height: 2rem;
    line-height: 2rem !important;
}

/*.btn-sm.btn-circle {*/
/*    height: 2rem;*/
/*    width: 2rem;*/
/*    padding: 0;*/
/*    border-radius: 9999px;*/
/*}*/

.btn-white {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d3d4d5;
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f8f9fa;
    --bs-btn-disabled-border-color: #f8f9fa;
}

.alert-btn {
    --bs-btn-color: var(--bs-alert-bg);
    --bs-btn-hover-color: var(--bs-alert-bg);
    --bs-btn-active-color: var(--bs-alert-bg);
    --bs-btn-disabled-color: var(--bs-alert-bg);
    --bs-btn-border-color: var(--bs-alert-bg);
    --bs-btn-hover-border-color: var(--bs-alert-bg);
    --bs-btn-active-border-color: var(--bs-alert-bg);
    --bs-btn-bg: var(--bs-alert-link-color);
    --bs-btn-hover-bg: var(--bs-alert-link-color);
    --bs-btn-active-bg: var(--bs-alert-link-color);
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.25);
}

.alert-btn-ghost {
    --bs-btn-color: var(--bs-alert-link-color);
    --bs-btn-disabled-color: var(--bs-alert-link-color);

    --bs-btn-border-color: var(--bs-alert-bg);
    --bs-btn-bg: var(--bs-alert-bg);

    --bs-btn-hover-color: var(--bs-alert-bg);
    --bs-btn-active-color: var(--bs-alert-bg);

    --bs-btn-hover-border-color: var(--bs-alert-link-color);
    --bs-btn-active-border-color: var(--bs-alert-link-color);
    --bs-btn-hover-bg: var(--bs-alert-link-color);
    --bs-btn-active-bg: var(--bs-alert-link-color);

    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.25);
}

.control-label {
    margin: 7px;
    color: blue;
    text-decoration: underline;
    padding: 3px;
    font: bold 18px arial, verdana;
    text-shadow: red;
}

#nyhetsWrapper {
    width: auto;
    height: auto;
}

#Title.form-control.custom-input {
    height: 45px;
    border: 1px solid black;
    border-radius: 5px;
}

p.textSchemal�ggning.p {
    text-decoration: underline;
    text-decoration-line: underline blink;
}

input#CreatedAt.form-control.date:after {
    color: red;
    content: '<--Klicka ikon (datum-hantering)';
    border: 1px solid black;
    border-radius: 5px;
    margin: 1px;
    padding: 1px;
}

input#CreatedAt.form-control.date {
    color: blue;
    border: 1px solid black;
    border-radius: 5px;
}

input#Active.form-check-input.check {
    border: 1px solid black;
    border-radius: 5px;
}

label.form-check-label.text {
    color: blue;
}

label.form-check-label.text
div.container.footer {
    border-top: 2px solid black;
}

.wrapperForEditor {
    height: auto;
    width: auto;
    border: 1px solid black;
    border-radius: 5px;
}

#calendar a {
    color: black;
    text-decoration: none;
}

/*System admin layout sidebar*/
.sidepanel {
    width: 0px;
    max-width: 300px;
    position: fixed;
    z-index: 1;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    background-color: whitesmoke;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a, #vc {
    padding: 8px 8px 8px 15px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
}

.sidepanel a:hover, #vc:hover {
    color: black;
    background-color: #ccece6;
}

.sidepanel a:hover {
    color: #8a1cf8;
}

.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 26px;
}

.openbtn {
    /*font-size: 30px;*/
    cursor: pointer;
    background-color: white;
    color: black;
    /*padding: 10px 15px*/
    border: none;
    /*border-color:#808080;*/
}

.openbtn:hover {
    background-color: #ccece6;
}

#mySidepanel2 {
    width: 15vw;
}

/*SystemAdmin Layout top nav*/
#nav1 {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 36px;
    line-height: 36px;
    background: none;
}

#nav1 li {
    /* border-right: 1px solid #189b80;*/
    /* border-right: 1px solid #189b80;*/ /* you can change the border color matching to your background color */

    float: left;
}

#nav1 form {
    height: 100%;
}

#nav1 a,
#nav1 button {
    display: block;
    padding: 0 28px;
    color: black;
    text-decoration: none;
    height: 100%;
    font-size: 1rem;
}

#nav1 a:hover,
#nav1 form:hover,
#nav1 li:hover,
#nav1 li.current a {
    background: #ccece6;
}

.field-validation-error {
    display: inline-block;
    color: var(--bs-danger);
    margin-top: 0.25rem;
}

.icon-square {
    width: 1rem;
    height: 1rem;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

.dropdown-menu-padded {
    --bs-dropdown-padding-x: 0.5rem;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-item-border-radius: 0.375rem;
    --bs-dropdown-item-padding-y: 0.5rem;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-spacing-y: 0.125rem;
}

.dropdown-menu-padded.gap li:not(:first-child) {
    margin-top: var(--bs-dropdown-item-spacing-y);
}

.dropdown-item-primary {
    --bs-dropdown-link-color: #38a169;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-link-hover-bg: #38a169;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #308959;
    --bs-dropdown-link-disabled-color: #38a169;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.dropdown-item-danger {
    --bs-dropdown-link-color: #dc3545;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-link-hover-bg: #dc3545;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #b02a37;
    --bs-dropdown-link-disabled-color: #dc3545;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.dropdown-item-warning-light {
    --bs-dropdown-link-color: #fd9814;
    --bs-dropdown-link-hover-color: #000;
    --bs-dropdown-link-hover-bg: #fd9814;
    --bs-dropdown-link-active-color: #000;
    --bs-dropdown-link-active-bg: #fd9814;
    --bs-dropdown-link-disabled-color: #fd9814;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.dropdown-item-dark {
    --bs-dropdown-link-color: #212529;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-link-hover-bg: #212529;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #212529;
    --bs-dropdown-link-disabled-color: #212529;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.custom-card {
    --bg-color: var(--bs-primary-bg-subtle);
    --bg-color-light: var(--bs-body-bg);
    --text-color-hover: var(--bs-primary-text);
    --box-shadow-color: rgba(var(--bs-body-color-rgb), .175);

    min-height: 321px;
    height: 100%;
    min-width: 220px;
    background: rgba(var(--bs-light-rgb), 1);
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease-out;
    text-decoration: none;
}

.custom-card:hover:not(.no-hover) {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--box-shadow-color);
}

.custom-card:hover:not(.no-hover) .overlay {
    scale: 4.25;
}

.custom-card:hover:not(.no-hover) .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
}

.custom-card:hover:not(.no-hover) .circle:after {
    background: var(--bg-color-light);
}

.custom-card:hover:not(.no-hover) h5 {
    color: var(--text-color-hover);
}

.custom-card:active:not(.no-hover) {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
    0 15px 24px var(--box-shadow-color);
}

.custom-card h5 {
    font-size: 17px;
    color: var(--bs-body-color);
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
}

.custom-card .circle {
    max-width: 131px;
    max-height: 131px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.custom-card .circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 5px;
    left: 5px;
    transition: opacity 0.3s ease-out;
}

.custom-card .circle > i,
.custom-card .circle > span {
    width: 76px;
    height: 76px;
    font-size: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transform: translateZ(0);
    color: var(--text-color-hover);
}

.custom-card .overlay {
    width: 118px;
    height: 118px;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% calc(-50% - calc(116px / 4));
    transform-origin: center;
    border-radius: 50%;
    background: var(--bg-color);
    z-index: 0;
    transition: scale 0.3s ease-out;
}

label.required::after {
    content: "*";
    margin-left: 0.25rem;
    color: var(--bs-danger);
}

th.sortable {
    cursor: pointer;
    transition: background-color .15s ease-in-out;
    position: relative;
    user-select: none;
}

th.sortable::after {
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

th.sortable:not([ascending]):not([descending])::after {
    content: "\f0dc";
    opacity: 0;
    transition: opacity .15s ease-in-out;
}

th.sortable:not([ascending]):not([descending]):hover::after {
    opacity: 1;
}

th.sortable[ascending]::after {
    content: "\f0de";
}

th.sortable[descending]::after {
    content: "\f0dd";
}

th.sortable:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.td-link {
    padding: 0 !important;
    height: 1px;
}

.td-link > a {
    display: flex;
    height: 100%;
    align-items: center;
    padding: .5rem .5rem;
}

.td-hover:hover {
    background-color: rgba(0, 0, 0, 0.075);
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.table-mobile .action-btn {
    width: 3rem;
    border-radius: 9999px;
    border: none;
}

#color {
    margin-top: 5px;
}

.pagination {
    width: max-content;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
}

.page-item .page-link {
    border: none !important;
    border-radius: var(--bs-pagination-border-radius) !important;
    height: 2.5rem !important;
    line-height: 2.5rem !important;
    min-width: 2.5rem !important;
    padding: 0 !important;
    display: block !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 0.875rem;
    font-weight: 600;
}

.page-item.disabled .page-link {
    opacity: 0.75;
}

.page-item.disabled.more .page-link {
    background-color: transparent;
    opacity: 0.75;
}

.page-item.active {
    cursor: pointer;
}

.page-item.active:hover .page-link {
    background-color: #339461;
}

.page-item.page-select input {
    width: 2.75rem;
    height: 2.75rem;
}

.page-item.active .page-selection {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%) translateY(-25%);
    height: 3rem;
    width: 3rem;
    background-color: white;
    display: flex;
    border-radius: 0.75rem;
}

.page-item.active .page-selection input {
    max-width: unset !important;
    max-height: unset !important;
    width: 100% !important;
    border: none;
    margin: 0.25rem;
}

@media screen and (max-width: 760px) {
    /* Force table to not be like tables anymore */
    table .table-mobile, .table-mobile tbody, .table-mobile th, .table-mobile td, .table-mobile tr {
        display: block;
    }

    .table-mobile thead {
        display: none;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .table-mobile thead .table-mobile tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-mobile tr {
        /*border-bottom: 1px solid var(--bs-table-border-color);*/
        background: var(--bs-table-striped-bg);
        margin: 1rem 0;
        padding: 0.5rem;
    }

    .table-mobile td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 50%;
        min-height: 2.5rem;
    }

    .table-mobile td:not(:last-child) {
        border-bottom: 1px solid var(--bs-table-border-color);
    }

    .table-mobile td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        height: 100%;
        width: 100%;
        max-width: 45%;
        padding-right: 10px;
        /*white-space: nowrap;*/
        /*text-overflow: ellipsis;*/
        /*overflow: hidden;*/
        font-weight: normal;
    }

    .table-mobile td[data-title]::before {
        content: attr(data-title);
    }

    .table-mobile td:not([data-title]) {
        padding-left: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .table-mobile .td-link {
        padding-left: 50% !important;
        height: auto;
    }

    .table-mobile .td-link > a {
        display: flex;
        height: 100%;
        align-items: center;
        padding: .5rem 0;
    }

    .table-mobile .td-hover:hover {
        background-color: transparent;
    }

    .table-mobile .action-btn {
        width: 100%;
        border-radius: var(--bs-btn-border-radius);
        border: 1px solid currentColor;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1625px;
    }
}
