:root {
	--height-adustment: 110px;
}

body {
	overflow-y: hidden;
}

hr, .hr {
    margin: 1.5rem 0;
}

.rtl {
    direction: rtl;
}

.ti {
	font-size: 16px;
	justify-content: center;
	align-items: center;
}

.icon {
    font-size: 1.25rem !important;
}

#wrapper, .wrapper {
	overflow: hidden;
}

.sidebar-wrapper {
	min-height: calc((var(--vh, 1vh) * 100));
	margin-left: 0;
	transition: margin 0.25s ease-out;
	background-color: #f2f3f5;
	position: relative;
}

.rightbar-wrapper {
	min-height: calc((var(--vh, 1vh) * 100) - 3rem);
	transition: margin 0.25s ease-in;
	min-width: 15rem;
	width: 15rem;
	margin-right: 0;
	background: #f8fafc;
	z-index: 9;
}

.sidebar-wrapper .sidebar-heading {
	padding: 0.875rem 1.25rem;
	font-size: 1.2rem;
}


body.sb-sidenav-toggled #wrapper .sidebar-wrapper {
	/* margin-left: -19.5rem; */
	margin-left: -15rem;
}

body.sb-rightnav-toggled #wrapper .rightbar-wrapper {
	margin-right: -15rem;
}

.page-content-wrapper {
	/* min-width: 100vw; */
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: calc((var(--vh, 1vh) * 100));
}

.main-panel {
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: calc((var(--vh, 1vh) * 100) - 50px);
}

.room-bar {
	width: 4.5rem;
	display: flex;
	height: calc((var(--vh, 1vh) * 100));
	background-color: #e3e5e8;
	z-index: 1024;
}

.channel-bar {
	width: 15rem;
}

.mini-brand {
	padding: 10px;
	display: flex;
	justify-content: center;
}

.mini-brand-seperator {
	height: 2px;
	width: 32px;
	border-radius: 1px;
	background-color: #141b20;
	margin-left: auto;
	margin-right: auto;
}

.room-list {
	padding: 0;
	margin-top: 10px;
	overflow-y: auto;
	overflow-x: hidden;
}

.room-list .room-list-item {
	list-style: none;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	position: relative;
}

.pill {
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 0px;
	background: #060607;
	position: absolute;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	transition: 0.3s;
}

.private-item .pill, .explore-room .pill, .radio-container .pill, .manage-room .pill {
	left: -10px;
}

.room-list-item:hover .pill, .private-item:hover .pill, .explore-room:hover .pill, .manage-room:hover .pill, .radio-container:hover .pill {
	height: 40px;
}

.room-list-item .pill.active, .private-item .pill.active, .explore-room .pill.active, .manage-room .pill.active {
	height: 40px;
}

.chatroom-item {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s;
}

.chatroom-item img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	object-position: center;
}

.action-list {
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	bottom: 0;
	padding-top: 10px;
	margin-top: auto;
}

.action-item {
	background: #eee;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	line-height: 1;
	position: relative;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
}

.room-name {
	width: 100%;
	font-weight: 900;
	font-size: 15px;
	text-transform: uppercase;
	transition: 0.3s;
}

.room-name .dropdown-toggle {
	width: 100%;
	cursor: pointer;
	display: flex;
    align-items: center;
}

.room-name span {
	width: 88%;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.topbar {
	height: 3rem;
	min-height: 3rem;
	border-bottom: 1px solid rgba(98, 105, 118, 0.16);
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}

.channel-cat {
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 500;
	padding-left: 10px;
	margin-bottom: 1px;
	margin-right: 3px;
    margin-left: 3px;
	border-radius: 5px;
	padding: 5px 10px;
	transition: 0.1s;
	display: flex;
}

.channel-cat:hover {
	background-color: #DFE1E5;
}

.channel-cat-actions {
	margin-left: auto;
}

.channel-item {
	padding-left: 7px;
	cursor: pointer;
	margin-left: 10px;
	margin-right: 7px;
	margin-bottom: 2px;
	border-radius: 5px;
	transition: 0.1s;
	display: flex;
	height: 34px;
	align-items: center;
}

.channel-name {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 250px;
}

.channel-icon, .top-channel-icon {
	display: flex;
	align-items: center;
}

.channel-item:hover {
	background-color: #DFE1E5;
}

.channel-actions {
	margin-left: auto;
	font-size: 16px;
	padding-right: 5px;
}

.channel-container {
	margin-top: -48px;
}

.sidebar-height-fix {
	overflow: auto;
	height: calc((var(--vh, 1vh) * 100) - 48px);
}

.sidebar-height-fix-mt48 {
    margin-top: 48px;
    height: calc((var(--vh, 1vh) * 100) - 96px);
	overflow-y: auto;
	overflow-x: hidden;
}

.channel-list {
	padding: 10px 0 10px 0px;
	background-color: #f2f3f5;
}

.topbar-channels {
	background-color: rgba(242, 243, 245, 0);
	z-index: 1;
}

.room-img-shown .room-name {
	color: #fff;
	/* -webkit-filter: drop-shadow(0 1px 1px rgba(0,0,0,.8));
	filter: drop-shadow(0 1px 1px hsla(0,0%,0%,.8)); */
	text-shadow: 0 1px 2px rgba(0, 0, 0, .8);
	transition: 0.3s;
}

.room-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 58px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .4)), to(transparent));
	background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0, transparent);
}

.room-img {
	position: relative;
	overflow: hidden;
	min-height: 48px;
}

.channel-list-bottom {
	height: 48px;
	display: flex;
}

#rpanel-tab .nav-link {
	display: block;
}

.btn-sm-round {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	padding: 0.125rem 0.5rem;
	font-size: 0.75rem;
	align-self: center;
}

.page-content-wrapper .topbar {
	padding-left: 10px;
	padding-right: 10px;
	flex-wrap: nowrap;
}

.rotate {
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 20.3s linear;
	transition: all 0.3s linear;
}

.rotate.down {
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.top-channel-name {
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: calc(100vw - 200px);
}

.hidden {
	display: none !important;
}

.cht {
	clear: both;
	float: left;
	width: 100%;
	font-size: 14.2px;
	display: flex;
	position: relative;
	margin-bottom: 25px;
	word-break: break-word;
}

.cht .message-data {
	display: inline-block;
	border-radius: 5px;
	max-width: 255px;
	line-height: 1;
	margin-bottom: 0px;
	position: relative;
}

.cht.sent {
	justify-content: flex-end;
}

.cht .avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}

.cht.sent .avatar {
	margin-left: 8px;
	float: right;
	order: 3;
}

.cht.replies .avatar {
	float: left;
	margin-right: 8px;
}

.cht.sent .message-data, .sent .video-link, .sent .link-meta {
	color: #f5f5f5;
}


.cht.sent .message-data {
	float: right;
	order: 2;
	position: relative;
}

.message-data.grp small {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding-bottom: 3px;
}

.sent .message-data:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	right: -4px;
	left: auto;
	top: 0px;
	bottom: auto;
	border: 7px solid;
}

.replies .message-data:after {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: -4px;
	right: auto;
	top: 0px;
	bottom: auto;
	border: 7px solid;
}

.message-html, .chat-img, .chat-txt, .chat-gif, .chat-sticker {
	display: block;
	overflow: hidden;
}

.sent .message-meta {
	position: absolute;
	right: 38px;
	bottom: -18px;
}

.message-time {
	color: #999;
}

.message-status.read {
	color: #547fff;
}

.message-status {
	font-size: 9px;
}

.chat-txt {
	line-height: 19px;
	white-space: pre-line;
	padding: 5px 10px 5px 10px;
	display: block;
	border-radius: 5px;
}

.cht.replies .message-data small {
	color: #03A9F4 !important;
}

.cht .message-data small {
	display: block;
	font-weight: bold;
	color: #4e73df;
	padding-left: 10px;
	padding-top: 5px;
	padding-right: 10px;
}

.message-data.grp .message-html>div {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	padding-top: 0px;
}

.cht.bot-message .avatar {
    padding: 3px;
    border: 1px solid rgba(32, 224, 196, .42);
    background: linear-gradient(135deg, rgba(255, 51, 93, .18), rgba(32, 224, 196, .18));
    box-shadow: 0 0 0 4px rgba(32, 224, 196, .08);
}

.cht.bot-message .message-data {
    border: 1px solid rgba(32, 224, 196, .35);
    background: linear-gradient(135deg, rgba(13, 23, 42, .96), rgba(5, 47, 53, .84));
}

.cht.bot-message .message-data:after {
    border-right-color: rgba(32, 224, 196, .35);
}

.bot-sender-name {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    color: #7df9eb !important;
    font-weight: 900;
}

.bot-sender-name i {
    font-size: 13px;
}

