:root {
    --site-navy: #0b1f33;
    --site-navy-soft: #173b5c;
    --site-emerald: #00a67a;
    --site-emerald-dark: #008b68;
    --site-canvas: #f3f6f9;
    --site-surface: #ffffff;
    --site-border: #dce4ec;
    --site-text: #152536;
    --site-muted: #627386;
    --site-radius: 12px;
    --site-shadow: 0 10px 28px rgba(11, 31, 51, .08);
}

body {
    background: var(--site-canvas);
    color: var(--site-text);
}

.header-2 .headerbox {
    border-bottom: 3px solid var(--site-emerald);
    background: var(--site-surface);
    box-shadow: 0 2px 12px rgba(11, 31, 51, .06);
}

.header-2 .mainmenu .sf-menu > li > a,
.header-2 .mainmenu .sf-menu > li.current > a {
    color: var(--site-navy);
    font-weight: 700;
}

.header-2 .mainmenu .sf-menu > li > a:hover,
.header-2 .mainmenu .sf-menu > li.current > a:hover {
    color: var(--site-emerald);
}

.header-2 .mainmenu .sf-menu ul {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    box-shadow: var(--site-shadow);
}

.header-2 .mainmenu .sf-menu ul li {
    background: #fff;
}

.header-2 .mainmenu .sf-menu ul li a {
    color: var(--site-navy);
}

.header-2 .mainmenu .sf-menu ul li a:hover {
    background: #f1fbf7;
    color: var(--site-emerald-dark);
}

.content-info {
    background: var(--site-canvas);
}

.content-info .container {
    position: relative;
}

.panel-box,
.info-panel {
    border-color: var(--site-border);
}

.panel-box {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.panel-box .titles {
    border-bottom: 1px solid var(--site-border);
    background: #fff;
}

.panel-box .titles h4,
.panel-box .titles h3 {
    color: var(--site-navy);
    font-weight: 800;
}

.panel-box .titles:before,
.panel-box .titles:after {
    background: var(--site-emerald);
}

.info-panel {
    background: #fff;
}

.form-theme label,
.content-info label {
    color: var(--site-navy-soft);
    font-weight: 700;
}

.form-control,
.form-theme .form-control,
.content-info select,
.content-info input[type="text"],
.content-info input[type="email"],
.content-info input[type="password"],
.content-info input[type="date"],
.content-info input[type="number"],
.content-info textarea {
    min-height: 42px;
    border: 1px solid #cad6e0;
    border-radius: 7px;
    background: #fff;
    box-shadow: none;
    color: var(--site-text);
}

.content-info textarea {
    min-height: 100px;
}

.form-control:focus,
.content-info select:focus,
.content-info input:focus,
.content-info textarea:focus {
    border-color: var(--site-emerald);
    box-shadow: 0 0 0 3px rgba(0, 166, 122, .14);
}

.btn,
.bnt {
    border-radius: 7px;
    font-weight: 700;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn-primary,
.btn-primary:focus {
    border-color: var(--site-emerald);
    background: var(--site-emerald);
    color: #fff;
}

.btn-primary:hover {
    border-color: var(--site-emerald-dark);
    background: var(--site-emerald-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-default,
.btn-default:focus {
    border-color: #cbd7e1;
    background: #fff;
    color: var(--site-navy-soft);
}

.btn-default:hover {
    border-color: var(--site-navy-soft);
    background: #f7fafc;
    color: var(--site-navy);
}

.table,
.table-striped,
.result-point {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 9px;
    background: #fff;
}

.table thead th,
.point-table-head th {
    border-bottom: 1px solid var(--site-border);
    background: #eef4f7;
    color: var(--site-navy-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
    border-top-color: var(--site-border);
    color: var(--site-text);
    vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(odd) {
    background: #fbfcfd;
}

.section-title {
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .16);
}

.section-title:before {
    background: rgba(11, 31, 51, .7);
}

.section-title h1 {
    font-weight: 800;
}

.clear-title {
    color: var(--site-navy);
    font-weight: 800;
}

.clear-title:after {
    background: var(--site-emerald);
}

.menu-ul-container .list li {
    border-bottom-color: var(--site-border);
}

.menu-ul-container .list li a,
.menu-ul-container .list li i {
    color: var(--site-navy-soft);
}

.menu-ul-container .list li:hover,
.menu-ul-container .list .active-li {
    background: #edfbf6 !important;
}

.menu-ul-container .list .active-li {
    border-left: 3px solid var(--site-emerald);
}

.menu-ul-container .list li:hover a,
.menu-ul-container .list li:hover i,
.menu-ul-container .list .active-li a,
.menu-ul-container .list .active-li i {
    color: var(--site-emerald-dark);
}

.help-block,
.text-muted {
    color: var(--site-muted) !important;
}

#footer,
#footer .top-footer {
    background: var(--site-navy);
    color: #d6e1e9;
}

@media (max-width: 767px) {
    .panel-box {
        border-radius: 9px;
    }

    .table-responsive {
        border: 0;
    }
}
