:root {
    --system-green-950: #082f22;
    --system-green-900: #0d5a3f;
    --system-green-800: #10744f;
    --system-green-700: #159565;
    --system-green-100: #e8f4ee;
    --system-gold: #d6a93b;
    --system-surface: #e8f0ea;
    --system-surface-soft: #dfeae2;
    --system-ink: #263832;
    --system-muted: #687a72;
    --system-line: rgba(15, 63, 47, .13);
}

html,
body,
button,
input,
select,
textarea {
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body:not(.auth-page) {
    min-height: 100vh;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--system-ink);
    background-image:
        radial-gradient(circle at 12% 16%, rgba(214, 169, 59, .08), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(23, 107, 79, .04), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #f8fbf9 100%) !important;
    background-attachment: fixed;
}

body:not(.auth-page) > .container-fluid:first-of-type {
    padding-top: 0;
    padding-right: 12px;
    padding-left: 12px;
}

body:not(.auth-page) > .container-fluid:first-of-type .navbar {
    margin-top: 0;
}

body:not(.auth-page) .container > .navbar.navbar-light.bg-light,
body:not(.auth-page) .container-fluid > .navbar.navbar-light.bg-light {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
    margin-right: calc(50% - 50vw + 12px);
    margin-top: 0;
    margin-bottom: 20px;
}

body:not(.auth-page) .navbar.navbar-light.bg-light {
    position: relative;
    z-index: 5000;
    border-radius: 16px;
}

body:not(.auth-page) .navbar .dropdown,
body:not(.auth-page) .navbar .dropdown-submenu {
    position: relative;
}

body:not(.auth-page) .navbar .dropdown-menu {
    z-index: 6000;
    border-radius: 14px;
}

body:not(.auth-page) .navbar .dropdown-item,
body:not(.auth-page) .navbar.navbar-light .navbar-nav .nav-link {
    border-radius: 12px;
}

body:not(.auth-page) .table,
body:not(.auth-page) form,
body:not(.auth-page) .breadcrumb,
body:not(.auth-page) .informer {
    position: relative;
    z-index: 1;
}

body:not(.auth-page)::before,
body:not(.auth-page)::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

body:not(.auth-page)::before {
    width: 420px;
    height: 420px;
    right: -160px;
    top: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 63, 47, .05), rgba(15, 63, 47, 0) 66%);
}

body:not(.auth-page)::after {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 169, 59, .08), rgba(214, 169, 59, 0) 68%);
}

body:not(.auth-page) h1,
body:not(.auth-page) h2,
body:not(.auth-page) h3,
body:not(.auth-page) h4,
body:not(.auth-page) h5 {
    color: var(--system-green-950);
    font-weight: 650;
}

body:not(.auth-page) h1 {
    margin-top: 24px;
    margin-bottom: 18px;
    font-size: 1.9rem;
}

body:not(.auth-page) .container {
    max-width: 1240px;
    margin-top: 22px;
    margin-bottom: 32px;
    padding: 22px 24px 28px;
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82)),
        linear-gradient(320deg, rgba(23, 107, 79, .025), rgba(214, 169, 59, .025)) !important;
    border: 1px solid rgba(255, 255, 255, .92);
    box-shadow: 0 18px 52px rgba(15, 63, 47, .06);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}

