/*
	uil ripple css
 */
@-webkit-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@-webkit-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@-moz-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@-ms-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@-moz-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@-webkit-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@-o-keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}
@keyframes uil-ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0 0 0 0;
  }
  33% {
    width: 44%;
    height: 44%;
    margin: -22% 0 0 -22%;
    opacity: 1;
  }
  100% {
    width: 88%;
    height: 88%;
    margin: -44% 0 0 -44%;
    opacity: 0;
  }
}

.loading-div {
	position:absolute;
	top:40px;
	left: 0;
	right: 0;
	bottom: 0;
	background: white;
	z-index: 2;
	border: 2px dashed #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
}

.spinner {
  margin: 100px auto;
  width: 200px;
  height: 80px;
  text-align: center;
  font-size: 10px;
}

.sub-margin > div {
   margin: 1px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 8px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.spinner .rect6 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.spinner .rect7 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/*flashing with blue color usually use for adding new column in table*/
@-webkit-keyframes flashing {
    from { background-color: #08C; }
    to { background-color: inherit; }
}
@-moz-keyframes flashing {
    from { background-color: #08C; }
    to { background-color: inherit; }
}
@-o-keyframes flashing {
    from { background-color: #08C; }
    to { background-color: inherit; }
}
@keyframes flashing {
    from { background-color: #08C; }
    to { background-color: inherit; }
}

@-webkit-keyframes black-flashing {
    from { background-color: #08C; }
    to { background-color: black; }
}
@-moz-keyframes black-flashing {
    from { background-color: #08C; }
    to { background-color: black; }
}
@-o-keyframes black-flashing {
    from { background-color: #08C; }
    to { background-color: black; }
}
@keyframes black-flashing {
    from { background-color: #08C; }
    to { background-color: black; }
}

@-webkit-keyframes badge-flashing {
    from { background-color: #ccc; }
}
@-moz-keyframes badge-flashing {
    from { background-color: #ccc; }
}
@-o-keyframes badge-flashing {
    from { background-color: #ccc; }
}
@keyframes badge-flashing {
    from { background-color: #ccc; }
}

@-webkit-keyframes i-flashing {
    from { color: #ccc; }
}
@-moz-keyframes i-flashing {
    from { color: #ccc; }
}
@-o-keyframes i-flashing {
    from { color: #ccc; }
}
@keyframes i-flashing {
    from { color: #ccc; }
}

@keyframes shake {
  0% { margin-left: 0; }
  25% { margin-left: 0.5rem; }
  75% { margin-left: -0.5rem; }
  100% { margin-left: 0; }
}

.flashing {
    -webkit-animation: flashing 1s ease-in-out; /* Safari 4+ */
    -moz-animation:    flashing 1s ease-in-out; /* Fx 5+ */
    -o-animation:      flashing 1s ease-in-out; /* Opera 12+ */
    animation:         flashing 1s ease-in-out; /* IE 10+ */
}

.infinite-flashing {
    -webkit-animation: black-flashing 1s infinite ease-in-out; /* Safari 4+ */
    -moz-animation:    black-flashing 1s infinite ease-in-out; /* Fx 5+ */
    -o-animation:      black-flashing 1s infinite ease-in-out; /* Opera 12+ */
    animation:         black-flashing 1s infinite ease-in-out; /* IE 10+ */
}

.error-box {
    animation: shake 0.2s ease-in-out 0s 2;
}