.bot-sender-name span {
    padding: 2px 5px;
    border-radius: 999px;
    color: #06111c;
    background: linear-gradient(135deg, #20e0c4, #60a5fa);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .04em;
}

.replies .message-meta {
	position: absolute;
	left: 38px;
	bottom: -18px;
}

.sent .forward-check {
	margin-right: auto;
}

.forward-check {
	display: flex;
	padding-left: 8px;
}

.new-date p {
	text-align: center;
	width: 100%;
	max-width: unset !important;
}

figure {
	margin: 0;
}

.chat-img-grp .chat-img img {
	border-radius: 0px;
}

.chat-img-grp .chat-img:nth-child(1) img {
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.chat-img-grp .chat-img:nth-child(2) img {
	border-bottom-left-radius: 5px;
}

.chat-img-grp .chat-img:nth-child(3) img {
	border-bottom-right-radius: 5px;
}

.chat-img-grp .chat-img:nth-child(n+2) {
	display: inline-block;
	width: 50%;
}

.chat-img-grp .chat-img:nth-child(n+2) img {
	width: 100%;
	object-fit: cover;
}

.chat-img-sgl img {
	border-radius: 5px;
	object-fit: cover;
}

.chat-img-duo img {
	border-radius: 5px;
	object-fit: cover;
}

.chat-img-duo figure:nth-child(1) {
	margin-bottom: 5px;
}

.chat-img.more {
	position: relative;
}

.more-ovrlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f3f3f3;
	font-size: 24px;
	border-bottom-right-radius: 5px;
}

.chat-img-duo .chat-img:nth-child(1) {
	margin-bottom: 5px;
}

.chat-img-duo, .chat-img-grp, .chat-img-sgl, .chat-gif {
	padding: 5px !important;
	border-radius: 5px;
}

.chat-img-sgl {
	height: 100%;
}

.chat-img-duo {
	height: 100%;
}

.chat-img-grp {
	max-width: 240px;
	height: 100%;
}

.sent div.chat-gif img {
	object-fit: cover;
	object-position: center;
}

.file-section {
	display: inline-block;
	padding: 10px !important;
	color: #fff;
	position: relative;
	width: 220px;
	border-radius: 5px;
	height: 52px;
}

.file-header {
	display: flex;
	outline: none;
}

.file-icon {
	min-width: 30px;
	margin-right: 5px;
	align-self: flex-start;
	position: relative;
	font-size: 32px;
}

.file-description {
	min-width: 0;
	font-size: 13px;
	overflow: hidden;
	width: 60%;
	line-height: 1.2;
}

.file-title {
	display: block;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 500;
	padding: 4px 0;
	margin: -4px 0;
	display: -webkit-box;
	overflow: hidden;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.file-meta {
	line-height: 1;
}

.file-meta-entry {
	white-space: nowrap;
	margin-top: 4px;
}

.file-meta-swap {
	display: inline-block;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	white-space: nowrap;
	font-size: 12px;
}

.file-actions {
	position: absolute;
	z-index: 2;
	top: 11px;
	right: 10px;
}

.file-download-icon {
	position: relative;
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	color: #8bc34a;
}

.file-download-icon:hover {
	color: #47b9cc;
}

.file-action-buttons {
	text-decoration: none;
	align-items: center;
	border-radius: 4px;
	display: inline-flex;
	justify-content: center;
	position: relative;
	background: rgba(0, 0, 0, 20%);
}

.chat-files-block:nth-child(n+2) .file-section {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	margin-top: 3px;
}

.chat-code {
	padding: 5px;
	display: block;
	border-radius: 5px;
	line-height: 19px;
	white-space: pre-line;
	position: relative;
	overflow: hidden;
}

code[class*="language-"], pre[class*="language-"] {
	white-space: pre-wrap !important;
	word-break: break-word !important;
}

.chat-code>pre {
	border-radius: 5px !important;
	margin: 0 !important;
}

.code-caption {
	padding-top: 5px;
	display: flex;
	align-self: center;
}

.code-lang {
	display: inline-block;
	padding: 3px 5px;
	background: #36b9cc;
	font-size: 11px;
	line-height: 1;
	overflow: hidden;
	min-width: 30px;
	max-height: 17px;
	white-space: nowrap;
	color: #fff;
	border-radius: 2px;
}

.code-title {
	display: flex;
	align-self: center;
	margin-left: 5px;
}

@media screen and (min-width: 735px) {
	.cht .message-data {
		max-width: 100%;
	}
}

.green-audio-player {
	width: 200px;
	height: 32px;
	box-shadow: 0 4px 16px 0 rgb(0 0 0 / 7%);
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 4px !important;
	user-select: none;
	background-color: #fff;
	box-sizing: border-box;
	outline: none;
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.green-audio-player.player-accessible .play-pause-btn:hover,
.green-audio-player.player-accessible .controls:hover,
.green-audio-player.player-accessible .volume__button:hover,
.green-audio-player.player-accessible .volume__controls:hover,
.green-audio-player.player-accessible .download:hover {
	outline: dotted 1px #999;
}

.green-audio-player svg,
.green-audio-player img {
	display: block;
	width: 10px;
}

.green-audio-player .holder {
	position: relative;
}

.green-audio-player .holder .loading .loading__spinner {
	position: absolute;
	left: -3px;
	bottom: 2px;
	width: 16px;
	height: 16px;
	border: 2px solid #b0b0b0;
	border-right-color: rgba(0, 0, 0, 0);
	border-radius: 50%;
	animation: spin 0.4s linear infinite;
}

.green-audio-player .holder .play-pause-btn {
	visibility: hidden;
	cursor: pointer;
	outline: none;
}

.green-audio-player .holder .play-pause-btn:focus {
	outline: none;
}

.green-audio-player .slider {
	flex-grow: 1;
	background-color: #d8d8d8;
	cursor: pointer;
	position: relative;
}

.green-audio-player .slider .gap-progress {
	background-color: #44bfa3;
	border-radius: inherit;
	position: absolute;
	pointer-events: none;
}

.green-audio-player .slider .gap-progress .pin {
	height: 10px;
	width: 10px;
	border-radius: 8px;
	background-color: #44bfa3;
	position: absolute;
	pointer-events: all;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}

.green-audio-player .slider .gap-progress .pin::after {
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0);
	width: 200%;
	height: 200%;
	margin-left: -50%;
	margin-top: -50%;
	border-radius: 50%;
}

.green-audio-player .controls {
	font-size: 10px;
	line-height: 18px;
	color: #55606e;
	display: flex;
	flex-grow: 1;
	justify-content: space-between;
	align-items: center;
	outline: none;
	position: relative;
	margin-top: -11px !important;
}

.green-audio-player .controls .controls__slider {
	margin-left: 16px;
	border-radius: 2px;
	height: 4px;
}

.green-audio-player .controls .controls__slider .controls__progress {
	width: 0;
	height: 100%;
}

.green-audio-player .controls .controls__slider .controls__progress .progress__pin {
	right: -8px;
	top: -3px;

}

.green-audio-player .controls span {
	cursor: default;
}

.green-audio-player .controls:focus {
	outline: none;
}

.green-audio-player .volume {
	position: relative;
	display: none;
}

.green-audio-player .volume .volume__button {
	cursor: pointer;
	outline: none;
}

.green-audio-player .volume .volume__button:focus {
	outline: none;
}

.green-audio-player .volume .volume__button.open path {
	fill: #44bfa3;
}

.green-audio-player .volume .volume__controls {
	width: 30px;
	height: 135px;
	background-color: rgba(0, 0, 0, 0.62);
	border-radius: 7px;
	position: absolute;
	left: -3px;
	bottom: 52px;
	flex-direction: column;
	align-items: center;
	display: flex;
	z-index: 2;
	outline: none;
}

.green-audio-player .volume .volume__controls .volume__slider {
	margin-top: 12px;
	margin-bottom: 12px;
	width: 6px;
	border-radius: 3px;
}

.green-audio-player .volume .volume__controls .volume__slider .volume__progress {
	bottom: 0;
	height: 100%;
	width: 6px;
}

.green-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
	left: -5px;
	top: -8px;
}

.green-audio-player .volume .volume__controls:focus {
	outline: none;
}

.green-audio-player .volume .volume__controls.hidden {
	display: none;
}

.green-audio-player .volume .volume__controls.top {
	bottom: 52px;
	left: -3px;
}

.green-audio-player .volume .volume__controls.middle {
	bottom: -54px;
	left: 54px;
}

.green-audio-player .volume .volume__controls.bottom {
	bottom: -164px;
	left: -3px;
}

.green-audio-player .download {
	display: none;
	margin-left: 16px;
	cursor: pointer;
	outline: none;
}

.green-audio-player .download:focus {
	outline: none;
}

.green-audio-player:focus {
	outline: none;
}

.message__offscreen {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

span.controls__current-time {
	position: absolute;
	bottom: -20px;
	left: 14px;
}

span.controls__total-time {
	position: absolute;
	bottom: -20px;
	right: 0;
}

.chat-audio {
	padding: 3px !important;
	position: relative;
	width: 220px;
	border-radius: 5px;
	height: 38px;
	display: flex;
	align-items: center;
}

.audio-icon {
	padding: 7px 10px;
	background: #44607b;
	margin: 0;
	color: #ffffff;
	border-radius: 5px;
	font-size: 18px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
}

.sent .audio-icon {
	background: #566574;
	color: #ffffff;
}

.chat-replied-bubble {
	padding-top: 5px;
	border-radius: 5px;
}

.fwd-label {
	font-style: italic;
	font-size: 12px;
	opacity: 0.8;
}

.chat-fwd {
	padding: 5px 10px 5px 10px;
	border-radius: 5px;
}

.chat-fwd>div {
	padding-left: 0px !important;
	padding-right: 0px !important;
	padding-bottom: 0px !important;
}

.chat-link-block img {
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	max-width: 250px;
	height: 141px;
	object-fit: cover;
	object-position: center;
}

.link-meta {
	display: inline-block;
	padding: 10px !important;
	background: #00BCD4;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	width: 100%;
}

.link-preview {
	margin-top: 5px;
	cursor: pointer;
	width: 250px;
	position: relative;
}

.link-preview b {
	line-height: 1.2;
	font-weight: 600;
	font-size: 14px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: 32px;
}

.link-meta-desc {
	font-size: 12px;
	line-height: 1.2;
	margin-top: 5px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: 32px;
	overflow: hidden;
}

.sent .link-preview {
	float: right;
}

.video-section {
	display: inline-block;
	padding: 5px !important;
	position: relative;
	border-radius: 5px;
	transition: 0.3s;
}


.video-link {
	color: #fff;
	transition: 0.3s;
}

.video-thumb {
	object-fit: cover;
	object-position: center;
	width: 255px;
	height: 155px;
	border-radius: 5px;
}

.video-section .video-link:before {
	top: 30%;
}

.video-link:before {
	font-family: "tabler-icons" !important;
	content: "\f691";
	position: absolute;
	z-index: 9;
	top: 20%;
	text-align: center;
	width: 100%;
	font-size: 64px;
	color: #36b9cc;
}

.flex-flow-col {
	display: flex !important;
	flex-flow: column;
	height: 100%;
}

.message-data:hover+.chat-actions {
	opacity: 1;
}

.reactions {
	position: relative;
}

.chat-reactions {
	line-height: 1;
}

.chat-reactions i:hover {
	opacity: 1 !important;
}


.reactions .reaction-btn {
	cursor: pointer;
}

.reactions .popover-body {
	padding: 0.5rem 0.75rem;
}

.reaction-box .reaction-icon {
	width: 33px;
	height: 33px;
	display: inline-block;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
	transform: translate(0, 100px) scale(0);
	background-size: 33px 33px;
	cursor: pointer;
}

.reaction-box .reaction-icon label {
	padding: 3px 5px 3px 5px;
	position: relative;
	top: -24px;
	border-radius: 10px;
	font-size: 9px;
	color: #FFF;
	background: #333;
	visibility: hidden;
	width: max-content;
}

.reaction-box .reaction-icon.show {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.reaction-box .reaction-icon:hover {
	transform: scale(1.4);
	transform-origin: bottom;
}

.reaction-icon.active {
	border-bottom: 2px solid #03a9f4;
}

.reaction-icon:hover label {
	visibility: visible;
}

.react-1 {
	background-image: url(../../media/reactions/react_1.gif);
}

.react-2 {
	background-image: url(../../media/reactions/react_2.gif);
}

.react-3 {
	background-image: url(../../media/reactions/react_3.gif);
}

.react-4 {
	background-image: url(../../media/reactions/react_4.gif);
}

.react-5 {
	background-image: url(../../media/reactions/react_5.gif);
}

.react-6 {
	background-image: url(../../media/reactions/react_6.gif);
}

.react-7 {
	background-image: url(../../media/reactions/react_7.gif);
}

.current-react {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	width: 18px;
	height: 18px;
	background-size: 18px;
	background-repeat: no-repeat;
	cursor: pointer;
	margin: 1px;
}

.list-react {
	position: relative;
	overflow: hidden;
	width: 22px;
	height: 22px;
	background-size: 22px;
	background-repeat: no-repeat;
	cursor: pointer;
	margin-right: 3px;
	display: flex;
	align-items: center;
}

.current-react-1 {
	background-image: url(../../media/reactions/static_react_1.png);
}

.current-react-2 {
	background-image: url(../../media/reactions/static_react_2.png);
}

.current-react-3 {
	background-image: url(../../media/reactions/static_react_3.png);
}

.current-react-4 {
	background-image: url(../../media/reactions/static_react_4.png);
}

.current-react-5 {
	background-image: url(../../media/reactions/static_react_5.png);
}

.current-react-6 {
	background-image: url(../../media/reactions/static_react_6.png);
}

.current-react-7 {
	background-image: url(../../media/reactions/static_react_7.png);
}

.message-data.has-reactions {
	margin-bottom: 20px !important;
	padding-bottom: 5px;
}

.current-reacts-count {
	font-size: 11px;
	margin-left: 5px;
	margin-right: 5px;
	color: #ffffff;
}

.sent .current-reacts {
	float: right;
	right: 0;
	margin: auto 0px auto 3px;
}

.replies .current-reacts {
	left: 0;
	border-top-right-radius: 6px !important;
	border-top-left-radius: 6px !important;
	padding-top: 5px !important;
	margin: auto 3px auto 0px;
}

.current-reacts {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: center;
	padding: 3px 3px;
	border-radius: 6px;
	bottom: -20px;
	position: absolute;
	width: max-content;
	margin: auto 3px;
	background: #607d8b;
}

.filter-reaction-list {
	display: flex;
}

.filter-btn.active {
	box-shadow: 0px 0px 6px 2px #36b9cc;
}

.list-reacts {
	display: inline-flex;
	margin-left: auto;
}

.filter-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 25px;
	margin-right: 5px;
	padding: 0px 6px;
	white-space: nowrap;
}

.filter-reaction {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.react-avatar {
	border-radius: 50%;
	width: 32px;
	height: 32px;
	overflow: hidden;
	margin-right: 10px;
}

.remove-react {
	margin-left: 10px;
	transition: 0.3s;
	cursor: pointer;
}

.filter-reaction .list-react {
	margin-left: 10px;
	border-radius: 5px;
}

.chat-actions.active {
	opacity: 1;
}

.sent .chat-actions {
	margin-right: 10px;
}

.chat-actions i {
	cursor: pointer;
	font-size: 20px;
	color: #626976;
}

.chat-actions i:hover {
	color: #1e293b;
}


.chat-actions {
	display: flex;
	align-items: center;
	color: #d1d5d7;
	opacity: 0;
	font-size: 18px;
	transition: 0.3s;
}

.replies .chat-actions {
	margin-left: 10px;
}

.replies:hover .chat-actions {
	opacity: 1;
	margin-left: 10px;
}

.sent:hover .chat-actions {
	opacity: 1;
	margin-right: 10px;
}

.chat-actions .fas.fa-ellipsis-v:hover {
	color: #607d8b;
}

#video-embed-content iframe, #video-embed-content video {
	width: 100%;
}

#video-modal-2 .close, #video-modal .close {
	padding: 0;
	background: #F44336;
	color: #fff;
	opacity: 1;
	font-weight: normal;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

#video-modal .modal-body, #video-modal-2 .modal-body {
	position: relative;
	padding: 0px;
}

#video-modal .modal-content, #video-modal-2 .modal-content {
	border: none;
	background: rgba(0, 0, 0, 0);
}

#video-iframe {
	width: 520px;
	height: 300px;
}

#video-modal-2 .modal-header, #video-modal .modal-header {
	border: none;
	justify-content: end;
	background: none;
	padding: 0;
}

.file-uploader {
	display: none;
	position: absolute;
	background: #141b20;
	width: 60%;
	bottom: 0;
	height: calc((var(--vh, 1vh) * 100) - 60px);
	height: calc((var(--vh, 1vh) * 100) - 60px);
	padding: 5px;
	z-index: 999;
}

.file-uploader-close {
	position: absolute;
	right: 10px;
	z-index: 9;
}

.file-uploader-close i {
	padding: 5px;
	background: red;
	border-radius: 50%;
	line-height: 9px;
	font-size: 13px;
	cursor: pointer;
	color: #fff;
}

a.uppy-Dashboard-poweredBy {
	display: none;
}

.message-time {
	font-size: 10px;
}

.messages {
	padding: 15px;
	display: block;
	overflow-y: scroll;
	overflow-x: hidden;
	height: 100%;
	min-width: 320px;
}

img.img-profile {
	width: 32px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
	height: 32px;
}

.user-row {
	padding: 5px 8px;
	cursor: pointer;
	transition: 0.3s;
}

.private-list .user-row {
	position: relative;
}

.height-scroll {
	height: calc((var(--vh, 1vh) * 100) - 48px);
	overflow-y: scroll;
	overflow-x: hidden;
}

.height-scroll-rpanel {
	height: calc((var(--vh, 1vh) * 100) - 90px);
	overflow-y: scroll;
	overflow-x: hidden;
}

.user-status {
	font-size: 12px;
}

.channel-user-image {
	display: flex;
	align-items: center;
	position: relative;
}

.channel-user-details {
	align-items: center;
	display: flex;
}

.user-type-badge {
	text-transform: UPPERCASE;
	font-size: 8px;
	padding: 1px 4px;
	border-radius: 2px;
	line-height: 1;
	vertical-align: middle;
	color: #fff;
}

.user-type-badge.admin {
	background: #e74a3b;
}

.user-type-badge.mod {
	background: #ff7043;
}

.user-type-badge.creator {
	background: #4e73df;
}

.user-type-badge.room-mod {
	background: #1cc88a;
}

.fa-gender.fa-venus {
	color: #E91E63;
}

.fa-gender.fa-mars {
	color: #00BCD4;
}

.user-row:hover {
	background: #caced2;
}

.user-popover .popover-body {
	padding: 0;
}

.user-popover .card {
	border: none;
}

.user-popover {
	overflow: hidden;
}

.user-popover-image {
	position: absolute;
	top: 90px;
	width: 40px;
	height: 40px;
	right: 15px;
	border: 2px solid #fff;
	border-radius: 5px;
}

.private-messages {
	padding: 10px;
	display: flex;
	justify-content: center;
}

.private-messages .private-item {
	background: #1e293b;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #eee;
	font-size: 24px;
	position: relative;
}

.main-tab-pane {
	overflow-x: hidden;
	width: 100%;
	height: 100%;
}

.main-tab-content {
	width: 100%;
}

.main-tab-pane.active {
	display: flex;
}

.editor-container {
	padding: 5px 10px;
	/* border: 1px solid #e0e3e6; */
	border-radius: 10px;
	margin: 15px;
	display: flex;
	align-items: center;
	background-color: #EBEDEF;
	min-height: 42px;
}

.note-editor.note-frame .note-statusbar {
	display: none;
}

.note-editable p {
	margin-bottom: 0;
}

.editor-container .note-editor.note-airframe .note-editing-area .note-editable, .note-editor.note-frame .note-editing-area .note-editable {
	padding: 6px 8px 6px 10px !important;
}

.editor-container .note-editor.note-frame {
	border: none;
}

.chat-scroll {
	height: 100%;
	overflow: hidden;
}

.editor-col {
	width: 100%;
}

.emoji-col {
	display: flex;
	align-items: center;
}

.attachments-container {
	margin: 15px 15px 0px;
	border: 1px solid #e0e3e6;
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
}

.attachments-container .tab-pane.active {
	height: 300px;
	display: flex !important;
	flex-flow: column;
}

.editor-icon {
	color: #4F5660;
	cursor: pointer;
	transition: 0.3s;
}

.editor-icon:hover {
	color: #2E3338;
}

.dropup-menu-arrow:before {
	content: "";
	position: absolute;
	bottom: -0.25rem;
	left: 0.75rem;
	display: block;
	background: inherit;
	width: 14px;
	height: 14px;
	transform: rotate(225deg);
	transform-origin: center;
	border: 1px solid;
	border-color: inherit;
	z-index: -1;
	clip: rect(0px, 9px, 9px, 0px);
}

.dropup-menu-arrow.dropup-menu-end:before {
	right: .75rem;
	left: auto;
}

.gifs {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	margin-top: 5px;
}

.send-gif {
	border-radius: 5px;
	overflow: hidden;
	padding: 5px;
	height: max-content;
	cursor: pointer;
}

.send-gif img {
	border-radius: 5px;
}

.send-gif img:hover {
	border: 3px solid #03A9F4;
	border-radius: 5px;
}

.send-sticker img:hover {
	animation: pulse 1s;
}

.send-sticker {
	display: inline;
	cursor: pointer;
}

