        :root {
            --background-light: #ffffff;
            --text-light: #000000;
            --background-dark: #151a27;
            --text-dark: #ffffff;
        }
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            transition: background-color 0.3s, color 0.3s;
            background-color: var(--background-light);
            color: var(--text-light);
			display: flex;
			flex-direction: column;
			min-height: 100vh;
        }
            /* Loader styling */
			#loader {
				position: fixed;
				top: 0;
				left: 0;
				width: 100vw;
				height: 100vh;
				background: #ffffff;
				display: flex;
				align-items: center;
				justify-content: center;
				z-index: 9999;
				opacity: 0.9;
			}

			.spinner {
				width: 40px;
				height: 40px;
				border: 6px solid #ccc;
				border-top: 6px solid #333;
				border-radius: 50%;
				animation: spin 1s linear infinite;
			}

			@keyframes spin {
				0% { transform: rotate(0deg); }
				100% { transform: rotate(360deg); }
			}

.box.boxright a {
    padding: 30px 0px;
}			
.typing-indicator {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 22px;
  height: 24px;
  margin-bottom: 10px;
}

.typing-indicator span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background-color: #007bff;
  border-radius: 50%;
  animation: jump 1.2s infinite;
}
.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
#chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
#chat-toggle::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background-color: #00cc00;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 1001;
}
#chat-box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 90vw;
  max-width: 320px;
  height: 60vh;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px 10px 0 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
#chat-header {
  background-color: #007bff;
  color: white;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  text-align: center;
  position: relative;
}
#chat-close {
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
}
#chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}
.message {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}
.message.bot {
  justify-content: flex-start;
}
.message.user {
  justify-content: flex-end;
}
.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 8px;
  border:1px solid #26ACE2;
}
.message-content {
  max-width: 75%;
}
.sender-name {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 2px;
  color: #333;
}
.message-text {
  background-color: #f1f1f1;
  padding: 8px 12px;
  border-radius: 8px;
  word-wrap: break-word;
}
.message.bot .message-text {
  background-color: #e0f0ff;
  border-top-left-radius: 0;
}
.message.user .message-text {
  background-color: #dcf8c6;
  border-top-right-radius: 0;
}
#chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}
#chat-input input {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0px;
}
#chat-input button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
.sender-name {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 2px;
  color: #333;
}

.message.user .sender-name {
  text-align: right;
}

