
/**
 * Matching
 */

#matching_results {
	display: flex;
	flex-wrap: wrap; /* Display items on multiple lines */
	justify-content: space-between;
}

.matched_user {
	display: flex;	
	flex-direction: column;
	align-items: center;
    min-width: 150px;
    width: 160px;
	margin-top: 30px;
	padding: 12px;
	background-color: #FFF;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);; ;
    border-radius: 14px;
}

.matched_user:hover {
	background-color: #fcdc3e;
}

.matched_user > .user_counter_total { 
	justify-content: space-around;
	width: 100%;
	text-align: center;
	padding: 6px 0;
	background-color: #2b73b6;
	color: #FFF;
    border-radius: 100px;
}

.matched_user .user_avatar {
	margin-top: 12px;
}

.matched_user > .reviews {
	color : #838383;
}

@media all and (max-width: 960px) {
	.matched_user {
		min-width: 110px;
		width: 110px;
	}
}

.matched_user > .user_counters {
	display: flex;
	width: 100%; 
	justify-content: space-around;
	margin: 6px 0 12px 0;
}

.matched_user > .user_counters > .user_counter_targetstatus {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
    text-align: center;
	background-color: #2b73b6;
	color: #FFF;
}

.matched_user > .user_counters > .user_counter_targetstatus[amount='0'] {
	background-color: #f7f7f7;
	color : grey;
}