@charset "UTF-8";

/*!
 * Katarina Templates base version 1.0
 * Copyright 2021
 * Base styles
 */


/* Bsase styles */

: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: 800px;
	--k-width-fullstory: 900px;
}

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


/* Body styles */

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

.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) {	
	}
}

.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;
}
/* New user styles */

.fullstory-width.mx-auto.mb-4.card.block {
	padding: 1.5rem 3rem;
}


.tp-recommended-post.hoverable {
	display: flex;
    margin-bottom: 12px;
}

.tp-recommended-posts-header {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}


.tp-recommended-post.hoverable .tp-recommended-post__image img {
	border-radius: 10px;
}
.tp-recommended-post.hoverable .tp-recommended-post__image {
	margin-right: 15px;
}
@media (max-width: 980px) {
    .fullstory-width.mx-auto.mb-4.card.block {
		padding: 1rem;
	}
}