body:not(.auth-page) .container:has(> .navbar.navbar-light.bg-light) {
    max-width: none;
    width: 100%;
    margin-top: 0;
    padding: 0 12px 28px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body:not(.auth-page) .container-fluid {
    background: transparent !important;
}

body:not(.auth-page) body > .container-fluid,
body:not(.auth-page) > .container-fluid {
    padding: 0 12px 26px;
}

body:not(.auth-page) .navbar + h1,
body:not(.auth-page) .navbar + h3 {
    margin-top: 24px;
}

body:not(.auth-page) form,
body:not(.auth-page) .informer,
body:not(.auth-page) fieldset {
    border-radius: 12px;
    background: rgba(255, 255, 255, .90) !important;
    border: 1px solid rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), 0 10px 28px rgba(15, 63, 47, .05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body:not(.auth-page) form,
body:not(.auth-page) .informer {
    padding: 14px;
    margin: 12px 0;
}

body:not(.auth-page) label,
body:not(.auth-page) .form-group .text-right,
body:not(.auth-page) .row > [class*="col-"]:first-child,
body:not(.auth-page) legend {
    color: #34483f;
    font-weight: 600;
}

body:not(.auth-page) .form-control,
body:not(.auth-page) .custom-select {
    min-height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(15, 63, 47, .16);
    background-color: rgba(255, 255, 255, .92);
    color: #34463f;
}

body:not(.auth-page) select.form-control,
body:not(.auth-page) select.custom-select,
body:not(.auth-page) select.form-control option,
body:not(.auth-page) select.custom-select option {
    background-color: rgba(255, 255, 255, .96) !important;
    color: var(--system-ink);
}

body:not(.auth-page) .table td,
body:not(.auth-page) .table tbody th {
    background-color: rgba(255, 255, 255, .82);
}

body:not(.auth-page) .table tbody tr:nth-child(even) td,
body:not(.auth-page) .table tbody tr:nth-child(even) th {
    background-color: rgba(255, 255, 255, .82);
}

body:not(.auth-page) .table td,
body:not(.auth-page) p,
body:not(.auth-page) span,
body:not(.auth-page) a {
    text-shadow: 0 0 .01px rgba(19, 35, 29, .12);
}

body:not(.auth-page) .form-control:focus,
body:not(.auth-page) .custom-select:focus {
    border-color: rgba(23, 107, 79, .48);
    box-shadow: 0 0 0 4px rgba(23, 107, 79, .12);
}

body:not(.auth-page) .btn,
body:not(.auth-page) .page-link {
    border-radius: 10px;
    font-weight: 600;
}

body:not(.auth-page) .btn-primary,
body:not(.auth-page) .page-item.active .page-link {
    color: #fff;
    background: linear-gradient(135deg, var(--system-green-900), var(--system-green-700)) !important;
    border-color: var(--system-green-800) !important;
    box-shadow: 0 10px 22px rgba(15, 63, 47, .18);
}

body:not(.auth-page) .btn-primary:hover,
body:not(.auth-page) .btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--system-green-950), var(--system-green-700)) !important;
}

body:not(.auth-page) .btn-outline-primary {
    color: var(--system-green-800);
    border-color: rgba(23, 107, 79, .44);
    background: rgba(255, 255, 255, .62);
}

body:not(.auth-page) .breadcrumb {
    padding: .55rem .8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .70) !important;
    border: 1px solid rgba(15, 63, 47, .10);
    box-shadow: 0 10px 26px rgba(15, 63, 47, .06);
}

body:not(.auth-page) .table {
    color: var(--system-ink);
}

body:not(.auth-page) .table-sm {
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, .84) !important;
    box-shadow: 0 18px 48px rgba(15, 63, 47, .10);
    border-collapse: separate;
    border-spacing: 0;
}

body:not(.auth-page) .table-sm thead:first-child tr:first-child th:first-child,
body:not(.auth-page) .table-sm tbody:first-child tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

body:not(.auth-page) .table-sm thead:first-child tr:first-child th:last-child,
body:not(.auth-page) .table-sm tbody:first-child tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

body:not(.auth-page) .table-sm tbody:last-child tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

body:not(.auth-page) .table-sm tbody:last-child tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

body:not(.auth-page) .table-bordered,
body:not(.auth-page) .table-bordered td,
body:not(.auth-page) .table-bordered th {
    border-color: rgba(15, 63, 47, .12);
}

body:not(.auth-page) .table th {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--system-green-900), var(--system-green-800)) !important;
    border-color: rgba(255, 255, 255, .14);
    text-align: center;
    vertical-align: middle;
    -webkit-text-fill-color: #ffffff;
}

body:not(.auth-page) .table thead th,
body:not(.auth-page) .table thead th *,
body:not(.auth-page) .table th a,
body:not(.auth-page) .table th span,
body:not(.auth-page) .table th div {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

body:not(.auth-page) .table-sm td {
    vertical-align: middle;
    background-color: rgba(255, 255, 255, .74);
}

body:not(.auth-page) .table form {
    display: inline;
    padding: 0;
    margin: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body:not(.auth-page) .table .status-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    line-height: 1;
}

body:not(.auth-page) .table .status-badge,
body:not(.auth-page) .table .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 7px;
    line-height: 1.1;
    white-space: nowrap;
    vertical-align: middle;
}

