@charset "UTF-8";


:root {
	--k-bg-main: #f3f6fd;
	--k-bg-white: #ffffff;
	--k-bg-black: #000000;
	--k-link-hover: #0d6efd;
	--k-bg-blue: #0d6efd;
	--k-transition: 0.3s;
	--k-shadow: 0 27px 53px rgb(0 0 0 / 5%);
	--k-width-main: 615px;
	--k-width-fullstory: 800px;
}

.block {
	border-radius: 15px !important;
}


/* Body styles */

body {
	background-color: #f8f8fa;
}
.bg-darks {
    background-color: #343a40 !important;
}
.fix-content {
	margin-top: 500px;
}

.td-none a {
	text-decoration: none;
}

.td-none {
	text-decoration: none;
}

.color-fix a {
	color: var(--k-bg-black) !important;
	font-weight: bold;
}

.main-bg {
	background-color: var(--k-bg-main)
}

.border-line {
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.fix-btn-dark {
	color: #000 !important;
}

.link-hover:hover {
	color: red !important;
	transition: 0, 9;
}

.main-width {
	max-width: var(--k-width-main) !important;
}

.fullstory-width {
	max-width: var(--k-width-fullstory) !important;
}


/* Header | modules/header.tpl */

.bg-header {
	background-color: rgba(243, 246, 253, 0.8) !important;
	backdrop-filter: blur(10px) !important;
}

.header-fix {
	margin-top: 90px;
}

.st {
	top: 90px !important;
}

.search-wrapper {
	border-radius: 20px;
	background-color: var(--k-bg-white);
	padding-right: 12px;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	color: var(--light-font);
	box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);
	overflow: hidden;
}

.search-input {
	border: none;
	flex: 1;
	outline: none;
	height: 100%;
	padding: 0 20px;
	width: 340px;
	font-size: 16px;
	background-color: var(--search-area-bg);
	color: var(--main-color);
}

.search-input:placeholder {
	color: var(--main-color);
	opacity: 0.6;
}

.profile-btn {
	padding: 0;
	border: 0;
	background-color: transparent;
	display: flex;
	align-items: center;
	padding-left: 12px;
	border-left: 2px solid #ddd;
}

.profile-btn img {
	width: 32px;
	height: 32px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 4px;
}

.profile-btn span {
	color: var(--main-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}

.add-btn {
	color: #fff;
	background-color: var(--k-bg-black);
	padding: 0;
	border: 0;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.notification-btn {
	color: var(--main-color);
	padding: 0;
	border: 0;
	background-color: transparent;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mode-switch {
	background-color: transparent;
	border: none;
	padding: 0;
	color: var(--main-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.app-icon {
	width: 26px;
	height: 2px;
	border-radius: 4px;
	background-color: var(--k-bg-black);
	position: relative;
}

.app-icon:before,
.app-icon:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	border-radius: 4px;
	background-color: var(--k-bg-black);
	left: 50%;
	transform: translatex(-50%);
}

.app-icon:before {
	top: -6px;
}

.app-icon:after {
	bottom: -6px;
}

.app-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 16px 24px;
	position: relative;
}

.app-header-left,
.app-header-right {
	display: flex;
	align-items: center;
}

.app-header-left {
	flex-grow: 1;
}

.app-header-right button {
	margin-left: 10px;
}

.app-name {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	margin: 0px 32px 0px 0px;
}

#toggleThemeBtn {
	cursor: pointer;
}

.moon {
	display: none;
}

.sun {
	width: 24px;
	height: 24px;
	display: block;
}

#toggleThemeBtn.light .sun {
	display: none;
}

#toggleThemeBtn.light .moon {
	display: block;
}


/* Результаты поиска */

#searchsuggestions {
	z-index: 2200;
	width: 400px;
	border-radius: 15px;
	margin-top: 20px !important;
	background: #fff;
	box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.3);
	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;
}

#searchsuggestions a {
	color: inherit;
}

#searchsuggestions a span {
	display: block;
	cursor: pointer;
}

#searchsuggestions span.searchheading {
	display: block;
	font-weight: bold;
	margin-bottom: .2em;
}

#searchsuggestions span.seperator {
	display: block;
}

