@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
-webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  display: flex;
  background-color: #444;
  overflow-y: scroll;
  cursor: default;
  background-image: url('../images/bgs.jpg?r=1v');
  background-image: -webkit-image-set(
    url('../images/bgs.webp?r=1v') type('image/webp'),
    url('../images/bgs.jpg?r=1v') type('image/jpeg')
  );
  background-image: image-set(
    url('../images/bgs.webp?r=1v') type('image/webp'),
    url('../images/bgs.jpg?r=1v') type('image/jpeg')
  );
}



*::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #000;
  cursor: pointer;
}
*::-webkit-scrollbar {
	width: 10px;
	background-color: var(--mcolor);
	cursor:pointer;
}
*::-webkit-scrollbar-thumb {
	background-color: var(--mcolor);
	border: 1px solid var(--mcolor);
  cursor: pointer;
}
*::-webkit-scrollbar:hover {
  cursor: pointer;
  filter:brightness(120%);
}


.login-box {
  display: flex;
  margin: 0 auto;
  position: relative;
}
/* @keyframes getlogin {
  0% {
    margin-top: 0px;
    opacity:0;
  }
  100% {
    margin-top:150px;
    opacity:1;
  }
} */
.login-content {
  width: 450px;
  margin: 0 auto;
  background: rgba(0,0,0,.6);
  margin-top:100px;
  padding: 25px 50px;
  border:1px solid rgba(255,255,255,.2);
  box-shadow: 0px 0px 15px rgba(0,0,0,.2), 0px -4px 10px rgba(0,0,0,.2);
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  position: relative;
  animation: getlogin 1000ms ease-out;

}
.login-logo {
  font-family: 'Poppins', sans-serif;
  font-size:54px;
  font-weight: bold;
  color:#FFF;
  letter-spacing: -2px;
  position: absolute;
  top:-60px;
  z-index: -1;
}
.login-form {
  display: flex;
  flex-direction: column;
}

.login-input {
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
  width: 100%;
}
.login-input span:nth-child(1) {
  color:#FFF;
  font-size:13px;
  padding-bottom: 10px;
}
.login-input span:nth-child(2) {
  position: relative;
}
.login-input span:nth-child(2) i {
  position: absolute;
  color:#999;
  top:1px;
  left:0px;
  bottom:1px;
  width: 40px;
  border-right: 1px solid #DDD;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms all;
}

.login-input span:nth-child(2):focus-within i {
  color:#BC2121;

}

.linput {
  width: 100%;
  padding: 5px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  font-weight: bold;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid #999;
  border-radius: 5px;
  padding-left: 50px;
}

.login-button {
  width: 100%;
  margin-top:10px;
}
.login-button button {
  width: 100%;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  background-color: #BC2121;
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
}
.login-button button:hover {
  filter:brightness(110%);
}

.login-button button.disabled {
  background-color: #444;
  color:#666;
}

.login-desc {
  color:#999;
  font-size:13px;
  padding: 10px 0px 10px;
}

.login-warn {
  padding: 15px 0px 0px;
  font-size:11px;
  color:#999;
}
#login {
  margin: 0 auto;
}



.container {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  min-width: 1320px;
  max-width: 1600px;
  padding: 15px;
}
.header {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 1390px;
}
.header-up {
  background-color: #fff;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 1px solid #e2e2e2;
  box-shadow: 0px -5px 20px rgba(0,0,0,.4);
  box-sizing: border-box;
  padding-right: 16px;
  position: relative;
  /* overflow hidden dropdown'ı kesiyordu; tint için radius yeterli */
  overflow: visible;
  z-index: 30;
}
/* marka rengine çok hafif tint */
.header-up::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mcolor);
  opacity: 0.045;
  pointer-events: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  z-index: 0;
}
.header-up > * {
  position: relative;
  z-index: 1;
}

.logo {
  font-size:34px;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  padding: 0px 30px;
  height: 100%;
  flex-direction: column;
  line-height: 25px;
  justify-content: center;
  padding-top: 10px;
  text-shadow: 1px 1px 0px #FFF;
  flex-shrink: 0;
}
.logo a {
  color:inherit;
  text-decoration: none;
}
.logo span {
  font-size:9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-shadow: none;
  padding-left: 3px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

}

.userboxes {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left:10px;
  flex: 1 1 auto;
  min-width: 0;
}

.userbox {
  height: 70%;
  padding: 0px 20px;
  background-color: #FFF;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 5px;
  position: relative;
  border-radius: 3px;
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
}
.userbox::before {
  display: none;
}

.userbox .title {
  font-size:13px;
  font-weight: 500;
}
.userbox .str {
  font-weight: 600;
  font-size:13px;
  color:var(--mcolor);
  margin-top:3px;
}

/* sağ: renk + sürüm (absolute yerine flex — üst üste binmez) */
.header-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 12px;
  padding-left: 12px;
}

.exit-link {
  background-color: var(--mcolor);
  color:#FFF;
  font-size:11px;
  font-weight: bold;
  text-decoration: none;
  padding: 2px 10px 3px;
  display: inline-block;
  transition: 100ms all;
  border-radius: 3px;
  margin-left:5px;
}

.exit-link:hover {
  background-color: #222;
}

.admin-link {
  background-color: var(--mcolor);
  color:#FFF;
  font-size:13px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 3px;
  transition: 300ms all;
  margin-left:10px;
  border-bottom: 2px solid rgba(0,0,0,.2);
  text-align: center;
  height: 39px;
}
.admin-link i.fad::after {
  color: #FFCC00;
  opacity: 1;
}
.admin-link.mobil-link {
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-link.mobil-link:hover {
  background: var(--mcolor);
}
.admin-link.mobil-link i {
  margin-right: 5px;
}
.admin-link:hover {
  background-color: #222;
}

.mobile-link {
  background-color: #FFCC00;
  color:#222;
  font-size:13px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 3px;
  transition: 300ms all;
  margin-left:15px;
  border-bottom: 2px solid rgba(0,0,0,.2);
}
.mobile-link:hover {
  background-color: #222;
}

.header-menu {
  display: flex;
  flex-wrap: nowrap;
  background-color: var(--mcolor);
  box-shadow: 0px -4px 0px rgba(0,0,0,.3) inset,0px -1px 0px rgba(255,255,255,.2) inset, 0px 3px 6px rgba(0,0,0,.2) inset;
  border-top: 2px solid rgba(0,0,0,.4);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.45) transparent;
  position: relative;
  z-index: 1;
}
.header-menu::-webkit-scrollbar {
  height: 6px;
}
.header-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.45);
  border-radius: 4px;
}
.header-menu::-webkit-scrollbar-track {
  background: transparent;
}
.header-menu a {
  display: flex;
  align-items: center;
  height: 51px;
  padding: 0px 22px 2px;
  color:#FFF;
  border-right: 1px solid rgba(0,0,0,.2);
  border-left: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  border-bottom: 3px solid rgba(0,0,0,.2);
  background-color: rgba(0,0,0,.1);
  box-shadow: 0px -2px 10px rgba(0,0,0,.2) inset, 0px 26px 0px rgba(255,255,255,.1) inset;
  transition: 100ms all;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  gap: 7px;
  font-size: 15px;
}

.header-menu a i {
  margin-right: 0;
  top:0;
  position: relative;
}

/* canlı menü nabız noktası */
.header-menu a .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, .7);
  flex-shrink: 0;
  animation: live-dot-pulse 1.6s ease-out infinite;
}
@keyframes live-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, .65);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.header-menu a:hover {
  background-color: #222;
  border-color:#111;
  box-shadow: 0px 0px 20px #000 inset, 0px -1px 0px rgba(255,255,255,.1) inset;
  border-bottom: 3px solid #000;
}

.header-menu a.selected {
  background-color: #222;
  border-color:#111;
  box-shadow: 0px 0px 20px #000 inset, 0px -1px 0px rgba(255,255,255,.1) inset;
  border-bottom: 3px solid #FFCC00;
}

/*
 * Lig TV menü vurgu — ronabet header-menu diline uyumlu
 * ─────────────────────────────────────────────────────
 * Bar: var(--mcolor) zemin
 * Item chrome: inset shadow + yan border (diğer .header-menu a ile aynı)
 * Seçili vurgu rengi: #FFCC00 (temadaki selected alt çizgi)
 * Fark: biraz daha koyu dolgu + sürekli altın alt çizgi + absolute YENİ badge
 * Renk değiştirince (--mcolor) bar rengi değişir; item chrome bozulmaz
 */
.header-menu a.miz {
  position: relative;
  overflow: visible;
  font-weight: 600;
  /* diğer item'larla aynı chrome, biraz daha koyu dolgu */
  background-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.25) inset, 0px 26px 0px rgba(255, 255, 255, 0.14) inset;
  /* selected ile aynı altın alt çizgi — "öne çıkan" sinyali */
  border-bottom: 3px solid #FFCC00;
}
.header-menu a.miz:hover {
  /* standart hover chrome, altın çizgi korunur */
  background-color: #222;
  border-color: #111;
  border-bottom: 3px solid #FFCC00;
  box-shadow: 0px 0px 20px #000 inset, 0px -1px 0px rgba(255, 255, 255, 0.1) inset;
}
.header-menu a.miz.selected {
  /* standart selected — zaten altın çizgili */
  background-color: #222;
  border-color: #111;
  border-bottom: 3px solid #FFCC00;
  box-shadow: 0px 0px 20px #000 inset, 0px -1px 0px rgba(255, 255, 255, 0.1) inset;
}
/* absolute badge — menü genişliğini bozmaz; live-dot gibi ek sinyal */
.header-menu a.miz .menu-new-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  padding: 0 5px;
  margin: 0;
  border-radius: 2px;
  background: #111;
  color: #FFCC00;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  border: 1px solid rgba(255, 204, 0, 0.4);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}




.content {
  display: flex;
  height: 100%;
  margin-top:15px;

}
.left {
  flex:1;
  max-width: 200px;
  min-width: 200px;
}
.center {
  flex:1;
  padding: 0px 15px;
  min-height: 100%;
}
.right {
  flex:1;
  width: 300px;
  max-width: 300px;
  min-width: 300px;
}

.box {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 5px 7px rgba(0,0,0,.2);
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 15px;
  border-bottom: 4px solid #111;
}
.box .box-title {
  font-size:14px;
  color:#f0f0f0;
  position: relative;
  padding: 10px 15px;
  font-weight: 500;
  box-shadow: 0px -10px 20px #000 inset;
  background: repeating-linear-gradient(45deg, #111, #111 5px, #191919 5px, #191919 10px);
  border-bottom: 2px solid #000;
}
.box .box-title i {
  width: 20px;
  color:rgba(255,255,255,.5);
}
.box .box-content {
  background-color: #222;
  position: relative;
}
.box-links {
  display: flex;
  flex-direction: column;
}
.box-links a, .box-links div {
  display: flex;
  width: 100%;
  color:#FFF;
  padding: 7px 15px;
  font-size:14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.1);
  align-items: center;
  box-shadow: 0px -4px 10px rgba(0,0,0,.2) inset;
}
.box-links a.active {
	background-color: var(--mcolor);
}
.box-links a i, .box-links div i {
  width: 22px;
  color:var(--color);
}

.box-links div select {
	width: 100%;
	height: 30px;
	  background-color: #222;
	color: #fff;
	padding: 3px 5px;
	    -webkit-appearance: auto;
    -moz-appearance: auto;
	border: 1px solid #333;
	border-radius: 3px;
	margin: 0;
}
.box-links div select:hover {
	background-color: #262626;
}

.box-links a:hover {
  color:var(--color);
  background-color: rgba(0,0,0,.4);
}

.crown {
  padding: 15px;
  text-align: center;
  color:#ffcc00;
}


/* ===== Dialog sistemi (errorbox / okbox / confirmbox) ===== */
body.zb-dialog-open {
  overflow: hidden !important;
}
.errorscreen,
.zb-dialog-screen {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  animation: zb-dialog-fade-in 0.16s ease-out;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.zb-dialog-screen.zb-dialog-out {
  animation: zb-dialog-fade-out 0.14s ease-in forwards;
}
.errorbox,
.zb-dialog {
  width: 100%;
  max-width: 360px;
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
  transform: none;
  background-color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: zb-dialog-pop 0.18s cubic-bezier(0.34, 1.3, 0.64, 1);
  overflow: hidden;
}
.zb-dialog-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 22px;
  color: #fff;
  background: #BC2121;
  flex-shrink: 0;
}
.zb-dialog-icon i,
.zb-dialog-icon .fa,
.zb-dialog-icon .fas {
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}
.zb-dialog-success .zb-dialog-icon,
.okbox .zb-dialog-icon {
  background: #80cb15;
}
.zb-dialog-confirm .zb-dialog-icon {
  background: #f0a500;
  color: #fff;
}
.zb-dialog-info .zb-dialog-icon {
  background: #3b82f6;
}
.zb-dialog-warning .zb-dialog-icon {
  background: #f59e0b;
}
.zb-dialog-notice .zb-dialog-icon {
  background: #6366f1;
}
.zb-dialog-btn-notice {
  background: #6366f1;
}
.zb-dialog-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  padding: 12px 18px 0;
}
.zb-dialog-msg {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  padding: 10px 18px 16px;
  line-height: 1.45;
  word-break: break-word;
}
.errorbox > div:first-child:not(.zb-dialog-icon):not(.zb-dialog-title):not(.zb-dialog-msg):not(.zb-dialog-actions) {
  font-size: 13px;
  font-weight: 600;
  padding: 15px;
}
.zb-dialog-actions {
  width: 100%;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.zb-dialog-actions-split .zb-dialog-btn {
  flex: 1;
}
.zb-dialog-btn {
  flex: 1;
  appearance: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 10px;
  color: #fff;
  background: #BC2121;
  text-align: center;
  text-decoration: none;
  outline: none;
  font-family: inherit;
  transition: filter 0.12s ease, opacity 0.12s ease;
}
.zb-dialog-btn:hover {
  filter: brightness(1.05);
}
.zb-dialog-btn:active {
  filter: brightness(0.95);
}
.zb-dialog-btn-danger {
  background: #BC2121;
}
.zb-dialog-btn-success {
  background: #80cb15;
}
.zb-dialog-btn-primary {
  background: #3b82f6;
}
.zb-dialog-btn-warning {
  background: #f59e0b;
}
.zb-dialog-cancel {
  background: #eef0f3;
  color: #333;
  /* onay solda, iptal sağda — ayırıcı sol kenarda */
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: none;
}
.errorbox div a {
  display: block;
  font-size: 13px;
  background-color: #BC2121;
  width: 100%;
  padding: 12px 8px;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  outline: none;
  box-sizing: border-box;
}
.okbox div a,
.okbox .zb-dialog-ok {
  background-color: #80cb15;
}
@keyframes zb-dialog-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes zb-dialog-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes zb-dialog-pop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes showerror {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.country-links {
  display: flex;
  flex-direction: column;
}

.country-search-wrap {
  padding: 8px 10px !important;
}

.country-search-input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  outline: none;
  box-sizing: border-box;
}

.country-search-input:focus {
  border-color: var(--mcolor);
}

.country-search-input::placeholder {
  color: #777;
}

.country-empty,
.country-empty-filter {
  padding: 18px 12px;
  text-align: center;
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}

.country-empty i {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  opacity: 0.6;
}

.country-links a {
  display: inherit;
  display: flex;
  font-size:13px;
  color:#FFF;
  padding: 3px 10px;
  border-bottom: 1px solid rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.1);
  align-items: center;
  box-shadow: 0px -4px 10px rgba(0,0,0,.2) inset;
  text-decoration: none;
  position: relative;
}

.country-links a:hover {
  color:var(--color);
  background-color: rgba(0,0,0,.4);
}

.country-links a.selected, .country-links a.selected:hover {
  background-color: #ffcc00;
  color:#222;
  font-weight: 600;
}

.country-links a i {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 5px;
}

.country-links a span {
  position: absolute;
  right:5px;
  top:5px;
  font-size:12px;
  color:#777;
}

.login-line {
  position: absolute;
  right:0px;
  height: 5px;
  background-image: linear-gradient(90deg, #BC2121 10%, transparent);
  left:20px;
  top:-1px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0,0,0,.4), 0px -3px 6px rgba(0,0,0,.4);
}

.sport-select-tab {
  display: flex;
  padding-left: 20px;
  position: relative;
}
.sport-select-tab::before {
  height: 3px;
  right:0px;
  left:0px;
  bottom:0px;
  background-image: linear-gradient(90deg, var(--mcolor) 20%, transparent);
  width: 100%;
  position: absolute;
  content:'';
  border-radius: 5px;
}
.sport-select-tab a {
  display: inline-block;
  padding: 15px 30px;
  color:#FFF;
  /* font-family: 'Poppins', sans-serif; */
  font-size:16px;
  font-weight: 400;
  box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset, 0px 30px 0px rgba(255,255,255,.03) inset;
  background-color: #333;
  text-decoration: none;
  border-left: 1px solid rgba(0,0,0,.4);
  border-right: 1px solid rgba(255,255,255,.05);
  transition: 250ms all;
}

.sport-select-tab a:first-child {
  border-top-left-radius: 15px;
}
.sport-select-tab a:last-child {
  border-top-right-radius: 15px;
}

.sport-select-tab a.selected {
  background-color: var(--mcolor);
  border-color:rgba(0,0,0,.2);
  box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset, 0px 30px 0px rgba(255,255,255,.1) inset;
}

.center-content {
  display: flex;
  border-radius: none;
  background-color: rgba(0,0,0,.5);
  border-top-left-radius: 0px;
  margin-bottom: 0px;
}

