@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
/* body ve gece renkler*/
--body: #fff;
--bodyheader: #0372b9;;
--bodyhcolor: #fff;
--bodygece: #282828;
--bodygececolor: #F3F5F9;
--bodygecebildirim: #4b4b4b;
--bodylogo: #bad3ff;
--bodycolor: black;
--bodykenar: #d5d2d2;
--bodyrenk: #dfedff;
--mobilarkaplan: rgb(240,247,255);
--nickler: rgb(240,247,255);
--scrollwidth: 5px;
/* yetkili renkleir*/
--founder: #de335d;
--sop: #f57c51;
--op: #3a80a3;
--halfop:#5ab981;
--voice: #f7be5b;
--user: #555555;

/* tema renk2 */
--renk2body: #c81409;
--renk2arkaplan: #fff6f5;
--renk2color: #fcf1f0;
/* tema renk3 */
--renk3body: #c3a004;
--renk3arkaplan: #fffcf3;
--renk3color: #fffdf6;
/* tema renk3 */
--renk4body: #8C52FF;
--renk4arkaplan: #e1d2ff;
--renk4color: #e9ddff;
/* tema renk3 */
--renk5body: #00b39c;
--renk5arkaplan: #fff;
--renk5color: #fff;
}


body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	/* font-family: 'Lato',Tahoma,Arial; */
	background: var(--body);
	overflow: hidden;
}

/* Genel Arkaplan */
.acilis {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(1deg, #1abc9c, #333548);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 4;
	font-family: 'Arial', sans-serif;
}

/* Ana Kutu */
.acilis .baglanti {
	width: 400px;
	background-color: #ffffff;
	color: #1d1e2c;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	transform: scale(0.9);
	animation: popIn 0.5s ease-out forwards;
}

@keyframes popIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Başlık */
.acilis .baslik h1 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #333;
}

/* Logo */
.acilis .bilgiler .logo {
	width: 200px;
	height: auto;
	margin-bottom: 15px;
	animation: rotateIn 1s ease-out;
}

@keyframes rotateIn {
	0% {
		transform: rotate(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		opacity: 1;
	}
}

/* Genel Emoji Alanı */
.emoji-selector::-webkit-scrollbar {
	width: 3px;
}

.emoji-selector::-webkit-scrollbar-thumb {
	background: var(--bodylogo);
	color: var(--body);
	border-radius: 10px;
}
.emoji-selector {
	margin: 20px 0;
	text-align: center;
	height: 150px;
	overflow: auto;
}

/* Emoji Listesi */
.emoji-selector {
	display: grid;
	grid-template-columns: repeat(6, 1fr); /* 6 sütun */
	gap: 10px;
	max-height: 200px; /* Yükseklik sınırı */
	overflow-y: auto; /* Dikey scroll */
	padding: 10px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
	background: #e6f7ff; /* Farklı arka plan */
	border: 1px solid #0096c7;
}


/* Emoji Kutusu */
.emoji {
	font-size: 20px;
	padding: 2px;
	background: #ececec;
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}
.emoji img {
	width: 32px;
	height: 32px;
}
.emoji:hover {
	transform: scale(1.2);
	background: #ffd700;
}

.emoji-selector .selected {
	border-color: #1d1e2c;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
	0%, 100% {
		transform: scale(1.2);
	}
	50% {
		transform: scale(1.4);
	}
}

/* Seçilen Emoji Mesajı */
/* Modal Tasarımı */
.emojibar {
	font-family: Arial, sans-serif;
	text-align: center;
	padding: 10px;
}

.emojibar .avatarsecim {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
}

.emojibar  .item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.emojibar  .checkbox-label {
	font-size: 14px;
	background-color: #f0f0f0;
	padding: 8px 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

.emojibar  .checkbox-label:hover {
	background-color: #d0d0d0;
	transform: scale(1.05);
}

.emojibar  input[type="checkbox"] {
	display: none;
}

.emojibar  input[type="checkbox"]:checked + .checkbox-label {
	background-color: #4caf50;
	color: white;
	font-weight: bold;
}

.emojibar  .profilsecim img {
	width: 250px;
	border-radius: 10px;
	border: 2px solid #ddd;
}
.emojibar #avatarresim img {
	width: 30px;
	height: auto;
}
.emojibar  .emoji-panel-div-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	height: 200px;
	overflow: auto;
}

.emojibar  .emoji-item img {
	border-radius: 50%;
	transition: transform 0.2s;
}

.emojibar  .emoji-item:hover img {
	transform: scale(1.2);
	cursor: pointer;
}


