@charset "utf-8";
/* CSS Document */

.card-container {
	height: 100%;
}

.card {
    padding-top: 20px;
    background-color: rgba(214, 224, 226, 0.2);
    border-top-width: 0;
    border-bottom-width: 2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.card a {
    text-decoration:none;
}

.card .card-heading {
    padding: 0 20px;
    margin: 0;
}

.card .card-heading.image img {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-right: 15px;
    vertical-align: top;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.card .card-body {
    padding: 0 20px;
    margin-top: 20px;
}

.card.hovercard {
    position: relative;
    padding-top: 0;
    overflow: hidden;
    background-color: #fff;
}

.card.hovercard .cardheader {
    background: url("card-profile-bk.jpg");
    background-size: cover;
	background-position: center;
    height: 250px;
	text-align: right;
}

.card.hovercard .avatar {
    position: relative;
    top: -45px;
    margin-bottom: -50px;
	text-align: center;
}

.card.hovercard .avatar img {
    width: 128px;
    height: 128px;
    max-width: 128px;
    max-height: 128px;
    -webkit-border-radius: 7%;
    -moz-border-radius: 7%;
    border-radius: 10%;
    border: 3px solid rgba(200,200,200,0.9);
	background-color: rgba(128,128,128,0.6);
}

.card.hovercard .card-info {
    padding: 10px 8px 10px;
	text-align: center;
}

.card.hovercard .card-info .card-title {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1;
    color: #262626;
    vertical-align: middle;
}

.card.hovercard .card-info .card-desc {
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #737373;
    text-overflow: ellipsis;
}

.card .icon-block {
    width:100%;
	text-align: center;
	padding: 5px 0 10px 0;
}
.card .icon-block a {
    text-decoration:none;
}
.card .icon-block i, .card-detail i {
	display: inline-block;
    font-size: 18px;
    color: #777;
    text-align: center;
    border: 1px solid #777;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin:0 5px;
}

.card i:hover, .card-detail i:hover {
  background-color:#ddd;
  color:#777;
}
.card-detail {
	padding: 10px;
    font-size:15px;
	border-top: 1px solid #ddd;
	line-height: 18px;
}
.card-detail i {
	font-size: 20px;
	border: none;
	padding-top: 2px;
}

.card-button {
	text-align: center;
	padding: 15px;
}

@media (max-width:768px) {
	
.card.hovercard .cardheader {
    height: 200px;
}

}