.footer {
  display: flex;
  width: 100%;
  background-color: #111;
  border-radius: 20px;
  border-top: 4px solid #000;
  margin-top:15px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10px;
}
.footer-title {
  padding: 10px;
  color:#666;
  font-size:11px;
  margin-top:-20px;
}
.fixture-search {
  background-color: #222;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

input {
  font-family: 'Poppins', sans-serif;
}
.fixture-search span i {
  position: absolute;
  color:#999;
  top:1px;
  left:0px;
  bottom:1px;
  width: 40px;
  border-right: 1px solid #DDD;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms all;
}

.fixture-search .fsearch {
  flex:1;
  display: flex;
  position: relative;
}

.fixture-search .fsearch:focus-within i {
  color:var(--mcolor);
}

.fixture-search .fsearch input {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

/* arama kutusu temizleme (çarpı) butonu */
.fixture-search .fsearch .arama-temizle {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  color: #999;
  text-decoration: none;
  z-index: 2;
  cursor: pointer;
}

.fixture-search .fsearch .arama-temizle i {
  position: static;
  width: auto;
  border-right: none;
  color: inherit;
}

.fixture-search .fsearch .arama-temizle:hover {
  color: var(--mcolor);
}


.search-area {
  padding: 5px;
  background-color: #222;
  width: 100%;
  border-bottom: 1px solid #333;
}

.fixture-links {
  display: flex;
  align-items: center;
  padding-left: 5px;
  justify-content: space-between;
}
.fixture_search {
  display: flex;
}
.fixture-times {
  display: flex;
  padding:0px;
}
.fixture-ordering {
  width: 300px;
}
.fixture-links a {
  display: inline-block;
  background-color: #333;
  color:#FFF;
  flex:1;
  justify-content: center;
  font-size:13px;
  text-decoration: none;
  padding: 0px 25px 2px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(0,0,0,.4);
  border-right: 1px solid rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(0,0,0,.4);
  height: 40px;
  border-radius: unset;
	white-space: nowrap;
}
.fixture-search .fixture-links a:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0px;
  border-right: 0px;
}
.fixture-ordering a:last-child {
      border-bottom-right-radius: 10px;
    border-top-right-radius: 0px !important;
}
.fixture-links a:first-child {
  border-left: 0px;
}

.fixture-links a:hover {
  filter:brightness(110%);
}

.fixture-links a.selected {
  background-color: var(--mcolor);
  box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset, 0px 22px 0px rgba(255,255,255,.1) inset, 0px 0px 10px var(--mcolor);
  border-color:rgba(0,0,0,.2);
}
.golge {
  position: absolute;
  height: 5px;
  bottom:-60px;
  background-image: linear-gradient(90deg, transparent, #000, transparent);
  left:0px;
  width: 330px;
  left:50%;
  margin-left:-165px;
  filter:blur(5px);
}

.locker {
  position: fixed;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  z-index: 5000;
  background: rgba(0,0,0,.1);
  display: none;
}
.locker::before {
  position: absolute;
  content:'';
  width: 50px;
  height: 50px;
  border:5px solid rgba(255,255,255,.1);
  border-right-color:var(--mcolor);
  left:50%;
  top:50%;
  margin-top:-50px;
  margin-left:-25px;
  border-radius: 50px;
  animation: locker 500ms;
  animation-iteration-count: infinite;
}

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


.inloader {
  width: 100%;
  position: relative;
  height: 100px;
}

.inloader::before {
  position: absolute;
  content:'';
  width: 50px;
  height: 50px;
  border:5px solid rgba(255,255,255,.1);
  border-right-color:var(--mcolor);
  left:50%;
  margin-left:-25px;
  border-radius: 50px;
  animation: locker 500ms;
  animation-iteration-count: infinite;
  margin-top:15px;
}


.inloader_mini {
  width: 100%;
  position: relative;
  height: 30px;
}

.inloader_mini::before {
  position: absolute;
  content:'';
  width: 20px;
  height: 20px;
  border:3px solid rgba(0,0,0,.1);
  border-right-color:var(--mcolor);
  border-radius: 30px;
  animation: locker 500ms;
  animation-iteration-count: infinite;
}


.bos {
  padding: 25px;
  color:#888;
}

/* bülten skeleton yükleme */
.fixture-skeleton {
  padding: 8px 0 12px;
}
.fixture-skeleton-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.25);
}
.fixture-skeleton-date {
  width: 70px;
  height: 14px;
  flex-shrink: 0;
}
.fixture-skeleton-teams {
  flex: 1;
  height: 14px;
  min-width: 0;
}
.fixture-skeleton-odds {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
}
.fixture-skeleton-odds .skel {
  width: 58px;
  height: 28px;
  border-radius: 3px;
}
.fixture-skeleton .skel {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: fixture-skel-shimmer 1.2s ease-in-out infinite;
}
@keyframes fixture-skel-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* şifre değiştir sayfası */
.password-form-wrap {
  max-width: 480px;
  padding: 25px 30px 35px;
}
.password-form-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.password-form-wrap .forms {
  margin-bottom: 14px;
}
.password-form-wrap .form-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.password-form-wrap .input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}
.password-form-wrap .fbutton {
  margin-top: 10px;
  background: var(--mcolor);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.password-form-wrap .fbutton:hover {
  background: #222;
}

.fixture {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.fixture col.fixture-col-date {
  width: 78px;
}
/* takım adı + oranlar aynı hücre: isim esner, oranlar içerik kadar yer kaplar */
.fixture col.fixture-col-main {
  width: auto;
}
.fixture col.fixture-col-morebet {
  width: 32px;
}


.fixture tr.fixture-league td::before {
  content:'';
  position: absolute;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--mcolor) 10%, transparent);
  bottom:-1px;
  z-index: 1;
}
.fixture tr.fixture-league td {
  background-color: #111;
  color:#888;
  font-size:13px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.fixture tr.fixture-league td b {
  color:#FFF;
}
.fixture tr td {
  height: 30px;
  vertical-align: middle;
  position: relative;
}
/* yalnızca bayrak ikonları — hide butonundaki fa ikonuna bulaşmasın */
.fixture tr.fixture-league td .fixture-league-label > i.cflag,
.fixture tr.fixture-league td .fixture-league-label > i {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  bottom: 0;
  margin-left: 10px;
  margin-right: 0;
  flex-shrink: 0;
}
.fixture tr.fixture-league td .fixture-league-label > i img {
  border-radius: 24px;
  vertical-align: middle;
}

.fixture tr.fixture-match:hover .fixture-teams-name {
  color:#ffcc00;
  text-decoration: underline;
}
.fixture tr.fixture-match td {
  background-color: #292929;
  font-size:12px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(0,0,0,.2);
  /* yan yana isim+oran; <font> varsa solda 2 satır sığacak kadar */
  height: 34px;
}

/* sabit kenar sütunlar; takım adı esner, oranlar kompakt kalır */
.fixture tr.fixture-match td.fixture-date {
  color:rgba(255,255,255,.5);
  width: 78px;
  text-align: center;
  white-space: nowrap;
  padding: 0 4px;
}

.fixture tr.fixture-match td.fixture-main {
  padding: 3px 4px 3px 4px;
  overflow: hidden;
  vertical-align: middle;
}
.fixture-main-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.fixture-teams-name {
  color:#ffcc00;
  font-size:13px;
  font-weight: 400;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}

/* gizle butonu + oran kutuları — içerik kadar yer, takım adına boşluk bırakır */
.fixture-odds {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* bülten mbs rozeti — neronbet renkleri */
.mbs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  margin: 0;
  box-shadow: 1px 1px 0 rgba(0,0,0,.3);
}
.mbs-badge.mbs_1 { background-color: #BC2121; }
.mbs-badge.mbs_2 { background-color: #d98a0e; }
.mbs-badge.mbs_3 { background-color: #6c972e; }
.mbs-badge.mbs_4 { background-color: #2078bc; }
.mbs-badge.mbs_5 { background-color: #7b3fa0; }

.fixture-odds .es-match-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #1a1a1a;
  color: #ccc;
  text-decoration: none;
  font-size: 11px;
  flex: 0 0 auto;
  margin: 0;
}
.fixture-odds .es-match-btn:hover {
  background: #111;
  color: #ffcc00;
}
.fixture tr.fixture-match td.fixture-morebet {
  width: 32px;
  text-align: center;
  vertical-align: middle;
  padding: 0 4px;
}

/* lig satırı: sol bilgi, sağda gizle butonu (dikey ortalı) */
.fixture-league-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 50px;
  box-sizing: border-box;
  padding: 0 10px 0 0;
}
.fixture-league-label {
  min-width: 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  white-space: nowrap;
}
/* ülke (b) ile lig adı arasında boşluk — flex text node boşluğunu yutuyordu */
.fixture-league-label > b {
  flex-shrink: 0;
  margin: 0;
}
.fixture-league-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #888;
}

/* admin gizle butonu — kırmızımsı, satır hover’da görünür */
.fixture-hide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #f0a0a0;
  background: rgba(188, 33, 33, .22);
  border: 1px solid rgba(188, 33, 33, .45);
  border-radius: 4px;
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: 120ms opacity, 120ms background-color, 120ms color, 120ms border-color;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  top: 0;
  bottom: auto;
  margin: 0;
  padding: 0;
}
.fixture-hide-btn > i {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  bottom: 0 !important;
  position: static !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.fixture tr.fixture-match:hover .fixture-hide-btn,
.fixture tr.fixture-league:hover .fixture-hide-btn {
  opacity: 1;
  pointer-events: auto;
}
.fixture-hide-btn:hover {
  color: #fff;
  background: rgba(188, 33, 33, .55);
  border-color: rgba(220, 60, 60, .85);
}
.fixture-hide-btn:active {
  box-shadow: 0 0 6px rgba(0,0,0,.45) inset;
  background: rgba(160, 20, 20, .7);
}
.fixture-hide-btn.busy {
  opacity: .45 !important;
  pointer-events: none;
}
.fixture-league .fixture-hide-btn {
  margin-left: 6px;
  align-self: center;
}

.market-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 2px solid #333;
}
.market-list a {
  flex:1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color:#FFF;
  height: 40px;
  font-size:13px;
  text-decoration: none;
  background-color: #222;
  border-bottom: 2px solid #111;
  border-right: 1px solid rgba(255,255,255,.05);
  border-left: 1px solid rgba(0,0,0,.2);
  padding-bottom: 2px;
}
.market-list a.selected {
  background-color: var(--mcolor);
  box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset, 0px 22px 0px rgba(255,255,255,.1) inset, 0px 0px 10px var(--mcolor);
  border-color:rgba(0,0,0,.5);
}
.market-list a:hover {
  filter:brightness(110%);
}

/* kompakt oran kutuları: isim solda, oran sağda; flex:1 yayılmasın */
.markets {
  display: flex;
  width: auto;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  margin-left: 0;
  gap: 5px;
  border-left: none;
  flex-shrink: 0;
}
.markets div {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 2px 4px 2px 6px;
  background-color: #2a2a2a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  height: auto;
  min-height: 28px;
  transition: 100ms background-color, 100ms box-shadow, 100ms border-color;
  position: relative;
  box-shadow: none;
  box-sizing: border-box;
}
.markets div span.market-title {
  color:#ffcc00;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}
/* alt başlıklı (İY, MS, handikap) kutular: solda 2 satır, sağda oran */
.markets div.sembollu,
.markets div:has(> .market-title font) {
  min-height: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.markets div.sembollu span.market-title,
.markets div:has(> .market-title font) span.market-title {
  gap: 0;
}
.markets div span.market-odd {
  color:#FFF;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: -0.02em;
  flex: 0 0 40px;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  margin-left: auto;
  padding: 3px 2px;
  background-color: rgba(0,0,0,.35);
  border-radius: 3px;
  box-sizing: border-box;
}

.markets div:hover {
  background-color: #343434;
  border-color: rgba(255,255,255,.16);
  cursor: pointer;
}


.markets div:active {
  box-shadow: 0px 0px 7px rgba(0,0,0,.4) inset;
}
.markets div.selected {
  background-color: rgba(255,204,0,.22);
  box-shadow: none;
  border-color: rgba(255,204,0,.55);
  color:#222 !important;
}
.markets div.selected span, .markets div.selected font {
  color:#FFF;
}
.markets div.selected span.market-odd {
  background-color: rgba(0,0,0,.4);
}

.markets div.disabled, .markets div.disabled:hover {
  background-color: #222;
  box-shadow: none;
  border-color: rgba(255,255,255,.04);
  cursor: no-drop;
}

.markets div.disabled span.market-odd {
  background: rgba(0,0,0,.2);
}

.markets div font {
  display: block;
  font-size: 8px;
  font-weight: 500;
  color:#999;
  line-height: 1.1;
  margin-top: 0;
}

.markets div.disabled span.market-title {
  color:#444;
}
.notfound {
  padding: 25px;
  text-align: center;
  color:#FFF;
  background: rgba(0,0,0,.2);
  line-height: 30px;
}

.notfound i {
  font-size:90px;
  color:#BC2121;
  margin-bottom:20px;
}

.morebet {
  background-color: #333;
  position: absolute;
  width: 100%;
  top:0px;
  bottom:0px;
  left:0px;
  right:0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 2px 1px rgba(0,0,0,.4) inset;
}

.morebet a {
  color:#ccc;
  font-size:18px;
}

.morebet:hover {
  background-color: #111;
}
.morebet:hover a {
  color:#ffcc00;
}

/* bülten satırı: + ikonu istatistik butonuyla aynı ölçü */
.fixture .morebet {
  position: static;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 3px;
  box-shadow: none;
}
.fixture .morebet a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  color: #ccc;
  text-decoration: none;
  border: 0;
  box-shadow: none;
}
.fixture .morebet a i {
  text-decoration: none;
  line-height: 1;
}
.fixture .morebet:hover {
  background: #111;
}
.fixture .morebet:hover a {
  color: #ffcc00;
}
.fixture .morebet.selected {
  background: rgba(255, 204, 0, .22);
  box-shadow: none;
  border-radius: 3px;
}
.fixture .morebet.selected a {
  color: #ffcc00 !important;
}

@media only screen and (max-width: 1439px) {
  .aftered {
    display: none !important;
  }
}


@media only screen and (max-width: 600px) {
  .login-content {
    width:95%;
  }
}

.makine-desc {
  font-size:13px;
  color:#CCC;
}
.makine-content {
  padding: 10px 15px;
}

.makine-selector {
  margin-top:10px;display: flex;
}

.makine-selector div {
  display: flex;
  flex-direction: column;

}


.makine-selector div span.makine-selector-title {
  font-size:14px;
  font-weight: bold;
  color:#ffcc00;
}

.makine-selector div span.makine-selector-odd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
}

.makine-selector div span.makine-selector-odd .odd {
  color:#ffcc00;
  flex:1;
  font-size:24px;
  margin-left:5px;
  font-weight: bold;
  letter-spacing: -1px;
}
.makine-selector div span.makine-selector-odd .rangem {
  flex:1;
}

.makine-selector div span.makine-selector-title span {
  display: inherit;
  font-size:10px;
  color:#888;
  font-weight: normal;
}
.box-title {
  position: relative;
}
.box-title .new {
  position: absolute;
  font-size:10px;
  background-color: #ffcc00;
  color:#222;
  font-weight: bold;
  right:10px;
  top:10px;
  padding: 2px 5px;
  border-radius: 3px;
}


input[type="range"] {
  -webkit-appearance: none;
  width: 180px;
  height: 7px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  background-size: 70% 100%;
  background-repeat: no-repeat;
  margin-left:-15px;
  margin-top:4px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--mcolor);
  cursor: pointer;
  box-shadow: 0 0 2px 0 #555;
}


.makine-button {
  margin-top:10px;
}
.makine-button button {
  width: 100%;
  padding: 5px;
  font-family: 'Poppins', sans-serif;
  font-size:12px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  background-color: var(--mcolor);
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
}

.makine-warn {
  padding: 10px;
  font-size:11px;
  color:#999;
}

.boskupon {
  padding: 15px 25px;
  color:#888;
  display: flex;
  flex-direction: column;
  font-size:12px;
}
.boskupon span:nth-child(1) {
  color:#ffcc00;
  font-size:18px;
}

.kuponbox {
  display: flex;
  flex-direction: column;
  border:1px solid #000;
  margin: 5px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 5px 10px rgba(0,0,0,.4);
}

.kupon-delete {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: #777;
  font-size: 16px;
  background: rgba(0,0,0,0.08);
}
.kupon-delete:hover {
  color: #BC2121;
  background: rgba(188,33,33,0.15);
  cursor: pointer;
}

.kupon-oran {
  position: absolute;
  bottom:15px;
  right:15px;
  font-weight: bold;
  font-size:16px;
}


.kupon-mbs {
  position: absolute;
  bottom:40px;
  right:15px;
  font-weight: bold;
  font-size:11px;
}
.kupon-mbs span {
  font-weight: normal;
}

.kupon-team-info {
  background-color: #f0f0f0;
  border-bottom: 2px solid #DDD;
  padding: 0;
  padding-left: 15px;
  font-size:13px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.kupon-team-info:hover {
  cursor: pointer;
  color:var(--mcolor);
}

.kupon-team-info img {
  margin-right: 5px;
}

.kupon-team-info .kupon-team-name {
  flex: 1;
  font-size: 13px;
  color: inherit;
}
.kupon-team-info span {
  display: inherit;
  font-size:11px;
  color:#666;
}

.kupon-odd-info {
  padding: 5px 15px 7px;
  font-size:13px;
}
.kupon-odd-info .kupon-odd-name {
  color:var(--mcolor);
  font-weight: 600;
}

.kupon-odd-info .kupon-odd-secim {
  color:#222;
  font-weight: 500;

}

.kupon-odd-date {
  color:#666;
  font-size:11px;
}

.morebet.selected {
  background-color: rgba(255,204,0,.3);
  box-shadow: inset 0 0 0px 1px #fc0, 0px 5px 10px rgba(255,255,255,.6) inset, 0px 2px 0px #FFF inset, 0px 15px 0px rgba(255,255,255,.05) inset;
  border-radius: 0px;
}
.morebet.selected a {
  color:#FFF !important;
}

.fixedk {
  position: fixed;
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  margin-bottom: 0px;
  bottom:10px;
  right:10px;
  overflow-y: auto;
  max-height: 90%;
  z-index: 10;
}

.kupon-alt-info {
  display: flex;
  flex-direction: column;
  background-color: #ddd;
  margin: 5px;
  border-radius: 10px;
  padding: 10px;
}

.clearkupon {
  margin: 0px 5px;
}

.clearkupon button {
  width: 100%;
  padding: 10px;
  font-family: Arial;
  font-weight: bold;
  font-size:12px;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 10px;
  background-color: var(--mcolor);
  color:#FFF;
  cursor: pointer;
  transition: 200ms all;
}

.clearkupon button:hover {
  background-color: #f0f0f0;
  color:var(--mcolor);
}


.fixmemarketlist {
  position: fixed;
  top:0px;
  z-index: 11;
  box-shadow: 0px 0px 20px #000;
}

.kupon-info {
  margin: 5px;
  border-radius: 10px;
  background-color: #222;
  flex-direction: column;
  /* padding: 4px; */
  overflow: hidden;
  border-left: 1px solid #393939;
}
.kupon-info .kinfo:first-child {
  border-top: none;
}
.kinfo {
  display: flex;
  position: relative;
}
.kinfo div {
  color:#FFF;
  padding: 8px;
  font-size:12px;
  position: relative;
  font-family: Arial;
  font-weight: bold;
  border-bottom: 1px solid #111;
  border-top: 1px solid #393939;
  width: 50%;
}

.kinfo div.np {
  padding: 0px;
}

.kinfo div:last-child {
  background-color: #333;
  border-left: 1px solid #393939;
}

.kinfo div:last-child.mk {
  text-align: right;
  font-size:18px;
  color:#14892c;
  font-weight: bold;
}

.kadi {
  width: 100%;
  outline: none;
  font-family: Arial;
  padding: 8px;
  font-weight: bold;
  border: 1px solid transparent;
}

.miktar {
  width: 100%;
  outline: none;
  font-family: Arial;
  padding: 8px;
  font-weight: bold;
  border: 1px solid transparent;
  font-size:18px;
  text-align: right;
  cursor: pointer;
}

.kb{
  margin: 5px;
  overflow: hidden;
}

.kupon-button {
  font-size: 16px;
  background-color: #14892c;
  border: 1px solid rgba(0,0,0,.9);
  color: #FFF;
  font-family: 'Merriweather Sans', sans-serif;
  text-decoration: none;
  padding: 15px 0;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0px 1px 0px rgb(255 255 255 / 20%) inset, 0px 10px 20px rgb(255 255 255 / 20%) inset;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
  position: relative;
  width: 100%;
  transition: 200ms all;
}

.kupon-button:hover {
  filter:brightness(110%);
  cursor: pointer;
}

.kupon-button:active {
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,.7) inset;
  filter:brightness(100%);
}

.kupon-button.disabled {
  background-color: #333;
  color:#555;
  box-shadow: 0px 0px 50px #111 inset;
  border:none;
}

.error {
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
  color:#FFF;
  font-size:13px;
  background-color: #BC2121;
}

.warni {
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
  color:#222;
  font-size:13px;
  background-color: #ffcc00;
}

/* çoklu yeni kullanıcı form satırı: ilk iki alan geniş */
.multiuser-row {
  display: flex;
}
.multiuser-row > div {
  width: 20%;
}
.multiuser-row > div:nth-child(-n+2) {
  width: 30%;
}

.mora font {
  color:#888;
  text-decoration: line-through;
}

.min-kupon-desc {
  padding: 5px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.min-kupon-desc a {
  flex:1;
  color:#FFF;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #222;
  padding: 5px;
  margin: 0px 2px;
  text-decoration: none;
  border-radius: 5px;
}

.min-kupon-desc a:hover {
  background-color: #292929;
}

.min-kupon-desc a:first-child i {
  color:#BC2121;
  margin-right: 2px;
}
.min-kupon-desc a:last-child i {
  color:#14892c;
  margin-left: 2px;
}

.zeroten {
  color:#FFF;
  position: absolute;
  right:15px;
  top:10px;
  text-decoration: none;
}

.morebet-content {
  position: fixed;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  z-index: 50;
  background-color: rgba(0,0,0,.7);
}

.morebet-in {
  position: relative;
  max-height: 90%;
  background-color: #000;
  top:50px;
  bottom:50px;
  width: 800px;
  left: 50%;
  margin-left:-450px;
  display: flex;
  flex-direction: column;
  /* border: 4px solid #111; */

  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(to right, #111, #222) 1;
}
.morebet-in .odd-title {
  color:#FFF;
  padding: 15px;
  text-align: center;
  font-size:24px;
  font-weight: bold;
  background-color: #222;
  position: relative;
}
.morebet-in .odd-title::before {
  height: 2px;
  right:0px;
  left:0px;
  bottom:0px;
  background-image: linear-gradient(-90deg, var(--mcolor) 20%, transparent);
  width: 100%;
  position: absolute;
  content:'';
  border-radius: 5px;
}

.morebet-in .odd-content {
  flex:1;
  overflow-y:scroll;
}

.close-morebet {
  position: absolute;
  font-size:44px;
  color:#BC2121;
  z-index: 10;
  display: flex;
  right:-10px;
  top:-10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFF;
  justify-content: center;
  align-items: center;
}

.close-morebet:hover {
  cursor: pointer;
  background-color: #BC2121;
  color:#FFF;
}
.odd-content {
  padding: 25px;
}
.oranbox {
  display: flex;
  flex-direction: column;
}
.oran-title {
  color:var(--mcolor);
  font-size:13px;
  padding: 10px 15px;
  position: relative;
}

.oran-outcomes {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.oran-outcomes ul {
  display: table-row;
}

.oran-outcomes ul li {
  display: table-cell;
}
.oran-outcomes ul li >div {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  font-size:13px;
  background-color: #333;
  border-right: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(0,0,0,.2);
  /* box-shadow: 0px -2px 6px rgba(0,0,0,.2) inset; */
  box-shadow: 0px 10px 15px rgba(255,255,255,.1) inset,0px 1px 0px rgba(255,255,255,.1) inset;

}
.oran-outcomes ul li div span.title {
  color:#FFF;
}

.oran-outcomes ul li div span.odd {
  color:#ffcc00;
  font-weight: 500;
}
.oran-outcomes ul li >div.passive {
	opacity: 0.5;
	cursor: not-allowed !important;
}
.oran-outcomes ul li >div.passive span.title {
	color: rgba(255,255,255,.30);
}
.oran-outcomes ul li >div.passive span.odd {
	color: rgba(255,255,255,.30);
}
.oran-outcomes ul li >div:not(.passive):hover {
  background-color: #393939;
  cursor: pointer;
}

.oran-outcomes ul li >div.selected {
  background-color: rgba(255,204,0,.3);
  box-shadow: inset 0 0 0px 1px #fc0, 0px 5px 10px rgba(255,255,255,.6) inset, 0px 2px 0px #FFF inset, 0px 15px 0px rgba(255,255,255,.05) inset;
  border-radius: 0px;
  color:#222 !important;
}

.oran-title::before {
  height: 2px;
  right:0px;
  left:0px;
  bottom:-1px;
  background-image: linear-gradient(90deg, var(--mcolor) 20%, transparent);
  width: 100%;
  position: absolute;
  content:'';
  border-radius: 5px;
}

.okkupon {
  padding: 25px;
  background-color: #14892c;
  color:#FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.okkupon i {
  font-size:44px;
  margin-bottom: 5px;
}

.okkuponlinks a {
  display: inherit;
  display: flex;
  font-size:13px;
  color:#FFF;
  border-bottom: 1px solid rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.1);
  align-items: center;
  box-shadow: 0px -4px 10px rgba(0,0,0,.2) inset;
  text-decoration: none;
  position: relative;
  padding: 10px 15px;
  outline: none;
}

.okkuponlinks a i {
  color:#ffcc00;
  width: 25px;
}


.okkuponlinks a:hover {
  color:var(--color);
  background-color: rgba(0,0,0,.4);
}

.afterkupon {
  display: none;
}

.return-me {
  margin-top:15px;
}
.return-me a {
  color:#FFF;
  font-weight: 500;
  text-decoration: none;
  font-size:13px;
}

.return-me a:hover {
  color:#888;
}

.box-select {
  padding: 10px;
  background-color: #292929;
  border-bottom: 1px solid #000;
  font-size:14px;
  color:#CCC;
}

.box-select label {
  display: flex;
  cursor: pointer;
}

.box-select input {
  margin-right: 5px;
}

.history-box {
  padding: 5px;
  border-top:1px solid #333;
  border-bottom: 1px solid #111;
  position: relative;
}

.history-box:first-child {
  border-top: none;
}
.history-box:last-child {
  border-bottom: none;
}

.odd-names {
  font-size:10px;
  color:#ffcc00;
}

.odd-names a {
  color:#999;
}
.history-box .add-odd {
  position: absolute;
  display: flex;
  right:0px;
  bottom:0px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.history-box .add-odd a {
  background-color: var(--mcolor);
  color:#FFF;
  padding: 3px 6px;
  text-decoration: none;
  font-size:11px;
  border-radius: 3px;
}

.history-box .add-odd a:hover {
  background-color: #222;
}

.history-box .add-odd a.selected {
  background-color: #ffcc00;
  color:#222;
}
.time-delay {
  font-size:11px;
  color:#888;
}

.artieksi {
  position: absolute;
  bottom:10px;
  left:6px;
  right:10px;
  display: flex;
}

.artieksi a {
  flex:1;
  padding: 5px;
  background-color: #333;
  text-align: center;
  margin-right: 2px;
  font-size:16px;
  font-weight: bold;
  color:#FFF;
  text-decoration: none;
}
.artieksi a:hover {
  background-color: #444;
}
.artieksi a:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.artieksi a:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.kupon-destek {
  width: 100%;
}

.historydeleteall {
  color:#888;
  position: absolute;
  right:15px;
}

.historydeleteall:hover {
  color:#FFF;
}

.kuponlar-content {
  height: 100%;
  background-color: #ddd;
  border-radius: 20px;
  overflow: hidden;
}
.kuponlar-content.users-page {
  overflow: visible;
}
.kuponlar-content.users-page .pad-cont,
.kuponlar-content.users-page .usertable,
.kuponlar-content.users-page .usertable tr,
.kuponlar-content.users-page .usertable td {
  overflow: visible;
}

.nomargin {
  margin: 0px !important;
  padding: 0px !important;
}

.page-title {
  font-size:24px;
  color:#FFF;
  padding: 20px 50px 20px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  background-color: #222;
  font-weight: bold;
}

.page-title::before {
  height: 2px;
  right:0px;
  left:0px;
  bottom:0px;
  background-image: linear-gradient(90deg, var(--mcolor),#14892c);
  width: 100%;
  position: absolute;
  content:'';
  border-radius: 5px;
}

.kuponlar-filter {
  background-color: #ddd;
  display: flex;
  padding: 5px 5px 10px;
  padding-left: 15px;
  height: 80px;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0,0,0,.5), 0px 20px 40px rgba(255,255,255,.7) inset, 0px 50px 0px rgba(255,255,255,.5) inset;
  border-top: 1px solid #FFF;
}
.kuponlar-filter::before {
  height: 2px;
  right:0px;
  left:0px;
  bottom:0px;
  background-image: linear-gradient(90deg, #14892c, var(--mcolor));
  width: 100%;
  position: absolute;
  content:'';
  border-radius: 5px;
}

.filterbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 15px;
}
.input {
  padding: 10px;
  border:1px solid #999;
  font-family: Arial;
  font-weight: bold;
  outline: none;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2);
}
.input:focus {
  border: 1px solid var(--mcolor);
  background-color: #FFF;
  box-shadow: 0px 0px 5px rgba(0,0,0,.3) inset;
}

/* Select2 özel stilleri */
.select2-container--default .select2-selection--single {
  height: 36px !important;
  padding: 8px 10px !important;
  border: 1px solid #999 !important;
  border-radius: 3px !important;
  background-color: #f9f9f9 !important;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2) !important;
  font-family: Arial !important;
  font-weight: bold !important;
  font-size: 13px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  line-height: 18px !important;
  font-size: 13px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 13px !important;
  color: #999 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px !important;
  right: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #d32f2f !important;
  font-size: 16px !important;
  font-weight: bold !important;
  right: 25px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  line-height: 1 !important;
  position: absolute !important;
  margin-right: 0 !important;
}

.filter-title {
  font-size:13px;
  font-weight: 600;
  padding: 5px 3px;
}

.filter-kuponno {
  width: 100px;
}

.filter-refresh {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

}
.filter-refresh button {
  width: 100%;
  padding: 10px;
  font-size:12px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 3px;
  background-color: var(--mcolor);
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
}
.filter-zeroten {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

}
.filter-zeroten button {
  width: 100%;
  padding: 10px;
  font-size:12px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 3px;
  background-color: #333;
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
}

.filter-zeroten button:hover {
  background-color: #000;
  color:rgba(255,255,255,.5);
}
.filter-refresh button:hover {
  filter:brightness(110%);
}

.filter-refresh button:active {
  box-shadow: 0px 0px 15px rgba(0,0,0,.4) inset;
  color:rgba(255,255,255,.5);
}

.filter-date {
  width: 100px;
}

.selected-box {
  border: 1px solid #DDD;
  background-color: #f0f0f0;
  box-shadow: 0px 2px 5px #FFF inset;
  font-size:12px;
  width: 45%;
  padding: 6.5px;
  margin-bottom: 2px;
  border-radius: 3px;
  margin-right: 2px;
}

.filter-status {
  width: 200px;
}
.filter-textfilter {
  width: 130px;
}

.select-me {
  display: flex;
  flex-wrap: wrap;
}


.filter-games {
  width: 400px;
}

.filter-games .select-me .selected-box {
  width: 20%;
}

.ui-datepicker {
  background-color:#f0f0f0;
  width: auto;
  height: auto;
  font: 9pt Arial, sans-serif;
  z-index: 100000 !important;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
}
.ui-datepicker a {
  text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
  width: 100%;
}
.ui-datepicker-header {
  background: #000;
  color: #e0e0e0;
  font-weight: bold;
  -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
  text-shadow: 1px -1px 0px #000;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #111;
}
.ui-datepicker-title {
  text-align: center;
}
.ui-datepicker-prev, .ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url('../images/arrow.png');
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden;
}
.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}
.ui-datepicker-next {
  float: right;
  background-position: center 0px;
}
.ui-datepicker thead {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top,  #f7f7f7 0%, #f1f1f1 100%);
  background-image: -webkit-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
  background-image: -o-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
  background-image: -ms-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
  background-image: linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
  border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
  text-transform: uppercase;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=0);
}
.ui-datepicker tbody td {
  padding: 0;
  border: 1px solid #ddd;
}
.ui-datepicker tbody td:last-child {
  border-right: 0px;
}
.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
  border-bottom: 0px;
}
.ui-datepicker td span, .ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=1);
}
.ui-datepicker-calendar .ui-state-default {
  color:#222;
  background: -moz-linear-gradient(top,  #ededed 0%, #dedede 100%);
  background: -webkit-linear-gradient(top,  #ededed 0%,#dedede 100%);
  background: -o-linear-gradient(top,  #ededed 0%,#dedede 100%);
  background: -ms-linear-gradient(top,  #ededed 0%,#dedede 100%);
  background: linear-gradient(top,  #ededed 0%,#dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 );
  -webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
  -moz-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
  box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, .5);
}
.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
  background: #BC2121;
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
  -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .1);
  color: #FFF;
  text-shadow: 0px 1px 0px #900;
  filter: dropshadow(color=#900, offx=0, offy=1);
  border: 1px solid #900;
  position: relative;
  margin: -1px;
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}

.kuponlar {
  width: 100%;
  font-family: Arial;

}
.kuponlar tr td {
  padding: 8px 10px;
  font-size:12px;
}
.kuponlar tr.head td {
  background-color: #ccc;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,.3);
  border-left: 1px solid rgba(0,0,0,.1);
  border-bottom: 2px solid rgba(0,0,0,.3);
  border-top: 1px solid #FFF;
  padding: 15px 10px;
}
.kuponlar tr.line td {
  transition: 100ms all;
  border-bottom:1px solid rgba(0,0,0,.1);
  border-top:1px solid rgba(255,255,255,.5);
  font-size:12px;
  background-color: #f9f9f9;
  font-weight: bold;
}
.kuponlar tr.line td.favmekupon {
  font-size:18px;
  text-align: center;
  width: 50px;
  max-width: 50px;
}

.kuponlar tr.line td.favmekupon >i {
  cursor: pointer;
}

.kuponlar tr.line td.favmekupon >i:hover {
  color:#ffcc00;
}
.kuponlar tr.line td.favmekupon >i.sectim {
  color:#ffcc00;
}

.kupontable {
  /* background-color: #FFF; */
}


.kuponlar tr.line.odd td {
  background-color: #f0f0f0;
}

.kuponlar tr.line td.incele {
  padding: 0px 5px;
  width: 50px;
  text-align: center;
}

tr.line.deleted {
  opacity: 0.5;
}
tr.line.deleted:hover {
  opacity: 0.9;
}


.kuponlar tr.line td.incele a {
  display: inline-block;
    padding: 5px 10px 5px;
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    background-color: #14892c;
    border-radius: 2px;
}
.kuponlar tr.line td.incele a:hover {
  background-color: #222;
}


.kuponlar tr.line td.kupon-no {
  width: 100px;
  font-weight: 600;
}
.kuponlar tr.line td.kupon-username {
  width: 120px;
  font-weight: 600;
}
.kuponlar tr.line td.kupon-kuponad {
  width: 120px;
}
.kuponlar tr.line td.kupon-kuponad b {
  font-weight: 500;
}
.kuponlar tr.line td.kupon-zaman {
  width: 150px;
}
.kuponlar tr.line td.kupon-tip {
  width: 80px;
}
.kuponlar tr.line td.kupon-tip2 {
  width: 120px;
}
.kuponlar tr.line td.kupon-orans {
  width: 80px;
}
.kuponlar tr.line td.kupon-miktar {
  width: 120px;
}
.kuponlar tr.line td.kupon-status {
  width: 70px;
}

.alr {
  text-align: right;
}
.alc {
  text-align: center;
}

.kuponlar tr.line.drm1 td {
  /* background-color: rgba(20,137,44,.1); */
  color:#14892c;
  font-weight: bold;
}

.kuponlar tr.line.drm2 td {
  /* background-color: rgba(188,33,33,.05); */
  color:#BC2121;
  font-weight: bold;
}

/* COUPON_CASHOUT (5): bozdurulmuş kupon, kazanç gibi yeşil göster */
.kuponlar tr.line.drm5 td {
  color:#14892c;
  font-weight: bold;
}

.drm-log1 td, .drm-log10 td {
	color:#14892c;
  font-weight: bold;
}
.drm-log2 td, .drm-log11 td, .drm-log10 td {
	color:#BC2121;
  font-weight: bold;
}
.kuponlar tr.line.drm3 td, .kuponlar tr.line.drm4 td {
  /* background-color: rgba(0,0,0,.02); */
  color:#999;
  font-weight: bold;
}

select {
  -webkit-appearance:none;
  -moz-appearance:none;
  color:#222;
}


.kuponlar tr.line:hover td {
  background-color: #FFF;
  border-bottom: 1px solid #ccc;
}

.kupondmore {
  padding: 5px;
  border-bottom: 3px solid #333;
}
.kuponlar tr.kupond {
  display: none;
}

.report-table {
  padding: 0px 10px 10px;
  background-color: #f0f0f0;
  display: flex;
  justify-content: space-around;
  font-family: Arial;
}
.report-box {
  flex:1;
  background-color: #FFF;
  padding: 20px;
  border-right: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2), 0px -3px 0px #333 inset;
}

.report-box:last-child {
  border-right: 1px solid #DDD;
  border-bottom-right-radius: 10px;
}
.report-box:first-child {
  border-bottom-left-radius: 10px;
}
.report-box >span.title {
  font-size:12px;
  flex:1;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.report-box >span.number {
  font-size:18px;
  font-weight: bold;
}
.report-box >span.title span {
  margin-top:4px;
}
.report-box.winner {
  color:#14892c;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2), 0px -3px 0px #14892c inset;
}
.report-box.loser {
  color:#BC2121;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2), 0px -3px 0px #BC2121 inset;
}
.report-box.cancel {
  color:#666;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2), 0px -3px 0px #666 inset;
}
.report-box.totalrisk {
  color:#F00;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2), 0px -3px 0px #F00 inset;
}


td.reorder {
  text-decoration: underline;
}

.kuponlar tr.head td.reorder:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.kuponlar tr.head td.reorder:active {
  cursor: pointer;
  background-color: #f0f0f0;
  color:#666;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2) inset;
}

.kuponyok {
  color:#444;
  padding: 25px;
}

.hidden {
  display: none;
}

.kupons {
  display: flex;
  flex-direction: column;
}
.kupons.rulet-kuponu{
  flex-direction: row;
  flex-wrap: wrap;
}

.kupons >div {
  display: flex;
  font-size:12px;
  align-items: center;
  border: 1px solid #ccc;
  margin-bottom: 2px;
  box-shadow: 0px 0px 5px rgba(0,0,0,.1);
  background-color: #FFF;
  border-radius: 3px;
}
.kupons >div >div {
  padding: 7px;
  display: flex;
  flex-direction: column;
}

.kupons >div >div >b:not(.kesin) {
  /* font-weight: 500; */
  font-size:13px;
  padding: 2px 3px 0px;
}

.kupons >div >div >span {
  font-size:12px;
  font-weight: bold;
  margin-top:5px;
  padding: 5px 10px;
	padding-right: 30px;
  background-color: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 5px;
  position: relative;
}
.kupons >div >div >span >i {
  position: absolute;
  right:5px;
  top:3px;
  font-size:18px;
}


.kupons >div.drm1 {
  color:#14892c;
  font-weight: bold;
}
.kupons >div.drm1 >div >span {
  background: rgba(20,137,44,.2);
  box-shadow: 0px 0px 5px 1px rgba(20,137,44,.2) inset;
  border-color:rgba(20,137,44,.3);
}

.kupons >div.drm2 {
  color:#BC2121;
  font-weight: bold;
}
.kupons >div.drm2 >div >span {
  background: rgba(188,33,33,.2);
  box-shadow: 0px 0px 5px 1px rgba(188,33,33,.2) inset;
  border-color:rgba(188,33,33,.2);
}

.kupons >div.drm4, .kupons >div.drm7 {
  color:#777;
}

.kupons >div >div >div.gamed {
  font-size:11px;
  font-weight: normal;
}
.kupons >div >div >div.gamed i {
  display: inherit;
}


.kupons >div >div:nth-child(1) {
  width:120px;
  text-align: center;
}
.kupons >div >div:nth-child(2) {
  white-space: nowrap;
  min-width: 350px;
  background-color: #f9f9f9;
  padding: 5px 15px;
  border-right: 1px solid rgba(0,0,0,.1);
  border-left: 1px solid rgba(0,0,0,.1);
  box-shadow: 0px 0px 5px 1px rgba(0,0,0,.1) inset;
}
.kupons >div >div:nth-child(3) {
  width:80px;
  font-size:14px;
  padding-left: 7px;
  font-weight: bold;
  text-align: center;
}
.kupons >div >div:nth-child(4) {
  font-size:12px;
  white-space: nowrap;
  padding: 0px 15px;
}

.kupondcontent {
  border-bottom: 3px solid #DDD;
}


b.kesin {
  font-size:12px;
  background: rgba(0,0,0,.1);
  padding: 3px 6px;
  border-radius: 5px;
  color:#222;
}
a.report {
  font-size:12px;
  background: #BC2121;
  padding: 3px 6px;
  border-radius: 5px;
  color:#FFF;
  text-decoration: none;
  margin-left:10px;
  align-items: center;
}
a.macagit {
  font-size:12px;
  background: #cf711d;
  padding: 3px 6px;
  border-radius: 5px;
  color:#FFF;
  text-decoration: none;
  margin-left:10px;
}

a.report:hover, a.macagit:hover {
  background-color: #222;
}



.report-screen{
  position: fixed;
  width: 300px;
  left:50%;
  margin-left:-150px;
  background-color: #222;
  border:3px solid #111;
  top:40%;
  margin-top:-100px;
  animation-name: reportpage;
  animation-duration: 500ms;
  box-shadow: 0px 0px 30px #000;
}
@keyframes reportpage {
    0% {
      top:0px;
      opacity:0;
    }
    100% {
      top:40%;
      opacity:1;
    }
}

.reportcontent {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.reporttitle {
  font-weight: bold;
  color:#FFF;
  padding: 5px 0px 15px;
  text-align: center;
}
.reportcontent a {
  padding: 10px;
  background-color: #444;
  color:#FFF;
  border-bottom: 1px solid #333;
  border-top: 1px solid #494949;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size:13px;
  transition: 100ms all;
}

.reportcontent a:hover {
  filter:brightness(110%);
}

.reportcontent a:active {
  box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset;
  color:rgba(255,255,255,.4);
}

.desco {
  font-size:11px;
  color:#888;
  text-align: center;
  padding: 10px 0px;
}

a.closethis {
  background-color: #BC2121;
}

.cancel-msg {
  padding: 10px;
  background-color: #fff3a4;
  border:1px solid rgba(0,0,0,.2);
}

.report-match {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.report-match span {
  color:#FFF;
  text-align: center;
  font-size:12px;
}
.report-match span.title {
  color:#ffcc00;
  font-weight: bold;
}

.pager {
  padding: 5px;
  background-color: #ddd;
  display: flex;
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,.2) inset;
  justify-content: center;
  border-top: 1px solid #FFF;
}
.pager select {
  text-align: center;
  width:50px;
}
.pager a {
  height: 100%;
  padding: 0px 25px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  margin: 0px 5px;
  border:1px solid #999;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2), 0px 1px 0px #FFF inset;
  border-radius: 3px;
  color:#222;
  text-decoration: none;
  font-size:18px;
}

.pager a:hover {
  background-color: #FFF;
}

.pager a:active {
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,.2) inset;
}

.pager a.disabled, .pager a.disabled:hover, .pager a.disabled:active {
  color:#888;
  background-color: #ddd;
  border-color:#ccc;
  box-shadow: none;
}
.kupons >div >div.blackjack-satir {
  width: 100%;
  text-align: left;
  flex-direction: row !important;
}

.bj-usercards {
  display: flex;
  padding: 6px 10px;
  background-color: #f9f9f9;
  align-items: center;
  margin-right: 5px;
  border: 1px solid #DDD;
  border-radius: 3px;
}

.bj-usercards .title {
  font-weight: bold;
  padding: 0px 5px;
}
.bj-usercards span.kartsa {
  display: flex;
}

.karts {
  display: flex;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-left: 2px;
  background-color: #FFF;
}

.blackjack-satir {
  display: flex;
  flex-direction: row;
  float: left;
}

.kkyi i {
  width: 25px;
  font-size:14px;
  margin-right: 5px;
}

.rulet-satir {
  float: left;
}

.rulet-title {
  width: 50% !important;
  text-align: left !important;
}

.rulet-gelen {
  text-align: left !important;
  min-width: auto !important;
  width: 220px;
}
.rulet-ikram {
  width: 50% !important;
  text-align: left !important;
  font-size:12px !important;
}


/* live */

.live-filter {
  display: flex;
  position: relative;
  padding: 5px;
  background-color: #222;
}
.live-filter-box {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
}

.live-filter-box span:first-child {
  padding: 5px;
  font-size:13px;
  color:#FFF;
}

.lfilters {
  display: flex;
}

.right-margin {
  padding-right: 15px !important;
}






.lig-title {
  font-size:13px;
  color:#FFF;
  /* sabit yükseklik: üst/alt boşluk eşit, odds header ile hizalı */
  height: 36px;
  padding: 0 10px 0 17px;
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
  box-sizing: border-box;
}

.lig-title span {
  color:#ccc;
  margin-left:10px;
}

.lig-title i {
  width: 24px;
  height: 24px;
  display: inline-block;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffcc00;
	
}

.lig-title.by-start-time {
	font-weight: bold;
}

.lig-matches {
  margin: 0px 10px 5px;
  border-left: 1px solid #333;
}


.ligbox {
  padding: 5px;
  background: rgba(0,0,0,.7);
  margin-top:5px;
  padding-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(255,255,255,.1) inset, 0px 2px 0px rgba(255,255,255,.4) inset;
  position: relative;
  overflow: hidden;
}
.ligbox-back {
  /* position: absolute;
  top:0px;
  left:0px;
  height: 50px;
  width: 100%;
  background: repeating-linear-gradient(45deg, #111, #111 5px, #191919 5px, #191919 10px);
  box-shadow: 0px -25px 30px #111 inset; */
}

.live-box {
  display: flex;
  width: 100%;
  border-bottom: 5px solid rgba(0,0,0,.4);
  border-top: 1px solid #383838;
  position: relative;
}

.live-box:hover .live-info:not(.nobordered) >div {
  color:#FFF;
  background: rgba(0,0,0,.2);
  text-shadow: 0px 0px 20px #FFF;
  cursor: pointer;
}

.live-box:hover .live-info:not(.nobordered) .first-half {
  color:#ffcc00;
  animation: ilkyari 500ms;
}
@keyframes ilkyari {
  0% {
    right:0px;
  }
  50% {
    right:15px;
  }
  100% {
    right:10px;
  }

}


.live-info {
  display: flex;
  background-color: #303030;
  width: 550px;
  max-width: 550px;
  min-width: 550px;
}
.live-info >div {
  border-right: 1px solid #101010;
  border-left: 1px solid #383838;
}
.donneme {
  display: flex;
  background-color: #202020;
  flex:1;
  flex-direction: column;
}
.live-odds {
  display: flex;
  background-color: #202020;
  flex:1;
}

.live-matches {
  padding: 0px 10px;
  /* lig-title height (36px) ile birebir — üst/alt kayma olmasın */
  margin-top: -36px;
}

.live-dakika {
  width: 50px;
  display: flex;
  color:#FFF;
  font-weight: bold;
  justify-content: right;
  align-items: center;
  font-size:16px;
  padding-right: 7px;
}

.live-score {
  width: 60px;
  display: flex;
  color:#FFF;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  font-size:16px;
}

.live-devre {
  width: 90px;
  justify-content: center;
  align-items: center;
  display: flex;
  color:#FFF;
  font-weight: normal;
  font-size:13px;
}


.live-odds {
  display: flex;
  justify-content: center;
  align-items: center;
}
.live-odds div {
  flex:1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.live-odds-header{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  box-sizing: border-box;
}
.live-odds-header >div {
  flex:1;
  color:#999;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size:13px;
  padding: 0 5px;
  height: 100%;
  border: 1px solid transparent;
  box-shadow: 0px -5px 15px rgba(0,0,0,.4) inset;
  box-sizing: border-box;
}
.live-box-header {
  height: 36px;
  min-height: 36px;
  align-items: stretch;
  border-top: none;
  border-bottom: none;
  pointer-events: none;
}
.live-box-header .live-info {
  min-height: 36px;
  height: 36px;
}
.live-box-header .live-odds-header {
  opacity: .9;
}

.live-odds .in-odds {
  flex:1;
  display: flex;
  height: 100%;
}





.in-odds >div {
  display: flex;
  justify-content: space-between;
  height: 100%;
  font-family: Arial;
  font-size:13px;
  background-color: #202020;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  border-right: 1px solid #333;
  padding: 7px 7px;
  box-shadow: 0px 10px 15px rgba(255,255,255,.1) inset,0px 1px 0px rgba(255,255,255,.1) inset;
}
.in-odds >div:first-child {
  border-left: none;
}

.bg-light {
  background-color: #393939 !important;
}

.in-odds.bg-light div {
  background-color: #393939;
}

.in-odds >div:hover {
  filter:brightness(110%);
}

.in-odds >div:active {
  box-shadow: 0px 0px 10px #000 inset;
}

.in-odds >div.disabled, .in-odds >div.disabled:hover, .in-odds >div.selected.disabled {
  background-color: #111;
  cursor: no-drop;
  border-color:#111;
  box-shadow: 0px 0px 5px #000 inset;
}

.in-odds >div.disabled >span {
  color:#333 !important
}

.in-odds >div >span.odd {
  color:#fff;
  position: absolute;
  right:5px;
}
.in-odds >div >span.title {
  color:#999;
}

.left-border {
}
.in-odds .handicap, .in-odds .handicap:hover, .in-odds .handicap:active {
  color:#ffcc00;
  font-weight: 500;
  background-color: #222;
  width: 50px;
  max-width: 50px;
  padding: 0px;
  text-align: center;
  justify-content: center;
  align-items: center;
  filter:brightness(100%);
  box-shadow: none;
  cursor: default;
  border-right: 0px;
  box-shadow: -3px 0px 6px rgba(0,0,0,.2) inset;
  font-size: 12px;
  font-weight: bold;
}
.in-odds .handicap {
  border-left: 1px solid #000 !important;
  background-color: #222 !important;

}


.live-teams {
  flex:1;
  color:#ffcc00;
  justify-content: flex-start;
  display: flex;
  font-size:13px;
  flex-direction: column;
  padding: 7px;
  position: relative;
  align-items: top;
}

.first-half{
  color:#FFF;
  text-align: right;
  display: inline-block;
  margin-top:7px;
  background: rgba(255,255,255,.1);
  position: absolute;
  right:10px;
  bottom:3px;
  padding: 3px 10px;
  font-size:12px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.first-half::before {
  content:'';
  position: absolute;
  border:10px solid transparent;
  border-left-color:rgba(255,255,255,.1);
  right:-20px;
  bottom:1px;
}

.nobordered >div {
  border:0px;
  background-color: transparent;
}

.in-odds div.selected {
  background-color: rgba(255,204,0,.3);
  box-shadow: inset 0 0 0px 1px #fc0, 0px 5px 10px rgba(255,255,255,.6) inset, 0px 2px 0px #FFF inset, 0px 15px 0px rgba(255,255,255,.05) inset;
  border-radius: 0px;
}

.in-odds div.selected span {
  color:#FFF;
}

.sliploading {
  position: absolute;
  left:0px;
  right:0px;
  top:0px;
  bottom:0px;
  background: rgba(0,0,0,.8);
  z-index: 9999;
}
.sliploading span {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom:50px;
  left:50%;
  margin-left:-20px;
  animation-name: load;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  border-radius: 50%;
  animation-timing-function: linear;
  border-left: 5px solid var(--mcolor);
  background-color: #fff;
  box-shadow: 0px 0px 50px var(--mcolor), 0px 0px 0px 3px #FFF;
}
@keyframes load {
    0% { transform: rotate(0deg); background-color: #fff; border-left: 5px solid var(--mcolor);  }
    50% { transform: rotate(180deg); background-color: var(--mcolor); border-left: 5px solid #FFF;}
    100% { transform: rotate(360deg); background-color: #fff; border-left: 5px solid var(--mcolor); }
}

.kupon-error {
  padding: 15px;
  text-align: left;
  font-size:12px;
  color:#BC2121;
  background: rgba(0,0,0,.1);
  font-weight: bold;
}

.kupon-oran .downodds {
  position: relative;
  font-size:12px;
  color:#BC2121;
  padding: 3px 5px;
  border-radius: 5px;
}

.kupon-oran .upodds {
  position: relative;
  border-radius: 5px;
  font-size:12px;
  color:#14892c;
  padding: 3px 5px;
}

.kuponbox.askida {
  opacity: 0.7;
}


.header-menu-admin {
  display: flex;
  background-color: #333;
  box-shadow: 0px -4px 0px rgba(0,0,0,.3) inset,0px -1px 0px rgba(255,255,255,.2) inset, 0px 3px 6px rgba(0,0,0,.2) inset, 0px 0px 15px 4px rgba(0,0,0,.2) inset;
  border-top: 2px solid rgba(0,0,0,.4);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}

.header-menu-admin-block {
  padding: 15px 10px 20px;
}
.header-menu-admin-block >div.title {
  color:#fff;
  font-size:14px;
  padding: 5px 15px;
}

.header-menu-admin-block >div.title i {
  color:#ffcc00;
}

.header-menu-admin-block >div.links {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
}
.header-menu-admin-block >div.links a {
  color:#FFF;
  font-size:14px;
  padding: 7px 15px;
  display: inherit;
  background-color: rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: 200ms all;
}

.header-menu-admin-block >div.links a:hover {
  background-color: rgba(0,0,0,.1);
  color:#FFCC00;
  border-color:rgba(0,0,0,.4);
  box-shadow: 0px 0px 5px #000 inset;
}


.header-menu-admin-block >div.links a.selected {
  background-color: #FFCC00;
  color:#222;
  border-color:rgba(0,0,0,.7);
  box-shadow: 0px 0px 5px rgba(0,0,0,1) inset;
}

.admin-content {
  background-color: #ddd;
  padding: 15px;
}

.padding-content {
  padding: 30px 50px;
}

.openclose {
  display: flex;
  background-color: var(--mcolor);
  box-shadow: 0px -4px 0px rgba(0,0,0,.3) inset,0px -1px 0px rgba(255,255,255,.2) inset, 0px 3px 6px rgba(0,0,0,.2) inset;
  border-top: 2px solid rgba(0,0,0,.4);
  overflow: hidden;
  cursor: pointer;
}
.openclose >span {
  display: inherit;
  padding: 15px 15px 20px;
  color:#FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.openclose:hover {
  filter:brightness(110%);
}

.openclose span i {
  margin-right: 5px;
}

.admin-content-in {
  padding: 15px;
  background-color: #FFF;
  display: flex;
  /* justify-content: space-evenly; */
}



.form-title {
  padding: 5px;
  font-weight: 500;
  font-size:13px;
}

.pageleft {
  /* width: 30%; */
  padding: 0px 5px;
  flex:1;
}

.forms {
  padding: 10px;
  border: 1px solid #DDD;
  margin: 5px 0px;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 5px rgba(0,0,0,.1);
}

.forms:hover {
  cursor: pointer;
  background-color: #fff;
}

.form-element {
  padding: 5px;
  display: flex;
  justify-content: space-between;
}
.form-yuzde, .form-puan {
  flex:1;
}
.form-element >*:first-child {
  margin-right: 5px;
}
.form-element.labeling {
  display: flex;
  flex-direction: column;
}
.form-element.labeling label {
  display: flex;
  font-size:13px;
  height: 35px;
  align-items: center;
  cursor: pointer;
}
.form-element.labeling label input {
  margin-right: 5px;
}

.forms >span {
  font-size:12px;
  color:#555;
  padding: 0px 5px;
  display: inherit;
}

.forms.numbers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px;
}

.nimput {
  text-align: right;
}

.form-title span {
  display: inherit;
  font-size:11px;
  font-weight: normal;
  color:#777;
  /* margin-top:4px; */
}

.forms.numbers .form-element {
  width: 100px;
  max-width: 100px;
  min-width: 100px;
}

.forms.colm {
  flex-direction: column;
  justify-content:flex-start;
  align-items: flex-start;
  width: 100% !important;
}
.forms.colm .form-element >label {
  border: 1px solid #DDD;
  text-align: center;
  padding: 5px;
  margin: 0px 3px;
  background-color: #FFF;
  border-radius: 5px;
  cursor: pointer;
  font-size:12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex:1;
}
.forms.colm .form-element >label:hover {
  background-color: #f0f0f0;
}
.form-element label div {
  flex-direction: column;
  display: flex;
  font-weight: bold;
}


input[type="checkbox"] {
  accent-color: var(--mcolor);
  width: 20px;
  height: 20px;
  border: 1px solid var(--mcolor);
}

.fbutton {
  padding: 10px;
  text-align: center;
  background-color: #fff;
  margin-top:2px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


.fbutton button {
  width: 30%;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  background-color: #BC2121;
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
}
.fbutton button:hover {
  filter:brightness(110%);
}

.fbutton button.disabled {
  background-color: #444;
  color:#666;
}

.warning {
  padding: 10px;
  background-color: #fff4ce;
  color:#222;
  font-size:12px;
  display: inherit;
}

.acikim {
  background-color:#14892c;
  color:#FFF;
  padding: 3px;
  border-radius: 5px;
}
.offum {
  background-color:#BC2121;
  color:#FFF;
  padding: 3px;
  border-radius: 5px;
}

.userconfig-hidden {
  display: none;
}

.adm-title {
  font-size:18px;
  padding: 10px;
  font-weight: bold;
  color:#222;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.noyetki {
  padding: 10px;
  color:#BC2121;
  font-weight: bold;
}

.form-label label {
  font-size:13px;
  display: flex;
  align-items: center;
  border: 1px solid #999;
  font-weight: 500;
  background-color: #FFF;
  cursor: pointer;
  box-shadow: 0px 0px 2px rgba(0,0,0,.2);
  border-radius: 3px;
  height: 37px;
  padding: 0px 7px;
}
.form-label label input {
  margin-right: 3px;
}

.onlybayi {
  display: none;
}

.first-block {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

.forms.subusersform {
  display: flex;
  position: relative;
  align-items: center;
  padding: 4px 10px
}

.forms.subusersform .form-title {
  flex:1;
}
.forms.subusersform .form-element {
  width:80px;
  max-width:80px;
  min-width:80px;
}

.label-box {
  display: flex;
  flex-wrap: wrap;
  padding: 2px;
}
.label-box label {
  width: 33%;
  padding: 1px;
}
.label-box label div input {
  margin-right: 5px;
}

.label-box.sidar label {
  width: 50%;
  padding: 1px;
}

.label-box label >div {
  font-size:13px;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 0px 1px rgba(0,0,0,.2) inset;
  padding: 10px;
  border-radius: 5px;
}

.label-box label >div:hover {
  cursor: pointer;
  background-color: #FFF;
}

.krlk {
  position: absolute;
  top:4px;
}

.ciftlabel {
  display: flex;
  flex:1;
}
.ciftlabel label {
  margin-right: 2px;
  flex:1;
}

.percent {
  position: relative;
}
.percent::before {
  content:'%';
  position: absolute;
  left:10px;
  top:9px;
  color:var(--mcolor);
  font-weight: bold;
  font-size:12px;
}

.percent input {
  padding-left: 25px;
}
.form-element-ass {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  font-size:12px;
  display: flex;
  align-items: center;
}

.give-me-balance {
  display: none;
}

.userconfig-hidden {
  margin-top:2px;
}

.sisa {
  font-size:18px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.pad-cont {
  padding: 10px;
}
.totalsublink {
  background-color: var(--mcolor);
  font-size:12px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 25px;
  width: 50px;
}
.totalsublink:hover {
  background-color: #222;
  color:#887;
}
td.user-network {
  width: 70px;
  text-align: center;
}
td.user-dates {
  width: 150px;
}

.usertable tr.line td {
  font-weight: normal;
}
span.remember {
  display: inherit;
  font-size:11px;
  color:#BC2121;
}

span.kira {
  display: inherit;
  font-size:12px;
}
span.kira >span {
  font-size:10px;
  display: inherit;
  color:#666;
}

span.gecti {
  background-color: #BC2121;
  color:#FFF;
  padding: 3px 6px;
  border-radius: 3px;
  font-size:10px;
  display: inherit;
}
span.doldu {
  color:#BC2121;
  font-size:12px;
  font-weight: bold;
}

.usertable tr.line td {
  padding: 4px 8px;
  vertical-align: middle;
  background-color: #f9f9f9;
}

.usertable tr.line:nth-child(even) td {
  background-color: #f0f0f0;
}
.user-active {
  color:#14892c;
  font-weight: bold;
}

.user-deactive {
  color:#BC2121;
  font-weight: bold;
}

td.linkpad {
  padding: 0px;
}

a.stopbutton {
  background-color: #BC2121;
  font-size:12px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;
  border-radius: 5px;
  line-height: 25px;
  width: 70px;
  text-align: center;
}

a.startbutton {
  background-color: #14892c;
  font-size:12px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  width: 70px;
}

a.editbutton {
  background-color: #666;
  font-size:12px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  width: 80px;
}

a.deletebutton {
  background-color: #BC2121;
  font-size:12px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  width: 80px;
}

a.startbutton:hover, a.stopbutton:hover, a.editbutton:hover, a.deletebutton:hover {
  background-color: #222;
}

.userlist-tab {
  display: flex;
  border-bottom: 1px solid var(--mcolor);
  margin: 10px 10px 0px;
}
.userlist-tab a {
  padding: 15px 25px;
  font-size:16px;
  font-weight: bold;
  color:#222;
  background-color: #ccc;
  text-decoration: none;
  border-right: 2px solid rgba(0,0,0,.1);
}

.userlist-tab a.selected {
  background-color: var(--mcolor);
  color:#FFF;
}

.user-search {
  padding: 5px 0px;
}

/* kullanıcı listesi 4.2 toolbar / filtre / aksiyon */
.user-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 6px 0 10px;
}
.user-list-toolbar .user-search {
  padding: 0;
  flex: 0 0 auto;
}
.user-list-toolbar .user-search .input {
  width: 180px;
  min-width: 160px;
  max-width: 220px;
  height: 30px;
  box-sizing: border-box;
}
.user-list-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.user-list-filters .input {
  height: 30px;
  font-size: 12px;
  padding: 2px 8px;
  width: auto;
  max-width: 160px;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.user-list-filters select.input {
  min-width: 120px;
}
.user-list-filters .uf-reset {
  cursor: pointer;
  width: auto;
  height: 30px;
  flex: 0 0 auto;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #f5f5f5;
  color: #333;
  box-sizing: border-box;
}
.user-list-filters .uf-reset:hover {
  background: #eee;
  border-color: #bbb;
}
.user-list-bulk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: #fff8e1;
  border: 1px solid #f0e0a0;
  border-radius: 6px;
  padding: 4px 10px;
}
.user-online-dot {
  color: #1a9e3f;
  font-size: 11px;
  margin-left: 3px;
  vertical-align: middle;
}
.user-inactive-badge {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 3px;
  background: #f5e6c8;
  color: #8a5a00;
  vertical-align: middle;
  line-height: 1.3;
}
.user-note-icon {
  margin-left: 4px;
  color: #c9a227;
  cursor: help;
  font-size: 12px;
  vertical-align: middle;
}
.usertable tr.line.user-inactive-row td {
  background-color: rgba(255, 200, 80, 0.06);
}
.usertable td.user-actions {
  width: 1%;
  white-space: nowrap;
}
.usertable td.user-actions .user-act-btn {
  width: auto !important;
  min-width: 0 !important;
  height: 26px !important;
  padding: 0 8px !important;
  margin: 1px 3px 1px 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  vertical-align: middle;
  font-size: 11px !important;
  line-height: 1 !important;
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
  touch-action: manipulation;
}
.usertable td.user-actions .user-act-btn i {
  margin: 0 !important;
  line-height: 1;
  font-size: 11px;
  pointer-events: none;
}
.usertable td.user-actions .user-act-btn.user-act-edit {
  background-color: #1a6fb5;
}
.usertable td.user-actions .user-act-btn.user-act-edit:hover {
  background-color: #222;
}
.usertable td.user-actions button.user-act-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  -webkit-appearance: none;
  appearance: none;
}
.usertable td.user-actions button.user-act-btn:hover {
  background-color: #222;
}
.user-more {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
}
.user-more.is-open {
  z-index: 20;
}
.user-more-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 21;
  min-width: 190px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  padding: 4px 0;
  text-align: left;
}
.user-more.is-open .user-more-menu {
  display: block;
}
.usertable tr.line.user-more-row-open {
  position: relative;
  z-index: 50;
}
.usertable tr.line.user-more-row-open td.user-actions {
  position: relative;
  z-index: 51;
  overflow: visible;
}
.user-more-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #222;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.user-more-menu a:hover {
  background: #f0f0f0;
  color: #111;
}
.user-more-menu a i {
  width: 14px;
  text-align: center;
  color: #666;
}
/* anında floating tooltip — body'ye eklenir, tablo kesmez */
#user-act-float-tip {
  position: fixed;
  z-index: 999999;
  background: #222;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  padding: 5px 9px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
  display: none;
}
#user-act-float-tip.is-on {
  display: block;
}
#user-act-float-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #222;
}
.usertable tr.line.user-limit-highlight td,
.user-limit-highlight td {
  background-color: #fff3c4 !important;
  box-shadow: inset 0 0 0 1px #e6c200;
}

.userlist-tab a:first-child {
  border-top-left-radius: 10px;
}

.userlist-tab a:last-child {
  border-top-right-radius: 10px;
}

#users-res {
  padding-top: 0px;
}

.padde-content {
  padding: 25px 50px;
  text-align: center;
}

.no-access {
  font-size:16px;
  color:#BC2121;
}

.users-access {
  padding: 15px;
  background-color: #FFF;
  margin: 10px 0px;
}

.delete-buttons {
  display: flex;
  justify-content: center;
  margin-top:50px;
}


.delete-buttons a:last-child {
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  background-color: #BC2121;
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
  text-decoration: none;
  margin-left:10px;
}

.delete-buttons a:first-child {
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-size:18px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  background-color: #333;
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
  text-decoration: none;
}

.delete-content {
  padding: 10px;
}
.rulet-satir {
  display: inline-block;
  padding: 4px 10px;
  background-color: #FFF;
  border: 1px solid #DDD;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: center;
}
.rulet-satir span.winthis {
  color:#14892c;
  font-weight: bold;
}

.rulet-satir.drm3 {
  color:#BC2121;
}

.rulet-satir.rulet-gelen-no {
  font-size:24px;
  font-weight: bold;
  width: 80px;
}
.zerogreen {
  color:#14892c;
}
.rnred {
  color:#BC2121;
}
.rnblack {
  color:#222;
}

.moneytransfer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.moneytransfer div {
  flex:1;
}


.moneytransfer div input {
  height: 40px;
}
.moneytransfer div button {
  font-family: 'Poppins', sans-serif;
  font-size:14px;
  height: 40px;
  padding: 0px 15px;
  font-weight: 600;
  outline: none;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
  background-color: #BC2121;
  color:#FFF;
  cursor: pointer;
  transition: 300ms all;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-left:-10px;
}
.moneytransfer.nobors div button {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

td.tablelimit {
  font-size:18px !important;
  font-weight: bold !important;
}

.sizde {
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #DDD;
  font-size:13px;
  margin-top:5px;
}

.sizdebitti {
  padding: 10px;
  background-color: #BC2121;
  border: 1px solid rgba(0,0,0,.2);
  color:#FFF;
  font-size:13px;
  margin-top:5px;
}

td.nomera {
  text-align: center;
}


div.oran_upper:not(.disabled):not(.selected) {
  box-shadow: 0px 0px 1px 1px #009900 inset;
  animation: uanimation 1500ms infinite;

}
@keyframes uanimation {
  0% {
    box-shadow: 0px 0px 1px 1px #009900 inset;
  }
  50% {
    box-shadow: 0px 0px 3px 1px #00e400 inset;

  }
  100% {
    box-shadow: 0px 0px 1px 1px #009900 inset;
  }
}

div.oran_upper:not(.disabled):not(.selected)::before {
  content:'';
  position: absolute;
  border:6px solid transparent;
  border-bottom-color:#009900;
  bottom:0px;
  left:50%;
  margin-left:-3px;
}


div.oran_downer:not(.disabled):not(.selected) {
  box-shadow: 0px 0px 1px 1px #BC2121 inset;
  animation: danimation 1500ms infinite;
}

@keyframes danimation {
  0% {
    box-shadow: 0px 0px 1px 1px #BC2121 inset;
  }
  50% {
    box-shadow: 0px 0px 3px 1px #f61b1b inset;
  }
  100% {
    box-shadow: 0px 0px 1px 1px #BC2121 inset;
  }
}



div.oran_downer:not(.disabled):not(.selected)::before {
  content:'';
  position: absolute;
  border:6px solid transparent;
  border-top-color:#BC2121;
  top:0px;
  left:50%;
  margin-left:-3px;
}

.dars {
  display: flex;
  width: 100%;
  position: relative;
}
.dars a {
  flex:1;
  border: 1px solid #DDD;
  font-size:12px;
  font-weight: bold;
  color:#222;
  background-color: #FFF;
  margin: 1px;
  text-align: center;
  border-radius: 3px;
  padding: 8px;
  text-decoration: none;
}

label.intelfilter {
  display: flex;
  font-size:13px;
  padding: 5px;
  border: 1px solid #DDD;
  background-color: #FFF;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom:2px;
}


label.intelfilter >input {
  margin-right: 5px;
}

.dars .endusuk {
  font-size:11px;
  left:2px;
  position: absolute;
  color:#666;
  bottom:-15px;
}

.dars .enyuksek {
  font-size:11px;
  right:2px;
  position: absolute;
  color:#666;
  bottom:-15px;
}

.oran-degisim-table {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top:10px;
  border-radius: 5px;
}
.oran-degisim-table ul {
  display: table-row;
}
.oran-degisim-table ul li {
  display: table-cell;
  font-size:13px;
  border: 1px solid #ccc;
  text-align: center;
  padding: 10px 0px;
}
.oran-degisim-table ul.head li {
  background-color: #ddd;
  font-weight: 600;
  position: relative;
}


.oran-degisim-table ul.head li:not(.title)::before {
  border:6px solid transparent;
  content:'';
  position: absolute;
  border-top-color:#ddd;
  bottom:-12px;
  left:50%;
  margin-left:-6px;
}

.dars a.ustumde {
  border-bottom: 2px solid #14892c
}
.dars a.altimda {
  border-bottom: 2px solid #BC2121
}

.dars a.selected.ustumde {
  background-color: #14892c;
  color:#FFF;
  border-color:rgba(0,0,0,.2);
}
.dars a.selected.altimda {
  background-color: var(--mcolor);
  color:#FFF;
  border-color:rgba(0,0,0,.2);
}


.dars a.zerom {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  border-bottom: 1px solid rgba(0,0,0,.2);
}

.winkapi {
  position: absolute;
  z-index: 100;
  left:50%;
  margin-left:-300px;
  top:200px;
  display: none;
}
.inceden {
  padding: 20px;
  display: inherit;
  background: rgba(0,0,0,.1);
  line-height: 24px;
  border-radius: 5px;
  color:#444;
  position: relative;
}
.inceden a {
  color:var(--mcolor);
  text-decoration: none;
}
.form-max-scroll {
  max-height: 400px;
  min-height: 400px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.orantip-box {
  font-size:13px;
  position: relative;
  padding: 5px 10px 5px;
  font-weight: 600;
  margin-top:10px;
}

.orantip-box span {
  display: inherit;
  padding: 10px 15px;
  font-size:16px;
}
.orantip-box span font {
  position: absolute;
  font-weight: normal;
  top:0px;
  left:25px;
  color:var(--mcolor);
  display: none;
  font-size:13px;
}

.orantip-box span:hover {
  color:var(--mcolor);
}
.orantip-box span:hover font {
  display: block;
}

.minorantip-box {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-weight: 400;
}

.minorantip-box.selected {
  background-color: var(--mcolor);
  color:rgba(255,255,255,.7);
  border-color:rgba(0,0,0,.2);
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,.2) inset;
}
.minorantip-box.selected span {
  color:rgba(255,255,255,.7);

}
.minorantip-box.disabled {
	display: none;
}
#totalsection {
  padding: 10px;
  text-align: left;
  background: rgba(0,0,0,.1);
  display: inherit;
  margin-top:5px;
  position: relative;
}
#totalsection a {
  font-weight: 600;
  color:var(--mcolor);
  text-decoration: none;
  position: absolute;
  right:10px;
  top:10px;
}

#totalsection a:hover {
  text-decoration: underline;
}