.message.bot .sender-name {
  text-align: left;
}			
			
			
			
			
        .profile .img-thumbnail {
			object-fit: cover!important;
			height: 130px!important;
			width: 130px!important;
		}
		.post-name > h6 > a > i {
			font-size: 12px;
			transition: 1s;
			padding: 4px 15px;
			border: none;
			border-radius: 6px;
			background: linear-gradient(135deg, #4CAF50, #388E3C);
			color: white;
			font-size: 14px;
			cursor: pointer;
			white-space: nowrap;
		}	
        input#verify_add_link_code {
			position: absolute;
			top: -33px;
			width: 50%;
			padding: 3px;
			right: 3px;
		}
        .working_process img {
			width: 100%;
			height: 100%;
		}
		.working_process_details {
			text-align: center;
		}
		.working_process_details h5 {
			padding: 15px 0px;
		}
		.link_open_process img {
			width: 100%;
			height: 100%;
		}
        .more-for-edit {
			display: flex;
			gap: 10px;
			height: 38px;
		}
		.new-post > form > button {
			font-size: 16px;
			right: 0px;
			position: absolute;
			top: 36%;
			transform: translateY(-50%);
			border-radius: 0px 30px 30px 0px;
			padding: 8px;
		}
		.post-meta {
			padding: 5px 0px;
		}
        .advertisment-box figure img {
             height: 250px;
        }
		.apply {
			display: inline-flex!important;
		}
		.mesgNotif-info p {
			margin: 0px;
			text-align: left;
		}
		.post-meta-info-close {
			position: absolute;
			right: 10px;
			top: 5px;
		}
		header {
			background: #f5f5f5;
			border-bottom: 1px solid #e1e8ed;
			display: inline-block;
			width: 100%;
			position: relative;
			display: inline-block;
			width: 100%;
			position: fixed;
			top: 0;
			width: 100%;
			z-index: 999999999;
		}
		.topbar{
			display: inline-block;
			width: 100%;
			padding: 10px 0px;
			transition: 0.4s;
		}
		.topbar > ul {
			float: right;
			line-height: 50px;
			list-style: outside none none;
			margin: 0;
			padding-left: 0;
			vertical-align: middle;
		}
		
		ul.web-elements-unsubscribe li {
			padding: 0px 5px;
		}
		.topbar > ul > li {
			display: inline-block;
			vertical-align: middle;
			position: relative;
		}
		.topbar > ul > li > a {
			display: inline-block;
			text-transform: capitalize;
			border-radius: 5px;
		}
		.topbar ul.web-elements > li {
			margin: 0px 5px;
			position: relative;
			font-size: 20px;
		}
		.topbar ul.web-elements > li > span {
			background: #02B6FF none repeat scroll 0 0;
			color: #fff;
			height: 10px;
			width: 10px;
			border-radius: 100%;
			position: absolute;
			top: 7px;
			right: 0px;
		}
		.topbar ul.web-elements > li > a {
			background: #e5eff4 none repeat scroll 0 0;
			border: 1px solid #26ACE2;
			border-radius: 100%;
			height: 37px;
			line-height: 37px;
			text-align: center;
			width: 37px;
		}
		.topbar ul.web-elements > li > a:hover {
			background: #9cd5f9 none repeat scroll 0 0;
		}
		.manu_bar {
			display: inline-block;
			vertical-align: middle;
			margin-top: 5px;
			font-size: 25px;
			padding: 0px 5px;
		}
		.logo {
			display: inline-block;
			vertical-align: middle;
			margin-top: 5px;
			margin-left: 10px;
		}
		.logo > a > img {
			vertical-align: middle;
			display: inline-block;
			max-height: 40px;
		}
		.logo > a > span {
			color: #1d3554;
			font-family: Rajdhani;
			font-size: 25px;
			font-weight: 700;
			padding-left: 5px;
			vertical-align: middle;
		}
		.main-wraper, aside .widget {
			background: #fafafa none repeat scroll 0 0;
			border: 1px solid #e1e8ed;
			border-radius: 5px;
			display: block;
			margin-top: 15px;
			padding: 10px 10px 10px;
			position: relative;
			width: 100%;
			display: inline-block;
		}
		.widget > img {
			position: absolute;
			right: 5px;
			top: 5px;
			height: 96px;
		}
		.bg-image {
			background-position: center center;
			background-repeat: no-repeat;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-ms-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
			height: 100%;
			left: 0;
			margin: 0;
			position: absolute;
			top: 0;
			width: 100%;
			opacity: 0.5;
		}
		/*--- date and time widget ---*/
		.date-time {
			display: inline-block;
			padding: 50px 0;
			position: relative;
			text-align: center;
			width: 100%;
		}
		.realtime {
			display: inline-block;
			text-align: center;
			width: 100%;
		}
		.realtime > span {
			color: #26ACE2;
			font-size: 40px;
			font-weight: 500;
		}
		.date-time > span#date {
			color: #3e3f5e;
			display: inline-block;
			font-size: 25px;
			font-weight: bold;
			margin-top: 10px;
			max-width: 90%;
			text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
		}
		.sidebar {
			margin: 0 auto;
			width: 100%;
			float: left;
		}
		.widget-title {
			display: inline-block;
			font-size: 15px;
			font-weight: 500;
			vertical-align: middle;
			width: 100%;
			position: relative;
		}
		.widgetads-title {
			display: inline-block;
			font-size: 15px;
			font-weight: 500;
			margin-bottom: 20px;
			vertical-align: middle;
			width: 100%;
			position: relative;
			Padding:15px 20px 0px;
			text-align: left;
		}
		.widget-title > h4 {
			display: inline-block;
			font-size: 17px;
			margin-bottom: 0;
			padding-left: 0;
			position: relative;
			width: 100%;
			font-weight: 700;
		}
		.widget-title > h4::before {
			bottom: -4px;
			content: "";
			height: 2px;
			left: 0;
			position: absolute;
			width: 40px;
		}
		.widget-title > h4::after {
			bottom: -8px;
			content: "";
			height: 2px;
			left: 0;
			position: absolute;
			width: 30px;
		}
		.sidebar .widget > ul {
			display: inline-block;
			list-style: outside none none;
			margin-bottom: 0;
			padding: 0;
			width: 100%;
		}
		.widget .sponsors-ad > li figure {
			display: inline-block;
			margin-bottom: 0;
			vertical-align: middle;
		}
		.widget .sponsors-ad > li figure img {
			border-radius: 4px;
			height:70px;
		}
		.widget .sponsors-ad > li .sponsor-meta {
			display: inline-block;
			padding-left: 8px;
			vertical-align: middle;
			width: 60%;
		}
		.widget .sponsors-ad > li .sponsor-meta h5 {
			font-size: 14px;
			font-weight: 500;
		}
		.widget .sponsors-ad > li .sponsor-meta > a {
			color: #92929e;
			font-size: 12px;
		}
		.sidebar .widget li > a {
			margin-bottom:5px;
			position: relative;
			width: 100%;
			padding:10px;
			border-radius: 5px;
			color: black;
			display: block;
		}
		.sidebar .widget li:hover {
			background: #f5f5f5;
		}
		.widget.web-links ul li > a {
			font-size: 13px;
			text-transform: capitalize;
		}
		aside .widgetads-advertisment {
			background: #fafafa none repeat scroll 0 0;
			border: 1px solid #e1e8ed;
			border-radius: 5px;
			display: block;
			margin-top: 15px;
			position: relative;
			width: 100%;
		}
		aside .widgetads {
			background: #fafafa none repeat scroll 0 0;
			border: 1px solid #e1e8ed;
			border-radius: 5px;
			display: block;
			margin-top: 15px;
			position: relative;
			width: 100%;
			text-align: center;
		}
		/*--- friend box ---*/
		.friend-box {
			background: #fff none repeat scroll 0 0;
			border: 1px solid #ede9e9;
			border-radius: 4px;
			display: inline-block;
			margin-bottom: 20px;
			position: relative;
			width: 100%;
		}
		.friend-box > figure {
			margin: 0;
			position: relative;
		}
		.friend-box > figure img {
			border-radius: 4px;
			display: inline-block;
			width: 100%;
		}
		.friend-box > figure::before {
			background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
			border-radius: 4px;
			bottom: 0;
			content: "";
			left: 0;
			position: absolute;
			right: 0;
			top: 0;
		}
		.friend-box > figure > span {
			bottom: 10px;
			color: #fff;
			font-size: 12px;
			font-weight: 500;
			position: absolute;
			right: 10px;
			text-shadow: 0 2px 2px rgba(0,0,0,.7);
		}
		.frnd-meta {
			display: inline-block;
			padding: 0 15px 20px;
			position: relative;
			width: 100%;
		}
		.frnd-meta > img {
			border: 2px solid #fff;
			border-radius: 100%;
			display: inline-block;
			margin-top: -40px;
			position: relative;
			vertical-align: middle;
			width: 71px!important;
		}
		.frnd-name {
			float: right;
			margin-bottom: 20px;
			margin-left: 110px;
			margin-top: -40px;
			text-align: left;
		}
		.frnd-name > a {
			display: inline-block;
			font-size: 15px;
			font-weight: 500;
			transition: all 0.2s linear 0s;
			width: 100%;
		}
		.frnd-name > span {
			display: inline-block;
			font-size: 12px;
			color: #92929e;
		}
		/*--- friends group carousel ---*/
		.owl-carousel .frnd-name > a {
			font-size: 13px;
		}
		.owl-carousel .frnd-name {
			margin-left: 75px;
			margin-top: -20px;
		}
		.owl-carousel .friend-box > figure > span {
		font-size: 12px;
		}
		.dropdown li a {
			color:#fff;
		}
		.PopupCreateNewPost{
			background: #1d2333;
			border: 1px solid rgba(255, 255, 255, .04);
		}
		.PopupCreateNewPostPublished {
			color: #fff;
			background-color: #26ace2;
		}
		.sideManuBars {
			height: 100vh;
			width: 250px;
			background: #f5f5f5 none repeat scroll 0 0;
			color: black;
			position: fixed;
			left: -250px; /* Initially hidden */
			top: 0;
			transition: left 0.3s ease;
			z-index: 1000;
		}
		.sidebarContent {
			margin: 80px 0px;
		}
		.sidebarContent ul {
			list-style: outside none none;
			margin-top: 20px;
			padding: 0px 20px;
			width: 100%;
		}
		.sideManuBars ul > li > a {
			padding: 15px;
			border-bottom: 1px solid #444;
		}
		.sideManuBars ul li a:hover {
			background-color:#fafafa;
		}
		.sideManuBars ul li a {
			color: black;
			text-decoration: none;
			display: block;
		}
		.sidebarCloseBtn {
			border: none;
			padding: 10px 15px;
			cursor: pointer;
			border-radius: 5px;
			position: absolute;
			top: 80px;
			right: 10px;
			font-size: 25px;
		}
		.sidebarOverlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			background-color: rgba(0, 0, 0, 0);
			visibility: hidden;
			opacity: 0;
			transition: opacity 0.3s ease, visibility 0.3s ease;
			z-index: 900;
		}
		.mesgNotifSidebar {
			height: 100vh;
			width: 300px;
			background: #fafafa none repeat scroll 0 0;
			color: white;
			position: fixed;
			right: -300px; /* Initially hidden on the right */
			top: 0;
			transition: right 0.3s ease;
			z-index: 1000;
		}
		.mesgNotif-info h6 {
			border-bottom: 1px solid;
			padding-bottom: 5px;
			text-align: center;
		}
		div#mesgNotifSidebar {
			overflow: overlay;
			scrollbar-width: none; /* For Firefox */
		}

		div#mesgNotifSidebar::-webkit-scrollbar {
			display: none; /* For Chrome, Safari, and Edge */
		}
		.mesgNnotifBtn {
			position: absolute;
			top: 20px;
			right: 20px;
			background-color: #007bff;
			color: white;
			border: none;
			padding: 10px 15px;
			cursor: pointer;
			border-radius: 5px;
			z-index: 1100;
		}
		.mesgNnotifBtn:focus {
			outline: none;
		}
		.mesgNnotifOverlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			background-color: rgba(0, 0, 0, 0.5); /* Dimmed background */
			visibility: hidden; /* Initially hidden */
			opacity: 0;
			transition: opacity 0.3s ease, visibility 0.3s ease;
			z-index: 900;
		}
		.mesgNotifContent {
			margin-top: 80px;
			padding: 5px;
			border-radius: 5px;
		}
		.mesgNotif-info {
			display: inline-block;
			position: relative;
			width: 100%;
		}
		.mesgNotif-info {
			display: inline-block;
			position: relative;
			width: 100%;
			background: #f5f5f5;
			margin-top: 10px;
		}
		.mesgNotif-info > figure {
			display: inline-block;
			margin-bottom: 0;
			vertical-align: middle;
			width: 40px;
			margin-top: 0;
			position: relative;
		}
		.mesgNotif-info > figure > em {
			bottom: -3px;
			font-style: normal;
			position: absolute;
			right: -4px;
		}
		.mesgNotif-info > figure > img{
			border-radius: 100%;
			border: 1px solid #cacaca;
			width: 40px;
		}
		.mesgNotif-info > figure > i {
			border: 2px solid #fec42d;
			border-radius: 100%;
			color: #fec42d;
			display: inline-block;
			font-size: 20px;
			height: 40px;
			line-height: 38px;
			text-align: center;
			width: 40px;
		}
		.user-name {
			display: inline-block;
			padding-left: 10px;
			vertical-align: middle;
			width: 70%;
		}
		.user-name > ins em {
			font-style: normal;
			text-decoration: underline;
		}
		.user-name > span {
			color: #999;
			float: left;
			font-size: 12px;
			text-transform: capitalize;
			width: 90%;
		}
		.mesgNotifText p {
			color: black;
			padding: 5px;
			margin: 5px;
		}

		.mesgNotifText p a {
			text-decoration: none;
			padding: 2px;
			margin: 2px;
		}
		.new-title {
			display: inline-block;
			font-weight: 500;
			margin-bottom: 20px;
			width: 100%;
		}
		.new-post {
			display: inline-block;
			position: relative;
			width: 100%;
		}
		.new-post > form {
			display: inline-block;
			width: 100%;
			position: relative;
		}
		.new-post > form > i {
			font-size: 16px;
			left: 20px;
			position: absolute;
			top: 36%;
			transform: translateY(-50%);
		}
		.new-post > form input {
			border: 1px solid rgba(0, 0, 0, 0.2);
			border-radius: 30px;
			padding: 10px 20px 10px 50px;
			width: 100%;
		}
		.widget-user-info {
			padding: 10px 5px;
			background: #ffffff none repeat scroll 0 0;
			border: 1px solid #e1e8ed;
			margin: 8px 0px;
			border-radius: 5px;
		}
			
		.widget-user-info span {
			font-size: 14px;
		}
		.widget-user-info h6 {
			margin-bottom: 0rem;
		}
		.user-info {
			display: inline-block;
			position: relative;
			width: 100%;
		}
		.user-info > figure {
			display: inline-block;
			margin-bottom: 0;
			vertical-align: middle;
			width: 40px;
			margin-top: 0;
			position: relative;
			height: 40px;
			overflow: hidden;
		}
		.user-info > figure > em {
			bottom: -3px;
			font-style: normal;
			position: absolute;
			right: 0px;
		}
		.user-info > figure img {
			border-radius: 100%;
			border: 1px solid #cacaca;
			object-fit: cover;
			width: 100%;
			height: 100%;
		}
		.user-info > figure > i {
			border: 2px solid #fec42d;
			border-radius: 100%;
			color: #fec42d;
			display: inline-block;
			font-size: 20px;
			height: 40px;
			line-height: 38px;
			text-align: center;
			width: 40px;
		}
		.user-name {
			display: inline-block;
			padding-left: 10px;
			vertical-align: middle;
		}
		.post-meta > a {
			text-decoration: none;
		}
		.post-name > h6 > a {
			text-decoration: none;
			margin: 0px 5px 0px 0px;
		}
		.post-name > h6 > a > i {
			font-size: 12px;
			transition: 1s;

		}
		.user-name > ins em {
			font-style: normal;
			text-decoration: underline;
		}
		.more {
			position: absolute;
			right: 0px;
			top: 0px;
		}
		.more-post-optns::before {
			background: #e1ebf6 none repeat scroll 0 0;
			border-radius: 100%;
			content: "";
			height: 28px;
			left: 50%;
			position: absolute;
			top: 51%;
			transform: translate(-50%, -50%) scale(0);
			transition: all 0.2s linear 0s;
			width: 28px;
		}
		.more-post-optns {
			cursor: pointer;
			display: inline-block;
			position: relative;
		}
		.more-post-optns:hover::before {
			transform: translate(-50%, -50%) scale(1);
		}
		.more-post-optns::before {
			background: #e1ebf6 none repeat scroll 0 0;
			border-radius: 100%;
			content: "";
			height: 28px;
			left: 50%;
			position: absolute;
			top: 51%;
			transform: translate(-50%, -50%) scale(0);
			transition: all 0.2s linear 0s;
			width: 28px;
		}
		.more-post-optns > i {
			position: relative;
			font-size: 18px;
			padding: 10px;
		}
		.more-post-optns > ul {
			background: #fff none repeat scroll 0 0;
			border-radius: 5px;
			box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
			display: inline-block;
			list-style: outside none none;
			margin: 0;
			padding: 15px;
			position: absolute;
			right: 0;
			top: 100%;
			transform: translate(5px);
			transition: all 0.09s linear 0s;
			display: none;
			width: 160px;
			z-index: 99999;
		}
		.more-post-optns > ul > li {
			cursor: pointer;
			display: inline-block;
			font-size: 12px;
			margin-bottom: 7px;
			width: 100%;
			font-weight: 500;
			color: #535165;
			padding: 5px 5px;
			border-radius:5px;
		}
		.more-post-optns > ul > li > a i {
			margin: 0px 5px;
			color:black;
		}
		.more-post-optns > ul > li:hover {
			background: #f5f5f5;
		}

		.more-post-optns > ul > li:last-child{margin-bottom: 0;}
		.more-post-optns > ul > li i {
			color: #92929e;
			display: inline-block;
			font-size: 14px;
			margin-right: 8px;
			transition: all 0.1s linear 0s;
			vertical-align: middle;
		}
		.post-details-video {
			margin: auto;
			text-align: center;

		}
		.post-details-video iframe {
			width: 100%;
		}
		.more-post-optns > ul > li span {
			color: #92929e;
			display: inline-block;
			font-size: 11px;
			font-weight: 400;
			padding-left: 23px;
			width: 100%;
		}
		.post-title {
			display: inline-block;
			font-size: 15px;
			font-weight: 400;
			padding: 0px 0;
			width: 100%;
		}
		.post-details-img > img {
			width: 100%;
		}
		.post-details-img {
			margin: auto;
			text-align: center;
			padding: 13px;
		}
		.post-meta-img {
			position: relative;
			width: 40%;
			float: left;
		}
		.post-meta-content {
			width: 60%;
			display: inline-block;
			float: right;
		}
		.post-meta-img > img {
			width: 100%;
			padding: 13px;
		}
		.post-meta-content > p {
			width: 100%;
			padding: 5px;
		}
		.post-meta-info {
			display: inline-block;
			position: relative;
			width: 100%;
			background: #f5f5f5;
			padding: 10px 10px 10px;
			border-radius: 5px;
		}
		.box {
			display: inline-block;
			vertical-align: middle;
		}
		.box ins{
			text-decoration: none;
			font-size: 20px;
			padding: 5px 10px;
		}
		.box button {
			padding: 0px 30px;
			border: 1px solid black;
			border-radius: 5%;
			padding: 5px 30px;
			border-radius:5px;
		}
		.box.boxright p {
			display: inline-block; 
			padding:0px 5px;
			margin: 0px;}
		.box.boxleft {
			float: left;
			padding: 5px 0px;	
		}
		.box.boxleft h5{
			margin:0;
		}
		.box.boxright {
			float: right;
		}
		.sidebarformobile{
			display: none!important;
		}

		.userdp {
			background: #fff none repeat scroll 0 0;
			border: 1px solid #26ACE2;
			border-radius: 30px;
			cursor: pointer;
			display: inline-block;
			line-height: initial;
			padding: 2px 2px 2px 2px;
			vertical-align: middle;
			display: block;
		}
		.userdp:hover {
			background: #9cd5f9 none repeat scroll 0 0;
		}
		.userdp >  img {
			    border-radius: 100%;
				width: 33px;
				object-fit: cover;
				height: 33px;
		}
		.userdp > i {
			position: absolute;
			bottom: 3px;
			left: 28px;
			opacity: 1;
			border-radius: inherit;
			background: #9cd5f9;
			border: 1px solid #9cd5f9;
			font-size: 13px;
			color: #007bff;
		}
		.dropdown {
			background: #fff none repeat scroll 0 0;
			border-radius: 8px;
			box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
			display: inline-block;
			line-height: initial;
			list-style: outside none none;
			margin-bottom: 0;
			padding: 15px 15px 10px;
			position: absolute;
			right: 0;
			top: 100%;
			width: 250px;
			opacity: 1;
			display: none;
			transition: all 0.2s linear 0s;
			z-index: 99999;
		}
		.dropdown > li:hover {
			background:#f5f5f5;
			border-radius:5px;
		}
		.dropdown > li {
			display: inline-block;
			vertical-align: top;
			width: 45%;
			margin-right: 4px;
			margin-bottom: 8px;
		}
		.dropdown > li > a {
			border-radius: 5px;
			color: #000;
			display: inline-block;
			font-size: 12px;
			padding: 10px 6px;
			text-align: center;
			width: 100%;
			text-decoration: none;
			background: #f5f5f5;
		}
		.dropdown > li > a i {
			display: block;
			font-size: 20px;
			margin-bottom: 10px;
		}
		.PopupDropdownOverlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0);
			display: none; /* Initially hidden */
			z-index: 9999;
		}
		.AddEmbedDropdown {
			display: none;
		}
		.AddMoreEmbedDropdown.open .AddEmbedDropdown {
			display: block;
		}
		.EmbedDropdownToggle {
			text-align: center;
			margin-bottom: 5px;
			font-size: 25px;
			width: 100%;
			margin-top: -29px;
		}
		.OverlayCreateNewPost {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5);
			justify-content: center;
			align-items: center;
			z-index: 9999;
			overflow: auto;
		}
		.PopupCreateNewPost {
			background: #ffffff;
			border-radius: 15px;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
			padding: 20px;
			width: 90%;
			max-width: 500px;
			animation: fadeIn 0.3s ease-in-out;
			max-height: 90vh;
			overflow-y: auto;
		}
		.PopupCreateNewPostHeader {
			display: flex;
			justify-content: space-between;
			align-items: center;
			border-bottom: 1px solid #e0e0e0;
			padding-bottom: 10px;
			margin-bottom: 20px;
		}
		.PopupCreateNewPostHeader h3 {
			font-size: 1.5rem;
			color: #333;
			margin: 0;
		}
		.CreateNewPostCloseIcon {
			cursor: pointer;
			color: #555;
			transition: color 0.3s;
			font-size: 25px;
		}
		.CreateNewPostCloseIcon:hover {
			color: #000;
		}
		.PopupCreateNewPost input,
		.PopupCreateNewPost textarea {
			width: 100%;
			margin-bottom: 5px;
			padding: 10px;
			border: 1px solid #ccc;
			border-radius: 8px;
			font-size: 1rem;
			outline: none;
			transition: border-color 0.3s;
			margin-top: 5px;
		}
		.char-counter {
		  text-align: right;
		  font-size: 0.9em;
		  color: #666;
		}
		.PopupCreateNewPost input:focus,
		.PopupCreateNewPost textarea:focus {
			border-color: #007bff;
			box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
		}
		.PopupCreateNewPostPublished {
			margin-top: 5px;
			width: 100%;
			padding: 12px;
			font-size: 1.1rem;
			color: #fff;
			background-color: #007bff;
			border: none;
			border-radius: 8px;
			cursor: pointer;
			transition: background-color 0.3s;
		}
		.PopupCreateNewPostPublished:hover {
			background-color: #0056b3;
		}	
		.next-post{
			margin: auto;
			display: block;
			margin-top: 15px;
			width: 80px;
		}
		.contactform {
			font-family: Arial, sans-serif;
			justify-content: center;
			align-items: center;
		}
		.contactform .form {
			background-color: #ffffff;
			padding: 20px 30px;
			border-radius: 12px;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
			width: 100%;
			max-width: 400px;
		}
		.contactform. label {
			font-size: 14px;
			color: #333333;
			margin-bottom: 8px;
			display: inline-block;
		}
		.contactform input[type="email"],
		input[type="text"],
		textarea {
			width: 100%;
			padding: 10px 12px;
			margin-bottom: 15px;
			border: 1px solid #ddd;
			border-radius: 8px;
			font-size: 14px;
			color: #333;
			transition: border-color 0.3s ease;
		}
		.contactform input[type="email"]:focus,
		input[type="text"]:focus,
		textarea:focus {
			border-color: #5b9bd5;
			outline: none;
			box-shadow: 0 0 5px rgba(91, 155, 213, 0.5);
		}
		.contactform .button {
			background-color: #5b9bd5;
			color: white;
			border: none;
			padding: 10px 20px;
			border-radius: 8px;
			font-size: 16px;
			cursor: pointer;
			transition: background-color 0.3s ease, box-shadow 0.3s ease;
		}
		.contactform .button:hover {
			background-color: #4a89c7;
			box-shadow: 0 4px 10px rgba(91, 155, 213, 0.4);
		}
		.contactform .button:active {
			background-color: #3e79b1;
			box-shadow: none;
		}
		.contactform .textarea {
			resize: none;
		}
		#topcontrol{
			position: fixed;
			bottom: 10px;
			right: 10px;
			opacity: 1;
			cursor: pointer;
			font-size: 20px;
		}
		.profile-user-info > figure {
			margin-bottom: 0;
			vertical-align: middle;
			width: 70px;
			margin-top: 0;
			position: relative;
			text-align: center;
			margin: auto;
		}
		.profile-user-info > figure > em {
			bottom: 5px;
			font-style: normal;
			position: absolute;
			right: 0px;
		}
		.profile-user-info > figure img {
			border-radius: 100%;
			border: 1px solid #cacaca;
			width: 70px;
			object-fit: cover;
			height: 70px;
		}
		.profile-user-name {
			vertical-align: middle;
			text-align: center;
			width: 100%;
			padding: 10px;
		}
		.profileStatus ul li p:hover{
			color: black!important;
		}
		.profileStatus ul li small:hover{
			color: black!important;
		}
		.profileStatus ul li small:hover i{
			color: black!important;
		}
		.user-name h6 {
			margin: 0;
		}
		.user-name i {
			font-size: 12px;
		}
		.more-for-edit {
			position: absolute;
			right: 0px;
			top: 0px;
		}
		.post-details input, textarea  {
			width: 100%;
			margin-bottom: 5px;
			padding: 10px;
			border: 1px solid #ccc;
			border-radius: 8px;
			font-size: 1rem;
			outline: none;
			transition: border-color 0.3s;
			margin-top: 5px;
		}
		.post-details input:focus , textarea:focus {
			border-color: #007bff;
			box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
		}
		.post-details-img-upload{
			   display: inline-block;
			   width: 100%;
		}
		.post-details-img-upload input{
			   width:45%;
		}
		input#select_new_post_image_by_upload {
			padding:8px !important;
		}
		.clock-logo{
			height: 200px;
			width: 90px;
			background-size: 100%;
			margin:auto;
			position: absolute;
			right: 8px;
			top: 5px;
			height: 100px;
		}

	#hour, #minute, #seconds{
		position: absolute;
		background-color: black;
		transform-origin: bottom;
	}
	#hour{
		width:2%;
		height: 23%;
		top:27%;
		left:49.1%;
		opacity: 1;
	}
	#minute{
		width:1%;
		height: 30%;
		top:20%;
		left:49.6%;
		opacity: 1;
	}
	#seconds{
		width:0.8%;
		height: 40%;
		top:10%;
		left:49.67%;
		opacity:1;
	}
	.input-group-left p {
		width: 100%;
		text-align: left;
	}
	.input-group-left {
		width: 45%;
		float: left;
	}
	.input-group-right p {
		text-align: right;
		width: 100%;
	}
	.input-group-right {
		width: 45%;
		float: right;
	}
	.userProfileStatus{
		font-size: 8px;
		top: 148px;
	}
	.post-name h6 a {
		margin: 0px 15px 0px 0px;
	}
	.profileStatus{
		position: absolute;
		right: 30px;
		top: 148px;
	}
	.cover {
		background-size: cover;
		background-repeat: no-repeat
	}
	.post-title h5 {
		margin-top: 5px;
	}
	.alert {
		margin-bottom: 0rem!important;
	}
	.CreateNewPostImage img {
		height: 60px;
		margin: auto;
		display: block;
	}
	.gender {
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: auto;
	}
	.gender-info {
		text-align: center;
	}
	.user_card_container{
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.user_card {
		background: #f39c12;
		display: flex;
		justify-content: center;
		flex-direction: column;
		padding: 100px 40px 20px;
		-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		border-radius: 5px;
		position: relative;
		margin-top: 10px;
	}
	.brand_logo_container {
		height: 170px;
		width: 170px;
		top: -75px;
		border-radius: 50%;
		background: #ffffff;
		padding: 10px;
		text-align: center;
		position: absolute;
	}
	.brand_logo {
		height: 150px;
		width: 150px;
		border-radius: 50%;
		border: 2px solid #f39c12;
	}
	.login_btn {
		width: 100%;
		background: #c0392b !important;
		color: white !important;
	}
	.login_btn:focus {
		box-shadow: none !important;
		outline: 0px !important;
	}
	.login_container {
		padding: 0 2rem;
	}
	.input-group-text {
		background: #c0392b !important;
		color: white !important;
		border: 0 !important;
		border-radius: 0.25rem 0 0 0.25rem !important;
	}
	.input_user,
	.input_pass:focus {
		box-shadow: none !important;
		outline: 0px !important;
	}
	.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
		background-color: #c0392b !important;
	}
	footer {
		text-align: center;
		display: inline-block;
		width: 100%;
		position: relative;
		background: #fafafa none repeat scroll 0 0;
		margin-top: 15px;
		padding: 10px 12px 10px;
	}
	.footer-text {
	padding: 5px;
	}
	.footer-text > p {
		margin-top: 0;
		margin-bottom: 0rem;
	}
	
