/* For 1024px Screen Size */
@media only screen and (width: 1024px) {
    .loginBody{
        background: transparent;
        background-image: url("../../assets/images/1366x768.jpg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .loginForm{
        padding-left: 75%;
        margin-top: 10px;
    }

    .loginTxt{
        color: #011F79;
    }
}

/* For 1366px Screen Size */
@media only screen and (width: 1366px) {
    .loginBody{
        background: transparent;
        background-image: url("../../assets/images/1366x768.jpg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .loginForm{
        padding-left: 75%;
        margin-top: 10px;
    }

    .loginTxt{
        color: #011F79;
    }
}

/* For 1280px Screen Size */
@media only screen and (width: 1280px) {
    .loginBody{
        background: transparent;
        background-image: url("../../assets/images/1366x768.jpg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .loginForm{
        padding-left: 75%;
        margin-top: 10px;
    }

    .loginTxt{
        color: #011F79;
    }
}

/* For 1440px Screen Size */
@media only screen and (width: 1440px) {
    .loginBody{
        background: transparent;
        background-image: url("../../assets/images/1366x768.jpg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .loginForm{
        padding-left: 75%;
        margin-top: 10px;
    }

    .loginTxt{
        color: #011F79;
    }
}

/* For Mobile to Tablet Screen Size */
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) {
    .loginBody{
        background: #a9e4f7;
        background: -moz-linear-gradient(top, #a9e4f7 0%, #0fb4e7 100%);
        background: -webkit-linear-gradient(top, #a9e4f7 0%,#0fb4e7 100%);
        background: linear-gradient(to bottom, #a9e4f7 0%,#0fb4e7 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=0 );
    }

    .loginTxt{
        color: #011F79;
    }
}



/*Circular*/
.numberCircle {
  
  position:relative;
  width:20%;
  padding-bottom:20%;
  background:gold;
  border-radius:50%;
  

}
/*Border Lines*/

.borderline {

  position:relative;
  border-top: thick solid #404040; 
  border-left: thick solid #404040;
  border-right: thick solid #404040;
  border-bottom: thick solid #404040  
}


.verticallineright{

  border-right: thick solid #404040;
}
/* Table Design */
.kpTable{
    width: 100% !important;
}

/* Custom Table Width */

.tw5{
    width: 5%;
}
.tw6{
    width: 6%;
}
.tw10{
    width: 10%;
}
.tw11{
    width: 11%;
}
.tw13{
    width: 13%;
}
.tw15{
    width: 15%;
}
.tw16{
    width: 16%;
}
.tw18{
    width: 18%;
}
.tw20{
    width: 20%;
}
.tw25{
    width: 25%;
}
.tw30{
    width: 30%;
}

.f20{
    font-size: 20px;
}
.f18{
    font-size: 18px;
}

.m-t-55{
    margin-top: 55px;
}

.user-detailskp{
    background-image: url("../../assets/images/lb1.jpg");
    background-size: 100% 100%;
    width: 250px;
    height: 130px;
}

/* Remove Spinners from Number Fields */
/* For Firefox */
input[type='number'] {
    -moz-appearance:textfield;
}
/* Webkit browsers like Safari and Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove Spinners from Date Fields */
/* For Firefox */
input[type='date'] {
    -moz-appearance:textfield;
}
/* Webkit browsers like Safari and Chrome */
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.add, .delete, .delete1{
    cursor: pointer;
}
#msg{
    color: red;
}
.addrow, .deleterow{
    cursor: pointer;   
}
.dbicon{
    font-size: 25px;
}
.dbtext{
    font-size: 18px;
    font-weight: bold;
    vertical-align: top;
}
.dbbadge{
    font-size: 22px;
    font-weight: bold;
    /*color: black;*/
}
.whtext{
    color: white;
}
.redtext{
    color: red;
}

/*==========================Loader CSS=============================*/
.loader-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #ffffff;
}

.loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 40px;
  width: 80px;
  box-sizing: border-box;
}
.loader .loader-item {
  position: relative;
  float: left;
  height: 40px;
  width: 4px;
  margin: 0 2px;
  background-color: #ff9328;
}
.loader .loader-item:nth-child(1) {
  -webkit-animation: loader-item-1 2s linear infinite;
          animation: loader-item-1 2s linear infinite;
}
.loader .loader-item:nth-child(2) {
  -webkit-animation: loader-item-2 2s linear infinite;
          animation: loader-item-2 2s linear infinite;
}
.loader .loader-item:nth-child(3) {
  -webkit-animation: loader-item-3 2s linear infinite;
          animation: loader-item-3 2s linear infinite;
}
.loader .loader-item:nth-child(4) {
  -webkit-animation: loader-item-4 2s linear infinite;
          animation: loader-item-4 2s linear infinite;
}
.loader .loader-item:nth-child(5) {
  -webkit-animation: loader-item-5 2s linear infinite;
          animation: loader-item-5 2s linear infinite;
}
.loader .loader-item:nth-child(6) {
  -webkit-animation: loader-item-6 2s linear infinite;
          animation: loader-item-6 2s linear infinite;
}
.loader .loader-item:nth-child(7) {
  -webkit-animation: loader-item-7 2s linear infinite;
          animation: loader-item-7 2s linear infinite;
}
.loader .loader-item:nth-child(8) {
  -webkit-animation: loader-item-8 2s linear infinite;
          animation: loader-item-8 2s linear infinite;
}
.loader .loader-item:nth-child(9) {
  -webkit-animation: loader-item-9 2s linear infinite;
          animation: loader-item-9 2s linear infinite;
}
.loader .loader-item:nth-child(10) {
  -webkit-animation: loader-item-10 2s linear infinite;
          animation: loader-item-10 2s linear infinite;
}
.loader:after {
  content: 'Loading...';
  font-size: 16px;
  font-family: "Arial";
  color: #ff9328;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  margin: auto;
}
@-webkit-keyframes loader-item-1 {
  1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  11% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  21% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-1 {
  1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  11% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  21% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-2 {
  7% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  17% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  27% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-2 {
  7% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  17% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  27% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-3 {
  13% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  23% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  33% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-3 {
  13% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  23% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  33% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-4 {
  19% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  29% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  39% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-4 {
  19% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  29% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  39% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-5 {
  25% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  35% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-5 {
  25% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  35% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-6 {
  31% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  41% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-6 {
  31% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  41% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-7 {
  37% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  47% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  57% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-7 {
  37% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  47% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  57% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-8 {
  43% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  53% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  63% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-8 {
  43% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  53% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  63% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-9 {
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  59% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  69% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-9 {
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  59% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  69% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-10 {
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  65% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  75% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-10 {
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  65% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  75% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/*=================================================================*/

/*Horizontal Chart*/

/* Mixings &  Variables */
@barHeight: 20px;
@borders: #717D95;
@primary: #59BAC0;

.transition (@property) {
  -webkit-transition: @property;
  -moz-transition: @property;
  -o-transition: @property;
  transition: @property 
}

.transform(@degree) {
  transform:rotate(@degree);
  -ms-transform:rotate(@degree);
  -webkit-transform:rotate(@degree); 
}

.clearfix,
.clearfix:before,
.clearfix:after {
   display: block;
   content: " ";   
   clear: both;
   zoom: 1;
}

/* Resets */

* {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box;
  box-sizing: border-box;  
}

body {
  background: #EDF2F6;
  font-family: Arial;
  color: #444;
}

.wrap {
  margin: 0 auto;
  padding: 50px;
  max-width: 1200px;
}

/* Bar Graph Class */

.barGraph {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.graph {
  @indent: 4%;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: calc(100% - @indent);
  left: @indent;
  
  &-barBack {
    border-radius: 2px;
    background: #DAE4EB;
    margin-bottom: 10px;
    display: block;
  }
  
  &-bar {
    background-color: @primary;    
    .transition(all 1s ease-out);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    z-index: 9999;
    display: block;
    height: 20px;  
    width: 0%;
    
    &:hover {
      .transition(all 0.5s ease);
      background: #428D92;
    }
    
    &:last-child {
      margin-bottom: 0;
    }
    
    &:after {
      position: absolute;
      content: attr(data-value);
      display: none;
      
      font-size: 12px;
      border-radius: 4px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      
      line-height: @barHeight;
      height: @barHeight; 
      padding: 0 10px;
      
      margin-left: 5px;
      left: 100%;
      top: 0;
    }
    
    &:hover:after {
      display: block;
    }
  }
  
  &-legend {
    position: absolute;
    margin-right: 10px;
    left: -40px ;
    z-index: 9999;
  }
}


/* Bubble Chart */
.chart {
  border-radius: 3px;
  border: 2px solid fade(@borders, 45%);  
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
  
  &-bubble {
    overflow: hidden;
    background-color: @primary;    
    .transition(all 1s ease-out);
    position: absolute;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    min-height: 10px;  
    min-width: 10px;
    z-index: 999;
    bottom: 0;
    left: 0;
    
    &:hover {
      .transition(all 0.5s ease);
      background: #428D92;
    }
    
    &:after {
      position: absolute;
      content: attr(data-label);
      display: none;
      width: 100%;
      height: 100%;
      
      text-align: center;
      padding-top: 50%;
      line-height: 1px;
      font-size: 15px;
      color: #fff;
    }
    
    &:hover:after {
      display: block;
    }
  }
}

/* Lines for Charts */

.lines {
  @bars: fade(@borders, 40%);
  position: absolute;    
  height: 100%;
  width: 100%;
  z-index: 0;
  left: 0;
  top: 0;
  
  &-horz {
    border-bottom: 1px dashed @bars;
    position: absolute;
    width: 100%;
    height: 0px;
   
    &:nth-of-type(1) { top: 20%; }
    &:nth-of-type(2) { top: 40%; }
    &:nth-of-type(3) { top: 60%; }
    &:nth-of-type(4) { top: 80%; }
  }
  
  &-vert {
    border-right: 1px dashed @bars;    
    position: absolute;
    height: 100%;
    width: 1px;
    
    &:nth-of-type(5) { left: 20%; }
    &:nth-of-type(6) { left: 40%; }
    &:nth-of-type(7) { left: 60%; }
    &:nth-of-type(8) { left: 80%; }
  }
}
/* horizontal bar chart */
.bar1 { width: 100%; border: 1px solid #000; }
.percentage1 { background: #f49441; }
.percentage2 { background: #2bdfe2; }

/* datable scroll css*/

.container_dat {
    width: 30em;
    overflow-x: auto;
    white-space: nowrap;
}

/* notification css*/

    .notify-bar{
        background-size: 40px 40px;
        background-image: linear-gradient(
        135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
        transparent 50%, rgba(255, 255, 255, .05) 50%, 
         rgba(255, 255, 255, .05) 75%,
         transparent 75%, transparent);                   
         box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
         width: 100%;
         border: 1px solid;
         color: #fff;
         text-shadow: 0 1px 0 rgba(0,0,0,.5);
         background-color: #4ea5cd;
         border-color: #3b8eb5;
         padding: 5px;
    }
    
    .notify-bar-height {
        height: 0;
        -webkit-transition: height 0.5s ease;
      -moz-transition: height 0.5s ease;
      -o-transition: height 0.5s ease;
      -ms-transition: height 0.5s ease;
        transition: height 0.5s ease;
    }
    .notify-bar-height-change {
        height: 20px;
    }


    .expand {
    height: 6em;
    width: 100%;
    padding: 12px;
}



/*divide the graph in parts*/

.tile-container{
  position: relative;
  border: solid #BDBDBD 2px;
  margin: 5px 0px;
  width:100%;
  font-size:0; /* add */
}

.tile{
  font-size:20px; /* or whatever you want */
  /*width: 20%;*/
  min-height:22px;
  /*border: 1px #BDBDBD solid;*/
  display: inline-block;
}


.ui-datepicker-calendar {
    display: none;

}​




body {
  font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Verdana, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}


div.container {
  min-width: 980px;
  margin: 0 auto;
}

