/* variables */
@import url("app-style-vars.css");

html, body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: "Noto Sans", arial, sans-serif;
    font-size: 13px;
    line-height: 1.1;
}

.app-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* colors */
.app-bg-brand-blue {
    background-color: var(--app-brand-color);
}

.app-bg-brand-blue-light {
    background-color: var(--app-brand-light-color);
}

.app-text-brand-blue {
    color: var(--app-brand-color);
}

.app-text-brand-blue-light {
    color: var(--app-brand-light-color);
}

/* end colors */

/* text size */
.app-fs-1 {
    font-size: 24px;
}

.app-fs-4 {
    font-size: 18px;
}

.app-fs-5 {
    font-size: 16px;
}

.app-fs-6 {
    font-size: 8px;
}

/* end text size */

/* dialogs */
.app-dialog-md {
    width: 400px !important;
}

.app-dialog-lg {
    width: 800px !important;
}

/* end dialogs */

/* widths, paddings, margins */
.app-ps30px {
    padding-left: 30px;
}

/* end widths, paddings, margins */

/* sidebar */
.app-sidebar {
    width: 230px;
    height: 100vh;
    background-color: var(--app-brand-color) !important;
    border-right: 2px solid #CDD8EC;
    white-space: nowrap;
    flex-shrink: 0;
}

.app-sidebar-offcanvas {
    overflow: auto;
}

.app-sidebar-offcanvas .offcanvas-body {
    flex-direction: column;
    padding-bottom: 40px;
}

.app-sidebar-header {
    width: 100%;
    /*height: 115px;*/
    padding: 20px 12px;
    background: #FEFEFE;
    color: #6691C4;
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
    border-bottom: 3px solid #c80000;
}

.app-sidebar-menu {
    padding-top: 15px;
}

.app-sidebar-menu > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.app-sidebar-menu > ul > li {
    margin: 0;
    padding: 0;
}

.app-sidebar-menu > ul > li > a {
    display: flex;
    align-items: center;
    margin-right: 5px;
    padding: 8px 16px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    gap: 10px;
    white-space: normal;
    overflow: hidden;
}

.app-sidebar-menu > ul > li.active > a {
    background-color: #ffffff;
    color: #215CA1;
}

.app-sidebar-menu > ul > li:not(.active) > a:hover {
    background-color: var(--app-brand-light-color);
    transition: 0.8s;
}

.app-sidebar-menu > ul > li > a > i {
    font-size: 22px;
    line-height: 22px;
}

.app-sidebar-menu > ul > li.inactive > a {
    color: #8095b6 !important;
}

.app-sidebar-menu > ul > li.inactive > a:hover {
    background-color: transparent !important;
}

/* end sidebar */

/* main content */
.app-main-content-container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
}

.app-mobile-branding {
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #c80000;
    padding: 4px;
}

.app-page-header {
    display: flex;
    flex-grow: 0;
    padding: 10px 15px;
    border-bottom: 3px solid #CDD8EC;
    background-color: #FFFFFF;
}

.app-page-title {
    flex-grow: 1;
}

.app-page-actions {
    display: flex;
    align-items: center;
}

.app-page-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 15px;
    background-color: #F8FAFD;
}

.app-page-header-submenu {
    margin-top: -1px;
}

.app-page-header-submenu ul {
    margin: -3px 0 0 0;
    padding: 0;
    list-style-type: none;
}

.app-page-header-submenu ul > li {
    float: left;
}

.app-page-header-submenu ul > li > a {
    display: block;
    padding: 9px 15px 5px 15px;
    text-decoration: none;
    color: #005AA9;
    font-weight: 500;
}

.app-page-header-submenu ul > li:first-child > a {
    /*padding-left: 0 !important;
    border-right: 3px solid #CDD8EC;
    margin-right: 15px;*/
}

.app-page-header-submenu ul > li:first-child > a.app-index-link {
    padding-left: 0 !important;
    border-right: 3px solid #CDD8EC;
    margin-right: 15px;
}

.app-page-header-submenu ul > li > a:hover {
    text-decoration: none;
}

