.producto_activo{
/*color: #c04b4f;
font-weight: 600;*/
/*border-bottom: 2px solid #2b699d78;*/
border-bottom: 4px solid #2b699d;
}
.viewer-button {
background-color: #f44336 !important;	
}
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
.shadow {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important
}
.shadow-sm{
box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.cursor-pointer {
    cursor: pointer;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    cursor: not-allowed;
}
/* ANIMACION PARPADEO EN ROJO*/
.to-blink {
	cursor: pointer;
	-webkit-animation: jumpInc 2s infinite;
	-moz-animation: jumpInc 2s infinite;
	-o-animation: jumpInc 2s infinite;
	animation: jumpInc 2s infinite;
}

@-webkit-keyframes jumpInc {
	0%   {
		color: #2b699d;
	}
	50%  {
		color: red;
	}
	100% {
		color: #2b699d;
	}
}
@-moz-keyframes jumpInc {
	0%   {
		color: #2b699d;
	}
	50%  {
		color: red;
	}
	100% {
		color: #2b699d;
	}
}
@-o-keyframes jumpInc {
	0%   {
		color: #2b699d;
	}
	50%  {
		color: red;
	}
	100% {
		color: #2b699d;
	}
}
@keyframes jumpInc {
	0%   {
		color: #2b699d;
	}
	50%  {
		color: red;
	}
	100% {
		color: #2b699d;
	}
}