.sticker-list {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

.attachments-container .nav-pills .nav-link.active, .attachments-container .nav-pills .show>.nav-link {
	color: #fff;
	background-color: #4F5660;
}

.attachments-container .nav-link {
	padding: 0.2rem 0.75rem;
}

.attachment-col svg {
	cursor: pointer;
}

/* Whitoo press-and-hold voice message recorder 2026052916 */
.editor-container {
	position: relative;
}

.lt-voice-hold-btn {
	width: 36px;
	height: 36px;
	min-width: 36px;
	padding: 0;
	margin-right: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid rgba(35, 213, 208, .28);
	color: #23d5d0;
	background: rgba(35, 213, 208, .10);
	touch-action: none;
	user-select: none;
}

.lt-voice-hold-btn:hover,
.lt-voice-hold-btn.is-recording {
	color: #fff;
	border-color: rgba(239, 51, 87, .72);
	background: linear-gradient(135deg, #ef3357, #23d5d0);
	box-shadow: 0 10px 26px rgba(239, 51, 87, .20);
}

.lt-voice-recorder {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: calc(100% + 8px);
	z-index: 20;
	min-height: 58px;
	padding: 8px;
	display: none;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(35, 213, 208, .28);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(35, 213, 208, .14), rgba(239, 51, 87, .11)),
		rgba(8, 13, 25, .97);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .36);
	backdrop-filter: blur(16px);
}

.lt-voice-recorder.is-recording {
	display: flex;
}

.lt-voice-pulse {
	width: 42px;
	height: 42px;
	min-width: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(135deg, #ef3357, #23d5d0);
	box-shadow: 0 0 0 0 rgba(239, 51, 87, .42);
	animation: whitooVoicePulse 1.3s infinite;
}

@keyframes whitooVoicePulse {
	0% { box-shadow: 0 0 0 0 rgba(239, 51, 87, .38); }
	70% { box-shadow: 0 0 0 12px rgba(239, 51, 87, 0); }
	100% { box-shadow: 0 0 0 0 rgba(239, 51, 87, 0); }
}

.lt-voice-copy {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lt-voice-copy strong {
	color: #fff;
	font-size: 15px;
	line-height: 1.1;
}

.lt-voice-copy span {
	color: rgba(226, 232, 240, .70);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lt-voice-lock {
	min-width: 96px;
	height: 38px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 999px;
	border: 1px solid rgba(139, 151, 173, .18);
	color: rgba(226, 232, 240, .76);
	background: rgba(15, 22, 36, .84);
	font-size: 12px;
	font-weight: 800;
	transition: .18s ease;
}

.lt-voice-recorder.is-lock-ready .lt-voice-lock,
.lt-voice-recorder.is-locked .lt-voice-lock {
	color: #fff;
	border-color: rgba(35, 213, 208, .68);
	background: rgba(35, 213, 208, .20);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.lt-voice-cancel,
.lt-voice-send {
	width: 38px;
	height: 38px;
	min-width: 38px;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: #fff;
}

.lt-voice-cancel {
	background: rgba(239, 51, 87, .18);
	color: #ff6d85;
}

.lt-voice-send {
	display: none;
	background: linear-gradient(135deg, #23d5d0, #ef3357);
}

.lt-voice-recorder.is-locked .lt-voice-send {
	display: inline-flex;
}

@media (max-width: 575.98px) {
	.lt-voice-recorder {
		left: 6px;
		right: 6px;
		bottom: calc(100% + 6px);
		min-height: 54px;
		gap: 7px;
		border-radius: 14px;
	}

	.lt-voice-pulse {
		width: 38px;
		height: 38px;
		min-width: 38px;
		border-radius: 12px;
	}

	.lt-voice-lock {
		min-width: 74px;
		padding: 0 9px;
	}

	.lt-voice-lock span {
		display: none;
	}

	.lt-voice-copy span {
		max-width: 150px;
	}
}

.date-dropdowns {
	display: flex;
}

.day.form-select, .month.form-select, .year.form-select {
	margin-right: 8px;
}

.login-selector .nav-link {
	color: rgba(248,250,252,.72);
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 12px;
}

.login-selector .nav-link.active {
	color: #ffffff;
	background: linear-gradient(135deg, #ef233c, #ff5a6d);
	border-color: rgba(255,255,255,.16);
}

.auth-body {
	min-height: 100vh;
	color: #f8fafc;
	background:
		radial-gradient(circle at 10% 0, rgba(239,35,60,.18), transparent 30%),
		radial-gradient(circle at 90% 12%, rgba(255,90,109,.14), transparent 28%),
		linear-gradient(135deg, #070914 0%, #111018 48%, #080a12 100%);
	overflow-y: auto !important;
}

.auth-body .container-tight {
	max-width: 470px;
}

.auth-body .container-tight > .text-center,
.auth-body form.user,
.auth-body .msg-cont,
.auth-body .alert {
	position: relative;
	z-index: 1;
}

.auth-body .container-tight {
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 24px;
	padding: 28px !important;
	background:
		radial-gradient(circle at 0 0, rgba(239,35,60,.12), transparent 34%),
		rgba(17,18,28,.82);
	box-shadow: 0 28px 80px rgba(0,0,0,.34);
	backdrop-filter: blur(14px);
}

.auth-body h1,
.auth-body h2,
.auth-body .h3,
.auth-body .h4,
.auth-body .form-label {
	color: #ffffff !important;
}

.auth-body p,
.auth-body .form-label-description,
.auth-body .small,
.auth-body .form-check-label {
	color: rgba(226,232,240,.78) !important;
}

.auth-body a {
	color: #fb7185;
	font-weight: 800;
	text-decoration: none;
}

.auth-body a:hover {
	color: #ffffff;
}

.auth-body .form-control,
.auth-body .form-select,
.auth-body .input-group-text,
.auth-body .select2-container--bootstrap4 .select2-selection {
	min-height: 46px;
	color: #ffffff;
	background: rgba(2,6,23,.58) !important;
	border-color: rgba(255,255,255,.14) !important;
	border-radius: 13px;
}

.auth-body .form-control::placeholder {
	color: rgba(203,213,225,.48);
}

.auth-body .form-control:focus {
	color: #ffffff;
	border-color: rgba(239,35,60,.64) !important;
	box-shadow: 0 0 0 3px rgba(239,35,60,.14);
}

.auth-body .btn-dark,
.auth-body .btn-primary {
	border: 0;
	color: #fff;
	background: linear-gradient(135deg, #ef233c, #ff5a6d) !important;
	box-shadow: 0 14px 30px rgba(239,35,60,.22);
}

.auth-body .btn-outline-light {
	color: #f8fafc;
	border-color: rgba(255,255,255,.18);
	background: rgba(255,255,255,.06);
}

.auth-body hr {
	border-color: rgba(255,255,255,.12);
	opacity: 1;
}

.auth-body .bg-cover {
	position: relative;
	background-size: cover;
	background-position: center;
}

.auth-body .bg-cover::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7,9,20,.28), rgba(7,9,20,.08));
}

.woo-room-join-page {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(239,35,60,.16), transparent 32%),
		linear-gradient(315deg, rgba(255,255,255,.05), transparent 34%);
}

.woo-room-join-card {
	width: min(1040px, 100%);
	min-height: 560px;
	display: grid;
	grid-template-columns: minmax(320px, .92fr) minmax(360px, 1fr);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 32px;
	background: rgba(12,14,24,.84);
	box-shadow: 0 34px 110px rgba(0,0,0,.48);
	backdrop-filter: blur(18px);
}

.woo-room-join-visual {
	position: relative;
	min-height: 100%;
	background:
		linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
		linear-gradient(135deg, #22121d 0%, #070914 100%);
}

.woo-room-join-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0%, rgba(12,14,24,.72) 100%),
		linear-gradient(180deg, rgba(12,14,24,0) 42%, rgba(12,14,24,.72) 100%);
}

.woo-room-join-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(1.08) contrast(1.04);
}

.woo-room-join-fallback {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.woo-room-join-fallback span {
	width: 148px;
	height: 148px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 38px;
	color: #ffffff;
	font-size: 76px;
	font-weight: 950;
	background: linear-gradient(135deg, #ef233c, #ff6b7c);
	box-shadow: 0 24px 58px rgba(239,35,60,.34);
}

.woo-room-join-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 5vw, 64px);
}

.woo-room-join-brand {
	position: absolute;
	top: 30px;
	left: clamp(30px, 5vw, 64px);
}

.woo-room-join-brand .navbar-brand {
	display: inline-flex;
	align-items: center;
	margin: 0;
}

.woo-room-join-brand .logo {
	max-height: 42px;
	width: auto;
}

.woo-room-join-kicker {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 42px;
	margin-bottom: 18px;
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	color: #ff8a98;
	font-size: 13px;
	font-weight: 900;
	background: rgba(255,255,255,.06);
}

.woo-room-join-content h1 {
	max-width: 540px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(34px, 4.7vw, 58px);
	line-height: 1.02;
	font-weight: 950;
	letter-spacing: 0;
}

.woo-room-join-content p {
	max-width: 520px;
	margin: 18px 0 26px;
	color: rgba(226,232,240,.8) !important;
	font-size: 17px;
	line-height: 1.65;
}

.woo-room-join-form {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
	margin: 0;
}

.woo-room-join-form label {
	color: rgba(248,250,252,.86);
	font-weight: 850;
}

.woo-room-pin-field {
	position: relative;
}

.woo-room-pin-field i {
	position: absolute;
	left: 16px;
	top: 50%;
	z-index: 1;
	color: #ff6b7c;
	transform: translateY(-50%);
}

.woo-room-pin-field .form-control {
	padding-left: 46px;
}

.woo-room-join-button {
	min-height: 58px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 18px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 950;
	background: linear-gradient(135deg, #ef233c 0%, #ff5a6d 100%);
	box-shadow: 0 18px 44px rgba(239,35,60,.34);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.woo-room-join-button:hover {
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow: 0 22px 54px rgba(239,35,60,.42);
}

.woo-room-join-button:active {
	transform: translateY(0);
}

.woo-room-join-alert {
	display: flex;
	gap: 12px;
	margin: 0 0 20px;
	padding: 15px;
	border: 1px solid rgba(255,90,109,.28);
	border-radius: 18px;
	color: #ffffff;
	background: rgba(239,35,60,.12);
}

.woo-room-join-alert i {
	color: #ff6b7c;
	font-size: 24px;
}

.woo-room-join-alert strong,
.woo-room-join-alert span {
	display: block;
}

.woo-room-join-alert span {
	margin-top: 3px;
	color: rgba(226,232,240,.78);
}

.woo-room-join-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.woo-room-join-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 11px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 999px;
	color: rgba(248,250,252,.82);
	font-size: 12px;
	font-weight: 850;
	background: rgba(255,255,255,.055);
}

.woo-room-join-meta i {
	color: #ff6b7c;
}

.woo-room-home-link {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 28px;
	color: rgba(248,250,252,.78) !important;
	font-weight: 900;
}

.woo-room-home-link:hover {
	color: #ffffff !important;
}

@media (max-width: 900px) {
	.woo-room-join-page {
		align-items: flex-start;
		padding: 18px;
	}

	.woo-room-join-card {
		min-height: auto;
		grid-template-columns: 1fr;
		border-radius: 26px;
	}

	.woo-room-join-visual {
		min-height: 220px;
	}

	.woo-room-join-visual::after {
		background: linear-gradient(180deg, transparent 8%, rgba(12,14,24,.88) 100%);
	}

	.woo-room-join-content {
		padding: 28px;
	}

	.woo-room-join-brand {
		position: static;
		margin-bottom: 20px;
	}

	.woo-room-join-kicker {
		margin-top: 0;
	}
}

.ms-container {
	width: 100%;
}

.channel-options, .cat-settings, .cat-channel {
	opacity: 0;
}

.channel-item:hover .channel-options, .channel-cat:hover .cat-settings, .channel-cat:hover .cat-channel {
	opacity: 1;
}

.channel-options:hover i, .cat-settings:hover i, .cat-channel:hover i {
	font-weight: bold;
}

.sidebar-room, .sidebar-private, .sidebar-discovery, .sidebar-profile, .sidebar-manage {
	display: none;
}


.topbar-private {
	position: fixed;
	top: 0;
	background-color: #F8FAFC;
	margin-left: -1px;
	z-index: 99;
	width: fit-content;
	max-width: 15rem;
}

.disc-cat-row {
	color: #4e5058;
	display: flex;
	align-items: center;
	padding: 8px 15px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.disc-cat-row:hover {
	background-color: #e3e5e8;
}

.disc-cat-row.active {
	background-color: #5461f5;
	color: #ffffff;
}

.disc-cat-icon {
	display: flex;
	align-items: center;
}

.disc-cat-icon .ti {
	font-size: 22px;
}

.disc-cat-name {
	font-size: 16px;
	font-weight: 500;
	margin-left: 10px;
}

.disc-header {
	padding: 15px 15px 0px;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.disc-cat-list {
	margin: 8px;
}


.disc-slider .carousel {
	border-radius: 15px;
	overflow: hidden;
}

.slider-search-input {
    position: absolute;
    z-index: 999;
    width: 40%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.profile-section {
	padding: 1.75rem;
}

#main-profile .profile-section {
    padding: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(239,68,68,.09), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(255,255,255,.07), transparent 30%);
    color: #e5e7eb;
}

#main-profile .profile-section .card,
#main-profile .profile-form,
#main-profile .user-card,
#main-profile #password-form {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(17,24,39,.84));
    box-shadow: 0 18px 42px rgba(0,0,0,.20);
    overflow: hidden;
}

#main-profile .profile-section .card-header {
    border-bottom-color: rgba(255,255,255,.08);
    background: rgba(2,6,23,.20);
}

#main-profile .profile-section .card-title,
#main-profile .profile-section h2,
#main-profile .profile-section h3,
#main-profile .profile-section h5,
#main-profile .profile-section h6 {
    color: #ffffff;
}

#main-profile .profile-section p,
#main-profile .profile-section strong,
#main-profile .profile-section .form-check-label {
    color: rgba(248,250,252,.86);
}

#main-profile .profile-section .text-muted,
#main-profile .profile-section .card-subtitle {
    color: rgba(203,213,225,.78) !important;
}

#main-profile .profile-form .card-body,
#main-profile #password-form .card-body {
    padding: 22px;
}

#main-profile .profile-form h2,
#main-profile #password-form h2 {
    margin-bottom: 18px !important;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

#main-profile .profile-form .card-title,
#main-profile #password-form .card-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

#main-profile .profile-form .card-subtitle,
#main-profile #password-form .card-subtitle {
    max-width: 720px;
    margin-bottom: 14px;
    color: rgba(226,232,240,.72);
    line-height: 1.55;
}

#main-profile .profile-form .form-label,
#main-profile #password-form .form-label {
    color: rgba(248,250,252,.82);
    font-weight: 800;
    font-size: 12px;
}

#main-profile .profile-form .form-control,
#main-profile .profile-form .form-select,
#main-profile .profile-form .select2-selection,
#main-profile #password-form .form-control {
    min-height: 44px;
    border-radius: 13px !important;
    border-color: rgba(255,255,255,.12) !important;
    color: #f8fafc;
    background: rgba(2,6,23,.48) !important;
    box-shadow: none !important;
}

