.challenge_section_header {
	font-size: 20px;
	font-weight: normal;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.challenge_section_header .more {
	float: right;
	display: block;
}
.challenge_section_header .more a {
	color: #ff6600;
    font-size: 0.8em;
    font-weight: normal;
    margin-left: 10px;
    line-height: 20px;
}

@media (min-width: 768px) {
	.challenge_section_header {
		margin-bottom: 10px;
	}
	.challenge_section_header .more {
		display: inline-block;
		float: none;
	}
}

/* flex challenge list */
.flex_challenge_list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	margin-top: -8px;
	margin-bottom: 20px;
}
.flex_challenge_list.space_around {
    justify-content: space-around;
}
.flex_challenge_list.swiper {
	flex-wrap: nowrap;
	overflow-y: hidden;
	overflow-x: scroll;
}
.flex_challenge_list .flex_challenge_wrap {
	padding: 3px;
	flex: 0 0 50%;
}
.flex_challenge_list.swiper .flex_challenge_wrap {
	flex: 0 0 42%;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge {
	background-color: #fff;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
	padding: 0px;
	box-shadow: rgb(0 0 0 / 2%) 0px 0px 2px, rgb(0 0 0 / 8%) 0px 2px 6px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top .image {
	text-align: center;
	margin-bottom: 10px;
	position: relative;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top .image img {
	width: 100%;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top .image .photo_count {
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 5px 10px;
    background-color: rgba(0, 0, 0, .25);
    color: #fafafa;
    font-size: 15px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top .image .challenge_status {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 10px 10px;
    background-color: rgba(0, 0, 0, .25);
    color: #fafafa;
    font-size: 15px;
    width: 100%;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top .title {
	font-family: "proxima-nova","proxima-nova-1","proxima-nova-2","Proxima Nova","Segoe UI",Helvetica,Arial,sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: left;
	padding: 0px 10px;
	display: flex;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .top .title a {
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom {
	width: 100%;
	padding: 0px 10px 15px 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .gadget_rating {
	margin-bottom: 5px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .gadget_rating_counter {
	text-align: center;
	font-size: 13px;
	color: #999;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .username {
	font-size: 12px;
	flex: 1 0 100%;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .username .username_link {
	margin-right: 15px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .stats {
	width: 100%;
	margin-top: 10px;
	color: #aaa;
	font-size: 12px;
	display: flex;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .stats span {
	color: #666;
	margin-right: 20px;
	font-size: 13px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .days_left {
	color: #666;
	font-size: 13px;
	margin-top: 8px;
}
.flex_challenge_list .flex_challenge_wrap .flex_challenge .bottom .date {
	display: inline-block; 
	color: #aaa; 
	font-size: 13px;
	margin-top: 10px;
}

/* flex gadget full width */
.flex_challenge_list .flex_challenge_wrap.full {
	flex: 1 0 100%;
	padding: 5px;
}
.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .top .title {
	padding: 0px 10px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
}
.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .top .username {
	text-align: left;
	padding: 10px;
}
.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom .username .username_link {
	margin-right: 15px;
	display: none;
}
.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .top .username .avatar {
	width: 30px;
	height: 30px;
	border-radius: 30px;
	margin-right: 10px;
}

.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom {
	width: 100%;
	padding: 0px 10px 15px 10px;
	display: flex;
	justify-content: space-between;
}
.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom .username {
	font-size: 13px;
}
.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom .stats {
	color: #aaa;
	font-size: 13px;
}

@media (min-width: 768px) {
	/* flex gadget list */
	.flex_challenge_list {
		margin-left: -10px;
		margin-right: -10px;
		margin-top: -10px;
	}
	.flex_challenge_list.swiper {
		flex-wrap: wrap;
		overflow-x: auto;
		overflow-y: auto;
	}
	.flex_challenge_list .flex_challenge_wrap {
		padding: 10px;
		flex: 0 0 25%;
	}
	.flex_challenge_list .flex_challenge_wrap.onethird {
		flex: 0 0 33.3%;
	}
	.flex_challenge_list .flex_challenge_wrap.onehalf {
		flex: 0 0 50%;
	}

	.flex_challenge_list .flex_challenge_wrap.onefifth {
		flex: 0 0 20%;
	}
	.flex_challenge_list .flex_challenge_wrap.oneeighth {
		flex: 0 0 12.5%;
	}
	.flex_challenge_list.swiper .flex_challenge_wrap {
		flex: 0 0 25%;
	}
	.flex_challenge_list.swiper .flex_challenge_wrap.onefifth {
		flex: 0 0 20%;
	}
	.flex_challenge_list.swiper .flex_challenge_wrap.oneeighth {
		flex: 0 0 12.5%;
	}
	.flex_challenge_list .flex_challenge_wrap.full {
		flex: 0 0 33.3%;
		padding: 10px;
	}
	.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .top .title {
		padding: 0px 10px;
		font-size: 16px;
		text-align: left;
		font-weight: normal;
	}
	.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .top .username {
		display: none;
	}
	.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom {
		width: 100%;
		padding: 0px 10px 15px 10px;
		display: flex;
		justify-content: space-between;
	}
	.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom .username {
		font-size: 13px;
	}
	.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom .username .username_link {
		display: block;
	}
	.flex_challenge_list .flex_challenge_wrap.full .flex_challenge .bottom .stats {
		color: #aaa;
		font-size: 13px;
	}
}

/* flex challenge photo list */
.flex_challenge_photo_list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	margin-top: -8px;
	margin-bottom: 20px;
}
.flex_challenge_photo_list.swiper {
	flex-wrap: nowrap;
	overflow-y: hidden;
	overflow-x: scroll;
}
.flex_challenge_photo_list.full {
	margin-left: 0px;
	margin-right: 0px;
}

.flex_challenge_photo_list .flex_challenge_photo_wrap {
	padding: 3px;
	flex: 0 0 50%;
}
.flex_challenge_photo_list.swiper .flex_challenge_photo_wrap {
	flex: 0 0 42%;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo {
	border: solid 1px #eee;
	background-color: #fff;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
	padding: 0px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .top {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .top .image {
	text-align: center;
	margin-bottom: 10px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .top .image img {
	width: 100%;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .top .title {
	font-family: "proxima-nova","proxima-nova-1","proxima-nova-2","Proxima Nova","Segoe UI",Helvetica,Arial,sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: left;
	padding: 0px 10px;
	display: flex;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .top .title a {
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom {
	width: 100%;
	padding: 0px 10px 15px 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .gadget_rating {
	margin-bottom: 5px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .gadget_rating_counter {
	text-align: center;
	font-size: 13px;
	color: #999;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .username {
	font-size: 12px;
	flex: 1 0 100%;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .username .username_link {
	margin-right: 15px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .stats {
	margin-top: 10px;
	color: #aaa;
	font-size: 12px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .stats span:first-child {
	display: inline-block;
	margin-right: 15px;
	margin-left: 2px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap .flex_challenge_photo .bottom .date {
	display: inline-block; 
	color: #aaa; 
	font-size: 13px;
	margin-top: 10px;
}

/* flex gadget full width */
.flex_challenge_photo_list .flex_challenge_photo_wrap.full {
	flex: 1 0 100%;
	padding: 5px 0px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .top .title {
	padding: 0px 10px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .top .username {
	text-align: left;
	padding: 10px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom .username .username_link {
	margin-right: 15px;
	display: none;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .top .username .avatar {
	width: 30px;
	height: 30px;
	border-radius: 30px;
	margin-right: 10px;
}

.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom {
	width: 100%;
	padding: 0px 10px 15px 10px;
	display: flex;
	justify-content: space-between;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom .username {
	font-size: 13px;
}
.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom .stats {
	color: #aaa;
	font-size: 13px;
}

@media (min-width: 768px) {
	/* flex gadget list */
	.flex_challenge_photo_list {
		margin-left: -3px;
		margin-right: -3px;
		margin-top: -3px;

	}
	.flex_challenge_photo_list.swiper {
		flex-wrap: wrap;
		overflow-x: auto;
		overflow-y: auto;
	}
	.flex_challenge_photo_list.full {
		margin-left: 0px;
		margin-right: 0px;
		margin-top: -3px;

	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap {
		flex: 0 0 25%;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.onefifth {
		flex: 0 0 20%;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.oneeighth {
		flex: 0 0 12.5%;
	}
	.flex_challenge_photo_list.swiper .flex_challenge_photo_wrap {
		flex: 0 0 25%;
	}
	.flex_challenge_photo_list.swiper .flex_challenge_photo_wrap.onefifth {
		flex: 0 0 20%;
	}
	.flex_challenge_photo_list.swiper .flex_challenge_photo_wrap.oneeighth {
		flex: 0 0 12.5%;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full {
		flex: 0 0 25%;
		padding: 5px;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .top .title {
		padding: 0px 10px;
		font-size: 16px;
		text-align: left;
		font-weight: normal;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .top .username {
		display: none;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom {
		width: 100%;
		padding: 0px 10px 15px 10px;
		display: flex;
		justify-content: space-between;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom .username {
		font-size: 13px;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom .username .username_link {
		display: block;
	}
	.flex_challenge_photo_list .flex_challenge_photo_wrap.full .flex_challenge_photo .bottom .stats {
		color: #aaa;
		font-size: 13px;
	}
}