/*  Mevcut HTML ve JavaScript id'leri korunur; sadece görünüm düzenlenir. */
:root {
  --yz-dark: #272a39;
  --yz-dark-2: #333646;
  --yz-blue: #4a97b4;
  --yz-blue-hover: #53a4c3;
  --yz-green: #2ca55f;
  --yz-border: #d0d0d0;
  --yz-soft: #fafafb;
  --yz-editor: #eaeaea;
  --yz-text: #393939;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(39, 42, 57, .76), rgba(74, 151, 180, .34)),
    url("../images/arkaplan.png") center center / cover fixed no-repeat;
  color: var(--yz-text);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: #f3f3f3;
}

*::-webkit-scrollbar-thumb {
  background: #cfcfd1;
  border-radius: 8px;
}

.acilis {
  z-index: 20;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(135deg, #272a39, #4a97b4),
    url("../images/arkaplan.png") center center / cover no-repeat;
  background-blend-mode: screen, multiply, normal;
}

.acilis .baglanti {
  width: min(400px, 100%);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: url("../images/arkaplan.png") center center / cover no-repeat;
  border-radius: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, .18);
}

.acilis .baslik {
  display: none;
}

.acilis .bilgiler {
  width: 100% !important;
  margin: 0;
  padding: 50px;
  background: rgba(39, 42, 57, .86);
  animation: yzZoomIn .45s ease both;
}

.acilis .basliktitle {
  margin: -50px -50px 44px;
  padding: 20px 0;
  color: #fff;
  background: var(--yz-dark);
  border: 0;
  border-bottom: 1px solid #45495d;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.acilis .acilistitle {
  margin: 0 0 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.acilis .bilgiler div {
  display: flex;
  align-items: center;
  height: 60px;
  margin: 20px 0 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.acilis .bilgiler div span {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: #f6f7fb;
  border-right: 1px solid #e5e5e5;
}

.acilis .bilgiler div i {
  padding: 0;
  color: var(--yz-blue);
  border: 0;
  font-size: 24px;
}

.acilis .bilgiler input {
  width: calc(100% - 60px);
  height: 60px;
  margin: 0;
  padding: 0 20px;
  color: var(--yz-dark);
  background: #fff;
  border: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 60px;
}

.acilis .bilgiler input::placeholder {
  color: var(--yz-dark);
  opacity: 1;
}

.loginhint {
  margin: 15px 0 0;
  color: #ddd;
  font-size: 14px;
  text-align: center;
}

.acilis .bilgiler button {
  width: 100%;
  height: 60px;
  margin-top: 20px;
  padding: 0 20px;
  color: #fff;
  background: var(--yz-blue);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 60px;
  transition: background .2s ease, transform .2s ease;
}

.acilis .bilgiler button:hover {
  background: var(--yz-green);
  opacity: 1;
  transform: translateY(-1px);
}

.acilis #farklisurum {
  display: block;
  text-decoration: none;
}

.acilis #farklisurum button {
  height: auto;
  margin-top: 5px;
  padding: 10px;
  background: #6c757d;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.4;
}

.acilis #farklisurum button:hover {
  background: #5c636a;
}

@keyframes yzZoomIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100vw !important;
  height: 50px;
  padding: 0 16px;
  color: #fff;
  background: var(--yz-dark);
  border-bottom: 0;
}

.header .aktifnick,
.header .aktifekran {
  color: #fff;
}

.header .head {
  height: 35px;
  padding: 0 10px;
  color: #fff;
  background: var(--yz-blue);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s ease;
}

.header .head:hover {
  background: var(--yz-blue-hover);
  opacity: 1;
}

.gecemodu {
  background: rgba(255, 255, 255, .08);
  border-radius: 25px;
}

.pencereler {
  position: fixed;
  top: 50px;
  right: 0;
  bottom: 100px;
  z-index: 4;
  width: 200px;
  height: auto;
  margin: 0;
  padding: 10px 7px;
  overflow-x: hidden;
  overflow-y: auto;
  color: #85878f;
  background: var(--yz-dark);
  border: 0;
  border-left: 5px solid var(--yz-dark);
}

.pencereler .kanallar .kanal,
.pencereler .ozeller .ozel {
  min-height: 32px;
  margin: 0 0 7px;
  padding: 0 8px;
  color: #85878f;
  background: #fff;
  border: 0;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .12);
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}

.pencereler .kanallar .kanal:hover,
.pencereler .ozeller .ozel:hover {
  background: #f1f1f1;
}