body:not(.auth-page) .table .status-date {
    display: inline-block;
    margin-left: 6px;
    white-space: nowrap;
    vertical-align: middle;
}

body:not(.auth-page) .table-sm tr:hover td {
    background-color: rgba(232, 244, 238, .84);
}

body:not(.auth-page) .page-link {
    color: var(--system-green-800);
    border-color: rgba(15, 63, 47, .13);
    background: rgba(255, 255, 255, .74);
}

body:not(.auth-page) .page-link:hover {
    color: var(--system-green-950);
    background: rgba(232, 244, 238, .88);
}

body:not(.auth-page) .alert {
    border-radius: 14px;
    border-width: 1px;
}

body:not(.auth-page) .app-info-alert {
    display: block;
    width: min(100%, 1040px);
    margin: 12px auto;
}


body.tnved-kind-create-page:not(.auth-page) h1,
body.tnved-kind-create-page:not(.auth-page) nav:not(.navbar),
body.tnved-kind-create-page:not(.auth-page) .alert,
body.tnved-kind-create-page:not(.auth-page) form:not(.modal-form) {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

body.tnved-kind-create-page:not(.auth-page) .tnved-code-status {
    min-height: 18px;
    margin-top: 4px;
    font-weight: 650;
}

body:not(.auth-page) .modal-backdrop.show {
    opacity: .44;
}

body:not(.auth-page) .modal {
    z-index: 7000;
}

body:not(.auth-page) .modal-backdrop {
    z-index: 6900;
}

body:not(.auth-page) .modal-dialog {
    position: relative;
    z-index: 7010;
    filter: drop-shadow(0 28px 60px rgba(8, 54, 38, .24));
}

body:not(.auth-page) .modal-content,
body:not(.auth-page) .modal-body-centered {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .86);
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(249, 253, 250, .88));
    box-shadow: 0 26px 80px rgba(15, 63, 47, .18);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

body:not(.auth-page) .modal-header {
    min-height: 58px;
    padding: 15px 18px;
    border-bottom: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .22), transparent 34%),
        linear-gradient(135deg, var(--system-green-900), var(--system-green-700)) !important;
    color: #fff;
}

body:not(.auth-page) .modal-header.bg-warning {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .24), transparent 34%),
        linear-gradient(135deg, #9a6a11, #e0a51c) !important;
}

body:not(.auth-page) .modal-header.bg-danger {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .22), transparent 34%),
        linear-gradient(135deg, #9b1c1c, #e33434) !important;
}

body:not(.auth-page) .modal-title {
    color: #fff !important;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0;
}

body:not(.auth-page) .modal-header .close {
    width: 34px;
    height: 34px;
    margin: -3px -4px -3px auto;
    padding: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .16);
    color: #fff !important;
    opacity: .9;
    text-shadow: none;
    transition: background .18s ease, opacity .18s ease;
}

body:not(.auth-page) .modal-header .close:hover {
    background: rgba(255, 255, 255, .26);
    opacity: 1;
}

body:not(.auth-page) .modal-body {
    padding: 20px 22px;
    color: var(--system-ink);
    font-size: .98rem;
    line-height: 1.5;
}

body:not(.auth-page) .modal-body p {
    margin: 0;
}

body:not(.auth-page) .modal-footer {
    padding: 14px 18px;
    border-top: 1px solid rgba(28, 100, 74, .12);
    background: rgba(241, 250, 245, .58);
}

body:not(.auth-page) .modal-footer .btn,
body:not(.auth-page) .modal .btn-ok {
    min-width: 74px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(18, 112, 77, .18);
}

body:not(.auth-page) .modal-footer .btn-danger {
    box-shadow: 0 12px 26px rgba(195, 38, 38, .18);
}

body:not(.auth-page) tr.table-danger > td,
body:not(.auth-page) tr.table-danger > th,
body:not(.auth-page) .table-danger > td,
body:not(.auth-page) .table-danger > th,
body:not(.auth-page) .table-danger td,
body:not(.auth-page) .table-danger th {
    background-color: #ffc6c6 !important;
    color: #5f1515 !important;
}