#main-profile .profile-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

#main-profile .profile-form .form-control:focus,
#main-profile .profile-form .select2-selection:focus,
#main-profile #password-form .form-control:focus {
    border-color: rgba(239,68,68,.62) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,.14) !important;
}

#main-profile .btn-upload {
    width: 100%;
    min-height: 64px;
    justify-content: center;
    border-radius: 16px;
    border: 1px dashed rgba(239,68,68,.45);
    color: #fecdd3;
    background: rgba(239,68,68,.08);
}

#main-profile .profile-form .card-footer,
#main-profile #password-form .card-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px;
    border-top-color: rgba(255,255,255,.08);
    background: rgba(2,6,23,.26);
}

#main-profile .profile-form .save-profile,
#main-profile #password-form .save-profile {
    border: 0;
    border-radius: 13px;
    padding: 11px 18px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #fb7185);
}

#main-profile #v-profile-settings,
#main-profile #v-profile-security {
    max-width: 1480px;
    margin: 0 auto;
}

#main-profile #v-profile-settings .px-0,
#main-profile #v-profile-security .px-0 {
    padding: 0 8px !important;
}

#main-profile .profile-settings-grid {
    align-items: flex-start;
}

#main-profile #v-profile-settings .profile-form,
#main-profile #v-profile-security #password-form {
    border-color: rgba(255,255,255,.13);
    background:
        radial-gradient(circle at 0 0, rgba(239,68,68,.10), transparent 26%),
        linear-gradient(135deg, rgba(22,28,42,.96), rgba(18,22,34,.94));
}

#main-profile #v-profile-settings .profile-form .card-body,
#main-profile #v-profile-security #password-form .card-body {
    padding: 30px;
}

#main-profile #v-profile-settings .profile-form h2,
#main-profile #v-profile-security #password-form h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 26px !important;
    font-size: 28px;
    line-height: 1.1;
}

#main-profile #v-profile-settings .profile-form h2::before {
    content: "\ea4d";
    font-family: "tabler-icons";
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #fb7185);
    box-shadow: 0 12px 24px rgba(239,68,68,.22);
}

#main-profile #v-profile-security #password-form h2::before {
    content: "\ea75";
    font-family: "tabler-icons";
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #fb7185);
    box-shadow: 0 12px 24px rgba(239,68,68,.22);
}

#main-profile #v-profile-settings .profile-form .card-title,
#main-profile #v-profile-security #password-form .card-title {
    margin-top: 26px;
    margin-bottom: 8px;
    font-size: 17px;
}

#main-profile #v-profile-settings .profile-form .card-title:first-of-type,
#main-profile #v-profile-security #password-form .card-title:first-of-type {
    margin-top: 0;
}

#main-profile #v-profile-settings .profile-form .card-subtitle,
#main-profile #v-profile-security #password-form .card-subtitle {
    font-size: 13px;
    line-height: 1.65;
}

#main-profile #v-profile-settings .profile-form .form-label,
#main-profile #v-profile-security #password-form .form-label {
    margin-bottom: 7px;
    color: rgba(248,250,252,.90);
    font-size: 13px;
}

#main-profile #v-profile-settings .profile-form .form-control,
#main-profile #v-profile-settings .profile-form .form-select,
#main-profile #v-profile-security #password-form .form-control {
    min-height: 48px;
    padding: 11px 14px;
    border-radius: 15px !important;
    font-size: 14px;
}

#main-profile #v-profile-settings .profile-form textarea.form-control {
    min-height: 136px;
}

#main-profile #v-profile-settings .btn-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-height: 92px;
    padding: 18px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    border-radius: 18px;
    border-color: rgba(239,68,68,.42);
    background:
        linear-gradient(135deg, rgba(239,68,68,.14), rgba(255,255,255,.05)),
        rgba(2,6,23,.34);
}

#main-profile #v-profile-settings .btn-upload i {
    font-size: 24px;
    color: #fb7185;
}

#main-profile #v-profile-settings .btn-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

#main-profile #v-profile-settings .btn-upload::after {
    content: "Dosya sec";
    display: inline-flex;
    align-self: center;
    margin-top: 2px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #fecdd3;
    background: rgba(239,68,68,.16);
    font-size: 11px;
}

#main-profile #v-profile-settings .woo-name-effect-settings {
    border-radius: 20px;
    border-color: rgba(239,68,68,.22);
    background:
        radial-gradient(circle at 90% 0, rgba(239,68,68,.16), transparent 30%),
        linear-gradient(135deg, rgba(12,18,32,.98), rgba(25,32,48,.93));
}

#main-profile #v-profile-settings .woo-effect-grid {
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}

#main-profile #v-profile-settings .woo-effect-grid label > span {
    min-height: 46px;
    font-size: 13px;
}

#main-profile #v-profile-settings .profile-preview-sidebar {
    position: sticky;
    top: 18px;
    align-self: flex-start;
    z-index: 4;
}

#main-profile #v-profile-settings .user-card {
    border-radius: 22px;
    background:
        radial-gradient(circle at 15% 0, rgba(239,68,68,.14), transparent 28%),
        linear-gradient(135deg, rgba(14,20,32,.98), rgba(19,23,34,.96));
    box-shadow: 0 22px 58px rgba(0,0,0,.30);
}

#main-profile #v-profile-settings .user-card .card-img-top {
    height: 220px;
    border-radius: 0;
    position: relative;
}

#main-profile #v-profile-settings .user-card .card-img-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(2,6,23,.76));
}

#main-profile #v-profile-settings .user-card .card-body {
    min-height: 165px;
    padding: 54px 22px 22px;
}

#main-profile #v-profile-settings .user-card .user-image {
    top: -48px;
    left: 24px;
    width: 92px;
    height: 92px;
    border: 6px solid rgba(255,255,255,.94);
    box-shadow: 0 15px 30px rgba(0,0,0,.30);
}

#main-profile #v-profile-settings .user-card .user-title {
    position: static;
    margin: 0 0 8px 110px;
    min-height: 28px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

#main-profile #v-profile-settings .user-card .text-muted {
    clear: both;
    margin-top: 20px !important;
    padding: 13px 14px;
    border-radius: 15px;
    background: rgba(2,6,23,.34);
}

#main-profile #v-profile-settings .user-card .card-footer {
    border-top-color: rgba(255,255,255,.08);
    background: rgba(2,6,23,.24);
}

#main-profile #v-profile-settings .user-card .btn-success[disabled] {
    opacity: 1;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #fb7185);
}

#main-profile #v-profile-security .form-check {
    min-height: 58px;
    display: flex;
    align-items: center;
}

#main-profile #v-profile-security .profile-security-accordion {
    margin-top: 22px;
}

#main-profile #v-profile-security .profile-security-collapse {
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
        rgba(2,6,23,.34);
}

#main-profile #v-profile-security .profile-security-collapse summary {
    min-height: 64px;
}

#main-profile #v-profile-security .profile-security-collapse-body {
    max-height: 220px;
}

@media (max-width: 991px) {
    #main-profile #v-profile-settings .profile-preview-sidebar {
        position: static;
    }

    #main-profile #v-profile-settings .profile-form .card-body,
    #main-profile #v-profile-security #password-form .card-body {
        padding: 22px;
    }

    #main-profile #v-profile-settings .profile-form h2,
    #main-profile #v-profile-security #password-form h2 {
        font-size: 24px;
    }
}

#main-profile #v-profile-home .profile-header {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15,23,42,.94), rgba(17,24,39,.86));
    box-shadow: 0 22px 54px rgba(0,0,0,.24);
}

#main-profile #v-profile-home .profile-header-cover {
    height: 260px;
    border-radius: 0;
    position: relative;
}

#main-profile #v-profile-home .profile-header-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(2,6,23,.82));
}

#main-profile #v-profile-home .profile-header-info {
    background: transparent;
    padding-bottom: 24px;
}

#main-profile #v-profile-home .profile-header-user-avatar {
    border-color: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(0,0,0,.35), 0 0 0 1px rgba(239,68,68,.22);
}

#main-profile #v-profile-home .profile-header-user-title {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 900;
}

#main-profile #v-profile-home .profile-header-user-sub-title {
    color: rgba(203,213,225,.86);
    font-weight: 800;
}

#main-profile #v-profile-home .user-badge {
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}

#main-profile #v-profile-home .btn-success[disabled] {
    opacity: 1;
    border: 1px solid rgba(239,68,68,.32);
    color: #fecdd3;
    background: rgba(239,68,68,.12);
}

#main-profile #v-profile-home .rounded.border,
#main-profile #v-profile-security .rounded.border {
    border-color: rgba(255,255,255,.10) !important;
    border-radius: 16px !important;
    background: rgba(2,6,23,.30);
}

#main-profile #v-profile-home .rounded.border .d-flex,
#main-profile #v-profile-security .rounded.border .d-flex {
    color: #fff;
}

#main-profile #v-profile-home .row.g-3 p {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    background: rgba(2,6,23,.28);
}

#main-profile #v-profile-home .row.g-3 p .icon,
#main-profile #v-profile-home .row.g-3 p i,
#main-profile #v-profile-security .card-title i {
    color: #fb7185;
}

#main-profile #v-profile-security .form-check {
    padding: 14px 16px 14px 48px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    background: rgba(2,6,23,.28);
}

#main-profile #v-profile-security .form-check-input {
    border-color: rgba(255,255,255,.24);
    background-color: rgba(15,23,42,.95);
}

#main-profile #v-profile-security .form-check-input:checked {
    border-color: #ef4444;
    background-color: #ef4444;
}

#main-profile #v-profile-security .border-bottom {
    border-bottom-color: rgba(255,255,255,.09) !important;
}

#main-profile #v-profile-security .alert-warning {
    border: 1px solid rgba(250,204,21,.24);
    border-radius: 15px;
    color: #fef3c7;
    background: rgba(250,204,21,.10);
}

#main-profile .profile-security-accordion {
    display: grid;
    gap: 10px;
}

#main-profile .profile-security-collapse {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(2,6,23,.28);
    overflow: hidden;
}

#main-profile .profile-security-collapse summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 14px 16px;
    color: #fff;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

#main-profile .profile-security-collapse summary::-webkit-details-marker {
    display: none;
}

#main-profile .profile-security-collapse summary::after {
    content: "\25BE";
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #fecdd3;
    background: rgba(239,68,68,.14);
    transition: transform .18s ease, background .18s ease;
}

#main-profile .profile-security-collapse[open] summary::after {
    transform: rotate(180deg);
    background: rgba(239,68,68,.24);
}

#main-profile .profile-security-collapse summary span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

#main-profile .profile-security-collapse summary span i {
    color: #fb7185;
    font-size: 18px;
}

#main-profile .profile-security-collapse summary small {
    margin-left: auto;
    border-radius: 999px;
    padding: 5px 9px;
    color: #cbd5e1;
    background: rgba(255,255,255,.07);
    font-size: 11px;
    font-weight: 800;
}

#main-profile .profile-security-collapse-body {
    display: grid;
    gap: 8px;
    max-height: 260px;
    overflow: auto;
    padding: 0 14px 14px;
    border-top: 1px solid rgba(255,255,255,.08);
}

#main-profile .profile-security-collapse-body::-webkit-scrollbar {
    width: 7px;
}

#main-profile .profile-security-collapse-body::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(239,68,68,.34);
}

#main-profile .profile-security-row,
#main-profile .profile-security-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(15,23,42,.48);
}

#main-profile .profile-security-row strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

#main-profile .profile-security-row span,
#main-profile .profile-security-empty span {
    display: block;
    margin-top: 3px;
    color: rgba(203,213,225,.82);
    font-size: 12px;
}

#main-profile .profile-security-row > i,
#main-profile .profile-security-empty > i {
    flex: 0 0 auto;
    color: #fb7185;
    font-size: 20px;
}

#main-profile .profile-security-empty {
    justify-content: flex-start;
    min-height: 54px;
}

#main-profile .user-card {
    display: block;
    position: sticky;
    top: 14px;
}

#main-profile .user-card .card-body {
    min-height: 145px;
    padding: 42px 18px 18px;
}

#main-profile .user-title {
    left: 104px;
    top: 18px;
    color: #fff;
    font-weight: 900;
}

#main-profile .user-card .text-muted {
    color: rgba(226,232,240,.72) !important;
}

.profile-embed-panel {
    min-height: 720px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15,23,42,.94), rgba(17,24,39,.86));
    box-shadow: 0 18px 42px rgba(0,0,0,.20);
    overflow: hidden;
}

.profile-embed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.profile-embed-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fecdd3;
    font-size: 12px;
    font-weight: 900;
}

.profile-embed-head h3 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.profile-embed-open {
    border-radius: 999px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(239,68,68,.18);
    border: 1px solid rgba(239,68,68,.34);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.profile-embed-open:hover {
    color: #fff;
    background: rgba(239,68,68,.28);
}

.profile-embed-panel iframe {
    display: block;
    width: 100%;
    height: 650px;
    border: 0;
    background: #080c14;
}

.profile-inline-panel {
    max-width: 1180px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px;
    background:
        radial-gradient(circle at 4% 0, rgba(239,68,68,.14), transparent 30%),
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(18,24,36,.92));
    box-shadow: 0 22px 58px rgba(0,0,0,.28);
    overflow: hidden;
}

.profile-inline-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.profile-inline-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 11px;
    color: #fecdd3;
    background: rgba(239,68,68,.14);
    font-size: 12px;
    font-weight: 900;
}

.profile-inline-hero h3 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 950;
}

.profile-inline-hero p {
    max-width: 640px;
    margin: 0;
    color: rgba(226,232,240,.78);
    line-height: 1.65;
}

.profile-inline-status {
    min-width: 210px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 18px;
    background: rgba(2,6,23,.34);
}

.profile-inline-status small,
.profile-inline-status em {
    display: block;
    color: rgba(203,213,225,.76);
    font-style: normal;
}

.profile-inline-status strong {
    display: block;
    margin: 8px 0 4px;
    color: #fff;
    font-size: 30px;
    font-weight: 950;
}

.profile-inline-status.is-active strong {
    color: #86efac;
}

.profile-woo-grid,
.profile-referral-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 18px;
    padding: 24px;
}

.profile-benefit-list,
.profile-woo-checkout,
.profile-referral-card {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 18px;
    background: rgba(2,6,23,.30);
}

.profile-benefit-list h4,
.profile-woo-checkout h4,
.profile-referral-card h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.profile-benefit-list div {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    color: rgba(248,250,252,.86);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.profile-benefit-list div:last-child {
    border-bottom: 0;
}

.profile-benefit-list i {
    color: #fb7185;
    font-size: 20px;
}

.profile-plan-grid,
.profile-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.profile-plan-grid label,
.profile-payment-grid label {
    margin: 0;
    cursor: pointer;
}

.profile-plan-grid input,
.profile-payment-grid input {
    position: absolute;
    opacity: 0;
}

.profile-plan-grid span,
.profile-payment-grid span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 88px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    padding: 13px;
    color: #fff;
    background: rgba(255,255,255,.05);
}