#searchsuggestions span.seperator a {
	padding: 10px 0;
	text-align: center;
	border: 0 none;
	background-color: transparent;
	color: #919191;
}

#searchsuggestions span.notfound {
	padding: 15px 25px;
	display: block;
}

#searchsuggestions .break {
	display: none;
}


/* Shortstory | shortstory.tpl */

.post:hover {
	box-shadow: 0px 10px 20px rgb(55 143 246 / 25%);
	box-shadow: #378ff6;
}

.lineblue {
	border-bottom: 4px solid #0d6efd;
	width: 87px;
	margin-bottom: -11px;
}

.com-text {
	font-size: 13px;
}

.com-news {
	font-size: 13px !important;
	color: #3a3a3a;
	font-weight: bold;
}

.com-login a {
	font-size: 13px;
	color: #656565 !important;
}

.com:hover {
	background: #f5f8fd;
	border-radius: 15px;
}

.like a:hover {
	color: red !important;
}

.com-autor {
	background-color: #f9edd9;
}

.list-poll input[type=checkbox] {
	margin-right: 10px;
}

.list-poll input:checked[type=radio] {
	margin-right: 10px;
}

.img-fix img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

@media (min-width: 1200px) {
	.img-fix p:nth-child(3) {
		margin: 0 -64px;
	}
}

.card-hover:hover {
	box-shadow: 0 27px 53px rgb(0 0 0 / 8%);
	transition: var(--k-transition);
}

.noimg img {
	display: none !important;
}

.poster-img img {
	width: 100% !important;
}

.cat-icon img {
	width: 30px !important;
	height: 30px !important;
	border: solid 2px #fff !important;
	padding: 2px !important;
	border-radius: 50px !important;
}

.log-pm-none_0 {
	display: none !important;
}

.group-icon img {
	width: 15px;
	height: 15px;
	margin-bottom: 5px;
}


/*---Выпадающее меню кнопки редактировать---*/

#dropmenudiv {
	padding: 10px 0;
	min-width: 140px;
	z-index: 9999 !important;
	width: auto !important;
	opacity: 1 !important;
	display: none;
	font-size: .9em;
	box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.3);
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	background-clip: padding-box;
}

#dropmenudiv {
	background-color: #fff;
}

#dropmenudiv a {
	text-decoration: none !important;
	color: inherit;
	display: block;
	padding: 3px 20px;
	border: 0 none;
	white-space: nowrap;
	color: inherit;
	border-radius: 10px;
}

#dropmenudiv a:hover {
	background-color: #eeeeef;
}


/* Nav | modules/nav.tpl */

.app-sidebar-link {
	color: var(--k-bg-white);
	color: var(--link-color);
	margin: 16px 0;
	transition: 0.2s;
	border-radius: 50%;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.app-sidebar-link:hover {
	background-color: #eaedf3;
}

.app-sidebar-link {
	background-color: var(--p-bg-black);
	color: var(--p-bg-white);
}

.active-nav {
	background-color: var(--k-bg-black);
	color: var(--k-bg-white);
}


/* Nav | modules/sidebar.tpl */

.btn-telegram {
	box-shadow: 0px 10px 20px rgb(55 143 246 / 25%);
	box-shadow: #378ff6;
}

.border-deviver {
	border-bottom: 5px;
	color: #cecece;
}

.bordertwo img {
	border: solid 2px #0d6efd !important;
	padding: 3px !important;
	width: 54px !important;
	height: 54px !important;
	border-radius: 50px !important;
}


/* Panel | modules/panel.tpl */

.list-cat {
	list-style-type: none;
	margin-left: -20px;
}

.list-e {
	padding: 5px;
	border-radius: 15px;
}

.list-e a {
	color: #000000 !important;
	text-decoration: none;
}

.list-e:hover {
	background-color: #e6eaf3;
}


/* Userinfo | userinfo.tpl */

.link-pm a {
	color: #ffffff !important;
}

.link-rss a {
	color: #000000 !important;
	transition: 0.3s;
}

.link-rss a:hover {
	color: var(--k-link-hover) !important;
	transition: 0.3s;
}

.user-nav {
	border-bottom: 3px solid #0d6efd;
	;
	padding-bottom: 15px;
}

.soc-vk {
	background-color: #f3f6fd;
	padding: 8px;
	border-radius: 10px;
}

.soc-tg {
	background-color: #f3f6fd;
	padding: 8px 10px;
	border-radius: 10px;
}

.soc-mail {
	background-color: #f3f6fd;
	padding: 8px 10px;
	border-radius: 10px;
}


/* Login | login.tpl */

.p-list li {
	margin: 0px 5px;
	border-radius: 15px;
}

.p-list li:hover {
	border-radius: 25px !important;
	background: #f5f8fd !important;
}


/* --- PM --- */

@media only screen and (min-width: 601px) {
	#pm-menu:after {
		content: "";
		clear: both;
		display: block;
	}
	#pm-menu {
		margin-bottom: 25px;
	}
	#pm-menu a {
		color: inherit;
		border-radius: 2px;
		border: 2px solid transparent;
		float: left;
		text-decoration: none !important;
	}
}

