﻿@font-face {
    src: url(https://fonts.googleapis.com/css?family=Signika:400,700);
}
.container-fluid{
    width:100%;
    position:relative;
    padding-left:0px;
    padding-right:0px;
}
.row{
    margin-left:0px;
    margin-right:0px;
}

.body-wrapper{
    transition:transform .3s
}
.slide-menu,
.body-wrapper{
 -webkit-transition:-webkit-transform .3s
}
hr{
    margin-bottom:0px;
    margin-top:0px;
   border-color: rgba(0,0,0,0.2);
 margin-left:15px;
   margin-right:15px;
}

.btn-primary{
    padding-top:3px;
    padding-bottom:3px;
}
/*
===============================================================================================================================================
                             Bootsrap Modal Styles includes Header, Footer, Body & Buttons common for All Projects
===============================================================================================================================================
*/
        /*---Close Button on Modal, Need to a Class to Modal header HTML----*/
.close-modal-btn{
    color:#C52229;
    font-size:35px;
    font-weight:500;
    opacity:1;
}
.modal-header{
    padding-bottom:7px;
    border-bottom:1px solid #C52229;
     background-color:#f2f2f2;
     color:#337ab7;
     font-weight:500 !important;
}
.modal-footer{
    padding:10px;
    border-top:1px solid #C52229;
    background-color:#f2f2f2;
}
.modal-footer btn{
    margin-top:0px;
}
.modal .modal-body {
    max-height: 650px;
    overflow-y: auto;
}

/*---------Enable Scroll Bar after 650px only on modal body header and Footer Remain Fixed height and Width---------------*/

.modal .modal-body{
    scrollbar-track-color:#f2f2f2;
     scrollbar-highlight-color:#777;
     scrollbar-arrow-color:#f2f2f2;
     scrollbar-face-color:#777;
}
.modal .modal-body::-webkit-scrollbar{
    width: 7px;
}
 
.modal .modal-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
.modal .modal-body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
                        /*----Media Quaries to Set the max body height of the modal---*/
@media only all and (min-width:501px) and (max-width:767px) {
.modal .modal-body {
    max-height: 480px;
    overflow-y: auto;
}
}
@media only all and (min-width:360px) and (max-width:500px) {
.modal .modal-body {
    max-height: 380px;
    overflow-y: auto;
}
}
@media only all and (max-width:359px) {
.modal .modal-body {
    max-height: 280px;
    overflow-y: auto;
}
}
                                           /*---Styles to Allow the Modal to Dragg---*/
  .modal-draggable .modal-backdrop {
  position: fixed;
}

.modal.modal-draggable {
    overflow: overflow-y;
}

.modal-draggable .modal-header:hover {
  cursor: move;
}

/*==================================================================================================================================
                                                    Loading Effects, Scroll To Top, Padding
    ===============================================================================================================================
*/
 .paddingZero {
        padding-left: 0px;
        padding-right: 0px;
    }

/*-----------------Spinner on Page Loading Common for All Projects--------------*/
     
 #dashboard_loadwrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:2000;
}
 
#dashboard_spinner {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%; /*Indicates the Length of the Spinner now it is half the Circle*/
    border: 4px solid transparent;
    border-top-color: #f0ad4e;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 0.7s linear infinite; 
    z-index:2000;
}
   /*--Text Size of the Spinner---*/
 #dashboard_loadwrapper p{
    font-size:23px;
    text-transform:uppercase;
    color:#fff;
    margin-top:20%;
     z-index:2000;
     font-weight:500;
}
        /*--Spinner Color Based on Ajax call Danger while Deleting, Info on Updating, Adding on Success -----*/
#dashboard_spinner_delete {
  display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #C52229;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 0.7s linear infinite; 
}
 #dashboard_spinner_edit {
  display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #5dc0de;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 0.7s linear infinite; 
}
 #dashboard_spinner_add {
  display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #5cb85c;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 0.7s linear infinite; 
} 

                                    /*---Key Frames to Acivate the Spinning Effect---*/
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg); 
        -ms-transform: rotate(0deg); 
        transform: rotate(0deg);  
    }
    100% {
        -webkit-transform: rotate(360deg); 
        -ms-transform: rotate(360deg); 
        transform: rotate(360deg); 
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg); 
        -ms-transform: rotate(0deg); 
        transform: rotate(0deg); 
    }
    100% {
        -webkit-transform: rotate(360deg); 
        -ms-transform: rotate(360deg); 
        transform: rotate(360deg); 
    }
}
/*-------------------------------------------Custom Tooltips Common for All Projects ------------------------------------------ 
                     Add a Class "dash_tooltip" to Button Class and to the Span add text Class "dash_tooltiptext"
 ----------------------------------------------------------------------------------------------------------------------------*/
.dash_tooltip {
    position: relative;
    display: inline-block;
}
.dash_tooltip .dash_tooltiptext {
    visibility: hidden;
    width: 225px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-left: -112px;
    font-size: 13px;
    opacity: 0.9;
    border: 3px solid #ccc;
    z-index: 10;
}  
.dash_tooltip .dash_tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0.9;  
}
.dash_tooltip:hover .dash_tooltiptext {
    visibility: visible;  
}  


/*-----Scroll to Top Button----*/

#dashboard_return_to_top {
    opacity: 0.7;
    position: fixed;
    bottom: 25px;
    right: 20px;
    background:rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
   z-index: 1000;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#dashboard_return_to_top span {
    color: #c52229;
    margin: 0;
    position: absolute;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#dashboard_return_to_top:hover {
    background: rgba(0, 0, 0, 0.6);
}
#dashboard_return_to_top:hover span {
    color: #fff;
    top: 5px;
}



