p {
	margin: 0;
}
.single-weekly-challenge .content-area {
	padding-top: 0;
}
.challenge-header {
	background-size: cover;
	background-position: center;
	text-align: center;
	color: white;
	position: relative;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: end;
	border-radius: 20px;
}

.challenge-header .challenge-overlay {
	background: rgba(255, 255, 255, 0.8);
	display: inline-block;
	padding: 20px 40px;
	border-radius: 15px;
	color: #000;
	max-width: 600px;
	margin-bottom: 20px;
}

.challenge-header h1 {
	font-size: 24px;
	margin-bottom: 15px;
}

.challenge-metrics {
	display: flex;
	justify-content: space-around;
	margin: 10px 0;
}

.challenge-metrics div {
	font-size: 14px;
}

.challenge-button {
	margin-top: 20px;
	padding: 10px 25px;
	background-color: #888;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
}

.challenge-details {
	padding: 20px 0;
}

.recently-joined {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.recently-joined img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.comment {
	background: #ffffff;
	padding: 10px;
	border-radius: 15px;
	margin-bottom: 15px;
}
.comment_wrapper {
	display: flex;
	gap: 15px;
	align-items: center;
}

.like-btn .bb-icon-heart.bb-icon-f {
	color: #CCCCCC;
}
.like-btn.liked .bb-icon-heart.bb-icon-f {
	color: #ff8a8a;
}

.comment img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.comment-content {
	flex: 1;
}
.comment-content p {
	margin: 0;
}

.comment-meta {
	font-size: 13px;
	color: #888;
	margin-bottom: 5px;
	padding-left: 5px;
}
.comment-form-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.comment-form-wrapper textarea {
	border: none;
	flex: 1;
	resize: none;
	outline: none;
	padding: 10px;
	font-size: 14px;
	border-radius: 20px;
}

.comment-form-wrapper button {
	border: none;
	padding: 15px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.comment-actions button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	font-weight: 600;
	color: #555;
}
.comment-actions button:hover,
.comment-actions button:focus,
.comment-actions button:active {
	background: transparent;
	border: none;
	box-shadow: none;
}
.comment-meta::before,
.reply-btn::before {
	content: '';
	display: inline-block;
	background: #CCCCCC;
	width: 3px;
	height: 3px;
	margin: 3px 2px;
	border-radius: 50%;
}
.comment-actions .like-btn.liked {
	color: #0073aa;
}
.comment-actions .like-count {
	font-weight: 200;
}
.reply-form textarea {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 8px;
	width: 100%;
	font-size: 14px;
	resize: none;
}

.reply-form button {
	border: none;
	padding: 8px 15px;
	border-radius: 20px;
	cursor: pointer;
	margin-top: 5px;
}
.challenge-summary-card{
	text-align: center;
	h3 {
		display: block;
		text-align: center;
	}
}
.rev-challenge-completed-message {
	padding: 10px;
	border-radius: 8px;
	background: green;
	color: #fff;
	margin-bottom: 10px;
}
.weekly-challenge-statistics {
	display: flex;
	gap: 10px;
	margin: 0;
	justify-content: space-between;
}
.weekly-challenge-statistics div {

	border: 1px solid #ECECEC;
	padding: 10px;
	border-radius: 15px;
	background: #FBF9FD;
	width: 100px;
	strong {
		display: block;
	}
}
.weekly-challenge-statistics button {
	padding: 10px 20px;
	border-radius: 10px;
	background: #444;
	color: white;
	border: none;
}
.rev-app-single-video-wrapper {
	background-color: #fff;
	width: 95%;
	margin:auto;
	padding: 20px;
	border-radius: 8px;
}
.single-video-banner {
	display: block;
	text-align: center;
}
.single-video-banner .video-thumbnail {
	position: relative;
	height: 400px;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.single-video-banner .video-thumbnail button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	border: none;
	background: rgba(255,255,255,0.7);
	border-radius: 50%;
	cursor: pointer;
}
.single-video-banner img {
	height: 100%;
}
.single-video-banner video,
.single-video-banner iframe {
	width: 100%;
	display: none;
	border-radius: 8px;
}
.video-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
	position: relative;
	margin: 10% auto;
	background: #fff;
	width: 90%;
	max-width: 800px;
	border-radius: 8px;
	padding: 1rem;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	color: #333;
	cursor: pointer;
	z-index: 1;
}

.video-wrapper {
	text-align: center;
}

.video-wrapper video,
.video-wrapper iframe {
	width: 100%;
	max-height: 450px;
	border-radius: 4px;
}

.single-video-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background-color: var(--bb-body-background-color);
	padding: 20px;
	gap: 20px;
	border-radius: 8px;
	color:#fff;
}
.single-video-content .content-container{
	background-color: transparent;
	background-image: radial-gradient(at bottom center, #3A004F 31%, #000000 100%);
	border-radius: 8px;
	color:#fff;
	padding: 10px;
}
.single-video-content h2{
	color: #fff;
}
.single-video-content > div:nth-child(3) {
	grid-column: 1 / -1; /* Span all columns */
}

.single-video-content .meaningful-thoughts .item-content {
	background-color: #FFF;
	text-align: center;
}
.single-video-content .meaningful-thoughts .item-content img {
	width: 80%;
	margin: auto;
}

.single-video-content .item-content {
	background-color: #F8F8F8B5;
	padding:10px;
	border-radius: 8px;
}