.orantip-table {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #DDD;
  border-top: 1px solid #DDD;
}

.minorantip-box.ts2 {
  width: 50%;
}
.minorantip-box.ts5 {
  width: 25%;
}
.minorantip-box.ts3 {
  /* width: 33%; */
  flex:1;
}
.minorantip-box.ts1 {
  /* width: 33%; */
  flex:1;
}

.form-content-title {
  padding: 10px;
  padding-left: 35px;
  color:var(--mcolor);
  border-bottom: 1px solid var(--mcolor);
  font-size:16px;
  position: relative;
}

span.stepnumber {
  position: absolute;
  left:0px;
  top:7px;
  border: 2px solid #FFF;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:18px;
  font-weight: bold;
  color:#FFF;
  border-radius: 20px;
  background-color: var(--mcolor);
}

.list-sportips {
  display: flex;
  flex-wrap: wrap;
}
.list-sportips >div {
  width: 50%;
  padding: 2px;
}
.list-sportips >div >span {
  border: 1px solid #DDD;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.list-sportips >div.selected >span {
  border-color:rgba(0,0,0,.2);
  background-color: var(--mcolor);
  color:#FFF;
}


td.clr2 {
  color:#14892c;
}

td.clr3 {
  color:#BC2121;
}
td.clr4 {
  color:#777;
  font-weight: normal !important;
}

