html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-top: 80px;
    padding-top: 7px;
}

.company-logo {
    height: 80px;
}

.wrapper {
    min-height: 100%;
    display: flex;
}

.navbar {
    z-index: 1041;
}

.navbar-expand-md {
    height: 80px;
}

.sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    width: 250px;
    overflow-y: auto;
    z-index: 1040;
}

.main-content {
    margin-left: 250px;
}

.footer-content {
    margin-left: 250px;
}

@media (max-width: 767.98px) {
    body {
        margin-top: 56px;
    }

    .main-content {
        margin-left: 0;
    }

    .footer-content {
        margin-left: 0;
    }

    .navbar-expand-md {
        height: 56px;
    }

    .company-logo {
        height: 48px;
    }
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--bs-primary-light-2);
    border-color: var(--bs-primary-light-2);
}

.nav-pills .nav-link.active {
    background-color: var(--bs-primary);
    color: var(--bs-primary-light-5);
}

.nav-pills .nav-link:hover {
    background-color: var(--bs-primary-light-2);
    color: var(--bs-primary-light-5);
}

.data-table table {
    border-collapse: collapse;
    width: 100%;
}

.data-table th,
.data-table td {
    padding: 8px;
    text-align: left;
}

.data-table th.numeric,
.data-table td.numeric {
    text-align: right !important;
}

input[type=date].date-placeholder::placeholder {
    opacity: .6;
}

input[type=date].date-placeholder:not(:focus):not(.has-value)::-webkit-datetime-edit {
    opacity: .6;
}

input[type=date].date-placeholder:focus::-webkit-datetime-edit,
input[type=date].date-placeholder.has-value::-webkit-datetime-edit {
    opacity: 1;
}