@charset "utf-8";
/* Merchants CSS Document */
.imgzoom {

  transition: transform .2s;
  width: 92px;
  height: 52px;
  border:1px solid black;
}

.imgzoom:hover {
  -ms-transform: scale(2.0); /* IE 9 */
  -webkit-transform: scale(2.0); /* Safari 3-8 */
  transform: scale(2.0); 
}
.off_outer {
	position: relative;
	height: 40px;
	width: 26px;
	border: 2px solid red;
	color: green;
	font-size: 10px;
	text-align: center;
	border-radius: 100px;
	animation-name: outer2;
    animation-duration: 0.5s;
}

.off_inner {
	position: relative;
	height:22px;
	width:22px;
	background:red;
	margin:0px auto;
	border-radius: 100px;
	color:white;
	line-height:21px;
	animation-name: inner2;
  	animation-duration: 0.5s;  
  	animation-fill-mode: forwards;
}
.on_outer {
	position: relative;
	height: 40px;
	width: 26px;
	border: 2px solid #0CC10C;
	color: green;
	font-size: 10px;
	text-align: center;
	border-radius: 100px;
	animation-name: outer;
    animation-duration: 0.5s;
}

.on_inner {
	position: relative;
	height: 22px;
	width: 22px;
	background-color: red;
	margin:0px auto;
	border-radius: 100px;
	color: white;
	line-height: 21px;
	animation-name: inner;
  	animation-duration: 0.5s;  
  	animation-fill-mode: forwards;
}

@keyframes inner {
  from {bottom: 2px;}
  to {bottom: -15px; background-color: #0CC10C;}
}
@keyframes outer {
  0%   {border-color: red;}
  100% {border-color: #0CC10C;}
}
@keyframes inner2 {
  from {bottom: -15px;}
  to {bottom: 0px; background-color: red;}
}
@keyframes outer2 {
  0%   {border-color: #0CC10C;}
  100% {border-color: red;}
}

padl {
	padding-left: 0px !important;
}

padr {
	padding-right: 0px !important;
}



.skin-blue .sidebar-menu>li.header {
	color: #ffffff !important;
}

.graph	{
	background-color: #ffffff;
	width: 100%;
}