/*===============================================================================================================================================================================
                                       Square Buttons for Dashboard styles Common for All Projects
                        Added an Addition Class for Bootstrap Button eg: <button class="btn btn-primary"></button> 
    Now add an Addition class called "primary_btn" to Overwrite Bootstrap button Styles with Square and Formating text to Uppercase latest trend fallowed by Google 
    ============================================================================================================================================================================
*/
.info_btn {
  background-color:#5dc0de;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
padding:3px 8px 3px 8px; 
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.info_btn:hover, .button:focus, .button:active {
  color:#fff;
}
.info_btn:focus {
  outline: 0;
}
/*-------------*/
.primary_btn {
  background-color:#337ab7;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
padding:3px 8px 3px 8px; 
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.primary_btn:hover, .primary:focus, .primary:active {
  color:#fff;
}
.primary_btn:focus {
  outline: 0;
}

/*----------------*/
.reset_btn {
  background-color:#f0ad4e;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
padding:3px 8px 3px 8px;  
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.reset_btn:hover, .reset:focus, .reset:active {
  color:#fff;
}
.reset_btn:focus {
  outline: 0;
}
/*----------------*/
.success_btn {
  background-color:#5cb85c;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
padding:3px 8px 3px 8px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.success_btn:hover, .success_btn:focus, .success_btn:active {
  color:#fff;
}
.success_btn:focus {
  outline: 0;
}
/*----------------*/
.danger_btn {
  background-color:#d9534f;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
    padding:3px 8px 3px 8px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.danger_btn:hover, .danger_btn:focus, .danger_btn:active {
  color:#fff;
}
.danger_btn:focus {
  outline: 0;
}
/*----------------*/
.warning_btn {
  background-color:#f0ad4e;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
padding:3px 8px 3px 8px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.warning_btn:hover, .warning_btn:focus, .warning_btn:active {
  color:#fff;
}
.warning_btn:focus {
  outline: 0;
}


/*===============================================================================================================================================================================
                                       Rounded Buttons for Dashboard styles
                    Added an Addition Class for Bootstrap Button eg: <button class="btn btn-primary"></button> 
       Now add an Addition class called "primary_Rbtn" to Overwrite Bootstrap button Styles with Round fallowed by Google 
    ============================================================================================================================================================================
*/
.info_Rbtn {
  background-color:#5dc0de;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin:0px;

 padding:6px 10px 6px 10px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.info_Rbtn:hover, .button:focus, .button:active {
  color:#fff;
}
.info_Rbtn:focus {
  outline: 0;
}
/*-------------*/
.primary_Rbtn {
  background-color:#337ab7;
  border: none;
  border-radius: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin:0px;
  min-height:36px;
   min-width:36px;
  max-height:36px;
   max-width:36px;
 padding:4px 4px 6px 4px; 
  position: relative;
  text-align:center;
  background-image:none !important;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.primary_Rbtn:hover, .primary:focus, .primary:active {
  color:#fff;
}
.primary_Rbtn:focus {
  outline: 0;
}

/*----------------*/
.reset_Rbtn {
  background-color:#f0ad4e;
  border: none;
   border-radius: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin:0px;

 padding:6px 10px 6px 10px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.reset_Rbtn:hover, .reset:focus, .reset:active {
  color:#fff;
}
.reset_Rbtn:focus {
  outline: 0;
}
/*----------------*/
.success_Rbtn {
  background-color:#5cb85c;
  border: none;
  border-radius: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  margin:0px;

 padding:6px 10px 6px 10px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.success_Rbtn:hover, .success_Rbtn:focus, .success_Rbtn:active {
  color:#fff;
}
.success_Rbtn:focus {
  outline: 0;
}
/*----------------*/
.danger_Rbtn {
  background-color:#d9534f;
  border: none;
  border-radius: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
   margin:0px;

padding:6px 10px 6px 10px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.danger_Rbtn:hover, .danger_Rbtn:focus, .danger_Rbtn:active {
  color:#fff;
}
.danger_Rbtn:focus {
  outline: 0;
}
/*----------------*/
.warning_Rbtn {
  background-color:#f0ad4e;
  border: none;
  border-radius: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
   margin:0px;

 padding:6px 10px 6px 10px; 
  position: relative;
  text-transform: uppercase;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: box-shadow 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.warning_Rbtn:hover, .warning_Rbtn:focus, .warning_Rbtn:active {
  color:#fff;
}
.warning_Rbtn:focus {
  outline: 0;
}
/*==========================================================================================================================================
                                                                    Dashboard Nav Bar
===========================================================================================================================================
*/
                                           /*-------Dashboard Navbar Background-------*/
.dashboard_navbar .navbar {
   background:#337ab7;
   border:0px;
}
.dashboard_navbar .navbar{
    margin-bottom:0px;
}
                                /*-----------Dashboard Select Program Menu Icon Styles---------*/
  .dash_selectProgMenuIcon span {
                display: block;
                float: left;
                clear: both;
                height: 3px;
                width: 30px;
                border-radius: 40px;
                background-color: #fff;
                position: absolute;
                left: 10px;
                top: 3px;
                padding-right:10px;
                overflow: hidden;
                -webkit-transition: all 0.4s ease;
                transition: all 0.4s ease;
                z-index:100;
            }
             .dash_selectProgMenuIcon span:nth-child(1) {
                    margin-top: 12px;
                    z-index: 9;
                }

                .dash_selectProgMenuIcon span:nth-child(2) {
                    margin-top: 21px;
                }

                .dash_selectProgMenuIcon span:nth-child(3) {
                    margin-top: 30px;
                }
                a.dash_Menu_selectProgName{
                    color:#fff;
                    font-size:21px;
                    margin-top:11px;
                    -webkit-margin-before: -5px;
                    padding-left:45px;
                    text-decoration:none !important;
                    position:absolute;
                }
                .dash_selectProgMenuIcon a:focus, .dash_selectProgMenuIcon a:hover{
                    color:#fff;
                    text-decoration:none !important;
                }
                         /*-------Dashboard Navbar Brand-------*/
.dashboard_navbar .navbar .brand {
 width:650px;
 padding:10px 10px 5px 10px;
 color: #fff;
 text-decoration:none;
 font-size:24px;
 text-align: center;
}
@media only all and (min-width:650px) and (max-width:767px) {
 .dashboard_navbar .navbar .brand {
 font-size:18px !important;
 padding-top:18px;
}
}
@media only all and (max-width:649px) {
.dashboard_navbar .navbar .brand {
display:none !important;
}
}
                         /*-------Dashboard Navbar Buttons on Right Settings and Filter Button-------*/
.dash_navbar_topRight_btns .glyphicon-user{
    /*padding-top:3px !important;
     padding-bottom:3px !important;
     margin-top:10px;
     margin-left:10px;*/
     color: white; 
     font-size: 25px; 
     margin-top: 11px; 
     margin-right: 15px; 
     float: right; 
     cursor: pointer
}
@media all and (min-width:768px) {
    .dash_navbar_topRight_btns{
    margin-top:-50px; 
    padding:5px 15px 5px 15px;
}
}
@media all and (min-width:650px) and (max-width:767px) {
        .dash_navbar_topRight_btns{
    margin-top:-45px; 
    padding:5px 15px 5px 15px;
}
        .dash_navbar_topRight_btns .glyphicon-user {
            padding-left:10px;
            padding-right:7px;
        }
}
@media all and (max-width:649px) {
        .dash_navbar_topRight_btns{
    margin-top:0px; 
    padding:5px 15px 5px 15px;
}
       
}
            /*---Badge on Filter Button to indicate the selected Program Types, Result Showing on Dashboard-------*/
.dash-filter-badge{
  position: absolute;
  min-width: 25px;
  min-height: 25px;
  line-height: 25px;
  font-weight: 500;
  color: white;
  border-radius: 100%;
  font-size: 13px;
  background: #E94B3B;
  box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5);
  display: inline-block;
  text-align: center;
  z-index: 1;
   top: 4px;
}
                     
/*===========================================================================================================================
                                        Common Styles for Both Left and Right Sliding Menu with Overlay Mask
    =========================================================================================================================
*/
.dash-mask,
.slide-menu{
    position:fixed
}
.slide-menu{
    z-index:200;
    background-color:#f5f5f5;
    transition:transform .3s
}
 .dash_filter_slideLeft_menu, 
 .dash_filter_slideRight_menu{
 width:100%;
 height:100%;
}

 .dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea,
.dash_filter_slideRight_menu .Dash_SideNav_scrollEnableArea{
    scrollbar-track-color:#f2f2f2;
     scrollbar-highlight-color:#777;
     scrollbar-arrow-color:#f2f2f2;
     scrollbar-face-color:#777;
}

.dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea::-webkit-scrollbar,
.dash_filter_slideRight_menu .Dash_SideNav_scrollEnableArea::-webkit-scrollbar{
    width: 7px;
}
 
.dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea::-webkit-scrollbar-track,
.dash_filter_slideRight_menu .Dash_SideNav_scrollEnableArea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea::-webkit-scrollbar-thumb,
.dash_filter_slideRight_menu .Dash_SideNav_scrollEnableArea::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

@media all and (min-width:460px){
.dash_filter_slideLeft_menu , 
.dash_filter_slideRight_menu{
    width:420px
}
}
@media all and (min-width:374px) and (max-width:459px) {
.dash_filter_slideLeft_menu,  
.dash_filter_slideRight_menu{
    width:340px
}
}
@media all and (min-width:320px) and (max-width:473px) {
.dash_filter_slideLeft_menu,  
.dash_filter_slideRight_menu{
    width:320px
}
}

.dash_filter_slideLeft_menu ul, 
.dash_filter_slideRight_menu ul{
    padding-left:0px;
}

.dash-mask,
 body.has-active-menu{
        overflow:hidden
	}

.dash-mask{
z-index:100;
top:0;
left:0;
width:0;
height:0;
background-color:#000;
opacity:0;
-webkit-transition:opacity .3s,
width 0s .3s,height 0s .3s;
transition:opacity .3s,
width 0s .3s,height 0s .3s
}
.dash-mask.is-active{
        width:100%;
        height:100%;
        opacity:.7;
		-webkit-transition:opacity .3s;
        transition:opacity .3s
}

/*-------------------------------------------------Left ONLY Menu  (Select Program) Styles--------------------------------------------------*/
 
/*-----Slide Menu Bottom Fixed Background for Menu ----*/
 .dash_sideNavLeftFixedPosition{
      display:block;
    padding:20px 24px;
    width:100%;
     color:#fff;
    background-color:#354864;
	border:none;
    /*margin-bottom:-10px !important;*/
    bottom:0px;
    cursor:default;
    font-size:18px;
 }

 /*-----Properties to Set Max and Height and Enable Scroll Area ----*/


.dash_filter_slideLeft_menu{
top:0;
left:0;
-webkit-transform:translateX(-100%);
-ms-transform:translateX(-100%);
transform:translateX(-100%)
}
.dash_filter_slideLeft_menu.is-active{
-webkit-transform:translateX(0);
-ms-transform:translateX(0);
transform:translateX(0)
}

/*---Media Quaries to Set Left Menu (Select Prog) Nav to Mobile Screen Size Include Width, Height and Body Scollable area------*/
@media all and (min-width:460px){
.dash_filter_slideLeft_menu{
 -webkit-transform:translateX(-420px);
-ms-transform:translateX(-420px);
transform:translateX(-420px)}
}

@media all and (min-width:320px) and (max-width:459px) {
.dash_filter_slideLeft_menu{
 -webkit-transform:translateX(-320px);
-ms-transform:translateX(-320px);
transform:translateX(-320px)
}
}
.dash_filter_slideLeft_menu 
.Dash_SideNav_scrollEnableArea{
 width:100%;
 height:92%;
 overflow-y:scroll;
}
@media all and (min-width:768px) and (max-width:1100px){
    .dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea {
         height:85%;
          overflow-y:scroll;
    }
}
@media all and (min-width:500px) and (max-width:767px){
    .dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea {
         height:78%;
          overflow-y:scroll;
    }
}
@media all and (min-width:400px) and (max-width:499px){
    .dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea {
         height:74%;
          overflow-y:scroll;
    }
}
@media all and (min-width:320px) and (max-width:399px){
    .dash_filter_slideLeft_menu .Dash_SideNav_scrollEnableArea {
         height:71%;
         overflow-y:scroll;
    }
}

/*---Close Icon on Select Program Open---*/
  .dash_filter_slideLeft_menu h1 i {
                display: block;
                float: right;
                clear: both;
                height: 3px;
                width: 25px;
                border-radius: 40px;
                background-color: #fff;
                position: absolute;
                right: 10px;
                top: -4px;
                padding-left:10px;
                overflow: hidden;
                -webkit-transition: all 0.4s ease;
                transition: all 0.4s ease;
                z-index:100;
                cursor:pointer;
            }
.dash_filter_slideLeft_menu h1 i:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
    margin-top: 22px;
    background-color:#fff;
}

.dash_filter_slideLeft_menu h1 i:nth-child(2) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
   margin-top: 35px;
    background-color:#fff;
}

/*---Select Program Menu Heading with Background---*/
.dash_filter_slideLeft_menu h1{
    background-color:#354864 !important;
    border-top:4px solid #09ad7e;
    font-size:20px;
    color:#fff;
    margin-top:0px;
      margin-bottom:0px;
    padding-top:10px;
     padding-bottom:10px;
     text-align:center;
}
.dash_progTyp_header{
   background-color:#5b748b;
    color:#fff;
}
.dash_progTyp_header h3{
    font-size:16px;
    font-weight:500;
    margin-top:5px;
    margin-bottom:5px;
    padding:10px;
}
.dash_viewDashboard_close{
  height:30px; 
    width:200px; 
    left:25%;
     right:25%;
     margin-top:0px;
}
@media only all and (max-width:767px) {
.dash_viewDashboard_close{
    left:15%;
}
}
/*---List of Program Types Styles with Boarder Bottom and Shadow for Each Item in List*/
.dash_filter_slideLeft_menu ul li a{
  color:#333;
    font-size:16px;
    margin-bottom:0px;
    font-weight:500;
    padding:7px 10px 7px 24px !important;
    cursor:pointer;
    margin-bottom:0px;
    list-style:none !important;
    display:block !important;
    border-bottom: 1px solid  rgba(0,0,0,0.1);
     box-shadow:0px 0px 4px 0px rgba(0,0,0,0.1);
}
.dash_filter_slideLeft_menu ul li a:hover{
    color:#006dcc !important;
    text-decoration:underline;
}
/*--Text Messages if Multi Organizations, or Audiances----*/
.dash_NoOrg_Message,.dash_NoOrgAss_Message{
    padding-top:10px;
    padding-bottom:10px;
    margin-left:15px;
    margin-right:15px;
    margin-bottom:0px;
}

.dash_NoOrg_Message strong,.dash_NoOrgAss_Message strong{
    text-align:center;
    font-size:16px;
    font-weight:500;
    text-align:center !important;
}
                                    /*-----Dashboard Sidenav Section Text Styles----*/
.dashBoard_SideNav_DropDowns{
    margin:10px 15px 10px 15px;
}
.dash_sideNavProgTyp_select h3{
    color:#006dcc;
    font-size:16px;
    text-transform:uppercase;
    margin-top:15px;
    margin-bottom:5px;
    text-align:center;
    font-weight:500;
}
.dash_sideNavProgTyp_select h4{
     color:#006dcc;
    font-size:15px;
    margin-top:5px;
    margin-bottom:10px;
    text-align:center;
    font-weight:600;
}
.dash_sideNavOrg_Name{
     color:#c52229 !important;
    font-size:16px;
    margin-top:5px;
    margin-bottom:10px;
    text-align:center;
    font-weight:500;
    padding-right:10px;
}
.dash_sideNav_title h3{
      color:#777;
    font-size:18px;
    text-transform:uppercase;
    margin-top:10px;
    margin-bottom:5px;
    text-align:left;
    padding-left:20px;
     font-weight:500;
}
/*---------------------------------Custom DropDown for Orgnization Selection and Audiance-------------------*/
.dash_selectdropDownList_custom {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 35px;
  width: 100%;
  max-width: 320px;
  background-color: #337ab7;
  color:#fff;
  border-radius: 0;
  border:0px;
  font-size: 15px;
  padding-left:5px;
  padding-right:5px;
}
.dash_selectdropDownList_custom:hover,
.dash_selectdropDownList_custom:focus {
 background-color: #337ab7;
  color:#fff;
    border:0px;
}
.dash_selectdropDownList_custom:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: " ";
  display: block;
  height: 0;
  width: 0;
  margin-top: -3px;
  pointer-events: none;
}
.is-ie8 .dash_selectdropDownList_custom:after, 
.is-ie9 .dash_selectdropDownList_custom:after {
  display: none;
}

/*-------------------------------------------------Right ONLY Menu (Filter Dashboard) Styles-------------------------------------*/
/*---Filter Heading---*/
.dash_FilterMenu_close{
    color:#fff;
    background-color:#354864;
    border:0px;
    border-top:4px solid #09ad7e;
    
    cursor:pointer;
    font-size:18px;
}
.dash_filter_slideRight_menu .dash_FilterMenu_close{
    display:block;
    padding:12px 20px;
    width:100%
}
/*---Close Button on Filter Slide Menu Open----*/
  .dash_FilterMenu_close span {
                display: block;
                float: right;
                clear: both;
                height: 3px;
                width: 25px;
                border-radius: 40px;
                background-color: #fff;
                position: absolute;
                right: 10px;
                top: -4px;
                padding-left:10px;
                overflow: hidden;
                -webkit-transition: all 0.4s ease;
                transition: all 0.4s ease;
                z-index:100;
            }
.dash_FilterMenu_close span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
    margin-top: 25px;
    background-color:#fff;
}

 .dash_FilterMenu_close span:nth-child(2) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
   margin-top: 38px;
    background-color:#fff;
}

  /*-----Slide Menu Bottom Fixed Background for Filter ----*/
  .dash_sideNavRightFixedPosition{
      display:block;
    padding:0px 12px 10px 12px;
    width:100%;
     color:#fff;
    background-color:#f5f5f5;
    border-top :4px solid #354864;
     border-bottom :4px solid #354864;
    bottom:0px;
    cursor:pointer;
    font-size:18px;
 }


.dash_filter_slideRight_menu 
.Dash_SideNav_scrollEnableArea{
 width:100%;
 height:89%;
 overflow-y:scroll
}

@media all and (min-width:551px) and (max-width:767px) {
.dash_filter_slideRight_menu 
.Dash_SideNav_scrollEnableArea{
 height:86%;
}
}
@media all and (min-width:400px) and (max-width:550px) {
.dash_filter_slideRight_menu 
.Dash_SideNav_scrollEnableArea{
 height:85%;
}
}
@media all and (min-width:340px) and (max-width:399px) {
.dash_filter_slideRight_menu 
.Dash_SideNav_scrollEnableArea{
 height:83%;
}
}
@media all and (min-width:320px) and (max-width:339px) {
.dash_filter_slideRight_menu 
.Dash_SideNav_scrollEnableArea{
 height:81%;
}
}
.dash_filter_slideRight_menu{
 top:0;
 right:0;
 -webkit-transform:translateX(100%);
-ms-transform:translateX(100%);
transform:translateX(100%)
}


@media all and (min-width:460px){
.dash_filter_slideRight_menu{
 -webkit-transform:translateX(420px);
-ms-transform:translateX(420px);
transform:translateX(420px)}
}

@media all and (min-width:320px) and (max-width:459px) {
.dash_filter_slideRight_menu{
 -webkit-transform:translateX(320px);
-ms-transform:translateX(320px);
transform:translateX(320px)}
}


.dash_filter_slideRight_menu.is-active{
    -webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0)
}
        /*------------Custom Checkbox to Filter Dashboard Navbar Section Styles-------------------*/

/*---To Hide the Checkboxes by aliging them to Max Left----*/
.dash_filter_slideRight_menu [type="checkbox"]:not(:checked),
.dash_filter_slideRight_menu [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
/*---Calling Custom Checkbox Assigne dto Label---*/
.dash_filter_slideRight_menu [type="checkbox"]:not(:checked) + label,
.dash_filter_slideRight_menu [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}


.dash_filter_slideRight_menu [type="checkbox"]:not(:checked) + label:before,
.dash_filter_slideRight_menu [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 18px; height: 18px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 3px;
  margin-top:0px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}
/*---Icon to Dislpay on Checkboxes after Selection---*/
.dash_filter_slideRight_menu [type="checkbox"]:not(:checked) + label:after,
.dash_filter_slideRight_menu [type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 3px; left: 3px;
  font-size: 18px;
  line-height: 0.8;
  color: #09ad7e !important;
  transition: all .2s;
}

.dash_filter_slideRight_menu [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.dash_filter_slideRight_menu [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.dash_filter_slideRight_menu [type="checkbox"]:disabled:not(:checked) + label:before,
.dash_filter_slideRight_menu [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.dash_filter_slideRight_menu [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
.dash_filter_slideRight_menu [type="checkbox"]:disabled + label {
  color: #aaa;
}
.dash_filter_slideRight_menu label:hover:before {
  border: 1px solid #09ad7e !important;
}
.dash_filter_slideRight_menu p{
    padding-left:24px;
    margin-bottom:7px;
}
.dash_filter_slideRight_menu p label{
    color:#333;
    font-size:16px;
    margin-bottom:0px;
    font-weight:500;
      margin-top:7px;
}

@media all and (max-width:766px){
    .dash_filter_slideRight_menu p label{
    margin-bottom:5px !important;
}
}
.dash_filter_slideRight_menu ul li{
    list-style:none !important;
    display:block !important;
    border-bottom: 1px solid  rgba(0,0,0,0.1);
     box-shadow:0px 0px 4px 0px rgba(0,0,0,0.1);
}



/*=====================================================================================================================================
                                        Common Styles for DashBoard Top Announcment Section and Tasks Section
 ======================================================================================================================================
*/

                                    /*---Main Section for Both Announcement and Tasks includes */
main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 300px;
  top: 0;
  right: 0;
  will-change: width;
  transform: translateZ(0);
  transition: .3s;
}

main {
  justify-content: center;
  position: relative;
  background-color:#f7f7f7;
}

@media only all and (min-width:900px) {
    .flex1 {
  -webkit-flex: 1;
          flex: 1;
}
.flex2 {
  -webkit-flex: 2;
          flex: 2;
}
}

.dash_top_taskAndAnnou_section {
    padding-left: 20px;
    padding-right: 20px;
}
@media only all and (max-width:767px) {
    .dash_top_taskAndAnnou_section{
    padding-left:0px;
    padding-right:0px;
}
}

/*---Card for Both Announcement and Tasks with Hovering Effect---*/
.dashTopAnnouncement_card {
  background-size: contain;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35);
  flex: 1 1 380px;
  margin: 10px;
  position: relative;
  transition: box-shadow .2s;
  cursor: default;
  background-color:#fff;
  border-top: 4px solid #538cc6;
}
.dashTopAnnouncement_card:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
}
.dashTopAnnouncement_card .opaqIcon .glyphicon{  /*---Opacity Icon for Annoucment and Tasks Modal Icon Size-----*/
    font-size:80px;
    opacity:0.08;
   position:absolute;
   z-index:100;
   margin:15px;
   float:right !important;
}

.dashTopCard_contentChild .glyphicon{ /*---Instruction Icon for Annoucment and Tasks Modal Icon Size-----*/
    font-size:24px;
    opacity:8;
   margin:0px;
   color:#337ab7;
  display:inline-block;
}
.dashTopCard_content h3{
  text-align:center !important;
 color:#777;
 font-weight:500;
 font-size:18px;
 text-transform:uppercase;
 margin-top:5px;
 margin-bottom:5px;
}
.dashTopCard_content h4{
  text-align:center !important;
 color:#5cb85c;
 font-weight:500;
 font-size:20px;
 text-transform:uppercase;
 margin-top:5px;
 margin-bottom:5px;
}

.dashTopCard_contentChild h3{
  text-align:center !important;
 color:#777;
 font-weight:500;
 font-size:15px;
 text-transform:uppercase;
 margin-top:5px;
 margin-bottom:5px;
}

.dashTopCard_contentChild h4{
  text-align:center !important;
 color:#333;
 font-weight:600;
 font-size:15px;
 text-transform:uppercase;
 margin-top:5px;
 margin-bottom:5px;
}
/*-----------------------------------------------------------------------------------------------------------------------------
         Announcement Section accrodions are BootStrap Format Customized with Header and Body with Shadows, 
                                        Set Max Height and Enabled Scrollbars
------------------------------------------------------------------------------------------------------------------------------*/

  /*----------------------------------------------Announcments Accordion ----------------------------------------------------*/
.dash_announ_accordion, .dash_announ_accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
.dash-announcment-badge { /*---Announ Badge to Show the Number of Active Announcements----*/
  position: absolute;
  min-width: 25px;
  min-height: 25px;
  line-height: 25px;
  font-weight: 500;
  color: white;
  border-radius: 100%;
  font-size: 13px;
  background: #E94B3B;
  box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5);
  display: inline-block;
  text-align: center;
  z-index: 1;
   top: -10px;
}
.dash_announ_accordion { /*---All Accordions are Set to Max height of 108px in Announcement Card Section-----*/
    overflow:hidden;
    border-radius:3px;
   max-height:108px;
   overflow:auto;
}
.dash_announ_accordion{
    scrollbar-track-color:#f2f2f2;
     scrollbar-highlight-color:#777;
     scrollbar-arrow-color:#f2f2f2;
     scrollbar-face-color:#777;
}
.dash_announ_accordion::-webkit-scrollbar{
    width: 7px;
}
.dash_announ_accordion::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
.dash_announ_accordion::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
/*------Common Panel Default  for All accordions------*/
.dash_announ_accordion .panel-default>.panel-heading{
    background-color:#fff !important;
    border-radius:0px;
    padding:7px 10px 7px 10px;
}

.dash_annoucment_body .panel-heading{
    padding-right:5px;
}
.dash_announ_accordion .dash_annoucment_body a{
    background-image: none !important;
 background-color:#fff !important;
 border-bottom:1px solid rgba(0,0,0,0.2) !important;
 text-decoration:none !important;
}
.dash_announ_accordion .panel-body{
    background-color:#f5f5f5;
    padding:0px 10px 5px 15px;
}
                                /*---Icon on Boostrap Accordions Heading for Announcement Section Before and After Collpase---*/
.dash_annoucment_body a:after{
     content: '\02796 ';
    font-size: 13px;
    background-color:#777;
    border-radius:50%;
    height:25px;
    width:25px;
    color: #fff;
    font-weight:500 !important;
    padding-top:3px;
    margin-left:5px;
  margin-right:5px;
    float: right;
    position:relative;
  text-decoration:none !important;
    text-align:center !important;
    text-align:center !important;
}
.dash_announ_accordion a:after:hover{
     background-color:#fff;
     border-color:#777;
    font-weight:500;
    color:#fff;
      font-weight:500 !important;
}
.dash_announ_accordion a.collapsed:after{
    content: "\02795";                  /*--Icon Replaced with '-'   ----*/
}
.dash_announ_accordion a:active,
.dash_announ_accordion a:focus{
    outline:none !important;
}
.dash_announ_accordion .dash_announceTitle{
color:#333;
font-size:14px;
font-weight:600;
text-transform: none !important;
}
.dash_annModuleTitle{
    color:#777;
    font-weight:500;
    text-transform:uppercase;
    font-size:15px;
    margin-right:15px;
}
                    /*---Announcement Description in Panel Body of Accordion----*/
.dash_annDescription_title{
    font-weight:500;
    text-align:center;
    color:#09ad7e;
    font-size:15px;
    text-transform:uppercase;
    margin-top:3px;
    margin-bottom:3px;
}
.dash_annDescription{
     font-weight:600;
    color:#777;
    padding: 0px 15px 5px 22px;
    font-size:15px;
    margin-top:3px;
    margin-bottom:3px;
    background: url("/Enterprise/v4.0/Mvc/RedMobile/Images/red-arrows.gif") no-repeat left 0px;
}

/*-------------------------------------------------------------------------------------------------------------------------------
                       Dashboard Tasks Section 
------------------------------------------------------------------------------------------------------------------------------*/
.slidingDiv {
height:100%;
background-color: #f5f5f5;
padding:5px 10px 0px 10px;
margin-top:0px;
 display: none;
}
.btnSlidingDivClose{
    font-size:30px;
    color:#c52229;
    display:inline-block;
    cursor:pointer;
    font-weight:600;
}

.dash_cards_Btn{
    bottom:0px !important;
}

.myOpenTasksSection {
     display:none;
}
.myGroupTasksSection{
     display:none;
}
.dash_myGroupTask_content .dataTables_filter {
display: none; 
}
.dash_myOpenTask_content .dataTables_filter {
display: none; 
}
/*--------------------Open Tasks Sliding Div-----------------*/
   .dash_myOpenTask_content {           /*----Open Tasks With Boarder Top----*/
  position: relative;
  background-color: #fff;
  margin-left:15%;
   margin-right:15%;
  border-top: 5px solid #337ab7;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  padding:0px 10px 10px 10px;
}
.dash_myOpenTask_content:before {           /*----Open Tasks With Arrow Icon Showing Towards Tasks Count----*/
  /*content: "";
  position: absolute;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: #337ab7 transparent;
  top: -14px;
  right: 31%;*/
}

.dash_myOpenTask_content h3{
    font-weight:600;
    font-size:16px;
    text-transform:uppercase;
    margin-top:10px;
    text-align:center;
    color:#333;
     font-family: Signika, serif;
}

/*--------------------Group Tasks Sliding Div-----------------*/
.dash_myGroupTask_content {              /*----Group Tasks With Border Top----*/
  position: relative;
  background-color: #fff;
  border-top: 5px solid #337ab7;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  margin-left:15%;
   margin-right:15%;
   padding:0px 10px 10px 10px;
}

.dash_myGroupTask_content:before {   /*----Group Tasks With Arrow Icon Showing Towards Tasks Count----*/
  /*content: "";
  position: absolute;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: #337ab7 transparent;
  top: -14px;
  right: 11%;*/
}
.dash_myGroupTask_content h3{
    font-weight:600;
    font-size:16px;
     text-transform:uppercase;
    margin-top:10px;
    text-align:center;
    color:#333;
   font-family: Signika, serif;
}

/*----------------------------------------Unused Styles for Release 1---------------------------------------------------------*/
/*--------------------Comments Sliding Div-----------------*/
   .dash_commnets_content {
  position: relative;
    background-color: #fff;
  border-top: 5px solid #337ab7;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  margin-left:15%;
   margin-right:15%;
   padding:0px 10px 10px 10px;
}

.dash_commnets_content:before {
  content: "";
  position: absolute;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: #337ab7 transparent;
  top: -14px;
  right: 3.7%;
}
.dash_commnets_content h3{
    font-weight:600;
    font-size:16px;
     text-transform:uppercase;
   margin-top:10px;
    text-align:center;
    color:#333;
   font-family: Signika, serif;
}

/*--------------------Documents Sliding Div-----------------*/
   .dash_documents_content {
  position: relative;
    background-color: #fff;
  border-top: 5px solid #337ab7;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  margin-left:25%;
   margin-right:3%;
   padding:0px 10px 10px 10px;
}

.dash_documents_content:before {
  content: "";
  position: absolute;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: #337ab7 transparent;
  top: -14px;
  right: 3%;
}
.dash_documents_content h3{
    font-weight:600;
    font-size:16px;
     text-transform:uppercase;
   margin-top:10px;
    text-align:center;
    color:#333;
   font-family: Signika, serif;
}

/*===================================Media Query for Sliding Div for My Tasks and Group Tasks for Width < 1500px================================*/
@media only all and (min-width:900px) and (max-width:1500px) {
    .dash_myOpenTask_content:before {
  right: 30.5%;
    }
    .dash_myGroupTask_content:before {
          right: 11%;
    }

}
@media only all and (min-width:857px) and (max-width:899px) {
    .dash_myOpenTask_content:before {
  right: 28%;
    }
    .dash_myGroupTask_content:before {
          right: 11%;
    }

}
@media only all and (min-width:768px) and (max-width:856px) {
    .dash_myOpenTask_content:before {
  right: 82.5%;
    }
    .dash_myGroupTask_content:before {
          right: 29%;
    }
}
@media only all and (min-width:320px) and (max-width:767px) {
    .dash_myOpenTask_content:before {
  right: 75%;
    }
    .dash_myGroupTask_content:before {
          right: 23%;
    }
}
   @media only all and (max-width:767px) {
    .dash_myGroupTask_content {
        margin-left:1% !important;
   margin-right:1% !important;
    }
        .dash_documents_content {
        margin-left:1% !important;
   margin-right:1% !important;
    }
    .dash_myOpenTask_content {
         margin-left:1% !important;
   margin-right:1% !important;
    }
}
 /*---------------------------------------Custom Data Table for Open tasks on Dashboard---------------------------------*/
.dash_openTasks_table table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	.dash_openTasks_table tr:nth-of-type(even) { 
      border-top: 1px solid rgba(0,0,0,0.1);
		background: #fff; 
	}
    .dash_openTasks_table tr:nth-of-type(odd) { 
      border-top: 1px solid rgba(0,0,0,0.1);
		background: #fff; 
	}

.dash_openTasks_table th { 
		background: #f2f2f2; 
		color: #C52229; 
		font-weight: 500; 
        padding: 6px 6px 6px 15px;
        text-transform:uppercase;
        text-align: left; 
	}
.dash_openTasks_table td { 
padding:5px 5px 5px 15px;
text-align: left; 
font-weight:bold;
font-size:15px;
color:#777;
font-weight:500;
text-transform:uppercase;
	}

/*===============================================================================================================
                                            Widget Section
    =============================================================================================================
*/
.dashChartsDiv{
     background-color:#f7f7f7;
}
.dashCharts_section{
    margin:0px;
   padding:0px 15px;
}
@media only all and (max-width:767px) {
    .dashCharts_section{
    margin:0px;
   padding:0px;
}
    .dash_widget{
        padding-left:10px;
        padding-right:10px;
    }
}

.dashWidget_card {
  background-size: contain;
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.20);
  position: relative;
  transition: box-shadow .2s;
  cursor: default;
  background-color:#fff;
  border-top: 4px solid #5cb85c;
  padding:0px !important;
  margin-top:15px;
}
.dashWidget_card:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
}
.dashWidget_card .panel {
     border-radius: 0 !important;
     border:0;
}

.dashWidget_card .panel-default>.panel-heading {
      border-radius: 0 !important;
      border:none !important;
    text-align:center;
  outline: 0;
   position:relative;
      position:relative;
      line-height:24px; 
      color:#fff;
   text-decoration:none !important;
   padding-top:7px;
   padding-bottom:7px;
   font-size:18px;
   background-color:#666666 !important;
   background-image:none !important;
}
a.panel-heading {
    display: block;
}
.dashWidget_card .panel-default .panel-body{
    padding-top:0px !important;
    padding-bottom:5px !important;
}
.dashWidget_card h2{
    color:#333;
    font-weight:700;
    font-size:16px;
    text-align:center;
    margin-top:13px;
    margin-bottom:10px;
  font-family: Signika, serif;
   
}

/*------------------------------------Flex Class to Set the Charts in Each row to Equal Height----------*/
@media screen and (min-width: 768px) {
        .dashCharts_section {
        display: flex;
        flex-wrap: wrap;
    }

        .dashCharts_section > div[class*='col-'] {
            display: flex;
            flex-direction: column;
        }
  /*.dashProvider_section2, .dashProvider_section2 > div[class*='col-'] {  
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex:1 0 auto;
  }*/
}

/*.panel-heading ul {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
}
.panel-heading ul{
    scrollbar-track-color:#f2f2f2;
     scrollbar-highlight-color:#fff;
     scrollbar-arrow-color:#5cb85c;
     scrollbar-face-color:#fff;
}
.panel-heading ul::-webkit-scrollbar {
    width: 3px;
}
 
.panel-heading ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px #fff !important; 
    border-radius: 50px;
    background-color:#777;
}
 
.panel-heading ul::-webkit-scrollbar-thumb {
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 3px #fff !important; 
     background-color:#f2f2f2;
}*/


                /*--------------------------------------------------------------------------
                                        High Charts Styles
            ---------------------------------------------------------------------------------*/
.highcharts-button{
  cursor: pointer !important;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  float:left !important;
}
/*=====================================================================================================================================
                                                        Dashboard  Settings Styles unUsed for Release 1
=====================================================================================================================================*/
.dash_ChartSelectList{
   background-color:#f7f7f7;
     margin-bottom:10px !important;
     margin-left:5px;
     margin-right:5px;
}
.dash_ChartSelectList h4{
    color:#777;
    text-align:center;
    font-size:16px;
    margin-top:5px;
    margin-bottom:5px;
}
.dash_ChartSelectList h4 span{
    color:#777;
    font-weight:500;
    border-bottom:2px solid #09ad7e;
     text-transform:uppercase;
}

.dash_ChartSelectList [type="checkbox"]:not(:checked),
.dash_ChartSelectList [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.dash_ChartSelectList [type="checkbox"]:not(:checked) + label,
.dash_ChartSelectList [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
.dash_ChartSelectList [type="checkbox"]:not(:checked) + label:before,
.dash_ChartSelectList [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 17px; height: 17px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 3px;
  margin-top:-3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}

.dash_ChartSelectList [type="checkbox"]:not(:checked) + label:after,
.dash_ChartSelectList [type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 0px; left: 3px;
  font-size: 18px;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s;
}

.dash_ChartSelectList [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.dash_ChartSelectList [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.dash_ChartSelectList [type="checkbox"]:disabled:not(:checked) + label:before,
.dash_ChartSelectList [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.dash_ChartSelectList [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
.dash_ChartSelectList [type="checkbox"]:disabled + label {
  color: #aaa;
}

.dash_ChartSelectList label:hover:before {
  border: 1px solid #09ad7e !important;
}
.dash_ChartSelectList p label{
    color:#777;
    font-size:14px;
    margin-bottom:0px;
    text-transform:uppercase;
    font-weight:500;
}

.dash_ChartSelectList p{
    margin-left:15px;
}
/*----Chart Selected List---*/
.dash_chartSelectListDisplay{
padding:10px;
}
.dash_chartSelectListDisplay h4{
    font-size:16px;
    text-align:center;
    color:#09ad7e;
    text-transform:uppercase;
    font-weight:500 !important;
    margin-top:5px;
}
.dash_chartSelectListDisplay ol {
   list-style: none;
 }
 .dash_chartSelectListDisplay li {
   counter-increment: item;
   margin-bottom: 5px;
 }
 .dash_chartSelectListDisplay li:before {
   margin-right: 10px;
   font-size:14px;
   content: counter(item);
  border: 1px solid #09ad7e !important;
   border-radius: 50%;
   color: #09ad7e;
   height:23px;
   width:23px;
   text-align: center;
   display: inline-block;
    text-transform:uppercase;
 }



/*----Student App Modal styles----*/
.dash_studentAppCountModal  h2{
   color:#333;
    font-weight:700;
    font-size:16px;
    text-align:center;
    margin-top:13px;
    margin-bottom:10px;
  font-family: Signika, serif;
}
.dash_studentAppCountModal .dash_student_NoCount{
    color:#333;
    font-weight:bold;
    font-size:16px;
}

/*----Admin dashBoard Content-----*/
.dash_adminChart_title{
    color:#c52229;
    font-size:16px;
    text-align:center;
    margin-top:5px;
    margin-bottom:5px;
}
.dash_adminChart_Contenttitle{
    color:#006dcc;
    text-transform:uppercase;
    font-size:16px;
    text-align:center;
}
.dash_adminChart_Content1title{
    color:#5cb85c;
    text-transform:uppercase;
    font-size:16px;
    text-align:center;
    margin-top:5px;
    margin-bottom:5px;
}
.dash_adminChart_ContentValue{
    color:#777;
    font-weight:500;
    text-transform:uppercase;
    font-size:16px;
    text-align:center;
}


/*============================================================================================================================
                                                    Instructions on Dashboard
    =========================================================================================================================
*/
.dash_InstListDisplay{
    background-size: contain;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35);
  flex: 1 1 180px;
  margin: 10px;
  position: relative;
  transition: box-shadow .2s;
  cursor: default;
  background-color:#f5f5f5;
  border-top: 4px solid #777;
padding:10px;
}
.dash_InstListDisplay h4{
    font-size:16px;
    text-align:center;
    color:#09ad7e;
    text-transform:uppercase;
    font-weight:500 !important;
    margin-top:5px;
}
.dash_InstListDisplay ol {
   list-style: none;
   padding-left:0px;
 }
 .dash_InstListDisplay li {
   counter-increment: item;
   margin-bottom: 12px;
 }
  .dash_InstListDisplay li label{
     color:#000000 !important;
     font-weight:500 !important;
     display:inline !important;
  font-size:16px !important;
      /*margin-left: 10px;*/
 }
 /*.dash_InstListDisplay li:before {
   margin-right: 10px;
   font-size:14px;
   content: counter(item);
  border: 1px solid #09ad7e !important;
   border-radius: 50%;
   color: #09ad7e;
   height:23px;
   width:23px;
   text-align: center;
   display: inline-block;
    text-transform:uppercase;
    float:left;
   position:relative;
   margin:0px 8px 0px 0px;
 }*/
 .dashInst_listTitle{
     color:#09ad7e;
     font-size:14px;
     font-weight:500;
     text-transform:uppercase;
 }
 .dash_instructions_section{
    background-color:#f5f5f5;
}
.dash_questionIcon{
    /*font-size:22px;*/
    float:right;
    color:#337ab7;
    cursor:pointer;
}
.dash_widgetQuestionIcon{
    float:right;
    color:#FFFFFF;
    cursor:pointer;
}

/*-----------Alert Message  on Dashboard with Media Quaries-----------*/
@media only all and (min-width:768px) and (min-width:899px){
    .dash_alertMessage_display{
    margin-right:7%;
    margin-left:7%;
}
}
@media only all and (min-width:900px) and (max-width:1200px){
    .dash_alertMessage_display{
    margin-right:14%;
    margin-left:14%;
}
}
@media only all and (min-width:1200px){
    .dash_alertMessage_display{
    margin-right:27%;
    margin-left:27%;
}
}