.pencereler .kanallar .kactive,
.pencereler .ozeller .oactive {
  color: #fff;
  background: var(--yz-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.nickler {
  position: fixed;
  top: 50px;
  right: 205px;
  bottom: 100px;
  z-index: 4;
  width: 200px;
  height: auto;
  margin: 0;
  color: var(--yz-text);
}

.nickler .nicktara {
  position: relative;
  top: auto;
  width: 100%;
  height: 50px;
  padding: 0;
  color: #555;
  background: var(--yz-soft);
  border: 0;
  border-bottom: 1px solid var(--yz-border);
}

.nickler .nicktara span {
  width: 35px;
  margin: 0;
  color: var(--yz-blue);
  text-align: center;
}

.nickler .nicktara input[type="text"] {
  height: 50px;
  padding: 0 8px 0 0;
  color: #333;
  font-weight: 500;
}

.nickler ul {
  top: 0;
  width: 100%;
  height: calc(100% - 50px);
  background: #fff;
  border-left: 1px solid var(--yz-border);
}

.nickler ul .nick {
  margin: 0;
  padding: 7px 4px 6px 7px;
  color: #00334e;
  border-bottom: 1px solid #f3f3f3;
  white-space: nowrap;
  transition: background .2s ease;
}

.nickler ul .nick:hover,
.nickler ul .nickselected {
  background: #dfe1e9 !important;
}

.msg {
  position: fixed;
  top: 50px;
  left: 0;
  right: 405px;
  bottom: 100px;
  z-index: 1;
  width: auto;
  height: auto;
  padding: 50px 8px 10px;
  overflow-x: auto;
  overflow-y: auto;
  color: var(--yz-text);
  background: #fff;
  border-right: 1px solid var(--yz-border);
}

.msg::before {
  content: "";
  position: fixed;
  top: 50px;
  left: 0;
  right: 405px;
  z-index: 1;
  height: 50px;
  background: var(--yz-soft);
  border-right: 1px solid var(--yz-border);
  border-bottom: 1px solid var(--yz-border);
  pointer-events: none;
}

.msg .topic {
  display: block;
  position: fixed;
  top: 50px;
  left: 0;
  right: 405px;
  z-index: 2;
  height: 50px;
  padding: 12px 20px 0;
  overflow: hidden;
  color: #555;
  background: var(--yz-soft);
  border-right: 1px solid var(--yz-border);
  border-bottom: 1px solid var(--yz-border);
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msg .topic.qz-topic-empty {
  color: #777;
}

.qz-zoom-hit {
  transform: scale(.94);
  transition: transform .14s ease;
}

.msg .msglogo {
  position: fixed;
  top: 125px;
  right: 430px;
  width: 260px;
  opacity: .08;
  pointer-events: none;
}

.msg .kanal {
  width: 100%;
  padding-bottom: 8px;
}

.msg .kanal .mesaj {
  margin-top: 5px;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.55;
}

.msg .kanal .nick {
  font-weight: 600;
}

.msg .kanal .nick::after {
  content: ">";
  margin: 0 5px;
  color: #777;
}

.msg .topicmsg,
.msg .topicupdate,
.msg .mode,
.msg .newnick,
.msg .seslenme,
.msg .kick {
  color: #333;
  background: #f6f7fb;
  border-radius: 3px;
  font-size: inherit;
}

.msg .emojione,
.msg img.emojione,
.msg img.skyemoji {
  width: 1.45em;
  height: 1.45em;
  vertical-align: middle;
}

.editor {
  position: fixed;
  right: 405px;
  bottom: 0;
  left: 0;
  z-index: 8;
  width: auto;
  height: 100px;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--yz-border);
  border-right: 1px solid var(--yz-border);
}

.editor .co-ust {
  height: 40px;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid var(--yz-border);
}

.editor .kalinyazi,
.editor .yanyazi,
.editor .altyazi,
.editor .renkler,
.editor .temizle,
.editor .mirc {
  height: 39px;
  margin: 0;
  padding: 0 15px;
  color: var(--yz-dark);
  border-right: 1px solid var(--yz-border);
  font-size: 15px;
  font-weight: 600;
  line-height: 39px;
}

.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 {
  background: #f1f1f1;
  opacity: 1;
}

.editor .mirc a {
  color: var(--yz-dark);
}

.editor .yazibuyut,
.editor .yazikucult,
.editor .radyo,
.editor .tamekran,
.sagbar .okapatbutton {
  height: 39px;
  margin: 0;
  padding: 0 12px;
  color: var(--yz-dark);
  border-right: 1px solid var(--yz-border);
  font-size: 14px;
  line-height: 39px;
}

.editor .co-alt {
  height: 60px;
  background: var(--yz-editor);
}

.editor .co-alt .co-auto:nth-child(2) {
  display: block;
  width: 5%;
  padding: 10px 0;
  border-right: 1px solid rgba(0, 0, 0, .1);
  text-align: center;
}

.editor .co-alt .co-auto:nth-child(3) {
  width: 85%;
  padding: 7px 0 7px 8px;
}

.editor .co-alt .co-auto:nth-child(4) {
  width: 10%;
  padding: 12px 10px;
}

.editor #inputmsg {
  width: 100%;
  height: 45px;
  padding: 4px 45px 4px 8px;
  color: #111;
  background: var(--yz-editor);
  border: 1px solid #e1e1e1;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.editor #inputgonder {
  width: 100%;
  height: 35px;
  margin: 0;
  padding: 0;
  color: #fff;
  background: var(--yz-dark);
  border: 0;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
  transition: background .2s ease;
}

.editor #inputgonder:hover {
  background: var(--yz-blue);
}

.editor .fa-magnifying-glass {
  color: var(--yz-dark);
  background: transparent;
  font-size: 18px;
}

.emojionearea.emojionearea-inline {
  height: 45px !important;
  background: var(--yz-editor) !important;
  border: 1px solid #e1e1e1 !important;
  box-shadow: none !important;
}

