﻿:root {
    --primary-color: #0f983b;
    --primary-dark-color: #005700;
    --selected-color: #0f983b;
    --selected-color-sm: #FFBA49;
    --dalo-green: #0f983b;
    --dalo-light-green: #67b556;
    --dalo-dark-green: #005700;
    --dark-text-header: #262641;
    --secondary-brand-color: #4D9DE0;
    --subtle-text: #9797AB;
    --disabled-background: #EFEFEF;
    --error: #F95738;
    --search-btn-disabled-bg: #CACACA;
}

body {
    padding-top: 60px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 60px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.checkbox {
    margin-left: 0px !important;
}

.navbar {
    background: var(--primary-color);
    max-height: 60px;
}

.navbar .container {
    z-index: 999999;
}

.navbar .nav-page-title {
    width: max-content;
    position: relative;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    /* line-height: 30px; */
    color: #FFFFFF;
    margin: 20px auto;
}

/*
    .nav-circle {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 2px solid #FFF;
    background: #FFF;
    margin-top: 7px;
}
*/

.navbar .brand-logo-mini {
    float: left;
    padding: 10px 0px;
}

.navbar .nav-profile {
    float: right;
    padding: 10px 0px;
}

.navbar .navbar-brand .nav-brand-img {
    width: 42px;
    height: auto;
    max-width: 100%;
}

.navbar .nav-profile .nav-profile-img {
    width: 40px;
    height: auto;
    max-width: 100%;
    border-radius: 50%;
}

.navbar-inverse .navbar-text {
    color: #337ab7 !important;
}

.navbar-inverse .navbar-brand {
    color: #00ff21 !important;
}

.navbar-inverse .navbar-brand {
    font-weight: 600;
}

.navbar-inverse .navbar-nav > li > a:focus {
    color: #00a928 !important;
}

.selectedLang {
    color: #3c763d !important;
    font-weight: 800 !important;
}

.nav > li > a {
    padding: 14px 8px !important;
}

/* Bottom navigation bar */
.app-navigation {
    width: 100%;
    height: 56px;
    max-height: 60px;
    position: fixed;
    bottom: 0px;
    background: #F6F6F6;
    border-top: 2px solid #EEEEEE;
    z-index: 0;
}

.bottom-nav {
    display: flex;
    flex-direction: row;
    background-color: #F6F6F6;
    overflow: hidden;
}

.bottom-nav a {
    width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 15px 15px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.bottom-nav-item .bnav-home-img {
    width: 24px;
    height: 24px;
}

.bottom-nav-item .bnav-search-img {
    width: 24px;
    height: 24px;
}

.bottom-nav-item .bnav-profile-img {
    width: 24px;
    height: 24px;
}

.bnav-txt {
    display: none;
    position: absolute;
    bottom: 0px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: var(--primary-color);
    margin: 5px 0 6px 0;
}

.bottom-nav-item.active {
    border: 0;
    border-bottom: 4px solid #3F3F4E;
    /*To show border line spacing at the bottom
            margin-bottom: 4px;
        */
}

.bottom-nav-item.active .bnav-txt {
    display: flex;
}

.bottom-nav-item.active img {
    position: relative;
    top: -10px;
    width: 20px;
    height: 20px;
}