tr td{
  position: relative;
}

span.pieces {
  position: absolute;
  left:5px;
}

.sahip {
  font-weight: normal;
}

td i.fa-ban {
  color:#BC2121;
  margin: 0px 2px;
}

.orantip-box span i {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  top:7px;
}

.cuload {
  padding: 15px;
  background: rgba(0,0,0,.05);
  font-weight: 500;
  font-size:13px;
}
.minorantip-box {
  position: relative;
}
.minorantip-box span {
  position: absolute;
  right:5px;
  top:0px;
  color:#666;
  font-size:12px;
}

.livebasket-box {
  background-color: #222;
  margin-top:5px;
  display: flex;
  border: 3px solid #222;
  border-radius: 10px;
  overflow: hidden;
}

.livebasket-box:hover {
  border:3px solid #ffcc00;
  box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
.livebasket-box:hover .livebasket-info {
  background-color: rgba(255,255,255,.02);
}

.livebasket-info {
  display: flex;
  flex-direction: column;
  padding: 15px;
  color:#FFF;
  border-right: 1px solid #333;
  background: rgba(0,0,0,.2);
  box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset;
  width: 350px;
}
.livebasket-info .team {
  font-weight: 500;
  width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.livebasket-info .team span {
  color:#ffcc00;
  display: inline-block;
  width: 50px;
  padding: 5px 10px;
  background-color: #000;
  text-align: center;
  border: 1px solid #222;
  margin-right: 5px;
  border-radius: 5px;
}
.livebasket-info .time {
  font-size:12px;
  color:#999;
  padding: 5px;
}

.livebasket-info .scoretable {
  display: flex;
  flex-direction: column;
  width: 300px;
  font-size:12px;
  border: 1px solid #333;
  background-color: #111;
  margin-top:3px;
  border-bottom: 0px;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2);
}

.livebasket-info .scoretable ul {
  display: flex;
  flex:1;
}
.livebasket-info .scoretable ul li {
  flex:1;
  text-align: center;
  padding: 3px;
  border-bottom: 1px solid #333;
}
.livebasket-info .scoretable ul:first-child li {
  color:#ffcc00;
}
.livebasket-info .scoretable ul:last-child li {
  color:#777;
  font-size:11px;
}

.livebasket-info .lig-name {
  font-size:12px;
  padding: 5px;
  color:#888;
}

.livebasket-info .scoretable ul li span {
  color:#666;
  font-size:13px;
  width: 12px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

.livebasket-odds {
  flex:1;
  display: flex;
}

.livebasket-odds .basket-odds {
  flex:1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #444;
  justify-content: space-between;
}

.livebasket-odds .basket-odds .odds-line {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #444;

}

.livebasket-odds .basket-odds .odds-line:hover .odds-title {
  color:#ffcc00;
  text-decoration: underline;
}

.livebasket-odds .basket-odds .odds-line .odds-title {
  font-size:13px;
  font-weight: 400;
  color:#999;
  border-bottom: 1px solid #333;
  padding: 7px 10px;
  background-color: #121212;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket {
  display: flex;
  min-height: 31px;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div {
  display: flex;
  justify-content: space-between;
  font-family: Arial;
  font-size:13px;
  background-color: #202020;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  border-right: 1px solid #333;
  padding: 7px 7px;
  box-shadow: 0px 10px 15px rgba(255,255,255,.1) inset,0px 1px 0px rgba(255,255,255,.1) inset;
  flex:1;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div >span.odd {
  color:#fff;
  position: absolute;
  right:5px;
}
.livebasket-odds .basket-odds .odds-line .odds-in-basket div >span.title {
  color:#999;
}



.livebasket-odds .basket-odds .odds-line .odds-in-basket div:hover {
  filter:brightness(110%);
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div:active {
  box-shadow: 0px 0px 10px #000 inset;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div.selected {
  background-color: rgba(255,204,0,.3);
  box-shadow: inset 0 0 0px 1px #fc0, 0px 5px 10px rgba(255,255,255,.6) inset, 0px 2px 0px #FFF inset, 0px 15px 0px rgba(255,255,255,.05) inset;
  border-radius: 0px;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div.disabled {
background-color: #111;
cursor: no-drop;
border-color:#111;
box-shadow: 0px 0px 5px #000 inset;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div.disabled span {
  color:#333;
}

.livebasket-odds .basket-odds .odds-line .odds-in-basket div.barem, .livebasket-odds .basket-odds .odds-line .odds-in-basket div.barem:hover, .livebasket-odds .basket-odds .odds-line .odds-in-basket div.barem:active {
  background-color: #222;
  box-shadow: none;
  color:#ffcc00;
  text-align: center;
  width: 100px;
  max-width: 100px;
  min-width: 100px;
  justify-content: center;
  align-items: center;
}




.livebasket-odds .basket-odds .odds-line .odds-in-basket div.selected span {
  color:#FFF;
}

.sonaerdi {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  color:#FFF;
  flex-direction: column;
}
.sonaerdi span {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.sonaerdi span i {
  font-size:50px;
  color:#444;
  margin-bottom:10px;
}


.dlive-center {
  /* padding: 10px; */
  display: flex;
  flex-direction:column;
}
.dlive-header {
  display: flex;
  background-color: #222;
  width: 100%;
  position: relative;
  box-shadow: 0px 0px 25px rgba(0,0,0,.7) inset, 0px 70px 2px rgba(255,255,255,.05) inset;
}
.dlive-info {
  flex:1;
  padding: 15px;
  flex-grow: 4;
}
.dlive-visual {
  flex:1;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
  justify-content: center;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.dlive-ligname {
  color:#777;
  font-size:14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dlive-ligname i {
  display: inline-block;
  margin-right: 5px;
}
.dlive-devre {
  color:#ffcc00;
  font-size:16px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
.dlive-devretable {
  margin: 0 auto;
  font-size: 13px;
  margin-top: 10px;
  border-radius: 3px;
}
.dlive-devretable tr:first-child {
  text-transform: uppercase;
}
.dlive-devretable tr:first-child th {
  background: rgba(255,255,255,.06);
}
.dlive-devretable th {
  background: rgba(255,255,255,.03);
  padding: 3px 6px;
}
.dlive-devretable td {
  background: rgba(255,255,255,.03);
  color: #fff;
}
.dlive-devretable tr:first-child th:first-child {
  border-top-left-radius: 5px;
}
.dlive-devretable tr:first-child th:last-child {
  border-top-right-radius: 5px;
}
.dlive-devretable tr:last-child th:first-child {
  border-bottom-left-radius: 5px;
}
.dlive-devretable tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.dlive-devretable div {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dnames {
  display: flex;
  color:#FFF;
  font-size:20px;
  font-family: Poppins;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex:1;
}
.dnames >div {
  display: flex;
  flex:1;
  position: relative;
  align-items: center;
}

.dnames >div >font {
  position: absolute;
  font-size:12px;
  color:#888;
  bottom:-23px;
  display: flex;
}
.dnames >div:first-child {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.dnames >div:first-child >span {
  margin-left: 10px;
}

.dnames >div:first-child >font {
  right:70px;
}
.dnames >div:last-child >font {
  left:63px;
}

.dnames >div >span {
  display: inline-block;
  width: 50px;
  text-align: center;
  background-color: rgba(0,0,0,.5);
  border-radius: 10px;
  font-weight: 700;
  margin-right: 10px;
  color:#ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  max-width: 50px;
  min-width: 50px;
}

.dnames >div >span >span {
  position: absolute;
  color:#888;font-size:12px;
  left:7px;
  bottom:2px;
}

.dnames >div:last-child >span >span {
  position: absolute;
  font-size:12px;
  right:7px;
  color:#888;
  left:auto;
}

.statsbox {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow:hidden;
}
.yellowcard {
  background-color: #ffcc00;
  padding: 2px 5px;
  color:#222;
  font-size:10px;
}

.corner {
  background: url('../images/corner.png');
  background-size: auto 95%;
  background-repeat:no-repeat;
  padding: 5px;
  color:#999;
  font-size:10px;
  padding-left: 20px;
}
.dnames >div:last-child .statsbox .corner {
  background-position: right center;
  padding-left: 5px;
  padding-right: 20px;

}

.visual-line {
  color:#FFF;
  display: flex;
  flex-direction: column;
  font-size:12px;
  position: relative;
  min-height: 20px;
}

.visual-line-chart {
  display: flex;
}

.visual-line-chart >div {
  background-color: #333;
  padding: 0px 5px;
  font-size:11px;
}
.visual-line-title {
  text-align: center;
  position: absolute;
  width: 120px;
  left:50%;
  margin-left:-60px;
  top:0px;
  font-size:10px;
}
.visual-line-chart >div.fazla {
  background-color: var(--mcolor);
  box-shadow: 0px 0px 5px rgba(0,0,0,.2) inset;
}

.visual-line-chart >div:last-child {
  text-align: right;
}

.story-bar {
  width: 90%;
  margin: 0 auto;
  height: 5px;
  display: flex;

  margin-bottom:10px;
  margin-top:25px;
}
.story-bar .inbar {
  width: 1px;
  flex:1;
  height: 1px;
  background-color: #777;
  position: relative;
}
.ht {
  color:#888;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  margin-top:-5px;
}

.story-bar .inbar.gecti {
  background-color: var(--mcolor);
}
.olay {
  position: absolute;
  font-size:10px;
  text-align: center;
  color:#FFF;
}
.taraf_1 {
  top:-20px;
  width: 18px;
  height: 15px;
}
.taraf_2 {
  bottom:-20px;
  width: 18px;
  height: 15px;
}
.tip_YELLOW_CARD {
  background-color: #ffcc00;
  color:#222;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tip_RED_CARD {
  background-color: #BC2121;
  color:#FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tip_GOAL {
  background: none;
  background-image: url('https://cdn2.iconfinder.com/data/icons/iconslandsport/PNG/256x256/Soccer_Ball.png');
  background-size: 15px 15px;
  color:#fff;
  padding-left: 15px;
  font-weight: normal;
  width: 30px;
  background-repeat: no-repeat;
}


.olay.taraf_1 font {
  position: absolute;
  display: none;
  text-align: center;
  top:-20px;
  background: rgba(0,0,0,.4);
  color:#FFF;
  padding: 2px 5px;
  white-space: nowrap;
  z-index: 20;
  left:0px;
}
.olay.taraf_2 font {
  position: absolute;
  white-space: nowrap;
  display: none;
  color:#FFF;
  left:0px;
  padding: 2px 5px;
  text-align: center;
  bottom:-20px;
  background: rgba(0,0,0,.4);
  z-index: 20;
}
.olay:hover font {
  display: block;
}

.dlive-oranlar {
  display: flex;
  background-image: linear-gradient(-180deg, #333 10%, transparent);
  position: relative;
}

.dlive-oranlar::before {
  height: 3px;
  right:0px;
  left:0px;
  top:0px;
  background-image: linear-gradient(-90deg, var(--mcolor) 10%, transparent);
  width: 100%;
  position: absolute;
  content:'';
  border-radius: 5px;
}

.dlive-blok {
  flex:1;
  padding: 5px;
}

.dlive-oranbox {
  background-color: #111;
  font-family: Arial;
  margin: 5px;
}
.dlive-oranbox-title {
  background-color: #212121;
  padding: 10px;
  font-size:12px;
  font-weight: bold;
  color:var(--mcolor);
  border-bottom: 1px solid #000;
  box-shadow: 0px -3px 5px rgba(0,0,0,.3) inset;

}

.dlive-oranlist {
  display: flex;
  flex-wrap: wrap;
}

.dlive-odd {
  display: flex;
  justify-content: space-between;
  font-family: Arial;
  font-size:12px;
  background-color: #202020;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  border-right: 1px solid #333;
  padding: 7px 7px;
  box-shadow: 0px 10px 15px rgba(255,255,255,.1) inset,0px 1px 0px rgba(255,255,255,.1) inset;
  flex:1;
}

.dlive-odd >span.odd {
  color:#ffcc00;
  position: absolute;
  right:5px;
}
.dlive-odd >span.title {
  color:#FFF;
}
.dlive-odd.ots2 {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
}
.dlive-odd.ots3 {
  width: calc(100% / 3);
  max-width: calc(100% / 3);
  min-width: calc(100% / 3);
}
.dlive-odd.ots4 {
  width: 25%;
  max-width: 25%;
  min-width: 25%;
}
.dlive-odd.ots1 {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.dlive-odd.ots3 {

}



.dlive-odd.disabled {
background-color: #111;
cursor: no-drop;
border-color:#111;
box-shadow: 0px 0px 5px #000 inset;
}

.dlive-odd.disabled span {
  color:#333;
}


.dlive-odd:hover {
  filter:brightness(110%);
}

.dlive-odd:active {
  box-shadow: 0px 0px 10px #000 inset;
}

.dlive-odd.selected {
  background-color: rgba(255,204,0,.3);
  box-shadow: inset 0 0 0px 1px #fc0, 0px 5px 10px rgba(255,255,255,.6) inset, 0px 2px 0px #FFF inset, 0px 15px 0px rgba(255,255,255,.05) inset;
  border-radius: 0px;
}

.dlive-odd.selected span {
  color:#FFF;
}

.degisim-content {
  display: flex;
  padding: 5px 15px;
}

.degisim-title {
  padding: 10px;
  border-bottom: 1px solid var(--mcolor);
  color:var(--mcolor);
  display: flex;
  justify-content: space-between;
}

.degisim-box {
  padding: 5px 5px;
  flex:1;
  background-color: #FFF;
  margin: 5px 5px 0px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px rgba(0,0,0,.1);
}

.nochange {
  padding: 10px;
  color:#555;
  font-size:12px;
}

.degisim-ana-content {
  padding: 10px;
}

.degisim-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  font-size:12px;
  align-items: center;
}
.degisim-line span {
  flex:1;
}

.degisim-line .degisim-delete {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  text-align: right;
}

.degisim-line .degisim-delete a {
  color:#BC2121;
  display: inline-block;
  font-size:12px;
  font-weight: normal;
}

.degisim-line:last-child {
  border-bottom:none;
}

.degisim-titlem {
  padding: 5px 10px;
  font-size:14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #DDD;
  background: rgba(0,0,0,.05);
}

.degisim-line span:nth-child(2) {
  text-align: center;
  font-weight: bold;
  font-size:14px;
}
.degisim-line span.yokar {
  color:#14892c;
}
.degisim-line span.asag {
  color:#BC2121;
}

.degisim-titlem span a {
  color:#BC2121;
  text-align: right;
  font-size:12px;
  font-weight: normal;
}

.degisim-title span a{
  color:#BC2121;
  text-align: right;
  font-size:12px;
  font-weight: normal;
}
.degisim-title span .degisim-clear-all {
  text-align: right;
  font-size: 12px;
  font-weight: normal;
}
.degisim-title span .degisim-clear-all.is-disabled {
  color: #aaa;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.55;
  user-select: none;
}
.situations {
  display: flex;
  flex-wrap: wrap;
}
.situations >div {
  color:#FFF;
  font-size:11px;
  display: flex;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 30px;
  align-items: center;
}
.situations >div >div.dk {
  padding: 5px 10px;
  background-color: #444;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.situations >div >div.tip {
  padding: 5px 10px;
  background-color: #111;
}
.situations >div >div.tip span {
  color:#666;
  font-size:11px;
  margin-left: 5px;
}


.situalist {
  display: flex;
  justify-content: space-between;
  margin-top:10px;
}

.situalist .situations:first-child {
  justify-content: flex-end;
  width: 49%;

}
.situalist .situations:last-child {
  width: 100%;
  justify-content: center;
}

.degisim-title >a {
  color:var(--mcolor);
}

.degisim-cont {
  max-height: 300px;
  overflow-y: auto;
}

/* daha fazla göster butonu - değişim merkezi lazy load */
.degisim-more-wrap {
  padding: 6px 10px;
  text-align: center;
  border-top: 1px dashed #ddd;
  background: #fafafa;
}
.degisim-more-btn {
  display: inline-block;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  color: #FFF !important;
  background: var(--mcolor, #BC2121);
  border-radius: 3px;
  text-decoration: none !important;
  cursor: pointer;
  transition: opacity .15s;
}
.degisim-more-btn:hover {
  opacity: .85;
  text-decoration: none !important;
}
.degisim-inner-cont {
  display: contents;
}

.tippRED_CARD {
  color:#f00;
}
.tippYELLOW_CARD {
  color:#ffcc00;
}

.fri-content {
  display: flex;
  padding: 25px 50px;
}
.fribox {
  flex:1;
  padding: 0px 5px;
}

.flcom {
  display: flex;
  flex-direction:column;
  padding: 10px 5px;
}

a.telegram-link {
  padding: 12px 20px;
  color:#FFF;
  background-color: #26a2e0;
  border-radius: 3px;
  text-decoration: none;
  font-size:13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.telegram-link i {
  font-size:24px;
  margin-right: 5px;
}

a.telegram-link:hover {
  background-color: #222;
}

.tdesc {
  font-size:12px;
  color:#555;
  padding: 5px 0px;
}

.copyme {
  display: inherit;
  border: 2px dashed rgba(0,0,0,.4);
  background-color: #ffe2bf;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 5px;
  border-radius: 10px;
  font-size:34px;
}

.tline {
  padding: 10px;
  border: 1px solid #DDD;
  background-color: #FFF;
  margin: 5px 0px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}


.klink {
  text-align: center;
}
.klink a {
  color:var(--mcolor);
  font-size:13px;
}

.tline >div {
  display: flex;
  align-items: center;
}
.tline >div >div {
  /*flex:1;
	*/
}
.tline >div >div >span {
  font-size:12px;
  font-weight: bold;
}

.tline div.lbs {
  display: flex;
  border-top: 1px solid #ddd;
  margin-top: 7px;
  padding-top: 10px;
}
.tline div.lbs label {
  flex:1;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size:13px;
  font-weight: 600;
}

.tline div.lbs label input {
  margin-right: 5px;
}

.matchline {
  display: flex;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #DDD;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2);
}
.matchline span a {
  color:var(--mcolor);
  margin-right: 5px;
}

.result-title {
  color:#444;
  border-bottom: 1px solid #DDD;
  padding: 10px;
  font-weight: bold;
}

.edit-title {
  font-size:18px;
  padding: 25px;
  border-bottom:1px solid #DDD;
}
.tombala-content {
  background-color: #111;
  padding: 0px;
  margin: 0px;
  padding-left: 0px;
  margin-left:0px;
  border-radius: 20px;
}
.intombala {
  width: 1300px;
  margin: 0 auto;
  height: 1000px;
}

.colorize {
  display: flex;
  align-items: center;
  gap: 3px;
  position: static;
}
.fikir {
  display: none;
}
.versiyon {
  position: static;
  font-size: 11px;
  color: #999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.versiyon a {
  color: var(--mcolor);
}
.colorize >a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,.35);
  margin: 0;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.colorize >a:hover {
  transform: scale(1.12);
  border-color: #222;
}
.colorize >a.selected {
  border-color: #222;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0,0,0,.35);
}
.colorize >a.selected::after {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "Font Awesome 5 Brands", FontAwesome;
  font-weight: 900;
  font-size: 9px;
  line-height: 1;
  color: #fff;
  transform: none;
  width: auto;
  height: auto;
  border: 0;
  box-shadow: none;
}


.colorize >a.red {
  background-color: #BC2121;
}
.colorize >a.blue {
  background-color: #217cbc;
}
.colorize >a.orange {
  background-color: #ca8210;
}
.colorize >a.green {
  background-color: #749314;
}
.colorize >a.bordo {
  background-color: #83154f;
}
.colorize > a.pembe {
  background-color: #e91e63;
}
.colorize > a.v2-switch-button {
  width: auto;
  height: 22px;
  padding: 0 7px;
  margin-left: 6px;
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(135deg, #ff8a00 0%, #ff2d55 55%, #7c3aed 100%);
  box-shadow: 0 8px 18px rgba(255, 45, 85, .35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.colorize > a.v2-switch-button:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 12px 24px rgba(255, 45, 85, .45);
  filter: saturate(1.08);
  border-color: transparent;
}
.colorize > a.v2-switch-button i {
  font-size: 11px;
}

.live-perform {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 265px;
  display: none;
  background-color: #111;
}

a.cancelbutton {
  background-color: #BC2121;
  font-size:11px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  padding: 0px 15px;
}

a.printbutton {
  background-color: #888;
  font-size:11px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  padding: 0px 15px;
}

a.odendi {
  background-color: #d98a01;
  font-size:11px;
  font-weight: bold;
  text-decoration: none;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  padding: 0px 15px;
}

span.odendi-icon {
  background-color: #28a745;
  font-size:11px;
  font-weight: bold;
  color:#FFF;
  height: 25px;
  display: inline-block;text-align: center;
  border-radius: 5px;
  line-height: 25px;
  padding: 0px 15px;
  cursor: default;
}

span.odendi-icon i {
  font-size: 12px;
}

/* dikey duyuru slider */
.red-notice-slider {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
  margin-bottom: 15px;
}
.red-notice-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
  height: 100%;
}
.red-notice-item {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #FFF;
  background-color: #BC2121;
  border-radius: 20px;
  text-align: center;
  box-sizing: border-box;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.red-notice-item.active {
  transform: translateY(0);
  opacity: 1;
}
.red-notice-item.out {
  transform: translateY(-100%);
  opacity: 0;
}
.red-notice-prev,
.red-notice-next {
  background: #BC2121;
  border: none;
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.red-notice-prev:hover,
.red-notice-next:hover {
  background: #9a1b1b;
}
.red-notice-prev {
  margin-right: 10px;
}
.red-notice-next {
  margin-left: 10px;
}

/* eski red-notice uyumluluğu için */
.red-notice {
  padding: 15px;
  color:#FFF;
  background-color: #BC2121;
  border-radius: 20px;
  text-align: center;
  margin-bottom:15px;
}

.livelistleft {
  width: 250px;
  margin-right: 15px;

}

.leftulkebox {
  background-color: #222;
  margin-bottom: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.leftulketitle {
  font-size:14px;
  font-weight: 400;
  color:#FFF;
  display: flex;
  padding: 10px;
  align-items: center;
}
.leftulketitle i {
  display: inline-block;
  margin-right: 5px;
}

.leftulketitle span {
  font-size:11px;
  padding: 0px 5px;
  text-align: right;
  flex:1;
  color:#888;
}


.leftmatchbox {
  display: flex;
  font-family: Arial;
  flex-direction: column;
}

.leftmatchbox:hover {
  box-shadow: 0px 0px 10px #000;
  cursor: pointer;
}
.leftmatchbox .teams {
  background-color: var(--mcolor);
  color:#FFF;
  padding: 5px;
  font-weight: bold;
  font-size:12px;
  border-bottom: 2px solid rgba(0,0,0,.2);
}
.leftmatchlist {
  padding: 5px;
}
.leftmatchbox .teams span {
  display: inherit;
  font-size:11px;
  color:rgba(255,255,255,.8);
  font-weight: normal;
}
.leftmatchbox .infos {
  background-color: #FFF;
  display: flex;
  padding: 5px;
}
.leftmatchbox .infos div {
  flex:1;
  justify-content: center;
  align-items: center;
  font-size:12px;
  font-weight: bold;
}

.leftmatchbox .infos div:nth-child(2) {
  flex-grow: 3;
  font-weight: normal;
  text-align: center;
}

.leftmatchbox .infos div:nth-child(3) {
  text-align: right;
  align-items: right;
}

.leftmatchbox.selected .teams {
  background-color: #ffcc00;
  color:#222 !important;
}
.leftmatchbox.selected .teams span {
  color:rgba(0,0,0,.7);
}

.mbs-title {
  padding: 10px;
  font-size:13px;
  font-weight: 500;
}

.getuser {
  position: absolute;
  right:5px;
  top:5px;
  cursor: pointer;
}

.getuser:hover {
  color:var(--mcolor);
}

.flcoms {
  display: flex;
  align-items: center;
}

.flcoms input {
  width: 150px;
}
.flcoms span {
  font-weight: bold;
  margin-right: 5px;
}

.kodugir {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
}
span.olusturan {
  display: inherit;
  font-weight: normal;
  font-size:11px;
}

.leftlistsearch {
  padding: 10px;
  background-color: #222;
  border-radius: 10px;
  margin-bottom: 5px;
}

div.odem {
  font-size:16px;
  color:#14892c;
  position: absolute;
  right:10px;
  top:10px;
  left:auto;
}

.melabel {
  display: flex;
  align-items: center;
  padding: 5px;
}
.melabel input {
  margin-right: 5px;
}

.duyurubox {
  padding: 10px;
  margin: 5px 5px 0px;
  border: 1px solid #DDD;
  background-color: #f0f0f0;
  box-shadow: 0px 0px 10px #000;
  font-size:12px;
  font-family: Arial;
  font-weight: bold;
  border-radius: 10px;
}

.duyuruboxim {
  padding: 5px;
  width: 100%;
  background-color: #f0f0f0;
  margin: 2px 0px;
}

.sistemkapali {
  padding: 15px;
  background-color: #fff4ce;
  color: #222;
  margin: 10px;
  font-weight: bold;
  font-size:12px;
}

.mbscont {
  width: 400px;
  min-width: 400px;
  max-width: 400px;
}
.mbswide {
  width: 900px;
  min-width: 900px;
  max-width: 900px;
}

.valli {
  background-color: var(--mcolor);
  color:#FFF;
  border:1px solid rgba(0,0,0,.2);
}

.newkuponda, .hatabildir {
  padding: 15px 20px;
  color:#FFF;
  background-color: var(--mcolor);
  font-family: Arial;
  font-size:12px;
  font-weight: bold;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid rgba(0,0,0,.2);
  margin: 5px 0px;
}

.kuponbozdur {
  padding: 15px 20px;
  color:#FFF;
  background-color: #14892c;
  font-family: Arial;
  font-size:12px;
  font-weight: bold;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid rgba(0,0,0,.2);
  margin: 5px 0px;
	margin-left: 10px;
}
.kuponbozdur:hover {
	opacity: 0.9;
}
.kuponduzenle {
  padding: 15px 20px;
  color:#FFF;
  background-color: orange;
  font-family: Arial;
  font-size:12px;
  font-weight: bold;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
	border: unset;
  border-bottom: 2px solid rgba(0,0,0,.2);
  margin: 5px 0px;
	margin-left: 10px;
}
.kuponduzenle:hover {
	opacity: 0.9;
}

.editoranbox {
  margin: 5px 0px;
  border: 1px solid #DDD;
  font-family: Arial;
}
.editorantitle {
  padding: 8px;
  font-size:12px;
  border-bottom: 1px solid rgba(0,0,0,.2);
  font-weight: bold;
  background-color: rgba(0,0,0,.1);
}

.editorantotalsec {
  display: flex;
}
.editorantotalsec >div {
  flex:1;
}
.editoranodd {
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #DDD;
  margin: 1px;
  padding-bottom: 23px;
}
.editoranodd >span {
  flex:1;
}
.editoranodd >span.title {
    font-size:12px;
}

.editoranodd >span.odds {
  max-width: 70px;
  width: 70px;
  min-width: 70px;
  position: relative;
}

.editoranodd >span.odds input {
  text-align: center;
}

.editoranodd >span.odds .aeksi {
  position: absolute;
  display: flex;
  bottom:-15px;
  width: 100%;
}

.editoranodd >span.odds .aeksi a {
  align-items: center;
  justify-content: center;
  display: flex;
  color:#FFF;
  text-decoration: none;
  font-weight: bold;
  flex:1;
  border-top:2px solid rgba(0,0,0,.2);
}

.editoranodd >span.odds .aeksi a:last-child {
  background-color: #14892c;
}
.editoranodd >span.odds .aeksi a:first-child {
  background-color: #BC2121;
}

.editoranodd >span.odds .aeksi a:hover {
  filter:brightness(110%);
}


.editoranodd >span.title >span.orjin {
    font-weight: bold;
    display: inherit;
}

.input.degisimli {
  border: 1px solid #222;
  background-color: #fff4ce;
  color:#222;
}

.edit-buttons {
  padding: 10px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.5);
  margin: 5px 0px 5px;
}
.edit-buttons a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #ddd;
  border: 1px solid rgba(0,0,0,.4);
  box-shadow: 0px 5px 10px #FFF inset, 0px 0px 10px #000;
  color:#222;
  font-weight: bold;
  font-family: Arial;
  text-decoration: none;
  font-size:12px;
  margin: 0px 5px;
  border-radius: 5px;
}


.edit-buttons a.aktifet {
  background-color: #14892c;
  box-shadow: none;
  color:#FFF;
}

.sistemalan {
  margin: 7px;
  background-color: rgba(0,0,0,.5);
  border-radius: 10px;
}
.sistemtitle {
  font-family: Arial;
  font-size:12px;
  font-weight: bold;
  padding: 7px 7px 0px;
  color:#FFF;
}

.sistems {
  display: flex;
  padding: 7px;
  flex-wrap: wrap;
}
.sistems a {
  display: inline-block;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd;
  border: 1px solid rgba(0,0,0,.4);
  box-shadow: 0px 5px 10px rgba(255,255,255,.5) inset, 0px 0px 10px #000;
  color:#222;
  font-weight: bold;
  font-family: Arial;
  text-decoration: none;
  font-size:12px;
  margin:2px;
  border-radius: 3px;
}

.sistems a:hover {
  filter:brightness(110%);
}
.sistems a.selected {
  background-color: var(--mcolor);
  color:#FFF;
}

.othertitles {
  font-size:24px;
  font-weight: bold;
  padding: 10px;
}
.chat-user-line {
  display: flex;
  background-color: #f0f0f0;
  border-bottom: 1px solid #DDD;
  border-top: 1px solid #FFF;
  font-size:13px;
  flex-direction: row;
  padding: 7px 13px;
  justify-content: space-between;
  align-items: center;
}
.chat-user-line.selected {
  background-color: #FFF;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2) inset;
  border-color:rgba(0,0,0,.1);
}
.chat-username {
  font-weight: 500;
}
.chat-lastseen {
  font-size:12px;
}

.chat-lastseen font {
  color:#007700;
  font-size:13px;
}

.chat-user-line:hover {
  background-color: #FFF;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2) inset;
  border-color:rgba(0,0,0,.1);
}

.chat-screen {
  position: absolute;
  width: 400px;
  height: 500px;
  background-color: #f0f0f0;
  border: 1px solid #DDD;
  box-shadow: 0px 0px 30px rgba(0,0,0,.4);
  top:41px;
  left:-400px;
  z-index: 1000;
  display: none;
  padding: 5px;
}

.chat-content {
  position: relative;
}

.nooverflow {
  overflow: visible;
  position: relative;
}

.topradius {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-screen-content {
  background-color: rgba(0,0,0,.1);
  display: flex;
  height: 100%;
  width: 100%;
  border: 1px solid #FFF;
  box-shadow: 0px 0px 10px rgba(0,0,0,.1) inset;
  display: flex;
  flex-direction: column;
}

.chat-title {
  padding: 10px 15px;
  color:var(--mcolor);
  background-color: #fff;
  font-size:13px;
  font-weight: 500;
}

.chat-screen-username {
  padding: 10px;
  display: flex;
  background-color: #FFF;
  flex-direction: column;
  position: relative;
}
.chat-screen-username img {
  position: absolute;
  right:10px;
  top:5px;
}

.chat-area {
  flex:1;
  background-image: url('./../images/chat-back.png');
  background-size: cover;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
}

.chat-area::-webkit-scrollbar-track {
	background-color: #e5ddd5;
  cursor: pointer;
  box-shadow: none;
}
.chat-area::-webkit-scrollbar {
	width: 10px;
	background-color: rgba(0,0,0,.5);
  border: 1px solid transparent;
	cursor:pointer;
  box-shadow: none;
}
.chat-area::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,.2);
  border: 1px solid transparent;
  box-shadow: none;
  cursor: pointer;
}
.chat-area::-webkit-scrollbar:hover {
  cursor: pointer;
}

.chat-screen-username .uname {
  font-weight: 500;
  font-size:14px;
}
.chat-screen-username .lastseen {
  font-size:11px;
  color:rgba(0,0,0,.5);
}

.chatinput {
  width: 100%;
  height: 40px;
  padding: 0px 15px;
  border: none;
  outline: none;
  font-family: Arial;
  font-weight: bold;
  box-sizing: border-box;
  border-radius: 0px;
  -webkit-appearance: none;
}


.chatinput::placeholder {
  font-weight: normal;
  font-size:11px;
  color:rgba(0,0,0,.4);
}

.chat-input {
  display: flex;
}
.chat-input a {
  width: 50px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color:#444;
  background-color: #f9f9f9
}

.msgs {
  display: flex;
  flex-direction: column;
}
.me-msg {
  padding: 3px 5px;
  word-wrap: break-word;
  text-align: right;
}

.me-msg >span {
  background-color: #d9fdd3;
  padding: 5px;
  display: inline-block;
  font-size:12px;
  font-family: Arial;
  max-width: 50%;
  border-radius: 5px;
  box-shadow: 0px 1px 0px rgba(0,0,0,.2);
}

.me-msg >font {
  font-size:10px;
  margin-left:5px;
}



.your-msg {
  padding: 3px 5px;
  word-wrap: break-word;
  text-align: left;
}

.your-msg >span {
  background-color: #f9f9f9;
  padding: 5px;
  display: inline-block;
  font-size:12px;
  font-family: Arial;
  max-width: 50%;
  border-radius: 5px;
  box-shadow: 0px 1px 0px rgba(0,0,0,.2);
}

.chat-onmsg {
  max-width: 50px;
  width: 50px;
  min-width: 50px;
  color:#BC2121;
  flex:initial;
}

.closechat {
  position: absolute;
  color: #FFF;
  font-size:12px;
  font-weight: 500;
  right:13px;
  top:13px;
  padding: 5px 10px;
  background-color: #BC2121;
  cursor: pointer;
  border-radius: 3px;
}

.onna {
  background-color: #222;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.chat-username >span {
  display: inherit;
  font-size:11px;
}
.pulsat {
  animation: pulsat 1s infinite;
}
@keyframes pulsat {
  0% {
    opacity:1;
  }
  50% {
    opacity:0.2;
  }
  1000% {
    opacity:1;
  }

}

.getsistem {
  color:var(--mcolor);
  font-size:18px;
  text-decoration: none;
}

.getsistem:hover {
  color:#222;
}

.karart {
  position: fixed;
  z-index: 99999;
  background: rgba(0,0,0,.5);
  width: 100%;
  height: 100%;
  display: none;
}
.karart-inside {
  width: 600px;
  background-color: #FFF;
  padding: 10px;
  margin: 0 auto;
  margin-top:50px;
  box-shadow: 0px 0px 50px #000;
  position: relative;
  display: flex;
  flex-direction: column;
}
.system-title {
  padding: 15px;
  font-size:24px;
}

.systemclose {
  width: 50px;
  height: 50px;
  position: absolute;
  font-size:34px;
  color:#BC2121;
  border-radius: 25px;
  background-color: #FFF;
  top:-10px;
  right:-10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.systemclose:hover {
  color:#222;
  cursor: pointer;
}

.sistem-title {
  padding: 5px 15px;
  border-bottom: 1px solid #DDD;
  margin-top: 20px;
  color:var(--mcolor);
  font-weight: 600;
}
.sistem-title:hover {
  color:#222;
  cursor: pointer;
}

.insistem {
  flex:1;
  height: 100%;
  overflow: auto;
}

.sistem-kuponbox {
  padding: 2px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-family: Arial;
  font-size:12px;
  display: flex;
  flex-direction:column;
  margin-top:15px;
  display: none;
}

.sistem-macbox {
  display: flex;
  padding: 10px;
  background: rgba(255,255,255,.6);
  border-bottom: 1px solid #DDD;
  justify-content: space-between;
}
.sistem-macbox div {
  flex:1;
}
.sistem-macbox div.teamnames {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}
.sistem-totals {
  display: flex;
  margin-top:5px;
  background-color: #f0f0f0;
  padding: 10px;
  justify-content: space-between;
}

.sistem-totals div {
  flex:1;
  font-weight: bold;
}




.sistem-macbox.drm1 {
  /* background-color: rgba(20,137,44,.1); */
  color:#14892c;
  font-weight: bold;
}

.sistem-macbox.drm2 {
  /* background-color: rgba(188,33,33,.05); */
  color:#BC2121;
  font-weight: bold;
}
.sistem-macbox.drm4, .sistem-macbox.drm7 {
  /* background-color: rgba(0,0,0,.02); */
  color:#999;
  font-weight: bold;
}

.sistem-totals.sistem_kazanc {
  background-color: #14892c;
  color:#FFF;
  padding: 5px;
  border-radius: 5px;
}
.sistem-totals.sistem_kayip {
  background-color: #BC2121;
  color:#FFF;
  padding: 5px;
  border-radius: 5px;
}

.opened-sistem {
  display: flex;
}

.slt span.header-menu-new {
  position: absolute;
  background-color: #111;
  font-size:11px;
  color:#FFF;
  width: 50px;
  height: 20px;

}
.inslotbox {
  position: absolute;
  top:18px;
  padding: 5px;
  margin-left:15px;
  transition: 300ms all;
  display: flex;
  justify-content: center;
  background-color: #111;
  border-radius: 5px;
  border-bottom: 2px solid #000;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2);

}

.inslotbox::before {
  position: absolute;
  content:'YENİ';
  background-color: var(--mcolor);
  color:#FFF;
  font-size:11px;
  padding: 4px 7px;
  font-weight: bold;
  right:-45px;
  border-radius: 3px;
}
.inslotbox::after {
  position: absolute;
  content:'';
  border:6px solid transparent;
  border-right-color:var(--mcolor);
  right:-7px;
  top:11px;
}
.gotoslots {
  display: flex;
  justify-content: center;
  flex-direction:column;
  margin-right: 10px;
}
.inslotbox img {
  transition: 300ms all;
  box-shadow: 0px 0px 15px rgba(0,0,0,.5);
  margin-right: 15px;
}

.gotoslots span.title {
  font-weight: bold;
  font-size:16px;
  color:#FFF;
}

.gotoslots  span.gototext {
  font-size:12px;
  color:#FFF;

}
.inslotbox:hover {
  color:#FFF;
  cursor: pointer;
}
.inslotbox:hover  img {
}
.slot-title {
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  color:#FFF;
  font-weight: bold;
  padding: 20px 30px;
}

.slotcenter {
  display: flex;
  background: rgba(0,0,0,.5);
  border-radius: 20px;
  overflow: hidden;
}

.slot-providers {
  width: 250px;
}
.slots {
  flex:1;
  display: flex;
  flex-direction: column;
}

.provs {
  display: flex;
  flex-direction: column;
  padding: 0px 25px 25px;
}
.provs a {
  color:#FFF;
  margin: 2px 0px;
  background: rgba(0,0,0,.5);
  padding: 7px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.provs a img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.provs a:hover {
  background-color: #000;
}

.provs a.selected {
  background-color: #000;
  color:rgba(255,255,255,.6);
}

.slotlist {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  align-items: flex-start;
}

.slot-box {
  /* width: 200px; */
  width: 20%;
  height: 170px;
  position: relative;
  background-color: #111;
}
.slot-box>* {
  flex: 1 1 80px;
}
.slot-name {
  color:#FFF;
  font-size:16px;
  position: relative;
  z-index: 999;
  display: flex;
  padding: 10px;
  align-items: flex-end;
  height: 100%;
  box-shadow: 0px -40px 40px rgba(0,0,0,1) inset;
  transition: 300ms all;
}
.slotimg {
  position: absolute;
  left:2px;
  top:2px;
  right:2px;
  bottom:2px;
  background-size: 100%;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,.4);

}
.slot-box:hover {
  cursor: pointer;
  box-shadow: 0px 0px 20px var(--mcolor);
  background-color: var(--mcolor);
}
.slot-box:hover .slot-name {
  box-shadow: none;
}

.slot-limit {
  font-size:24px;
  padding: 0px 30px;
  color:#FFF;
  font-weight: bold;
  color:#FFF;
}

.slotsearch {
  padding: 20px;
  background-color: #222;
  border-bottom-left-radius: 20px;
}

.slotsearch input {
  border-radius: 5px !important;
}

.slot-limit span {
  display: inline-block;
  background-color: #111;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.slot-fixed {
	position: fixed;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background: rgba(0,0,0,.8);
	width: 100%;
	height: 100%;z-index: 99999999;
	display: none;
}

.slot-fixed-content {
	width: 1200px;
	height: 800px;
	background-color:#333;
	margin: 0 auto;
	margin-top:50px;
	position: relative;
	display: flex;
	padding: 10px;
}

.slot-close {
	position: absolute;
	font-size:15px;
	color:#FFF;
	z-index: 9999999;
	padding: 8px 15px;
	background: #333;
	right:0px;
	top:-32px;
}
.slot-close:hover {
	background-color: #BC2121;
	color:#FFF;
	cursor: pointer;
}

.slot-cont {
	flex:1;
	height: 100%;
	width:100%;
	background-color: #111;
}

.slotframe {
	width: 100%;
	height: 100%;
}
.casino-block {
  display: flex;
}
.casino-block table {
  margin: 5px;
  border: 2px solid #999;
}

.casino-totalz {
  display: flex;
  padding: 15px;
  background: rgba(255,255,255,.5);
  margin: 5px;
}
.casino-totalz div.cblok {
  display: flex;
  flex-direction: column;
  padding: 5px;
  margin-right: 20px;
  font-size:34px;
  font-weight: bold;
}

.casino-totalz div.cblok span {
  font-size:14px;
  font-weight: normal;
}

.live-favorite {
  position: absolute;
  background-color: #111;
  width: 25px;
  height: 25px;
  top:-1px;
  left:-15px;
  border: 1px solid rgba(255,255,255,.2);
  top:50%;
  margin-top:-12.5px;
  color:#ffcc00;
  font-size:14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leftmatchbox .infos {
	position: relative;
}
.leftmatchbox .live-favorite {
	left: 0;
	top: 0;
	margin: unset;
	background: #333;
	border: unset;
	height: 24px;
}
.leftmatchbox .infos {
	padding-left: 30px !important;
}

.live-favorite:hover {
  cursor: pointer;
  color:#FFF;
}

.fa-mobile-retro {
  color:var(--mcolor) !important;
}

.labne {
  display: flex;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}
.labne input {
  margin-right: 5px;
}

.livecasino-area {
  display: flex;
  width: 100%;
  background-color: #000;
  padding: 15px;
  justify-content: space-around;
  border-top-left-radius: 25px;
}

.livecasino-area .big-one:first-child {
  border-top-left-radius: 25px;
}

.big-one {
  flex:1;
  height: 200px;
  background-size: cover;
  border:1px solid #222;
  box-shadow: 0px 0px 50px #000 inset;
  display: flex;
  position: relative;
  margin-right: 5px;
}
.big-one-text {
  color:#FFF;
  font-weight: normal;
  bottom:0px;
  position: absolute;
  width: 100%;
  background: rgba(0,0,0,.9);
  padding: 15px;
}
.big-one-text span {
  font-size:24px;
  font-weight: bold;
  display: inherit;
}

.livecasino-title {
  font-size:34px;
  font-weight: bold;
  color:#FFF;
  padding: 15px 25px;
}

.big-one:hover {
  box-shadow: none;
  border:1px solid var(--mcolor);
  cursor: pointer;
  box-shadow: 0px 0px 50px var(--mcolor);
}

.cflag {
  background-size: 90% 90%;
  background-repeat: no-repeat;
  background-position: center center;
}

.sonucline {
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #DDD;
  box-shadow: 0px 0px 3px rgba(0,0,0,.05);
  font-size:13px;
  display: flex;
  margin: 5px 0px;
}

.slots-header {
  padding: 15px;
  background-color: rgba(0,0,0,.7);
  border-radius: 20px;
}

.inslot-header {
  display: flex;
}
.inslot-header >div {
  padding: 15px 25px;
  background-color: rgba(255,255,255,.05);
  color:#FFF;
  display: flex;
  flex-direction: column;
}

.inslot-header >div:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.inslot-header >div >div.cbalance {
  font-size:24px;
  font-weight: bold;
}
.inslot-header >div.nopads {
  padding: 0px;
}

.yeni-alan {
  position: absolute;
  width: 70px;
  height: 66px;
  background-image: url('./../images/yeni.png');
  z-index: 9999;
  right:3px;
  top:3px;
}

.yeni-alan span {
  color:#FFF;
  font-weight: bold;
  transform: rotate(45deg);
  position: absolute;
  right:3px;
  top:12px;
  font-size:12px;
}

.resultbox {
  display: flex;
}

.kuponlar tr.sonucs td {
  padding: 5px 10px;
}
.kuponlar tr.sonucs td input {
  width: 80px;
}

.sbutton {
  display: flex;
  height: 30px;
  background-color: var(--mcolor);
  color:#FFF;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0,0,0,.1);
  border-bottom: 2px solid rgba(0,0,0,.2);
  border-radius: 3px;
  text-decoration: none;
}

.sbutton:hover {
  filter:brightness(110%);
}

.inresultbox {

}

.sonucks {
}

.altver {
  display: inherit;
}

.altver >span {
  display: inherit;
  font-weight: normal;
  padding: 5px 0px;
}


.usertable tr td.ackapat {
  width: 90px;
  max-width: 90px;
  min-width: 90px;
  padding: 0px;
  text-align: center;
}
.usertable tr td.ackapat a {
  background-color: #f0f0f0;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 4px;
}

.usertable tr td.ackapat a:hover {
  background-color: #222;
  color:#FFF;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.tooltip-icon {
    color: #999;
    font-size: 14px;
    cursor: help;
    transition: color 0.2s ease;
}

.tooltip-icon:hover {
    color: #666;
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff !important;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: normal;
    width: 250px;
    font-size: 12px !important;
    line-height: 1.4;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-weight: normal !important;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.form-title-with-tooltip {
    display: flex;
    align-items: center;
    width: 100%;
}

/* ── Sol filtre paneli ── */
.casino-filters-title {
    font-size: 14px;
    color: #fff;
    position: relative;
    padding: 14px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 55%, #141414 100%);
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 12px 12px 0 0;
    letter-spacing: .3px;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.03);
}
.casino-filters-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mcolor), var(--color), var(--mcolor), transparent);
    opacity: .9;
    border-radius: 12px 12px 0 0;
}
.casino-filters-title-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.casino-filters-title-text i {
    color: var(--mcolor);
    font-size: 13px;
    opacity: .95;
}
.casino-holder {
    display: flex;
    flex: 1;
    align-items: flex-start;
}
.casino-left {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 10px;
    align-self: flex-start;
    max-height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
    z-index: 5;
}
.casino-filters-holder {
    background: linear-gradient(180deg, #222 0%, #1b1b1b 100%);
    border-radius: 0 0 12px 12px;
    padding: 14px 12px 16px;
    border: 1px solid rgba(255,255,255,.05);
    border-top: none;
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.15) transparent;
}
.casino-filters-holder::-webkit-scrollbar {
    width: 5px;
}
.casino-filters-holder::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15);
    border-radius: 10px;
}
.casino-filters {
    display: flex;
    flex-wrap: wrap;
}
.casino-filters > span {
    width: 50%;
}
.casino-clear-link {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
}
.casino-clear-link:hover {
    color: #fff;
    border-color: color-mix(in srgb, var(--mcolor) 50%, transparent);
    background: color-mix(in srgb, var(--mcolor) 18%, transparent);
    box-shadow: 0 0 12px color-mix(in srgb, var(--mcolor) 22%, transparent);
}
.casino-filters.filter-user {
    gap: 8px;
    margin-bottom: 2px;
}
.casino-filters.filter-user > span {
    background: linear-gradient(180deg, #2c2c2c, #252525);
    color: #e8e8e8;
    flex: 1;
    width: auto;
    min-width: 0;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.07);
    height: 42px;
    border-radius: 10px;
    white-space: nowrap;
    cursor: pointer;
    transition: background .2s, box-shadow .25s, border-color .2s, transform .15s, color .2s;
}
.casino-filters.filter-user > span:hover {
    background: linear-gradient(180deg, #333, #2a2a2a);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}
.casino-filters.filter-user > span.active {
    background: linear-gradient(135deg, var(--mcolor), color-mix(in srgb, var(--mcolor) 72%, #000));
    box-shadow: 0 6px 18px color-mix(in srgb, var(--mcolor) 35%, transparent), inset 0 1px 0 rgba(255,255,255,.18);
    border-color: color-mix(in srgb, var(--mcolor) 55%, transparent);
    color: #fff;
}
.casino-filters.filter-user > span:first-child,
.casino-filters.filter-user > span:last-child {
    border-radius: 10px;
}
.casino-filters.filter-user > span i {
    margin-right: 6px;
    font-size: 12px;
    opacity: .85;
}
.casino-filters.filter-user > span.active i {
    opacity: 1;
}
.casino-filter-title {
    margin: 16px 0 10px;
    height: auto;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0 2px;
    color: rgba(255,255,255,.55);
    background: none;
    border: none;
    border-top: none;
    border-bottom: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.casino-filter-title i {
    color: var(--mcolor);
    font-size: 11px;
    opacity: .9;
}
.casino-filters.filter-category {
    padding: 0;
    gap: 6px;
}
.casino-filters.filter-category > span {
    width: auto;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    height: auto;
    min-height: 30px;
    position: relative;
    padding: 5px 12px 5px 26px;
    cursor: pointer;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
}
.casino-filters.filter-category > span:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
}
.casino-filters.filter-category > span:hover:before {
    background: #fff;
    box-shadow: 0 0 6px rgba(255,255,255,.35);
}
.casino-filters.filter-category > span:before {
    content: "";
    position: absolute;
    left: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
    transition: background .2s, box-shadow .2s;
}
.casino-filters.filter-category > span.active {
    color: #fff;
    background: color-mix(in srgb, var(--mcolor) 18%, transparent);
    border-color: color-mix(in srgb, var(--mcolor) 45%, transparent);
    box-shadow: 0 0 14px color-mix(in srgb, var(--mcolor) 18%, transparent);
}
.casino-filters.filter-category > span.active:before {
    background: var(--mcolor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--mcolor) 55%, transparent);
}
.provider-search-container {
    position: relative;
    padding: 0;
    margin: 0 0 12px;
}
.provider-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.35);
    font-size: 12px;
    pointer-events: none;
    transition: color .2s;
    z-index: 1;
}
.provider-search-container:focus-within .provider-search-icon {
    color: var(--mcolor);
}
.provider-search-input {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: 12px;
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.provider-search-input:focus {
    border-color: color-mix(in srgb, var(--mcolor) 55%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mcolor) 16%, transparent);
    background: rgba(0,0,0,.45);
}
.provider-search-input::placeholder {
    color: rgba(255,255,255,.35);
}
.casino-filters.filter-provider {
    padding: 0;
    overflow-y: auto;
    max-height: min(380px, 42vh);
    margin: 0 -2px;
    padding: 2px;
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.15) transparent;
}
.casino-filters.filter-provider::-webkit-scrollbar {
    width: 5px;
}
.casino-filters.filter-provider::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15);
    border-radius: 10px;
}
.casino-filters.filter-provider > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: calc((100% - 16px) / 3);
    margin: 0;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(0,0,0,.2);
    padding: 8px 6px 6px;
    transition: border-color .2s, background .2s, box-shadow .25s, transform .15s;
}
.casino-filters.filter-provider > span:hover {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    transform: translateY(-1px);
}
.casino-filters.filter-provider > span .provider-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    border-radius: 6px;
    overflow: hidden;
}
.casino-filters.filter-provider > span img {
    width: 100%;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    opacity: .38;
    filter: grayscale(100%);
    transition: opacity .3s, filter .3s, transform .25s;
}
.casino-filters.filter-provider > span:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.04);
}
.casino-filters.filter-provider > span.active {
    border-color: color-mix(in srgb, var(--mcolor) 55%, transparent);
    background: color-mix(in srgb, var(--mcolor) 12%, transparent);
    box-shadow: 0 0 16px color-mix(in srgb, var(--mcolor) 22%, transparent), inset 0 0 0 1px color-mix(in srgb, var(--mcolor) 15%, transparent);
}
.casino-filters.filter-provider > span.active img {
    opacity: 1;
    filter: grayscale(0%);
}
.casino-filters.filter-provider > span .provider-name {
    height: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255,255,255,.4);
    text-align: center;
    padding: 2px 2px 0;
    margin-top: 4px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    transition: color .2s;
}
.casino-filters.filter-provider > span:hover .provider-name {
    color: rgba(255,255,255,.85);
}
.casino-filters.filter-provider > span.active .provider-name {
    color: #fff;
    font-weight: 700;
}
.casino-filters.filter-provider > span.active:before {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    width: auto;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, transparent, var(--mcolor), transparent);
    z-index: 3;
    box-shadow: 0 0 8px color-mix(in srgb, var(--mcolor) 50%, transparent);
}
.casino-right {
    flex: 1;
    padding-left: 15px;
    min-width: 0;
}
@media (max-width: 1500px) {
    .casino-game {
        width: calc((100% - 36px) / 4);
    }
}
@media (max-width: 1200px) {
    .casino-game {
        width: calc((100% - 24px) / 3);
    }
    .casino-left {
        width: 270px;
    }
    .casino-filters.filter-user > span {
        font-size: 11px;
        padding: 0 6px;
    }
}
.casino-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1c1c1c 100%);
    border-radius: 10px 10px 0 0;
    box-shadow: 0px -8px 18px rgba(0,0,0,.55) inset, 0 1px 0 rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
}
.casino-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mcolor), var(--color), var(--mcolor), transparent);
    opacity: .85;
}
.casino-title {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    flex: 1;
    letter-spacing: .3px;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.casino-search {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 0 12px;
    transition: border-color .25s, box-shadow .25s;
}
.casino-search:focus-within {
    border-color: color-mix(in srgb, var(--mcolor) 55%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mcolor) 18%, transparent);
}
.casino-search button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}
.casino-search input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 10px;
    width: 360px;
    outline: none;
}
.casino-search i {
    color: rgba(255,255,255,.7);
    font-size: 14px;
}
.casino-balance {
    display: flex;
    align-items: center;
    color: #d0d0d0;
    font-size: 13px;
    padding-right: 15px;
    font-weight: 500;
}
.casino-balance b {
    display: inline-block;
    padding: 6px 12px;
    margin-left: 6px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid color-mix(in srgb, var(--color) 35%, transparent);
    border-radius: 8px;
    color: var(--color);
    box-shadow: 0 0 14px color-mix(in srgb, var(--color) 18%, transparent);
    font-size: 14px;
}
.casino-games {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 4px 0 8px;
}
.casino-game {
    width: calc((100% - 48px) / 5);
    position: relative;
    cursor: pointer;
    background: #1a1a1a;
    border-radius: 12px;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    isolation: isolate;
}
.casino-game:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--mcolor) 55%, transparent);
    box-shadow:
        0 16px 36px rgba(0,0,0,.5),
        0 0 0 1px color-mix(in srgb, var(--mcolor) 35%, transparent),
        0 0 28px color-mix(in srgb, var(--mcolor) 28%, transparent);
}
.casino-game.is-live:hover {
    border-color: color-mix(in srgb, #22c55e 60%, transparent);
    box-shadow:
        0 16px 36px rgba(0,0,0,.5),
        0 0 0 1px color-mix(in srgb, #22c55e 40%, transparent),
        0 0 28px rgba(34, 197, 94, .28);
}
.casino-game .casino-img {
    display: block;
    overflow: hidden;
    position: relative;
    background: #111;
}
.casino-game img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.casino-game:hover img {
    transform: scale(1.12);
}
.casino-img-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 35%),
        linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 42%, transparent 70%);
    z-index: 1;
    transition: opacity .3s;
}
.casino-game:hover .casino-img-shade {
    background:
        linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 35%),
        linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.2) 100%);
}
.casino-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.casino-shine:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 45%;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.04) 40%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.04) 60%, transparent 100%);
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
}
.casino-game:hover .casino-shine:after {
    animation: casino-shine-sweep .85s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes casino-shine-sweep {
    0%   { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
    20%  { opacity: .7; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
.casino-live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(34,197,94,.4);
    color: #4ade80;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.casino-live-badge .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: casino-live-pulse 1.4s ease-in-out infinite;
}
@keyframes casino-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.85); }
}
.casino-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -40%) scale(.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mcolor), color-mix(in srgb, var(--mcolor) 70%, #000));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--mcolor) 45%, transparent), inset 0 1px 0 rgba(255,255,255,.2);
    transition: opacity .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
    white-space: nowrap;
}
.casino-play-btn i {
    font-size: 11px;
    margin-left: 1px;
}
.casino-play-btn em {
    font-style: normal;
}
.casino-game:hover .casino-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.casino-game.is-live .casino-play-btn {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 8px 24px rgba(22,163,74,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.casino-game-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 10px 12px 12px;
    color: #fff;
    pointer-events: none;
}
.casino-game-title strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.casino-game-title span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 500;
}
.casino-game:hover .casino-game-title strong {
    color: #fff;
}
.casino-game:hover .casino-game-title span {
    color: color-mix(in srgb, var(--color) 80%, #fff);
}
.show-more {
    display: flex;
    justify-content: center;
    padding: 18px 0 10px;
}
.show-more span {
    display: inline-flex;
    min-width: 180px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mcolor), color-mix(in srgb, var(--mcolor) 75%, #000));
    color: #fff;
    font-size: 13px;
    padding: 12px 28px;
    border-radius: 999px;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--mcolor) 35%, transparent), inset 0 1px 0 rgba(255,255,255,.15);
    cursor: pointer;
    margin: 0 auto;
    font-weight: 600;
    letter-spacing: .4px;
    transition: transform .2s ease, box-shadow .25s ease;
}
.show-more span:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--mcolor) 45%, transparent), inset 0 1px 0 rgba(255,255,255,.2);
}
.home-category-title {
    border-left: 3px solid var(--mcolor);
    font-weight: 500;
    font-size: 16px;
    color: #f0f0f0;
    padding: 5px 10px;
    margin-top: 5px;
    background: rgba(0,0,0,.20);
    margin-bottom: -5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-category-title .casino-filter {
    font-size: 13px;
    color: #f0f0f0;
    padding: 10px 15px;
    line-height: 1;
    background: var(--mcolor);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.home-category-title .casino-filter:hover {
    background: var(--mcolor);
    box-shadow: 0px 0px 10px rgba(0,0,0,.4) inset, 0px 22px 0px rgba(255,255,255,.1) inset, 0px 0px 10px var(--mcolor);
}

/* simulator tab stilleri */
.simulator-tabs {
    display: flex;
    background: #1a1a1a;
    border-radius: 5px 5px 0 0;
    padding: 5px;
    margin-bottom: 10px;
}

.simulator-tab {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    background: #333;
    color: #ccc;
    cursor: pointer;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #555;
}

.simulator-tab:last-child {
    margin-right: 0;
}

.simulator-tab:hover {
    background: #444;
    color: #fff;
}

.simulator-tab.active {
    background: var(--mcolor);
    color: #fff;
    border-color: var(--mcolor);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* lig tv — canlı maç yayın ikonu */
.live-stream-ico {
    display: inline-block;
    margin-left: 6px;
    color: #ffcc00;
    font-size: 11px;
    vertical-align: middle;
    opacity: 0.95;
}
.live-perform.is-stream {
    height: auto;
}
.live-perform.is-stream .simulator-tabs {
    margin-bottom: 0;
    flex-shrink: 0;
}
.live-perform.is-stream .perform {
    padding: 0;
    overflow: hidden;
    background: #000;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
}
.live-perform.is-stream .perform iframe.live-stream-frame {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    background: #000;
}

/* kupon düzenleme geçmişi stilleri */
.bet-logs {
  flex-direction: column;
  align-items: flex-start;
  min-width: 300px;
  max-width: 400px;
  padding: 5px 10px;
  background: #f8f9fa;
  border-left: 2px solid #ddd;
  font-size: 12px;
}
.log-entry {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.6;
  color: #555;
}
.log-entry:last-child {
  border-bottom: none;
}
.log-date {
  font-size: 90%;
  color: #666;
  margin-right: 5px;
}
.log-user {
  font-weight: bold;
}
.log-text {
  color: #555;
}
.log-value {
  font-size: 95%;
}
.log-value small {
  font-size: 100%;
}
.log-note {
  display: block;
  margin-top: 5px;
  padding: 5px 8px;
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  border-radius: 3px;
  font-size: 90%;
  color: #856404;
  font-style: italic;
}
.log-note i {
  margin-right: 5px;
  color: #ffc107;
}
/* iade nedeni - kullanıcıya gösterilen */
.return-reason {
  display: block;
  margin-top: 6px;
  padding: 6px 8px;
  background: #fff3cd;
  border-left: 3px solid #f0ad4e;
  border-radius: 3px;
  font-size: 12px;
  color: #856404;
  line-height: 1.4;
  white-space: normal;
}
.return-reason i {
  margin-right: 5px;
  color: #f0ad4e;
}
.text-danger {
  color: #BC2121;
}
.text-success {
  color: #14892c;
}
.text-warning {
  color: #f0ad4e;
}
.fw-bold {
  font-weight: bold;
}
.text-gray-600 {
  color: #666;
}
/* Sistem kombinasyonları butonu */
.sistem-kombinasyon-btn {
  padding: 15px 20px;
  color: #FFF;
  background-color: var(--mcolor);
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid rgba(0,0,0,.2);
  margin: 5px 0px;
  cursor: pointer;
}

.sistem-kombinasyon-btn:hover {
  opacity: 0.9;
}

.sistem-kombinasyon-btn i {
  margin-right: 5px;
}

/* hata bildir sistemi */
.bug-report-link {
  margin-left: 0;
  color: var(--mcolor);
  font-size: 10px;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.bug-report-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.bug-report-link i {
  font-size: 11px;
}

/* modal overlay */
.bug-report-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bug-report-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.bug-report-box {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: slideDown 0.3s;
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.bug-report-header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.bug-report-header i {
  font-size: 24px;
  color: var(--mcolor);
}

.bug-report-header.success i {
  color: #14892c;
}

.bug-report-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  flex: 1;
}

.bug-report-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.bug-report-close:hover {
  color: #333;
}

.bug-report-content {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.bug-report-footer {
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: #f5f5f5;
  border-radius: 0 0 8px 8px;
}

/* uyarı modalı */
.warning-info p {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}

.warning-info strong {
  font-weight: bold;
  color: #000;
}

.warning-info ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.warning-info ul li {
  padding: 8px 10px;
  margin: 5px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.allowed-list li {
  background: #d4edda;
  color: #155724;
  font-size: 13px;
}

.allowed-list li i {
  color: #28a745;
}

.not-allowed-list li {
  background: #f8d7da;
  color: #721c24;
  font-size: 13px;
}

.not-allowed-list li i {
  color: #dc3545;
}

/* form */
.bug-report-field {
  margin-bottom: 20px;
}

.bug-report-field-label,
.bug-report-field label:not(.bug-report-radio) {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.bug-report-field .required {
  color: #BC2121;
}

.bug-report-field input[type="text"],
.bug-report-field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.bug-report-field input[type="text"]:focus,
.bug-report-field textarea:focus {
  outline: none;
  border-color: var(--mcolor);
}

.bug-report-field textarea {
  resize: vertical;
  min-height: 100px;
}

.bug-report-help {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

/* radio grup */
.bug-report-radio-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.bug-report-radio {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  padding: 10px 15px;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s;
  flex: 1;
  min-width: 0;
}

.bug-report-radio:hover {
  border-color: var(--mcolor);
  background: #f9f9f9;
}

.bug-report-radio input[type="radio"] {
  margin: 0;
  margin-right: 8px;
  flex-shrink: 0;
}

.bug-report-radio input[type="radio"]:checked + span {
  color: var(--mcolor);
  font-weight: bold;
}

.bug-report-radio span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* butonlar */
.bug-report-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bug-report-btn-primary {
  background: var(--mcolor);
  color: #fff;
}

.bug-report-btn-primary:hover {
  opacity: 0.9;
}

.bug-report-btn-cancel {
  background: #6c757d;
  color: #fff;
}

.bug-report-btn-cancel:hover {
  background: #5a6268;
}

/* başarı mesajı */
.success-message {
  text-align: center;
  padding: 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  margin-bottom: 20px;
}

.success-message p {
  margin: 10px 0;
  color: #155724;
  font-size: 14px;
}

.avg-response-time {
  font-weight: bold;
  color: #0c5460;
}

/* bildirim listesi */
.bug-report-list-section h4 {
  margin: 20px 0 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.bug-report-list {
  max-height: 400px;
  overflow-y: auto;
}

.bug-report-item {
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
}

.bug-report-item:hover {
  border-color: var(--mcolor);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bug-report-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bug-report-item-title {
  font-weight: bold;
  color: #333;
  font-size: 14px;
  flex: 1;
}

.bug-report-item-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.bug-report-item-status.warning {
  background: #ffc107;
}

.bug-report-item-status.info {
  background: #17a2b8;
}

.bug-report-item-status.success {
  background: #28a745;
}

.bug-report-item-status.danger {
  background: #dc3545;
}

.bug-report-item-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.bug-report-item-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #999;
}

.bug-report-item-meta i {
  margin-right: 4px;
}

/* detay */
.bug-report-detail-box {
  max-width: 700px;
}

.bug-report-detail-field {
  margin-bottom: 20px;
}

.bug-report-detail-field label {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.bug-report-detail-field .value {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  white-space: pre-wrap;
}

.bug-report-responses {
  margin-top: 20px;
}

.bug-report-responses h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.bug-report-response {
  padding: 15px;
  margin-bottom: 10px;
  border-left: 4px solid var(--mcolor);
  background: #f9f9f9;
  border-radius: 4px;
}

.bug-report-response.auto {
  border-left-color: #6c757d;
  background: #e9ecef;
}

.bug-report-response-message {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  white-space: pre-wrap;
}

.bug-report-response-meta {
  font-size: 12px;
  color: #666;
}

.bug-report-response-meta i {
  margin-right: 4px;
}

/* boş liste */
.bug-report-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.bug-report-empty i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ddd;
}

.bug-report-empty p {
  font-size: 14px;
}

/* scrollbar stil */
.bug-report-list::-webkit-scrollbar,
.bug-report-content::-webkit-scrollbar {
  width: 8px;
}

.bug-report-list::-webkit-scrollbar-track,
.bug-report-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.bug-report-list::-webkit-scrollbar-thumb,
.bug-report-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.bug-report-list::-webkit-scrollbar-thumb:hover,
.bug-report-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* hata bildirim badge */
.bug-report-badge {
  display: inline-block;
  background: #dc3545;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  min-width: 18px;
  text-align: center;
  line-height: 1.4;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

/* Son Kuponlar Bölümü */
.son-kuponlar-loading {
  padding: 10px;
}

.son-kuponlar-list {
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow-y: auto;
}

.son-kupon-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(0,0,0,.4);
  padding: 10px 15px;
  transition: background-color 200ms;
  box-shadow: 0px -4px 10px rgba(0,0,0,.2) inset;
}

.son-kupon-item:hover {
  background-color: rgba(0,0,0,.2);
}

.son-kupon-item:last-child {
  border-bottom: none;
}

.son-kupon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.son-kupon-no {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.son-kupon-durum {
  font-size: 14px;
}

.son-kupon-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.son-kupon-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  align-items: center;
}

.son-kupon-label {
  color: #999;
}

.son-kupon-value {
  color: #fff;
  font-weight: 500;
}

.son-kupon-tarih {
  font-size: 10px;
  color: #999;
}

/* Durum renkleri */
.son-kupon-item.drm0 {
  color: #999;
}

.son-kupon-item.drm0 .son-kupon-no,
.son-kupon-item.drm0 .son-kupon-value {
  color: #999;
}

.son-kupon-item.drm0 .son-kupon-durum {
  color: #999;
}

.son-kupon-item.drm1 {
  color: #14892c;
}

.son-kupon-item.drm1 .son-kupon-no,
.son-kupon-item.drm1 .son-kupon-value {
  color: #14892c;
  font-weight: 600;
}

.son-kupon-item.drm1 .son-kupon-durum {
  color: #14892c;
}

.son-kupon-item.drm2 {
  color: #BC2121;
}

.son-kupon-item.drm2 .son-kupon-no,
.son-kupon-item.drm2 .son-kupon-value {
  color: #BC2121;
  font-weight: 600;
}

.son-kupon-item.drm2 .son-kupon-durum {
  color: #BC2121;
}

.son-kupon-item.drm3,
.son-kupon-item.drm4 {
  color: #999;
}

.son-kupon-item.drm3 .son-kupon-no,
.son-kupon-item.drm3 .son-kupon-value,
.son-kupon-item.drm4 .son-kupon-no,
.son-kupon-item.drm4 .son-kupon-value {
  color: #999;
}

.son-kupon-item.drm3 .son-kupon-durum,
.son-kupon-item.drm4 .son-kupon-durum {
  color: #999;
}

.son-kuponlar-empty {
  padding: 15px;
  text-align: center;
  color: #999;
  font-size: 12px;
}

/* kupon bakiye kayıtları */
.coupon-balance-logs-wrapper {
  margin-top: 10px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.coupon-balance-logs-container {
  width: 100%;
  padding: 15px;
}

.coupon-balance-logs-title {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.coupon-balance-logs-list {
  margin-top: 8px;
}

.coupon-balance-log-entry {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.coupon-balance-log-date {
  min-width: 140px;
  font-size: 12px;
  color: #666;
}

.coupon-balance-log-user {
  min-width: 100px;
  font-size: 12px;
  color: #333;
}

.coupon-balance-log-description {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: #555;
}

/* Oran Koruması Sekmeleri */
.oran-koruma-tabs {
    display: flex;
    gap: 2px;
    margin: 10px 0px 0px;
}
.oran-koruma-tabs a {
    padding: 10px 12px;
    background-color: #ccc;
    cursor: pointer;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s;
    border-radius: 0;
}
.oran-koruma-tabs a:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.oran-koruma-tabs a:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.oran-koruma-tabs a:hover {
    background-color: #bbb;
}
.oran-koruma-tabs a.selected {
    background-color: var(--mcolor);
    color: #FFF;
    font-weight: 600;
}
.oran-tab-content {
    display: none;
}

/* dil seçici accordion */
.dil-accordion-toggle {
    display: flex;
    width: 100%;
    color: #FFF;
    padding: 7px 15px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.dil-accordion-toggle:hover {
    color: var(--color);
    background-color: rgba(0,0,0,.4);
}

.dil-accordion-toggle .dil-flag-wrap {
    width: 22px;
    display: flex;
    justify-content: flex-start;
}

.dil-accordion-toggle .dil-flag-wrap img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.dil-accordion-toggle .dil-arrow {
    margin-left: auto;
    font-size: 10px;
    transition: transform 0.2s ease;
    width: auto;
}

.dil-accordion-toggle.open .dil-arrow {
    transform: rotate(180deg);
}

.dil-accordion-menu {
    display: none !important;
    flex-direction: column;
    background: rgba(0,0,0,.2);
    width: 100%;
}

.dil-accordion-menu.open {
    display: flex !important;
}

.dil-accordion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
    transition: all 0.15s ease;
}

.dil-accordion-item:hover {
    background-color: rgba(0,0,0,.4);
    color: var(--color);
}

.dil-accordion-item.active {
    background-color: var(--mcolor);
    color: #FFF;
}

.dil-accordion-item img {
    width: 16px;
    height: 11px;
    border-radius: 2px;
}

/* login dil seçici */
.login-lang {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.login-lang-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.login-lang-item:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.login-lang-item.active {
    background: var(--mcolor);
    border-color: var(--mcolor);
    color: #fff;
}

.login-lang-item img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* kullanıcı bildirimleri */
.notification-box {
    position: relative;
    display: inline-block;
    z-index: 40;
}

.admin-link.notification-link {
    position: relative;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-link.notification-link:hover {
    background: var(--mcolor);
}

.admin-link.notification-link i {
    margin-right: 5px;
}

.notification-badge {
    background: var(--mcolor);
    color: white;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    text-align: center;
    margin-left: 5px;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    margin-top: 5px;
    width: 320px;
    background: #222;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 50;
    max-height: 450px;
    overflow: hidden;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--mcolor);
    border-bottom: 2px solid rgba(0,0,0,0.2);
}

.notification-header span {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}

.notification-header a {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.notification-header a:hover {
    color: #fff;
}

.notification-list {
    max-height: 320px;
    overflow-y: auto;
}

.notification-group-title {
    padding: 7px 12px 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #999;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.notification-group-items .notification-item:last-child {
    border-bottom: 1px solid #333;
}

.notification-item {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: background 0.2s ease;
    background: #222;
}

.notification-item:hover {
    background: #2a2a2a;
}

.notification-item.unread {
    background: #2d2d2d;
    border-left: 3px solid var(--mcolor);
}

.notification-item.unread:hover {
    background: #333;
}

.notification-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff;
}

.notification-item-icon.success { background: #27ae60; }
.notification-item-icon.warning { background: #f39c12; }
.notification-item-icon.info { background: #3498db; }
.notification-item-icon.primary { background: var(--mcolor); }
.notification-item-icon.purple { background: #9b59b6; }
.notification-item-icon.danger { background: #e74c3c; }
.notification-item-icon.secondary { background: #555; }

.notification-item-content {
    flex: 1;
    min-width: 0;
}

.notification-item-title {
    font-weight: 600;
    color: #fff;
    font-size: 12px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-item-message {
    color: #aaa;
    font-size: 11px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
    overflow: visible;
}

.notification-item-time {
    font-size: 10px;
    color: #666;
    margin-top: 3px;
}

.notification-loading,
.notification-empty {
    padding: 25px 12px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.notification-footer {
    padding: 8px 12px;
    text-align: center;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.notification-footer a {
    font-size: 12px;
    color: var(--mcolor);
    text-decoration: none;
    font-weight: 500;
}

.notification-footer a:hover {
    color: #fff;
}

/* ============================================
   kupon bozdurma teklif modali
   ============================================ */

/* listedeki kupon satirinda gorunen bozdur butonu */
.kuponbozdur-list {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #14892c;
  color: #fff !important;
  border-radius: 3px;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.2s;
}
.kuponbozdur-list:hover {
  background: #0f6e22;
  color: #fff !important;
}
.kuponbozdur-list i {
  font-size: 12px;
}

/* modal taban */
.cashout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cashoutFadeIn 0.25s;
}
@keyframes cashoutFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cashout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.cashout-box {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  width: 420px;
  max-width: 90%;
  overflow: hidden;
  animation: cashoutSlideDown 0.3s;
}
@keyframes cashoutSlideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* baslik */
.cashout-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
.cashout-header i {
  font-size: 24px;
  color: #14892c;
}
.cashout-header h3 {
  margin: 0;
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.cashout-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cashout-close:hover {
  color: #333;
}

/* state container - tum state'ler ortak */
.cashout-state {
  padding: 30px 20px 20px 20px;
  text-align: center;
}

/* loading & processing spinner */
.cashout-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(20, 137, 44, 0.15);
  border-top-color: #14892c;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  animation: cashoutSpin 0.8s linear infinite;
}
@keyframes cashoutSpin {
  to { transform: rotate(360deg); }
}
.cashout-state-loading p,
.cashout-state-processing p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #555;
}

/* offer state - tutar gosterimi */
.cashout-amount-wrap {
  margin-bottom: 15px;
}
.cashout-amount-label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cashout-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.cashout-amount-value {
  font-size: 38px;
  font-weight: bold;
  color: #14892c;
  line-height: 1;
}
.cashout-amount-currency {
  font-size: 16px;
  font-weight: bold;
  color: #14892c;
}
.cashout-info {
  margin: 0 0 18px 0;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* aksiyon butonlari */
.cashout-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 15px;
}
.cashout-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.cashout-btn-cancel {
  background: #e0e0e0;
  color: #555;
}
.cashout-btn-cancel:hover {
  background: #ccc;
}
.cashout-btn-confirm {
  background: #14892c;
  color: #fff;
}
.cashout-btn-confirm:hover {
  background: #0f6e22;
}
.cashout-btn-refresh {
  background: var(--mcolor, #14892c);
  color: #fff;
}
.cashout-btn-refresh:hover {
  filter: brightness(0.9);
}

/* progress bar - alt kismi tamamen kaplar */
.cashout-progress-wrap {
  height: 4px;
  background: #eee;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  margin: 10px -20px -20px -20px;
}
.cashout-progress-bar {
  height: 100%;
  width: 100%;
  background: #14892c;
  transition: width 1s linear;
}

/* expired state */
.cashout-expired-icon {
  font-size: 42px;
  color: #c0392b;
  margin-bottom: 12px;
}
.cashout-state-expired h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.cashout-state-expired p {
  margin: 0 0 18px 0;
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

/* error state */
.cashout-error-icon {
  font-size: 42px;
  color: #c0392b;
  margin-bottom: 12px;
}
.cashout-state-error h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.cashout-state-error .cashout-error-msg {
  margin: 0 0 18px 0;
  font-size: 13px;
  color: #c0392b;
  line-height: 1.4;
}

/* success state */
.cashout-success-icon {
  font-size: 48px;
  color: #14892c;
  margin-bottom: 12px;
}
.cashout-state-success h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: bold;
  color: #14892c;
}
.cashout-state-success .cashout-success-msg {
  margin: 0 0 18px 0;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

/* dark mode uyumlu */
body.dark-mode .cashout-box {
  background: #2a2a2a;
}
body.dark-mode .cashout-header {
  background: #1f1f1f;
  border-bottom-color: #3a3a3a;
}
body.dark-mode .cashout-header h3 {
  color: #eee;
}
body.dark-mode .cashout-state-expired h4,
body.dark-mode .cashout-state-error h4,
body.dark-mode .cashout-state-success h4 {
  color: #eee;
}
body.dark-mode .cashout-state-loading p,
body.dark-mode .cashout-state-processing p,
body.dark-mode .cashout-state-expired p,
body.dark-mode .cashout-state-success .cashout-success-msg {
  color: #bbb;
}
body.dark-mode .cashout-info {
  color: #888;
}
body.dark-mode .cashout-btn-cancel {
  background: #444;
  color: #ddd;
}
body.dark-mode .cashout-btn-cancel:hover {
  background: #555;
}
body.dark-mode .cashout-progress-wrap {
  background: #1a1a1a;
}

/* ── canlı liste ui/ux ── */
.live-toolbar-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #222;
}
.live-filter-links {
  overflow-x: auto;
  max-width: 62%;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}
.live-filter-links a {
  flex: 0 0 auto;
  padding: 0 12px 2px !important;
  font-size: 12px !important;
  white-space: nowrap;
  height: 36px !important;
}
.live-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 4px;
  color: #999;
  font-size: 11px;
}
.live-meta-count {
  color: #ccc;
}
.live-meta-count #liveMatchCount,
#liveMatchCount {
  color: var(--mcolor);
  font-weight: bold;
}
.live-meta-updated {
  margin-left: auto;
  color: #777;
}
.live-collapse-all {
  background: #333;
  border: 1px solid #444;
  color: #ccc;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.live-collapse-all:hover {
  color: #fff;
  border-color: var(--mcolor);
}

.live-score {
  flex-direction: column;
  gap: 1px;
  min-height: 100%;
  line-height: 1.1;
}
.live-score-main {
  font-variant-numeric: tabular-nums;
}
.live-ht-score {
  color: #999;
  font-size: 10px;
  font-weight: normal;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.lig-title-toggle {
  cursor: pointer;
  user-select: none;
}
.lig-title-toggle:hover {
  filter: brightness(1.1);
}
.lig-match-count {
  margin-left: auto;
  background: rgba(255,255,255,.08);
  color: #bbb;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
  line-height: 1.2;
}
/* chevron: .lig-title i 24x24 kutusunda kalsın, sadece renk/margin */
.lig-title i.lig-toggle-ico {
  margin-left: 4px;
  color: #888;
  font-size: 11px;
  transition: transform .2s ease;
}
.ligbox.is-collapsed .live-matches {
  display: none;
}
.ligbox.is-collapsed .lig-title i.lig-toggle-ico {
  transform: rotate(-90deg);
}
.lig-title-fav i.fa-star {
  color: #ffcc00;
  margin-right: 6px;
}

.live-empty-state {
  text-align: center;
  padding: 48px 20px;
  color: #999;
}
.live-empty-icon {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: .5;
}
.live-empty-title {
  color: #ddd;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.live-empty-sub {
  font-size: 12px;
  margin-bottom: 16px;
}
.live-empty-clear {
  background: var(--mcolor);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
.live-empty-clear:hover {
  filter: brightness(1.1);
}

.live-box.goal-flash {
  animation: live-goal-row 5s ease-out;
}
.live-box.goal-flash-home .live-score-main,
.live-box.goal-flash-away .live-score-main {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74,222,128,.8);
}
@keyframes live-goal-row {
  0% { background-color: rgba(34,197,94,.25); }
  30% { background-color: rgba(34,197,94,.12); }
  100% { background-color: transparent; }
}



/* spor sekmesi maç sayısı badge */
.sport-select-tab a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-sport-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 6px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  background: rgba(0,0,0,.35);
  color: #ddd;
  font-variant-numeric: tabular-nums;
}
.sport-select-tab a.selected .live-sport-badge {
  background: rgba(0,0,0,.25);
  color: #fff;
}
.live-meta-bar {
  justify-content: space-between;
}
.live-meta-updated {
  display: none;
}

/* eventsstat modal */
.es-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, .62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.es-modal {
  width: 920px;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #ddd;
  font-size: 13px;
}
html.es-modal-open,
body.es-modal-open {
  overflow: hidden;
}
.es-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.es-modal-teams {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.es-modal-team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-weight: 600;
  color: #fff;
}
.es-modal-team span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.es-modal-vs {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  flex-shrink: 0;
}
.es-modal-close {
  border: 0;
  background: transparent;
  color: #aaa;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
}
.es-modal-close:hover { color: #fff; }
.es-modal-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 10px 0;
  background: #161616;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.es-tab {
  border: 0;
  background: transparent;
  color: #999;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 12px;
  border-bottom: 2px solid transparent;
}
.es-tab.active {
  color: #ffcc00;
  border-bottom-color: #ffcc00;
}
.es-modal-body {
  padding: 12px 14px 16px;
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.es-loading,
.es-error,
.es-empty {
  padding: 28px 12px;
  text-align: center;
  color: #999;
}
.es-error { color: #e07070; }
.es-section-title {
  font-weight: 700;
  color: #fff;
  margin: 4px 0 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.es-table-wrap { overflow-x: auto; }
.es-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.es-table th,
.es-table td {
  padding: 6px 5px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.es-table th { color: #888; font-weight: 600; }
.es-table .es-c-pos { width: 32px; color: #888; }
.es-table .es-c-team { text-align: left; }
.es-table .es-c-pts { color: #ffcc00; }
.es-table tr.es-hl-row td { background: rgba(255, 204, 0, .08); color: #fff; }
.es-team-cell { display: inline-flex; align-items: center; gap: 6px; }
.es-team-logo { width: 18px; height: 18px; object-fit: contain; border-radius: 50%; }
.es-form-dots { display: inline-flex; gap: 2px; margin-left: 6px; }
.es-dot { width: 7px; height: 7px; border-radius: 50%; background: #666; display: inline-block; }
.es-dot-win { background: #2e9b4f; }
.es-dot-draw { background: #c5a000; }
.es-dot-loss { background: #c0392b; }
.es-form-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.es-form-panel,
.es-table-wrap,
.es-bracket-match {
  background: #242424;
  border-radius: 4px;
}
.es-form-panel { padding: 10px; }
.es-form-list { display: flex; flex-direction: column; gap: 4px; }
.es-form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #2a2a2a;
  border-radius: 3px;
}
.es-form-row.es-res-win { border-left: 3px solid #2e9b4f; }
.es-form-row.es-res-draw { border-left: 3px solid #c5a000; }
.es-form-row.es-res-loss { border-left: 3px solid #c0392b; }
.es-form-date { color: rgba(255,255,255,.45); font-size: 11px; min-width: 72px; }
.es-form-teams {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.es-form-teams span {
  font-size: 12px;
  font-weight: 400;
}
.es-form-score {
  color: #ffcc00;
  margin: 0 4px;
  font-size: 12px;
  font-weight: 700;
}
.es-form-badge {
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  border-radius: 2px;
  padding: 1px 4px;
  color: #fff;
}
.es-form-badge.es-res-win { background: #2e9b4f; }
.es-form-badge.es-res-draw { background: #c5a000; }
.es-form-badge.es-res-loss { background: #c0392b; }
.es-form-comp { width: 100%; font-size: 11px; color: rgba(255,255,255,.4); }
.es-h2h-summary { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.es-h2h-pill {
  background: #242424;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
}
.es-h2h-pill b { color: #ffcc00; margin-right: 4px; }
.es-group-title,
.es-bracket-round-title { color: rgba(255,255,255,.5); font-size: 12px; margin: 10px 0 6px; }
.es-bracket-list { display: flex; flex-direction: column; gap: 6px; }
.es-bracket-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  position: relative;
}
.es-bracket-match.es-bracket-this { outline: 1px solid rgba(255,204,0,.35); }
.es-bracket-side { display: flex; align-items: center; gap: 6px; min-width: 0; }
.es-bracket-away { justify-content: flex-end; text-align: right; }
.es-bracket-score { color: #ffcc00; font-weight: 700; }
.es-bracket-vs { color: #888; font-weight: 400; }
.es-hl { color: #fff; font-weight: 700; }
.es-bracket-badge {
  position: absolute;
  right: 8px;
  top: 4px;
  font-size: 10px;
  color: #ffcc00;
}
.es-preview { margin-top: 14px; }
.es-preview-p { color: #bbb; font-size: 12px; line-height: 1.45; margin: 0 0 8px; }
.es-lineups { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.es-lu-side { background: #242424; border-radius: 4px; padding: 10px; }
.es-lu-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin: 8px 0 4px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.es-lu-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 12px;
}
.es-lu-num {
  width: 22px;
  text-align: center;
  color: #888;
  font-variant-numeric: tabular-nums;
}
.es-lu-name { flex: 1; min-width: 0; color: #eee; }
.es-lu-role { color: #888; font-size: 11px; }
.es-lu-missing .es-lu-name { color: #e07070; }

@media (max-width: 720px) {
  .es-form-panels,
  .es-lineups { grid-template-columns: 1fr; }
}