.profile-payment-grid span {
    min-height: 54px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.profile-plan-grid input:checked + span,
.profile-payment-grid input:checked + span {
    border-color: rgba(239,68,68,.70);
    background: rgba(239,68,68,.16);
}

.profile-plan-grid strong {
    color: #fecdd3;
    font-size: 18px;
}

.profile-plan-grid small {
    color: rgba(203,213,225,.78);
}

.profile-bank-area {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.profile-bank-box {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 13px;
    color: rgba(226,232,240,.86);
    background: rgba(255,255,255,.045);
}

.profile-inline-submit,
.profile-referral-copy button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    padding: 0 16px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, #ef4444, #fb7185);
}

.profile-woo-console {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 300px;
    gap: 16px;
    padding: 22px;
}

.profile-woo-message {
    padding: 0 22px;
}

.profile-woo-message:empty {
    display: none;
}

.profile-woo-message .alert {
    margin: 16px 0 0;
    border: 1px solid rgba(239,68,68,.26);
    border-radius: 15px;
    background: rgba(2,6,23,.52);
    color: #f8fafc;
}

.profile-woo-side,
.profile-woo-feed {
    display: grid;
    gap: 14px;
    align-content: start;
}

.profile-woo-price,
.profile-woo-action,
.profile-woo-feed section {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(2,6,23,.30);
    padding: 16px;
}

.profile-woo-price span,
.profile-woo-price small,
.profile-woo-feed-item span,
.profile-woo-empty span {
    color: rgba(203,213,225,.78);
}

.profile-woo-price strong {
    display: block;
    margin: 5px 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

.profile-woo-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(2,6,23,.34);
    padding: 6px;
}

.profile-woo-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: rgba(203,213,225,.78);
    font-weight: 900;
}

.profile-woo-tabs button.is-active {
    border-color: rgba(239,68,68,.55);
    background: rgba(239,68,68,.16);
    color: #fff;
}

.profile-woo-checkout {
    display: none;
}

.profile-woo-checkout.is-active {
    display: block;
}

.profile-gift-fields,
.profile-redeem-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.profile-redeem-row {
    grid-template-columns: minmax(0, 1fr) 170px;
    margin-bottom: 0;
}

.profile-woo-feed section {
    display: grid;
    gap: 10px;
}

.profile-woo-feed section h4 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.profile-woo-feed-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    padding: 11px;
}

.profile-woo-feed-item b {
    display: block;
    color: #fff;
}

.profile-woo-feed-item span,
.profile-woo-feed-item em {
    display: block;
    font-size: 12px;
}

.profile-woo-feed-item em {
    margin-top: 5px;
    border-left: 2px solid rgba(251,113,133,.65);
    color: rgba(248,250,252,.9);
    font-style: normal;
    padding-left: 8px;
}

.profile-woo-feed-item strong,
.profile-woo-feed-item button {
    border: 0;
    border-radius: 999px;
    background: rgba(239,68,68,.14);
    color: #fecdd3;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
}

.profile-woo-feed-item.is-approved strong,
.profile-woo-feed-item.is-active button {
    background: rgba(34,197,94,.14);
    color: #86efac;
}

.profile-woo-feed-item.is-pending strong {
    background: rgba(251,191,36,.14);
    color: #fbbf24;
}

.profile-woo-empty {
    display: grid;
    justify-items: center;
    gap: 7px;
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 15px;
    padding: 22px 12px;
    text-align: center;
}

.profile-woo-empty i {
    color: #fb7185;
    font-size: 25px;
}

.profile-referral-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.profile-referral-copy input {
    min-height: 46px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 0 13px;
    color: #fff;
    background: rgba(2,6,23,.46);
}

.profile-referral-code {
    margin-top: 12px;
    color: rgba(226,232,240,.82);
}

.profile-referral-progress {
    height: 10px;
    margin: 14px 0 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.profile-referral-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ef4444, #fb7185);
}

.profile-referral-list {
    display: grid;
    gap: 8px;
    max-height: 340px;
    overflow: auto;
}

.profile-referral-list div,
.profile-referral-list p {
    margin: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px;
    color: rgba(226,232,240,.86);
    background: rgba(255,255,255,.045);
}

.profile-referral-list span,
.profile-referral-list small {
    display: block;
}

.profile-referral-list span {
    color: #fff;
    font-weight: 900;
}

.profile-referral-list small {
    margin-top: 3px;
    color: rgba(203,213,225,.72);
}

.profile-bots-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 18px;
    padding: 24px;
}

.profile-bot-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 24px 0;
}

.profile-bot-stat-grid div {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255,255,255,.045);
}

.profile-bot-stat-grid span,
.profile-bot-token-box span,
.profile-bot-ai-head span {
    display: block;
    color: rgba(203,213,225,.72);
    font-size: 12px;
    font-weight: 900;
}

.profile-bot-stat-grid strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 24px;
    font-weight: 950;
}

.profile-bot-api-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 24px 0;
    padding: 16px;
    border: 1px solid rgba(45,212,191,.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0 0, rgba(255,49,88,.13), transparent 34%),
        linear-gradient(135deg, rgba(45,212,191,.10), rgba(15,23,42,.44));
}

.profile-bot-api-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2dd4bf;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.profile-bot-api-strip strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.profile-bot-api-strip code {
    display: block;
    margin-top: 8px;
    color: #93c5fd;
    font-size: 12px;
    word-break: break-all;
}

.profile-bot-api-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    border-radius: 14px;
    padding: 11px 13px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255,49,88,.92), rgba(45,212,191,.82));
    font-size: 12px;
    font-weight: 950;
    text-decoration: none;
}

.profile-bot-create-card,
.profile-bot-list-card,
.profile-bot-room-card {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(45,212,191,.10), transparent 34%),
        rgba(2,6,23,.30);
}

.profile-bot-create-card h4,
.profile-bot-list-card h4,
.profile-bot-room-card h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.profile-bot-create-card p,
.profile-bot-room-card p {
    margin: 0 0 14px;
    color: rgba(203,213,225,.76);
    line-height: 1.55;
}

.profile-bot-create-card form {
    display: grid;
    gap: 10px;
}

.profile-bot-create-card .form-control {
    min-height: 46px;
    border-color: rgba(255,255,255,.12);
    border-radius: 14px;
    color: #fff;
    background: rgba(2,6,23,.48);
}

.profile-bot-platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #99f6e4;
    font-weight: 900;
    text-decoration: none;
}

.profile-bot-platform-link:hover {
    color: #fff;
}

.profile-bot-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.profile-bot-list-head span {
    border-radius: 999px;
    padding: 6px 10px;
    color: #bbf7d0;
    background: rgba(34,197,94,.12);
    font-size: 12px;
    font-weight: 900;
}

.profile-bot-list {
    display: grid;
    gap: 10px;
    max-height: 390px;
    overflow: auto;
}

.profile-bot-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) minmax(170px, auto);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,.045);
}

.profile-bot-avatar {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #99f6e4;
    background: linear-gradient(135deg, rgba(45,212,191,.18), rgba(239,68,68,.12));
    font-size: 22px;
}

.profile-bot-item strong,
.profile-bot-item small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-bot-item strong {
    color: #fff;
    font-weight: 950;
}

.profile-bot-item small {
    margin-top: 3px;
    color: rgba(203,213,225,.72);
}

.profile-bot-item em {
    border-radius: 999px;
    padding: 6px 9px;
    color: #cbd5e1;
    background: rgba(148,163,184,.14);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.profile-bot-item em.is-active {
    color: #bbf7d0;
    background: rgba(34,197,94,.16);
}

.profile-bot-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.profile-bot-actions form {
    margin: 0;
}

.profile-bot-actions button,
.profile-bot-install-list button {
    min-height: 30px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    padding: 0 10px;
    color: rgba(248,250,252,.92);
    background: rgba(255,255,255,.06);
    font-size: 11px;
    font-weight: 900;
}

.profile-bot-token-box {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    border: 1px solid rgba(34,197,94,.28);
    border-radius: 15px;
    padding: 12px;
    background: rgba(34,197,94,.08);
}

.profile-bot-token-box code,
.profile-bot-ai-output pre {
    display: block;
    max-height: 360px;
    overflow: auto;
    margin: 0;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 12px;
    color: #dcfce7;
    background: rgba(2,6,23,.72);
    white-space: pre-wrap;
    word-break: break-word;
}

.profile-bot-token-box small {
    color: rgba(203,213,225,.72);
    line-height: 1.45;
}

.profile-bot-empty {
    display: grid;
    place-items: center;
    min-height: 190px;
    border: 1px dashed rgba(255,255,255,.14);
    border-radius: 16px;
    color: rgba(203,213,225,.74);
    text-align: center;
}

.profile-bot-empty i {
    color: #99f6e4;
    font-size: 36px;
}

.profile-bot-empty strong {
    margin-top: 8px;
    color: #fff;
}

.profile-bot-room-card {
    margin: 0 24px 24px;
}

.profile-bot-advanced-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 18px;
    padding: 0 24px;
}

.profile-bot-advanced-grid .profile-bot-room-card {
    margin: 0 0 24px;
}

.profile-bot-install-form {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.profile-bot-install-form .form-control,
.profile-bot-ai-workbench .form-control {
    min-height: 46px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    color: #fff;
    background: rgba(2,6,23,.48);
}

.profile-bot-permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
}

.profile-bot-permission-grid label {
    margin: 0;
    cursor: pointer;
}

.profile-bot-permission-grid input {
    position: absolute;
    opacity: 0;
}

.profile-bot-permission-grid span {
    display: flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    padding: 0 11px;
    color: rgba(226,232,240,.82);
    background: rgba(255,255,255,.045);
    font-size: 12px;
    font-weight: 850;
}

.profile-bot-permission-grid input:checked + span {
    color: #bbf7d0;
    border-color: rgba(34,197,94,.42);
    background: rgba(34,197,94,.12);
}

.profile-bot-install-list {
    display: grid;
    gap: 9px;
    max-height: 330px;
    overflow: auto;
}

.profile-bot-install-list > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255,255,255,.045);
}

.profile-bot-install-list strong,
.profile-bot-install-list span {
    display: block;
}

.profile-bot-install-list strong {
    color: #fff;
    font-weight: 950;
}

.profile-bot-install-list span {
    color: rgba(203,213,225,.72);
}

.profile-bot-install-list form {
    grid-row: span 2;
    margin: 0;
}

.profile-bot-room-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-bot-room-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    padding: 8px 11px;
    color: rgba(248,250,252,.88);
    background: rgba(255,255,255,.055);
    font-size: 12px;
    font-weight: 850;
}

.profile-bot-ai-card {
    margin: 0 24px 24px;
    border: 1px solid rgba(45,212,191,.22);
    border-radius: 20px;
    padding: 18px;
    background:
        radial-gradient(circle at 0 0, rgba(45,212,191,.15), transparent 34%),
        radial-gradient(circle at 100% 15%, rgba(239,68,68,.12), transparent 30%),
        rgba(2,6,23,.34);
}

.profile-bot-ai-card.is-locked {
    opacity: .72;
}

.profile-bot-ai-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.profile-bot-ai-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #99f6e4;
}

.profile-bot-ai-head h4 {
    margin: 8px 0 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
}

.profile-bot-ai-head p {
    max-width: 760px;
    margin: 0;
    color: rgba(203,213,225,.75);
    line-height: 1.55;
}

.profile-bot-ai-head a,
.profile-bot-ai-options button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid rgba(45,212,191,.36);
    border-radius: 13px;
    padding: 0 14px;
    color: #ccfbf1;
    background: rgba(20,184,166,.12);
    font-weight: 950;
    text-decoration: none;
}

.profile-bot-ai-workbench {
    display: grid;
    gap: 12px;
}

.profile-bot-ai-workbench textarea {
    min-height: 112px;
    resize: vertical;
}

.profile-bot-ai-options {
    display: grid;
    grid-template-columns: minmax(190px, 280px) auto;
    gap: 10px;
}

.profile-bot-ai-output {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: 14px;
}

.profile-bot-ai-output h5 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.profile-bot-ai-output ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
    color: rgba(226,232,240,.82);
    line-height: 1.55;
}

@media (max-width: 991px) {
    .profile-inline-hero,
    .profile-woo-grid,
    .profile-woo-console,
    .profile-referral-grid,
    .profile-bots-grid,
    .profile-bot-stat-grid,
    .profile-bot-advanced-grid,
    .profile-bot-ai-output,
    .profile-bot-ai-options {
        grid-template-columns: 1fr;
        display: grid;
    }

    .profile-inline-status {
        min-width: 0;
    }

    .profile-bot-api-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-bot-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .profile-woo-tabs,
    .profile-gift-fields,
    .profile-redeem-row {
        grid-template-columns: 1fr;
    }

    .profile-bot-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    #main-profile .user-card {
        position: static;
        margin-top: 16px;
    }

    .profile-embed-panel iframe {
        height: 620px;
    }
}

.room-list-row {
	margin-top: 16px;
	display: grid;
	grid-gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.room-image {
	position: absolute;
	top: -30px;
	width: 48px;
	height: 48px;
	left: 15px;
	border: 4px solid #fff;
	border-radius: 15px;
}

.room-card .card-body {
	padding-top: 2rem;
	position: relative;
}

.room-card {
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
}


.room-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.user-image {
	position: absolute;
	top: -35px;
	width: 70px;
	height: 70px;
	left: 15px;
	border: 4px solid #fff;
	border-radius: 50%;
	object-fit: cover;
}

.user-title {
	position: absolute;
	top: 6px;
	left: 90px;
}


.user-card .card-body {
	padding-top: 2rem;
	position: relative;
}

.user-card {
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	display: none;
}

.popover .user-card {
	display: block;
}

.user-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.room-stats {
	font-size: 12px;
}


.disc-panel-name, .room-manage-icon, .room-manage-title {
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 250px;
}

.carousel-caption {
	display: none;
}

.carousel-item {
	max-height: 400px;
}

.bd-placeholder-img {
	object-fit: cover;
	max-height: 400px;
}

.search-content {
	color: #ffffff;
}

.room-loop-link {
	text-decoration: none;
	color: inherit;
}

.room-loop-link:hover {
	text-decoration: none;
}

#rpanel-tab {
	background-color: #ebedef;
}

.right-panel .nav-pills .nav-link.active, .right-panel .nav-pills .show>.nav-link {
	color: #ffffff;
	background-color: #a5a5a5;
	border-radius: 0;
}

.room-bar .ti {
	font-size: 22px;
}


.ti-12 {
	font-size: 12px;
}

.ti-24 {
	font-size: 24px;
}

.ti-22 {
	font-size: 22px;
}

.ti-20 {
	font-size: 20px;
}

.ti-18 {
	font-size: 18px;
}

.ti-bold {
	font-weight: bold;
}

.message-status .ti {
	font-size: 14px;
}

.top-channel-name .ti {
	font-size: 18px;
}

.form-selectgroup-input:checked+.room-cat-select-label {
	background: #5461f5;
	color: #fff;
}

.room-cat-select-label {
	width: 100%;
}

.flex-fill {
	flex: 1 1 auto !important;
}

label .icon {
	width: 1.25rem;
	height: 1.25rem;
	min-width: 1.25rem;
	vertical-align: bottom;
	color: inherit;
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
	z-index: 1030;
}