body:not(.auth-page) tr.table-danger:hover > td,
body:not(.auth-page) tr.table-danger:hover > th {
    background-color: #ffb3b3 !important;
}

body:not(.auth-page) tr.table-dark-danger > td,
body:not(.auth-page) tr.table-dark-danger > th,
body:not(.auth-page) .table-dark-danger > td,
body:not(.auth-page) .table-dark-danger > th,
body:not(.auth-page) .table-dark-danger td,
body:not(.auth-page) .table-dark-danger th {
    background-color: #e52f3f !important;
    color: #ffffff !important;
    border-color: rgba(126, 14, 24, .34) !important;
}

body:not(.auth-page) tr.table-dark-danger:hover > td,
body:not(.auth-page) tr.table-dark-danger:hover > th {
    background-color: #d51f30 !important;
}
html.info-layout-root body:not(.auth-page) .container,
body.info-layout:not(.auth-page) .container,
html.info-layout-root body:not(.auth-page) .container-fluid,
body.info-layout:not(.auth-page) .container-fluid {
    max-width: 1180px;
}

html.info-layout-root body:not(.auth-page) .container:has(> .navbar.navbar-light.bg-light),
body.info-layout:not(.auth-page) .container:has(> .navbar.navbar-light.bg-light),
html.info-layout-root body:not(.auth-page) .container-fluid:has(> .navbar.navbar-light.bg-light),
body.info-layout:not(.auth-page) .container-fluid:has(> .navbar.navbar-light.bg-light) {
    max-width: none;
}