/* Input ve Buton */
.acilis .bilgiler input {
	width: 100%;
	padding: 12px;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 15px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acilis .bilgiler button {
	padding: 12px 20px;
	background: linear-gradient(135deg, #1d1e2c, #3c3e54);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	font-size: 18px;
	transition: all 0.3s ease;
}

.acilis .bilgiler button:hover {
	background: #56577a;
}


.header {
	position: absolute;
	top: 0;
	left: 0px;
	width: 200px;
	height: 50px;
	background: var(--bodyheader);
	color: var(--bodyhcolor);
	border-bottom: 1px solid var(--bodykenar);
	padding: 0px 9px;
	display: flex;
	align-items: center;
	font-size: 15px;
}
.header .mobilmenulist {
	display: none;
}
.header .header-col-logo {
	flex: 0 0 190px;
	border-right: 1px solid var(--bodykenar);
	text-align: center;
}

.header .nickemoji {
	font-size: 21px;
	background: var(--body);
	color: var(--bodycolor);
	border-radius: 10px;
	margin-right: 5px;
}
.header .nickemoji img {
	width: 30px;
	height: 30px;
	position: relative;
	top: 10px;
}
.emojisecim img {
	width: 30px;
	height: 30px;
}
.header .mnickemoji {
	font-size: 21px;
	color: var(--bodycolor);
	border-radius: 10px;
	margin-right: 5px;
}
.header .mnickemoji img {
	width: 25px;
	height: 25px;
}
.header .header-col-button-nick {
	flex: 0 0 190px;
	text-align: center;
	color: var(--bodyhcolor);
	letter-spacing: -1px;
	/* padding: 0px 10px; */
	border-right: 1px solid silver;
	font-size: 13.5px;
}
.header .header-col-button {
	flex: 0 0 auto;
	text-align: center;
	color: var(--bodyhcolor);
	letter-spacing: -1px;
	padding: 0px 10px;
	border-right: 1px solid silver;
	font-size: 13.5px;
}
.header .header-col-button i {
	margin-right: 5px;
}
.header .header-col-button-r {
	flex: 0 0 80px;
	text-align: center;
	color: var(--bodyhcolor);
	letter-spacing: -1px;
	padding: 0px 10px;
	border: 1px solid silver;
	font-size: 13.5px;
	margin-left: auto;
	padding: 5px;
	border-radius: 10px;
	margin-right: 10px;
}
.header .header-col-button-r i {
	margin-right: 5px;
}
.header .aktifnick, .header .aktifekran {
	width: 20%;
	text-align: center;
	border-right: 1px solid var(--bodykenar);
	margin-right: 10px;
}

.header .head {
	padding: 10px 5px;
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border: none;
	font-size: 15px;
	border-radius: 2px;
}
.header .temalar {
	padding: 10px;
	background: var(--arkaplan);
	border-radius: 9px;
}
.header .temalar [class^="renk"] {
	cursor: pointer;
}
.header .temalar [class^="renk"] i:hover {
	opacity: 0.6;
}
.header .temalar i {
	margin-right: 0 !important;
}
.header .fa-sliders {
	font-size: 19px;
	border-right: 1px solid silver;
	padding: 15px 10px;
}
.header .renk1 {
	background: var(--kenarrenk);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}
.header .renk2 {
	background: var(--renk2body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}
.header .renk3 {
	background: var(--renk3body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}
.header .renk4 {
	background: var(--renk4body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}
.header .renk5 {
	background: var(--renk5body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}
.temaaktif::before {
	content: "\f00c";
	font-family: 'FontAwesome';
	font-size: 24px;
	color: white;
	position: absolute;
	transform: translate(-50%, -50%);
	margin-left: 10px;
	margin-top: 10px;
}
.solbar::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.solbar::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}
.solbar {
	display: block;
	position: absolute;
	top: 51px;
	left: 0;
	width: 200px;
	height: 400px;
	background: var(--bodyheader);
	color: var(--body);
	border-right: 1px solid var(--bodykenar);
	z-index: 2;
	overflow: hidden;
	overflow-y: auto;
}
.solbar .pcsolbar {
	display: block;
	padding: 5px;
}
.solbar .pcsolbar .ust {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 10px;
	padding: 0px;
}
.solbar .pcsolbar .ust .nickemoji {
	flex: 0 0 100px;
	border-radius: 10px;
	background: var(--body);
	padding: 5px;
	text-align: center;
	cursor: pointer;
}
.solbar .pcsolbar .ust .nickemoji img {
	width: 70%;
	height: 60px;
}
.solbar .pcsolbar .ust .solbtndiv {
	flex: 0 1 100%;
	text-align: center;
}
.solbar .pcsolbar .ust .solbtndiv button {
	width: 90%;
	padding: 5px;
	border-radius: 10px;
	border: none;
	margin-bottom: 3px;
	cursor: pointer;
}
.solbar .pcsolbar .ust .solbtndiv select {
	width: 90%;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 11px;
}
.solbar .mobilsolbar {
	display: none;
}
.solbar .pcsolbar .izinler {
	background: white;
	display: flex;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	color: black;
	font-size: 11px;
	text-align: center;
	height: 25px;
}
.solbar .pcsolbar .izinler .sesizin {
	flex: 0 0 50%;
}
.solbar .pcsolbar .izinler .kameraizin {
	flex: 0 0 50%;
}

.solbar .pcsolbar .izinler .fa-circle-xmark {
	color: red;
}
.solbar .pcsolbar .izinler .fa-check {
	color: green;
}
.solbar .pcsolbar .online {
	font-size: 14px;
	text-align: center;
	padding: 5px;
	width: 100%;
}
.solbar .pcsolbar #onlinedurum {
	font-size: 12px;
	color: green;
	background: white;
	padding: 1px 5px;
	border-radius: 25px;
} 
.solbar .pcsolbar .online select {
	width: 60%;
	border-radius: 10px;
	padding: 10px;
}
.solbar .pcsolbar .arkadaslist {
	display: flex;
	font-size: 13px;
	background: white;
	color: black;
	padding: 3px;
	align-items: center;
	justify-content: center;
}
.solbar .pcsolbar .arkadaslist div {
	cursor: pointer;
	padding: 3px 5px;
	border-radius: 8px;
}
.solbar .pcsolbar .arkadaslist .alist-acik {
	background: black;
	color: white;
}
.solbar .pcsolbar .arkadaslist p {
	margin: 0;
}
.solbar .pcsolbar .aul {
	display: none;
	margin: 0;
	margin-left: -40px;
	margin-top: 5px;
}
.solbar .pcsolbar .aul-acik {
	display: block;
}
.solbar .pcsolbar .aul .arkadas {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	border-bottom: 1px solid #f9f6f6;
	background: white;
	color: black;
	padding: 0px 5px;
	font-size: 14px;
}
.solbar .pcsolbar .aul .arkadas .arkadasname {
	text-align: left;
	margin: 0;
	flex: 0 0 60%;
	cursor: pointer;
}
.solbar .pcsolbar .aul .arkadas .arkadasonline {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: black;
}
.solbar .pcsolbar .aul .arkadas .arkadassil {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: #E91E63;
	cursor: pointer;
}
.solbar .pcsolbar .aul .arkadas .arkadaskabul {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: green;
	cursor: pointer;
}
.solbar .pcsolbar .aul .arkadas .arkadasred {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: #E91E63;
	cursor: pointer;
	
}
.nickler ul::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.nickler ul::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}
.nickler {
	display: none;
	position: absolute;
	color: white;
	width: 187px;
	height: 550px;
	right: 200px;
	top: 49px;
	margin: 0;
}
.nickler .nicktara {
	position: fixed;
	top: 54px;
	right: 200px;
	width: 176px;
	background: var(--body);
	color: var(--bodykenar);
	border-bottom: 1px solid var(--bodykenar);
	border-left: 1px solid var(--bodykenar);
	display: flex;
	align-items: center;
	margin: 0 auto;
	height: 37px;
	padding: 0 5px;
}

.nickler .nicktara span {
	margin-right: 5px;
}

.nickler .nicktara input[type="text"] {
	color: var(--bodycolor);
	width: 100%;
	box-sizing: border-box;
	background: transparent;
	border: none;
	padding: 10px 0px;
	padding-left: 5px;
	outline: 0;
}
.nickler .kenarakaydir {
	display: none;
	position: absolute;
	background: #0372b9;
	color: #ffffff;
	z-index: 8;
	right: 110px;
	top: 50%;
	font-size: 20px;
	padding: 5px 5px;
	border-radius: 10px 0px 0px 10px;
}
.nickler ul {
	position: relative;
	top: 44px;
	display: none;
	border-left: 1px solid var(--bodykenar);
	width: 99%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	padding: 0;
	margin: 0;
}
.nickler .nactive {
	display: block;
}
.nickler ul .nick {
	display: flex;
	align-items: center;
	margin: 2px 5px;
	position: relative;
	color: var(--user);
	font-size: 13px;
}
.nickler ul .nickselected {
	background: #ededed !important;
}
.nickler ul .nick .donline {
	width: 11px;
	position: absolute;
	height: 12px;
	z-index: 1;
	border-radius: 20px;
	left: -4px;
	top: 4px;
}
.nickler ul .nick .arkaplan {
	width: 25px;
	height: 25px;
	font-size: 16px;
	border-radius: 50%;
	margin-right: 5px;
	flex: 0 1 25px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	text-align: center;
	
}
.nickler ul .nick .arkaplan img {
	width: 26px;
	height: 25px;
	position: relative;
	top: 3px;
	border-radius: 50%;
}
.nickler ul .nick .isim {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 500;
	flex: 0 1 100%;

}

.nickler ul .nick.v { color: var(--voice); }
.nickler ul .arkaplan.v { 
	/* background-image: url(../images/voice.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.h { color: var(--halfop); }
.nickler ul .arkaplan.h { 
	/* background-image: url(../images/halfop.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.o { color: var(--op); }
.nickler ul .arkaplan.o { 
	/* background-image: url(../images/op.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.a { color: var(--sop); }
.nickler ul .arkaplan.a { 
	/* background-image: url(../images/sop.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.q { color: var(--founder); }
.nickler ul .arkaplan.q { 
	/* background-image: url(../images/founder.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}


.pencereler {
	position: absolute;
	background: var(--body);
	color: var(--bodycolor);
	width: 200px;
	height: 550px;
	right: 0px;
	top: 51px;
	border-left: 1px solid var(--bodykenar);;
	padding: 0;
	overflow: auto;
}
.pencereler .logo {
	background: var(--bodylogo);
	width: 100%;
	text-align: center;
	height: 50px;
	padding: 10px 0;
}
.pencereler .logo img {
	width: auto;
	height: 50px;
}
.pencereler .baslik {
	padding: 5px 10px;
	text-align: left;
	border-bottom: 1px solid #b1ccf9;
	margin: 5px 0px;
}
.pencereler .kanallar::-webkit-scrollbar {
	width: 3px;
}

.pencereler .kanallar::-webkit-scrollbar-thumb {
	background: var(--bodylogo);
	color: var(--body);
	border-radius: 10px;
}
.pencereler .kanallar {
	/* max-height: 160px;
	overflow: auto; */
	padding: 10px;
}

.pencereler .kanallar .kanal {
	color: #1e72ff;
	font-weight: 400;
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 7px;
	margin: 0px 5px;
	font-size: 15px;
	cursor: pointer;
}

@keyframes dots {
	0%, 20% {
		content: ".";
		transform: rotate(0deg);
	}
	40% {
		content: "..";
		transform: rotate(90deg);
	}
	60% {
		content: "...";
		transform: rotate(180deg);
	}
	80% {
		content: "";
		transform: rotate(270deg);
	}
	100% {
		content: "";
		transform: rotate(360deg); /* Tam bir dönüş */
	}
}

.pencereler .kanallar .kanalyazdiv {
	display: none;
	font-size: 20px;
	font-weight: bold;
}

.pencereler .kanallar .kanalyazdiv::after {
	content: ".";
	animation: dots 2s infinite;
}
.pencereler .kanallar .yazivar .kanalname {
	color: #e20c0c;
}
.pencereler .kanallar .kactive {
	color: white;
	background: #1e72ff;
}
.pencereler .kanallar .kanal .kanalname {
	width: calc(100% - 40px); /* İkinci span genişliğini dahil etmeden ilk span genişliği hesaplaması */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 3px 0;
}
.pencereler .kanallar .kanal .kapat {
	display: none;
	cursor: pointer;
	font-weight: bold;
}

.pencereler .kanallar .kanal:hover .kapat {
	display: block;
}

.pencereler .kanallar > div:first-child {
	font-weight: 600;
}
.pencereler .ozeller::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.pencereler .ozeller::-webkit-scrollbar-thumb {
	background: var(--bodylogo);
	color: var(--body);
	border-radius: 10px;
}
.pencereler .ozeller {
	/* max-height: 160px;
	overflow: auto; */
	padding: 10px;
}
.pencereler .ozeller .ozel {
	color: #1e72ff;
	font-weight: 400;
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 7px;
	margin: 0px 5px;
	font-size: 15px;
	cursor: pointer;
}
.pencereler .ozeller .nickyazdiv {
	display: none;
	font-size: 20px;
	font-weight: bold;
}

.pencereler .ozeller .nickyazdiv::after {
	content: "";
	animation: dots 2s infinite;
}
.pencereler .ozeller .oactive {
	color: white;
	background: #1e72ff;
}
.pencereler .ozeller .ozelname i {
	padding: 5px;
}
.pencereler .ozeller .ozel .yanson {
	color: white;
	background: #1e72ff;
	border-radius: 10px;
	animation: yansin 2s infinite; /* Animasyon adı, süresi ve tekrar sayısı */
}

@keyframes yansin {
	0% {
		opacity: 0.2;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.2;
	}
}
.pencereler .ozeller .ozel .ozelname {
	width: calc(100% - 40px); /* İkinci span genişliğini dahil etmeden ilk span genişliği hesaplaması */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 3px 0;
}
.pencereler .ozeller .ozel .kapat {
	display: none;
	cursor: pointer;
}

.pencereler .ozeller .ozel:hover .kapat {
	display: block;
}
.pencereler::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.pencereler::-webkit-scrollbar-thumb {
	background: var(--body);
	color: var(--bodycolor);
	border-radius: 10px;
}
.pencereler .mobilozeller {
	display: block;
	display: flex;
	padding: 0 10px;
	border-bottom: 1px solid silver;
}
.pencereler .mobilozeller .part1 {
	flex: 1;
}
.pencereler .mobilozeller .part1 p {
	margin: 0;
	margin-top: 10px;
	margin-bottom: 5px;
}
.pencereler .mobilozeller .okapat {
	padding: 0px 5px;
	border-radius: 5px;
	margin-right: 10px;
	cursor: pointer;
	background: var(--bodyheader);
	color: var(--body);
}
.kayanyazi {
	position: fixed;
	top: 51px;
	left: 202px;
	width: 634px;
	background: var(--body);
	height: 28px;
	text-align: left;
	display: flex;
	align-items: center;
	overflow: hidden;
	white-space: nowrap;
	position: relative; /* Çerçeve animasyonu için gerekli */
	border-bottom: 1px solid silver;
}

/* Çerçeve animasyonu */
.kayanyazi::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0; /* Başlangıçta görünmez */
	height: 2px; /* Çizgi kalınlığı */
	background: var(--bodykenar); /* Border rengi */
	/* animation: borderMove 3s linear infinite; */
}
.channel-gif {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background: url(https://qbilisim.net/qwebgirisgif/simsek.gif);
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: 5;
	width: 100%;
	height: 100%;
}
/* Border'ın kayarak ortaya çıkma animasyonu */
@keyframes borderMove {
	0% {
		width: 0;
		right: 0;
	}
	50% {
		width: 100%;
		right: 0;
	}
	100% {
		width: 0;
		right: 100%;
	}
}

.kayanyazi span {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	animation: kayanyaziAnim 10s linear infinite;
}

/* Kayan yazının animasyonu */
@keyframes kayanyaziAnim {
	from {
		transform: translateX(634px);
	}
	to {
		transform: translateX(-100%);
	}
}


.topicbolum {
	position: fixed;
	display: flex;
	top: 80px;
	left: 202px;
	width: 636px;
	background: var(--body);
	border-bottom: 1px solid var(--bodykenar);
	height: 38px;
	text-align: left;
	align-items: center;
}
.topicbolum .tcol-1 {
	flex: 0 0 auto;
	padding: 5px;
}
.topicbolum .baslik {
	font-size: 13px;
}
.topicbolum .baslik b {
	background: var(--bodyheader);
	color: var(--body);
	padding: 5px;
	margin: 0 4px;
	border-radius: 10px;
}
.topicbolum .tcol-2 {
	flex: 0 1 auto;
	overflow: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 13px;
}
.topicbolum .tcol-2::-webkit-scrollbar {
	width: 8px;
	height: 3px;
}

.topicbolum .tcol-2::-webkit-scrollbar-thumb {
	background: #1e72ff;
	color: var(--bodykenar);
	border-radius: 10px;
}
@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.msg-titresim {
	animation: shake 0.5s linear infinite;
}
.msg {
	position: absolute;
	padding: 0 2px;
	width: 90px;
	height: 450px;
	left: 202px;
	bottom: 80px;
	top: 91px;
	font-size: 13px;
	overflow-y: hidden;
	background: var(--body);
	background-image: url('../images/arka.png'); /* ana arkaplan */
	color: var(--user);
}

/* Mobilde ekstra logo ekle */
@media (max-width: 768px) {
  .msg::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 10px;
    width: 140px; /* Genişlik sabit */
    aspect-ratio: 565 / 129; /* Oranı korur */
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
  }
}

}
.msg .msglogo {
	position: absolute;
	top: 5px;
	width: 220px;
	height: auto;
	right: 10px;
	z-index: 2;
}
.yazanlar::-webkit-scrollbar {
	width: 5px;
}

.yazanlar::-webkit-scrollbar-thumb {
	color: var(--bodycolor);
	background: var(--bodyrenk);
	border-radius: 10px;
}
.msg .yazanlar {
	position: fixed;
	width: auto;
	height: auto;
	max-height: 400px;
	bottom: 50px;
	right: 400px;
	padding: 0 2px;
	border-radius: 5px;
	max-height: 400px;
	overflow: auto;
}
.msg .yazanlar .yazannick {
	width: auto;
	color: var(--bodycolor);
	background: #f3f3ff;
	height: auto;
	padding: 0 10px;
	border-radius: 5px;
	margin: 0;
	margin-bottom: 5px;
}
.msg .yazanlar .yazannick span {
	display: inline-block;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.msg .kullanicimenu {
	display: none;
	position: fixed;
	top: 120px;
	right: 410px;
	z-index: 2;
}
.msg .kullanicimenu .kullaniciackapat {
	position: absolute;
	top: -30px;
	right: -200;
	background: var(--bodyrenk);
	color: var(--bodycolor);
	padding: 5px;
}
.msg .kullanicimenu ul {
	position: absolute;
	top: 0;
	right: -200px;
	background: var(--bodyrenk);
	color: var(--bodycolor);
	text-align: left;
	padding: 5px 0px 5px 40px;
	width: 120px;
}
.msg .kullanicimenu .titresimimg {
	width: 30px;
	height: 40px;
}
.msg .kullanicimenu .titresim {
	position: absolute;
	top: 45px;
	left: -35px;
	background: #dfedff;
	border: 1px solid silver;
	padding: 0;
	margin: 0;
}
.msg .kullanicimenu .seskaydi {
	position: absolute;
	top: 113px;
	left: -35px;
	background: #dfedff;
	border: 1px solid silver;
	padding: 0;
	margin: 0;
	font-size: 30px;
	padding: 4px;
}
.msg .kullanicimenu .resimgonder {
	position: absolute;
	top: 171px;
	left: -35px;
	background: #dfedff;
	border: 1px solid silver;
	padding: 0;
	margin: 0;
	font-size: 23px;
	padding: 4px;
}
.msg .kullanicimenu .ozelnick {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	padding: 5px;
}
.msg .kullanicimenu ul li {
	list-style: none;
	margin: 5px;
	margin-left: -30px;
	padding: 2px;
	border-bottom: 1px solid white;
	cursor: pointer;
}
.msg .kullanicimenu ul li:hover {
	background: silver;
}
.msg .kullanicimenu ul li img {
	width: 100%;
	height: auto;
	max-height: 80px;
	border-radius: 29px;
	background: white;
	padding: 10px 0px;
}
.msg .nick.v { color: var(--voice); }
.msg .nick.h { color: var(--halfop); }
.msg .nick.o { color: var(--op); }
.msg .nick.a { color: var(--sop); }
.msg .nick.q { color: var(--founder); }
.msg .topicmsg, 
.msg .topicupdate,
.msg .mode,
.msg .newnick,
.msg .seslenme,
.msg .kick {
	font-weight: unset;
	color: #948f8f;
}
.msg .kanal .format_span {
	border-radius: 5px;
}
.msg .kanal .qgif {
	width: auto;
	height: 50px;
}
.msg .kanal {
	display: none;
	position: relative;
	height: 100%;
	padding: 0;
	overflow-y: auto;
	padding-bottom: 3px;
}
.mactive::-webkit-scrollbar {
	width: 5px;
}

.mactive::-webkit-scrollbar-thumb {
	color: var(--bodycolor);
	background: var(--bodyrenk);
	border-radius: 10px;
}

.msg .bubbles {
	position: absolute;
	left: 160px;
	transform: translate(10px, -50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.msg  .bubbles .bubble {
	width: 30px;
	height: 30px;
	background-color: #eee;
	border: 2px solid #ccc;
	border-radius: 48%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.msg .bubbles .bubble:hover {
	background-color: #ddd;
}
.msg .kanal .mesaj {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0px 0;
}
.msg .kanal .profile {
	width: 40px; /* Profil için sabit genişlik */
	height: 40px; /* Sabit yükseklik */
	border-radius: 50%; /* Yuvarlak profil simgesi */
	/* background-color: #ddd; Profil arka plan rengi */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px; /* Emoji boyutu */
	margin-right: 10px; /* İçerikle aradaki boşluk */
}
.msg .kanal .mesaj  .profile img {
	width: 30px; /* Profil için sabit genişlik */
	height: 30px; /* Sabit yükseklik */
	border-radius: 50%;
}
.msg .kanal .mesaj .content {
	flex: 0 1 auto;
	background: var(--body);
	padding: 5px 20px 5px 5px;
	border-radius: 5px 10px 20px 5px;
}
.msg .kanal .mesaj .msgheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.msg .kanal .mesaj .msgheader .alinti {
	background: #e7e4e4;
	padding: 2px 5px;
	border-radius: 10px 0px 10px;
	border: 1px solid #bbb8b8;
	margin-top: 3px;
	padding-top: 10px;
}
.msg .kanal .mesaj .msgheader .alinti .alintititle {
	position: absolute;
	margin-top: -12px;
	color: black;
	font-size: 9px;
}
.msg .kanal .mesaj .msgheader .alinti .alintinick {
	font-weight: 500;
	margin-right: 5px;
}
.msg .kanal .mesaj .msgheader .alinti .alintitext {
}

.mesaj .mesaj .text {
	display: block;
	margin-top: 5px;
	background: #f2f4f9;
	color: #000;
	padding: 5px;
	border-radius: 5px 10px 20px 5px;
	text-align: justify;

	/* Metin taşmasını engelle */
	word-wrap: break-word; /* Satır uzunluğunu aşarsa kır */
	overflow-wrap: anywhere;
	white-space: normal; /* Metni kutu içine sığdırmak için */
}
.msg .kanal .text .ozelseskayit {
	width: 150px;
	height: 36px;
}
.msg .kanal .text .ozelresimurl {
	width: auto;
	height: 100px;
	max-width: 100%;
	cursor: pointer;
}
.msg .kanal .text .emojione {
	width: 20px;
	position: relative;
	top: 2px;
	margin: 0 2px;
}
.msg .kanal .mesaj .text span {
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}

.msg .kanal .mesaj .time {
	flex: 0 0 40px;
	margin: 0px 5px;
	color: silver;

}
.msg .mesajsekil {
	display: inline-block !important;
}
.msg .kanal .mesajsekil .time {
	position: relative;
}
.msg .mesajsekil .profile {
	width: 20px;
	height: 20px;
	margin: 0;
	margin-right: 5px;
	display: unset;
}
.msg .kanal .mesajsekil .profile img {
	width: 20px !important;
	height: 20px !important;
	position: relative;
	top: 5px;
}
.msg .mesajsekil .content {
	display: flex;
	background: transparent;
}
.msg .mesajsekil .text {
	margin-left: 5px;
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}
.msg .mesajsekil .time {
	position: absolute;
	right: 0;
}

.msg .kanal .content .time {
	flex: 0 0 60px;
}

.msg .kanal .nick {
	font-weight: bold;
	font-size: 0.9em;
	border-radius: 20px;
}
.msg .kanal .icon {
	flex: 0 0 17px;
	margin-right: 5px;
}
.msg .kanal .notice {
	color: #974e00;
	margin: 2px 2px;
}
.msg .kanal .notice .text {
	display: unset;
	margin-top: 5px;
	text-align: justify;

	/* Metin taşmasını engelle */
	word-wrap: break-word; /* Satır uzunluğunu aşarsa kır */
	overflow-wrap: anywhere;
	white-space: normal; /* Metni kutu içine sığdırmak için */
}
.msg .kanal .action {
	color: #b100b9;
	margin: 2px 2px;
}
.msg .mactive {
	display: block;
}
.msg .bildirim {
	margin: 2px 0px !important;
	text-align: justify;

	/* Metin taşmasını engelle */
	word-wrap: break-word; /* Satır uzunluğunu aşarsa kır */
	overflow-wrap: anywhere;
	white-space: normal; /* Metni kutu içine sığdırmak için */
}
.msg .newnick .bildirim {
	color: #ad6100;
	padding: 0px 5px;
}
.msg .join .bildirim {
	color: #01ad00;
	padding: 0px 5px;
}
.msg .part .bildirim {
	color: #0266a3;
	padding: 0px 5px;
}

.msg .quit .bildirim .xquit {
	color: #ff0202;
	padding: 0px 5px;
}
.editor {
	position: fixed;
	left: 202px;
	bottom: 0;
	width: 100%;
	height: 50px;
	padding: 0 2px;
	background: var(--body);
	border-top: 1px solid var(--bodykenar);
}
.editor .mobileditor {
	display: none;
}
.editor .co-ust {
	position: absolute;
	display: none;
	height: 35px;
	margin: 5px;
	padding: 8px;
	align-items: center;
	left: 0;
	bottom: 50px;
	z-index: 30;
	background: var(--bodyheader);
	color: var(--body);
	border-radius: 1px solid var(--bodykenar);
}
.editor .yaktive {
	background: var(--body);
	color: var(--bodycolor);
}
.editor .kalinyazi,
.editor .yanyazi,
.editor  .altyazi,
.editor .renkler,
.editor .temizle,
.editor .mirc {
	width: auto;
	margin-right: 0px;
	padding: 5px 10px;
	text-align: center;
	border-right: 1px solid silver;
	font-size: 16px;
	cursor: pointer;
}
.editor .kalinyazi:hover,
.editor .yanyazi:hover,
.editor .altyazi:hover,
.editor .renkler:hover,
.editor .temizle:hover,
.editor .mirc:hover,
.editor .yazibuyut:hover,
.editor .yazikucult:hover,
.editor .radyo:hover,
.editor .tamekran:hover {
	opacity: 0.6; /* Hover durumunda opacity 0.8 yapılıyor */
}
.editor .kalinyazi {
	font-weight: bold;
}
.editor .yanyazi {
	font-style: italic;
}
.editor .altyazi {
	text-decoration: underline;
}
.editor .renklist {
	display: flex;
	display: none;
	position: absolute;
	list-style: none;
	padding: 0px;
	top: -40px;
	left: 0;
}
.editor .renklist li {
	padding: 13px;
	border: 1px solid #ccc;
	margin: 0px;
}
.editor .renklist li:hover {
	opacity: 0.6;
	cursor: pointer;
}

.editor .renklist .renk1 {background: black;}
.editor .renklist .renk2 {background: #002d50;}
.editor .renklist .renk3 {background: #008000;}
.editor .renklist .renk4 {background: #FF0000;}
.editor .renklist .renk5 {background: #800040;}
.editor .renklist .renk6 {background: #800080;}
.editor .renklist .renk7 {background: #FF8040;}
.editor .renklist .renk8 {background: #FFFF00;}
.editor .renklist .renk9 {background: #80FF00;}
.editor .renklist .renk10 {background: #008080;}
.editor .renklist .renk11 {background: #00FFFF;}
.editor .renklist .renk12 {background: #0000FF;}
.editor .renklist .renk13 {background: #FF55FF;}
.editor .renklist .renk14 {background: #808080;}
.editor .renklist .renk15 {background: #C0C0C0;}
.renklist li.renkaktif::before {
	content: "\f00c";
	font-family: 'FontAwesome';
	font-size: 20px;
	color: white;
	position: absolute;
	transform: translate(-50%, -50%);
}
.editor .mirc a {
	text-decoration: none;
	color: var(--bodycolor);
	font-weight: 500;
}
.editor .yazibuyut,
.editor .yazikucult,
.editor .radyo,
.editor .tamekran {
	padding: 5px 9px;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	border-right: 1px solid silver;
	margin: -2px;
}
.editor #emojigif {
	width: 30px;
	height: 30px;
}
.sagbar {
	margin-left: auto; /* Sağa yasla */
}
.editor #giflist::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.editor #giflist::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}
.editor #giflist {
	display: none;
	position: absolute;
	top: -200px;
	right: 0;
	width: 170px;
	height: 190px;
	background: #ffffff;
	border-radius: 5px;
	border: 1px solid silver;
	overflow: hidden;
	overflow-y: auto;
}
.editor #giflist img {
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.editor .co-alt {
	height: 45px;
	position: relative;
}
.editor .co-alt .co-auto:nth-child(1) {
	flex: 0 0 30px;
	margin: 0 10px;
}
.editor .co-alt .co-auto:nth-child(2) {
	display: none;
	width: 5%;
}
.editor .co-alt .co-auto:nth-child(3) {
	flex: 0 1 90%;
}
.editor .co-alt .co-auto:nth-child(4) {
	text-align: center;
	flex: 0 0 30px;
}
.editor .co-alt .co-auto:nth-child(5) {
	text-align: center;
	flex: 0 2 100px;
}
.editor .textbtn {
	text-align: center;
	background: var(--bodyheader);
	color: #fff;
	padding: 5px;
	border-radius: 10px;
}
.editor .tabbutton {
	text-align: center;
	background: var(--bodyheader);
	color: #fff;
	padding: 5px;
	border-radius: 10px;
}
.editor #inputmsg {
	width: 100%;
	border: none;
	font-size: 20px;
	color: black;
}
.editor #inputgonder {
	padding: 10px 5px;
	border: none;
	background: var(--bodyheader);
	color: var(--body);
	margin-left: 5px;
	font-size: 13px;
	border-radius: 10px;
	cursor: pointer;
}

.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.emojionearea.emojionearea-inline {
	border: none !important; 
}
.emojionearea.emojionearea-inline>.emojionearea-editor {
}
.emojionearea.emojionearea-inline>.emojionearea-button {
	top: 10px !important;
}
.emojionearea .emojionearea-button {
	opacity: 1 !important;
}
.emojionearea .emojionearea-button>div.emojionearea-button-open {
	background-position: 0 -30px;
	background-size: 24px 128px;
	filter: alpha(enabled = false);
	opacity: 1;
	background-image: url(../images/emoji.png) !important;
	border-radius: 10px;
	margin-top: -3px;
}
@keyframes rotate360 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.header .fa-spinner {
	animation: rotate360 2s linear infinite;
}
.ayarlarmenu {
	padding: 20px;
}
.ayarlarmenu span {
	margin-left: 10px;
	font-size: 13px;
}
.ayarlarmenu .checkbox {
	display: none;
}
.ayarlarmenu .checkbox + label {
	display: inline-block;
	position: relative;
	width: 35px;
	height: 5px;
	background: linear-gradient(to right, #fd1a15 0, #fc8b34 45%, #7fd03e 55%, #007177 100%) 0 0;
	background-size: 650px 100%;
	border-radius: 70px;
	padding: 7px;
	cursor: pointer;
	transition: all 500ms ease;
	box-shadow: 0 0px 10px rgb(0 0 0 / 20%) inset;
}
.ayarlarmenu .checkbox + label:before {
	content: "Off";
	width: 20px;
	height: 15px;
	position: absolute;
	left: 3px;
	top: 2px;
	border-radius: 100%;
	background: #fff;
	text-align: center;
	line-height: 16px;
	font-family: "Cabin", sans-serif;
	font-size: 7px;
	font-weight: bold;
	color: #fd1a15;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: left 500ms ease, color 500ms ease, transform 150ms ease;
}
.ayarlarmenu .checkbox + label:active:before {
	transform: scale(0.95);
}

.ayarlarmenu .checkbox:checked + label {
	background-position-x: -350px;
}
.ayarlarmenu .checkbox:checked + label:before {
	content: "On";
	color: #007177;
	left: 22px;
}
.gecemodu {
	padding: 10px;
	/*background: var(--bodyrenk);*/
	border-radius: 10px;
}

.gecemodu #mar {
	display: none; /* Checkbox gizlenir */
}

.gecemodu .checkbox-label {
	z-index: 0;
	position: relative;
}

.gecemodu .options {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	position: relative;
	/*- background-color: var(--bodycolor); */
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

.gecemodu .options .decline,
.gecemodu .options .accept {
	position: absolute;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.gecemodu .options .decline {
	/* color: #f39c12;  Güneş rengi */
	opacity: 1; /* Varsayılan olarak güneş görünür */
	transform: scale(1);
}

.gecemodu .options .accept {
	/* color: #3498db; Ay rengi */
	opacity: 0; /* Varsayılan olarak gizli */
	transform: scale(0.8);
}

/* Checkbox işaretliyken (Gece modu aktif) */
.gecemodu #mar:checked + .options .decline {
	opacity: 0; /* Güneş kaybolur */
	transform: scale(0.8);
}

.gecemodu #mar:checked + .options .accept {
	opacity: 1; /* Ay görünür */
	transform: scale(1);
}

/* Arka plan rengi değişimi */
.gecemodu #mar:checked + .options {
	/* background-color: #2c3e50;  Gece modu arka plan rengi */
}



.jconfirm-form input {
	padding: 10px;
	font-size: 15px;
	border-radius: 7px;
	border: 1px solid var(--bodyheader);
}
.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box {
	background: var(--body);
	color: var(--bodycolor);
	border-top: 5px solid var(--bodyheader);
}

.whois p {
	margin: 0;
}
.context-menu {
	position: fixed;
	top: 93px;
	right: 390px;
	background-color: var(--bodyheader);
	color: var(--body);
	border: 3px solid var(--bodykenar);
	border-radius: 5px;
	padding: 5px;
	display: none; 
	width: 140px;
	z-index: 3;
}
.context-menu .clickrumuz {
	margin: 0;
}
.context-menu ul {
	padding: 0;
	margin: 0;
}
.context-menu ul li {
	list-style: none;
	border-bottom: 1px solid #4b4b4b;
	font-size: 14px;
	padding: 5px;
	cursor: pointer;
	width: auto;
}
.context-menu ul li:hover {
	background: silver;
}

/* Op Menü varsayılan olarak gizli */
.op-menu {
	display: none;
	margin-top: 10px;
	background-color: var(--bodyheader);
	padding: 5px;
	border-top: 2px solid var(--bodykenar);
}

.op-menu li {
	list-style: none;
	font-size: 14px;
	padding: 5px;
	cursor: pointer;
	border-bottom: 1px solid #4b4b4b;
}

.op-menu li:hover {
	background: silver;
}
.engellistdiv {
	overflow-y: auto;
	width: 300px;
	max-height: 300px;
}

.engellistdiv .list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px;
	border-bottom: 1px solid #ccc;
}

.engellistdiv .list-item span {
	flex: 1;
}

.engellistdiv .list-item i {
	cursor: pointer;
	color: red;
}

.engellistdiv .hepsini-kaldir {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.engellistdiv .hepsini-kaldir button {
	background-color: #d9534f;
	color: white; 
	border: none;
	padding: 5px 10px;
	cursor: pointer;
}

.engellistdiv .hepsini-kaldir button:hover {
	background-color: #c9302c;
}
.engellistdiv::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.engellistdiv::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}
.gece {
	background: var(--bodygece);
}
.gece .header {
	background: var(--bodygece);
	color: var(--bodygececolor);
}
.gece .solbar {
	background: var(--bodygece);
	color: var(--bodygececolor);
}
.gece .pencereler {
	background: var(--bodygece);
	color: var(--bodygececolor);
	border-left: 1px solid #616161;
}
.gece .msg {
	background: var(--bodygece);
}
.gece .msg .kanal .notice {
	color: #f39026;
	margin: 2px 2px;
}
.gece .msg .topicmsg, 
.gece .msg .topicupdate, 
.gece .msg .mode, 
.gece .msg .newnick, 
.gece .msg .seslenme, 
.gece .msg .kick {
	background: var(--bodygecebildirim);
	color: var(--bodygececolor);
}
.gece .editor {
	background: var(--bodygece);
	color: var(--bodygececolor);
	border-top: 1px solid #616161;
}
.gece .editor .kalinyazi, 
.gece .editor .yanyazi, 
.gece .editor .altyazi, 
.gece .editor .renkler, 
.gece .editor .temizle, 
.gece .editor .mirc a,
.gece .editor .mirc {
	color: var(--bodygececolor);
}
.gece .emojionearea.emojionearea-inline {
	background: var(--bodygecebildirim);
}
.gece .emojionearea-editor {
	color: var(--bodygececolor);
}
.gece .nickler ul {
	background: #282828;
	border-left: 1px solid #616161;
}
.gece .nickler ul .nick {
	color: var(--bodygececolor);
}
.gece  .nickler ul .nickselected {
	background: var(--bodygecebildirim);
	color: var(--bodygece); 
}


/* renk2 */
.renk2 {
	background: var(--renk2color);
}
.renk2 .header {
	background: var(--renk2body);
}
.renk2 .solbar {
	background: var(--renk2body);
	color: var(--renk2color);
}
.renk2 .topicbolum {
	background: var(--renk2color);
}
.renk2 .nickler ul {
	background: var(--renk2color);
}
.renk2 .nickler .nicktara {
	background: var(--renk2color);
}
.renk2 .pencereler {
	background: var(--renk2color);
}
.renk2 .pencereler .kanallar .kactive {
	background: var(--renk2body);
}
.renk2 .pencereler .ozeller .oactive {
	background: var(--renk2body);
}
.renk2 .pencereler .mobilozeller .okapat {
	background: var(--renk2body);
}
.renk2 .nickler .kenarakaydir {
	background: var(--renk2body);
	color: var(--renk2color);
}
.renk2 .msg {
	background: var(--renk2color);
}
.renk2 .msg .kullanicimenu .ozelnick {
	background: var(--renk2body);
	color: var(--renk2color);
}
.renk2 .msg .kullanicimenu ul {
	background: var(--renk2body);
	color: var(--renk2color);
}
.renk2 .msg .kanal .content {
	margin-top: 2px;
}
.renk2 .editor {
	background: var(--renk2color);
}
.renk2 .editor .co-ust {
	background: var(--renk2body);
	color: var(--renk2color);
}
.renk2 .editor .textbtn  {
	background: var(--renk2body);
}
.renk2 .editor .tabbutton  {
	background: var(--renk2body);
}
.renk2 .editor #inputgonder {
	background: var(--renk2body);
}
.renk2 .msg .topicmsg, 
.renk2 .msg .topicupdate,
.renk2 .msg .mode,
.renk2 .msg .newnick,
.renk2 .msg .seslenme,
.renk2 .msg .kick {
	background: var(--renk2color);
}
.renk2 .jconfirm.jconfirm-white .jconfirm-box, 
.renk2 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid  var(--renk2body);
}
.renk2 .context-menu {
	background: var(--renk2body);
	color: var(--renk2color);
}
/* renk3 */
/* renk3 */
.renk3 {
	background: var(--renk3color);
}
.renk3 .header {
	background: var(--renk3body);
}
.renk3 .solbar {
	background: var(--renk3body);
	color: var(--renk3color);
}
.renk3 .topicbolum {
	background: var(--renk3color);
}
.renk3 .nickler ul {
	background: var(--renk3color);
}
.renk3 .nickler .nicktara {
	background: var(--renk3color);
}
.renk3 .pencereler {
	background: var(--renk3color);
}
.renk3 .pencereler .kanallar .kactive {
	background: var(--renk3body);
}
.renk3 .pencereler .ozeller .oactive {
	background: var(--renk3body);
}
.renk3 .pencereler .mobilozeller .okapat {
	background: var(--renk3body);
}
.renk3 .nickler .kenarakaydir {
	background: var(--renk3body);
	color: var(--renk3color);
}
.renk3 .msg {
	background: var(--renk3color);
}

.renk3 .msg .kullanicimenu .ozelnick {
	background: var(--renk3body);
	color: var(--renk3color);
}
.renk3 .msg .kullanicimenu ul {
	background: var(--renk3body);
	color: var(--renk3color);
}
.renk3 .msg .kanal .content {
	margin-top: 2px;
}
.renk3 .editor {
	background: var(--renk3color);
}
.renk3 .editor .co-ust {
	background: var(--renk3body);
	color: var(--renk3color);
}
.renk3 .editor .textbtn  {
	background: var(--renk3body);
}
.renk3 .editor .tabbutton  {
	background: var(--renk3body);
}
.renk3 .editor #inputgonder {
	background: var(--renk3body);
}
.renk3 .msg .topicmsg, 
.renk3 .msg .topicupdate,
.renk3 .msg .mode,
.renk3 .msg .newnick,
.renk3 .msg .seslenme,
.renk3 .msg .kick {
	background: var(--renk3color);
}
.renk3 .jconfirm.jconfirm-white .jconfirm-box, 
.renk3 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk3body);
}
.renk3 .context-menu {
	background: var(--renk3body);
	color: var(--renk3color);
}
/* renk4 */
.renk4 {
	background: var(--renk4color);
}
.renk4 .header {
	background: var(--renk4body);
}
.renk4 .solbar {
	background: var(--renk4body);
	color: var(--renk4color);
}
.renk4 .topicbolum {
	background: var(--renk4color);
}
.renk4 .nickler ul {
	background: var(--renk4color);
}
.renk4 .nickler .nicktara {
	background: var(--renk4color);
}
.renk4 .pencereler {
	background: var(--renk4color);
}
.renk4 .pencereler .kanallar .kactive {
	background: var(--renk4body);
}
.renk4 .pencereler .ozeller .oactive {
	background: var(--renk4body);
}
.renk4 .pencereler .mobilozeller .okapat {
	background: var(--renk4body);
}
.renk4 .nickler .kenarakaydir {
	background: var(--renk4body);
	color: var(--renk4color);
}
.renk4 .msg {
	background: var(--renk4color);
}
.renk4 .msg .kullanicimenu .ozelnick {
	background: var(--renk4body);
	color: var(--renk4color);
}
.renk4 .msg .kullanicimenu ul {
	background: var(--renk4body);
	color: var(--renk4color);
}
.renk4 .msg .kanal .content {
	margin-top: 2px;
}
.renk4 .editor {
	background: var(--renk4color);
}
.renk4 .editor .co-ust {
	background: var(--renk4body);
	color: var(--renk4color);
}
.renk4 .editor .textbtn  {
	background: var(--renk4body);
}
.renk4 .editor .tabbutton  {
	background: var(--renk4body);
}
.renk4 .editor #inputgonder {
	background: var(--renk4body);
}
.renk4 .msg .topicmsg, 
.renk4 .msg .topicupdate,
.renk4 .msg .mode,
.renk4 .msg .newnick,
.renk4 .msg .seslenme,
.renk4 .msg .kick {
	background: var(--renk4color);
}
.renk4 .jconfirm.jconfirm-white .jconfirm-box, 
.renk4 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk4body);
}
.renk4 .context-menu {
	background: var(--renk4body);
	color: var(--renk4color);
}
/* renk5 */
.renk5 {
	background: var(--renk5color);
}
.renk5 .header {
	background: var(--renk5body);
}
.renk5 .solbar {
	background: var(--renk5body);
	color: var(--renk5color);
}
.renk5 .topicbolum {
	background: var(--renk5color);
}
.renk5 .nickler ul {
	background: var(--renk5color);
}
.renk5 .nickler .nicktara {
	background: var(--renk5color);
}
.renk5 .pencereler {
	background: var(--renk5color);
}
.renk5 .pencereler .kanallar .kactive {
	background: var(--renk5body);
}
.renk5 .pencereler .ozeller .oactive {
	background: var(--renk5body);
}
.renk5 .pencereler .mobilozeller .okapat {
	background: var(--renk5body);
}
.renk5 .nickler .kenarakaydir {
	background: var(--renk5body);
	color: var(--renk5color);
}
.renk5 .msg {
	background: var(--renk5color);
}
.renk5 .msg .kullanicimenu .ozelnick {
	background: var(--renk5body);
	color: var(--renk5color);
}
.renk5 .msg .kullanicimenu ul {
	background: var(--renk5body);
	color: var(--renk5color);
}
.renk5 .msg .kanal .content {
	margin-top: 2px;
}
.renk5 .editor {
	background: var(--renk5color);
}
.renk4 .editor .co-ust {
	background: var(--renk5body);
	color: var(--renk5color);
}
.renk5 .editor .textbtn  {
	background: var(--renk5body);
}
.renk5 .editor .tabbutton  {
	background: var(--renk5body);
}
.renk5 .editor #inputgonder {
	background: var(--renk5body);
}
.renk5 .msg .topicmsg, 
.renk5 .msg .topicupdate,
.renk5 .msg .mode,
.renk5 .msg .newnick,
.renk5 .msg .seslenme,
.renk5 .msg .kick {
	background: var(--renk5color);
}
.renk5 .jconfirm.jconfirm-white .jconfirm-box, 
.renk5 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk5body);
}
.renk5 .context-menu {
	background: var(--renk5body);
	color: var(--renk5color);
}
/* Renkler Bitti */

.mobilmenu {
	display: none;
}
.mobilkapat {
	display: none;
}
.mobilkanalinc {
	display: none;
}
.seslivar {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background: green;
	color: white;
	padding: 5px;
	font-size: 10px;
	width: 75px;
	z-index: 3;
	cursor: pointer;
}


.kamerabolum {
	display: none;
	position: absolute;
	top: 60px;
	right: 210px;
	z-index: 2;
	width: 200px;
	height: auto;
	background: black;
	border: 1px solid #bfbfbf;
	border-radius: 20px;
	overflow: hidden; /* İçeriğin taşmasını engeller */
	cursor: grab; /* Sürüklenebilir olduğunu belirtir */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge ekler */
}
.kamerabilgi {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 0px;
	height: 5%;
}
.kamerabilgi p {
	margin: 0;
	flex: 0 0 31%;
	text-align: center;
	font-size: 14px;
	color: #fde4e4;

}
.kamerabilgi .kameragizle {
	cursor: pointer;
}
.kamerabilgi .kameratam {
	cursor: pointer;
}
.aktifkamera {
	margin-top: 5px;
	width: 100%;
	height: 40%;
}
.nickkamera { 
	width: 100%;
	height: 40%;
}
video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.alttuslar {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 13%;
}
.alttuslar .sesbtn {
	background: #d70000;
	border-radius: 20px;
	color: white;
	padding: 5px;
	font-size: 20px;
	width: 20%;
	cursor: pointer;
}
.alttuslar .mikrofonbtn {
	border-radius: 20px;
	color: black;
	padding: 5px;
	font-size: 20px;
	width: 30%;
	cursor: pointer;
}
.alttuslar .kamerabtn {
	border-radius: 20px;
	background: #3d3f3d;
	color: white;
	padding: 5px;
	font-size: 20px;
	width: 30%;
	cursor: pointer;
}
.alttuslar .kameraaktif {
	background: green;
}
.seskayitdiv {
	/*display: flex; */
	flex-wrap: nowrap;
	align-content: flex-end;
	flex-direction: row;
	align-items: center;
}
.seskayitdiv #kayitbtn {
	padding: 8px;
	border: 1px solid silver;
	border-radius: 10px;
}
.seskayitdiv #seskayitdinle {
	display: none;
	margin: 2px;
	flex: 0 0 40%;
	height: 30px;
}
.seskayitdiv #kayitdurum {
	display: none;
	animation: blink-animation 1s infinite;
}
@keyframes blink-animation {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
.seskayitdiv #durdurbtn {
	display: none;
	background: red;
	color: white;
	padding: 5px 10px;
	border-radius: 10px;
	border: none;
}
.seskayitdiv #kayitgonderbtn {
	display: none;
	flex: 0 0 auto;
	font-size: 12px;
	padding: 5px 10px;
	background: green;
	color: white;
}
.seskayitdiv #yenikayitbtn {
	display: none;
	background: white;
	border: 1px solid silver;
	padding: 5px 10px;
	font-size: 12px;
}