.PageMainContent{
	overflow: auto;
	height:;
	scrollbar-width:;
}
.grop-rules {
	display: inline-block;
	width: 100%;
}
.grop-rules > ol {
	color: #5a6381;
	display: block;
	font-size: 12px;
	margin-bottom: 0;
	padding-left: 0;
}
.sidebar .widget .grop-rules > ol li {
	margin-bottom: 10px;
	display: flex;
}
.sidebar .widget .grop-rules > ol li:last-child {
	margin-bottom: 0;
}
.sidebar .widget .grop-rules > ol li i{
	margin-top: 4px;
	color: #1f273f;
	font-size: 20px;
}
a.main-btn2, button.main-btn2 {
	border: 1px solid #26ACE2;
	border-radius: 35px;
	color: #26ACE2;
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	padding: 7px 10px;
	text-align: center;
	transition: all 0.2s linear 0s;
	width: 100%;
}
a.main-btn2:hover, button.main-btn2:hover {
	background: #26ACE2 none repeat scroll 0 0;
	color: #fff;
}
.reply {
	float: right;
	font-size: 13px;
	margin-top: 19px;
}
.friend-name > ins {
	display: inline-block;
	font-size: 12px;
	text-decoration: none;
	width: 90%;
	background: none;
}
.friend-name > ins > a {
	font-size: 14px;
	font-weight: 500;
}
.friend-name > span {
	color: #999;
	float: left;
	font-size: 12px;
	text-transform: capitalize;
	width: 90%;
}

