* {
    background: transparent;
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    color: var(--tt);
    background: var(--bg);
    font-family: "Manrope", serif;
    font-size: 16px;
    font-weight: 400;
}
a {color: #000; text-decoration: none;}
img {width: 100%; height: 100%; object-fit: cover;}
ol, ul {list-style: none;}
h1 {font-size: 24px;}
h2 {font-size: 19px;}
h3 {font-size: 18px;}
h4, h5, h6 {font-size: 17px;}
input[type="text"], input[type="password"], input[type="email"], textarea {width: 100%; padding: 9px 20px 9px 20px; border: 1px solid #593FDB;
    background-color: transparent; color: #000000; border-radius: 12px; font-family: inherit; font-size: 16px; resize: vertical;}
.header_search input[type="text"] {padding: 9px 50px 10px 20px;}
input[type="radio"], input[type="checkbox"] {margin-right: 5px;}
select {padding: 8px; background-color: var(--input); border: 1px solid var(--input-border); border-radius: 10px; color: var(--tt);}
.form_row select {width: 100%;}
.xfields_table tr td {padding-bottom: 10px;}
option:checked {background: #dbdbdb;}

.form-check-label {display: inline-flex; vertical-align: middle;}

.ui-dialog {background-color: var(--card); box-shadow: 0 8px 40px 6px rgba(0, 0, 0, 0.3); border-radius: 10px; overflow: hidden;}
.ui-front {z-index: 1000;}
.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-dialog-titlebar-close: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; flex-wrap: wrap; justify-content: center; gap: 10px 10px;}

.xfields_table {width: 100%;}
.xfieldsrow {padding-top:10px; clear: both;}
.xfieldscolleft {float: left; width: 30%; padding-top: 6px;}
.xfieldscolright {float: left; width: 70%;}

@media only screen and (max-width: 600px) {
	.xfieldscolleft {float: none; width: 100%;}
	.xfieldscolright {float: none; width: 100%;}
    .ui-dialog {width: 100% !important; left: 0 !important;}
}

#dropmenudiv {background-color: var(--card); 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: var(--hover); color: var(--hover-accent);}

#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;
}