﻿*, html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

article, aside, figure, footer, header, hgroup, nav, section {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
}

a {
    color: #BA0707;
    text-decoration: none;
}

    a:hover {
        color: #BA0707;
    }


nav {
    display: block;
    background: #3b5998;
    font: 11px "Calibri";
    z-index: 100;
}

.menu {
    display: block;
    text-align: center;
    z-index: 101;
}

    .menu li {
        display: inline-block;
        position: relative;
        z-index: 99999;
        text-align: left;
    }

        .menu li:first-child {
            margin-left: 0;
        }

        .menu li a {
            font-weight: 600;
            text-decoration: none;
            padding: 5px 15px;
            display: block;
            color: #fff;
            transition: all 0.2s ease-in-out 0s;
        }

            .menu li a:hover, .menu li:hover > a {
                color: black;
                background-color: lightgoldenrodyellow;
            }

    .menu ul {
        visibility: hidden;
        opacity: 0;
        margin: 0;
        padding: 0;
        width: 200px;
        position: absolute;
        left: 0px;
        background: #fff;
        z-index: 102;
        transform: translate(0,20px);
        transition: all 0.2s ease-out;
    }

        .menu ul:after {
            bottom: 100%;
            left: 10%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255, 255, 255, 0);
            border-bottom-color: #fff;
            border-width: 6px;
            margin-left: -6px;
        }

        .menu ul li {
            display: block;
            float: none;
            background: none;
            margin: 0;
            padding: 0;
            text-align: left;
        }

            .menu ul li a {
                font-size: 11px;
                font-weight: bold;
                display: block;
                color: black;
                background: #fff;
                text-align: left;
            }

                .menu ul li a:hover, .menu ul li:hover > a {
                    background: #9ca3da;
                    color: black;
                    text-align: left;
                }

    .menu li:hover > ul {
        visibility: visible;
        opacity: 1;
        transform: translate(0,0);
    }

    .menu ul ul {
        left: 200px;
        top: 0px;
        visibility: hidden;
        opacity: 0;
        transform: translate(20px,20px);
        transition: all 0.2s ease-out;
    }

        .menu ul ul:after {
            left: -6px;
            top: 10%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255, 255, 255, 0);
            border-right-color: #fff;
            border-width: 6px;
            margin-top: -6px;
        }

    .menu li > ul ul:hover {
        visibility: visible;
        opacity: 1;
        transform: translate(0,0);
    }

.responsive-menu {
    display: none;
    width: 100%;
    padding: 20px 15px;
    background: #374147;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

    .responsive-menu:hover {
        background: #374147;
        color: #fff;
        text-decoration: none;
    }

a.homer {
    background: #9ca3da;
}

@media (min-width: 768px) and (max-width: 979px) {
    .mainWrap {
        width: 768px;
    }

    .menu ul {
        top: 37px;
    }

    .menu li a {
        font-size: 12px;
    }

    a.homer {
        background: #374147;
    }
}

@media (max-width: 767px) {
    .mainWrap {
        width: auto;
        padding: 50px 20px;
    }

    .menu {
        display: none;
    }

    .responsive-menu {
        display: block;
        z-index: 99;
    }

    nav {
        margin: 0;
        background: none;
        z-index: 100;
    }

    .menu li {
        display: block;
        margin: 0;
    }

        .menu li a {
            background: #fff;
            color: #797979;
        }

            .menu li a:hover, .menu li:hover > a {
                background: #9ca3da;
                color: #fff;
            }

    .menu ul {
        visibility: hidden;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        transform: initial;
    }

    .menu li:hover > ul {
        visibility: visible;
        opacity: 1;
        position: relative;
        transform: initial;
    }

    .menu ul ul {
        left: 0;
        transform: initial;
    }

    .menu li > ul ul:hover {
        transform: initial;
    }
}

@media (max-width: 480px) {
}

@media (max-width: 320px) {
}

.avatar1 {
    border-radius: 50%;
    border: 2px solid #a1a3a3;
}

.modal-wrap,
.modal-overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
}

.modal-wrap {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 103;
}

    .modal-wrap .modal-overlay {
        position: fixed;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.37);
    }

@media (max-width: 767px) {
    .modal-wrap {
        position: absolute;
    }
}

@media (min-width: 768px) {
    .modal-wrap {
        position: fixed;
    }
}