.we-video-info {
	border-top: 1px solid #ede9e9;
	float: left;
	padding: 8px 0 0;
	position: relative;
	width: 100%;
}
.we-video-info > ul {
	float: left;
	line-height: 27px;
	margin-bottom: 0;
	margin-top: 13px;
	padding-left: 5px;
	width: 66%;
}
.we-video-info > ul li {
	display: inline-block;
	font-size: 14px;
	margin-right: 35px;
	vertical-align: middle;
}
.we-video-info > ul li span {
	font-size: 16px;
	font-weight: 400;
	position: relative;
}
.we-video-info > ul li span i {
	font-size: 18px;
	color: #82828e;
}
.we-video-info > ul li span ins {
	font-size: 11px;
	left: 20px;
	position: absolute;
	text-decoration: none;
	top: -5px;
	background: none;
	line-height: initial;
}
.post-meta > figure {
	display: inline-block;
	margin: 0;
	position: relative;
	width: 100%;
}
.img-bunch {
	float: left;
	position: relative;
	width: 100%;
}
.img-bunch > .row {
	margin: 0;
}
.img-bunch > .row > div {
	padding: 0;
}
.img-bunch figure {
	float: left;
	margin: 0;
	padding: 1px;
	position: relative;
	width: 100%;
}
.img-bunch figure > a > img {
	width: 100%;
}
.img-bunch figure > a {
	display: inline-block;
	width: 100%;
}
.more-photos::before {
	background: rgba(8, 141, 205, 0.8) none repeat scroll 0 0;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.more-photos > span {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	color: #fff;
}

/*--- event widget ---*/
.rec-events {
	border-radius: 5px;
	color: #fff;
	margin: 0 auto 20px;
	overflow: hidden;
	padding: 15px 10px;
	position: relative;
	text-align: center;
	width: 100%;
}
.rec-events:last-child{margin-bottom: 0;}
.rec-events > i {
	display: inline-block;
	font-size: 40px;
	margin-bottom: 10px;
}
.bg-purple {
	background: #8c6ad2 none repeat scroll 0 0;
}
.rec-events > h6 {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.rec-events > img {
opacity: 0.4;
position: absolute;
right: -30px;
top: 10px;
}
.see-all {
float: right;
font-size: 11px;
margin-top: 2px;
}
.postDropdownOptnsOverlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0);
display: none; /* Initially hidden */
z-index: 999;
}
.gap {
  margin-top: 70px;
}
.PopupCreateNewPostPic {
display: inline-block;
}
.PopupCreateNewPostPic > input {
width: 46%;
}
.media-body.mb-5.text-white {
    font-size: 12px;
}
        @media (prefers-color-scheme: dark) {
            body {
                background-color: var(--background-dark);
                color: var(--text-dark);
            }
			header,footer {
				background: #1d2333;
				border-bottom-color: #2e3648;
			}
			.topbar ul.web-elements > li > a {
				background: #293249 none repeat scroll 0 0;
			}
			.logo > a > span {
				color: #fff;
			}
			.main-wraper, aside .widget,aside .widgetads, .friend-box,aside .widgetads-advertisment, .sideManuBars{
				background: #1d2333;
				border: 1px solid rgba(255, 255, 255, .04);
			}
			.realtime > span {
				color: #fff;
			}
			.date-time > span#date {
				color: #fff;
			}
			.widget .sponsors-ad > li .sponsor-meta > a {
				color: #92929e;
			}
			.sidebar .widget li > a {
				color:white;
			}
			.sidebar .widget li:hover {
				background: #293249 none repeat scroll 0 0;
			}
			 h3, b, i {
				color: #fff !important;
			} 
			.dropdown {
				background: #293249;
				border: 1px solid rgba(255, 255, 255, .04);
			}
			.box button {
				background: #007bff;
				border: 1px solid rgba(255, 255, 255, .04);
			}
			.widget-user-info,.post-meta-info {
				background: #293249 none repeat scroll 0 0;
				border: 1px solid rgba(255, 255, 255, .04);
			}
			.sideManuBars ul li a:hover {
				background: #293249 none repeat scroll 0 0;
			}
			.sideManuBars ul li a {
				color: white;
			}
			.sidebarCloseBtn i{
				color: white;
			}
			.mesgNotifSidebar{
				background: #1d2333;
				border: 1px solid rgba(255, 255, 255, .04);
			}
			.mesgNotif-info {
				background: #293249;
			}
			.PopupCreateNewPost {
				background: #293249;
			}
			.sideManuBars, .mesgNotifSidebar, .mesgNotif-info { 
				background: #1d2333 none repeat scroll 0 0;
			}
			.widget,.main-wraper, .widgetads,.frnd-meta, .friend-box, .widgetads-advertisment{
				background: #1d2333;
				border: 1px solid rgba(255, 255, 255, .04)!important;
			}
			body input, body textarea{
				color: #333;
				background: #293249;
				border: 1px solid #655fd5!important;
			}
			ul.dropdown li a {
				color: white;
			}
			.dropdown > li > a {
				background: #1d2333;
			}
			.contactform input,.contactform textarea{
				color: white;
				
			}
			.PopupCreateNewPost .PopupCreateNewPostPic input,
			.PopupCreateNewPost textarea,
			.PopupCreateNewPost input,
			.PopupCreateNewPost .PopupCreateNewPostDefultPost input{
				color: white;
			}
			.post-details .post-title-edit input{
				color: #white;
			}
			input#user_email {
				color: white;
			}
			input#post_title {
				color: white;
			}
			input#post_title_edit {
				color: white;
			}
			input#update_post_image_by_link {
				color: white;
			}
			textarea#post_text_for_img_edit {
				color: white;
			}
			input#FirstName {
				color: black;
			}
			input#LastName {
				color: black;
			}
			input.form-control.input_user {
				color: black;
			}
			input[type="text"] {
				color: white;
			}
			input#exampleInputEmail1 {
				color: black;
			}
			textarea#post_text_for_embed_video_edit {
				color: white;
			}
			.dropdown li a:hover {
				background: #151a27 none repeat scroll 0 0;
			}
			.more-post-optns > ul {
				background: #293249;
			}
			.more-post-optns > ul > li {
				color: white;
				
			}
			.more-post-optns > ul > li{
				background:#1d2333;
			}
			.more-post-optns > ul > li:hover{
				background:#0e111a;
			}
			.modal-content {
				background: #1d2333;
				border-bottom-color: #2e3648;
			}
			.login_btn {
				width: 100%;
				background: #26ACE2 !important;
			}
			.input-group-text {
				background: #26ACE2 !important;
			}
			.user_card {
				background: #ffffff;
				color:black;
				
			}
			.brand_logo_container {
				background: #151a27;
				
			}
			.brand_logo {
				border: 2px solid #ffffff;
			}
			#loader {
				background: #151a27;
			}
    #chat-box {
      background-color: #1d2333;
      border: 1px solid #151a27;
	}	  
	#chat-input {
	  border-top: 1px solid #151a27;
	}
	.sender-name {
	  color: #fff;
	}	
	.message-text {
	  color: black !important;
	}				

        }	












::placeholder {
    color: #aaa;
    font-style: italic;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 480px) {
    .PopupCreateNewPost {
        padding: 15px;
    }
	ul.web-elements-unsubscribe {
    display: none;
	}
    .PopupCreateNewPostHeader h3 {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 990px) {
	ul.web-elements-unsubscribe li {
		margin: 0 2px;
	}
	.owl-dot {
		border: 1px solid #480202;
		border-radius: 100%;
		display: inline-block;
		height: 10px;
		margin: 0 2px;
		position: relative;
		width: 10px;
	}
	.owl-dots {
		display: inline-block;
		text-align: center;
		width: 100%;
	}
	.owl-dot.active::before {
		background: #26ACE2 ;
		border-radius: 100%;
		content: "";
		height: 6px;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 6px;
	}
	.sidebar {
		display: none;
	}
	.sidebarformobile{
		display: block!important;
	}
	.main-content {
		flex: 1 0 100%; /* Take full width when sidebars are hidden */
	}
}
@media (max-width: 480px) {
	.profileStatus{
		display: block!important;
		text-align: center!important;
		padding: 10px 0px!important;
		position: static!important;
	}
}