.emojionearea.emojionearea-inline > .emojionearea-editor {
  height: 43px !important;
  padding: 11px 36px 8px 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.emojionearea.emojionearea-inline > .emojionearea-button {
  top: 8px !important;
  right: 8px !important;
}

.context-menu {
  color: #fff;
  background: var(--yz-dark);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.context-menu .menu-item:hover {
  background: var(--yz-blue);
}

.gece {
  background: var(--yz-dark-2);
}

.gece .header,
.gece .pencereler {
  background: var(--yz-dark);
}

.gece .msg,
.gece .editor,
.gece .nickler ul,
.gece .nickler .nicktara {
  color: #dbdce4;
  background: var(--yz-dark-2);
}

.gece .msg::before,
.gece .msg .topic {
  color: #dbdce4;
  background: var(--yz-dark-2);
}

.gece .editor #inputmsg,
.gece .emojionearea.emojionearea-inline {
  color: #fff !important;
  background: var(--yz-dark-2) !important;
  border-color: #7d7676 !important;
}

@media screen and (max-width: 1044px) {
  body {
    background:
      linear-gradient(135deg, rgba(39, 42, 57, .82), rgba(74, 151, 180, .48)),
      url("../images/arkaplan.png") center center / cover fixed no-repeat;
    font-size: 12px;
  }

  .acilis {
    align-items: flex-start;
    padding-top: 45px;
  }

  .acilis .baglanti {
    max-width: 400px;
  }

  .acilis .bilgiler {
    padding: 50px 20px;
  }

  .acilis .basliktitle {
    margin: -50px -20px 44px;
  }

  .header {
    height: 50px;
    padding: 0;
    background: var(--yz-dark);
  }

  .header .mobilmenu {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: stretch;
  }

  .header .mobilmenu div {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--yz-dark);
    border-right: 1px solid rgba(255, 255, 255, .07);
  }

  .header .mobilmenu .mobilradyo {
    width: 12%;
    padding: 0;
  }

  .header .mobilmenu .mobilkanallar {
    width: 32%;
    padding: 0;
  }

  .header .mobilmenu .mobilozel {
    width: 10%;
    padding: 0;
  }

  .header .mobilmenu .mobilmesaj {
    width: 34%;
    padding: 0;
  }

  .header .mobilmenu .mobilbars {
    width: 12%;
    padding: 0;
    background: var(--yz-dark);
    font-size: 22px;
  }

  .header .mobilmenu .mobilractive,
  .header .mobilmenu .mobiloactive,
  .header .mobilmenu .mobilkactive,
  .header .mobilmenu .mobilactive {
    color: var(--yz-dark);
    background: #fff;
  }

  .header .mobilmenulist {
    top: 50px;
    z-index: 30;
    color: var(--yz-dark);
    background: #fff;
  }

  .header .mobilmenulist ul {
    margin: 0;
    padding: 20px;
  }

  .header .mobilmenulist ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 18px;
    font-weight: 600;
  }

  .pencereler {
    top: 50px;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 6;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 0;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--yz-border);
    overflow: visible;
  }

  .pencereler .kanallar {
    display: flex;
    flex-wrap: wrap;
    max-height: 88px;
    padding: 4px;
    overflow: auto;
  }

  .pencereler .kanallar .kanal,
  .pencereler .ozeller .ozel {
    min-height: 28px;
    margin: 2px;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    font-size: 12px;
  }

  .nickler {
    right: -15px;
    bottom: auto;
    z-index: 5;
    width: 110px;
    border-left: 1px solid var(--yz-border);
    background: #fff;
  }

  .nickler .mobilkanalinc {
    display: block;
    position: absolute;
    top: 45%;
    right: 115px;
    z-index: 8;
    width: 40px;
    padding: 0 5px;
    color: #fff;
    background: var(--yz-blue);
    border-radius: 5px;
  }

  .nickler .kenarakaydir {
    display: block;
    position: absolute;
    top: 50%;
    right: 110px;
    z-index: 8;
    width: 60px;
    color: #fff;
    background: var(--yz-blue);
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
  }

  .nickler .nicktara {
    height: 40px;
    width: 100px;
    margin: 0 auto;
    padding: 0 5px;
    background: #fff;
  }

  .nickler .nicktara input[type="text"] {
    height: 40px;
    font-size: 12px;
  }

  .nickler ul {
    height: calc(100% - 40px);
  }

  .msg {
    right: auto;
    bottom: auto;
    left: 0;
    padding: 8px 5px 45px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 12px;
  }

  .msg::before,
  .msg .msglogo {
    display: none;
  }

  .msg .topic {
    display: block !important;
    position: sticky;
    top: 0;
    left: auto !important;
    right: auto !important;
    z-index: 3;
    width: auto !important;
    min-height: 36px;
    height: auto;
    margin: -8px -5px 8px;
    padding: 8px 12px;
    overflow: hidden;
    color: #393939;
    background: #f1f1f1;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 0 0 5px 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .msg .topic:empty::before {
    content: "Topic yok.";
    color: #777;
  }

  .msg .kanal .mesaj {
    font-size: inherit;
    line-height: 1.5;
  }

  .editor {
    left: 0;
    width: 100% !important;
    height: 35px;
    background: #fff;
    border-right: 0;
  }

  .editor .co-ust {
    display: none;
  }

  .editor .co-alt {
    height: 35px;
    background: #fff;
  }

  .editor .co-alt .co-auto:nth-child(1) {
    display: block;
    width: 12%;
    border-right: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
  }

  .editor .co-alt .co-auto:nth-child(2) {
    width: 12%;
    padding: 0;
    border-right: 1px solid rgba(0, 0, 0, .1);
  }

  .editor .co-alt .co-auto:nth-child(3) {
    width: 59%;
    padding: 2px;
  }

  .editor .co-alt .co-auto:nth-child(4) {
    width: 17%;
    padding: 5px;
  }

  .editor #inputmsg {
    height: 31px;
    font-size: 14px;
  }

  .editor #inputgonder {
    height: 25px;
    font-size: 12px;
    line-height: 25px;
  }

  .editor .mobileditor {
    display: none;
    position: fixed;
    right: 8px;
    bottom: 42px;
    left: 8px;
    z-index: 12;
    width: auto;
    height: auto;
    padding: 10px;
    color: #fff;
    background: var(--yz-dark);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  }

  .editor .mobileditor ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    padding: 0;
  }

  .editor .mobileditor li {
    flex: 1;
    height: 38px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
  }

  .editor .mobileditor li span {
    display: flex;
    width: 100%;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
  }

  .editor .mobileditor li span:hover,
  .editor .mobileditor .yaktivemobil {
    color: #fff;
    background: var(--yz-blue);
  }

  .emojionearea.emojionearea-inline {
    height: 31px !important;
    border: 0 !important;
  }

  .emojionearea.emojionearea-inline > .emojionearea-editor {
    height: 31px !important;
    padding: 5px 30px 5px 6px !important;
    font-size: 14px !important;
  }
}

/*  visual parity pass */
.header .aktifekran {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.2px;
}

.header .aktifekran #aktifekran b,
.header #aktifekran b {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 6px;
  color: #272a39;
  background: var(--yz-blue);
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
}

.header .aktifnick {
  color: var(--yz-blue);
  font-size: 14px;
  font-weight: 500;
}

.pencereler {
  color: #85878f;
  background: #eaeaec;
  border-left: 5px solid var(--yz-dark);
}

.pencereler .kanallar,
.pencereler .ozeller {
  padding: 6px 7px;
}

.pencereler .kanallar .kanal,
.pencereler .ozeller .ozel {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 7px;
  padding: 0 9px 0 10px;
  color: #85878f;
  background: #fff;
  border: 0 !important;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .10);
  font-size: 15px;
  font-weight: 600;
}

.pencereler .kanallar .kanal:hover,
.pencereler .ozeller .ozel:hover {
  color: #5f6370;
  background: #f6f6f7;
}

