/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Dec 20, 2015, 5:04:06 PM
    Author     : mithun
*/

.m-loading-icon {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  z-index: 9999;
  background: #fff;
  opacity: 1;
  top: 0px;
}
.m-loading-icon .center {
  top: 0;
  left: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 120px;
  height: 120px;
  font-size: 1em;
  text-align: center;
  z-index: 100;
}
.m-loading-icon .loading-message {
  margin-top: 76px;
  position: absolute;
  top: 0;
  left: 6px;
}
.m-loading-icon .spinner {
  position: relative;
}
.m-loading-icon .cubemove {
  -webkit-animation: cubemove 2s infinite ease-in-out;
  animation: cubemove 2s infinite ease-in-out;
}
.m-loading-icon .cube1,
.m-loading-icon .cube2,
.m-loading-icon .cube3,
.m-loading-icon .cube4 {
  background-color: #1f8dd6;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.m-loading-icon .cube2 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
  background-color: #fbb44c;
}
.m-loading-icon .cube3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  background-color: #fc797a;
}
.m-loading-icon .cube4 {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
  background-color: #2abb9b;
}

.m-loading-icon .cube4 {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
  background-color: #2abb9b;
}

@-webkit-keyframes cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg)
      scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg)
      scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

.checkbox label {
  padding-left: 24px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + .box:before,
input[type="checkbox"] + .box:after {
  transition: all 0.3s;
}

input[type="checkbox"] + .box:after {
  position: absolute;
  left: 4px;
  top: 3px;
  margin-top: -5px;
  margin-left: -4px;
  display: inline-block;
  content: " ";
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 2px;
  background-color: #fff;
  z-index: 1000;
}

input[type="checkbox"]:checked + .box:after {
  background-color: #2196f3;
  border-color: #1751bb24;
}

input[type="checkbox"]:checked + .box:before {
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  top: 0px;
  width: 6px;
  height: 13px;
  border-width: 2px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  border-color: #fff;
  content: "";
  z-index: 10000;
}

.table.dataTable {
  width: 100% !important;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #dde9df;
}

* {
  font-family: sans-serif;
}

td {
  color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 600px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.list-group-item:nth-child(odd) {
  background: #eee;
}

.border_left_1 {
  border-left: 4px solid #7266ba;
}
.border_left_2 {
  border-left: 4px solid #e36159;
}
.border_left_3 {
  border-left: 4px solid #563d7c;
}
.border_left_4 {
  border-left: 4px solid #428bca;
}
.border_left_5 {
  border-left: 4px solid #3c763d;
}
.border_left_6 {
  border-left: 4px solid #edbc6c;
}

.no_padding {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.no_margin {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Text colors */
.text-white {
  color: #ffffff !important;
}
.text-red {
  color: #f56954 !important;
}
.text-yellow {
  color: #f39c12 !important;
}
.text-aqua {
  color: #00c0ef !important;
}
.text-blue {
  color: #0073b7 !important;
}
.text-light-blue {
  color: #3c8dbc !important;
}
.text-green {
  color: #00a65a !important;
}
.text-navy {
  color: #001f3f !important;
}
.text-teal {
  color: #39cccc !important;
}
.text-olive {
  color: #3d9970 !important;
}
.text-lime {
  color: #01ff70 !important;
}
.text-orange {
  color: #ff851b !important;
}
.text-fuchsia {
  color: #f012be !important;
}
.text-purple {
  color: #932ab6 !important;
}
.text-maroon {
  color: #85144b !important;
}
/* Background colors */
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black {
  color: #f9f9f9 !important;
}
.bg-gray {
  background-color: #eaeaec !important;
}
.bg-black {
  background-color: #222222 !important;
}
.bg-red {
  background-color: #f56954 !important;
}
.bg-yellow {
  background-color: #f39c12 !important;
}
.bg-aqua {
  background-color: #00c0ef !important;
}
.bg-blue {
  background-color: #0073b7 !important;
}
.bg-light-blue {
  background-color: #3c8dbc !important;
}
.bg-green {
  background-color: #00a65a !important;
}
.bg-navy {
  background-color: #001f3f !important;
}
.bg-teal {
  background-color: #39cccc !important;
}
.bg-olive {
  background-color: #3d9970 !important;
}
.bg-lime {
  background-color: #01ff70 !important;
}
.bg-orange {
  background-color: #ff851b !important;
}
.bg-fuchsia {
  background-color: #f012be !important;
}
.bg-purple {
  background-color: #932ab6 !important;
}
.bg-maroon {
  background-color: #85144b !important;
}

.f_right {
  float: right !important;
}

.paddingA5 {
  padding: 5px !important;
}
.paddingR0 {
  padding-right: 0px !important;
}
.paddingL5 {
  padding-left: 5px !important;
}
.paddingT5 {
  padding-top: 5px !important;
}
.paddingB10 {
  padding-bottom: 10px !important;
}
.marginTB10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.marginT_10 {
  margin-top: -10px !important;
}
.marginR_10 {
  margin-right: -10px !important;
}
.marginT2 {
  margin-top: 2px !important;
}
.marginT10 {
  margin-top: 10px !important;
}
.marginR0 {
  margin-right: 0px;
}
.marginL0 {
  margin-left: 0px;
}
.marginL5 {
  margin-left: 5px;
}
.margin3 {
  margin: 3px;
}
.margin40 {
  margin: 40px;
}
.margin5 {
  margin: 5px;
}

.file-row img {
  height: 75px;
}
.file-row {
  clear: both;
  padding: 10px;
  height: 95px;
  border: 1px solid #2baab1;
}

.btn-circle {
  border-radius: 25px !important;
}
.btn-circle-right {
  border-radius: 0 25px 25px 0 !important;
}
.btn-circle-left {
  border-radius: 25px 0 0 25px !important;
}
.btn-circle-bottom {
  border-radius: 0 0 25px 25px !important;
}
.btn-circle-top {
  border-radius: 25px 25px 0 0 !important;
}

.hand {
  cursor: pointer;
}

.left-inner-addon {
  position: relative;
}
.left-inner-addon input {
  padding-left: 30px;
}
.left-inner-addon i {
  position: absolute;
  padding: 10px 12px;
  pointer-events: none;
}

.right-inner-addon {
  position: relative;
}
.right-inner-addon input {
  padding-right: 30px;
}
.right-inner-addon i {
  position: absolute;
  right: 0px;
  padding: 10px 12px;
  pointer-events: none;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-beat,
.la-ball-beat > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.la-ball-beat {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-beat.la-dark {
  color: #333;
}
.la-ball-beat > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-beat {
  width: 54px;
  height: 18px;
}
.la-ball-beat > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  -webkit-animation: ball-beat 0.7s -0.15s infinite linear;
  -moz-animation: ball-beat 0.7s -0.15s infinite linear;
  -o-animation: ball-beat 0.7s -0.15s infinite linear;
  animation: ball-beat 0.7s -0.15s infinite linear;
}
.la-ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.la-ball-beat.la-sm {
  width: 26px;
  height: 8px;
}
.la-ball-beat.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}
.la-ball-beat.la-2x {
  width: 108px;
  height: 36px;
}
.la-ball-beat.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}
.la-ball-beat.la-3x {
  width: 162px;
  height: 54px;
}
.la-ball-beat.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.loader_main {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  z-index: 9999;
  background: rgba(66, 139, 202, 0.57);
  opacity: 1;
  top: 0px;
}
.loader {
  height: 4px;
  width: 100%;
  z-index: 99999999999;
  position: absolute;
  top: 45%;
  overflow: hidden;
  background-color: #ddd;
}
.loader:before {
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #e36159;
  animation: loading 2s linear infinite;
}

@keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
