html, body {
    height: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
}

body .is-not-visible .imagepanel {
    opacity: 30%;
}

body .is-not-visible .headerpanel .caption {
    opacity: 30%;
}


body form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

html body .dx-widget,
body form .dx-widget input {
    font-family: 'Roboto Condensed', sans-serif;
}

/* MAIN PAGES STYLES */
body .container-fluid {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body #header {
    border-bottom: 1px solid #dee2e6;
}

body #content {
    margin-top: 20px;
    flex: 1;
}

body #footer {
    background-color: #2859a6;
    color: #ffffff ;
    height: 40px;
    margin-top: 20px;
    padding: 5px;
    text-align: center;

}

#header .widget-menubar {
    background-color: rgb(246, 246, 246);
}

#header .topsection {
    background-color: #2859a6;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#header .topsection .logo {
    margin-top: -20px; /* reduces the spacing of the logo in the header */
}

.page {
    margin-left: 20px;
    margin-right: 20px;
}

.btn {
    margin-right: 5px;
    font-size: 12px;
}

/* COPIED SO CHECK IF WE STILL NEED THIS */

/* HEADER STYLES */


#header .topsection .widget-userdetails {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items:flex-end;
    width: 300px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.widget-userinfo {
    font-size: 14px;
}
.widget-userinfo .username {
    font-weight: bold;
}


/* STYLES FOOTER */




/* PAGE CONTAINER WITH LEFT SIDE BAR */
.page-left-sidebar {
    display: flex;
    flex: 1;
    flex-direction: row;
    margin: 10px;
}

.page-left-sidebar .sidebar {
    min-width: 300px;
    margin-right: 10px;
}

.page-left-sidebar .content {
    flex: 1;
    max-width: 100%;
}

.badge-flextender {
    background-color: rgb(15, 90, 133);
    color: white;
    font-size: 12px;
}

.message-panel {
    font-size: 12px;
    /* padding: 5px; */
    margin: 5px;
}


/* WD SECTION TITLE */
.wd-section-title {
    font-size: 18px;
    line-height: 28px;
    color: #4c6280;
    padding-bottom: 15px;
    border-bottom: 1px solid #ceddf2;
    position: relative;
}

.wd-section-title::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 64px;
    background: #38e0c4;
    bottom: 0;
}