html.info-layout-root body:not(.auth-page) h1,
body.info-layout:not(.auth-page) h1,
html.info-layout-root body:not(.auth-page) nav:not(.navbar),
body.info-layout:not(.auth-page) nav:not(.navbar),
html.info-layout-root body:not(.auth-page) h3,
body.info-layout:not(.auth-page) h3 {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

html.info-layout-root body:not(.auth-page) .informer,
body.info-layout:not(.auth-page) .informer {
    max-width: 1040px;
    margin: 12px auto;
    padding: 18px 22px;
}

html.info-layout-root body:not(.auth-page) .informer > .row,
body.info-layout:not(.auth-page) .informer > .row {
    align-items: flex-start;
    min-height: 34px;
    margin-right: 0;
    margin-left: 0;
    padding: 7px 0;
    border-bottom: 1px solid rgba(15, 63, 47, .07);
}

html.info-layout-root body:not(.auth-page) .informer > .row:last-child,
body.info-layout:not(.auth-page) .informer > .row:last-child {
    border-bottom: 0;
}

html.info-layout-root body:not(.auth-page) .informer > .row > [class*="col-md-4"],
body.info-layout:not(.auth-page) .informer > .row > [class*="col-md-4"] {
    max-width: 34%;
    flex: 0 0 34%;
    padding-right: 18px;
    color: var(--system-muted);
    font-weight: 650;
    line-height: 1.35;
    text-align: right !important;
}

html.info-layout-root body:not(.auth-page) .informer > .row > [class*="col-md-8"],
body.info-layout:not(.auth-page) .informer > .row > [class*="col-md-8"] {
    max-width: 66%;
    flex: 0 0 66%;
    color: var(--system-ink);
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: anywhere;
}

html.info-layout-root body:not(.auth-page) .informer .font-weight-bold,
body.info-layout:not(.auth-page) .informer .font-weight-bold {
    font-weight: 750 !important;
}

html.info-layout-root body:not(.auth-page) .table,
body.info-layout:not(.auth-page) .table {
    width: min(100%, 1180px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    html.info-layout-root body:not(.auth-page) .informer,
    body.info-layout:not(.auth-page) .informer {
        padding: 14px;
    }

    html.info-layout-root body:not(.auth-page) .informer > .row > [class*="col-md-4"],
    body.info-layout:not(.auth-page) .informer > .row > [class*="col-md-4"],
    html.info-layout-root body:not(.auth-page) .informer > .row > [class*="col-md-8"],
    body.info-layout:not(.auth-page) .informer > .row > [class*="col-md-8"] {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: left !important;
        padding-right: 0;
    }
}

html.form-layout-root body:not(.auth-page) .container,
body.form-layout:not(.auth-page) .container,
html.form-layout-root body:not(.auth-page) .container-fluid,
body.form-layout:not(.auth-page) .container-fluid {
    max-width: 1240px;
}

html.form-layout-root body:not(.auth-page) .container:has(> .navbar.navbar-light.bg-light),
body.form-layout:not(.auth-page) .container:has(> .navbar.navbar-light.bg-light),
html.form-layout-root body:not(.auth-page) .container-fluid:has(> .navbar.navbar-light.bg-light),
body.form-layout:not(.auth-page) .container-fluid:has(> .navbar.navbar-light.bg-light) {
    max-width: none;
}

html.form-layout-root body:not(.auth-page) h1,
body.form-layout:not(.auth-page) h1,
html.form-layout-root body:not(.auth-page) nav:not(.navbar),
body.form-layout:not(.auth-page) nav:not(.navbar) {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

html.form-layout-root body:not(.auth-page) form:not(.modal-form),
body.form-layout:not(.auth-page) form:not(.modal-form) {
    max-width: 1120px;
    margin: 12px auto;
    padding: 18px 22px;
}

html.form-layout-root body:not(.auth-page) form > .row,
body.form-layout:not(.auth-page) form > .row,
html.form-layout-root body:not(.auth-page) form .form-group.row,
body.form-layout:not(.auth-page) form .form-group.row {
    align-items: center;
    margin-right: 0;
    margin-left: 0;
}

html.form-layout-root body:not(.auth-page) form > .row + .row,
body.form-layout:not(.auth-page) form > .row + .row,
html.form-layout-root body:not(.auth-page) form .form-group.row + .form-group.row,
body.form-layout:not(.auth-page) form .form-group.row + .form-group.row {
    margin-top: 6px;
}

html.form-layout-root body:not(.auth-page) form [class*="col-md-"][class*="text-right"],
body.form-layout:not(.auth-page) form [class*="col-md-"][class*="text-right"] {
    color: var(--system-muted);
    font-weight: 650;
    line-height: 1.35;
}

html.form-layout-root body:not(.auth-page) fieldset,
body.form-layout:not(.auth-page) fieldset {
    max-width: 100%;
    margin: 14px 0;
    padding: 16px 18px 12px;
    border-radius: 14px;
}

html.form-layout-root body:not(.auth-page) fieldset fieldset,
body.form-layout:not(.auth-page) fieldset fieldset {
    margin: 10px 0;
    background: rgba(255, 255, 255, .48) !important;
}

html.form-layout-root body:not(.auth-page) legend,
body.form-layout:not(.auth-page) legend {
    padding: 0 10px;
    color: var(--system-green-900);
    font-size: .86rem;
    font-weight: 800;
}

html.form-layout-root body:not(.auth-page) form .table,
body.form-layout:not(.auth-page) form .table {
    width: 100%;
    max-width: 100%;
}

html.form-layout-root body:not(.auth-page) form .btn,
body.form-layout:not(.auth-page) form .btn {
    margin-top: 2px;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    html.form-layout-root body:not(.auth-page) form:not(.modal-form),
    body.form-layout:not(.auth-page) form:not(.modal-form) {
        padding: 14px;
    }

    html.form-layout-root body:not(.auth-page) form [class*="text-right"],
    body.form-layout:not(.auth-page) form [class*="text-right"] {
        text-align: left !important;
        margin-bottom: 4px;
    }
}

/* Firefox 2022 modal fix */

body:not(.auth-page) .modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9000 !important;
}

body:not(.auth-page) .modal.show {
    display: block !important;
}

body:not(.auth-page) .modal-dialog {
    position: relative !important;
    z-index: 9010 !important;
    transform: none !important;
}

body:not(.auth-page) .modal-content {
    z-index: 9020 !important;
}

body:not(.auth-page) .modal-backdrop {
    z-index: 8900 !important;
}

@-moz-document url-prefix() {
    html,
    body,
    button,
    input,
    select,
    textarea {
        text-rendering: optimizeLegibility;
        font-synthesis-weight: none;
    }

    body:not(.auth-page) {
        font-family: "Segoe UI", Arial, sans-serif;
        font-weight: 400;
        color: #34463f;
        background-image:
            radial-gradient(circle at 12% 16%, rgba(214, 169, 59, .08), transparent 28%),
            radial-gradient(circle at 88% 20%, rgba(23, 107, 79, .04), transparent 30%),
            linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #f8fbf9 100%) !important;
    }

    body:not(.auth-page) h1,
    body:not(.auth-page) h2,
    body:not(.auth-page) h3,
    body:not(.auth-page) h4,
    body:not(.auth-page) h5 {
        font-weight: 600;
        color: #18382d;
    }

    body:not(.auth-page) label,
    body:not(.auth-page) .form-group .text-right,
    body:not(.auth-page) .row > [class*="col-"]:first-child,
    body:not(.auth-page) legend,
    body:not(.auth-page) .btn,
    body:not(.auth-page) .page-link,
    body:not(.auth-page) .table th,
    body:not(.auth-page) .font-weight-bold {
        color: #31483f;
        font-weight: 550 !important;
    }

    html.info-layout-root body:not(.auth-page) .informer [class*="col-md-4"],
    body.info-layout:not(.auth-page) .informer [class*="col-md-4"],
    html.form-layout-root body:not(.auth-page) form [class*="col-md-"][class*="text-right"],
    body.form-layout:not(.auth-page) form [class*="col-md-"][class*="text-right"] {
        color: #53665e;
        font-weight: 450 !important;
    }

    body:not(.auth-page) .table td,
    body:not(.auth-page) .form-control,
    body:not(.auth-page) .custom-select,
    body:not(.auth-page) .breadcrumb,
    body:not(.auth-page) .informer {
        font-weight: 400;
    }

    body:not(.auth-page) .container {
        background:
            linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82)),
            linear-gradient(320deg, rgba(23, 107, 79, .025), rgba(214, 169, 59, .025)) !important;
        border-color: rgba(255, 255, 255, .92);
        box-shadow: 0 18px 52px rgba(15, 63, 47, .06);
    }

    body:not(.auth-page) form,
    body:not(.auth-page) .informer,
    body:not(.auth-page) fieldset,
    body:not(.auth-page) .breadcrumb {
        background: rgba(255, 255, 255, .90) !important;
        border-color: rgba(255, 255, 255, .92) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), 0 10px 28px rgba(15, 63, 47, .05);
    }

    body:not(.auth-page) .form-control,
    body:not(.auth-page) .custom-select,
    body:not(.auth-page) select.form-control,
    body:not(.auth-page) select.custom-select,
    body:not(.auth-page) select.form-control option,
    body:not(.auth-page) select.custom-select option {
        background-color: rgba(255, 255, 255, .96) !important;
        border-color: rgba(40, 78, 64, .18);
        color: #34463f;
    }

    body:not(.auth-page) .table-sm {
        background-color: rgba(255, 255, 255, .84) !important;
        box-shadow: 0 18px 48px rgba(15, 63, 47, .10);
    }

    body:not(.auth-page) .table td,
    body:not(.auth-page) .table tbody th {
        background-color: rgba(255, 255, 255, .82);
    }

    body:not(.auth-page) .table tbody tr:nth-child(even) td,
    body:not(.auth-page) .table tbody tr:nth-child(even) th {
        background-color: rgba(255, 255, 255, .82);
    }

    body:not(.auth-page) .table thead th {
        background: #0f6648 !important;
        color: #f0f6f2;
    }

    body:not(.auth-page) .btn-primary,
    body:not(.auth-page) .page-item.active .page-link {
        color: #ffffff !important;
        background: linear-gradient(135deg, #0f684a, #15865d) !important;
        border-color: #126c4d !important;
        box-shadow: 0 8px 18px rgba(15, 63, 47, .13);
    }

    body:not(.auth-page) .table td,
    body:not(.auth-page) p,
    body:not(.auth-page) span,
    body:not(.auth-page) a {
        text-shadow: 0 0 .01px rgba(19, 35, 29, .14);
    }
}