.modal-wrap .modal-content {
    background-color: #fff;
    padding: 5px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    position: relative;
    z-index: 103;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0.8);
    transition: all 0.3s ease-in-out;
    overflow: auto;
    box-shadow: 2px 4px 8px blue, -2px 1px 4px Orange;
}

.modal-wrap .modal-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 5px;
    cursor: pointer;
    background-image: url(../images/cancel_1.png);
    background-size: 100% 100%;
    width: 15px;
    height: 15px;
    top: 2px;
    right: 3px;
    outline: none;
    border: none;
    text-decoration: none;
}

.modal-wrap .modal-logo {
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px;
}

.modal-wrap.modal-opened {
    opacity: 1;
    visibility: visible;
}

    .modal-wrap.modal-opened .modal-content {
        transform: translateY(-50%) scale(1);
    }


.dvShowHidePassword {
    font-size: 12px;
    font-weight: bold;
    margin-left: -35px;
    border-left: 1px solid #ff0000;
    padding: 7px 10px;
    cursor: pointer;
    line-height: 30px;
    ser-select: none;
    -webkit-user-select: none; /* webkit (safari, chrome) */
    -moz-user-select: none; /* mozilla */
    -khtml-user-select: none; /* webkit (konqueror) */
    -ms-user-select: none; /* IE10+ */
}

.modal {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=10);
    opacity: 0.8;
    -moz-opacity: 0.8;
}

.center {
    z-index: 1000;
    margin: 300px auto;
    padding: 0px;
    width: 0px;
    background-color: grey;
    border-radius: 10px;
    filter: alpha(opacity=10);
    opacity: 1;
    -moz-opacity: 1;
}

    .center img {
        height: 158px;
        width: 158px;
    }

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #a1a3a3;
}


