/*
|--------------------------------------------------------------------------
| VPOS Bootstrap 5 Compatibility Layer
|--------------------------------------------------------------------------
| Bootstrap 5.3.8 is the active runtime. VPOS still has a lot of legacy
| Bootstrap 3/AdminLTE Blade markup, so this layer provides the smallest
| durable compatibility surface needed while the UI is upgraded module by
| module.
|--------------------------------------------------------------------------
*/

:root {
    --bs-blue: var(--vpos-primary, #2563eb);
    --bs-indigo: #4f46e5;
    --bs-purple: #7c3aed;
    --bs-pink: #db2777;
    --bs-red: var(--vpos-danger, #b91c1c);
    --bs-orange: #ea580c;
    --bs-yellow: var(--vpos-warning, #b7791f);
    --bs-green: var(--vpos-success, #16834f);
    --bs-teal: #0f766e;
    --bs-cyan: var(--vpos-info, #0369a1);
    --bs-black: #000000;
    --bs-white: #ffffff;
    --bs-gray: var(--vpos-text-muted, #64748b);
    --bs-gray-dark: var(--vpos-text, #1f2937);
    --bs-primary: var(--vpos-primary, #2563eb);
    --bs-secondary: var(--vpos-text-muted, #64748b);
    --bs-success: var(--vpos-success, #16834f);
    --bs-info: var(--vpos-info, #0369a1);
    --bs-warning: var(--vpos-warning, #b7791f);
    --bs-danger: var(--vpos-danger, #b91c1c);
    --bs-light: var(--vpos-surface-muted, #f1f5f9);
    --bs-dark: var(--vpos-text-strong, #111827);
    --bs-body-font-family: var(--vpos-font-family, "Segoe UI", Arial, sans-serif);
    --bs-body-font-size: var(--vpos-font-size, 12px);
    --bs-body-color: var(--vpos-text, #1f2937);
    --bs-body-bg: var(--vpos-bg, #f4f6f8);
    --bs-border-color: var(--vpos-border, #d8e0e8);
    --bs-border-radius: var(--vpos-radius, 7px);
    --bs-border-radius-sm: var(--vpos-radius-sm, 5px);
    --bs-border-radius-lg: var(--vpos-radius-lg, 10px);
    --bs-box-shadow-sm: var(--vpos-shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.08));
    --bs-box-shadow: var(--vpos-shadow, 0 6px 16px rgba(15, 23, 42, 0.1));
}

.float-start { float: left !important; }
.float-end { float: right !important; }
.float-none { float: none !important; }
.pull-left { float: left !important; }
.pull-right { float: right !important; }
.center-block { display: block; margin-right: auto; margin-left: auto; }

/* Glyphicons were removed with Bootstrap 3. Keep legacy icon markup visible
   through the bundled Font Awesome font while controllers are modernized. */
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-rendering: auto;
}

.glyphicon-edit::before { content: "\f044"; }
.glyphicon-trash::before { content: "\f2ed"; }
.glyphicon-calendar::before { content: "\f133"; }
.glyphicon-lock::before { content: "\f023"; }
.glyphicon-arrow-left::before { content: "\f060"; }
.glyphicon-arrow-up::before { content: "\f062"; }
.glyphicon-resize-horizontal::before { content: "\f337"; }
.glyphicon-resize-vertical::before { content: "\f338"; }
.clearfix:before,
.clearfix:after { display: table; content: " "; }
.clearfix:after { clear: both; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }
.fw-normal { font-weight: 400 !important; }
.fw-semibold { font-weight: 650 !important; }
.fw-bold { font-weight: 700 !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mw-100 { max-width: 100% !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.gap-1 { gap: 4px !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 12px !important; }
.m-0 { margin: 0 !important; }
.mt-1 { margin-top: 4px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 12px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 4px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 12px !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.p-0 { padding: 0 !important; }
.p-1 { padding: 4px !important; }
.p-2 { padding: 8px !important; }
.p-3 { padding: 12px !important; }
.px-2 { padding-right: 8px !important; padding-left: 8px !important; }
.py-1 { padding-top: 4px !important; padding-bottom: 4px !important; }
.py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
.rounded { border-radius: var(--bs-border-radius) !important; }
.rounded-1 { border-radius: var(--bs-border-radius-sm) !important; }
.rounded-2 { border-radius: var(--bs-border-radius) !important; }
.rounded-3 { border-radius: var(--bs-border-radius-lg) !important; }
.shadow-sm { box-shadow: var(--bs-box-shadow-sm) !important; }
.shadow { box-shadow: var(--bs-box-shadow) !important; }
.border { border: 1px solid var(--bs-border-color) !important; }
.border-0 { border: 0 !important; }

.row:before,
.row:after {
    display: table;
    content: " ";
}

.row:after {
    clear: both;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: calc(var(--bs-gutter-x, 30px) * .5);
    padding-left: calc(var(--bs-gutter-x, 30px) * .5);
    float: left;
    flex: 0 0 auto;
}

.col-xs-12 { width: 100%; max-width: 100%; }
.col-xs-11 { width: 91.66666667%; max-width: 91.66666667%; }
.col-xs-10 { width: 83.33333333%; max-width: 83.33333333%; }
.col-xs-9 { width: 75%; max-width: 75%; }
.col-xs-8 { width: 66.66666667%; max-width: 66.66666667%; }
.col-xs-7 { width: 58.33333333%; max-width: 58.33333333%; }
.col-xs-6 { width: 50%; max-width: 50%; }
.col-xs-5 { width: 41.66666667%; max-width: 41.66666667%; }
.col-xs-4 { width: 33.33333333%; max-width: 33.33333333%; }
.col-xs-3 { width: 25%; max-width: 25%; }
.col-xs-2 { width: 16.66666667%; max-width: 16.66666667%; }
.col-xs-1 { width: 8.33333333%; max-width: 8.33333333%; }

.col-xs-offset-12 { margin-left: 100%; }
.col-xs-offset-11 { margin-left: 91.66666667%; }
.col-xs-offset-10 { margin-left: 83.33333333%; }
.col-xs-offset-9 { margin-left: 75%; }
.col-xs-offset-8 { margin-left: 66.66666667%; }
.col-xs-offset-7 { margin-left: 58.33333333%; }
.col-xs-offset-6 { margin-left: 50%; }
.col-xs-offset-5 { margin-left: 41.66666667%; }
.col-xs-offset-4 { margin-left: 33.33333333%; }
.col-xs-offset-3 { margin-left: 25%; }
.col-xs-offset-2 { margin-left: 16.66666667%; }
.col-xs-offset-1 { margin-left: 8.33333333%; }
.col-xs-offset-0 { margin-left: 0; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.card {
    margin-bottom: 10px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    background: var(--vpos-surface, #ffffff);
    box-shadow: var(--bs-box-shadow-sm);
}

.card-header,
.card-footer {
    padding: 8px 10px;
    background: var(--vpos-bg-subtle, #f8fafc);
    border-color: var(--bs-border-color);
}

.card-header {
    border-bottom: 1px solid var(--bs-border-color);
}

.card-footer {
    border-top: 1px solid var(--bs-border-color);
}

.card-body {
    padding: 10px;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

.list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.form-group {
    margin-bottom: 10px;
}

.form-horizontal .control-label {
    padding-top: 6px;
    margin-bottom: 0;
    text-align: right;
}

.help-block {
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
    color: var(--vpos-text-muted, #64748b);
    font-size: 11px;
}

.form-select,
.form-control.form-select {
    min-height: var(--vpos-control-height, 30px);
    padding-right: 26px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-sm);
    background-color: var(--vpos-surface, #ffffff);
}

.form-check {
    min-height: 18px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-input {
    margin: 0;
}

.form-check-label {
    margin-bottom: 0;
    font-weight: 500;
}

.input-group-text {
    display: table-cell;
    width: 1%;
    padding: 5px 9px;
    border: 1px solid var(--bs-border-color);
    background: var(--vpos-surface-muted, #f1f5f9);
    color: var(--vpos-text-muted, #64748b);
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    display: table-cell;
    width: 1%;
    padding: 5px 9px;
    border: 1px solid var(--bs-border-color);
    background: var(--vpos-surface-muted, #f1f5f9);
    color: var(--vpos-text-muted, #64748b);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.input-group-addon:first-child {
    border-right: 0;
    border-top-left-radius: var(--bs-border-radius-sm);
    border-bottom-left-radius: var(--bs-border-radius-sm);
}

.input-group-addon:last-child {
    border-left: 0;
    border-top-right-radius: var(--bs-border-radius-sm);
    border-bottom-right-radius: var(--bs-border-radius-sm);
}

.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-sm,
.form-control.input-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon {
    height: 28px;
    min-height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: var(--bs-border-radius-sm);
}

.input-lg,
.form-control.input-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon {
    height: 38px;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: var(--bs-border-radius);
}

.btn-close {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vpos-text-muted, #64748b);
    font-size: 0;
    line-height: 1;
}

.btn-close:before {
    content: "\00d7";
    font-size: 22px;
    line-height: 24px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: var(--vpos-text-muted, #64748b);
    text-shadow: none;
    opacity: .75;
    border: 0;
    background: transparent;
}

.close:hover,
.close:focus {
    color: var(--vpos-text-strong, #111827);
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
}

.btn-default {
    color: var(--vpos-text, #1f2937);
    background-color: var(--vpos-surface, #ffffff);
    border-color: var(--vpos-border, #d8e0e8);
}

.btn-default:hover,
.btn-default:focus {
    color: var(--vpos-primary-strong, #0f766e);
    background-color: var(--vpos-surface-muted, #f1f5f9);
    border-color: var(--vpos-primary-soft, #8ddac4);
}

.btn-flat {
    border-radius: var(--vpos-radius-sm, 5px);
    box-shadow: none;
}

.btn-xs {
    padding: 3px 7px;
    font-size: 11px;
    line-height: 1.4;
    border-radius: var(--vpos-radius-sm, 5px);
}

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

.label {
    display: inline;
    padding: .2em .55em .25em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label:empty {
    display: none;
}

.label-default { background-color: var(--vpos-text-muted, #64748b); }
.label-primary { background-color: var(--vpos-primary, #0f8f68); }
.label-success { background-color: var(--vpos-success, #16834f); }
.label-info { background-color: var(--vpos-info, #0369a1); }
.label-warning { background-color: var(--vpos-warning, #b7791f); }
.label-danger { background-color: var(--vpos-danger, #b91c1c); }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 4px 6px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown.open > .dropdown-menu,
.btn-group.open > .dropdown-menu {
    display: block;
}

.collapse.show {
    display: block;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.modal.in .modal-dialog {
    transform: none;
}

.modal-backdrop.in {
    opacity: var(--bs-backdrop-opacity, .5);
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.nav-tabs {
    border-bottom: 1px solid var(--vpos-border, #d8e0e8);
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    display: block;
    margin-right: 2px;
    padding: 8px 12px;
    color: var(--vpos-text-muted, #64748b);
    border: 1px solid transparent;
    border-radius: var(--vpos-radius-sm, 5px) var(--vpos-radius-sm, 5px) 0 0;
    text-decoration: none;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
    color: var(--vpos-primary-strong, #0f766e);
    background: var(--vpos-surface-muted, #f1f5f9);
    border-color: var(--vpos-border, #d8e0e8);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: var(--vpos-primary-strong, #0f766e);
    background-color: var(--vpos-surface, #ffffff);
    border: 1px solid var(--vpos-border, #d8e0e8);
    border-bottom-color: transparent;
    cursor: default;
}

.nav-pills > li {
    float: left;
}

.nav-pills > li > a {
    display: block;
    padding: 6px 10px;
    border-radius: var(--vpos-radius-sm, 5px);
    text-decoration: none;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #ffffff;
    background-color: var(--vpos-primary, #0f8f68);
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active,
.tab-content > .tab-pane.active,
.tab-content > .tab-pane.show {
    display: block;
}

.panel {
    margin-bottom: 12px;
    background-color: var(--vpos-surface, #ffffff);
    border: 1px solid var(--vpos-border, #d8e0e8);
    border-radius: var(--vpos-radius, 7px);
    box-shadow: var(--vpos-shadow-sm, 0 1px 2px rgba(15, 23, 42, .08));
}

.panel-body {
    padding: 10px;
}

.panel-heading {
    padding: 8px 10px;
    border-bottom: 1px solid var(--vpos-border, #d8e0e8);
    border-top-left-radius: var(--vpos-radius, 7px);
    border-top-right-radius: var(--vpos-radius, 7px);
}

.panel-footer {
    padding: 8px 10px;
    background-color: var(--vpos-surface-muted, #f1f5f9);
    border-top: 1px solid var(--vpos-border, #d8e0e8);
    border-bottom-right-radius: var(--vpos-radius, 7px);
    border-bottom-left-radius: var(--vpos-radius, 7px);
}

.panel-default > .panel-heading {
    color: var(--vpos-text-strong, #111827);
    background-color: var(--vpos-surface-muted, #f1f5f9);
}

.well {
    min-height: 20px;
    padding: 12px;
    margin-bottom: 12px;
    background-color: var(--vpos-surface-muted, #f1f5f9);
    border: 1px solid var(--vpos-border, #d8e0e8);
    border-radius: var(--vpos-radius, 7px);
    box-shadow: inset 0 1px 1px rgba(15, 23, 42, .04);
}

.badge.bg-primary,
.text-bg-primary {
    background: var(--bs-primary) !important;
    color: #ffffff !important;
}

.badge.bg-success,
.text-bg-success {
    background: var(--bs-success) !important;
    color: #ffffff !important;
}

.badge.bg-warning,
.text-bg-warning {
    background: var(--bs-warning) !important;
    color: #ffffff !important;
}

.badge.bg-danger,
.text-bg-danger {
    background: var(--bs-danger) !important;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .visible-xs { display: block !important; }
    table.visible-xs { display: table !important; }
    tr.visible-xs { display: table-row !important; }
    th.visible-xs,
    td.visible-xs { display: table-cell !important; }
    .hidden-xs { display: none !important; }
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
    .flex-sm-column { flex-direction: column !important; }
}

@media (min-width: 768px) {
    .col-sm-12 { width: 100%; max-width: 100%; }
    .col-sm-11 { width: 91.66666667%; max-width: 91.66666667%; }
    .col-sm-10 { width: 83.33333333%; max-width: 83.33333333%; }
    .col-sm-9 { width: 75%; max-width: 75%; }
    .col-sm-8 { width: 66.66666667%; max-width: 66.66666667%; }
    .col-sm-7 { width: 58.33333333%; max-width: 58.33333333%; }
    .col-sm-6 { width: 50%; max-width: 50%; }
    .col-sm-5 { width: 41.66666667%; max-width: 41.66666667%; }
    .col-sm-4 { width: 33.33333333%; max-width: 33.33333333%; }
    .col-sm-3 { width: 25%; max-width: 25%; }
    .col-sm-2 { width: 16.66666667%; max-width: 16.66666667%; }
    .col-sm-1 { width: 8.33333333%; max-width: 8.33333333%; }
    .col-sm-offset-12 { margin-left: 100%; }
    .col-sm-offset-11 { margin-left: 91.66666667%; }
    .col-sm-offset-10 { margin-left: 83.33333333%; }
    .col-sm-offset-9 { margin-left: 75%; }
    .col-sm-offset-8 { margin-left: 66.66666667%; }
    .col-sm-offset-7 { margin-left: 58.33333333%; }
    .col-sm-offset-6 { margin-left: 50%; }
    .col-sm-offset-5 { margin-left: 41.66666667%; }
    .col-sm-offset-4 { margin-left: 33.33333333%; }
    .col-sm-offset-3 { margin-left: 25%; }
    .col-sm-offset-2 { margin-left: 16.66666667%; }
    .col-sm-offset-1 { margin-left: 8.33333333%; }
    .col-sm-offset-0 { margin-left: 0; }
}

@media (min-width: 992px) {
    .col-md-12 { width: 100%; max-width: 100%; }
    .col-md-11 { width: 91.66666667%; max-width: 91.66666667%; }
    .col-md-10 { width: 83.33333333%; max-width: 83.33333333%; }
    .col-md-9 { width: 75%; max-width: 75%; }
    .col-md-8 { width: 66.66666667%; max-width: 66.66666667%; }
    .col-md-7 { width: 58.33333333%; max-width: 58.33333333%; }
    .col-md-6 { width: 50%; max-width: 50%; }
    .col-md-5 { width: 41.66666667%; max-width: 41.66666667%; }
    .col-md-4 { width: 33.33333333%; max-width: 33.33333333%; }
    .col-md-3 { width: 25%; max-width: 25%; }
    .col-md-2 { width: 16.66666667%; max-width: 16.66666667%; }
    .col-md-1 { width: 8.33333333%; max-width: 8.33333333%; }
    .col-md-offset-12 { margin-left: 100%; }
    .col-md-offset-11 { margin-left: 91.66666667%; }
    .col-md-offset-10 { margin-left: 83.33333333%; }
    .col-md-offset-9 { margin-left: 75%; }
    .col-md-offset-8 { margin-left: 66.66666667%; }
    .col-md-offset-7 { margin-left: 58.33333333%; }
    .col-md-offset-6 { margin-left: 50%; }
    .col-md-offset-5 { margin-left: 41.66666667%; }
    .col-md-offset-4 { margin-left: 33.33333333%; }
    .col-md-offset-3 { margin-left: 25%; }
    .col-md-offset-2 { margin-left: 16.66666667%; }
    .col-md-offset-1 { margin-left: 8.33333333%; }
    .col-md-offset-0 { margin-left: 0; }
}

@media (min-width: 1200px) {
    .col-lg-12 { width: 100%; max-width: 100%; }
    .col-lg-11 { width: 91.66666667%; max-width: 91.66666667%; }
    .col-lg-10 { width: 83.33333333%; max-width: 83.33333333%; }
    .col-lg-9 { width: 75%; max-width: 75%; }
    .col-lg-8 { width: 66.66666667%; max-width: 66.66666667%; }
    .col-lg-7 { width: 58.33333333%; max-width: 58.33333333%; }
    .col-lg-6 { width: 50%; max-width: 50%; }
    .col-lg-5 { width: 41.66666667%; max-width: 41.66666667%; }
    .col-lg-4 { width: 33.33333333%; max-width: 33.33333333%; }
    .col-lg-3 { width: 25%; max-width: 25%; }
    .col-lg-2 { width: 16.66666667%; max-width: 16.66666667%; }
    .col-lg-1 { width: 8.33333333%; max-width: 8.33333333%; }
    .col-lg-offset-12 { margin-left: 100%; }
    .col-lg-offset-11 { margin-left: 91.66666667%; }
    .col-lg-offset-10 { margin-left: 83.33333333%; }
    .col-lg-offset-9 { margin-left: 75%; }
    .col-lg-offset-8 { margin-left: 66.66666667%; }
    .col-lg-offset-7 { margin-left: 58.33333333%; }
    .col-lg-offset-6 { margin-left: 50%; }
    .col-lg-offset-5 { margin-left: 41.66666667%; }
    .col-lg-offset-4 { margin-left: 33.33333333%; }
    .col-lg-offset-3 { margin-left: 25%; }
    .col-lg-offset-2 { margin-left: 16.66666667%; }
    .col-lg-offset-1 { margin-left: 8.33333333%; }
    .col-lg-offset-0 { margin-left: 0; }
    .visible-lg { display: block !important; }
    table.visible-lg { display: table !important; }
    tr.visible-lg { display: table-row !important; }
    th.visible-lg,
    td.visible-lg { display: table-cell !important; }
    .hidden-lg { display: none !important; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .visible-sm { display: block !important; }
    table.visible-sm { display: table !important; }
    tr.visible-sm { display: table-row !important; }
    th.visible-sm,
    td.visible-sm { display: table-cell !important; }
    .hidden-sm { display: none !important; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .visible-md { display: block !important; }
    table.visible-md { display: table !important; }
    tr.visible-md { display: table-row !important; }
    th.visible-md,
    td.visible-md { display: table-cell !important; }
    .hidden-md { display: none !important; }
}