.app-page-header-submenu ul > li > a.active {
    border-top: 3px solid #005A9C;
    font-weight: 600;
    font-size: 15px;
    padding-top: 5px;
}

.app-directory-page-filter {
    display: flex;
    flex-wrap: wrap;
}

.app-directory-page-filter .form-control,
.app-directory-page-filter .form-select {
    margin-bottom: 10px !important;
}

.app-btn-show-more-filter-options {
    font-weight: 500;
    text-decoration: none;
    color: #394C5B;
}

.app-btn-show-more-filter-options:hover {
    color: #394C5B;
}

.app-directory-page-grid-toolbar {
    display: flex;
    margin-top: 15px;
}

.app-directory-page-grid-toolbar-filter {
    display: flex;
    align-items: flex-end;
}

.app-directory-page-grid-toolbar-actions {
    display: flex;
    align-items: flex-end;
}

.app-btn-badge {
    color: #394C5B;
    background-color: #EDF2FD !important;
    border-color: #EDF2FD !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

.app-btn-badge:hover,
.app-btn-badge:focus {
    color: #394C5B;
    background-color: #EDF2FD !important;
    border-color: #EDF2FD !important;
}

.app-btn-badge.active {
    background-color: #CDD8EC !important;
}

.app-btn-badge .badge {
    background-color: #005A9C !important;
    font-size: 11px !important;
}

.app-directory-page-grid {
    display: flex;
    flex-grow: 1;
}

.app-module-links {
    display: flex;
}

.app-module-link {
    border-radius: 12px;
    width: 184px;
    height: 64px;
    padding: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    /*background-color: #FFFFFF;*/
    background-color: #E0E7FF;
    overflow: hidden;
    display: flex;
    color: var(--app-text-dark);
    /*border: 1px solid #e0e0e0;*/
    border: 2px solid #464FEB;
    line-height: 20px;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    text-decoration: none;
}

.app-module-link:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.14);
    text-decoration: none;
    border: none;
}

.app-module-link > i {
    margin-right: 12px;
    font-size: 24px;
}

.app-export-category-card {
    height: 300px !important;
}

.app-export-category-card .card-header .form-check-label {
    font-weight: bold;
    font-size: 15px;
    margin-top: 2px;
}

.app-export-category-card .card-body {
    overflow-y: auto;
}

/* end main content */

/* app loader */
.app-loader-dialog {
    /*top: 0 !important;*/
    width: 100% !important;
    height: 100% !important;
    z-index: 1500 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.app-loader-dialog .ui-dialog-content {
    height: 100% !important;
    background: transparent !important;
    border: none !important;
}

.app-loader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-loader img {
    height: 60px;
}

/* end app loader */

/* auth */
.app-login-background {
    background-image: url("../img/world.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 460px;
}

.app-login-background-overlay {
    background-color: rgba(27, 84, 154, 0.9);
    width: 100%;
    height: 100%;
}

.app-login-container {
    width: 100%;
    height: 100%;
}

.app-login-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.app-login-form {
    width: 320px;
    padding: 36px;
    background-color: #ffffff;
    border-radius: 5px;
}

.app-login-form-brand-name {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.app-login-form-app-name {
    font-size: 15px;
    font-weight: 500;
    color: #3D6FAB;
}

.app-login-sidebar {
    height: 100%;
    max-width: 372px;
    padding: 10px;
}

.app-login-sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 40px;
    background: #ffffff;
    border-radius: 5px;
    overflow: auto;
}

.app-login-sidebar-logo {
    height: 150px;
}

.app-login-powered-by {
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
}

.app-login-partner-logo > div > img {
    display: block;
    width: 190px;
    margin: 20px auto 0;
}

.app-login-partner-logo > div.app-partner-logo {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.app-login-partner-logo > div.app-partner-logo > img {
    width: auto;
    height: 40px;
    margin: 0 5px 5px 0 !important;
}

/* end auth */

/* media queries */
@media (max-width: 520px) {
    .app-dialog-md, .app-dialog-lg {
        width: 98vw !important;
    }
}

/* end media queries */