* {
    background: none;
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
    box-sizing: border-box;
}
body {
    color: var(--tt);
    background: var(--bg);
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
h1 {font-size: 24px;}
h2 {font-size: 19px;}
a {color: var(--tt); text-decoration: none;}
ol, ul {list-style: none;}
img {width: 100%; height: auto; object-fit: cover;}
input[type="text"], input[type="password"], input[type="email"], textarea {width: 100%; padding: 11px 50px 11px 20px; border: 1px solid #00000008; background-color: #f5f5f5;
    border-radius: 10px; font-family: inherit;}
select {width: 100%; padding: 8px; background-color: #f5f5f5; border: 1px solid #e5e5e5; border-radius: 10px;}
input[type="radio"], input[type="checkbox"] {margin-right: 5px;}
.sidebar_item_year::-webkit-scrollbar {width: 7px; border-radius: 15px; background-color: #f9f9fd;}
.sidebar_item_year::-webkit-scrollbar-thumb {border-radius: 15px; background-color: #FFE500;}
.sidebar_item_year::-webkit-scrollbar-track {border-radius: 15px; background-color: #e2e5e2;}

.header_menu::-webkit-scrollbar {height: 5px; border-radius: 15px; background-color: #f9f9fd;}
.header_menu::-webkit-scrollbar-thumb {border-radius: 15px; background-color: #FFE500;}
.header_menu::-webkit-scrollbar-track {border-radius: 15px; background-color: #e2e5e2;}

#searchsuggestions::-webkit-scrollbar {width: 4px; border-radius: 15px; background-color: #f9f9fd;}
#searchsuggestions::-webkit-scrollbar-thumb {border-radius: 15px; background-color: #FFE500;}
#searchsuggestions::-webkit-scrollbar-track {border-radius: 15px; background-color: #e2e5e2;}

.dle-captcha {display: flex; gap: 10px;}
@media screen and (max-width: 1000px) {
    .col_left::-webkit-scrollbar {width: 9px; border-radius: 15px; background-color: #f9f9fd;}
    .col_left::-webkit-scrollbar-thumb {border-radius: 15px; background-color: #FFE500;}
    .col_left::-webkit-scrollbar-track {border-radius: 15px; background-color: #e2e5e2;}
}
.form_group {display: flex; gap: 10px;}
.form_row {margin-bottom: 10px;}
.form_col {display: flex; gap: 10px; align-items: center;}
.form_row_title {font-weight: 600;}
.xfields_table {width: 100%;}
.xfields_table tr td {padding-bottom: 10px;}

.ui-dialog {background-color: var(--white); box-shadow: 0 8px 40px 6px rgba(0, 0, 0, 0.3); border-radius: 10px; overflow: hidden;}
.ui-draggable .ui-dialog-titlebar {cursor: move;}
.ui-dialog-titlebar {display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; position: relative;
    font-weight: 500; border-bottom: 1px solid #E5E5E5;}
.ui-dialog-titlebar-close {cursor: pointer; font-size: 0; padding: 0 2px;}
.ui-icon-closethick::before {
    content: "\f00d";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 13px;
    width: 25px;
    height: 25px;
    text-align: center;
    display: block;
    line-height: 25px !important;
}
.ui-dialog-content {padding: 20px 15px; overflow: auto; position: relative;}
.ui-dialog-buttonpane {padding: 10px 30px; text-align: center;}
.ui-dialog-buttonset {display: flex; justify-content: center; gap: 10px 10px;}
.quote, blockquote {font-size: 20px; padding: 1% 3%; border-left: 4px solid #1793E6; background: rgb(184 182 223 / 15%);
   margin-top: 1em; margin-bottom: 1em;}
.title_spoiler, .text_spoiler {background: rgb(184 182 223 / 15%); border-radius: 10px; padding: 3px 10px; margin-top: 5px;}
.title_spoiler img {width: auto;}
#dropmenudiv {background-color: var(--white); border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, .08), 0 0 1px rgba(0, 0, 0, .16); padding: 6px;}
#dropmenudiv a {display: block; margin-bottom: 4px; border-radius: 6px; font-size: 13px; padding: 4px 6px; color: inherit;}
#dropmenudiv a:hover {background-color: #f2f2f28a;}

#dle-captcha img {border-radius: 10px;}
.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;
	}
}

.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;
}