.load-more.button {
	background: var(--primary);
	color: var(--textColorWhite);
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
}
.channel-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	padding-top: 20px;
	min-height: 100vh;
	position: relative;
}
.channel-body > div {
    z-index:1;
}
.channel-body::before {
	content: '';
	position: absolute;
	background-image: url('/wp-content/themes/hello-theme-child-master/theme-builder/assets/image/gradient-bg.png');
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.channel-body::after {
	content: '';
	position: absolute;
	background-image: url('/wp-content/themes/hello-theme-child-master/theme-builder/assets/image/channel-bg.png');
	background-position: top right;
	background-size: 510px auto;
	background-repeat: repeat;
	mix-blend-mode: overlay;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-attachment: fixed;
}
.hide {
	display: none;
}
.show {
	display: flex;
}
@keyframes rotateAnimation {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}
.icons {
	display: flex;
}
.loading-icon {
	display: none;
	animation: rotateAnimation 1s linear infinite;
}
.channel-header {
	padding: 15px;
	cursor: pointer;
	z-index: 2;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
	box-shadow: 0px 2px 30px #f4f6f8;
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--borderColor);
}
.channel-header .default-avatar, .channel-header .logo-wrapper {
	display: none;
}
.header .user-profile {
	width: 100%;
	display: none;
	align-items: center;
	justify-content: end;
}
.header .user-profile .profile-image {
	width:40px;
	height:40px;
	border-radius:50%;
}
.logo-wrapper {
	align-items: center;
	gap: 10px;
	font-weight: bold;
	font-size: 22px;
}
.header-actions {
	display: flex;
	gap: 10px;
}
.option-toggle {
	display: flex;
	position: relative;
	margin-left: 24px;
	cursor: pointer;
}
.option-toggle .option-icon {
    opacity: 0;
	position: absolute;
	transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
}
.option-toggle .option-icon.active {
    opacity: 1;
}
.option-icon.moon.inactive {
  opacity: 0;
  transform: rotate(-180deg);
}
.option-icon.sun.inactive {
  opacity: 0;
  transform: rotate(180deg);
}
.channel-header h1 {
	margin: 0;
	font-size: 25px;
}
.news-item-media img {
	width: 100%;
	/*border-radius: 15px 15px 0 0;*/
	max-height: 300px;
	object-fit: cover;
}
.news-item-media video {
    max-height:350px;
}
.news-item-media video {
    background-color: black;
}

.news-item {
	width: 100%;
	max-width: 420px;
	background: var(--bg-color);
	border-radius: 15px;
	position: relative;
	/* min-height: 578px; */
}
.news-item-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.news-item-content .content-body {
    padding: 15px 15px 0;
}
.content-header {
	font-weight: bold;
}
.channel-news {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
	width: 100%;
    gap: 20px;
}
.post-comment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px 10px;
    border-radius: 0 0 15px 0px;
    transition:0.3s;
    height:100%;
}
.post-comment:hover , .report-post:hover {
	background: var(--hoverColor);
}
.comment-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
	color: var(--primary);
}
.comments-count {
	font-size: 14px;
	color: #707579;
}
.icon-box {
	display: flex;
}
.post-comment .comment-title svg {
	width: 25px;
	height: 25px;
	fill:var(--primary);
}
.post-actions {
	display: grid;
	grid-template-columns: auto 60px;
	border-top: 1px solid var(--borderColor);
	align-items: center;
}
.report-post {
	display: flex;
	justify-content: center;
	padding: 15px;
	cursor: pointer;
	border-bottom-left-radius: 15px;
	height: 100%;
}
.post-detail {
	padding: 0 15px 10px;
	display: flex;
	align-items: end;
	justify-content: space-between;
}
.post-detail-wrapper {
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.post-view , .post-date {
	display: flex;
	align-items: center;
	gap: 3px;
	line-height: 10px;
}
.news-options {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	bottom: 0;
	right: -45px;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transition:0.2s;
}
.news-item:hover .news-options {
    opacity: 1;
	visibility: visible;
}
.like-option, .share-option {
	padding: 10px;
	display: flex;
	cursor: pointer;
	align-items: center;
	gap: 5px;
	border-radius: 50%;
	background: rgba(0,0,0,0.5);
}
.like-count, .text-box span {
	font-size: 14px;
	font-weight: bold;
	color: var(--textColor);
	font-family: Nunito;
}
.content-body p:last-child {
	margin: 0;
}
.content-body p:last-child span {
	direction: ltr;
	display: block;
	cursor: pointer;
	color:var(--primary);
	text-align:left;
}
.news-author {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: bold;
	padding: 7px 15px;
	font-size: 14px;
	border-bottom:1px solid var(--borderColor);
}
.news-author .author-image {
	width: 20px;
	border-radius: 50%;
}
.news-author span {
	color: var(--primary);
}
.like-option {
	background: rgb(235,243,253);
	padding: 5px 10px;
	border-radius: 28px;
	transition: 0.3s;
	color: var(--primary);
}
.content-footer .like-option:hover {
    background:rgb(197,222,249);
}
.like-option.add-like {
    background: var(--primary) !important;
    color: var(--textColorWhite);
}
.like-option svg path {
    fill: #F91880;
}
.like-option.add-like .text-box span, .like-option.add-like .like-count {
    color: #ffff;
}
html { 
	scroll-behavior: unset !important;
}
.side-arrow {
    display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  max-width: 678px;
  transition: 0.3s;
  bottom: -100%;
  z-index:1;
  width: fit-content;
}
.side-arrow svg {
  background: var(--primary);
  margin-right: 10px;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.side-arrow.more {
    bottom: 80px;
}
.content-body.english {
	text-align: left;
}
.content-body.persian, .content-body.arabic {
	text-align: right;
}
.news-item .video-placeholder {
    border-radius: 0;
}
@media screen and (max-width:700px) {
    .channel-news {
		align-items: end;
		padding-left: 15px;
	}
}
@media screen and (max-width:500px) {
    .side-arrow svg {
        margin-right: 5px;
    }
}