﻿body {
    background-color: #b7d7e8;
    margin: 0px;
    padding: 0px;
    font-family: "Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 12px;
    overflow: auto;
}

h6 {
    font-weight: bold;
    text-align: center;
    padding: 3px;
}


.disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}

.wrapper {
    background: linear-gradient(100deg,#146EB4, #7EC0F2);
}

.container {
    position: relative;
    margin-top: 70px;
}

a.ui-selectmenu:hover {
    height: 100%;
    font-size: 8px;
    width: 90%;
    text-decoration: none;
}

.minitable {
    width: 100%;
    max-height: 200px;
    overflow: auto;
}

    .minitable th, .minitable td {
        border: 0.5px solid black;
        padding: 3px;
    }

.fldcap {
    width: 150px;
}

.table th {
    background-color: #87bdd8;
    color: White;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
}

.collegend {
    display: block;
    width: 10px;
    margin-right: 80px;
    height: 10px;
    float: left;
}

    .collegend span {
        display: block;
        width: 100%;
        margin-left: 8px;
        margin-top: -8px;
        padding: 5px;
        float: left;
    }


/***********SIDE FLOATING MENU - STARTS*********************/
.usermenu, .floatmenu {
    position: fixed;
    display: block;
    border: none;
    background-color: White;
    border-radius: 0px 4px 4px 0px;
    float: left;
    padding: 3px;
    margin-left: -2px;
    box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.8);
    z-index: 99999;
}

.usermenu {
    top: 141px;
}

.floatmenu {
    top: 100px;
}

    .usermenu:hover, .floatmenu:hover {
        padding: 4px;
    }

.helpwindow {
    display: none;
    position: fixed;
    right: 10px;
    width: 300px;
    height: auto;
    top: 150px;
    background: url(../img/helpbg.png) repeat;
    color: Blue;
    padding: 5px;
    border: 2px solid black;
    border-radius: 4px;
    z-index: 999999;
}

    .helpwindow .helpheader {
        float: right;
    }

    .helpwindow .helpcontent {
        width: 100%;
        padding: 2px;
    }

/***********SIDE FLOATING MENU - ENDS*********************/



/* Used purely for slide menu in master page */
/* Associated java script written inside dynamic script */
.hidden-content, .hidden-content1 {
    position: fixed;
    top: 180px;
    background-color: black;
    z-index: 99999;
    color: white;
    border-radius: 0px 4px 4px 0px;
}

    .hidden-content span, .hidden-content1 span {
        display: block;
        width: 100%;
        line-height: 8px;
    }

        .hidden-content span.divider, .hidden-content1 span.divider {
            border-bottom: 0.5px solid blue;
            padding-bottom: 8px;
        }

        .hidden-content span a, .hidden-content1 span a {
            text-decoration: none;
            font-weight: bold;
        }

.slide-up, .slide-down {
    max-height: 0em;
    max-width: 0em;
    overflow-y: hidden;
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
}

.slide-down {
    max-height: 12em;
    min-width: 10em;
}

/* Used purely for slide menu in master page */





/**********REPORT RELATED STYLE- STARTS*****************/
.rptlist {
    width: 100%;
    margin-top: 20px;
}

    .rptlist ul, .rptlist ul li {
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .rptlist ul li {
            float: left;
            width: 100%;
            padding: 10px;
            margin-bottom: 5px;
            background-color: #bdcebe;
            border-radius: 4px;
        }

            .rptlist ul li:hover, .rptlist ul li.selected {
                background-color: #d6cbd3;
            }


            .rptlist ul li a {
                text-decoration: none;
                cursor: pointer;
                padding: 5px;
                color: Black;
                width: 100%;
            }
/**********REPORT RELATED STYLE- ENDS*****************/


/***********CONTEXT MENU - STARTS*********************/
/* Dropdown Button */
.dropbtn {
    background-color: inherit;
    color: inherit;
    border: none;
    cursor: pointer;
}

    /* Dropdown button on hover & focus */
    .dropbtn:hover, .dropbtn:focus {
        background-color: #2980B9;
    }

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    color: Blue;
    min-width: 80px;
    border-radius: 2px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a, .dropdown-content span {
        color: black !important;
        padding: 8px 10px;
        text-decoration: none;
        border-radius: 2px;
        display: block;
    }

    .dropdown-content span {
        color: lightgray !important;
    }

    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {
        background-color: #ddd;
        border-radius: 2px;
    }

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}
/***********CONTEXT MENU - END*********************/



.tab-override li a {
    padding: 2px 10px 2px 10px;
    margin: 0;
    background-color: #034f84;
    color: White;
}

    .tab-override li a:hover {
        background-color: lightgray;
        color: Black;
    }

.tab-pane {
    padding: 10px;
    border-bottom: 0.5px solid lightgray;
    border-left: 0.5px solid lightgray;
    border-right: 0.5px solid lightgray;
}

.editwindow {
    font-family: "Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    display: block;
    /*border:3px solid #667292;*/
    border-radius: 2px;
    margin-bottom: 10px;
    background-color: #b7d7e8;
    padding: 5px;
    box-shadow: 0px 0px 1px 0.5px #667292;
}

.uppercase {
    text-transform: uppercase;
}

#myModal {
    display: none;
    position: absolute;
    margin-left: 37%;
    width: 25%;
    padding: 20px;
    background-color: #daebe8;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    z-index: 9999;
}




