html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Ubuntu;
}

.table.table-striped.table-hover {
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.12);
}

.tag-show-delete {
    visibility: hidden;
}

.tag-hover:hover > .tag-show-delete {
    visibility: visible;
}

.arrayTemplate table {
    border-spacing: 0;
    border-collapse: collapse;
    text-align: start;
}

.arrayTemplate td {
    vertical-align: bottom;
}

.bg-hover {
    transition: background-color 0.2s ease-in-out;
}
    .bg-hover:hover {
        background-color: color-mix(in srgb, var(--bs-secondary), transparent 70%) !important;
    }
        .bg-hover:hover .btn {
            opacity: 1 !important;
            transition: opacity 0.2s ease-in-out;
        }