﻿/* HTML
--------------------------------------------------------------- */

html, body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.428;
    height: 100% !important;
    font-size: 14px;
}

/* Bootstrap
--------------------------------------------------------------- */

.btn {
    letter-spacing: .025rem;
}

.card {
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
}

.layout-header__title .navbar-toggler {
    font-size: 1.25rem;
    line-height: 1;
    border-radius: .25rem;
    border-color: rgb(255, 255, 255);
    cursor: pointer;
    min-height: 32px;
    min-width: 32px;
}

.layout-header__title .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgb( 255, 255, 255)' stroke-width='3.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.3em;
}

/* Shared Styles
--------------------------------------------------------------- */

.shared-cursor-pointer {
    cursor: pointer;
}

/* Layout
--------------------------------------------------------------- */

.layout-container {
    min-width: 1200px;
    padding: 0 0;
}

.layout-header__login-language-bar {
    background-color: #6b6b53;
}

.layout-header__title {
    background-color: #266b21;
    border-bottom: 4px solid #175013;
    padding: .5rem 0;
}

    .layout-header__title h1 a {
        color: #fff;
    }

.layout-header__logo {
    color: #174ea6;
    color: #333;
    letter-spacing: .01rem;
    margin-bottom: 0;
    padding-left: 1.25rem !important;
}

    .layout-header__logo a:hover {
        color: #fff !important;
    }

.layout-sidebar__nav {
    padding-top: 20px;
    overflow-y: auto;
    width: 240px;
    max-width: 240px;
    min-height: calc(100vh - 94px);
    height: calc(100vh - 94px);
    padding-bottom: 48px;
}

.layout-sidebar__nav-container {
    position: fixed;
    width: 240px;
    top: 0;
    left: 0;
    transition: all 0.3s;
    box-shadow: inset 0px 0 0 rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(6, 33, 45, 0.05);
    background-color: #f1f1f1;
    margin-left: 0;
    z-index: 1;
}

.layout-sidebar__nav-container--active {
    width: 240px !important;
    margin-left: 0 !important;
}

.layout-sidebar__nav-conatiner-toggler-dismiss {
    height: 94px;
    width: 100%;
}

.navbar-toggler.layout-sidebar__nav-toggler-dismiss {
    font-size: 1.1rem;
    line-height: 1;
    border-radius: .25rem;
    border-color: rgb(0, 0, 0);
    cursor: pointer;
    max-width: 40px;
    max-height: 36px;
}

    .navbar-toggler.layout-sidebar__nav-toggler-dismiss span {
        width: 30px;
        height: 26px;
        padding: .2em 0;
        display: block;
    }

@media (max-width: 991.98px) {

    .layout-sidebar__nav-container {
        margin-left: -240px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .layout-sidebar__nav-container--active {
        margin-left: 0 !important;
    }
}

.layout-sidebar__nav-list li a {
    padding: 8px 8px;
    font-size: 1em;
    display: block;
    color: #333;
    cursor: pointer !important;
}

    .layout-sidebar__nav-list li a.dropdown-toggle::after {
        float: right;
        margin-top: 10px !important;
    }

.layout-sidebar__nav-list li.active > a, a[aria-expanded="true"] {
    text-decoration: none;
}

.layout-sidebar__nav-list li a:hover {
    background: #f8f8f8;
    text-decoration: none;
}

.layout-sidebar__nav-list li a.active {
    color: #266b21
}

.layout-sidebar__nav-list li ul li a {
    font-size: 0.9em;
    padding-left: 16px;
    text-decoration: none;
}

    .layout-sidebar__nav-list li ul li a.active {
        color: #000;
        text-decoration: underline;
    }

    .layout-sidebar__nav-list li ul li a:hover {
        text-decoration: underline;
    }

.layout-main-container {
    min-height: calc(100vh - 61px);
}

.layout-with-sidebar .layout-main-container {
    width: calc(100% - 240px);
    transition: all 0.3s;
    position: relative;
    top: 0;
    right: 0;
    margin-left: 240px;
}

@media (max-width: 991.98px) {

    .layout-with-sidebar .layout-main-container {
        width: 100%;
        position: relative;
        margin-left: 0px;
    }
}

.layout-with-sidebar .layout-footer__container {
    left: auto !important;
    right: auto !important;
    margin-left: 240px;
    width: calc(100% - 240px);
    height: 61px;
}

.layout-footer-card-help {
    background-color: #f1f1f1
}

.layout-footer-card-help__title-blue {
    color: #3c91e6
}

.layout-footer__copy {
    background-color: #dfdfdf;
    color: #494a55;
}

    .layout-footer__copy a {
        color: #494a55;
    }

.layout-loader {
    position: fixed;
    z-index: 999999;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.layout-loader-content {
    margin: auto;
    text-align: center;
    display: flex;
    align-content: center;
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.layout-loader-in_div {
    display: block;
    position: absolute;
    z-index: 999999;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    background: rgba(255,255,255, 0.7);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.layout-loader-in_div-content {
    margin: auto;
    text-align: center;
    display: flex;
    align-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}



#AddTextModal > .modal-dialog {
    width: 94% !important;
    max-width: 900px;
}

#EditTextModal > .modal-dialog {
    width: 94% !important;
    max-width: 900px;
}

.note-popover.popover {
    z-index: 10052 !important;
}

.note-tooltip {
    z-index: 999999999999999999999 !important;
    display: block !important
}

.note-editor.note-frame .note-btn.dropdown-toggle::after {
    display: none
}

.balc-btn-edit-content {
    min-width: 40px;
    min-height: 40px;
}
