.card {
    padding: 15px;
    margin-bottom: 40px;
    margin-top: 10px;
    border-radius: 20px; 
    border: none;

}
.card_shadow{
   box-shadow: 0 1px 2px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);

}
.body-background
{
    margin: 0;
    height:100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.container-header{
    width: 100%;
    float: left;
    text-align: center;
}
.container-header button{
    display: inline-block;
}
#div1{
    float:left;
}
#div2{
    float:right;
}
#div3{
    float:right;
}
.nav-links{
    color: #000
}
.label-bold{
    font-weight: bold;
    font-size: 15px;
}
.label-small{
    font-weight: normal;
    font-size: 10px;
}
.label-medium{
    font-weight: bolder;
    font-size: 12px;
}
.label-bolder{
    font-weight: bolder;
    font-size: 22px;
}
.curved-text {
    background-color: #f2f2f2;
    border-radius: 5px;
    color: #000;
    font-size: 12px;
    border-color: #f2f2f2;
    padding-left: 10px;
    padding-right: 10px;
}
.curved-text-button {
    background-color: #f2f2f2;
    border-radius: 5px;
    color: #000;
    text-align: center;
    font-size: 12px;
    border-color: #f2f2f2;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.curved-text-disabled {
    background-color: #D3D3D3;
    border-radius: 10px;
    color: white;
    border-color: #00CC88;
    padding-left: 10px;
    padding-right: 10px;
}
.current_page_item {
    background-color: red;
    color: white;
}
.div-margin{
    margin-top: 20px;
}
.canvasjs-chart-credit
{
    display: none !important;
}

/*Attendance Switch*/

.switch {
  position: relative;
  display: block;
  vertical-align: top;
  width: 100px;
  height: 30px;
  padding: 3px;
  margin: 0 10px 10px 0;
  background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
  background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  box-sizing:content-box;
}
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  box-sizing:content-box;
}
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 8px;
  font-weight: bolder;
  text-transform: uppercase;
  background: green;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  box-sizing:content-box;
}
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  box-sizing:content-box;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #ffffff;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: #FFFFFF;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: red;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
  background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
  border-radius: 100%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
  background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
  left: 74px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
 
/* Transition
========================== */
.switch-label, .switch-handle {
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

/*Switch end */

.dropdown-menu li {
position: relative;
}
.dropdown-menu .dropdown-submenu {
display: none;
position: absolute;
left: 100%;
top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
right: 100%;
left: auto;
}
.dropdown-menu li:hover .dropdown-submenu {
display: block;
}

.scroll {
  overflow-y: scroll; /* Add the ability to scroll */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

 .tableFixHead  { overflow: auto; height: 100px; background: solid; }
.tableFixHead thead th { position: sticky; top: 0; z-index: 1; }
.tableFixHead th {
  position: sticky;
  top: 0;
  background: #fff;
}

.container-fluid {
  width: auto !important;
  margin-right: 25px !important;
  margin-left: 25px !important;
}


