html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

.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;
}

.page_header {
    
}

    .page_header .title {
        color: var(--tz-gray-800);
    }

        .page_header .sub_title {
            color: var(--tz-gray-600) !important;
        }

.page-title-box .breadcrumb-item {
    color: var(--tz-gray-800) !important;
}

.table tr.selected td {
    --tz-table-bg-type: var(--tz-primary) !important;
}

/*
    On most pages there are collapsible card's with an icon.  Make the icon 20% bigger than the default font size using REM sizing
*/
.card .card-widgets {
    position: relative;
    padding-right: 20px; /* Add padding to the right */
}
    .card .card-widgets i {
        font-size: 1.5rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

.table_button_row {
    margin-bottom: 10px;
}

a {
    color: #32a3a6;
    text-decoration: none;
}

    a:hover {
        color: #32a3a6;
        text-decoration: underline;
    }

.no_left_margin {
    margin-left: 0;
}

.cursor_pointer{
    cursor:pointer;
}

table.dataTable tbody tr td {
    height:26px;
}

.row-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 53, 69, 0.15); /* Subtle red */
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: normal;
    text-shadow: none;
    letter-spacing: 2px;
}

@keyframes flash-alert {
    0% {
        background-color: #fff3cd;
    }

    30% {
        background-color: #ffe066;
    }

    100% {
        background-color: #fff3cd;
    }
}

.flash-alert {
    animation: flash-alert 0.7s;
}