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 {
    display: grid;
    grid-template-rows: auto 1fr; /* Заголовок - высота по содержимому, основной контент - занимает оставшееся пространство, нижний колонтитул - высота по содержимому */
    height: 100vh; /* Высота вьюпорта */
}

header {
    box-shadow: 0px 0px 8px 0px;
    z-index: 1;
}

main {
	overflow: auto;
}

footer {
    background-color: rgb(33, 37, 41);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    display: flex;
    font: 400 12px "PTSans", "Arial", "Helvetica", sans-serif;
    line-height: 24px;
    margin-top: 0px;
    text-align: left;
    text-size-adjust: 100%;
    unicode-bidi: isolate;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    padding-top: 6px;
    padding-bottom: 6px;
}

    footer .col {
        padding-left: 15px;
        padding-right: 15px;
    }


[data-bs-toggle="collapse"] .fa-chevron-collapse {
    --fa: "\f078";
}

[data-bs-toggle="collapse"][aria-expanded="true"] .fa-chevron-collapse {
    --fa: "\f077";
}

.license-list th.menu {
    width: 3rem;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
}

.license-list td.menu {
    width: 3rem;
    text-align: center;
}

.license-list th.id, .license-list td.id {
    width: 4rem;
}

.spinner {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba( 255, 255, 255, .8 );
    display: none;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.btn-layout-menu {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.container.nav.nav-tabs {
    border: none !important;
}