@charset "ISO-8859-1";

/*
 * Component: Info Box
 * -------------------
 */
.person-box {
  display: block;
  min-height: 53px;
  background: #ecf0f5;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
  cursor:pointer;
}
.person-box small {
  font-size: 14px;
}
.person-box .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px -10px 5px -10px;
  height: 2px;
}
.person-box .progress,
.person-box .progress .progress-bar {
  border-radius: 0;
}
.person-box .progress .progress-bar {
  background: #fff;
}
.person-box-icon {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;	
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 53px;
  width: 50px;
  text-align: center;
  font-size: 25px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.2);
}
.person-box-icon > img {
  max-width: 100%;
}

.person-box-icon:hover {
  font-size: 30px;
}

.person-box-content {
  padding: 5px 10px;
  margin-left: 45px;
}
.person-box-number {
  display: block;
  font-weight: bold;
  font-size: 18px;
}
.progress-description,
.person-box-footer,
.person-box-text {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.person-box-text {
  text-transform: uppercase;
}
.person-box-more {
  display: block;
}
.progress-description {
  margin: 0;
}

.person-box-footer {
	text-align: center;
}

.person-box-footer:hover {
  color: #fff;
  /*background: rgba(0, 0, 0, 0.15);*/
}
.person-box-footer:visited {
  color: #fff;
  /*background: rgba(0, 0, 0, 0.15);*/
}

.clickable {
	 cursor:pointer;
}