.appheader {
    margin-left: 0;
    margin-top: -5px;
    font-family: inherit;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.btn-override {
    height: 20px;
    padding: 2px;
    padding-top: 0;
}

.form-divide-line {
    margin-top: 5px;
    margin-bottom: 5px;
    border-bottom: 0.5px dotted white;
}

/*form tab*/
div.tab {
    overflow: hidden;
    border: 0px solid #65acc8;
    /*background-color: #f1f1f1; */
}

    div.tab button {
        background-color: inherit;
        float: left;
        border: 1px solid #65acc8;
        border-bottom: none;
        border-radius: 4px 4px 0px 0px;
        outline: none;
        cursor: pointer;
        padding: 5px 15px;
        /*transition: 0.3s;*/
        font-size: 12px;
    }

        div.tab button:hover {
            background-color: #A9D1E1;
        }

        div.tab button.active {
            background-color: #65acc8;
        }

.tabcontent {
    display: none;
    padding: 6px 6px 6px 6px;
    height: auto;
    min-height: 85%;
    max-height: 85%;
    border: 1px solid #65acc8;
    background-color: White;
    overflow-y: auto;
    /*border-top:none;  */
}

    .tabcontent table {
        width: 90%;
        margin: 10px;
    }

.content-header {
    padding: 10px 0.8em;
    padding-bottom: 25px;
    width: 100%;
    background-color: #667292;
    border-radius: 8px 8px 0px 0px;
    border: 0.5px solid lightgray;
    border-top: 2px solid lightgray;
    color: White;
}

    .content-header h1 {
        font-size: 1.8rem;
        margin: 0;
        float: left;
    }

    .content-header .breadcrumb {
        margin-bottom: 0;
        padding: 0;
        background: 0 0;
        line-height: 1.8rem;
        float: right;
        color: White;
    }

        .content-header .breadcrumb li a {
            color: White;
            text-decoration: none;
        }

.content-body {
    padding: 5px 15px 15px 15px;
    background-color: white;
    border: 0.5px solid lightgray;
    height: auto;
    border-top: 0px;
    min-height: 450px;
}

.wrapper {
    padding: 20px;
    font-family: inherit;
}

.dropdown-large {
    position: static !important;
    font-family: inherit;
    font-size: 14px !important;
}

.dropdown-menu-large {
    margin-left: 16px;
    margin-right: 16px;
    padding: 20px 0px;
}

    .dropdown-menu-large > li > ul {
        padding: 0;
        margin: 0;
    }

        .dropdown-menu-large > li > ul > li {
            list-style: none;
        }

            .dropdown-menu-large > li > ul > li > a {
                display: block;
                padding: 3px 20px;
                clear: both;
                font-weight: normal;
                line-height: 1.428571429;
                color: #333333;
                white-space: normal;
            }

    .dropdown-menu-large > li ul > li > a:hover,
    .dropdown-menu-large > li ul > li > a:focus {
        text-decoration: none;
        color: #262626;
        background-color: #f5f5f5;
    }

    .dropdown-menu-large .disabled > a,
    .dropdown-menu-large .disabled > a:hover,
    .dropdown-menu-large .disabled > a:focus {
        color: #999999;
    }

        .dropdown-menu-large .disabled > a:hover,
        .dropdown-menu-large .disabled > a:focus {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
            cursor: not-allowed;
        }

    .dropdown-menu-large .dropdown-header {
        color: #428bca;
        font-size: 18px;
    }

.icon-bar {
    width: auto;
    height: 20px;
    background-color: inherit;
    overflow: auto;
}

    .icon-bar a {
        float: left;
        width: 20px;
        text-align: center;
        padding: 12px 0;
        transition: all 0.3s ease;
        color: white;
        font-size: 36px;
    }

        .icon-bar a:hover {
            background-color: #000;
        }

.active {
    background-color: inherit;
}

.datagrid {
    width: 100%;
}

    .datagrid thead td {
        font-weight: bold;
    }

    .datagrid .chkcol {
        width: 80px;
        font-weight: bold;
    }


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: lightgray;
    border-radius: 2px;
}

::-webkit-scrollbar {
    width: 5px;
}

    ::-webkit-scrollbar:horizontal {
        height: 5px;
    }

::-webkit-scrollbar-thumb {
    background: #65acc8;
    background: -webkit-gradient(linear, 0 0, 0 0, from(#65acc8), to(#4586ae));
    background: -moz-linear-gradient(#65acc8, #4586ae);
    background: linear-gradient(#65acc8, #4586ae);
    border-top: 1px solid #a1cdde;
    border-radius: 2px;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.flashtext {
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.5, 0, 1, 1);
    -webkit-animation-duration: 1.7s;
}

.copyright {
    position: absolute;
    bottom: -30px;
    width: 100%;
    height: 25px;
    text-align: center;
    right: 10px;
    padding-top: 5px;
}

    .copyright p {
        font-size: 10px;
        color: black;
    }



@media (max-width: 768px) {
    .dropdown-menu-large {
        margin-left: 0;
        margin-right: 0;
    }

        .dropdown-menu-large > li {
            margin-bottom: 30px;
        }

            .dropdown-menu-large > li:last-child {
                margin-bottom: 0;
            }

        .dropdown-menu-large .dropdown-header {
            padding: 3px 15px !important;
        }


    #myModal {
        width: 300px;
        margin-left: 40px;
    }
}