.pm-box {
	margin-bottom: 25px;
}

.pm_status {
	padding: 25px;
	background-color: #f3f6fd;
	border-radius: 2px;
}

.pm_progress_bar {
	background-color: #d1e3ff;
	margin-bottom: 10px;
	border-radius: 2px;
}

.pm_progress_bar span {
	background: #0d6efd;
	font-size: 0;
	height: 20px;
	border-radius: 2px;
	display: block;
	overflow: hidden
}


/* --- Search | search.rpl --- */

.form-control-fix input {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-fix input:focus {
	color: #212529;
	background-color: #fff;
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}


/* --- Постраничная навигация --- */

.navigation {
	margin: 25px 0;
}

.navigation:after {
	clear: both;
	display: block;
	content: "";
}

.pages {
	text-align: left;
}

.pages span,
.pages a:hover,
.page_next-prev {
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	border-radius: 18px;
}

.pages span,
.pages a {
	color: inherit;
	display: inline-block;
	position: relative;
	padding: 7px 7px;
	min-width: 40px;
	height: 40px;
	line-height: 24px;
	text-align: center;
	text-decoration: none !important;
	font-weight: bold;
}

.pages span {
	color: #000000;
}

.pages a:hover {
	color: #fff;
	background-color: #0d6efd;
}

.page_next-prev {
	float: right;
	height: 36px;
}

.page_next-prev * {
	float: left;
}

.page_next-prev .icon {
	width: 32px;
	height: 20px;
	fill: #d7d7d7;
}

.page_next-prev>span>a:hover .icon {
	fill: #3394e6;
}

.page_next-prev>span>* {
	float: left;
	padding: 6px 12px;
}

.page_next>span,
.page_prev>span {
	opacity: 0.5;
}


/* Постраничная навигация в новости */

.splitnewsnavigation {
	margin-top: 4%;
	padding-top: 4%;
	font-weight: bold;
	border-top: 1px solid #efefef;
}

.splitnewsnavigation>a,
.splitnewsnavigation>span {
	padding: 6px 10px;
}

.owl-item img {
	border-radius: 15px !important;
}


/* Табы */

.myfeed {
	border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
	transition: var(--k-transition);
}

.myfeed:hover {
	border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
	transition: var(--k-transition);
}

@media (max-width: 1300px) {
	.stories-fix {
		display: none !important;
	}
}

.bordertwo img {
	border: solid 2px #0d6efd;
	padding: 3px;
	width: 54px;
	height: 54px;
	border-radius: 50px;
}
.shortMiniPrice {
    background: #3280f2;
    border-radius: 0.4rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 2px 10px;
    margin-top: 6px;
    margin-left: 6px;
    cursor: default;

}

.bottom-nav {clear: both; padding-top: 60px;}
.nav-load {text-align: center;}
.nav-load a {padding: 0 60px; display: inline-block; height: 60px; line-height: 60px; border-radius: 30px;
font-weight: 700; font-size: 18px; background-color: #2980b9; color: #fff;}
.nav-load a:hover {background-color: #00a652; color: #fff;}
.nav-load span {display: none;}

.xfieldimagegallery li img {
    float: left;
    margin-right: 5px;
    border: 2px solid #686de0;
    width: 100px;
    height: 100px;
    transition: box-shadow .5s ease;
}
.xfieldimagegallery li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.xfieldimagegallery li {
    list-style: none;
    margin: 0;
    padding: 0;
}
div.scrollup {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px;
    right: 10px;
    bottom: 40px; /* подняли на 30px выше, чем было */
    z-index: 990;
    display: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 60px;
    text-align: center;
    color: #fff;
    background-color: #142a38;
}
.dle-use_bg {
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    height: 220px;
    overflow: hidden;
  background-image: url('https://tradarena.ru/uploads/posts/2020-11/1605998418_mta-02.jpg');
    background-size: cover; /* Это свойство гарантирует, что изображение будет покрывать весь элемент */
    background-position: center; /* Это центрирует изображение в элементе */

}

.dle-use_bg > span {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-block;
    background: var(--light);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    color: #b9b3d3!important;
    padding: 4px 10px;
    font-size: 10px;
}
.lightstat_main * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.lightstat_main *:before, .lightstat_main *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.lightstat_main {
	min-width: 230px;
	width: 100%;
	margin: 0 auto;
	font-family: arial;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	border-radius: 8px;
}

.lightstat_progress {
	width: 100%;
	padding: 0 10px;
}

.lightstat_progress span {
	height: 4px;
	display: block;
	float: left;
}

.lightstat_progress span:nth-of-type(1) {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.lightstat_progress span:nth-last-of-type(1) {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.lightstat_body {
	background: #242043;
	border-radius: 8px 8px 0 0;
	padding: 15px 0 1px 0;
}

.lightstat_body.border_none_user {
	border-radius: 8px;
}

.lightstat_body .result_numb div {
	padding: 0 10px 11px 10px;
	color: #bbb;
	font-size: 14px;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .6);
}

.lightstat_body .result_numb div span:nth-of-type(1) {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 99px;
	margin: 4px 10px 0 0;
	vertical-align: top;
	box-shadow: 0px -1px 1px rgba(0, 0, 0, .6);
}

.lightstat_body .result_numb div span:nth-of-type(2) {
	float: right;
	color: #fff;
}

.lightstat_body .result_numb .lightstat_user span:nth-of-type(1) {
	border: 2px solid #d9823b;
}

.lightstat_body .result_numb .lightstat_guest span:nth-of-type(1) {
	border: 2px solid #a963b9;
}

.lightstat_body .result_numb .lightstat_bot span:nth-of-type(1) {
	border: 2px solid #36a7a5;
}

.lightstat_user_circle {
	background: #d9823b;
}

.lightstat_guest_circle {
	background: #a963b9;
}

.lightstat_bot_circle {
	background: #36a7a5;
}

.lightstat_is {
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
	padding: 18px 0 15px 28px;
	display: block;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .6);
}

.lightstat_user_list {
	background: #fff;
	border-radius: 0 0 8px 8px;
	position: relative;
}

.lightstat_pandoge_com {
	width: 8px;
	height: 20px;
	position: relative; 
	background: #222;
	display: block;
	position: absolute;
	top: 0;
	right: 20px;
	transition: .2s;
}

.lightstat_pandoge_com:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 4px solid #d1d5d8;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.lightstat_pandoge_com:hover {
	height: 24px;
	transition: .2s;
}

.lightstat_user_list_title {
	color: #242043;
	font-size: 10px;
	text-transform: uppercase;
	padding: 18px 0 17px 28px;
	display: block;
	font-weight: 700;
}

.lightstat_user_list_item {
	padding: 0 10px 20px 10px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.lightstat_user_list_item a {
	text-decoration: none !important;
	color: #242043;
}

.lightstat_user_list_item_avatar {
	background-size: cover !important;
	border-radius: var(--bs-border-radius) !important;
	width: 34px;
	height: 34px;
	display: block;
}

.lightstat_user_list_item_avatar:hover {
	opacity: .8;
}

.lightstat_user_list_item_info {
	font-size: 12px;
	font-weight: 700;
	width: calc(100% - 34px);
	padding: 1px 0 0 10px;
}

.lightstat_user_list_item_info span {
	display: block;
	font-weight: 400;
	padding: 2px 0 0 0;
	color: #888;
}

.lightstat_user_list_item_info span.online {
	color: #0e8952;
}

.lightstat_user_list_item_info a:hover {
	text-decoration: underline !important;
}

.full_list_visit {
	margin: auto;
	color: #242043;
	font-size: 10px;
	text-transform: uppercase;
	display: block;
	font-weight: 700;
	width: 120px;
	text-align: center;
	background: #fff;
	border-radius: 99px;
	height: 26px;
	line-height: 26px;
	border: 1px solid #888;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.full_list_visit:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

.full_list_visit_bg {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 0 0 8px 8px;
	z-index: 2;
	background: -moz-linear-gradient(bottom, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, 1) 100%);
	padding: 20px 0;
}

.lightstat_user_list_item {
	display: none;
}

.lightstat_user_list .lightstat_user_list_item:nth-of-type(1), .lightstat_user_list .lightstat_user_list_item:nth-of-type(2), .lightstat_user_list .lightstat_user_list_item:nth-of-type(3) {
	display: flex;
}

.lightstat_light_theme .lightstat_body {
	background: #ffffff;
}


.lightstat_light_theme .lightstat_user_list_item a {
	color: #030304;
}

.lightstat_light_theme .lightstat_user_list_title {
	color: #030304;
}

.lightstat_light_theme .lightstat_body .result_numb div span:nth-of-type(2) {
	color: #283e52;
}

.lightstat_light_theme .lightstat_body .result_numb div {
	color: #030304;
	text-shadow: none;
}

.lightstat_light_theme .lightstat_is {
	text-shadow: none;
	color: #283e52;
}

.lightstat_light_theme .lightstat_body .result_numb .lightstat_user span:nth-of-type(1) {
	border: 2px solid #0bb1d6;
	box-shadow: none;
}

.lightstat_light_theme .lightstat_body .result_numb .lightstat_guest span:nth-of-type(1) {
	border: 2px solid #ff6d00;
	box-shadow: none;
}

.lightstat_light_theme .lightstat_body .result_numb .lightstat_bot span:nth-of-type(1) {
	border: 2px solid #345471;
	box-shadow: none;
}

.lightstat_light_theme .lightstat_user_circle {
	background: #0bb1d6;
}

.lightstat_light_theme .lightstat_guest_circle {
	background: #ff6d00;
}

.lightstat_light_theme .lightstat_bot_circle {
	background: #345471;
}
.ui-dialog-buttonset button.ui-button-delete {
    background-color: #f44336;
    border-color: #f44336;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(51, 51, 51, .5);
}
.ui-dialog-buttonset button.ui-button-delete:hover {
    background-color: #db3a2f;
    border-color: #db3a2f;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(51, 51, 51, .5);
}
.form-check-label {
    cursor: pointer;
}
.form-check-input {
    color: #0c5f7eed;
    flex-shrink: 0;
    width: 1.12rem;
    height: 1.12rem;
    margin: -0.188rem 0.625rem 0 0;
    appearance: none;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #0c5f7eed;
    vertical-align: middle;
}


.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230c5f7eed'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox] {
    border-radius: .25rem;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}
.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;
}

input[type="text"].comments_author_field {
	width: 100%;
	margin-bottom: 10px;
}
.mce-accordion summary {
	cursor: pointer;
}

.self_delete_link {
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 12px 27px;
	border-radius: 10px;
	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;
}
.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: 1px solid #cacff7;
  width: 160px;
  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;}

.uploadedfile {
	display: inline-block;
    width: 115px;
    height: 160px;
    margin: 10px 5px 5px 5px;
    border:1px solid #B3B3B3;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    background:#ffffff;

}

.uploadedfile .uploadimage {
    margin-top: 5px;
    width: 115px;
    height: 90px;
	display: flex;
    align-items: center;
    justify-content: center;
    cursor: move;
    cursor: -webkit-grabbing;
}

.sortable-ghost {
	opacity: 0.4;
}
.uploadedfile .info {
    text-align: left;
    white-space: nowrap;
    margin: 0px 5px 0px 5px;
    overflow: hidden;
}

.quote_link {
	float: right;
}
.quote_link svg {
	color: #6c838e;
	vertical-align: middle;
}