/* Arama — form üstte, kartlar altta */
.search-page {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 1rem !important;
	width: 100% !important;
	align-items: start !important;
}
@media (min-width: 640px) {
	.search-page { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (min-width: 1024px) {
	.search-page { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (min-width: 1280px) {
	.search-page { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
}
/* Form, mesaj vs. — kart DEĞİLse tüm satırı kapla (alta düşürür) */
.search-page > *:not(.movie-card):not(.search-results-grid) {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: 100% !important;
}
.search-page .search-head {
	display: block !important;
	width: 100% !important;
	margin-bottom: 0.5rem !important;
}
.search-results-grid {
	display: contents; /* çocuk kartlar ana grid'e katılır */
}
.search-page .movie-card,
.search-results-grid .movie-card {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	align-self: start !important;
}
.search-page .sr-poster,
.search-results-grid .sr-poster {
	position: relative !important;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 2 / 3 !important;
	overflow: hidden !important;
	background: #0a0a0a;
}
.search-page .sr-poster-img,
.search-results-grid .sr-poster-img,
.search-page .sr-poster img,
.search-results-grid .sr-poster img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
}
.search-page .sr-poster-empty,
.search-results-grid .sr-poster-empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4b5563;
}

/* Popüler / Top list — poster sol, yazı sağ (yedek; asıl stil sidebar.tpl içinde) */
.popular-list{counter-reset:popular-rank}
.popular-list .popular-rank{counter-increment:popular-rank}
.popular-list .popular-rank::before{content:counter(popular-rank)}
.popular-list .popular-item{
  display:table!important;
  width:100%!important;
  table-layout:fixed!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  padding:8px!important;
  margin:0!important;
  border-radius:12px;
  text-decoration:none!important;
  color:inherit!important;
  box-sizing:border-box!important;
}
.popular-list .popular-item:hover{background:rgba(255,255,255,.05)}
.popular-list .pi-poster{
  display:table-cell!important;
  width:56px!important;
  max-width:56px!important;
  height:80px!important;
  vertical-align:middle!important;
  position:relative!important;
  border-radius:8px;
  overflow:hidden;
  background:#1a1d29;
  text-decoration:none!important;
}
.popular-list .pi-poster img{
  display:block!important;
  width:56px!important;
  height:80px!important;
  object-fit:cover!important;
  border-radius:8px;
}
.popular-list .pi-noimg{
  display:flex!important;
  width:56px!important;
  height:80px!important;
  align-items:center;
  justify-content:center;
  color:#6b7280;
}
.popular-list .popular-rank{
  position:absolute!important;
  top:0!important;
  left:0!important;
  z-index:2;
  min-width:18px;
  height:18px;
  padding:0 4px;
  background:#f59e0b!important;
  color:#1a1d29!important;
  font-size:10px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center;
  justify-content:center;
  border-radius:0 0 6px 0;
}
.popular-list .pi-info{
  display:table-cell!important;
  vertical-align:middle!important;
  padding-left:12px!important;
  height:auto!important;
}
.popular-list .pi-title{
  display:block!important;
  font-size:13px!important;
  font-weight:700!important;
  color:#fff!important;
  line-height:1.3!important;
  margin:0 0 4px!important;
  max-height:2.6em;
  overflow:hidden;
  text-decoration:none!important;
}
.popular-list .popular-item:hover .pi-title{color:#f59e0b!important}
.popular-list .pi-meta{
  display:block!important;
  font-size:11px!important;
  color:#9ca3af!important;
  line-height:1.4!important;
  margin:0!important;
  padding:0!important;
}
.popular-list .pi-year{margin-right:8px}
.popular-list .pi-year a{color:inherit!important;text-decoration:none!important}
.popular-list .pi-rate{color:#eab308!important;font-weight:700!important;white-space:nowrap}
.popular-list .pi-rate i{font-size:9px;margin-right:2px}
.popular-list .js-rating[data-rating="0"],
.popular-list .js-rating[data-rating="0.0"],
.popular-list .js-rating[data-rating=""]{display:none!important}

/* Etiketler ({tags}) */
.dle-tags a,
.tags_list a {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	margin: 0 2px 2px 0;
	border-radius: 8px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	color: #d1d5db !important;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all .15s ease;
}
.dle-tags a:hover,
.tags_list a:hover {
	background: rgba(245,158,11,0.15);
	border-color: rgba(245,158,11,0.35);
	color: #f59e0b !important;
}

#loading-layer {
    background: #1a1d29;
    padding: 10px;
    text-align: center;
    color: #f3f4f6;
    border-radius: 2px;
    border: 1px solid #252836;
}

#loading-layer.withouttext {
    background: #1a1d29;
    padding: 5px 5px 0px 5px;
    text-align: center;
    color: #f3f4f6;
    border-radius: 50%;
    border: 1px solid #252836;
}

#loading-layer.withtext {
	padding: 10px;
    background: #1a1d29;
    color: #f3f4f6;
    border-radius: 5px;
	border: 1px solid #252836;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.scriptcode, .title_quote,
	.title_spoiler, .text_spoiler, .quote {
    padding: 10px;
    background: #252836;
    border: 1px solid #2d303e;
    color: #f3f4f6;
}

	.title_quote {
        border-left: 2px solid #f59e0b;
        border-bottom: 0;
        margin-top: 2px;
        font-weight: bold;
        color: #f3f4f6;
    }
	.quote, blockquote {
        border-left: 2px solid #f59e0b;
        background: rgba(37, 40, 54, 0.5);
    }
	.quote_block {margin-bottom: .7rem;}
	.title_spoiler {
        margin-top: 2px;
        color: #f3f4f6;
    }
	.text_spoiler {
        margin-bottom: 2px;
        color: #9ca3af;
    }
	.title_spoiler img { vertical-align: middle; margin: -1px 0 0 !important }
	.scriptcode {
        color: #a3b3cc;
        text-align: left;
        font-family: "Courier New";
        background: rgba(37, 40, 54, 0.5);
    }
	.title_spoiler { font-weight: normal; }
	.text_spoiler { border-top: 0; text-align: justify; }

	.hide {
        background-color: #252836;
        padding: 5px;
        color: #a3b3cc;
        margin: 0 0 1em 0;
        border: 1px solid #2d303e;
    }
	.hide a { text-decoration: underline; }
    .hide a:hover {
        text-decoration: none;
        color: #f59e0b;
    }

.sort {
    list-style: none;
    padding: 0;
    margin: 0;
}
	.sort > li, .sort { display: inline; }
	.sort > li { margin: 0 0 0 3%; }
	.sort > li a { color: #9ca3af; }
	.sort > li.asc a, .sort > li.desc a { color: #f59e0b; }
	.sort > li.asc a:after, .sort > li.desc a:after {
		content: "";
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAsBAMAAACj90TiAAAAG1BMVEUAAAAzlOYzlOYzlOYzlOYzlOYzlOYzlOYzlOar6gzlAAAACHRSTlMAjesv90eHRuQt1XUAAABSSURBVBjTzdCxDQAhDENRSyzAEFdQ0zDB9axEgzw2DokEI1A9/S4OyAxADEcpPGlpFKWoSpEKp0Dlb6SvG2jY4Fka4tw4PqbEsDNTcb8gn/d4LPQHQDdjhblbAAAAAElFTkSuQmCC);
		display: inline-block;
		vertical-align: middle;
		margin: -1px 0 0 .4em;
		width: 6px; height: 11px;
		-webkit-background-size: 6px auto; background-size: 6px auto;
	}
	.sort > li.asc a:after { background-position: 0 -11px; }

.calendar {
    width: 100%;
    text-align: center;
    background: #252836;
    border: 1px solid #2d303e;
    border-radius: 8px;
}
.calendar tr td, .calendar tr th {
    padding: 3px;
    color: #f3f4f6;
}
	.calendar tr td a {
        color: #f59e0b;
        font-weight: bold;
        padding: 5px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    .calendar tr td a:hover {
        background: rgba(245, 158, 11, 0.1);
    }
	.calendar tr td { padding: 5px 3px; }
	.calendar tr td.weekday { color: #f59e0b; }
	.calendar tr th {
        background-color: #2d303e;
        font-weight: bold;
        text-transform: uppercase;
        color: #f3f4f6;
        padding: 8px;
    }
	.calendar tr th.weekday {
        background-color: #f59e0b;
        color: #1a1d29;
    }
	.calendar tr th.monthselect {
        background-color: transparent;
        color: #9ca3af;
        padding-bottom: 15px;
    }
	.calendar tr th.monthselect a { color: #9ca3af; }

.voteprogress, .pollprogress {
	overflow: hidden;
	height: 6px;
	margin-bottom: 10px;
	background-color: #252836;
	border-radius: 3px;
	margin-top: 6px;
    border: 1px solid #2d303e;
}
	.voteprogress span, .pollprogress span {
		text-indent: -9999px;
		height: 6px;
		display: block;
		overflow: hidden;
		background: #f59e0b;
	}
	.voteprogress .vote2, .pollprogress .poll2 { background-color: #ef4444; }
	.voteprogress .vote3, .pollprogress .poll3 { background-color: #10b981; }
	.voteprogress .vote4, .pollprogress .poll4 { background-color: #3b82f6; }
	.voteprogress .vote5, .pollprogress .poll5 { background-color: #f59e0b; }

.rating, .unit-rating { width: 115px; height: 23px; }
	.rating { font-size: 11px; }
	.unit-rating, .unit-rating li a:hover, .unit-rating li.current-rating {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAACKBAMAAAAnGmX8AAAALVBMVEX///+RkZH+12L/w0//7cP/5aj+24X/+u7/9d2tra3Jycne3t7/zGn5+fnx8fHkdmbhAAACEUlEQVRIx+2UuUsDQRTGF+8bp4yiyKDRUhiNFikW73LxwsIiRETL4F2KilpYmFYQklIE0VYbIQQsY2kjWkbwfzDjzvhm3rzCJiCSr1p+SfY7HsT7w2rYp3ltQPO6HpqPDdA8GSVxPeckr+HcJ205T1D8gHPSeJbzPopz7hrvnk4sSL4wcboLdIpb6v0ZxuY+LGB/HRY2ubn2MeB1a5ukxtEUGkEp4bSVchtvhLzfORaE/NV7VCDnlFzJPSKPJmEcczpffhg4x13zvB2nVxXvDdP2oKNHU+FOAyi+r/xRgWn9sOVVRKv8/ycJmlc/0nx8iOYrMRLXC5EibYUIKN4iBGl8KMQoaSsEaZwTIo7Z3tHkoihpdX7mBOiysJSHhJYCWMDExho1JjfXPgP8ZG2T0zhub7SjecJpK+U23gz5iHMsHRJpLuTDzmoqjnNEJRXTbByTv/Gd48YD+WHgHHddtsMnrhb5MO0gih/b/7ZfQQWWA+WPCizph22vojKr7Y3mTec0L7bT/K6T5ukIbctYgbRlLEPxRsbOSVvGuimeZYw0ZiVh9vpwfyX5xfXDJ1CJDHVAQlOQtvXOxMYazSa/9UDvGqIOrWmNI/ZxXjS/xCOrjHjSZ3g7Wg1CmsZZ6Eq9P1LAR1RCXDaOpKGtOV2mGUaD48pGRXliFL8jTNuF4odB2tKoQDaj/FGBG/3w4f0LfQHtX5JXyZBVcwAAAABJRU5ErkJggg==);
		-webkit-background-size: 23px auto; background-size:  23px auto;
	}
	.unit-rating {
		list-style: none;
		margin: 0; padding: 0;
		position: relative;
		background-position: 0 -46px;
	}
	.unit-rating li {
		text-indent: -90000px;
		padding: 0; margin: 0;
		float: left;
	}
	.unit-rating li a {
		display: block;
		width: 23px; height: 23px;
		text-decoration: none;
		border: 0 none !important;
		text-indent: -9000px;
		z-index: 17;
		position: absolute;
		padding: 0;
	}
	.unit-rating li a:hover {
		background-position: 0 -23px;
		z-index: 2;
		left: 0;
	}
	.unit-rating a.r1-unit { left: 0; }
	.unit-rating a.r1-unit:hover { width: 23px; }
	.unit-rating a.r2-unit { left: 23px; }
	.unit-rating a.r2-unit:hover { width: 46px; }
	.unit-rating a.r3-unit { left: 46px; }
	.unit-rating a.r3-unit:hover { width: 69px; }
	.unit-rating a.r4-unit { left: 69px; }
	.unit-rating a.r4-unit:hover { width: 92px; }
	.unit-rating a.r5-unit { left: 92px; }
	.unit-rating a.r5-unit:hover { width: 115px; }
	.unit-rating li.current-rating {
		background-position: 0 0;
		position: absolute;
		height: 23px;
		display: block;
		text-indent: -9000px;
		z-index: 1;
		padding: 0px;
	}

	.ratingplus {
		color: #10b981;
	}

	.ratingminus {
		color: #ef4444;
	}

	.ratingzero {
		color: #9ca3af;
	}

.userstop td, .pm td.pm_list, .pm th.pm_head {
    border-bottom: 1px solid #2d303e;
    padding: 12px 8px;
    color: #f3f4f6;
    background: #252836;
}
	table.pm, table.userstop {
        width: 100%;
        margin-bottom: 0;
        border-collapse: collapse;
        border: 1px solid #2d303e;
        border-radius: 8px;
        overflow: hidden;
    }
	table.pm select {
        width: 190px;
        background: #252836;
        color: #f3f4f6;
        border: 1px solid #2d303e;
        padding: 5px;
    }
	.userstop thead td, .pm td.pm_head {
        border-bottom: 1px solid #2d303e;
        font-weight: bold;
        background: #2d303e;
        color: #f3f4f6;
    }
	table.pm .navigation {
        border-top-width: 0;
        margin: 0;
        background: #252836;
    }

.pm th{
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    color: #f3f4f6;
    background: #2d303e;
}
.pm th.pm_checkbox {
	text-align: center;
}
.pm_list.pm_subj, .pm_list.pm_icon, .pm_list.pm_last_user {
 cursor: pointer;
 color: #f3f4f6;
}
.pm_list.pm_icon svg {
	width: 1.4rem;
	height: 1.4rem;
	vertical-align: middle;
}

.pm_list.pm_icon.pm-unread-image {
 color: #f59e0b;
}
.pm td.pm_list.pm_icon, .userstop td, th.pm_head.pm_icon {
	border-bottom: none;
}
.pm_list.pm_icon.pm-reply-image {
	color: #10b981;
}
.pm_list.pm_icon.pm-read-image {
	color: #9ca3af;
}

.pm_list .pm_last_message, .pm_list .pm_last_date, .pm_list .pm_with_user {
	color: #9ca3af;
	font-size: .8rem;
}
.pm tbody > tr:hover {
    background-color: #2d303e;
}
.pm_navigation {
	margin-top: 1rem;
}
.pm_navigation .navigation {
	display: inline-block;
	color: #f3f4f6;
	background-color: #252836;
	border: 1px solid #2d303e;
	border-radius: 0.188rem;
	padding: .4rem;
}

.pm_navigation .navigation a, .pm_navigation .navigation span {
    padding: 0.5rem;
    min-width: 2.25rem;
}
.pm_navigation .navigation span {
    background-color: #f59e0b;
    color: #1a1d29;
}
.pm_navigation .navigation a {
    text-decoration: none;
    color: #f3f4f6;
}
.pm_navigation .navigation a:hover {
    background-color: #2d303e;
}
#dropmenudiv {
    padding: 10px 0;
    min-width: 140px;
    width: auto !important;
    font-size: .85rem;
    box-shadow: 0 8px 40px -10px rgba(0,0,0,0.3);
    border: 1px solid #2d303e;
    background-clip: padding-box;
}
	#dropmenudiv {
        background-color: #252836;
        border-radius: 8px;
    }
	#dropmenudiv a {
        text-decoration: none !important;
        color: #f3f4f6;
        display: block;
        padding: 8px 20px;
        border: 0 none;
        white-space: nowrap;
        transition: all 0.2s ease;
    }
	#dropmenudiv a:hover {
        background-color: #2d303e;
        color: #f59e0b;
    }

#searchsuggestions {
	z-index: 2200;
	width: 300px;
	border-radius: 2px;
	background: #252836;
	box-shadow: 0 8px 40px -10px rgba(0,0,0,0.3);
	border: 1px solid #2d303e;
	background-clip: padding-box;
	font-size: .9em;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	}
	#searchsuggestions a, #searchsuggestions span.notfound {
        padding: 15px 25px;
        display: block;
        text-decoration: none;
        border-bottom: 1px solid #2d303e;
        color: #f3f4f6;
    }
	#searchsuggestions a:hover {
        background-color: #2d303e;
        color: #f59e0b;
    }
	#searchsuggestions a span { display: block; cursor: pointer; }
	#searchsuggestions span.searchheading {
        display: block;
        font-weight: bold;
        margin-bottom: .2em;
        color: #f59e0b;
    }
	#searchsuggestions span.seperator { display: block; }
	#searchsuggestions span.seperator a {
        padding: 10px 0;
        text-align: center;
        border: 0 none;
        background-color: transparent;
        color: #9ca3af;
    }
	#searchsuggestions span.notfound {
        padding: 15px 25px;
        display: block;
        color: #9ca3af;
    }
	#searchsuggestions .break { display: none; }

.ui-front { z-index: 1000; }
.ui-widget-overlay {
	background: #0a0a0a;
	opacity: 0.75;
	left: 0; top: 0; right: 0; bottom: 0;
	position: fixed;
}
.ui-helper-clearfix:after { clear: both; content: "."; display: block; height: 0; visibility: hidden }
.ui-helper-clearfix { display: inline-block }
* html .ui-helper-clearfix { height: 1% }
.ui-helper-clearfix { display: block }
.ui-dialog {
	text-align: left;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 360px;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.55);
	border: 1px solid rgba(255,255,255,0.08);
	background-color: #1a1d29;
	background-clip: padding-box;
	outline: none;
	color: #f3f4f6;
}
.ui-dialog-titlebar {
	padding: 12px 16px;
	position: relative;
	background: #252836 !important;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ui-dialog-title {
	float: left;
	font-weight: 700;
	font-size: .9rem;
	color: #f3f4f6;
	text-shadow: none;
}
.ui-dialog-titlebar-close {
	position: absolute;
	right: 10px; top: 50%;
	margin-top: -16px !important;
	height: 28px !important;
	width: 32px;
	border: 0 none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 6px;
}
.ui-dialog-titlebar-close:hover {
	background-color: rgba(255,255,255,0.08) !important;
}
.ui-dialog-titlebar-close .ui-icon {
	display: block;
	margin: 8px auto 0 auto;
	width: 12px;
	height: 12px;
	opacity: .6;
	font-weight: 600;
	font-size: 1rem;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3f4f6'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.ui-dialog-titlebar-close span.ui-button-text {
	display: block;
	margin: 8px auto 0 auto;
	width: 12px;
	height: 12px;
	background-size: 10px auto;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3f4f6'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
	text-indent: -9999px;
	opacity: .6;
}
.ui-dialog-titlebar-close span.ui-button-text:hover,
.ui-dialog-titlebar-close:hover .ui-icon { opacity: 1; }

