﻿
:root {
    --gray-light: #EAECF0;
    --primary-color: #2A75C0;
    --color-primary-hover: #2669ad;
    --secondary-color: #575757;
}
/*Open Sans – 400 Regular*/
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*Open Sans – 400 Italic*/
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/*Open Sans – 500 Medium*/
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*Open Sans – 600 SemiBold*/
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*Open Sans – 700 Bold*/
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



body {
    font-family: "Open Sans", sans-serif !important;
    font-size: 14px !important;
    color: var(--secondary-color);
    line-height: 1.5 !important;
    background: #f3f8fc;
}

ul.dropdown-menu {
    font-size: inherit !important;
}

label {
    font-weight: 400;
    margin-bottom: 0;
}
.content-wrapper{
    overflow-x:hidden;
    overflow-y:auto;
}

table.dataTable tbody tr.row-highlighter {
    background-color: #b3e6fa !important;
}

.content-wrapper {
    padding-bottom: 15px;
}


.main-header {
    z-index: 10;
}

    .main-header .navbar {
        margin-left: 0;
    }


#btn-page-search, .user-dropdown-toggle, .btn-zoom{
    cursor: pointer;
    width: 32px;
    border:none;
    height: 32px;
    background-color: var(--gray-light);
    padding: 4px;
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

    #btn-page-search:hover, .user-dropdown-toggle:hover,.btn-zoom:hover {
        color: var(--color-primary-hover);
    }

#input-page-search {
    position: relative;
}

    #input-page-search .form-control {
        padding-right: 28px;
    }

    #input-page-search .input-search-icon {
        position: absolute;
        top: 50%;
        right: 0;
        display: block;
        line-height: 24px;
        height: 24px;
        width: 24px;
        transform: translateY(-50%);
        pointer-events: none;
    }

.user-menu .dropdown-menu {
    padding: 8px;
    background-color: #cceefc
}

.navbar-nav > .user-menu .user-image {
    margin-right: 0;
}

.user-footer {
    display: flex;
    gap: 12px;
}



/*new css properties and for top section of nav*/
.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-menu .user-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


/*css for our blue theme buttons*/
.btn-custom {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    padding: 5px 10px;
    min-height: 30px;
    border-width: 1px;
    border-style: solid;
    transition: background 0.3s ease-in-out,box-shadow 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-custom-primary {
    background: #2A75C0;
    border-color: #2669ad;
    color: #fff;
}

    .btn-custom-primary:hover, .btn-custom-primary:active {
        background: #225e9a;
        border-color: #1d5286;
        color: #fff;
        text-decoration: none;
    }

.system-main-footer {
    padding: 6px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height:34px;
    z-index: 42;
    background-color:#fff;
    border-top: 1px solid #d2d6de;
    height:34px;
}

.system-footer-row > .footer-left-part {
    display: none;
}

.system-main-footer span {
    font-weight: 600;
}
.footer-center span {
    color: #1e7e34;
    padding:0 4px;
}
.system-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 767px) {
    .system-footer-row > .footer-left-part {
        display: block;
    }


}