@media screen and (min-width:1400px){ 
	.msg {
		font-size: 15px;
	}
	.topicbolum {
		top: 80px;
	}
	.topicbolum .tcol-2 {
		font-size: 15px;
	}
	.nickler .nicktara {
		top: 52px;
	}
	.nickler ul {
		top: 42px;
	}
	.msg .kanal .content .time {
		flex: 0 0 80px;
	}
	.kamerabolum {
		width: 300px;
	}
}
@media screen and (max-width:1044px){ 
	.emoji-item {
		font-size: 20px;
	}
	.header {
		position: fixed;
		height: 30px;
		z-index: 3;
		padding: 0;
		width: 100%;
	}
	.header .header-col-button-nick,
	.header .header-col-button-r,
	.header .header-col-button {
		display: none;
	}
	.header .mobilmenu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.header .mobilmenu div {
		text-align: center;
		font-size: 16px;
		width: auto;
	}
	.header .mobilmenu div i {
	}
	.header .mobilbars {
		flex: 0 0 50px;
	}
	.header .mobilbars i {
		position: absolute;
		left: 40px;
		top: 10px;
	}
	.header .mobilmenu .mobilmesaj i {
		font-size: 15px;
	}
	.header .mobilmenu .mobilmesaj {
		font-size: 11px;
		padding: 5px 0px;
		background: var(--body);
		color: var(--bodycolor);
		width: 30%;
	}
	.header .mobilmenu .oyanson {
		color: white;
		background: red;
		border: none;
		animation: yansin 2s infinite; /* Animasyon adı, süresi ve tekrar sayısı */
	}
	.header .mobilmenulist {
		display: none;
		position: fixed;
		top: 30px;
		left: 0;
		width: auto;
		height: auto;
		background: var(--body);
		color: var(--bodycolor);
		font-size: 15px;
	}
	.header .mobilmenulist ul {
		text-align: left;
		padding: 0 10px;
	}
	.header .mobilmenulist ul li {
		list-style: none;
		margin-left: 0px;
		padding: 5px;
	}
	.header .mobilmenulist ul li:hover {
		background: silver;
	}
	.header .mobilmenulist ul li i {
	}
	.solbar {
		display: none;
		top: 51;
		z-index: 3;
	}
	.solbar .pcsolbar {
		margin-top: 10px;
	}
	.solbar .pcsolbar .online select {
		padding: 4px;
	}
	.solbar .mobilsolbar {
		display: block;
	}
	.solbar .baslik {
		font-size: 16px;
		font-weight: bold;
		margin: 0;
		margin-left: 20px;
	}
	.solbar .memoji {
		text-align: center;
	}
	.solbar .memoji button {
		margin-top: 10px;
		text-align: center;
		width: 90%;
		padding: 10px;
		border: none;
		font-size: 17px;
		background: #ffffff;
		color: #000000;
		border-bottom: 1px solid silver;
		cursor: pointer;
	}
	.solbar .soltema {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
		margin-left: -41px;
	}
	.solbar .soltema li {
		flex: 0 0 20%;
		list-style: none;
		padding: 5px 10px;
		border-radius: 30px;
		margin: 3px auto;
		font-size: 20px;
		text-align: left;
		cursor: pointer;
	}
	.solbar li .tema5 {
		background: var(--renk5body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}
	.solbar li .tema4 {
		background: var(--renk4body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}
	.solbar li .tema3 {
		background: var(--renk3body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}
	.solbar li .tema2 {
		background: var(--renk2body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}
	.solbar li .tema1 {
		padding: 5px 10px;
		border-radius: 30px;
		background: var(--bodyheader);
		color: var(--body);
	}
	.temaaktif::before {
		position: absolute;
		content: "\f00c";
		font-family: 'FontAwesome';
		font-size: 20px;
		color: white;
		margin: 0;
		margin-top: 15px;
		margin-left: 10px;
		transition: unset;
	}
	.pencereler .mobilozeller {
		display: none;
	}
	.mobilkapat {
		display: block;
		font-size: 11px;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #eaeaea;
		font-weight: bold;
		background: var(--body);
		color: var(--bodycolor);
	}
	.pencereler {
		position: fixed;
		top: 50px;
		left: 0;
		width: 100%;
		height: auto;
		border:none;
		padding: 0;
		overflow: unset;
		border-bottom: 1px solid silver;
		z-index: 2;
	}
	.pencereler .baslik {
		display: none;
	}
	.pencereler .kanallar {
		display: flex;
		flex-wrap: wrap;
		/* max-height: 50px; */
		overflow: auto;
		padding: 5px;
	}
	.pencereler .kanallar .kanalyazdiv {
		font-size: 15px;
	}
	.pencereler .kanallar .kanal {
		display: flex;
		align-items: center;
		margin: 1px;
		padding: 1px;
		border: 1px solid #e7e6e6;
		border-radius: 10px;
	}
	.pencereler .kanallar .kanal .kanalname {
		margin-right: 5px;
		width: calc(100% - 0px);
		padding: 0;
		font-size: 12px;
	}
	.pencereler .kanallar .kanal .kapat {
		display: block;
		padding-left: 5px;
		padding-right: 5px;
		cursor: pointer;
	}
	.pencereler .ozeller {
		display: none;
		position: fixed;
		top: 30px;
		right: 0;
		width: 140px;
		height: 100%;
		background: var(--body);
		z-index: 1;
		padding: 5px 10px;
		overflow-y: auto;
		border-left: 1px solid #c5b7b7;
	}
	.pencereler .ozeller .ozel {
		font-size: 10px;
		margin: 3px 0px;
	}
	.pencereler .ozeller .ozel .ozelname {
		width: calc(100% - 20px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		padding: 5px 0;
	}
	.pencereler .ozeller .ozel .kapat {
		display: block;
		padding: 5px 10px;
		margin-right: -7px;
		cursor: pointer;
	}
	.kayanyazi {
		left: 0;
		width: 100%;
		top: 29px;
		height: 20px;
		font-size: 11px;
	}
	.topicbolum {
		display: none;
		top: 70px;
		left: 0;
		height: 30px;
		width: 312px;
	}
	.topicbolum .baslik {
		font-size: 10px;
	}
	.topicbolum .tcol-2 {
		font-size: 10px;
	}
	.nickler {
		display: none;
		position: fixed;
		top: 70px;
		right: -15px;
		width: 110px;
		z-index: 2;
	}
	.nickler .mobilkanalinc {
		display: block;
		position: absolute;
		background: var(--body);
		color: var(--bodycolor);
		z-index: 8;
		right: 115px;
		top: 40px;
		border-radius: 5px;
		padding: 0px 5px;
		width: 40px;
	}
	.nickler .mobilkanalinc i {
		font-size: 15px;
	}
	.nickler .mobilkanalinc span {
		font-size: 11px;
	}
	.nickler .kenarakaydir {
		display: block;
	}
	.nickler .nicktara {
		position: relative;
		top: 0;
		right: 0;
		width: 100px;
		background: var(--body);
		display: flex;
		align-items: center;
		margin: 0 auto;
		height: auto;
		color: var(--bodycolor);
		padding: 0 5px;
	}
	.nickler .nicktara input[type="text"] {
		font-size: 10px;
	}
	.nickler ul {
		top: 0px;
	}

	.nickler ul .nick {
		display: flex;
		align-items: center;
		margin: 0px 5px;
		position: relative;
		color: var(--user);
		font-size: 11px;
	}
	.nickler ul .nick .donline {
		width: 8px;
		position: absolute;
		height: 9px;
		z-index: 1;
		border-radius: 20px;
		left: -4px;
		top: 2px;
	}
	.nickler ul .nick .arkaplan {
		width: 20px;
		height: 20px;
	}
	.nickler ul .nick .arkaplan img {
		top: 0;
		width: 20px;
		height: 20px;
	}
	.msg {
		position: fixed;
		font-size: 12px;
		z-index: 1;
		left: 0;
		font-size: 12px;
	}
	.msg .msglogo {
		display: none;
	}
	.msg .kullanicimenu {
		display: none;
		position: fixed;
		top: 30%;
		right: 8px;
		z-index: 2;
	}
	.msg .kullanicimenu ul {
		right: 0;
	}
	.msg .kullaniciackapat {
		position: absolute;
		top: -30px;
		right: 0;
		background: var(--bodyrenk);
		color: var(--bodycolor);
		padding: 5px;
	}
	.msg .yazanlar {
		bottom: 40px;
		right: 100px;
	}
	.msg .kanal {
		height: 98%;
	}
	.msg .kanal .mesaj {
		align-items: flex-start;
	}
	.msg .kullanicimenu .kullaniciackapat {
		top: 0px;
		right: 170px;
	}
	.editor {
		position: fixed;
		height: 35px;
		z-index: 2;
		left: 0;
		padding: 0;
	}
	.editor .co-alt {
		height: 35px;
	}
	.editor .co-ust {
		display: none;
	}
	.renk2 .header {
		color: var(--mobilarkaplan);
	}
	.renk3 .header {
		color: var(--mobilarkaplan);
	}
	.renk4 .header {
		color: var(--mobilarkaplan);
	}
	.renk5 .header {
		color: var(--mobilarkaplan);
	}
	.editor #giflist {
		display: none;
		width: 170px;
		height: 190px;
	}
	.editor .co-alt .co-auto:nth-child(1) {
		flex: 0 0 15px;
	}
	.editor .co-alt .co-auto:nth-child(2) {
		display: block;
		flex: 0 1 20px;
	}
	.editor .co-alt .co-auto:nth-child(3) {
		flex: 0 2 90%;
	}
	.editor .co-alt .co-auto:nth-child(4) {
		flex: 0 0 30px;
	}
	.editor .co-alt .co-auto:nth-child(5) {
		flex: 0 0 65px;
	}
	.editor #inputgonder {
		padding: 5px 5px;
		border: none;
		background: var(--bodyheader);
		color: var(--body);
		font-size: 11px;
		margin: 0;
	}
	.msg .kanal .text .emojione {
		width: 15px;
		position: relative;
		top: 2px;
		margin: 0 2px;
	}
	.emojionearea.emojionearea-inline>.emojionearea-editor {
		padding: 5px 0px !important;
		font-size: 15px !important;
		height: 100% !important;
	}
	.emojionearea.emojionearea-inline {
		border: none !important;
		height: 35px !important;
		box-shadow: none !important;
	}
	.emojionearea.emojionearea-inline>.emojionearea-button {
		top: 5px !important;
	}
	.context-menu {
		position: fixed;
		top: 10px;
		right: 100px;
	}
	.context-menu .clickrumuz {
		margin: 0;
	}
	.jconfirm .jconfirm-box-container.jconfirm-no-transition {
		-webkit-transition: none!important;
		transition: none!important;
		width: 100%;
	}
	.kamerabolum {
		right: 0;
		width: 80%;
		right: 10%;
	}
	.kameramin {
		top: 275px;
		right: 0;
		width: 170px !important;
		background: var(--bodyrenk);
		color: var(--bodycolor);
	}
	.kameramin p {
		color: black;
	}
}