.ui-button {
	font-size: .8rem;
	border: 0 none;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 8px;
	outline: none;
	background-color: #f59e0b;
	color: #1a1d29;
	padding: 8px 16px;
	text-decoration: none !important;
	box-shadow: none;
	box-sizing: border-box;
	transition: all ease .15s;
	font-weight: 700;
	text-shadow: none;
}
.ui-icon, .ui-button-icon-only { overflow: hidden; text-indent: -9999px; }
.ui-dialog label { color: #d1d5db; }
.ui-dialog-content {
	padding: 16px;
	border: 0;
	background: #1a1d29;
	color: #f3f4f6;
	overflow: auto;
	position: relative;
	zoom: 1;
}
.loginbox.ui-dialog, .loginbox .ui-dialog-content { overflow: visible !important; }
.ui-dialog-content h2 {
	display: inline;
	font-size: 1em;
	font-weight: bold;
	color: #f3f4f6;
}
.ui-dialog .ui-dialog-buttonpane {
	padding: 12px 16px;
	text-align: right;
	background: #151820;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.ui-dialog .ui-resizable-se { bottom: 3px; height: 14px; right: 3px; width: 14px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
.ui-state-error {
	background: #252836 50% 50% repeat-x !important;
	border: 1px solid #ef4444;
	color: #ef4444;
}
.ui-button { margin: 0 3px; }
.ui-helper-hidden-accessible{display: none;}

.ui-button:hover {
	background-color: #d97706;
	color: #1a1d29;
}

.ui-dialog-buttonset button:last-child {
	background-color: #f59e0b;
	color: #1a1d29;
}
.ui-dialog-buttonset button:last-child:hover {
	background-color: #d97706;
}

.ui-dialog-buttonset button:first-child {
	background-color: #374151;
	border-color: #374151;
	color: #f3f4f6;
}
.ui-dialog-buttonset button:first-child:hover {
	background-color: #4b5563;
}
.ui-dialog-buttonset button.ui-button-delete {
	background-color: #ef4444;
	border-color: #ef4444;
	color: #fff;
}
.ui-dialog-buttonset button.ui-button-delete:hover {
	background-color: #dc2626;
	border-color: #dc2626;
	color: #fff;
}

/* Profile popup içerik */
.pp-card { text-align: center; color: #f3f4f6; }
.pp-avatar-wrap { position: relative; display: inline-block; margin-bottom: 12px; }
.pp-avatar {
	width: 72px; height: 72px;
	border-radius: 50%;
	background-color: #252836;
	background-size: cover;
	background-position: center;
	border: 3px solid rgba(245,158,11,0.35);
	box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.pp-online, .pp-offline {
	position: absolute; right: 2px; bottom: 2px;
	width: 14px; height: 14px; border-radius: 50%;
	border: 2px solid #1a1d29;
}
.pp-online { background: #22c55e; }
.pp-offline { background: #6b7280; }
.pp-status {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px; margin-bottom: 6px;
	font-size: 11px; font-weight: 700;
	color: #f59e0b;
	background: rgba(245,158,11,0.12);
	border: 1px solid rgba(245,158,11,0.25);
	border-radius: 999px;
}
.pp-fullname { font-size: 13px; color: #9ca3af; margin-bottom: 12px; }
.pp-stats {
	display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
	margin-bottom: 12px;
}
.pp-stat {
	background: #252836;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 10px;
	padding: 10px 8px;
}
.pp-stat strong { display: block; font-size: 18px; color: #fff; line-height: 1.2; }
.pp-stat span { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
.pp-meta {
	list-style: none; margin: 0 0 12px; padding: 10px 0 0;
	border-top: 1px solid rgba(255,255,255,0.06);
	text-align: left; font-size: 12px;
}
.pp-meta li {
	display: flex; align-items: center; justify-content: space-between;
	gap: 8px; padding: 5px 0; color: #9ca3af;
}
.pp-meta b { color: #e5e7eb; font-weight: 600; }
.pp-badge-on { color: #22c55e; font-weight: 700; }
.pp-badge-off { color: #9ca3af; font-weight: 700; }
.pp-links { display: flex; flex-direction: column; gap: 8px; }
.pp-link {
	display: flex; align-items: center; justify-content: center;
	padding: 9px 12px; border-radius: 8px; font-size: 12px; font-weight: 700;
	background: #252836; border: 1px solid rgba(255,255,255,0.06);
}
.pp-link a { color: inherit !important; text-decoration: none !important; }
.pp-link-news { background: linear-gradient(90deg, #f59e0b, #d97706); border: 0; color: #1a1d29 !important; }
.pp-link-news a { color: #1a1d29 !important; }
.pp-link-comm { color: #e5e7eb; }
.pp-link-rss { color: #f59e0b; border-color: rgba(245,158,11,0.25); }

.tox .tox-dialog__footer .tox-button--secondary {
    background-color: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #1a1d29 !important;
}

.tox .tox-button {
    background-color: #f59e0b !important;
    border-color: #f59e0b !important;
    color: #1a1d29 !important;
}

.dle-popup-userprofileadmin .ui-button-delete {
	float: left;
}

.dle-popup-userprofileadmin .ui-dialog-buttonset button:nth-child(2) {
	background-color: #6b7280;
}

.ui-autocomplete {
    position: absolute;
    cursor: default;
    background: #252836;
    border: 1px solid #2d303e;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ui-menu {
	list-style:none;
	padding: 2px; margin: 0;
	float: left;
	background: #252836;
	border: 1px solid #2d303e;
	color: #f3f4f6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.ui-menu .ui-menu { margin-top: -3px; }
.ui-menu .ui-menu-item {
    margin:0;
    padding:.5em .75em;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    border-radius: 4px;
    color: #f3f4f6;
}
.ui-menu .ui-menu-item:hover {
    background: #2d303e;
    color: #f59e0b;
}

.bb-editor textarea {
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
    padding: 7px;
    border: 1px solid #2d303e;
    width: 100%;
    background: #252836;
    color: #f3f4f6;
    -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	margin-top: -1px;
	outline: none;
}

.bb-editor textarea:focus{
		border-color: #f59e0b !important;
        background: #252836;
}
	
	.emoji_box {
		width:100%;
		max-width: 390px;
	}
	.emoji_category {
		padding:7px;
		clear:both;
	}
	.emoji_list {
		margin-top:5px;
		margin-bottom:5px;
		width:100%;
		font-family:'Apple Color Emoji', 'Segoe UI Emoji', 'NotoColorEmoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
		font-size:2em;
	}
	.emoji_symbol {
		float:left;
		margin-bottom: 10px;
		width:12.5%;
		text-align:center;
	}
	
	.emoji_symbol a,  .emoji_symbol a:hover {
		cursor: pointer;
		text-decoration:none;
	}
	
.quick-edit-text { padding: .4em; width: 350px; }
	.quick-edit-textarea {
		height: 250px; padding: 2px;
		border: 1px solid #d7d7d7;
		width: 100%;
		box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);
		-webkit-transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
		transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	}

#dlefastreplycomments {
	padding: 0 4% 10px 4%;
}
#dle-comments-list > .comments-tree-list > li .comments-tree-list > li #dlefastreplycomments { padding: 0 0 10px 0; }

#marker-bar,
	#txtselect_marker {
		display: block;
		visibility: hidden;
		position: absolute;
		z-index: 1200;
		opacity: 0;
		-webkit-transition: opacity .4s, visibility .1s linear .4s;
		transition: opacity .4s, visibility .1s linear .4s;
	}
	#txtselect_marker {
		cursor: pointer;
		background:url(../dleimages/marker.png) no-repeat 0 0;
	}
	#txtselect_marker:hover { background-position: 0 -32px; }
	#marker-bar{
		border: 1px solid #ccc;
		border-radius: 15px;
		background: #fff;
		padding: 5px 10px;
		cursor: default;
		box-shadow: 0 0 4px #ccc; -webkit-box-shadow: 0 0 4px #ccc;
	}
	#marker-bar.show {
		-webkit-transition: opacity .4s, visibility 0s;
		transition: opacity .4s, visibility 0s;
		opacity: 1;
		visibility: visible;
	}
	#txtselect_marker.show {
		visibility: visible;
		width: 32px; height: 32px;
		-webkit-transition: opacity .4s, visibility 0s;
		transition: opacity .4s, visibility 0s;
		opacity: 1;
	}
	#marker-bar .masha-social,
	#marker-bar .masha-marker{
		cursor: pointer;
		display: block;
		margin: 0 5px;
		float: left;
	}
	#marker-bar .masha-marker{
		line-height: 1em;
		color: #aaa;
		border-bottom: 1px dotted #aaa;
		margin-right: 10px;
	}
	#marker-bar .masha-marker:hover {
		color: #ea3e26;
		border-color: #ea3e26;
	}
	.user_selection, .user_selection_true {
		background: #fff5d5;
		padding: 2px 0;
	}
	.user_selection a.txtsel_close,
	.user_selection_true a.txtsel_close { display: none; }
	.user_selection .closewrap, .user_selection_true .closewrap { position: relative; }
	.user_selection.hover a.txtsel_close, .user_selection_true.hover a.txtsel_close {
		display: inline-block;
		position: absolute;
		top: -7px; left: -5px;
		width: 33px; height: 33px;
		background: url(../dleimages/closemarker.png) 0 0 no-repeat;
	}
	.user_selection.hover a.txtsel_close:hover,
	.user_selection_true.hover a.txtsel_close:hover { background-position: -0px -33px; }

	#share-popup {
		border: 1px solid #e6e6e6; border-color: rgba(0,0,0,0.1);
		border-radius: 2px;
		background: #fff;
		position: absolute; z-index: 100;
		width: 414px;
		display: none;
		padding: 20px 0;
		opacity: 0;
		box-shadow: 0 8px 40px -10px rgba(0,0,0,0.3);
		background-clip: padding-box;
		-webkit-transition: opacity .4s, visibility .1s linear .4s;
		transition: opacity .4s, visibility .1s linear .4s;
	}
	#share-popup.show {
		display: block; opacity: 1;
		-webkit-transition: opacity .4s, visibility 0s;
		transition: opacity .4s, visibility 0s;
	}
	#share-popup .social { padding: 0 0 10px 17px; }
	#share-popup .social p { padding-bottom: 10px; margin: 0; font-weight: bold;}
	#share-popup .social ul { list-style: none; margin: 0; padding: 0; }
	#share-popup .social ul li { display: inline; margin-right: 20px; padding-top: 2px; }
	#share-popup .social ul a {
		text-decoration: none;
		font-size: 12px;
		display: inline-block;
		color: #919191;
	}
	#share-popup .social ul a:hover { text-decoration: underline; }
	#share-popup .social a span {
		cursor: pointer;
		width: 20px; height: 20px;
		background: url(../dleimages/social-icons.png) 20px 20px no-repeat;
		display: inline-block;
		vertical-align: middle;
		margin: -3px 5px 0 0;
	}
	#share-popup .social .tw span { background-position: 0 -20px; }
	#share-popup .social .tw:hover span { background-position: 0 0; }
	#share-popup .social .fb span { background-position: -20px -20px; } 
	#share-popup .social .fb:hover span { background-position: -20px 0; }
	#share-popup .social .vk span{ background-position: -40px -20px; }
	#share-popup .social .vk:hover span { background-position: -40px 0; }
	#share-popup .social .gp span{ background-position: -60px -20px; }
	#share-popup .social .gp:hover span { background-position: -60px 0; }
	#share-popup .link {
		clear: both;
		border-top: 1px solid #d9d9d9;
		padding: 10px 5px 0 10px;
		line-height: 1.2;
		overflow: hidden;
		margin: 0 7px;
	}
	#share-popup .link p {
		font-weight: bold;
		padding: 0 0 3px 0;
		margin: 0;
	}
	#share-popup .link span {
		color: #999;
		font-size: 10px;
		display: block;
		padding-top: 3px;
	}
	#share-popup .link a { display: block; }
	.dle-alert, .dle-confirm, .dle-promt { padding: 20px 1em !important; }

select, textarea, input[type="text"], input[type="password"], input[type="file"],
input[type="datetime"], input[type="datetime-local"], input[type="date"],
input[type="month"], input[type="time"], input[type="week"], input[type="number"],
input[type="email"], input[type="url"], input[type="search"], input[type="tel"],
input[type="color"] {
	display: inline-block;
	width: 302px;
	padding: 6px;
	vertical-align: middle;
	border-radius: 3px;
	background: #252836;
    color: #f3f4f6;
	border: 1px solid #2d303e;
	-webkit-transition: border 0.2s linear 0s; transition: border 0.2s linear 0s;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

select {
		width: auto;
    padding: .35rem 2.2rem .35rem .65rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    appearance: none;
    background-color: #252836;
    color: #f3f4f6;
    border: 1px solid #2d303e;
}

select[multiple] {
    padding-right: .75rem;
    background-image: none;
    background-color: #252836;
}

	textarea {
        margin: 0;
        overflow: auto;
        vertical-align: top;
        resize: vertical;
        background: #252836;
        color: #f3f4f6;
    }
	textarea:focus, select:focus, input[type="text"]:focus, input[type="password"]:focus,
	input[type="file"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus,
	input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus,
	input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus,
	input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus,
	input[type="color"]:focus, .uneditable-input:focus {
		border-color: #f59e0b;
		background: #252836;
        color: #f3f4f6;
	}
	input[type="file"], input[type="image"],
	input[type="submit"], input[type="reset"],
	input[type="button"] {
        width: auto;
        background: #f59e0b;
        color: #1a1d29;
        border: 1px solid #f59e0b;
        padding: 6px 12px;
        border-radius: 3px;
        cursor: pointer;
    }
	input[type="search"] {
		-webkit-box-sizing: content-box;
		-moz-box-sizing: content-box;
		box-sizing: content-box;
	}
	input[type="search"]::-webkit-search-cancel-button,
	input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
	select[multiple], select[size], textarea { height: auto; }
	input::-moz-placeholder, textarea::-moz-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        opacity: 0.6;
        color: #9ca3af;
    }

	input:focus { outline: none; }
	input[type="file"], input[type="image"] {
        padding: 0;
        border-width: 0;
        background-color: #f59e0b;
        color: #1a1d29;
    }
	.wide, .bb-editor textarea, .ui-dialog textarea, select#category, .timezoneselect, .twofactorselect, .quick-edit-text { width: 100% !important; }
	#searchuser, #searchinput { width: 100% !important; margin-bottom: 10px; }

	.form_submit .c-captcha { float: right; }
	.c-captcha { position: relative; }
	.c-captcha:after { clear: both; display: block; content: ""; }
	.c-captcha > a { float: left; margin-right: 5px; }
	.c-captcha img {
		position: relative;
		display: block;
		width: 130px; height: 46px;
		z-index: 1;
		-webkit-transition: all ease .2s; transition: all ease .2s;
	}
	.c-captcha > input { float: left; width: 130px; height: 46px;}

	.dle-captcha { position: relative; }
	.dle-captcha:after { clear: both; display: block; content: ""; }
	.dle-captcha > a { float: left; margin-right: 5px; }
	.dle-captcha img {
		position: relative;
		display: block;
		width: 130px; height: 46px;
		-webkit-transition: all ease .2s; transition: all ease .2s;
	}
	.dle-captcha > input { float: left; width: 130px; height: 46px; }

.btn, .bbcodes, .btn-border {
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 8px;
	outline: none;
	background-color: #f59e0b;
	color: #1a1d29;
	font-weight: 600;
	border: 0 none;
	padding: 7px 22px;
	text-decoration: none !important;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	box-sizing: border-box;
	transition: all ease .1s; transition: all ease .1s;
}
	.btn > .icon { fill: #1a1d29; }
	.btn-white > .icon { fill: #f59e0b; }
	.btn-white {
        background-color: #252836;
        color: #f59e0b;
        border: 1px solid #f59e0b;
    }
		.btn-white:hover > .icon { fill: #1a1d29; }
		.btn-white:hover {
            background-color: #f59e0b;
            color: #1a1d29;
        }
	.btn:hover, .bbcodes:hover {
        background-color: #e2910b;
        color: #1a1d29;
    }

.bbcodes.cancelchanges {
	background-color: #9ca3af;
    color: #1a1d29;
}
.bbcodes.cancelchanges:hover {
	background-color: #b7bcc6;
}

	.btn-big { padding: 12px 27px; border-radius: 10px; }

	.btn-border {
		color: #f59e0b;
		border: 2px solid #f59e0b;
		line-height: 22px;
		padding: 5px 20px;
		background-color: transparent !important;
		overflow: hidden;
		box-shadow: inset 0 0 0 0 transparent;
		text-shadow: none;
        background: #252836;
	}

	.btn-border.btn-big{
		padding: 10px 20px;
	}

table.xfields {
	width: 100%;
}
.xfields textarea, .xprofile textarea {
    width: 100%;
    height: 186px;
    margin-top: 5px;
}
.xfields input[type="text"] {
	width: 100%;
}

.xfieldsdescr {
	width: 200px;
}
.xfields .bb-pane + textarea {
    margin-top: 0px;
}
.xfieldsnote {
	color: #838383;
    font-size: .9em;
}

.xfields_table td {
    vertical-align: top;
}
.xfieldsrow {
	padding-top:10px;
	clear: both;
}
.xfieldscolleft {
	float: left;
	width: 30%;
	padding-top: 6px;
}
.xfieldscolright {
	float: left;
	width: 70%;
}
.file-box {
	width: 95%;
	max-width: 437px;
	border:1px solid #B3B3B3;
	-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
	background-color: #F5F5F5;
	padding: 10px;
	margin-top: 10px;
}

.xfieldimagegallery, .comments-image-gallery {
  margin: 0;
  padding: 0;  
  list-style: none;
  clear: both;
}

.xfieldimagegallery li, .comments-image-gallery li{
	list-style: none;
	margin: 0;
	padding: 0;  
}

.xfieldimagegallery li img, .comments-image-gallery li img{
  float: left;
  margin-right: 5px;
  border: 5px solid #fff;
  width: 100px;
  height: 100px;
  transition: box-shadow 0.5s ease;
}

.xfieldimagegallery li img:hover, .comments-image-gallery li img:hover {
  box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
}

.qq-uploader { position:relative; width: 100%;}

.qq-upload-button {
    display:inline-block;
    margin-top:5px;
    margin-bottom:5px;
	cursor:pointer;
}
.qq-upload-drop-area {
    position:absolute; top:0; left:0; width:100%; height:100%; z-index:2;
	max-width: 437px;
    background:#FF9797; text-align:center; 
}
.qq-upload-drop-area span {
    display:block; position:absolute; top: 50%; width:100%; margin-top:-8px; font-size:16px;
}

.qq-upload-drop-area-active {background:#FF7171;}

.sortable-ghost {
	opacity: 0.4;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor:not-allowed;
    pointer-events:none;
    opacity:0.65;
    filter:alpha(opacity=65);
    -webkit-box-shadow:none;
    box-shadow:none;
}

.progress {
    overflow:hidden;
    margin-top:10px;
	margin-bottom:10px;
    background-color:whitesmoke;
    height:10px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    -ms-border-radius:8px;
    -o-border-radius:8px;
    border-radius:8px;
    background:#eee;
    -webkit-box-shadow:0 1px 0 white, 0 0px 0 1px rgba(0, 0, 0, 0.1) inset, 0 1px 4px rgba(0, 0, 0, 0.2) inset;
    box-shadow:0 1px 0 white, 0 0px 0 1px rgba(0, 0, 0, 0.1) inset, 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
 .progress .progress-bar {
    float:left;
    width:0%;
    font-size:12px;
    line-height:20px;
    color:white;
    text-align:center;
    background-color:#428bca;
    -webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition:width 0.6s ease;
    transition:width 0.6s ease;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    -ms-border-radius:8px;
    -o-border-radius:8px;
    border-radius:8px;
    -webkit-box-shadow:none;
    box-shadow:none;
    height:8px;
}
.progress-bar span{
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
    clip:rect(0 0 0 0);
    border:0;
}
.progress-blue {
    background-image:-webkit-gradient(linear, left 0%, left 100%, from(#9bcff5), to(#6db9f0));
    background-image:-webkit-linear-gradient(top, #9bcff5, 0%, #6db9f0, 100%);
    background-image:-moz-linear-gradient(top, #9bcff5 0%, #6db9f0 100%);
    background-image:linear-gradient(to bottom, #9bcff5 0%, #6db9f0 100%);
    background-repeat:repeat-x;
    border:1px solid #55aeee;
}

/*---Смайлы---*/

span.emoji {
    margin-left: 0.313rem;
    margin-right: 0.313rem;
}

.emoji {
    border: none;
    vertical-align: bottom;
}

.native-emoji {
    font-size: 1.3em;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'NotoColorEmoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols';
}

.wseditor {
    border-top: 5px solid #0c5f7e;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.wseditor .tox-tinymce {
    border-top: none;
}

#dlefastreplycomments .wseditor {
	margin-bottom: 10px;
}

.dlecomments-editor .tox .tox-toolbar__primary,  .dlefastedit-editor .tox .tox-toolbar__primary{
    border-top: 0;
    box-shadow: none;
}

/* Yorum ağacı — Tailwind @apply bu sınıfı düşürüyordu, düz CSS */
#comments-section .comments-tree-list,
#comments-section #dle-comments-list,
.dle-comments-list .comments-tree-list,
.dle-comments-list > ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
#comments-section .comments-tree-list > li,
#comments-section #dle-comments-list > li,
.dle-comments-list .comments-tree-list > li {
	margin: 0 0 1rem 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
#comments-section .comments-tree-list .comments-tree-list,
.dle-comments-list .comments-tree-list .comments-tree-list {
	margin: 0.75rem 0 0 0.75rem !important;
	padding: 0 0 0 0.75rem !important;
	border-left: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
	#comments-section .comments-tree-list .comments-tree-list,
	.dle-comments-list .comments-tree-list .comments-tree-list {
		margin-left: 1.5rem !important;
		padding-left: 1rem !important;
	}
}

/* Yorum metni / alıntı */
#comments-section .c-text a,
.c-item .c-text a {
	color: #f59e0b;
}
#comments-section .c-text .quote,
#comments-section .c-text .title_quote,
#comments-section .c-text blockquote,
.c-text .quote,
.c-text .title_quote,
.c-text blockquote {
	background: rgba(255,255,255,0.05);
	border-left: 2px solid #f59e0b;
	border-radius: 0 0.5rem 0.5rem 0;
	margin: 0.5rem 0;
	padding: 0.75rem 1rem;
	color: #d1d5db;
}
#comments-section .c-text .title_quote {
	font-size: 0.75rem;
	color: #9ca3af;
	padding-bottom: 0.25rem;
	margin-bottom: 0;
	border-radius: 0 0.5rem 0 0;
}
#comments-section .c-mass select,
.c-mass select {
	background: #0a0a0a;
	border: 1px solid rgba(255,255,255,0.1);
	color: #d1d5db;
	font-size: 11px;
	border-radius: 0.5rem;
	padding: 0.35rem 0.5rem;
	max-width: 140px;
}

/* Yorum TinyMCE — koyu tema */
#comments-section .tox-tinymce,
.c-editor .tox-tinymce,
.dlecomments-editor .tox-tinymce,
#addcomment .tox-tinymce {
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
	background: #0a0a0a !important;
}
#comments-section .tox .tox-edit-area__iframe,
.c-editor .tox .tox-edit-area__iframe,
#addcomment .tox .tox-edit-area__iframe {
    background: #0a0a0a !important;
}
#comments-section .tox .tox-toolbar,
#comments-section .tox .tox-toolbar__primary,
#comments-section .tox .tox-menubar,
#comments-section .tox .tox-statusbar,
.c-editor .tox .tox-toolbar,
.c-editor .tox .tox-toolbar__primary,
#addcomment .tox .tox-toolbar,
#addcomment .tox .tox-toolbar__primary,
#addcomment .tox .tox-statusbar {
    background: #111 !important;
    border-color: rgba(255,255,255,0.08) !important;
}
#comments-section .tox .tox-tbtn,
.c-editor .tox .tox-tbtn,
#addcomment .tox .tox-tbtn {
    color: #9ca3af !important;
}
#comments-section .tox .tox-tbtn:hover,
.c-editor .tox .tox-tbtn:hover,
#addcomment .tox .tox-tbtn:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #f59e0b !important;
}
#comments-section .tox .tox-statusbar__path-item,
#addcomment .tox .tox-statusbar__text-container,
#addcomment .tox .tox-statusbar__wordcount {
	color: #6b7280 !important;
}
#comments-section .bb-editor textarea,
#addcomment textarea,
.c-editor textarea {
	background: #0a0a0a !important;
	color: #e5e7eb !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 0 0 0.5rem 0.5rem;
	min-height: 120px;
	width: 100%;
	padding: 0.75rem 1rem;
}
#comments-section .bb-pane,
#addcomment .bb-pane {
	background: #0a0a0a !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-bottom: 0 !important;
	border-radius: 0.5rem 0.5rem 0 0;
	padding: 0.35rem;
}
#comments-section .bb-btn,
#addcomment .bb-btn {
	opacity: 0.75;
}
#comments-section .bb-btn:hover,
#addcomment .bb-btn:hover {
	opacity: 1;
}

.mce-toc {
  border: 1px solid #dbdada;
	margin: 0 0 .7rem 0;
}

.mce-toc h2 {
  margin: 4px;
}

.mce-toc ul {
	padding-left: 20px;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.mce-toc ul ul {
	padding-left: 20px;
	margin-block-start: 0;
  margin-block-end: 0;
}

.mce-toc li {
  list-style-type: none;
}

.image-bordered {
	border: 1px solid #ddd;
}

.image-shadows {
	box-shadow: rgb(9 30 66 / 25%) 0px 4px 8px -2px, rgb(9 30 66 / 8%) 0px 0px 0px 1px;
}

.image-padded {
	padding: 0.5rem;
}

.comments-user-profile {
  font-weight: bold;
  cursor: pointer;
  color: #3394e6;
}

.tox .tox-dialog__header {
    color: rgb(255, 255, 255) !important;
    background-color: #517fa4 !important;
    border-bottom: #517fa4 !important;
}

.title_spoiler svg{
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 7px;
	height: 16px;
	width: 16px;
}

.mce-accordion summary {
	cursor: pointer;
}

.mobilewseditor .tox:not(.tox-tinymce-inline) .tox-editor-header {
	border-bottom: none;
}

.self_delete_link {
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 12px 27px;
	border-radius: 10px;
	margin-left: 15px;
	outline: none;
	background-color: #f44336;
	color: #fff;
	text-shadow: 0 1px #333;
	text-decoration: none !important;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	box-sizing: border-box;
	transition: all ease .1s; transition: all ease .1s;
}
input[type="text"].comments_author_field {
	width: 100%;
	margin-bottom: 10px;
}

.user_fields .xfieldscolright {
    float: none;
    width: auto;
}
.user_fields .form-check-input {
	margin: 0.375rem 0.625rem 0 0;
}

.DLEPush {
	z-index: 2001;
	position: fixed;
	right: 20px;
	top: 20px
}

@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.DLEPush-notification.wrapper {
	animation-name: DLEPush-show;
	animation-duration: 1s;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
	background-color: #fff;
	border-radius: 10px
}

.DLEPush-notification .DLEPush-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 45px;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
}

.DLEPush-notification .DLEPush-icon svg {
	scale: .8;
}

.DLEPush-notification .DLEPush-header {
	font-weight: 500;
	grid-column: 2;
	grid-row: 1;
	font-size: 1rem;
	margin-left: 1rem;
	margin-top: .5rem;
}
.DLEPush-notification .DLEPush-header:empty {
	margin-top: 0;
}

.DLEPush-notification .DLEPush-message {
	grid-column: 2;
	grid-row: 2;
	font-size: .875rem;
	margin: 1rem;
}

.DLEPush-notification .DLEPush-message li, .DLEPush-notification .DLEPush-message ul {
	list-style-type: none;
	padding-left: 0;
}

.DLEPush-notification .DLEPush-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-weight: 300;
	background: none;
	border: 0;
	font-size: 1.15rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: inherit;
	outline: 0;
	opacity: 0.75;
}

@media only screen and (min-width: 601px) {
	.DLEPush-notification.wrapper {
		min-width: 400px;
	}
}

@media only screen and (max-width: 600px) {
	.xfieldscolleft {
		float: none;
		width: 100%;
	}
	.xfieldscolright {
		float: none;
		width: 100%;
	}
}

.DLEPush-notification .DLEPush-close:hover {
	opacity: 1;
}

.DLEPush-notification.wrapper.push-success {
	background-color: #e0f2f1;
}

.DLEPush-notification.wrapper.push-success .DLEPush-icon {
	background-color: #00897b;
}

.DLEPush-notification.wrapper.push-warning {
	background-color: #FFF3E0;
}

.DLEPush-notification.wrapper.push-warning .DLEPush-icon {
	background-color: #FF9800;
}

.DLEPush-notification.wrapper.push-error {
	background-color: #FBE9E7;
}

.DLEPush-notification.wrapper.push-error .DLEPush-icon {
	background-color: #FF5722;
}
.quote_link {
	float: right;
}
.quote_link svg {
	color: #6c838e;
	vertical-align: middle;
}
.clipboard-copy-link svg {
	color: #6c838e;
	vertical-align: middle;
	margin-top: -3px;
}