@CHARSET "UTF-8";
.btn-group > .multiselect{
	width:100% !important;
}
.container {
/*       margin: 50px auto;  */
	margin: 20px auto;
  }
  .progressbar {
      counter-reset: step;
  }
  .progressbar li {
      list-style-type: none;
      width: 20%;
      float: left;
      font-size: 12px;
      position: relative;
      text-align: center;
      text-transform: uppercase;
      color: #7d7d7d;
  }
  .progressbar li:before {
      width: 30px;
      height: 30px;
      content: counter(step);
      counter-increment: step;
      line-height: 30px;
      border: 2px solid #7d7d7d;
      display: block;
      text-align: center;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      background-color: white;
      position: relative;
      z-index: 99 !important;
  }
  .progressbar li:after {
      width: 86%;
      height: 2px;
      content: '';
      position: absolute;
      background-color: #7d7d7d;
      top: 15px;
      left: -43%;
      z-index: 1;
  }
  .progressbar li:first-child:after {
      content: none;
      position: relative;
      z-index: 99 !important;
  }
  .progressbar li.active {
      color: green;
      position: relative;
      z-index: 99;
  }
  .progressbar li.active:before {
      border-color: #55b776;
      background-color:#55b776;
      color:white;
  }
  .progressbar li.active + li:after {
/*       background-color: #55b776; */
  }
.input_xs{
    height: 22px !important;
    padding: 0px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.input-file{
	position:relative !important;
}
.inputfile{
	position:absolute;
    top: 0;
    right: 0;
    width: 100%;
    min-height: 100%;
    filter: alpha(opacity=0);
    -ms-filter: 'alpha(opacity=0)';
    opacity: 0;
    outline: none;
    background: white;
    cursor: pointer;
    display: block;
}
#notif{
	width:200px;
	height:70px;
	position:fixed;
	top:50%;
	left:50%;
	margin-top:-50px;
	margin-left:-100px;
	background: #00a65a;
	border: 2px solid #00a65a;
	border-radius: 10px;
}