﻿:root {
    --primary: #cdf3db;
    --secondary: #8FBF88;
    --tertiary: #42593C;
    --background-color: #f1f0f0;
    --hover-color: #e7e4e4;
    --text-color-light: #ffffff;
    --text-color-dark: #0D0D0D;
    --on-hover-color: #111111;
    --error-color: #ba1a1a;
    --on-primary: #111111;
    --on-secondary: #ffffff;
    --on-error: #ffffff;
    --on-background: #191c1a;
    --outline: #707973;
}

* {
    font-family: 'Inter', sans-serif;
}

.loader {
    display: none;
}

html, body {
    height: 100%;
}

body {
    background-color: #fdfafa;
    color: var(--on-background);
    min-height: 100vh;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%
}

.w-45 {
    width: 40%
}

.w-15 {
    width: 50%;
}

.fs-15
{
    font-size: 15px;
}

.align-right {
    text-align: right;
}
.highlight-style {
    padding: 10px;
}
.highlight-style:hover {
    background: rgba(232, 230, 230, 0.85);
    font-weight: bold;
    border-radius: 10px;

/*    color: #ffffff;*/
}

footer {
    padding: 20px;
    font-size: 14px;
    bottom: 0;
    vertical-align: middle;
}

i.mat {
    vertical-align: middle;
    padding-right: 5px;
}

.action-span {
    vertical-align: middle;
}

.breadcrumb-btn {
    font-size: 18px;
    font-weight: bold;
}

.disabled {
    pointer-events: none;
    font-weight: bold;
    font-size: 18px;
    cursor: default;
    border: none;
}

.breadcrumb-btn:hover {
    background: var(--hover-color);
}

.required:after {
    content: " *";
    color: #ba1a1a;
}

h1,
h2,
h3,
h4,
h5,
header,
h6 {
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

.app-logo {
    width: 96px;
}

.app-logo-nav {
    width: 32px;
}

.app-name {
    color: var(--tertiary);
    font-size: 18px;
}

label {
    font-size: 14px;
}

hr {
    margin-top: 0;
    padding-top: 16px;
}

.topNav .navAction {
    font-size: 24px;
}

.app-btn-primary {
    background: var(--secondary);
    color: var(--on-secondary);
}

    .app-btn-primary:hover {
        background: var(--tertiary);
        color: var(--text-color-light);
    }

.app-span-link {
    color: var(--secondary);
    text-decoration: none;
}

    .app-span-link:hover {
        color: var(--tertiary);
        text-decoration: underline;
    }

.btn {
    border-radius: 10px;
    padding: 10px;
}

.csr-pointer {
    cursor: pointer;
}

input.form-control {
    border-radius: 10px;
}

input, .btn:focus {
    outline: none;
}

.input-error {
    font-size: 12px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}


/* remove border from the calculated input fields */
.no-border {
    background-color: transparent;
    border: 0;
    outline: 0;
}

.no-border:focus{
    outline: none !important;
}


/*.loggedInUser
{
    font-size: 15px;
}*/

.separator {
    padding-top: 4px;
    background: linear-gradient(90deg, #0700b8 0%, #00ff88 100%);
}

.nav-tabs {
    border-bottom: 1px solid #f6f6f7;
}

    .nav-tabs .nav-link {
        background: #f9f7f7;
        min-width: 150px;
        margin-right: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        color: #928e8e;
    }

        .nav-tabs .nav-link.active {
            color: var(--tertiary);
            font-weight: bold;
        }

.form-section-title {
    background: #f3f3f3;
}

.form-section-title-icon {
    width: 32px;
}

.notification-action
{
    font-size: 24px;
    color: var(--outline);
}


/* Freeze first column of the HTML table */
th:first-child, td:first-child {
    position: sticky;
    left: 0px;
    background-color: #fff !important;
}

thead {
    position: sticky;
    top: 0;
    background-color: #fff !important;
}


/* Back to top button */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}