﻿@charset "utf-8";
/* CSS Document */


body {
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

.main-wrapper {
    height: 100%;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.left-sidebar {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    z-index: 10;
    background: #ffffff;
    color: #fff;
    transition: all .2s ease-out;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.3);
    overflow: hidden;
}

    .left-sidebar .logo {
        text-align: center;
        width: 100%;
        line-height: 49px;
        border: #F1F1F1 solid 1px;
    }

        .left-sidebar .logo img.img {
            visibility: visible;
            display: inline-block;
        }

        .left-sidebar .logo img.img-xs {
            visibility: hidden;
            display: none;
        }

    .left-sidebar .menu-bar {
        width: 200px;
    }

        .left-sidebar .menu-bar ul {
            margin: 10px 0px;
            padding: 0px;
        }

            .left-sidebar .menu-bar ul li {
                margin: 0px;
                padding: 0px;
                list-style: none;
                font-size: 15px;
                position: relative;
            }

                .left-sidebar .menu-bar ul li a:after {
                    content: " ";
                    border: solid;
                    border-width: 1px 1px 0px 0;
                    display: inline-block;
                    padding: 3px;
                    -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
                    position: absolute;
                    top: 23px;
                    right: 12px;
                    -webkit-transition: all .1s ease-out;
                    transition: all .1s ease-out
                }


                .left-sidebar .menu-bar ul li a {
                    color: #333;
                    padding: 15px 15px 15px 5px;
                    display: block;
                    text-decoration: none;
                }

                    .left-sidebar .menu-bar ul li a:hover {
                        color: #2A7D99;
                    }

        .left-sidebar .menu-bar .active, .left-sidebar .menu-bar .active:hover {
            background-color: #2A7D99;
            color: #fff;
        }

        .left-sidebar .menu-bar ul li a span.icon {
            width: 32px;
            display: inline-block;
            text-align: center;
        }

        .left-sidebar .menu-bar ul li ul {
            margin: 0px 0 0px;
            padding: 0px 0 0px;
        }

            .left-sidebar .menu-bar ul li ul li {
                margin: 0px;
                padding: 0px;
            }

                .left-sidebar .menu-bar ul li ul li a {
                    margin: 0px;
                    padding: 3px 15px;
                }

                    .left-sidebar .menu-bar ul li ul li a::after {
                        display: none;
                    }

    .left-sidebar.collapsed {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
    }

        .left-sidebar.collapsed .logo {
            overflow: hidden;
            padding-left: 4px;
        }

            .left-sidebar.collapsed .logo img.img {
                visibility: hidden;
                display: none;
            }

            .left-sidebar.collapsed .logo img.img-xs {
                visibility: visible;
                display: inline-block;
            }

        .left-sidebar.collapsed .menu-bar ul li a {
            text-align: left;
            padding-left: 8px;
        }

            .left-sidebar.collapsed .menu-bar ul li a:after {
                display: none;
                visibility: hidden;
            }

            .left-sidebar.collapsed .menu-bar ul li a span.text {
                display: none;
                visibility: hidden;
            }

.page-content {
    margin-left: 0px;
    overflow: hidden;
    padding: 50px 0px 65px;
    min-height: 100vh;
    max-height: 100vh;
    -webkit-transition: all .32s ease-in-out;
    -moz-transition: all .32s ease-in-out;
    -ms-transition: all .32s ease-in-out;
    -o-transition: all .32s ease-in-out;
    transition: all .32s ease-in-out;
    /*min-height: calc(100vh - 90px);*/
    width: 100%;
    z-index: 1000;
}

    .page-content > .main-content {
        overflow: auto;
        width: 100%;
        min-height: 100%;
        min-height: calc(100vh - 147px);
        height: 100%;
        height: calc(100vh - 147px);
        max-height: 100%;
        max-height: calc(100vh - 147px);
        z-index: 1000;
        padding-top: 1em;
        padding-bottom: 1em;
    }

.body-active {
    margin-left: 60px !important;
    -webkit-transition: all .32s ease-in-out;
    -moz-transition: all .32s ease-in-out;
    -ms-transition: all .32s ease-in-out;
    -o-transition: all .32s ease-in-out;
    transition: all .32s ease-in-out;
}

.top-header {
    padding: 8px 20px 10px;
    background-color: #2A7D99;
    box-shadow: 0 0 35px 0 rgba(154,161,171,.15);
    min-height: 50px;
    height: 50px;
    max-height: 50px;
    z-index: 1001;
    margin-top: -50px;
    overflow: hidden;
}

    .top-header .top-left-box {
        float: left;
    }

        .top-header .top-left-box .header-title {
            font-size: 15px;
            font-weight: bold;
            color: #fff;
        }

    .top-header .top-right-box {
        float: right;
    }

        .top-header .top-right-box ul {
            margin: 0px;
            padding: 0px;
        }

            .top-header .top-right-box ul li {
                margin: 0px;
                padding: 0px;
                list-style: none;
                color: #fff;
            }

                .top-header .top-right-box ul li a {
                    padding: 0px 0px 0 0;
                    position: relative;
                    color: #fff;
                    display: inline-block;
                    text-decoration: none;
                    line-height: 36px;
                }

        .top-header .top-right-box .avtaar-img {
            display: inline-block;
            line-height: 32px;
        }

            .top-header .top-right-box .avtaar-img img {
                width: 32px;
                height: 32px;
                border-radius: 50%;
            }

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 20px;
    margin-bottom: 0px;
    list-style: none;
    background-color: #F1F1F1;
    border-radius: 0rem;
    min-height: 45px;
    height: 45px;
    max-height: 45px;
    overflow: hidden;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 10px !important;
    border-bottom: none;
}

.footer, .footer-login {
    border-top: 1px solid rgba(152,166,173,.2);
    padding: 15px 20px 15px;
    color: #767676;
    font-size: 13px;
    background-color: #F1F1F1;
    z-index: 1001;
    position: relative;
    display: block;
}

    .footer a {
        color: #767676;
    }

        .footer a:hover, .footer a:focus, {
            color: #767676;
        }




@media (max-width: 575.98px) {
}


@media (min-width: 576px) and (max-width: 767.98px) {
}


@media (min-width: 768px) and (max-width: 991.98px) {
}


@media (min-width: 992px) and (max-width: 1199.98px) {
}


@media (min-width: 1200px) {
}
