.fz-sm {
    font-size: 12px !important;
}

.fz-md {
    font-size: 16px !important;
}

.fz-lg {
    font-size: 24px !important;
}

.fz-xl {
    font-size: 32px !important;
}



/* header */

.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
 /*  position: fixed; */
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 14px 20px;
  border-right: 1px solid #388ccc;
  text-decoration: none;
  color: #fff;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #03468b;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .headermenu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  width: 100%;
  background: #116fb7;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .headermenu {
  max-height: 240px;
   position: relative;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
/*======radio button=======================*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #ddd;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: #116fb7;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
/*==========================file upload==============*/
.fileUpload {
    background: #00bcbe;
    /*-webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;*/
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    margin:10px; /*20px/16px 0*/
    overflow: hidden;
    padding: 0.875em; /*14px/16px*/
    position: relative;
    text-align: center;
    width: 120px;
    cursor: pointer;
}

    .fileUpload:hover, .fileUpload:active, .fileUpload:focus {
        background: #00a2a4;
        cursor: pointer;
    }

    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
        width: 148px;
        height: 46px;
        cursor: pointer;
    }

input[type="file"] {
   /* position: fixed;*/
    right: 100%;
    bottom: 100%;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}
.testround {
    /*width: 100px;*/
    padding: 16px 10px;
    border: 2px solid #f1f1f1;
    border-radius: 15px;
    -moz-border-radius: 15px;
    position: fixed;
    z-index: 1021;
    background: #fff;
    right: 0;
    top: 20%;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.15);
}
/*===========alert msg======*/


.alert {
    padding: .7143rem 1.071rem;
    margin-bottom: 1.429rem;
    border-radius: 2px;
    border: 1px solid transparent;
    color: #FFF;
}

    .alert.alert-square {
        border-radius: 0;
    }

    .alert .close {
        position: relative;
    }

    .alert.alert-dismissable,
    .alert.alert-dismissible {
        padding-right: 2.5rem;
    }

        .alert.alert-dismissable .close,
        .alert.alert-dismissible .close {
            top: -2px;
            right: -4px;
            color: inherit;
        }

    .alert.alert-primary {
        background-color: #2196F3;
        border-color: #2196F3;
    }

    .alert.alert-secondary {
        background-color: #323a45;
        border-color: #323a45;
    }

    .alert.alert-success {
        background-color: #53c500;
        border-color: #64DD17;
    }

    .alert.alert-info {
        background-color: #29B6F6;
        border-color: #29B6F6;
    }

    .alert.alert-warning {
        background-color: #FFD600;
        border-color: #FFD600;
    }

    .alert.alert-danger {
        background-color: #ff4040;
        border-color: #f72e2f;
    }

/*===================Login Page===================*/

.shadow {
    -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 0 2px 3px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 2px 3px 0 rgba(0,0,0,.15);
    width: 100%;
    height: auto;
}

.shadow2 {
    position: relative;
}

    .shadow2:before, .shadow2:after {
        z-index: -1;
        position: absolute;
        content: "";
        bottom: 15px;
        left: 10px;
        width: 50%;
        top: 80%;
        max-width: 300px;
        background: #555;
        -webkit-box-shadow: 0 15px 10px #555;
        -moz-box-shadow: 0 15px 10px #555;
        box-shadow: 0 15px 10px #555;
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    .shadow2:after {
        -webkit-transform: rotate(3deg);
        -moz-transform: rotate(3deg);
        -o-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        right: 10px;
        left: auto;
    }
.modalpopup1 {
    width: 70%;
   
    margin: 0 auto;
  
}
.welcomesectiontag {
    width: 50%;
    text-align: right;
    position: absolute;
    z-index: 999;
    padding-right: 2%;
    float: right;
    right: 0;
}
.AdminSectiontab {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.AdminSectiontab span {
   background:#388ccc;
   padding:5px;
   color:#fff;
}

.closeButton {
   position: absolute;
cursor: pointer;
background: #ffffff;
    background-color: rgb(255, 255, 255);
border-radius: 22.5px;
color: #fff;
border: none;
right: 242px;
top: 52px;
   
}
    /* 48em = 768px */
    @media (min-width: 48em) {
        .header li {
            float: left;
        }

            .header li a {
                padding: 8px 30px;
            }

        .header .headermenu {
            clear: none;
            float: right;
            max-height: none;
        }

        .header .menu-icon {
            display: none;
        }
    }

    @media only screen and (max-width: 30em) {

        .banner_text {
            float: left;
            text-align: center;
            width: 100% !important;
        }
    }


    @media (max-width: 48em) {
        .banner_text {
            float: left;
            text-align: center;
            width: 70%;
        }

            .banner_text h1 {
                font-size: 12pt;
                margin: 0;
                padding: 0;
            }

        .logo {
            border: 0 none;
            float: left;
        }

        .cce_logo img {
            height: 78px;
        }
    }


    

.cal_Theme1 .ajax__calendar_container {
    background-color: #DEF1F4;
    border: solid 1px #77D5F7;
    width: 180px;
}

.cal_Theme1 .ajax__calendar_header {
    background-color: #ffffff;
    margin-bottom: 4px;
}

.cal_Theme1 .ajax__calendar_title,
.cal_Theme1 .ajax__calendar_next,
.cal_Theme1 .ajax__calendar_prev {
    color: #004080;
    padding-top: 3px;
}

.cal_Theme1 .ajax__calendar_body {
    background-color: #ffffff;
    border: solid 1px #77D5F7;
}

.cal_Theme1 .ajax__calendar_dayname {
    text-align: center;
    font-weight: bold;
    margin-bottom: 4px;
    margin-top: 2px;
    color: #004080;
    width: 23px;
}

.cal_Theme1 .ajax__calendar_day {
    color: #004080;
    text-align: center;
}

.cal_Theme1 .ajax__calendar_hover .ajax__calendar_day,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_month,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_year,
.cal_Theme1 .ajax__calendar_active {
    color: #004080;
    font-weight: bold;
    background-color: #DEF1F4;
}


.cal_Theme1 .ajax__calendar_today {
    font-weight: bold;
}

.cal_Theme1 .ajax__calendar_other,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_today,
.cal_Theme1 .ajax__calendar_hover .ajax__calendar_title {
    color: #bbbbbb;
}
