/*CUSTOM CSS */
.alertBox
{
    border:none !important;
    background-color: transparent !important;
    color: #fff !important;
    cursor: default !important; 
}
   label{
    		font-weight: bold;
    }
    .error{
    		color: red;
    }
    .form-group.required .control-label:after {
	  content:"*";
	  color:red;
	}
	.blink{
		color: rgb (0, 137, 226);
		animation: blink 1s infinite;
	 }
	 
	 @keyframes blink{
		0%{opacity: 1;}
		75%{opacity: 1;}
		76%{ opacity: 0;}
		100%{opacity: 0;}
	 }