.login {
    background: white;
    border: 1px solid #ff006e;
    border-radius: 6px;
    height: 340px;
    margin: 10px auto 0;
    width: 450px;
    overflow-y: hidden;
    font-size: 12px;
    -webkit-box-shadow: 0px 0px 36px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 36px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 36px 1px rgba(0,0,0,0.75);
}

    .login h1 {
        background-image: linear-gradient(top, #f1f3f3, #d4dae0);
        border-bottom: 1px solid #a6abaf;
        border-radius: 6px 6px 0 0;
        box-sizing: border-box;
        color: #727678;
        display: block;
        height: 33px;
        font: 600 14px/1 'Open Sans', sans-serif;
        padding-top: 14px;
        margin: 0;
        text-align: center;
        text-shadow: 0 -1px 0 rgba(0,0,0,0.2), 0 1px 0 #fff;
    }

input[type="password"], input[type="text"] {
    border: 1px solid black;
    border-radius: 4px;
    box-shadow: 0 1px #fff;
    box-sizing: border-box;
    color: black;
    height: 30px;
    padding-left: 7px;
    transition: box-shadow 0.3s;
    width: 130px;
}

    input[type="password"]:focus, input[type="text"]:focus {
        box-shadow: 0 0 4px 1px rgba(55, 166, 155, 0.3);
        outline: 0;
    }

.show-password {
    display: block;
    height: 16px;
    margin: 20px 0 0 20px;
    width: 87px;
}

.forgot:hover {
    color: #3b3b3b
}

.button {
    width: 130px;
    height: 30px;
    display: block;
    font-family: Arial, "Helvetica", sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 1px 1px 0px #37a69b;
    padding-top: 6px;
    margin: 15px 0 0 15px;
    position: relative;
    cursor: pointer;
    border: none;
    background-color: #37a69b;
    background-image: linear-gradient(top,#3db0a6,#3111);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #497a78, 0px 10px 5px #999;
}

.shadow {
    background: #000;
    border-radius: 12px 12px 4px 4px;
    box-shadow: 0 0 20px 10px #000;
    height: 12px;
    margin: 15px auto;
    opacity: 0.2;
    width: 270px;
}


.button:active {
    top: 3px;
    box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #31524d, 0px 5px 3px #999;
}

.main-footer .bottom-footer {
    width: 100%;
    bottom: 0px;
    position: fixed;
    z-index: 9999;
}

.bottom-footer .copyright {
    padding-top: .2rem;
    padding-bottom: .2rem;
}

    .bottom-footer .copyright:after {
        content: '';
        display: table;
        clear: both;
    }

.bottom-footer .copyright-text {
    float: center;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.0rem;
    margin-bottom: 0;
    text-align: center;
}


.bottom-footer .inline-links {
    margin-bottom: 0;
    text-align: right;
}

.bottom-footer .inline-links {
    margin-bottom: 0;
}

    .bottom-footer .inline-links li {
        position: relative;
        display: inline-block;
        padding-left: 15px;
        padding-right: 15px;
        color: #ffffff;
    }

        .bottom-footer .inline-links li:after {
            content: '';
            position: absolute;
            right: -1px;
            top: 0;
            width: 1px;
            height: 100%;
            background-color: #fff;
        }

        .bottom-footer .inline-links li:last-child:after {
            display: none;
        }

.bottom-footer .copyright-text, .bottom-footer .copyright-links {
    width: 100%;
}

.bottom-footer .copyright-links {
    text-align: right;
}

.modal_1 {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=10);
    opacity: 0.8;
    -moz-opacity: 0.8;
}

.center_1 {
    z-index: 1000;
    margin: 300px auto;
    padding: 0px;
    width: 0px;
    background-color: grey;
    border-radius: 10px;
    filter: alpha(opacity=10);
    opacity: 1;
    -moz-opacity: 1;
}

    .center_1 img {
        height: 180px;
        width: 180px;
    }

.box_home {
    width: 75%;
    position: relative;
    height: 75vh;
    background-image: url('../Images/edrc_qms/HOME-PAGE.png');
    background-size: 100% 100%;
    border-radius: 15px;
    vertical-align: top;
    box-shadow: 2px 4px 8px maroon, -2px 1px 4px maroon;
    background-color: white;
}

.ribbon {
    text-align: center;
    color: #fff;
    position: relative;
    background: linear-gradient(270deg, #69b7a3, #60b747, #422376);
    background-size: 100% 100%;
    width: 100%;
    border: 1px solid rgba(0,0,0,.3);
    box-shadow: 0px 1px 3px rgba(0,0,0,.2);
    font-family: Calibri;
    font-size: 14px;
    height: 25px;
    clear: both;
    border-radius: 10px;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

.box1 {
    width: 97vw;
    position: relative;
    height: 65vh;
    background-size: 100% 100%;
    border-radius: 15px;
    vertical-align: top;
    box-shadow: 2px 4px 8px Maroon, -2px 1px 4px Maroon;
    overflow: auto;
    align-content: center;
}

.box2 {
    width: 99vw;
    position: relative;
    height: 72vh;
    background-size: 100% 200%;
    border-radius: 15px;
    box-shadow: 2px 4px 8px Maroon, -2px 1px 4px Maroon;
    background: rgba(255,255,255,0.9);
    overflow: auto;
}

.img1 {
    cursor: pointer;
}

.mydropdownlist {
    color: black;
    font-family: Calibri;
    padding: 3px 3px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid lightgrey;
}



.grid_cell {
    padding: 2px;
}

.grid_header {
    position: sticky;
    top: 0px;
    z-index: 50;
    background-color: #3b5998;
}

.grid_footer {
    position: sticky;
    bottom: 0px;
    z-index: 50;
}

.mydropdownlist1 {
    color: black;
    font-family: Calibri;
    padding: 5px 5px;
    font-weight: bold;
    background-color: white;
    border: 1px solid lightgrey;
}

.mytextbox {
    color: black;
    padding: 5px 5px;
    border-radius: 5px 12px;
    font-weight: bold;
}

.loginTextStyle {
    font-weight: bold;
    color: #353535;
    text-align: left;
    vertical-align: middle;
    Width: 100px;
    Height: 15px;
}

.inline-rb {
    width: auto;
    transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

.tabDetailsWrapper {
    -webkit-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    -moz-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    margin: 15px 0 10px 30px;
    overflow: auto;
    overflow-x: hidden;
    top: 0px;
    position: relative;
    border-radius: 5px;
    text-align: center;
    box-shadow: 2px 4px 8px green, -2px 1px 4px green;
}

.tabDetails {
    -webkit-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    -moz-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    margin-left: 20px;
    margin-right: 20px;
    overflow: auto;
    overflow-x: hidden;
    background-color: white;
    border-radius: 5px;
    text-align: center;
}

.tabDetails1 {
    -webkit-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    -moz-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
    margin: 5px 5px 5px 5px;
    overflow: auto;
    overflow-x: hidden;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.grid-container {
    width: 95vw;
    height: 52vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container1 {
    width: 75vw;
    height: 48vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-caf {
    width: 80vw;
    height: 48vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-cmtl {
    width: 90vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-ro {
    width: 90vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-csr {
    width: 95vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-jqr {
    width: 95vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-aut {
    width: 75vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-mom {
    width: 75vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-others {
    width: 75vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-jcn {
    width: 75vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.grid-container-prod {
    width: 95vw;
    height: 45vh;
    margin-top: 3px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 9px;
}

.div_shade {
    width: 95%;
    position: relative;
    background-size: 100% 200%;
    border-radius: 15px;
    vertical-align: top;
    box-shadow: 2px 4px 8px Maroon, -2px 1px 4px Maroon;
    margin: 15px 0 10px 30px;
    background: rgba(255,255,255,0.9);
}


.mytooltip {
    display: inline;
    position: relative;
}

    .mytooltip .tooltip-item {
        cursor: default;
        display: inline-block;
        font-weight: 500;
        padding: 0 10px
    }

    .mytooltip .tooltip-content {
        position: absolute;
        width: 400px;
        left: 50%;
        margin: 0 0 20px -180px;
        border-radius: 10px;
        border: 2px solid yellow;
        text-align: left;
        font-size: 14px;
        line-height: 20px;
        -webkit-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
        -moz-box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
        box-shadow: 2px 4px 13px rgba(0,0,0,.2), -2px 1px 8px rgba(0,0,0,.2);
        background: #3b5998;
        opacity: 0;
        cursor: default;
        pointer-events: none
    }

        .mytooltip .tooltip-content::after {
            content: '';
            left: 50%;
            border: solid transparent;
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-width: 10px;
            margin-left: -10px
        }

        .mytooltip .tooltip-content img {
            position: relative;
            height: 100px;
            display: block;
            float: left;
            margin-right: 1em
        }

    .mytooltip .tooltip-item::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 20px;
        left: 10%;
        pointer-events: none;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .mytooltip:hover .tooltip-item::after {
        pointer-events: auto
    }

    .mytooltip:hover .tooltip-content {
        pointer-events: auto;
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
        transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg)
    }

    .mytooltip:hover .tooltip-content2 {
        opacity: 1;
        font-size: 18px
    }

    .mytooltip .tooltip-text {
        font-size: 14px;
        line-height: 24px;
        display: block;
        padding: 0.31em 0.21em 0.21em 0;
        color: #fff;
    }

.myButton {
    box-shadow: inset 0px 1px 0px 0px #bee2f9;
    background: linear-gradient(to bottom, #63b8ee 5%, #468ccf 100%);
    background-color: #63b8ee;
    border-radius: 6px;
    border: 1px solid #3866a3;
    display: inline-block;
    cursor: pointer;
    color: #14396a;
    font-family: Calibri;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #7cacde;
}

    .myButton:hover {
        background: linear-gradient(to bottom, #468ccf 5%, #63b8ee 100%);
        background-color: #468ccf;
    }

    .myButton:active {
        position: relative;
        top: 1px;
    }

.searchable_dropdown {
    color: black;
    font-family: Calibri;
    padding: 5px 5px;
    border-radius: 5px;
    font-weight: bold;
    background-color: white;
    border: 1px solid lightgrey;
}

.header {
    color: white;
    border-left: solid 1px #525252;
}

.page_header {
    color: white;
    border-left: solid 1px #525252;
    background-color: #134377;
}

.header1 {
    background: #363670 url(../Images/grid-header.png) repeat-x top;
    border-left: solid 1px #525252;
}

.glass {
    /* background styles */
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding-top: 6px;
    width: 27px;
    height: 27px;
    background-color: grey; /*for compatibility with older browsers*/
    background-image: linear-gradient(navy, navy);
    /* text styles */
    text-decoration: none;
    color: navy;
    color: black;
    font-size: 11px;
    font-family: 'Calibri';
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0px 1px 4px -2px #333;
    text-align: center;
}

.sticky-col-header1 {
    position: sticky;
    width: 150px;
    left: 0px;
    top: 0;
    z-index: 50;
    background-color: #3b5998;
}

.sticky-col-item-1 {
    position: sticky;
    width: 150px;
    left: 0px;
    z-index: 49;
    background-color: white;
}

.sticky-col-footer1 {
    position: sticky;
    width: 150px;
    left: 0px;
    top: 0;
    z-index: 50;
    background-color: white;
}

.sticky-col-header2 {
    position: sticky;
    width: 200px;
    left: 125px;
    top: 0;
    z-index: 50;
    background-color: #3b5998;
}

.sticky-col-item-2 {
    position: sticky;
    width: 200px;
    left: 125px;
    z-index: 49;
    background-color: white;
}

.sticky-col-footer2 {
    position: sticky;
    width: 200px;
    left: 125px;
    top: 0;
    z-index: 50;
    background-color: white;
}

.sticky-col-header3 {
    position: sticky;
    width: 100px;
    left: 300px;
    top: 0;
    z-index: 50;
    background-color: #3b5998;
}

.sticky-col-item-3 {
    position: sticky;
    width: 100px;
    left: 300px;
    z-index: 49;
    background-color: white;
}

.sticky-col-footer3 {
    position: sticky;
    width: 100px;
    left: 300px;
    top: 0;
    z-index: 50;
    background-color: white;
}

.sticky-col-header4 {
    position: sticky;
    width: 80px;
    left: 390px;
    top: 0;
    z-index: 50;
    background-color: #3b5998;
}

.sticky-col-item-4 {
    position: sticky;
    width: 80px;
    left: 390px;
    z-index: 49;
    background-color: white;
}

.sticky-col-footer4 {
    position: sticky;
    width: 80px;
    left: 390px;
    top: 0;
    z-index: 50;
    background-color: white;
}

.sticky-col-header5 {
    position: sticky;
    width: 100px;
    left: 460px;
    top: 0;
    z-index: 50;
    background-color: #3b5998;
}

.sticky-col-item-5 {
    position: sticky;
    width: 100px;
    left: 460px;
    z-index: 49;
    background-color: white;
}

.sticky-col-footer5 {
    position: sticky;
    width: 100px;
    left: 460px;
    top: 0;
    z-index: 50;
    background-color: white;
}

.sticky-col-last-header {
    position: sticky;
    width: 80px;
    right: 0;
    top: 0;
    background-color: #3b5998;
    z-index: 50;
}

.sticky-col-last {
    position: sticky;
    width: 80px;
    right: 0;
    background-color: aliceblue;
    z-index: 49;
}

.sticky-col-last-footer {
    position: sticky;
    width: 80px;
    right: 0;
    top: 0;
    z-index: 50;
    background-color: white;
}

.div_shade {
    margin: 0px 10px 0px 10px;
}

.div_shade_blue {
    box-shadow: 2px 2px 2px grey, -2px 1px 2px grey;
    color: black;
    font-size: 14px;
    font-family: Calibri;
    padding: 5px 5px;
    border-radius: 5px;
    font-weight: bold;
    background-color: white;
    border: 1px solid lightgrey;
}

.myGrid {
    background-color: #fff;
    margin: 5px 0 10px 0;
    border: solid 1px #525252;
    border-collapse: collapse;
}

    .myGrid td {
        padding: 2px;
        border: solid 1px #c1c1c1;
        color: #717171;
    }

    .myGrid th {
        padding: 4px 2px;
        color: #fff;
        background-color: #424242;
        border-left: solid 1px #525252;
        font-size: 0.9em;
    }

    .myGrid .alt {
        background-color: #EFEFEF;
    }



.table-condensed tr th {
    border: 1px solid darkblue;
    color: white;
    background-color: #3b5998;
    font-weight: bold;
}

.table-condensed, .table-condensed tr td {
    border: 1px solid darkblue;
    height: 30px;
    background: white;
}


.grid_columns {
    width: 30vw;
    height: 20vh;
    top: 100%;
    position: absolute;
    left: 10px;
    border-radius: 5px;
    z-index: 2002;
    border: 1px solid blue;
    background-color: lightblue;
    -webkit-transition: left 2s ease-in-out;
    -moz-transition: left 2s ease-in-out;
    -o-transition: left 2s ease-in-out;
    transition: left 2s ease-in-out;
}

.glass:after {
    /* background styles */
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: 65%;
    border-start-start-radius: 24px;
    border-start-end-radius: 24px;
    border-end-start-radius: 10px;
    border-end-end-radius: 10px;
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}

.greengrad {
    background-image: linear-gradient(green, green);
}

.orangegrad {
    background-image: linear-gradient(orange, orange);
}

.redgrad {
    background-image: linear-gradient(red, red);
}

.bluegrad {
    background-image: linear-gradient(blue, blue);
}

.greygrad {
    background-image: linear-gradient(grey, grey);
}

.orangegrad1 {
    background-image: linear-gradient(darkorange, darkorange);
}

.bluegrad1 {
    background-image: linear-gradient(darkblue, darkblue);
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.form-div {
    width: 200px;
    padding: 10px;
    transition: opacity 0.5s ease;
}
