﻿.p0 {
    padding:0px;
}

.p5 {
    padding: 5px;
}

.pl10{
    padding-left:10px;
}

.pr5{
    padding-right:5px;
}


.headerAlign{
    display:flex;
    align-items:center;
}

.white {
    color:white;
}

.font-small{
    font-size:small
}

.font-smaller {
    font-size:smaller
}

.font-large {
    font-size:large
}

.bold {
    font-weight:bold;
}

.h40{
   height:40px; 
}

.w50 {
    width: 50px;
}

.w60 {
    width: 60px;
}

.w65 {
    width: 65px;
}


.w80 {
    width: 80px;
}

.w100 {
    width: 100px;
}

.w110 {
    width: 110px;
}

.w90p{
    width:90%;
}

.w100p {
    width: 100%;
}

.w200{
    width:200px;
}

.w120 {
    width: 120px;
}

.w150 {
    width: 150px;
}

.w200 {
    width: 200px;
}

.w300 {
    width: 300px;
}

.w90p{
    width:90%!important;
}

.w50p {
    width: 50% !important;
}

.hide {
    display:none;
}

.left{
    float:left;
}

.right {
    float:right;
}

.ml5 {
    margin-left: 5px;
}

.mr5 {
    margin-right: 5px;
}

.ml10{
    margin-left:10px;
}

.ml20 {
    margin-left: 20px;
}

.mt10{
    margin-top:10px;
}

.mt5 {
    margin-top: 5px;
}



.selectWidth {
    width: auto;
}

.errorText {
    color:red;
    font-size:small;
    font-weight:bold;
}

.warningText {
    color:orange;
}

.successText {
    color: #28a745;
    font-weight: bold;
}

.infoText {
    color:dodgerblue;
    font-weight: bold;
}

.paraStyle{
    background:#EFEFEF;
    border-radius:5px;
    padding:5px;
}

.textAlignCenter {
    text-align:center;
}

.level2Heading {
    font-weight: bold;
    color: #094166;
}


ol.upperRoman {
    list-style-type: upper-roman;
}

ol.upperAlpha {
    list-style-type: upper-alpha;
}

ol.lowerAlpha {
    list-style-type: lower-alpha;
}

/*styling for radio button*/
/* Custom Radio Button Start*/

/*.radiotextsty {
    color: #A5A4BF;
    font-size: 18px;
}

.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/

    /* Hide the browser's default radio button */
    /*.customradio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }*/

/* Create a custom radio button */
/*.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #BEBEBE;
}*/

/* On mouse-over, add a grey background color */
/*.customradio:hover input ~ .checkmark {
    background-color: transparent;
}*/

/* When the radio button is checked, add a blue background */
/*.customradio input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #BEBEBE;
}*/

/* Create the indicator (the dot/circle - hidden when not checked) */
/*.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}*/

/* Show the indicator (dot/circle) when checked */
/*.customradio input:checked ~ .checkmark:after {
    display: block;
}*/

/* Style the indicator (dot/circle) */
/*.customradio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #A3A0FB;
}*/

/* Custom Radio Button End*/

/* Navbar styles */

.nav-link {
    display:block;
    padding:0px;
}

.navbar-default {
    background-color: #094166;
}

.navbar-footer {
    background-color: #ddf1ff;
}

.bgcolorMenu {
    background-color: #e3f2fd;
}

.bgColorTestWeekRow {
    background-color: #0add37;
}

.bgColorClosedWeekRow {
    background-color: #d2d5d7;
}

.bgColorMissingAttendance {
    background-color: #FFEAD9;
}

#menuBar .navbar-nav li > a {
    text-transform: capitalize;
    color: #094166;
    /*border-top-left-radius: 5px;
    border-top-right-radius: 5px;*/
    transition: background-color .2s, color .2s;
}

    #menuBar .navbar-nav li > a:hover, #menuBar .navbar-nav li > a:focus {
        background-color: #75A2C0;
        /*border-top-left-radius: 5px;
        border-top-right-radius: 5px;*/
        color: #fff;
    }

#menuBar .navbar-nav li.active > a {
    background-color: #094166;
    /*border-top-left-radius:5px;
    border-top-right-radius:5px;*/
    color: #fff;
}

.bgBar {
    background-color: #b7defa;
}

.bgTableHead {
    background-color: #1192ee;
}

.br5{
    border-radius:5px;
}

.m5 {
    margin:5px;
}

.p5 {
    padding:5px;
}

.fw{
   color:white;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .nav {
        width: 100%;
    }

    .nav-item {
        width: 100%;
        float: none;
    }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
    .nav-mobile {
        display: block;
    }
}
.nav-mobile {
    display: none; /* Hide from browsers that don't support media queries */
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    background: #34495E url(../img/nav.svg) no-repeat center center;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}



@media only screen and (max-width: 800px) {
   
    nav ul:first-child
    {
        float:right;
    }
    /* Force table to not be like tables anymore */
    #no-more-tables table,
    #no-more-tables thead,
    #no-more-tables tbody,
    #no-more-tables th,
    #no-more-tables td,
    #no-more-tables tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #no-more-tables thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #no-more-tables tr {
        border: 1px solid #094166;
    }

    #no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
        height:40px;
    }

        #no-more-tables td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
        }

        /*
	Label the data
	*/
        #no-more-tables td:before {
            content: attr(data-title);
            height:40px;
        }
}

.btn-group-xs > .btn, .btn-xs {
    padding: .25rem .4rem;
    font-size: .875rem;
    line-height: .5;
    border-radius: .2rem;
}

.vertScroll {
    height: 500px;
    overflow-y: scroll;
}

.textAlignJ {
    text-align:justify;
}

.

/*
@media only screen and (min-width:769px) {
    .dropdown:hover dropdown-menu {
        margin-top: 0px !important;
        display: block;
    }
    .dropdown-menu:hover {
        margin-top: 0px !important;
        display: block;
    }

    .dropdown-submenu {
        position: relative !important;
    }

        .dropdown-submenu > .dropdown-menu {
            top: 0 !important;
            left: 100% !important;
            margin-top: -6px !important;
            margin-left: -1px !important;
            border-radius: 0 !important;
        }

        .dropdown-submenu:hover > .dropdown-menu {
            display: block !important;
        }

        .dropdown-submenu > a:after {
            display: block;
            content: "\f105";
            font-family: 'FontAwesome';
            margin-top: -18px;
            right: 15px;
            position: absolute;
            font-weight: 300;
        }
}

*/