.uppy-Dashboard--modal .uppy-Dashboard-overlay {
	background-color: #00000080;
	z-index: 1024;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.modal-blur {
	background-color: #00000080;
}

.non-login-message, .non-join-message, .non-chat-select, .user-restricted, .permission-denied-editor, .forward-selection {
	padding: 10px 10px;
	border-radius: 10px;
	margin: 15px;
	display: flex;
	align-items: center;
	background-color: #EBEDEF;
}

.non-login-message p, .non-join-message p, .non-chat-select p, .user-restricted p, .permission-denied-editor p, .forward-selection p {
	margin-bottom: 6px;
	margin-top: 6px;
	align-self: center;
	margin-left: 15px;
}

.non-login-message img, .non-join-message img, .non-chat-select img, .user-restricted img, .permission-denied-editor img {
	width: 32px;
	align-self: center;
}

img.editor-emoji, img.emoji {
	width: 16px;
	height: 16px;
	margin-left: 2px;
	margin-right: 2px;
}

.is-typing {
	background: #EBEDEF;
	display: none;
	padding: 2px 15px 4px 15px;
	color: #607d8b;
	font-size: 12px;
	border-radius: 5px;
	margin-left: 15px;
	position: absolute;
    top: -27px;
}

.is-typing:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 6px solid #ebedef;
    border-right: 3px solid transparent;
    border-top: 6px solid #ebedef;
    border-bottom: 6px solid transparent;
    left: 0;
    bottom: -5px;
}

.unread-indicator.active {
	height: 10px;
}

.unread-indicator {
	height: 0px;
	width: 10px;
	border-radius: 0 5px 5px 0;
	position: absolute;
	left: 0;
	top: 50%;
	background-color: #060607;
	transform: translate(-50%, -50%);
}

.private-item .unread-indicator {
	left: -10px;
}

.channel-main {
	justify-content: center;
	position: relative;
	display: flex;
	flex-direction: column;
}

.chat-txt.deleted {
	font-size: 12px;
	font-style: italic;
}

.reply-msg-row {
	align-items: flex-end;
	background-color: #ebedef;
	box-sizing: border-box;
	display: flex;
	transition: transform .25s;
	padding: 5px 5px 10px 5px;
	margin: 15px 15px -22px 15px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.reply-msg-row-show {
	display: flex;
}

.reply-msg-row-hide {
	display: none;
}

.reply-msg-row .replied-to {
	width: 100%;
	text-align: left;
	color: #425158;
	display: flex;
	background-color: #dbdee0;
}

.reply-msg-row .close-reply-msg {
	background: transparent;
	border: 0;
	padding-left: 5px;
	padding-right: 5px;
	display: flex;
    align-self: center;
}

.reply-msg-row .close-reply-msg i {
	font-size: 20px;
}

.replied-to {
	background-color: rgba(0, 0, 0, 0.1);
	position: relative;
	display: flex;
	overflow: hidden;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
	border-radius: 5px !important;
}

.replies .replied-to {
	background-color: #FAFAFA;
	margin-bottom: 5px;
}

.grp .replied-to {
    margin-top: 5px !important;
    margin-bottom: 0;
}

.replied-border {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	flex: none;
	width: 4px;
	background-color: #7b7bd2;
}

.replied-content {
	padding: 4px 12px 8px 8px !important;
	display: flex;
	flex-grow: 1;
	align-items: center;
	min-height: 42px;
	max-height: 82px;
	overflow: hidden;
}

.replied-content-data {
	flex-grow: 1;
	overflow: hidden;
}

.replied-user {
	display: inline-flex;
	max-width: 100%;
	font-weight: 500;
	font-size: 12.8px;
	line-height: 22px;
}

.replied-html {
	display: -webkit-box;
	max-height: 44px;
	overflow: hidden;
	font-size: 12px;
	line-height: 20px;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.replied-preview img {
	width: 60px;
	height: 60px;
}

.forwarding .cht:hover, .forwarding .selected {
	background: #ccc !important;
}

.forwarding .cht {
	transition: 0.3s;
	border-radius: 5px;
	cursor: pointer;
}

.forward-selection-close {
	align-self: center;
	background: transparent;
	border: 0;
	padding-left: 0px;

}

.forward-selection-name {
	align-self: center;
}

.forward-selection-button-container {
	align-self: center;
	margin-left: auto;
	margin-right: 10px;
}

.forward-selected {
	align-self: center;
	background: transparent;
	border: 0;
	padding-left: 0px;

}

.forward-modal .recent-chat {
	border-radius: 0px;
	display: flex;
	padding: 3px 10px;
	cursor: pointer;
	transition: .3s;
	position: relative;
}

.channel-check {
	align-self: center;
	width: 24px;
}

.user-list-item {
	display: flex;
	width: 100%;
	position: relative;
}

.forward-online-list {
	height: calc((var(--vh, 1vh) * 100) - var(--height-adustment));
	overflow: auto;
}

.forward-online-list .user-row {
	width: 100%;
}

.forward-actions {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: #46b9cc;
	z-index: 999;
	display: flex;
	height: 40px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.forward-name {
	align-self: center;
	padding: 10px;
	color: #ffffff;
}

.forward-button-container {
	position: absolute;
	top: -16px;
	right: 16px;
}

.forward-button {
	background: #09e85e;
	color: #ffffff;
}

.forward-modal .modal-body {
	padding: 0;
}

.profile-header {
	border-radius: 12px;
	width: 100%;
	box-shadow: rgb(30 41 59 / 4%) 0 2px 4px 0;
	border: 1px solid rgba(98, 105, 118, 0.16);
}

.profile-header .profile-header-cover {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	height: 300px;
}

.profile-header .profile-header-info {
	padding-bottom: 20px;
	position: relative;
	background: #f2f3f5;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.profile-header-user-avatar {
	width: 164px;
	height: 164px;
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: -50px;
	border-radius: 50%;
	border: 10px solid #fff;
	overflow: hidden;
}

.profile-header-user-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0px;
}

.profile-header-desc {
	padding-top: 40px;
}

.profile-header-user-sub-title {
	text-align: center;
	margin-bottom: 0px;
}

.user-badge {
	width: 40px;
	height: 40px;
	margin-right: 5px;
}

#main-profile {
	height: calc((var(--vh, 1vh) * 100));
}

.radio-stations {
	font-weight: 700;
}

.radio-station:hover {
	font-weight: bold;
}

.radio-thumb img {
	width: 100%;
	border-radius: 50%;
}

.radio-thumb {
	align-self: center;
	margin-right: 0 !important;
	border-radius: 50%;
	overflow: hidden;
	width: 48px;
	height: 48px;
}

.radio-controls {
	align-self: center;
	width: 54px;
	text-align: center;
	line-height: 12px;
	cursor: pointer;
	position: absolute;
	color: #fff;
	filter: drop-shadow(2px 2px 6px black);
}

.radio-title {
	font-size: 14px;
	font-weight: 600;
}

.radio-desc {
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 170px;
}

.radio-info {
	align-self: center;
	padding-left: 10px;
}

.radio-switcher {
	margin-left: auto;
	margin-right: 5px;
	align-self: center;
	line-height: 12px;
	cursor: pointer;
}

.radio-panel {
	position: absolute;
	bottom: 0px;
	border-radius: 0;
	width: 100%;
	left: 0;
	background: #ebedef;
	padding: 0;
	display: none;
	color: #39393d;
	box-shadow: 0px -2px 9px 1px rgba(0, 0, 0, 0.2);
}

.radio-station {
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 3px;
}

.radio-volume {
	display: flex;
	padding: 5px 15px 10px;
}

.radio-volume-display {
	align-self: center;
}

.radio-volume-control {
	align-self: center;
	display: flex;
	width: 100%;
	margin-left: 10px;
}

#radio-volume-control {
	align-self: center;
	width: 100%;
	cursor: pointer;
}

.radio-thumb.radio-playing img {
	animation: radiospin 5s linear infinite;
}

@keyframes radiospin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.recent-img {
    padding: 1px;
}

.recent-img img {
    border-radius: 5px;
}

.recent-img .img-responsive {
    width: 100%;
	padding: 0px;
}

.media-row{
	padding: 10px;
}

.media-tab .chat-files-block {
    overflow: hidden;
    width: 100%;
	padding: 0;
}

.media-tab .file-section {
    width: 100%;
	background-color: #ebedef;
}

.media-tab .file-header{
	color: #1e293bb3;
}

.more-actions {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.media-tab img.recent-link-preview {
    width: 40px;
    margin-right: 5px;
	height: 34px;
    object-fit: cover;
    border-radius: 5px;
}

.media-tab .video-link:before {
    font-size: 24px;
}

.media-tab .video-thumb {
    height: 65px;
}

.media-tab .chat-video-block {
    padding: 0;
}

.profile-header-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-anim-bg  {
    background: linear-gradient(320deg, #0081ff, #fd4430, #dc00ff);
    background-size: 300% 300%;
    -webkit-animation: gradientanim 30s ease infinite;
    -moz-animation: gradientanim 30s ease infinite;
    animation: gradientanim 30s ease infinite;
	color: #fff;
    background-position: center;
}

@-webkit-keyframes gradientanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes gradientanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes gradientanim {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.channel-list-bottom {
    min-height: 52px;
    padding: 6px 6px;
    gap: 6px;
    background: rgba(14, 16, 24, .96);
}

.channel-list-bottom .user-bottom-menu {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 86px);
}

.channel-list-bottom .user-bottom-trigger {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
}

.channel-list-bottom .user-bottom-trigger:hover {
    background: rgba(255,255,255,.075);
}

.user-bottom-avatar {
    position: relative;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
}

.user-bottom-avatar img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.16);
}

.username-bottom{
	display: block;
	min-width: 0;
	max-width: 100%;
	flex: 1 1 auto;
	font-weight: 750;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(248,250,252,.92);
}

.username-bottom .woo-name-effect {
    display: inline-block;
    max-width: calc(100% - 12px);
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

.channel-list-bottom .woo-name-effect-compact {
    max-width: calc(100% - 12px);
    margin-inline: 0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.25;
    transform: none !important;
}

.channel-list-bottom .woo-name-effect-compact::before,
.channel-list-bottom .woo-name-effect-compact::after {
    display: none !important;
    content: none !important;
}

.channel-list-bottom .woo-name-effect-compact.woo-name-effect-glitch,
.channel-list-bottom .woo-name-effect-compact.woo-name-effect-pulse {
    animation: none;
}

.form-selectgroup-input:checked+.room-manage-label {
    background: #5461f5;
    color: #fff;
}

.room-manage-label {
    width: 100%;
}

.room-manage-row {
    color: #4e5058;
    display: flex;
    align-items: center;
    padding: 4px 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.room-manage-icon {
	display: flex;
    align-items: center;
}

.room-manage-image {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
	display: block;
    background-size: cover;
}

.room-manage-image img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    object-position: center;
}

.room-manage-image i {
	font-size: 30px;
    object-fit: cover;
    object-position: center;
}

.room-manage-name {
    font-weight: 500;
    width: 165px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	line-height: 1;
}

.room-coverimage-preview {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-position: center center;
    border: 1px solid;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.room-coverimage-preview img, .room-bgimage-preview img {
    object-fit: cover;
	object-position: center;
}

.room-bgimage-preview {
    height: 50px;
    width: 50px;
    border-radius: 2px;
    background-position: center center;
    border: 1px solid;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: inline-block;
}

.room-bgimage-remove {
    padding: 0;
    line-height: 1;
    margin-top: -40px;
    padding: 1px 2px;
    font-size: 10px;
}

#v-profile-home .card {
    border-radius: 12px;
}

.sidebar-profile .nav-link{
	color: #4e5058;
	display: flex;
	align-items: center;
	padding: 8px 15px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	font-size: 16px;
    font-weight: 500;
	margin: 0 0.5rem 0.5rem 0;
}


.sidebar-profile .nav-link.active{
	background: #5461f5 !important;
    color: #fff !important;
}

.sidebar-profile .nav-link:hover {
    background-color: #e3e5e8;
}

.sidebar-profile .ti {
    font-size: 22px;
}


.ms-selectable .search-input, .ms-selection .search-input{
    margin-bottom: 5px;
}

.ms-selectable .custom-footer, .ms-selection .custom-footer{
    margin-top: 5px;
}

.form-switch .form-check-input {
    cursor: pointer;
}

.v-profile-tab-item {
    display: flex;
}

.room-manage-row:hover {
    background-color: #e3e5e8;
}

.message-html figure a {
    display: block;
}

.main-block-padding {
	padding: 1.75rem;
}

.ad-space {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
	overflow: hidden;
	width: 100%;
}

.send-sticker img {
    width: 75px;
    cursor: pointer;
}

.chat-sticker img {
    width: 128px;
}

.cookiealert {
    display: none;
}

.cookiealert.show {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    margin: 0;
}

img.uppy-DashboardItem-previewImg {
    position: absolute;
    z-index: 999;
    height: 100%;
    object-fit: contain;
    background: black;
}

#rpanel-videos .video-section {
    padding: 0px 3px 3px 0px !important;
}

.media-row .row {
    margin-left: -5px;
    margin-right: -5px;
}

/* #rpanel-videos .more-actions {
    margin-top: 50px;
} */

div[data-msg-type="5"] .message-data {
    background-color: transparent !important;
    box-shadow: none !important;
}

.chat-link {
    color: #2fb344;
}

.online-status {
    position: absolute;
    bottom: 0;
    left: 0;
}

.online {
    color: #1cc88a;
}

.offline {
    color: #8b95a5;
}

.busy {
    color: #ef4444;
}

.away {
    color: #f59e0b;
}

.change-status .ti-circle-filled.online,
.current-status .ti-circle-filled.online,
.online-status.online .ti-circle-filled {
    color: #22c55e !important;
}

.change-status .ti-circle-filled.offline,
.current-status .ti-circle-filled.offline,
.online-status.offline .ti-circle-filled {
    color: #94a3b8 !important;
}

.change-status .ti-circle-filled.busy,
.current-status .ti-circle-filled.busy,
.online-status.busy .ti-circle-filled {
    color: #ef4444 !important;
}

.change-status .ti-circle-filled.away,
.current-status .ti-circle-filled.away,
.online-status.away .ti-circle-filled {
    color: #f59e0b !important;
}