.pencereler .kanallar .kactive,
.pencereler .ozeller .oactive {
  color: #fff !important;
  background: #08080a !important;
}

.pencereler .kanalname,
.pencereler .ozelname {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pencereler .kapat {
  flex: 0 0 auto;
  margin-left: 6px;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  opacity: .78;
}

.nickler {
  background: #fff;
}

.nickler .nicktara {
  background: #fafafb;
  border-bottom: 1px solid var(--yz-border);
}

.nickler .nicktara span {
  color: var(--yz-blue);
}

.nickler .nicktara input[type="text"]::placeholder {
  color: #777;
}

.nickler ul {
  background: #fff;
  border-left: 0;
}

.nickler ul .nick {
  min-height: 32px;
  margin: 0;
  padding: 5px 8px;
  border-bottom: 1px solid #f3f3f3;
  color: #4a97b4;
  font-size: 14px;
  font-weight: 600;
}

.nickler ul .nick:hover,
.nickler ul .nickselected {
  color: #272a39;
  background: #dfe1e9 !important;
}

.nickler ul .nick .arkaplan {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
  background: #4a97b4 !important;
  background-image: none !important;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
}

.nickler ul .nick .arkaplan::before {
  content: "@";
}

.nickler ul .arkaplan.v {
  background: #f6b73f !important;
}

.nickler ul .arkaplan.v::before {
  content: "+";
}

.nickler ul .arkaplan.h {
  background: #45bb39 !important;
}

.nickler ul .arkaplan.h::before {
  content: "%";
}

.nickler ul .arkaplan.o {
  background: #4a97b4 !important;
}

.nickler ul .arkaplan.o::before {
  content: "@";
}

.nickler ul .arkaplan.a {
  background: #f06f44 !important;
}

.nickler ul .arkaplan.a::before {
  content: "&";
}

.nickler ul .arkaplan.q {
  background: #ef509a !important;
}

.nickler ul .arkaplan.q::before {
  content: "~";
}

.nickler ul .nick.v {
  color: #f3a928;
}

.nickler ul .nick.h {
  color: #41a832;
}

.nickler ul .nick.o {
  color: #4a97b4;
}

.nickler ul .nick.a {
  color: #ee6840;
}

.nickler ul .nick.q {
  color: #ef509a;
}

.msg {
  color: #272a39;
  background: #fff;
  font-size: 15px;
}

.msg::before {
  background: #fafafb;
}

.msg .topic {
  color: #555;
  background: #fafafb;
  line-height: 24px;
}

.msg .topic *,
.msg .topic span {
  box-shadow: none !important;
}

.msg .kanal .mesaj,
.msg .kanal .notice,
.msg .kanal .action {
  margin: 5px 0;
  padding: 0;
  overflow: visible;
  line-height: 1.45;
}

.msg .topicmsg,
.msg .topicupdate,
.msg .mode,
.msg .newnick,
.msg .seslenme,
.msg .kick,
.msg .status,
.msg .notice {
  margin: 5px 0 !important;
  padding: 0 !important;
  color: #272a39;
  background: transparent !important;
  border-radius: 0;
}

.msg .kanal .time {
  color: #333;
}

.msg .kanal .nick {
  margin-right: 0;
  font-weight: 500;
}

.msg .kanal .nick::after {
  margin: 0 5px;
}

.context-menu {
  width: 180px !important;
  padding: 0 !important;
  color: #fff;
  background: var(--yz-dark) !important;
  border: 0 !important;
  border-radius: 3px !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  z-index: 50 !important;
}

.context-menu .clickrumuz {
  display: none;
}

.context-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.context-menu ul li {
  display: flex;
  width: 100%;
  min-height: 33px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.context-menu ul li i {
  width: 16px;
  text-align: center;
}

.context-menu ul li:hover {
  color: #fff;
  background: var(--yz-blue);
}

body.qz-private-active .msg {
  padding-top: 82px;
}

body.qz-private-active .msg::before,
body.qz-private-active .msg .topic {
  display: none !important;
}

.msg .kullanicimenu {
  position: fixed;
  top: 50px;
  right: 205px;
  left: 0;
  z-index: 5;
  height: 72px;
  color: #fff;
  background: #757884;
}

.msg .kullanicimenu .kullaniciackapat {
  display: none;
}

.msg .kullanicimenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  background:
    radial-gradient(circle at 50% 38%, #8aa6b5 0 13px, transparent 14px),
    radial-gradient(circle at 50% 78%, #8aa6b5 0 24px, transparent 25px),
    #e8ecef;
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .3), 0 8px 10px rgba(0, 0, 0, .12);
}

.msg .kullanicimenu ul {
  position: relative;
  top: 0;
  right: auto;
  display: flex;
  width: 100%;
  height: 72px;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0 16px 0 112px;
  color: #fff;
  background: transparent;
  list-style: none;
}

.msg .kullanicimenu .ozelnick {
  position: absolute;
  top: 0;
  right: auto;
  left: 112px;
  display: flex;
  height: 72px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 700;
}

.msg .kullanicimenu ul li:not(.ozelnick) {
  display: inline-flex;
  width: auto;
  height: 35px;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0 10px;
  color: #272a39;
  background: #fff;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.msg .kullanicimenu ul li:not(.ozelnick):hover {
  color: #fff;
  background: var(--yz-blue);
}

.msg .kullanicimenu ul li.temizle,
.msg .kullanicimenu ul li.ozelkapat {
  display: none;
}

@media screen and (max-width: 1044px) {
  .header .mobilmenu {
    background: var(--yz-dark);
  }

  .header .mobilmenu .mobilradyo {
    width: 13%;
  }

  .header .mobilmenu .mobilkanallar {
    width: 27%;
    font-size: 12px;
  }

  .header .mobilmenu .mobilozel {
    width: 9%;
  }

  .header .mobilmenu .mobilmesaj {
    width: 39%;
    color: #fff;
    background: var(--yz-dark);
    font-size: 12px;
    font-weight: 700;
  }

  .header .mobilmenu .mobilbars {
    width: 12%;
  }

  .pencereler {
    background: #eaeaec;
    border-bottom: 1px solid #cececf;
    border-left: 0;
  }

  .pencereler .kanallar {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    max-height: 94px;
    padding: 5px;
    overflow-x: auto;
    overflow-y: auto;
  }

  .pencereler .kanallar .kanal,
  .pencereler .ozeller .ozel {
    display: inline-flex;
    width: auto;
    min-height: 26px;
    margin: 0;
    padding: 3px 19px 2px 7px;
    border-right: 1px solid #cececf !important;
    border-bottom: 1px solid #cececf !important;
    border-radius: 0;
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    position: relative;
  }

  .pencereler .kapat {
    position: absolute;
    top: 3px;
    right: 5px;
    margin: 0;
    font-size: 12px;
  }

  .nickler {
    width: 30% !important;
    right: 0 !important;
    border-left: 1px solid var(--yz-border);
  }

  .nickler .nicktara {
    width: 100%;
    height: 40px;
  }

  .nickler ul .nick {
    min-height: 28px;
    padding: 4px 9px;
    font-size: 12px;
  }

  .nickler ul .nick .arkaplan {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    font-size: 11px;
  }

  .nickler .mobilkanalinc,
  .nickler .kenarakaydir {
    right: calc(100% + 6px);
    background: var(--yz-blue);
  }

  .msg {
    font-size: 13px;
    background: #fff;
  }

  .msg .topic {
    min-height: 34px;
    margin: -8px -5px 6px;
    padding: 6px 9px;
    color: #272a39;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    line-height: 1.4;
  }

  .msg .topic *,
  .msg .topic span {
    background-color: transparent !important;
  }

  .context-menu {
    right: calc(30% + 8px) !important;
    width: 180px !important;
  }

  body.qz-private-active .msg {
    padding-top: 42px;
  }

  .msg .kullanicimenu {
    right: 0;
    height: 40px;
  }

  .msg .kullanicimenu::before {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  .msg .kullanicimenu ul {
    height: 40px;
    padding: 0 8px 0 58px;
    gap: 3px;
  }

  .msg .kullanicimenu .ozelnick {
    left: 58px;
    height: 40px;
    font-size: 13px;
  }

  .msg .kullanicimenu ul li:not(.ozelnick) {
    height: 28px;
    padding: 0 7px;
    font-size: 12px;
  }
}

/* Final spacing, modal and mobile tightening */
@media screen and (min-width: 1045px) {
  .msg {
    top: 50px !important;
    right: 405px !important;
    bottom: 100px !important;
    left: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 50px 8px 6px !important;
  }

  .msg .kanal {
    height: 100% !important;
  }

  .editor {
    right: 405px !important;
    bottom: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: 100px !important;
  }

  .nickler {
    top: 50px !important;
    right: 205px !important;
    bottom: 0 !important;
    width: 200px !important;
    height: auto !important;
  }

  .nickler ul {
    height: calc(100% - 50px) !important;
  }

  .pencereler {
    top: 50px !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 200px !important;
    height: auto !important;
  }

  .pencereler .kanallar,
  .pencereler .ozeller {
    padding: 16px 13px !important;
  }

  body.qz-private-active .msg,
  body.qz-status-active .msg {
    right: 205px !important;
    bottom: 100px !important;
    width: auto !important;
    height: auto !important;
  }

  body.qz-private-active .editor,
  body.qz-status-active .editor {
    right: 205px !important;
    width: auto !important;
  }
}

body.qz-status-active .msg {
  padding-top: 8px !important;
}

body.qz-status-active .msg::before,
body.qz-status-active .msg .topic {
  display: none !important;
}

.editor .co-ust {
  height: 40px !important;
  border-bottom: 1px solid var(--yz-border);
}

.editor .co-alt {
  height: 60px !important;
}

.editor .co-alt .co-auto:nth-child(1),
.editor .co-alt .co-auto:nth-child(2) {
  display: flex !important;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-right: 1px solid var(--yz-border);
}

.editor .co-alt .co-auto:nth-child(1) {
  width: 5% !important;
}

.editor .co-alt .co-auto:nth-child(2) {
  width: 5% !important;
}

.editor .co-alt .co-auto:nth-child(3) {
  width: 80% !important;
  padding: 7px 0 7px 8px !important;
}

.editor .co-alt .co-auto:nth-child(4) {
  width: 10% !important;
  padding: 12px 10px !important;
}

.editor #inputmsg,
.emojionearea.emojionearea-inline {
  height: 45px !important;
  background: #eaeaea !important;
  border: 1px solid #e1e1e1 !important;
}

.emojionearea.emojionearea-inline > .emojionearea-editor {
  height: 43px !important;
  min-height: 43px !important;
  padding: 11px 44px 8px 8px !important;
  color: #272a39 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
}

.emojionearea.emojionearea-inline > .emojionearea-button {
  top: 7px !important;
  right: 7px !important;
  width: 31px !important;
  height: 31px !important;
  background: #ffc83d !important;
  border-radius: 50% !important;
  opacity: 1 !important;
}

.emojionearea.emojionearea-inline > .emojionearea-button::before {
  content: "☺";
  display: block;
  width: 31px;
  height: 31px;
  color: #272a39;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

.emojionearea-button-open,
.emojionearea-button-close {
  display: none !important;
}

.emojionearea-picker {
  border: 1px solid #d0d0d0 !important;
  border-radius: 4px !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18) !important;
}

.editor .tabbutton .fa-magnifying-glass,
.editor .mobileditorevent .fa-gear {
  color: #555 !important;
  background: transparent !important;
  font-size: 20px !important;
}

.msg .kanal .mesaj,
.msg .kanal .notice,
.msg .kanal .action,
.msg .status,
.msg .topicmsg,
.msg .topicupdate,
.msg .mode,
.msg .newnick,
.msg .seslenme,
.msg .kick {
  font-size: inherit !important;
}

.jconfirm .jconfirm-bg {
  background: rgba(39, 42, 57, .38) !important;
}

.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
  width: min(370px, calc(100vw - 32px)) !important;
  padding: 0 !important;
  overflow: hidden;
  color: #272a39 !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 4px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22) !important;
  transform: none !important;
}

.jconfirm .jconfirm-box-container,
.jconfirm .jconfirm-box-container.jconfirm-no-transition {
  flex: 0 0 auto !important;
  width: min(370px, calc(100vw - 32px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.jconfirm .jc-bs3-row {
  justify-content: center !important;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
  display: flex !important;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 18px 42px 14px !important;
  border-bottom: 1px solid #f1f1f1;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center;
}

.jconfirm .jconfirm-box .jconfirm-title i {
  color: #4a97b4;
}

.jconfirm .jconfirm-box .jconfirm-closeIcon {
  top: 15px !important;
  right: 15px !important;
  color: #777 !important;
  font-size: 24px !important;
  line-height: 24px !important;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin: 0 !important;
  padding: 16px 24px 4px !important;
  background: #f5f5f6;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: visible !important;
}

.jconfirm-form .form-group {
  margin: 0 !important;
}

.jconfirm-form p,
.jconfirm .jconfirm-content p,
.jconfirm .jconfirm-content .text {
  margin: 8px 0 !important;
  color: #272a39;
  font-size: 15px;
  line-height: 1.4;
}

.jconfirm-form input {
  display: block;
  width: 100% !important;
  height: 51px;
  margin: 0 0 10px;
  padding: 0 20px !important;
  color: #272a39;
  background: #fff;
  border: 1px solid #eee !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 600;
}

.jconfirm .jconfirm-box .jconfirm-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  padding: 12px 24px 16px !important;
  background: #f5f5f6;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
  height: 33px;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 33px !important;
  text-transform: uppercase;
}

.jconfirm .jconfirm-box .jconfirm-buttons .btn-info,
.jconfirm .jconfirm-box .jconfirm-buttons .btn-blue {
  color: #fff !important;
  background: #22aeca !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons .btn-default {
  color: #fff !important;
  background: #272a39 !important;
}

@media screen and (max-width: 1044px) {
  body {
    font-size: 12px !important;
  }

  .header {
    height: 50px !important;
  }

  .header .mobilmenu div {
    font-size: 12px !important;
  }

  .pencereler {
    max-height: 94px !important;
  }

  .pencereler .kanallar {
    gap: 1px !important;
    max-height: 94px !important;
    padding: 4px !important;
  }

  .pencereler .kanallar .kanal,
  .pencereler .ozeller .ozel {
    min-height: 23px !important;
    padding: 2px 17px 1px 5px !important;
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .msg {
    bottom: 35px !important;
    height: auto !important;
    font-size: 12px !important;
  }

  .msg .kanal .mesaj,
  .msg .kanal .notice,
  .msg .kanal .action,
  .msg .status,
  .msg .topicmsg,
  .msg .topicupdate,
  .msg .mode,
  .msg .newnick,
  .msg .seslenme,
  .msg .kick {
    margin: 3px 0 !important;
    line-height: 1.36 !important;
  }

  .msg .topic {
    min-height: 28px !important;
    height: auto !important;
    padding: 4px 7px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .nickler ul .nick {
    min-height: 24px !important;
    padding: 3px 7px !important;
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .nickler ul .nick .arkaplan {
    width: 17px !important;
    height: 17px !important;
    font-size: 10px !important;
    line-height: 17px !important;
  }

  .editor,
  .editor .co-alt {
    height: 35px !important;
  }

  .editor .co-alt .co-auto:nth-child(1),
  .editor .co-alt .co-auto:nth-child(2) {
    height: 35px !important;
  }

  .editor .co-alt .co-auto:nth-child(1),
  .editor .co-alt .co-auto:nth-child(2) {
    width: 12% !important;
  }

  .editor .co-alt .co-auto:nth-child(3) {
    width: 59% !important;
    padding: 2px !important;
  }

  .editor .co-alt .co-auto:nth-child(4) {
    width: 17% !important;
    padding: 5px !important;
  }

  .emojionearea.emojionearea-inline,
  .editor #inputmsg {
    height: 31px !important;
  }

  .emojionearea.emojionearea-inline > .emojionearea-editor {
    height: 31px !important;
    min-height: 31px !important;
    padding: 5px 33px 5px 6px !important;
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .emojionearea.emojionearea-inline > .emojionearea-button {
    top: 3px !important;
    right: 4px !important;
    width: 25px !important;
    height: 25px !important;
  }

  .emojionearea.emojionearea-inline > .emojionearea-button::before {
    width: 25px;
    height: 25px;
    font-size: 19px;
    line-height: 24px;
  }

  .jconfirm.jconfirm-white .jconfirm-box,
  .jconfirm.jconfirm-light .jconfirm-box {
    width: min(370px, calc(100vw - 24px)) !important;
  }

  .jconfirm .jconfirm-box div.jconfirm-title-c {
    min-height: 58px;
    font-size: 20px !important;
  }
}

/* Night mode and mobile overlay fixes */
body.gece {
  color: #f3f5f9;
  background: #333646 !important;
}

body.gece .header,
body.gece .header .mobilmenu,
body.gece .header .mobilmenu div,
body.gece .pencereler,
body.gece .nickler,
body.gece .msg,
body.gece .editor,
body.gece .editor .co-ust,
body.gece .editor .co-alt {
  color: #f3f5f9 !important;
  background: #333646 !important;
}

body.gece .msg::before,
body.gece .msg .topic,
body.gece .nickler .nicktara,
body.gece .pencereler .kanallar .kanal,
body.gece .pencereler .ozeller .ozel,
body.gece .emojionearea.emojionearea-inline,
body.gece .editor #inputmsg {
  color: #f3f5f9 !important;
  background: #4b4e5d !important;
  border-color: #5d6170 !important;
}

body.gece .pencereler .kanallar .kactive,
body.gece .pencereler .ozeller .oactive {
  color: #fff !important;
  background: #08080a !important;
}

body.gece .nickler ul,
body.gece .nickler .nactive {
  color: #f3f5f9 !important;
  background: #333646 !important;
}

body.gece .nickler ul .nick {
  border-bottom-color: #464958 !important;
}

body.gece .nickler ul .nick:hover,
body.gece .nickler ul .nickselected {
  color: #fff !important;
  background: #4b4e5d !important;
}

body.gece .msg .topic *,
body.gece .msg .topic span,
body.gece .msg .topicmsg,
body.gece .msg .topicupdate,
body.gece .msg .mode,
body.gece .msg .newnick,
body.gece .msg .seslenme,
body.gece .msg .kick,
body.gece .msg .status,
body.gece .msg .notice {
  color: #f3f5f9 !important;
  background: transparent !important;
}

body.gece .msg .msglogo {
  opacity: .16;
  filter: grayscale(1) brightness(1.5);
}

body.gece .editor .kalinyazi,
body.gece .editor .yanyazi,
body.gece .editor .altyazi,
body.gece .editor .renkler,
body.gece .editor .temizle,
body.gece .editor .mirc,
body.gece .editor .mirc a,
body.gece .editor .yazibuyut,
body.gece .editor .yazikucult,
body.gece .editor .radyo,
body.gece .editor .tamekran,
body.gece .sagbar .okapatbutton,
body.gece .editor .tabbutton .fa-magnifying-glass,
body.gece .editor .mobileditorevent .fa-gear {
  color: #f3f5f9 !important;
  background: transparent !important;
  border-color: #555969 !important;
}

body.gece .emojionearea.emojionearea-inline > .emojionearea-editor {
  color: #f3f5f9 !important;
  background: transparent !important;
}

body.gece .emojionearea.emojionearea-inline > .emojionearea-editor:empty::before {
  color: #b8bdcc !important;
}

body.gece .jconfirm.jconfirm-white .jconfirm-box,
body.gece .jconfirm.jconfirm-light .jconfirm-box {
  color: #f3f5f9 !important;
  background: #333646 !important;
}

body.gece .jconfirm .jconfirm-box div.jconfirm-content-pane,
body.gece .jconfirm .jconfirm-box .jconfirm-buttons {
  background: #4b4e5d !important;
}

body.gece .jconfirm-form input {
  color: #f3f5f9 !important;
  background: #333646 !important;
  border-color: #606474 !important;
}

@media screen and (max-width: 1044px) {
  .pencereler .ozeller {
    display: none;
    position: fixed !important;
    top: 50px !important;
    right: 0 !important;
    bottom: 35px !important;
    left: auto !important;
    z-index: 18 !important;
    width: 48% !important;
    min-width: 174px;
    max-width: 220px;
    height: auto !important;
    padding: 4px 4px 52px !important;
    overflow-x: hidden;
    overflow-y: auto;
    background: #eaeaec !important;
    border-left: 1px solid #cececf;
  }

  body.qz-mobile-channels-open .pencereler .ozeller {
    top: 129px !important;
  }

  body.qz-mobile-private-list-open .pencereler .ozeller {
    pointer-events: auto;
  }

  body.qz-mobile-private-list-open .msg {
    width: calc(100vw - min(48vw, 220px)) !important;
    right: auto !important;
  }

  body.qz-mobile-private-list-open .nickler {
    display: none !important;
  }

  .pencereler .ozeller .mobilkapat {
    position: absolute;
    right: 6px;
    bottom: 7px;
    left: 6px;
    display: block !important;
    height: 40px;
  }

  .pencereler .ozeller .mobilkapat .ozellerikapat {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #55585f;
    border: 1px solid #272a39;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .pencereler .ozeller .ozel {
    display: flex !important;
    width: 100% !important;
    min-height: 31px !important;
    margin: 0 0 4px !important;
    padding: 4px 22px 4px 8px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    color: #272a39 !important;
  }

  .pencereler .ozeller .oactive {
    color: #fff !important;
    background: #08080a !important;
  }

  .pencereler .ozeller .ozel .kapat {
    top: 6px !important;
    right: 7px !important;
  }

  .editor .renklist {
    position: fixed !important;
    right: 8px !important;
    bottom: 42px !important;
    left: 8px !important;
    z-index: 42 !important;
    width: auto !important;
    max-height: 118px;
    margin: 0 !important;
    padding: 10px !important;
    overflow: auto;
    flex-wrap: wrap;
    gap: 7px;
    background: #272a39 !important;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  }

  .editor .renklist[style*="display: block"],
  .editor .renklist[style*="display:block"] {
    display: flex !important;
  }

  .editor .renklist li {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 2px solid rgba(255, 255, 255, .65) !important;
    border-radius: 4px;
    flex: 0 0 28px;
  }

  .editor .mobileditor {
    right: 8px !important;
    bottom: 42px !important;
    left: 8px !important;
    z-index: 41 !important;
  }

  body.qz-mobile-tools-open .msg,
  body.qz-mobile-tools-open .nickler,
  body.qz-mobile-tools-open .pencereler {
    pointer-events: none;
  }

  body.gece .pencereler .ozeller {
    background: #333646 !important;
    border-left-color: #555969;
  }

  body.gece .pencereler .ozeller .ozel {
    color: #f3f5f9 !important;
    background: #4b4e5d !important;
    border-color: #606474 !important;
  }

  body.gece .pencereler .ozeller .oactive {
    color: #fff !important;
    background: #08080a !important;
  }

  body.gece .pencereler .ozeller .mobilkapat .ozellerikapat,
  body.gece .editor .renklist,
  body.gece .editor .mobileditor {
    color: #f3f5f9 !important;
    background: #272a39 !important;
    border-color: #555969 !important;
  }
}

/* Final mobile overlay correction */
.pencereler .kanallar .kanal:not(.kactive),
.pencereler .ozeller .ozel:not(.oactive) {
  color: #767b87 !important;
}

.pencereler .kanallar .kanal.yazivar:not(.kactive) {
  color: #2174ba !important;
  background: #eef8ff !important;
  box-shadow: inset 3px 0 #4aa3d8, 1px 1px 1px rgba(0, 0, 0, .08) !important;
}

.pencereler .ozeller .ozel .yanson {
  color: #fff !important;
  background: #ef6b6b !important;
  border-radius: 8px !important;
}

body.gece .pencereler .kanallar .kanal:not(.kactive),
body.gece .pencereler .ozeller .ozel:not(.oactive) {
  color: #c8cedb !important;
  background: #4b4e5d !important;
}

body.gece .pencereler .kanallar .kanal.yazivar:not(.kactive) {
  color: #8bd2ff !important;
  background: #39465a !important;
  box-shadow: inset 3px 0 #5ab5e8 !important;
}

@media screen and (max-width: 1044px) {
  .header .mobilmenu {
    height: 50px !important;
    background: #272a39 !important;
    overflow: hidden !important;
  }

  .header .mobilmenu div {
    min-width: 0 !important;
    height: 50px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border-right: 1px solid rgba(255, 255, 255, .08) !important;
  }

  .header .mobilmenu .mobilradyo {
    flex: 0 0 48px !important;
    width: 48px !important;
    max-width: 48px !important;
    padding: 0 !important;
    color: #f0f7ff !important;
    background: #272a39 !important;
  }

  .header .mobilmenu .mobilradyo.mobilractive {
    color: #f0f7ff !important;
    background: #272a39 !important;
  }

  .header .mobilmenu .mobilradyo .radyo {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .header .mobilmenu .mobilradyo .radyo::after {
    content: "\00C7 al\0131 yor..";
    margin-top: 3px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
  }

  .header .mobilmenu .mobilradyo .radyodurum {
    display: none !important;
  }

  .header .mobilmenu .mobilkanallar {
    flex: 0 0 121px !important;
    width: 121px !important;
    justify-content: space-between !important;
    padding: 0 8px 0 13px !important;
    color: #171927 !important;
    background: #f7f7f8 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }

  .header .mobilmenu .mobilkanallar .okanallar {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
  }

  .header .mobilmenu .mobilkanallar .okanallar i {
    display: inline-flex !important;
    width: 22px !important;
    height: 22px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    color: #f0f7ff !important;
    background: #272a39 !important;
    border-radius: 1px !important;
    font-size: 12px !important;
  }

  .header .mobilmenu .mobilozel {
    flex: 0 0 43px !important;
    width: 43px !important;
    color: #8d92a3 !important;
    background: #272a39 !important;
    font-size: 24px !important;
  }

  .header .mobilmenu .mobilozel .okapatbutton {
    color: #8d92a3 !important;
  }

  .header .mobilmenu .mobilmesaj {
    flex: 1 1 auto !important;
    width: auto !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    padding: 0 9px !important;
    color: #fff !important;
    background: #272a39 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  .header .mobilmenu .mobilmesaj i {
    color: #fff !important;
    font-size: 13px !important;
  }

  .header .mobilmenu .mobilmesaj .ozelmesajlar {
    font-size: 0 !important;
  }

  .header .mobilmenu .mobilmesaj .ozelmesajlar::before {
    content: "\00d6zel Mesajlar";
    font-size: 12px !important;
  }

  .header .mobilmenu .mobilmesaj.mobilactive {
    color: #fff !important;
    background: #272a39 !important;
  }

  .header .mobilmenu .mobilbars {
    flex: 0 0 44px !important;
    width: 44px !important;
    color: #9da2b1 !important;
    background: #272a39 !important;
    border-right: 0 !important;
    font-size: 20px !important;
  }

  .pencereler .kanallar {
    flex-wrap: wrap !important;
    height: auto !important;
    max-height: 94px !important;
    padding: 3px 4px !important;
    gap: 2px !important;
    align-content: flex-start !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-width: none;
  }

  .pencereler .kanallar::-webkit-scrollbar {
    display: none;
  }

  .pencereler .kanallar .kanal {
    flex: 0 0 auto !important;
    height: 17px !important;
    min-height: 15px !important;
    max-width: 116px !important;
    margin: 0 !important;
    padding: 1px 15px 1px 5px !important;
    border-radius: 0 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
  }

  .pencereler .kanallar .kanal .kanalname {
    width: calc(100% - 0px);
    margin-right: 5px;
    padding: 0;
    font-size: 11px;
  }

  .pencereler .kanallar .kanal .kapat {
    top: -2px !important;
    right: 0 !important;
    font-size: 11px !important;
  }

  body.qz-mobile-channels-open .msg,
  body.qz-mobile-channels-open .nickler {
    top: calc(50px + var(--qz-mobile-channels-height, 56px)) !important;
  }

  body:not(.qz-mobile-channels-open) .msg,
  body:not(.qz-mobile-channels-open) .nickler {
    top: 50px !important;
  }

  body.qz-mobile-channels-open .pencereler .ozeller,
  body.qz-mobile-channels-open.qz-private-active .msg .kullanicimenu {
    top: calc(50px + var(--qz-mobile-channels-height, 56px)) !important;
  }

  body.qz-mobile-private-list-open .msg {
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
  }

  body.qz-mobile-private-list-open .pencereler .ozeller {
    width: 48vw !important;
    min-width: 176px !important;
    max-width: 220px !important;
    box-shadow: -12px 0 24px rgba(39, 42, 57, .16) !important;
  }

  body.qz-mobile-private-list-open .nickler {
    display: none !important;
  }

  body.qz-private-active .msg .kullanicimenu {
    right: 0 !important;
    left: 0 !important;
    z-index: 16 !important;
  }

  body.qz-private-active .msg {
    padding-top: 42px !important;
  }

  .msg {
    padding-bottom: 4px !important;
  }

  .msg .kanal {
    padding-bottom: 0 !important;
  }

  body.qz-mobile-nick-collapsed .msg {
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
  }

  body.qz-mobile-nick-collapsed .nickler {
    display: block !important;
    width: 0 !important;
    min-width: 0 !important;
    right: 0 !important;
    overflow: visible !important;
    border-left: 0 !important;
  }

  body.qz-mobile-nick-collapsed .nickler .nicktara,
  body.qz-mobile-nick-collapsed .nickler ul,
  body.qz-mobile-nick-collapsed .nickler .mobilkanalinc {
    display: none !important;
  }

  body.qz-mobile-nick-collapsed .nickler .kenarakaydir {
    position: fixed !important;
    top: 50% !important;
    right: 0 !important;
    z-index: 25 !important;
    display: flex !important;
    width: 62px !important;
    height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    background: #4aa3d8 !important;
    border-radius: 5px 0 0 5px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
  }
}
