* {
    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", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
img {width: 100%; height: 100%; object-fit: cover;}
a {color: var(--tt); text-decoration: none;}
h1 {font-size: 22px; font-weight: 600;}
h2 {font-size: 18px; font-weight: 600;}
h3 {font-size: 16px; font-weight: 600;}
h4, h5, h6 {font-size: 15px; font-weight: 600;}
ol, ul {list-style: none;}
button, .btn, input[type="submit"], input[type="button"], input[type="reset"] {display: inline-flex; align-items: center; min-height: 30px;
    background: #1d9bf0; color: #fff; border-radius: 10px; padding: 0 20px; cursor: pointer;}
button:hover, .btn:hover, input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover {background: #3ca7ef;}
.search_btn {position: absolute; right: 0; top: 0; height: 39px; font-size: 16px; background: transparent !important; color: var(--tt);}
.search_btn:hover {transform: scale(1.1); color: #1d9bf0;}
input[type="radio"], input[type="checkbox"] {margin-right: 5px;}
input[type="text"], input[type="password"], input[type="email"], textarea {width: 100%; padding: 9px 20px 9px 20px; border: 1px solid #00000008;
    background-color: var(--input); color: var(--tt); border-radius: 14px; font-family: inherit; font-size: 14px; resize: vertical;}
select {padding: 8px; background-color: var(--input); border: 1px solid #00000008; border-radius: 10px; color: var(--tt);}
option:checked {background: #dbdbdb;}
#dropmenudiv {background-color: var(--card); border-radius: 15px; 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: 6px 8px; color: inherit;}
#dropmenudiv a:hover {background: var(--semi-light);}
#dle-captcha img {border-radius: 10px;}
.quote_link {float: right;}
.quote_link svg {color: #6c838e; vertical-align: middle;}

.ui-front {z-index: 1000;}
.ui-dialog {background-color: var(--card); 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 var(--border);}
.ui-dialog-titlebar-close {cursor: pointer; font-size: 0; padding: 0 2px;}
.ui-dialog-titlebar-close:before {content: "\F62A"; font-family: "bootstrap-icons"; 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;}
.comments-image-uploader .plupload_wrapper {background-color: var(--input) !important;}
.plupload_button.plupload_add, .plupload_button.plupload_add:hover {background: #1d9bf0 !important;}
#searchsuggestions {width: 100%; margin-top: 10px; padding: 15px; background: var(--card); border-radius: 20px; z-index: 1000;}
.fast_search_item {display: block; margin-bottom: 10px;}
.fast_search_title {font-weight: 500;}
.fast_search_item:hover > .fast_search_title {color: #1d9bf0;}
.fast_search_text {color: var(--tt-semi-light);}

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