@charset "utf-8";

/* FOR FIXED WIDTH BUTTON */
.btn_custom 
{width:80px !important;}

.input_custom 
{width:200px !important;}

.container_fluid_custom
{max-width:900px;}

/* This is pretty useful in giving a visual indication to the user when a form field is required.
There will now be a nice little “*” after the label for “Required Field”. */

.form-group .control-label:after 
{
  content:"*";
  color:red;
}

.form-group .control-label_2:after 
{
  content:"**";
  color:red;
}