.online-status .ti {
    border-radius: 50%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 12px;
    height: 12px;
    background: rgb(248 250 252);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-row:hover .online-status .ti {
    background: #caced2;
}

.social-login-container {
    display: block;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.social-provider {
    margin: 0px 5px;
    display: inline-block;
    margin-top: 10px;
}

.social-provider img {
    width: 32px;
    cursor: pointer;
}

.social-seperator {
    position: relative;
    margin-top: 30px;
}

.social-seperator div {
    position: absolute;
    top: -7px;
    font-size: 10px;
    background: #fafbfc;
    padding: 0 8px;
    left: calc(50% - 44px);
    color: #969696;
}

.social-seperator hr {
    margin-top: 0px;
    margin-bottom: 10px;
}


.rtl .unread-indicator {
    right: 0;
    border-radius: 5px 0px 0px 5px;
    transform: translate(50%, -50%);
}

.rtl .channel-item {
	padding-left: 0px;
    padding-right: 7px;
    margin-left: 7px;
    margin-right: 10px;
}

.rtl .pill {
    right: 0;
    transform: translate(50%, -50%);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rtl .private-item .pill {
    right: -10px;
}

.rtl body.sb-sidenav-toggled #wrapper .sidebar-wrapper {
	margin-right: -15rem;
	margin-left: 0;
}

.rtl body.sb-rightnav-toggled #wrapper .rightbar-wrapper {
	margin-left: -15rem;
	margin-right: 0rem;
}

.rtl .replies .message-data:after {
    right: -4px;
    left: auto;
}

.rtl .sent .message-data:before {
    left: -4px;
    right: auto;
}

.rtl .messages .sent .avatar {
	margin-right: 8px;
    margin-left: 0px;
}

.rtl .sent .chat-txt:before {
	left: -4px;
	right: auto;
}

.rtl .replies .chat-txt:after {
	right: -4px;
	left: auto;
}

.rtl .messages .replies .avatar {
	float: right;
	margin-left: 8px;
    margin-right: 0px;
}

.rtl .sent .message-meta {
	left: 38px;
    right: initial;
}

.rtl .replies .message-meta {
	right: 38px;
    left: initial;
}


.rtl .sent .link-preview {
	float: left;
}

.rtl .replies .link-preview {
	float: right;
}

.rtl .media-tab img.recent-link-preview {
	margin-left: 4px;
    margin-right: 0px;
}

.rtl .file-actions {
    left: 10px;
    right: auto;
}

.rtl .editor-controller p{
    margin-left: 0px;
	margin-right: 15px;
}

.rtl .disc-cat-name {
    margin-left: 0px;
	margin-right: 10px;
}

.rtl .input-icon-addon-custom.input-group-flat .form-control:not(:first-child) {
    border-top-left-radius: 0 !important;;
    border-bottom-left-radius: 0 !important;;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}


.rpanel-search-group input, .rpanel-search-group span {
    border-radius: 0 !important;
}

.rpanel-search-group {
    margin-top: -3px;
}

.editor-wrap {
    position: relative;
}

.mention {
    color: #3ca9ff !important;
    cursor: pointer;
    transition: 0.3s;
}

.noti-item {
    margin-bottom: 5px;
    padding-bottom: 5px;
    background: #d1e8ff;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.noti-item.noti-read {
    background: #ebedef;
}

.noti-item:hover {
    background: #ebedef;
}

.noti-icon img {
    border-radius: 50%;
}

.notifications-panel-card {
    min-width: 300px;
}

.card-body.notifications {
    padding: 0;
}

.noti-time {
    font-size: 12px;
    color: #2275d7;
	display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 2px;
}

.noti-content {
    font-size: 14px;
    color: #585858;
    line-height: 1.3;
    display: block;
}

.noti-count {
    right: -8px;
    top: 6px;
    font-size: 9px;
    position: absolute !important;
	display: none;
}

#notifications-panel {
    position: relative;
}

.offcanvas-header {
    padding: 10px;
    height: 48px;
}

.offcanvas-header .input-icon {
    width: 100%;
    margin-bottom: 0 !important;
}

.chat-search-result {
    padding: 10px 15px;
    background: #EBEDEF;
    margin-bottom: 5px;
    cursor: pointer;
    transition: 0.3s;
	border-radius: 5px;
}

.chat-search-result:hover{
	background-color: #DFE1E5;
}

.res-chat-time {
    font-size: 10px;
    margin: 0;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 500;
}

.res-chat-txt {
    font-size: 14px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.place-avatar{
	width: 45px;
	height: 45px;
	border-radius: 50% !important;
}

.place-joined-rooms {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

/*** Loader ***/
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }
  .lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #36b9cc;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  @keyframes lds-ellipsis3 {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(0);
	}
  }
  @keyframes lds-ellipsis2 {
	0% {
	  transform: translate(0, 0);
	}
	100% {
	  transform: translate(24px, 0);
	}
  }

/*** Loader End ***/

.chats .animate__animated {
	-webkit-animation-fill-mode: none;
	animation-fill-mode: none;
}
  
.main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.incall {
    --woo-call-panel-height: min(46vh, 520px);
}

.video-call-container {
    height: var(--woo-call-panel-height, min(46vh, 520px));
    min-height: 260px;
	display: none;
	position: relative;
	background: #1b2434;
    overflow: hidden;
    isolation: isolate;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.incall .video-call-container {
	display: flex;
    flex-direction: column;
}

.incall .main-panel {
    height: calc((var(--vh, 1vh) * 100) - var(--woo-call-panel-height) - 48px);
}

.incall .height-scroll-rpanel {
    height: calc((var(--vh, 1vh) * 100) - var(--woo-call-panel-height) - 48px);
}

.incall .rightbar-wrapper {
    min-height: unset; 
}

.incall .page-content-wrapper {
        height: calc((var(--vh, 1vh) * 100) - var(--woo-call-panel-height));
}

.voice-channel-container {
    height: 82px;
    display: none;
    align-items: center;
    padding: 0 8px;
    width: 15rem;
    background: #f8fafc;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid #dbdde1;
}

.voice-channel-name {
    flex: 1;
    margin-left: 5px;
}

.voice-name {
    width: 15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.in-voice .voice-channel-container {
    display: flex;
}

.voice-member-list {
    padding-left: 30px;
	padding-right: 30px;
    display: none;
}

.voice-member {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.voice-member .dropdown-toggle {
    padding: 0 2px;
    color: inherit;
}

.voice-member .dropdown-menu {
    min-width: 130px;
}

.voice-member-name {
    margin-left: 4px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.voice-member.speaking .voice-avatar {
    box-shadow: 0 0 0 2px #2275d7;
}

.voice-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 4px;
}

.in-voice .main-panel,
.in-voice .height-scroll-rpanel,
.in-voice .page-content-wrapper {
    height: auto;
}

.in-voice .rightbar-wrapper {
    min-height: unset;
}

.launch-call{
    border: 0;
}

.call-alert, .group-call-alert {
    position: absolute;
    background: #2275d7;
    color: #fff;
    border-radius: 10px;
    right: 25px;
    top: 75px;
    display: flex;
    z-index: 9999;
    padding: 10px;
}

.call-alert .animbox, .group-call-alert .animbox {
    width: 60px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.call-alert .call-avatar, .group-call-alert .call-avatar {
    justify-content: center;
    display: flex;
    align-items: center;
}

.call-alert .call-actions, .group-call-alert .call-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
    margin-left:10px;
}

.call-alert .caller-name, .group-call-alert .caller-name {
    margin-bottom: 10px;
}

.call-avatar img {
    width: 41px;
    height: 41px;
    object-fit: cover;
    border-radius: 50%;
}

.phone {
    z-index: 2;
    background-color: #f50057;
    animation: phone 1s cubic-bezier(0.12, 0.7, 0.74, 0.71) infinite alternate-reverse;
    display: grid;
    justify-content: center;
    align-items: center;
    border: 0.5px white solid;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: absolute;
  }
  
  .material-icons {
    color: white;
  }
  
  .call-anim {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    animation: scaling 2s cubic-bezier(0.12, 0.7, 0.74, 0.71) infinite;
  }
  
  @keyframes scaling {
    0% {
      transform: scale(2);
      background-color:  #f50057;
    }
    100% {
      transform: scale(3);
      background-color: rgba(245, 0, 182, 0);
    }
  }
  
  @keyframes phone {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }

  .circle1 {
    animation-delay: 0s;
  }

  .circle2 {
    animation-delay: 1s;
  }
  

#media-div {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
    justify-content: center;
    align-items: center;
    padding: 14px 14px 68px;
    overflow: hidden;
    box-sizing: border-box;
}

.local-video {
    position: absolute;
    right: 15px;
    bottom: 78px;
    width: 200px;
    height: 150px;
    z-index: 999;
    border-radius: 4px;
    overflow: hidden;
    background: black;
}

.video-caller-name {
    position: absolute;
    font-size: 12px;
    background: black;
    padding: 2px 5px;
    border-radius: 4px;
    color: #fff;
    opacity: 0.6;
    left: 5px;
    top: 5px;
    z-index: 100;
}

.call-msg {
    position: absolute;
    color: #fff;
    left: 10px;
    top: 5px;
}

.call-controllers {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    width: auto;
    max-width: calc(100% - 28px);
    z-index: 1000;
    opacity: 0.78;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(8,11,18,.72);
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
    transition: 0.3s;
}

.call-controllers:hover {
    opacity: 1;
}

.remote-video{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.agora-player {
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

#media-div video,
#media-div canvas,
#media-div iframe {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.incall .page-content-wrapper > .topbar {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 -1px 0 rgba(255,255,255,.06), 0 10px 26px rgba(0,0,0,.18);
}

.video-container-fc #media-div {
    padding-bottom: 76px;
}

.video-container-fc .local-video {
    bottom: 86px;
}

.call-toggle-cam, .call-toggle-mic, .call-toggle-fc, .call-toggle-height {
    background: #2e2e2e;
    border-color: #2e2e2e;
    transition: 0.3s;
}

.call-controll {
    margin: auto 2px;
}

figure.gif::after {
    z-index: 99;
    width: max-content;
    height: max-content;
    content: "GIF ▶️";
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgb(25, 28, 30);
    padding: 3px 5px;
    border-radius: 3px;
}

.lazyload {
	background-color: #585F6A;
	display: inline-block;
	position: relative;
	-webkit-animation: loading-placeholder 2s ease-in-out infinite;
	animation: loading-placeholder 2s ease-in-out infinite;
}

@-webkit-keyframes loading-placeholder {
	50% {
		opacity: 0.1;
	}
}

@keyframes loading-placeholder {
	50% {
		opacity: 0.1;
	}
}

.lazyloaded {
	background: none;
	animation: none;
}

div[data-msg-type="4"] .message-data {
    background-color: transparent !important;
    box-shadow: none !important;
}

.cht[data-msg-type="4"] .message-data:before, .cht[data-msg-type="4"] .message-data:after {
    display: none;
}

.emoji-only img.emoji {
    width: 30px;
	height: 30px;
}

.channel-list-bottom .dropdown-toggle:after {
	display: none;
}

.channel-list-bottom .dropdown-toggle {
	border-radius: 14px;
	transition: 0.3s;
}

.channel-list-bottom .dropdown-toggle:hover {
	background-color: rgba(255,255,255,.075);
}

#selected-lang-toggle {
    display: flex;
}

.link-dark:hover, .link-dark:focus {
	color: #626976;
}

.current-status.online-status {
    bottom: 0px;
    right: 0;
    left: unset;
}

.channel-list-bottom .dropdown-item {
    padding: 0.3rem 0.75rem;
}

.hashtag {
    color: #51b0ff;
	cursor: pointer;
}

.uppy-caption {
	width: 100%;
	padding: 10px;
}

.file-caption {
    padding: 0px 10px 5px 10px;
    border-radius: 5px;
    margin-top: 0px;
    max-width: 220px;
    line-height: 18px;
    white-space: pre-wrap;
}

.icon-lock {
    display: inline-block;
	width: 8px;
    height: 9px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%231e293b" height="800px" width="800px" version="1.1" id="Layer_1" viewBox="0 0 330 330" xml:space="preserve"><g id="XMLID_518_"><path id="XMLID_519_" d="M65,330h200c8.284,0,15-6.716,15-15V145c0-8.284-6.716-15-15-15h-15V85c0-46.869-38.131-85-85-85 S80.001,38.131,80.001,85v45H65c-8.284,0-15,6.716-15,15v170C50,323.284,56.716,330,65,330z M110.001,85 c0-30.327,24.673-55,54.999-55c30.327,0,55,24.673,55,55v45H110.001V85z"/></g></svg>');
}

.channel-icon {
    position: relative;
}

.pvt-cnl {
    background: #f2f3f5;
    height: 12px;
    width: 12px;
    position: absolute;
    top: -3px;
    left: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    line-height: 1;
}

.channel-item.active {
    background: #DFE1E5;
}

.active .pvt-cnl, .channel-item:hover .pvt-cnl {
    background: #DFE1E5;
}

.top-channel-icon {
    position: relative;
}

.top-channel-icon .pvt-cnl {
    background: #f8fafc;
}

.light .top-channel-icon .icon-lock {
    opacity: 0.8;
}

.logo.logo-sticky {
    max-height: 32px;
}

.sb-sidenav-toggled .topbar-private {
	position: absolute;
}

.voice-container-title {
    color: #2fb344;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.voice-channel-controls {
    margin-top: 5px;
}

.voice-active .sidebar-height-fix-mt48 {
    height: calc((var(--vh, 1vh) * 100) - 179px);
}

.voice-active .sidebar-height-fix {
    height: calc((var(--vh, 1vh) * 100) - 131px);
}

.dark .alert {
    color: #ffffff;
    background: #464952;
}

.lt-sidebar-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
}

.lt-sidebar-shortcut {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 9px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.055);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.lt-sidebar-shortcut:hover {
    color: #fff;
    border-color: rgba(239,68,68,.42);
    background: rgba(239,68,68,.14);
}

.lt-market-link {
    border-color: rgba(45,212,191,.28);
    background: linear-gradient(135deg, rgba(45,212,191,.13), rgba(239,68,68,.10));
}


.woo-name-effect {
    display: inline-block;
    position: relative;
    isolation: isolate;
    font-weight: 800;
    letter-spacing: 0;
}

.woo-name-effect-rgb {
    color: transparent;
    background: linear-gradient(90deg, #ff2d55, #ffcc00, #31d158, #0a84ff, #bf5af2, #ff2d55);
    background-size: 360% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wooRgbFlow 3.2s linear infinite;
    text-shadow: 0 0 16px rgba(10,132,255,.22);
}

.woo-name-effect-neon {
    color: #f8fbff;
    text-shadow: 0 0 6px #00e5ff, 0 0 16px #00e5ff, 0 0 30px rgba(0,229,255,.55);
}

.woo-name-effect-fire {
    color: #fff4d6;
    text-shadow: 0 0 5px #ffb703, 0 0 15px #fb5607, 0 0 26px rgba(255,0,84,.65);
}

.woo-name-effect-ice {
    color: #e0f7ff;
    text-shadow: 0 0 8px #7dd3fc, 0 0 18px rgba(56,189,248,.55);
}

.woo-name-effect-gold {
    color: transparent;
    background: linear-gradient(100deg, #7a4b00, #f8d56b, #fff7c2, #d49a22, #7a4b00);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wooRgbFlow 4s linear infinite;
    text-shadow: 0 0 14px rgba(248,213,107,.24);
}

.woo-name-effect-aurora {
    color: transparent;
    background: linear-gradient(90deg, #22c55e, #2dd4bf, #38bdf8, #a78bfa, #22c55e);
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wooRgbFlow 4.5s ease infinite;
}

.woo-name-effect-glitch {
    color: #ffffff;
    text-shadow: 1px 0 #ff2d55, -1px 0 #00e5ff;
    animation: wooGlitch 1.6s steps(2, end) infinite;
}

.woo-name-effect-cyber {
    color: #d8ff3e;
    text-shadow: 0 0 8px rgba(216,255,62,.9), 0 0 18px rgba(34,211,238,.6);
}

.woo-name-effect-pulse {
    color: #ffffff;
    animation: wooPulse 1.9s ease-in-out infinite;
}

.woo-name-effect-emerald {
    color: #bbf7d0;
    text-shadow: 0 0 8px #22c55e, 0 0 20px rgba(16,185,129,.65);
}

.woo-name-effect-royal {
    color: #f5f3ff;
    text-shadow: 0 0 7px #8b5cf6, 0 0 22px rgba(139,92,246,.74);
}

.woo-name-effect-pearl {
    color: transparent;
    background: linear-gradient(100deg, #f8fafc, #bae6fd, #f5d0fe, #ffffff);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wooRgbFlow 5s linear infinite;
}

.woo-name-effect-ai {
    color: transparent;
    background: var(--woo-ai-grad, linear-gradient(90deg, #ff1744, #38bdf8, #22c55e, #ff1744));
    background-size: 360% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wooAiFlow var(--woo-ai-speed, 3.4s) linear infinite;
    text-shadow: 0 0 var(--woo-ai-shadow, 16px) var(--woo-ai-glow, rgba(56,189,248,.55));
    margin-inline: .72em;
}

.woo-name-effect-ai::before,
.woo-name-effect-ai::after {
    position: absolute;
    z-index: 2;
    color: var(--woo-ai-glow, #38bdf8);
    font-size: .76em;
    line-height: 1;
    opacity: .95;
    -webkit-text-fill-color: initial;
    background: none;
    filter: drop-shadow(0 0 8px var(--woo-ai-glow, #38bdf8));
    pointer-events: none;
}

.woo-name-effect-ai::before {
    content: "\2726";
    left: -.86em;
    top: -.22em;
}

.woo-name-effect-ai::after {
    content: "\2726";
    right: -.86em;
    bottom: -.20em;
}

.woo-name-effect-ai[style*="--woo-ai-icon:csgo"]::before { content: "\2316"; }
.woo-name-effect-ai[style*="--woo-ai-icon:csgo"]::after { content: "\2295"; }
.woo-name-effect-ai[style*="--woo-ai-icon:gaming"]::before { content: "\25C7"; }
.woo-name-effect-ai[style*="--woo-ai-icon:gaming"]::after { content: "\2726"; }
.woo-name-effect-ai[style*="--woo-ai-icon:fire"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:fire"]::after { content: "\25B2"; color: #ffb703; }
.woo-name-effect-ai[style*="--woo-ai-icon:ice"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:ice"]::after { content: "\2744"; color: #bae6fd; }
.woo-name-effect-ai[style*="--woo-ai-icon:galaxy"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:galaxy"]::after,
.woo-name-effect-ai[style*="--woo-ai-icon:star"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:star"]::after { content: "\2726"; }
.woo-name-effect-ai[style*="--woo-ai-icon:crown"]::before { content: "\265B"; }
.woo-name-effect-ai[style*="--woo-ai-icon:crown"]::after { content: "\265B"; }
.woo-name-effect-ai[style*="--woo-ai-icon:heart"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:heart"]::after { content: "\2665"; color: #fb7185; }
.woo-name-effect-ai[style*="--woo-ai-icon:music"]::before { content: "\266A"; }
.woo-name-effect-ai[style*="--woo-ai-icon:music"]::after { content: "\266B"; }
.woo-name-effect-ai[style*="--woo-ai-icon:code"]::before { content: "</"; }
.woo-name-effect-ai[style*="--woo-ai-icon:code"]::after { content: ">"; }
.woo-name-effect-ai[style*="--woo-ai-icon:bolt"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:bolt"]::after { content: "\26A1"; color: #fde047; }
.woo-name-effect-ai[style*="--woo-ai-icon:car"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:car"]::after { content: "\1F697"; color: #38bdf8; }
.woo-name-effect-ai[style*="--woo-ai-icon:plane"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:plane"]::after { content: "\2708"; color: #bfdbfe; }
.woo-name-effect-ai[style*="--woo-ai-icon:football"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:football"]::after { content: "\26BD"; color: #f8fafc; }
.woo-name-effect-ai[style*="--woo-ai-icon:basketball"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:basketball"]::after { content: "\1F3C0"; color: #fb923c; }
.woo-name-effect-ai[style*="--woo-ai-icon:camera"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:camera"]::after { content: "\1F4F7"; color: #c4b5fd; }
.woo-name-effect-ai[style*="--woo-ai-icon:coffee"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:coffee"]::after { content: "\2615"; color: #facc15; }
.woo-name-effect-ai[style*="--woo-ai-icon:book"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:book"]::after { content: "\1F4D6"; color: #93c5fd; }
.woo-name-effect-ai[style*="--woo-ai-icon:money"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:money"]::after { content: "\20BA"; color: #86efac; }
.woo-name-effect-ai[style*="--woo-ai-icon:sun"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:sun"]::after { content: "\2600"; color: #fde047; }
.woo-name-effect-ai[style*="--woo-ai-icon:moon"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:moon"]::after { content: "\263E"; color: #c4b5fd; }
.woo-name-effect-ai[style*="--woo-ai-icon:flower"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:flower"]::after { content: "\273F"; color: #f9a8d4; }
.woo-name-effect-ai[style*="--woo-ai-icon:diamond"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:diamond"]::after { content: "\25C6"; color: #67e8f9; }
.woo-name-effect-ai[style*="--woo-ai-icon:rocket"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:rocket"]::after { content: "\1F680"; color: #fb7185; }
.woo-name-effect-ai[style*="--woo-ai-icon:shield"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:shield"]::after { content: "\26E8"; color: #34d399; }
.woo-name-effect-ai[style*="--woo-ai-icon:crypto"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:crypto"]::after { content: "\20BF"; color: #facc15; }
.woo-name-effect-ai[style*="--woo-ai-icon:computer"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:computer"]::after { content: "\1F4BB"; color: #60a5fa; }
.woo-name-effect-ai[style*="--woo-ai-icon:phone"]::before,
.woo-name-effect-ai[style*="--woo-ai-icon:phone"]::after { content: "\1F4F1"; color: #22d3ee; }

.woo-name-effect-ai[style*="--woo-ai-motion:float"]::before,
.woo-name-effect-ai[style*="--woo-ai-motion:float"]::after { animation: wooAiFloat var(--woo-ai-speed, 3.4s) ease-in-out infinite; }
.woo-name-effect-ai[style*="--woo-ai-motion:spark"]::before,
.woo-name-effect-ai[style*="--woo-ai-motion:spark"]::after { animation: wooAiSpark var(--woo-ai-speed, 3.4s) steps(2, end) infinite; }
.woo-name-effect-ai[style*="--woo-ai-motion:orbit"]::before { animation: wooAiOrbitLeft var(--woo-ai-speed, 3.4s) linear infinite; }
.woo-name-effect-ai[style*="--woo-ai-motion:orbit"]::after { animation: wooAiOrbitRight var(--woo-ai-speed, 3.4s) linear infinite; }
.woo-name-effect-ai[style*="--woo-ai-motion:flame"]::before,
.woo-name-effect-ai[style*="--woo-ai-motion:flame"]::after { animation: wooAiFlame .9s ease-in-out infinite alternate; }
.woo-name-effect-ai[style*="--woo-ai-motion:pulse"]::before,
.woo-name-effect-ai[style*="--woo-ai-motion:pulse"]::after { animation: wooAiIconPulse 1.25s ease-in-out infinite; }

.woo-name-effect-settings {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(12,18,32,.94), rgba(25,32,48,.88));
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.woo-name-effect-settings-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.woo-name-effect-settings-head h3 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.woo-effect-eyebrow,
.woo-effect-status,
.woo-effect-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
}

.woo-effect-eyebrow {
    color: #fecdd3;
    background: rgba(239,68,68,.14);
}

.woo-effect-status {
    color: #bbf7d0;
    background: rgba(34,197,94,.14);
}

.woo-effect-upgrade {
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #fb7185);
    text-decoration: none;
}

.woo-effect-preview-line {
    display: flex;
    align-items: center;
    min-height: 46px;
    margin-bottom: 14px;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 20px;
}

.woo-ai-effect-builder {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(34,197,94,.22);
    background: radial-gradient(circle at 12% 0%, rgba(34,197,94,.16), transparent 36%), rgba(7,12,24,.62);
}

.woo-ai-effect-head,
.woo-ai-effect-controls,
.woo-ai-effect-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.woo-ai-effect-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.woo-ai-effect-head p,
.woo-ai-effect-actions small {
    margin: 4px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.woo-ai-effect-head a,
.woo-ai-effect-controls button,
.woo-ai-effect-actions button {
    border: 0;
    border-radius: 12px;
    padding: 10px 13px;
    color: #02120a;
    background: linear-gradient(135deg, #22c55e, #86efac);
    font-weight: 900;
    white-space: nowrap;
    text-decoration: none;
}

.woo-ai-effect-actions button {
    color: #dbeafe;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.woo-ai-effect-controls .form-control {
    min-height: 43px;
    color: #fff;
    background: rgba(2,6,23,.72);
    border-color: rgba(255,255,255,.12);
}

.woo-ai-effect-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.woo-ai-effect-options label {
    display: grid;
    gap: 6px;
    margin: 0;
}

.woo-ai-effect-options span {
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 900;
}

.woo-ai-effect-options .form-select {
    min-height: 42px;
    color: #fff;
    background-color: rgba(2,6,23,.72);
    border-color: rgba(255,255,255,.12);
}

.woo-ai-effect-builder.is-locked {
    opacity: .72;
}

.woo-ai-effect-builder button:disabled,
.woo-ai-effect-builder input:disabled {
    cursor: not-allowed;
}

.woo-effect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
    gap: 9px;
}

.woo-effect-grid label {
    cursor: pointer;
    margin: 0;
}

.woo-effect-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.woo-effect-grid label > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 13px;
    padding: 9px 10px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.woo-effect-grid input:checked + span {
    border-color: rgba(239,68,68,.72);
    background: rgba(239,68,68,.16);
    transform: translateY(-1px);
}

.woo-name-effect-locked {
    opacity: .78;
}

.woo-name-effect-locked .woo-effect-grid label > span {
    cursor: not-allowed;
    filter: grayscale(.55);
}

@keyframes wooRgbFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 360% 50%; }
}

@keyframes wooAiFlow {
    0% { background-position: 0% 50%; filter: saturate(1); }
    50% { background-position: 180% 50%; filter: saturate(1.22); }
    100% { background-position: 360% 50%; filter: saturate(1); }
}

@keyframes wooAiFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: .72; }
    50% { transform: translateY(-5px) scale(1.18); opacity: 1; }
}

@keyframes wooAiSpark {
    0%, 100% { transform: translate(0,0) scale(.8); opacity: .45; }
    35% { transform: translate(2px,-4px) scale(1.25); opacity: 1; }
    70% { transform: translate(-2px,3px) scale(.95); opacity: .75; }
}

@keyframes wooAiOrbitLeft {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(.55em,.55em) rotate(180deg); }
    100% { transform: translate(0,0) rotate(360deg); }
}

@keyframes wooAiOrbitRight {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(-.55em,-.55em) rotate(-180deg); }
    100% { transform: translate(0,0) rotate(-360deg); }
}

@keyframes wooAiFlame {
    0% { transform: translateY(2px) scale(.82) skewX(-5deg); opacity: .62; }
    100% { transform: translateY(-6px) scale(1.18) skewX(5deg); opacity: 1; }
}

@keyframes wooAiIconPulse {
    0%, 100% { transform: scale(.86); opacity: .58; }
    50% { transform: scale(1.22); opacity: 1; }
}

@keyframes wooPulse {
    0%, 100% { text-shadow: 0 0 4px rgba(255,255,255,.25); transform: translateY(0); }
    50% { text-shadow: 0 0 12px #fb7185, 0 0 24px rgba(239,68,68,.6); transform: translateY(-1px); }
}

@keyframes wooGlitch {
    0%, 100% { transform: translate(0,0); }
    20% { transform: translate(1px,-1px); }
    40% { transform: translate(-1px,1px); }
    60% { transform: translate(1px,1px); }
    80% { transform: translate(-1px,-1px); }
}

.room-bots-panel {
    margin: 12px 4px 8px;
    padding: 10px;
    border: 1px solid rgba(32, 224, 196, .16);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(12, 21, 36, .88), rgba(7, 12, 24, .72));
}

.room-bots-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(229, 247, 255, .92);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.room-bots-heading span,
.room-bot-meta span,
.room-bot-owner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.room-bots-heading i {
    color: #20e0c4;
}

.room-bots-heading b {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #04131d;
    background: linear-gradient(135deg, #20e0c4, #60a5fa);
}

.room-bots-list {
    display: grid;
    gap: 8px;
}

.room-bot-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .13);
    border-radius: 14px;
    background: rgba(8, 14, 28, .82);
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.room-bot-card:hover {
    border-color: rgba(32, 224, 196, .30);
    background: rgba(13, 23, 42, .92);
    transform: translateY(-1px);
}

.room-bot-card summary {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px 1fr 18px;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    cursor: pointer;
    list-style: none;
}

.room-bot-card summary::-webkit-details-marker {
    display: none;
}

.room-bot-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #eaffff;
    background: linear-gradient(135deg, rgba(255, 51, 93, .82), rgba(32, 224, 196, .84));
    box-shadow: 0 12px 22px rgba(0, 0, 0, .24);
}

.room-bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.room-bot-avatar i {
    font-size: 21px;
}

.room-bot-avatar b {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 12px;
    height: 12px;
    border: 2px solid #08101d;
    border-radius: 50%;
    background: #94a3b8;
}

.room-bot-card.is-online .room-bot-avatar b {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.room-bot-main {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.room-bot-main strong {
    overflow: hidden;
    color: #f8fbff;
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-bot-main em {
    color: rgba(203, 213, 225, .72);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.room-bot-card.is-online .room-bot-main em {
    color: #20e0c4;
}

.room-bot-chevron {
    color: rgba(203, 213, 225, .56);
    transition: transform .16s ease;
}

.room-bot-card[open] .room-bot-chevron {
    transform: rotate(180deg);
}

.room-bot-profile {
    margin: 0 10px 10px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 12px;
    background: rgba(3, 7, 18, .45);
}

.room-bot-profile p {
    margin: 0 0 9px;
    color: rgba(226, 232, 240, .88);
    font-size: 12px;
    line-height: 1.45;
}

.room-bot-meta {
    display: grid;
    gap: 6px;
    margin-bottom: 9px;
    color: rgba(148, 163, 184, .82);
    font-size: 11px;
    font-weight: 800;
}

.room-bot-meta i,
.room-bot-owner i {
    color: #20e0c4;
}

.room-bot-permissions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.room-bot-permissions span {
    padding: 5px 7px;
    border: 1px solid rgba(32, 224, 196, .16);
    border-radius: 999px;
    color: rgba(229, 247, 255, .90);
    background: rgba(32, 224, 196, .08);
    font-size: 10px;
    font-weight: 850;
}

.room-bot-owner {
    margin-top: 9px;
    color: rgba(203, 213, 225, .76);
    font-size: 11px;
    font-weight: 800;
}
