@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

:root {
	--color-green-light: #eff1eb;
	--color-green-dark: #e1ead6;
	--color-green-bright: #9acc59;
	--color-gray-light: #9f9f9f;
	--color-gray-dark: #333333;
	--color-link-light: #428bca;
	--color-link-dark: #2A6496;
	--color-yellow-01: #fffae7;
	--color-yellow-02: #f3ebca;
	--color-yellow-03: #e9d583;
	--color-red-dark: #bc262c;
}

body {
	font: 15px Roboto, Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #9ACC59;
	/* v2 */
	font: 15px Roboto, Arial, sans-serif;
}

/*body {
	font: 15px Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #9ACC59;
}*/
/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto:400,700&subset=latin,cyrillic);

body {
	font: 15px 'Open Sans', Roboto, Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #9ACC59;
}
*/

.bx-component-debug {
	display2: none;
}

.center {
	text-align: center;
}

.wide {
	max-width: 100%;
	width: 100%;
}

a:link, a:visited {
	color: #428BCA;
	outline: 0 none;
}

a:hover {
	color: #2A6496;
}

a.red:link, a.red:visited {
	
}

a.dashed {
	color: #428BCA;
	border-bottom: 1px dotted #428BCA;
	text-decoration: none;
	display: inline-block;
	height: 1em;
	line-height: 1.05em;
	cursor: pointer;
}

a.dashed:hover {
	color: #2A6496;
	border-bottom: 1px dotted #2A6496;
}

a.white:link, a.white:visited {
	color: #FFF;
	text-decoration: none;
}

a.white:hover {
	text-decoration: underline;
}



h1 {
	margin: 0.2em 0 0.4em;
	font-weight: normal;
	line-height: 1.2em;
	font-size: 35px;
	/* v2 */
	font-weight: bold;
}

h2 {
	margin: 0.8em 0 0.4em;
	font-weight: normal;
	/* v2 */
	font-weight: bold;
	font-size: 24px;
	clear: both;
}

td, th {
	vertical-align: top;
}

table.layout {
	border-collapse: collapse;
}

.ref {
	font-family: monospace;
	color: #7fb933;
}

blockquote.talk {
	margin: 0.7em 0 0.7em 0;
	background-color: #eee;
	padding: 1em 1em 1em 1.5em;
	font-style: italic;
}

.help {
	cursor: help;
}

#scroller {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	background: #fff no-repeat center center url(/ico/icons8/iosglyph/50/up.png);
	box-shadow: 0 0 10px #0006;
	opacity: 0.4;
	display: none;
}

#scroller:hover {
	opacity: 1;
}

@media screen and (max-width: 1400px) {

	#scroller {
		width: 60px;
		height: 60px;
		right: 10px;
		bottom: 10px;
		box-sizing: border-box;
	}

}

#note-loader {
	margin: 1em 0;
	padding: 1em;
	text-align: center;
	border: 1px solid #ddd;
	background-color: #eee;
	color: #666;
}

#note-loader.loading {
	border: 1px solid #ccc;
	background-color: #ddd;
	color: #33;
}

#page-wrapper {
	box-sizing: border-box;
	background-color: #FFF;
	max-width: 1350px;
	margin: 12px auto 12px;
	border: 1px solid #EEE;
}

#header {
	box-sizing: border-box;
	padding: 24px;
	background-color: #262424;
	color: #FFF;
	background-image: url(/images/back-spring2.jpg);
	background-position: center 25%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 130px;
	position: relative;
}

#logo-text {
	font-size: 28px;
	padding: 6px 12px;
	margin: 0;
	max-width: 1100px;
	margin: 0 auto;
	color: #FFF;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	left: 24px;
	top: 24px;
	display: block;
}

#auth {
	font-size: 13px;
	padding: 6px 12px;
	margin: 0;
	max-width: 1100px;
	margin: 0 auto;
	color: #FFF;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	right: 24px;
	top: 24px;
	display: block;
}

#auth a {
	color: #fff;
}

#main-wrapper {
	box-sizing: border-box;
	display: flex;
	flex-flow: row wrap;
	min-height: 80vh;
}

#content-wrapper {
	box-sizing: border-box;
	flex: 1;
	padding: 24px 12px 24px;
	overflow: hidden;
	/* v2 */
	margin: 24px 12px 24px;
	padding: 0 12px 24px;
}

#left-column {
	box-sizing: border-box;
	flex: 0 0 300px;
	order: -1;
	padding: 24px 12px 24px 24px;
	/* v2 */
	display: none;
	flex: 0 0 320px;
}

#right-column {
	box-sizing: border-box;
	flex: 0 0 300px;
	padding: 24px 24px 24px 12px;
	/* v2 */
	flex: 0 0 350px;
}

#footer {
	box-sizing: border-box;
	padding: 24px;
	background-color: lightyellow;
	min-height: 10vh;
	/* v2 */
	background-color: var(--color-gray-dark);
	color: var(--color-gray-light);
	font-size: 15px;
}

#footer a {
	color: #fff;
}

#footer .line-menu {
	columns: 3;
	gap: 1em;
}

#footer .line-menu li {
	list-style: none;
}

#footer .line-menu li.level-1 {
	font-size: 15px;
}

#footer .line-menu li.level-1 a {
}

#footer .line-menu li.level-2 {
	padding-left: 1em;
	font-size: 14px;
}

#footer .line-menu li.level-2 a {
	color: #aaa;
}

#cookies {
	position: fixed;
	bottom: 0;
	background-color: #999;
	color: #fff;
	text-align: center;
	left: 0;
	right: 0;
	padding: 4px;
}

#cookies a {
	color: lightyellow;
}

#cookies a:hover {
	color: var(--color-yellow-03);
}

#cookies button {
	cursor: pointer;
}

#right-column ul.line-menu {
	display: block;
	margin: 0 0 1em;
	padding: 12px 0;
	background-color: var(--color-green-light);
}

#right-column ul.line-menu li {
	display: block;
	background-color: var(--color-green-light);
	padding: 0;
	margin: 0;
}

#right-column ul.line-menu li a {
	color: var(--color-link-light);
	text-decoration: none;
	padding: 9px 24px 9px;
	display: block;
	font-weight: bold;
}

#right-column ul.line-menu li.selected {
	background-color: var(--color-green-dark);
	position: relative;
}

#right-column ul.line-menu li.selected a {
	color: #000;
}

#right-column ul.line-menu li.selected::before {
	background-color: var(--color-green-dark);
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 100%;
	left: -30px;
	background: linear-gradient(45deg, transparent 50%, #f0f0f0 50%);
	box-sizing: border-box;
}

table.data {
	border-collapse: collapse;
	width: 100%;
	box-sizing: border-box;
}

table.data tr > th {
	border: 1px solid #EEE;
	padding: 12px;
}

table.data tr > td {
	border: 1px solid #EEE;
	padding: 12px;
}

table.data th.right {
	text-align: right;
}

table.data.lighting tr:hover > td {
	background-color: lightyellow;
}

table.data tr > td.center {
	text-align: center;
}

table.data a.badge {
	display: inline-block;
	background-color: #eee;
	border: 1px solid #ddd;
	border-radius: 20%;
	padding: 6px 12px;
	font-weight: bold;
	text-decoration: none;
}

table.data a.badge:hover {
	background-color: #ddd;
	border: 1px solid #ccc;
}

.cols3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 1em 0;
	gap: 1%;
}

.cols3 .column {

}

.prefer-actions {
	margin: 1em 0;
	text-align: center;
}

.prefer-actions a.button, 
.prefer-actions button.button {
	background: linear-gradient(to bottom, #eff1eb, #e1ead6);
	border: 1px solid #e1ead6;
	padding: 11px 11px;
	border-radius: 4px;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 3px;
	cursor: pointer;
	color: #000 !important;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	font-size: 21px;
}

.prefer-actions .button:hover {
	background: linear-gradient(to top, #b7c1aa, #bacda3);
}

/* ================================================================================ */

.f {
	border-collapse: collapse;
	box-sizing: border-box;
	width: 100%;
}

.f th,
.f td {
	padding: 12px;
	border: 1px solid #eee;
}

.f th {
	width: 30%;
	max-width: 350px;
	min-width: 200px;
	text-align: right;
}

.f .button-pane {
	margin: 0 0 12px;
}

.f .button-pane button {
	display: inline-block;
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 4px 6px;
	margin: 0 4px 0 0;
	background-color: #f0f0f0;
	width: 30px;
	height: 30px;
}

.f .button-pane button:hover {
	background-color: #e0e0e0;
}

.f .button-pane button:active {
	background-color: #ddd;
	position: relative;
	top: 1px;
}

.f input[type=text] {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	font: 15px Roboto, Arial, sans-serif;
	padding: 6px;
}

.f textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: 150px;
	font: 15px Roboto, Arial, sans-serif;
	padding: 6px;
}

.f button.action {
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 4px 6px;
	margin: 0 4px 0 0;
	background-color: lightyellow;
	font-size: 17px !important;
}

.f button.default {
	box-shadow: 0 0 10px lightblue;
}

.f #boxPreview {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	font: 15px Roboto, Arial, sans-serif;
	padding: 6px;
	border: 1px solid #eee;
	min-height: 100px;
}

#tbx {
	border: 1px solid rgb(118, 118, 118);
	padding: 6px;
	border-radius: 2px;
	min-height: 100px;
	resize: both;
}

/* =============================================== */

.form {
	border-collapse: collapse;
	width: 100%;
	box-sizing: border-box;
}

.form tr > td {
	border: 1px solid #EEE;
	padding: 12px;
}

.form tr.yellow > td {
	background-color: lightyellow;
}

.form .label {
	width: 30%;
	min-width: 250px;
}

.form .field {

}

.form input[type=text],
.form input[type=password]
{
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 12px;
	font-size: 15px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

.form span.password {
	position: relative;
	display: inline-block;
}

.form span.password .password-control {
	background: no-repeat url(/ico/icons8/iosglyph/16/eye.png);
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	right: 9px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.form span.password .password-control.view {
	background: no-repeat url(/ico/icons8/iosglyph/16/hidden.png);
}


.form .radio label {
	overflow: hidden;
}

.form .radio input {
	float: left;
	margin-right: 0.5em;
}

.form .radio span {
	overflow: hidden;
	display: block;
}

.form textarea {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 12px;
	font-size: 15px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

.form select {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 12px;
	font-size: 15px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}


.form .buttons button {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 12px;
	font-size: 15px;
}

.form .buttons a.button {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 12px;
	font-size: 15px;
}

.form .tip {
	margin-top: 1em;
	font-size: 80%;
	color: #999;
}

.form .errors {
	margin-top: 1em;
	font-size: 80%;
	color: #a00;
	font-weight: bold;
}

.form td.label {
	text-align: right;
}

.form td.label .title {
	font-weight: bold;
}


.form tr.required .title span::after {
	content: '*';
	display: inline;
	padding-left: 3px;
	color: #a00;
	font-weight: bold;
	font-size: 120%;
}

#second-menu {
	margin: 0 0 2em;
}

#second-menu ul {
	display: block;
	padding: 0;
	margin: 0;
}

#second-menu ul li {
	display: block;
	padding: 0;
	margin: 0 0 4px;
}

#second-menu ul li a {
	display: block;
	padding: 12px;
	margin: 0;
	text-decoration: none;
	background-color2: #e1ead6;
	background-color: #fff;
	border: 1px solid #e1ead6;
	border-left: 6px solid #e1ead6;
}

#second-menu ul li a:hover {
	background-color: #c5d1b5;
}

#second-menu ul li.selected {

}

#second-menu ul li.selected a {

}

#second-menu ul li.selected a:hover {

}




.tab-menu {
	display: block;
	margin: 1em 0;
	padding: 0;
}

.tab-menu li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.tab-menu li::after {
	display: inline-block;
	margin: 0;
	padding: 6px 3px 6px 6px;
	content: '|';
	color: #666;
	
}

.tab-menu li:last-child::after {
	display: none;
}

.tab-menu li.selected {

}

.tab-menu li a {
	display: inline-block;
	margin: 0;
	padding: 6px 3px;
	background-color: #fff;
	text-decoration: none;
}

.tab-menu li a:hover {
	background-color: #ddd;
}

.tab-menu li.selected a {
	background-color: #666;
	color: #fff;
	cursor: default;
}


ul.stages {
	display: block;
	padding: 0;
	margin: 1em 0;
	font-size: 0;
}

ul.stages li {
	display: inline-block;
	margin: 0 4px 4px 0;
	padding: 10px 40px 10px 10px;
	background-color: #e1ead6;
	font-size: 15px;
	box-sizing: border-box;
	height: 40px;
	position: relative;
}

ul.stages li strong {
	background-color: #fff;
	border-radius: 50%;
	min-width: 18px;
	display: inline-block;
	text-align: center;
	padding: 1px;
	margin: 0 3px 0 0;
}

ul.stages li.selected {
	background-color: #95c556;
}



/* ------------------------------------------------------- */

.top-slider .owl-carousel .item {
	height: 320px;
	background-color: #4DC7A0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 12px;
}

.top-slider .owl-carousel .item .info {
	height: auto;
	max-height: 80%;
	width: 35%;
	padding: 12px 12px 12px;
	background-color: rgb(251, 255, 217); /* rgba(13, 20, 5, 0.6); rgba(0, 0, 0, 0.6);*/
	font-size: 13px;
	overflow: hidden;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.top-slider .owl-carousel .item .info-container {
	padding: 6px;
	border: 1px dashed #b6ea71;
}

.top-slider .owl-carousel .item h4 {
	color: #FFF;
	font-weight: normal;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 12px;
	text-shadow2: 0 0 3px #000;
}

.top-slider .owl-carousel .item a {
	text-decoration: none;
	color: #000; /* #638733; */
}

.top-slider .owl-carousel .item p {
	color: #000;
	text-shadow2: 0 0 3px #000;
}

.top-slider .owl-carousel .item a:hover {
	color: #000;
	text-decoration: underline;
}


.side-box {
	/* border: 1px solid #D6E9C6; */
	/* border-radius: 6px; */
	border-top: 1px solid #EEE;
	border-right: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	border-left: 1px solid #EEE;
	padding: 12px;
	margin: 0 0 18px;
	/* v2 */
	padding: 12px 24px;
	background-color: var(--color-green-light);
}

.side-box h3 {
	font-weight: normal;
	padding: 6px 12px 6px;
	background-color: var(--color-green-dark);
	font-size: 20px;
	margin: 12px -24px 1em;
}

.side-box h3:first-child {
	margin: -12px -24px 1em;
}

.side-box ul {
	margin: 0;
	padding-left: 12px;
}

.side-box ul li {
	margin-left: 12px;
	padding-left: 0;
}



/* ------------- */

.box {
	/* border: 1px solid #D6E9C6; */
	/* border-radius: 6px; */
	border-top: 1px solid #EEE;
	border-right: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	border-left: 1px solid #EEE;
	padding: 12px;
	margin: 0 0 18px;
}

#main-wrapper .box {
	border: none;
	padding: 0;
	
}

.box > h2 {
	font-weight: normal;
	/*margin: -12px -12px 1em;*/
	padding: 6px 12px 6px;
	/*background-color: #e1ead6;*/
	background: linear-gradient(90deg, #e1ead6, transparent);
	margin: 0 0 1em -12px;
}

.box ul {
	margin: 0;
	padding-left: 12px;
}

.box ul li {
	margin-left: 12px;
	padding-left: 0;
}

/* ----------------------- */

.news-tile {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -6px;
}

.news-tile .item {
	box-sizing: border-box;
	width: 33.3333%;
}

.news-tile .item-box {
	box-sizing: border-box;
	background-color: lightyellow;
	position: relative;
	margin: 6px 6px 6px;
	padding: 6px 6px 32px;
}

.news-tile .preview-picture {
	box-sizing: border-box;
	height: 190px;
	background-color: #DDD;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 25%;
	margin: -6px -6px 6px;
	display: block;
	text-decoration: none;
	position: relative;
}

.news-tile .preview-picture .rubric {
	font-size: 11px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #000;
	color: #FFF;
	padding: 3px 6px;
}

.news-tile h3 {
	margin: 0 0 6px;
	font-size: 15px;
}

.news-tile h3 a {
	color: #000;
}

.news-tile h3 a:hover {
	color: #6e953b;
}


.news-tile .date {
	font-size: 11px;
	color: #999;
}

.news-tile .preview-text {
	font-size: 13px;
}

.news-tile .arrow {
	position: absolute;
	bottom: 12px;
	right: 12px;
}

.news-tile .arrow a {
	background-color: #dde4a5;
	color: #FFF;
	border-radius: 9px;
	text-decoration: none;
	line-height: 12px;
	font-size: 13px;
	font-weight: bold;
	padding: 0px 7px 2px;
}

.news-tile .arrow a:hover {
	background-color: #aad276;
}

/* ------------------------------ */

.articles-masonry {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 -5px;
}

.articles-masonry .item {
	margin: 0;
	width: 33.333%;
	/* v2 */
	width: 25%;
}

.articles-masonry .item .item-box {
	margin: 0 5px 20px;
	overflow: hidden;
	position: relative;
	background-color: #f9f9f9;
	border-radius: 12px;
}

.articles-masonry .item .picture {
	display: block;
	width: 100%;
	height: 200px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.articles-masonry .item .author {
	margin: 6px 0 0;
	font-size: 14px;
	color: #999;
	overflow: hidden;
	/* v2 */
	color: #000;
}

.articles-masonry .item .author .username {
	font-weight: bold;
	overflow: hidden;
	display: block;
	/* v2 */
	font-weight: normal;
}

.blogs-masonry .item .name {
	font-size: 17px;
}

.articles-masonry .item .author .userlogin {
	font-weight: normal;
	overflow: hidden;
	display: block;
	/* v2 */
	color: #999;
}

.articles-masonry .item .author .userpic {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 6px 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: #ccc;
	border-radius: 50%;
	vertical-align: middle;
	float: left;
}

.articles-masonry .item .body {
	padding: 12px 12px 20px;
}

.articles-masonry .item .context {
	overflow: hidden;
	color: #aaa;
	text-transform: lowcase;
	font-size: 80%;
}

.articles-masonry .item .context span {
	float: left;
	margin: 0 6px 0 0;
}

.articles-masonry .item .context span.visited,
.articles-masonry .item .context span.comments,
.articles-masonry .item .context span.likes
{
	float: right;
	margin: 0 0 0 6px;
}


.articles-masonry .item .meta {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	font-size: 12px;
	padding: 6px 12px 12px;
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0));
	display: none;
}

.articles-masonry .item:hover .meta {
	display: block;
}


.articles-masonry .item .meta span.visited {
	float2: right;
	margin2: 0 0 0 6px;
	background: no-repeat center left url(/ico/icons8/iosglyph/12/eye-white.png);
	padding: 0 5px 0 15px;
}

.articles-masonry .item .meta span.comments {
	float2: right;
	margin2: 0 0 0 6px;
	background: no-repeat center left url(/ico/icons8/iosglyph/12/comment-white.png);
	padding: 0 5px 0 15px;
}

.articles-masonry .item .meta span.likes {
	float2: right;
	margin2: 0 0 0 6px;
	background: no-repeat center left url(/ico/icons8/iosglyph/12/heart-white.png);
	padding: 0 5px 0 15px;
}

.articles-masonry .item .name {
	overflow: hidden;
	font-weight: bold;
}

.articles-masonry .item .name a {
	text-decoration: none;
	font-size: 110%;
}

.articles-masonry .item .name a:hover {
	text-decoration: underline;
}

.articles-masonry .item .preview-text {
	overflow: hidden;
	font-size: 85%;
}

.articles-masonry .item .counters {
	font-size: 85%;
	position2: absolute;
	bottom2: 0;
	right2: 0;
	margin: 1em 0 0;
	color: #aaa;
}

@media screen and (max-width: 1050px) {

	.articles-masonry .item {
		width: 50%;
	}

}

@media screen and (max-width: 420px) {

	.articles-masonry .item {
		width: 100%;
	}

}

/* ------------------------------ */

.articles-mainpage {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 -5px;
}

.articles-mainpage .first {
	width: 50%;
	box-sizing: border-box;
}

.articles-mainpage .second {
	width: 50%;
	box-sizing: border-box;
	padding-left: 10px;
}


.articles-mainpage .item {
	margin: 0;
	width: 100%;
}

.articles-mainpage .first .item {

}

.articles-mainpage .first .item .picture {
	height: 400px;
}

.articles-mainpage .item .item-box {
	margin: 0 5px 20px;
	overflow: hidden;
	position: relative;
}

.articles-mainpage .first .item .picture {
	display: block;
	width: 100%;
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.articles-mainpage .second .item .picture {
	display: block;
	width: 150px;
	height: 150px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	float: left;
	border-radius: 12px;
	margin-right: 12px;
	overflow: hidden;
}

.articles-mainpage .item .body {
	padding: 12px 12px 20px;
}

.articles-mainpage .item .context {
	overflow: hidden;
	color: #aaa;
	text-transform: lowcase;
	font-size: 80%;
}

.articles-mainpage .item .context span {
	float: left;
	margin: 0 6px 0 0;
}

.articles-mainpage .item .context span.visited,
.articles-mainpage .item .context span.comments,
.articles-mainpage .item .context span.likes
{
	float: right;
	margin: 0 0 0 6px;
}


.articles-mainpage .item .meta {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	font-size: 12px;
	padding: 6px 12px 12px;
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0));
	display: none;
}

.articles-mainpage .item:hover .meta {
	display: block;
}


.articles-mainpage .item .meta span.visited {
	float2: right;
	margin2: 0 0 0 6px;
	background: no-repeat center left url(/ico/icons8/iosglyph/12/eye-white.png);
	padding: 0 5px 0 15px;
}

.articles-mainpage .item .meta span.comments {
	float2: right;
	margin2: 0 0 0 6px;
	background: no-repeat center left url(/ico/icons8/iosglyph/12/comment-white.png);
	padding: 0 5px 0 15px;
}

.articles-mainpage .item .meta span.likes {
	float2: right;
	margin2: 0 0 0 6px;
	background: no-repeat center left url(/ico/icons8/iosglyph/12/heart-white.png);
	padding: 0 5px 0 15px;
}

.articles-mainpage .item .name {
	overflow: hidden;
	font-weight: bold;
}

.articles-mainpage .item .name a {
	text-decoration: none;
	font-size: 110%;
}

.articles-mainpage .item .name a:hover {
	text-decoration: underline;
}

.articles-mainpage .item .preview-text {
	overflow: hidden;
	font-size: 85%;
}

.articles-mainpage .item .counters {
	font-size: 85%;
	position2: absolute;
	bottom2: 0;
	right2: 0;
	margin: 1em 0 0;
	color: #aaa;
}

@media screen and (max-width: 1050px) {

	.articles-mainpage .first {
		width: 100%;
		max-width: 500px;
	}
	
	.articles-mainpage .second {
		width: 100%;
		padding-left: 0;
	}

	.articles-mainpage .second .item .picture {
		width: 200px;
		height: 200px;
	}

}

@media screen and (max-width: 420px) {

	.articles-mainpage .first .item .picture {
		height: 300px;
	}

	/*.articles-mainpage .second .item .picture {
		width: 100%;
		float: none;
		margin-right: 0;
		height: 300px;
	}*/

	.articles-mainpage .second .item .picture {
		width: 80px;
		height: 80px;
		float: left;
		margin-right: 0.5em;
	}

	.articles-mainpage .item .body {
		padding: 0 0 0;
		overflow: hidden;
	}

	.articles-mainpage .item .name {
		margin: 0 0 0.5em;
	}

	.articles-mainpage .item .name a {
		font-size: 100%;
	}
	
	.articles-mainpage .first .item .preview-text {
		display: block;
	}
	
	.articles-mainpage .second .item .preview-text {
		display: none;
	}

}


/* ------------------------------ */


.video-tile {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: -7px;
}

.video-tile .item-wrapper {
	box-sizing: border-box;
	/*width: 25%;*/
	width: 33.333%;
	padding: 7px;
}

.video-tile .item-box {
	position: relative;
	height: 0;
	padding-top: 75%;
}

.video-tile .item {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #eee;
	background-size: 133%;
	display: block;
	transition: all 0.2s ease-in-out;
}

.video-tile .caption {
	background-color: #333c;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	color: #fff;
	padding: 7px 14px;
	font-size: 14px;
	min-height: 20%;
	transition: all 0.2s ease-in-out;
}

.video-tile .item:hover {
	background-size: 143%;
}

.video-tile .item:hover .caption {
	background-color: #333f;
}

/* ------------------------------ */

.video-detail {

}

.video-detail .video {
	box-sizing: border-box;
	width: 100%;
	position: relative;
	margin: 0 0 1em;
	/*border: 1px solid #eee;*/
	/*padding: 3px;*/
}

.video-detail .video-box {
	position: relative;
	height: 0;
	padding-top: 60%;
	/*background-color: lightgreen;*/
}

.video-detail iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.video-detail .original {
	color: #999;
	margin: 0 0 1em;
}

.video-detail .author {
	color: #000;
	font-weight: bold;
}

.video-detail .link {
	color: #000;
}

.video-detail .description {
	margin: 0 0 1em;
}

/* ------------------------------ */


.slider .owl-carousel .item {
	height: 350px;
	background-color: #4DC7A0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	/* padding: 12px; */
	position: relative;
	box-sizing: border-box;
}

.slider .owl-carousel .item .info {
	/* height: auto; */
	/* max-height: 80%; */
	width: 315px;
	padding: 6px;
	background-color: rgb(251, 255, 217);
	font-size: 13px;
	overflow: hidden;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 12px;
	left: 12px;
	bottom: 24px;
	box-sizing: border-box;
	max-width: 50%;
}

.slider .owl-carousel .item .info-container {
	/* padding: 6px; */
	border: 1px dashed #b6ea71;
	font-size: 11px;
	overflow: hidden;
	position: absolute;
	top: 6px;
	left: 6px;
	right: 6px;
	bottom: 6px;
	padding: 6px;
}

.slider .owl-carousel .item h4 {
	color: #FFF;
	font-weight: normal;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 12px;
	text-shadow2: 0 0 3px #000;
}

.slider .owl-carousel .item a {
	text-decoration: none;
	color: #000; /* #638733; */
}

.slider .owl-carousel .item p {
	color: #000;
	text-shadow2: 0 0 3px #000;
	overflow: hidden;
	max-height: 100%;
	font-size: 12px;
}

.slider .owl-carousel .item a:hover {
	color: #000;
	text-decoration: underline;
}

.slider .owl-carousel .item .info-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(251, 255, 217) 100%);
}


/* ----------------------------------------------- */

.table-form {
	border-collapse: collapse;
	width: 99%;
	margin: 24px 0;
	border: 1px solid #EEE;
}

.table-form td.label {
	padding: 12px 12px;
	border: 1px solid #EEE;
	width: 200px;
	text-align: right;
	vertical-align: top;
}

.table-form td.label h6 {
	font-size: 16px;
	margin: 0 0 0;
	color: #000;
}

.table-form td.label.required h6 {

}

.table-form td.label.required h6:after {
	content: '*';
	color: #A00;
	position: relative;
	left: 4px;
}

.table-form td.label strong {
	font-weight: bold;
}

.table-form td.field {
	padding: 12px 12px 8px;
	border: 1px solid #EEE;
	vertical-align: top;
}

.table-form td.field textarea.w100 {
	box-sizing: border-box;
	width: 100%;
}

.table-form tr.buttons td.field {
	padding: 24px 12px;
	overflow: hidden;
}

/*
.table-form tr.buttons td.field button,
.table-form tr.buttons td.field input[type=button],
.table-form tr.buttons td.field input[type=submit]
{
	font-size: 22px;
	cursor: pointer;
	float: left;
	margin: 0 12px 0 0;
	display: inline-block;
	border-radius: 6px;
	border: 1px solid #DDD;
	padding: 6px;
	background: #159ebb;
	color: #FFF;
}

.table-form tr.buttons td.field button:hover,
.table-form tr.buttons td.field input[type=button]:hover,
.table-form tr.buttons td.field input[type=submit]:hover
{
	background: #44b1c9 ;
}

.table-form tr.buttons td.field button.right,
.table-form tr.buttons td.field input[type=button].right,
.table-form tr.buttons td.field input[type=submit].right
{
	float: right;
	margin: 0 0 0 12px;
}
*/



.table-form input[type=text],
.table-form input[type=password],
.table-form select
{
	font-size: 14px;
}

.table-form .tip {
	color: #666;
	font-size: 12px;
	font-style: italic;
}

.table-form .errors {
	color: #A00;
	font-size: 12px;
	margin: 12px 0;
}

.table-form .errors .item {
	margin: 0 0 3px;
	
}

select.big {
	font-size: 17px;
}

.markItUp {
	width: 95% !important;
}

.markItUpEditor {
	width: 100% !important;
}

/*
input.big[type="text"] {
	width: 95% !important;
}
*/

input[type=text].big {
	font-size: 22px;
}

/* -------------------------------------- */

/* -------------------------------------- */

.tool-pane {
	border: 1px solid #E3E3E3;
	padding: 8px 12px;
	margin: 0 0 12px; 
	background-color: #E3E3E3;
	background: repeating-linear-gradient(315deg, #E3E3E3 0px, #E3E3E3 2px, transparent 2px, transparent 4px);
}

a.button,
button.button {
	background: linear-gradient(to bottom, #fffae7, #f3ebca);
	/*background: linear-gradient(to bottom, #fffae7, #e9d583);*/
	border: 1px solid #e9d583;
	padding: 8px 8px;
	border-radius: 4px;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 3px;
	cursor: pointer;
	color: #000 !important;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
}

.button.big {
	font-size: 18px;
	line-height: 26px;
}

.button-place {
	display: inline-block;
	margin-right: 6px;
}

.button-place select { 
	font-size: 14px;
}

.tool-pane .separator {
	display: inline-block;
	margin-right: 6px;
	color: #AAA;
}

.button[disabled] {
	background: linear-gradient(to bottom, #EEE, #CCC);
	border: 1px solid #CCC;
	color: #999 !important;
	cursor: default;
}

/*.button img {
	width: 16px;
	height: 16px;
}*/

.button[disabled] img {
	opacity: 0.5;
}

.button:hover {
	background: linear-gradient(to top, #d1caad, #e9d583);
}

.button[disabled]:hover {
	background: linear-gradient(to bottom, #EEE, #CCC);
}

.table-form tr.buttons td.label,
.table-form tr.buttons td.field
{
	padding: 24px 12px;
}

.button.emphasis {
	outline2: 1px solid #E00;
	box-shadow: 0 0 4px #028BFF;
}

img.ico,
.button img {
	vertical-align: sub;
}

img.icotext {
	vertical-align: middle;
}

form.inline {
	display: inline;
}




/* --------------------------------------- */

#top-menu #horizontal-multilevel-menu,
#top-menu #horizontal-multilevel-menu ul {
	/*background: #FFF;*/
}

#top-menu #horizontal-multilevel-menu li a {
	color: #000;
	font-size: 16px;
	/*letter-spacing: 1px;*/
	font-family: 'Open Sans', Roboto, Arial, sans-serif;
	/*text-transform: lowercase;*/
}

#top-menu #horizontal-multilevel-menu li a.root-item-selected {
	background: #CE2A30;
	color: #FFF;
}

#top-menu #horizontal-multilevel-menu li:hover a.root-item, 
#top-menu #horizontal-multilevel-menu li.jshover a.root-item {
	background: #E37579;
	color: #FFF;
}

#top-menu #horizontal-multilevel-menu li ul {
	border: 1px solid #DEDEDE;
	width: 200px;
}

#top-menu #horizontal-multilevel-menu li li {
	border-bottom: none; /*1px solid #DEDEDE*/
}

#top-menu .bx-top-nav-container {
	margin-top: 0;
}

.faq {
	
}

.faq .item {
	margin: 0 0 1em;
	background-color: #eee;
	border-radius: 6px;
}

.faq .item.collapsed {
	background-color: #ccc;
}

.faq .item .question {
	font-weight: bold;
	font-size: larger;
	position: relative;
	cursor: pointer;
	padding: 12px 42px 12px 12px;
}

.faq .item .question::after {
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	content: '';
	top: 12px;
	right: 12px;
	background-repeat: no-repeat;
	background-image: url(/ico/icons8/iosglyph/24/cross.png);
	background-position: 0 0;
	cursor: pointer;
	transform: rotate(0deg);
}

.faq .item:has(> .question:hover) {
	background-color: #ccc;
}

.faq .item.collapsed:has(> .question:hover) {
	background-color: #eee;
}

.faq .item.collapsed .question::after {
	transform: rotate(45deg);
}


.faq .item .answer {
	padding: 12px;
}



.feature {
	display: block;
	margin: 0;
	padding: 0;
}

.feature li {
	display: block;
	letter-spacing: -1ex;
	margin: 5px 0;
}

.feature .left {
	margin-right: -30%;
	width: 69%;
	vertical-align: top;
	overflow: hidden;
	display: inline-block;
	letter-spacing: normal;
	box-sizing: border-box;
}

.feature .left:after {
	content: '';
	display: inline-block;
	width: 100%;
	margin: 0 -99% 0 3px;
	vertical-align: baseline;
	border-bottom: 1px dashed #888;
}

.feature .right {
	display: inline-block;
	letter-spacing: normal;
	padding-left: 3px;
	margin-left: 30%;
	width: 30%;
	vertical-align: bottom;
	box-sizing: border-box;
}





.content-figures figure {
	margin: 1.5em 0;
}

.content-figures img {
	max-width: 100%;
}


pre {
	background-color: #000;
	color: #FFF;
	padding: 12px;
	font-size: 12px;
}













.content-editor {

}

.content-editor .content-add {
	box-sizing: border-box;
	border2: 1px solid pink;
	background-color: #EEE;
	padding: 12px 12px;
	margin: 0 0 12px;
	overflow: hidden;
	opacity: 0.5;
}

.content-editor .content-add:hover {
	opacity: 1;
}

.content-editor .content-add button {
	float: left;
	margin-right: 6px;
	cursor: pointer;
}

.content-editor .content-add button.right {
	float: right;
	margin-left: 6px;
}

.content-editor .content-box {
	box-sizing: border-box;
	border: 1px solid #aaa;
	background-color: #EEE;
	padding: 12px;
	margin: 0 0 12px;
}

.content-editor .content-box:hover {
	box-shadow: 0 0 7px #aaaa;
}

.content-editor p {
	margin: 0 0 12px;
}

.content-editor button {
	font-size: 14px;
}

.content-editor .content-box .upload {
	box-sizing: border-box;
	border: 1px solid #acd5ac;
	background-color: #ceecce;
	border-radius: 6px;
	color: #2d842d;
	text-align: center;
	padding: 2em 0;
	margin: 0 0 12px;
	cursor: pointer;
}

.content-editor .content-box .upload:hover {
	background-color: #b4ddb4;
	color: #3a6f3a;
}

.content-editor .cb-text textarea {
	box-sizing: border-box;
	border: 1px solid #EEE;
	width: 100%;
	height: 20em;
	font-size: 14px;
	padding: 6px;
}

.content-editor .cb-image option {
	font-size: 14px;
}

.content-editor .cb-image .uploaded {
	box-sizing: border-box;
	overflow: hidden;
	padding: 0 0 0 0;
}

.content-editor .cb-image .uploaded .image {
	box-sizing: border-box;
	display: block;
	width: 150px;
	height: 150px;
	float: left;
	margin: 0 12px 12px 0;
	background-size: cover;
	background-position: center center;
}

.content-editor .cb-file .uploaded {
	box-sizing: border-box;
	overflow: hidden;
	padding: 0 0 0 0;
}

.content-editor .cb-file .uploaded .file {
	box-sizing: border-box;
	background-color: #DDD;
	padding: 3px 6px;
	margin: 0 0 6px;
}

.profile-userpic {
	display: block;
	width: 150px;
	height: 150px;
	background-color: #DDD;
	border: 1px solid #CCC;
	border-radius: 8px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	text-decoration: none;
	color: #000;
	position: relative;
}

.profile-userpic.nouserpic {
	background-position: center 30%;
	background-image: url(images/snail.png);
	background-size: initial;
}

.profile-userpic.nouserpic:hover {
	background-color: #eee;
}

.profile-userpic.nouserpic::after {
	content: 'Нажмите, чтобы загрузить фотографию!';
	display: block;
	text-align: center;
	padding: 8px 8px 16px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-decoration: none;
	color: #000;
	font-size: 11px;
	font-weight: bold;
}



.geo-shortlist {
	columns: 3;
	gap: 1em;
}

.geo-shortlist .item {
	margin: 0 0 1em;
}

.geo-shortlist .item-box {
	overflow: hidden;
}

.geo-shortlist .preview-picture {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 6px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: #ccc;
	float: left;
	margin: 0 1em 0 0;
}

.geo-shortlist .caption {
	overflow: hidden;
}

.geo-shortlist h3 {
	margin: 0.5em 0 0.1em;
	font-size: 15px;
	font-weight: bold;
}

.geo-shortlist .section {
	font-size: 12px;
	font-style: italic;
	background-color: #788e62;
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	color: #fff;
	text-decoration: none;
}

.geo-shortlist .section.forest {
	background-color: #8cb224;
}

.geo-shortlist .section.pond {
	background-color: #4f75ae;
}

.geo-shortlist .section.river {
	background-color: #62aaf9;
}

.geo-shortlist .section.park {
	background-color: #788e62;
}

.geo-shortlist .section.swamp {
	background-color: #788e62;
}

.geo-shortlist .section.meadow {
	background-color: #66cd7b;
}

.geo-shortlist .section.settlement {
	background-color: #d1799e;
}

.geo-shortlist .section.oopt {
	background-color: #a35665;
}

.geo-shortlist .section.spring {
	background-color: #00cbdd;
}

.geo-shortlist .meta {
	margin: 0.5em 0 0;
	font-size: 12px;
	color: #aaa;
}

.geo-shortlist .meta .views {
	background: no-repeat center left url(/ico/icons8/iosglyph/12/eye-grey.png);
	padding: 0 5px 0 15px;
}

@media screen and (max-width: 925px) {

	.geo-shortlist {
		columns: 2;
	}

}

@media screen and (max-width: 580px) {

	.geo-shortlist {
		columns: 1;
	}

}



.albums-tile {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 1em -3px;
}

.albums-tile .item-wrapper {
	box-sizing: border-box;
	width: 50%;
	padding: 3px;
}

.albums-tile .item {
	position: relative;
	height: 0;
	padding-top: 80%;
	overflow: hidden;
	border-radius: 6px;
}

.albums-tile .item-box {
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
	background-color: #ddd;
	padding: 12px;
}

.albums-tile .item-box .name a {
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 0 3px #000a;
}

.albums-tile .item-box .action {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background-color: #fff;
	padding: 6px;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
}

.albums-tile .item-box .edit {
	position: absolute;
	top: 12px;
	right: 12px;
	background-color: #fff;
	padding: 6px;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
}

/* --- */


.album-detail {
	
}

.album-detail .meta {
	font-size: 80%;
	overflow: hidden;
	margin: 0 0 0.5em;
}

.album-detail .meta .like {
	float: right;
	margin-left: 1em;
}

.album-detail .meta .like .love {
	width: 50px;
	height: 50px;
	display: inline-block;
	background-repeat: no-repeat;
	background-image: url(/ico/icons8/iosfilled/50/love-grey.png);
	cursor: pointer;
	vertical-align: bottom;
	margin-right: 5px;
}

.album-detail .meta .like .love.clicked {
	background-image: url(/ico/icons8/iosfilled/50/love-green.png);
}

.album-detail .meta .like .love:hover {
	background-image: url(/ico/icons8/iosfilled/50/love.png);
}

.album-detail .meta .like strong {
	font-size: 30px;
}

/* --- */

.album-detail figure .like {
	margin: 0.5em 0 0;
}

.album-detail figure .like .love {
	width: 24px;
	height: 24px;
	display: inline-block;
	background-repeat: no-repeat;
	background-image: url(/ico/icons8/iosfilled/24/love-grey.png);
	cursor: pointer;
	vertical-align: bottom;
	margin-right: 5px;
}

.album-detail figure .love.clicked {
	background-image: url(/ico/icons8/iosfilled/24/love-green.png);
}

.album-detail figure .love:hover {
	background-image: url(/ico/icons8/iosfilled/24/love.png);
}

.album-detail figure .like strong {
	font-size: 18px;
}


.album-detail .user-photo {
	display: block;
	width: 6em;
	height: 6em;
	border-radius: 6px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #ddd;
	border: 1px solid #ccc;
	float: left;
	margin-right: 1em;
}

.album-detail .body {
	overflow: hidden;
}

.album-detail .user {
	margin: 0.5em 0 0.2em;
	overflow: hidden;
}

.album-detail .date {
	margin: 0 0 0.2em;
	overflow: hidden;
}

.album-detail .views {
	margin: 0 0 0.2em;
	overflow: hidden;
}

.album-detail .prolog {
	margin: 1em 0;
}

.album-detail .prolog:empty {
	margin: 0 0;
}

.album-detail .tile {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 1em -3px;
}

.album-detail .tile .item {
	box-sizing: border-box;
	width: 25%;
	padding: 3px;
}

.album-detail .tile .item-box {
	position: relative;
	height: 0;
	padding-top: 100%;
	overflow: hidden;
}

.album-detail .tile .item-box img {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
	background-color: #eee;
}

.album-detail .history {
	margin: 1em 0;
}

.album-detail .history figure {
	padding: 0;
	margin: 0 0 2em;
}

.album-detail .history figure img {
	width: 100%;
	max-width: 100%;
}

.album-detail .history figure figcaption {
	padding: 0;
	margin: 0.5em 0 0;
}

.album-detail .history figure figcaption:empty {
	margin: 0 0 0;
}


@media screen and (max-width: 1200px) {

	.album-detail .tile .item {
		width: 33.3333%;	
	}

}

@media screen and (max-width: 640px) {

	.album-detail .tile .item {
		width: 50%;	
	}

}

@media screen and (max-width: 420px) {

	.album-detail .tile .item {
		width: 100%;
	}

	.album-detail .tile .item-box {
		height: auto;
		position: static;
		padding-top: 0;
	}

	.album-detail .tile .item-box img {
		position: static;
		
	}

}

.fauna-list-side {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.fauna-list-side .item {
	max-width: 280px;
	margin: 0 0 20px;
}

.fauna-list-side .item .preview-picture {
	height: 180px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.fauna-list-side .item h6 {

	text-align: left;
	font-size: 15px;
	margin: 0.5em 0 0.1em;
	font-weight: normal;
}

.fauna-list-side .item .latin {
	text-align: left;
	color: #666;
	font-style: italic;
	font-size: 12px;
}

/* -------------------------------- */

.species-detail {

}

.species-detail .leading {
	overflow: hidden;
}

.species-detail .picture-wrapper {
	margin: 0;
	float: left;
	margin-right: 24px;
	width: 100%;
}

.fauna-detail .picture-wrapper {
	max-width: 400px;
}

.flora-detail .picture-wrapper {
	max-width: 300px;
}

.species-detail .picture-wrapper img {
	margin: 0 0 0.5em;
	background-color: #EEE;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.fauna-detail .picture-wrapper img {
	max-width: 400px;
	max-height: 300px;
}

.flora-detail .picture-wrapper img {
	max-width: 300px;
	max-height: 400px;
}

.species-detail .picture-wrapper figcaption {
	margin: 0;
	color: #666;
	font-size: 12px;
}


.species-detail .disclaimer {
	margin: 12px 0 0;
}

.species-detail .disclaimer::before {
    content: 'Информация о виде приведена только для Новой Москвы. Страница может обновляться по мере поступления и обработки материалов.';
    display: block;
    font-size: 12px;
    font-style: italic;
    color: #999;
    background: lightyellow;
    padding: 4px;
}

.species-detail .leading .info {
	overflow: hidden;
}

.species-detail .bird-observ {
	margin: 0 0 0.5em;
}

.species-detail .bird-observ ol.months {
	display: block;
	margin: 0 0 0;
	padding: 0;
}

.species-detail .bird-observ ol.months li {
	display: inline-block;
	width: 16px;
	overflow: hidden;
	background-color: var(--color-green-light);
	text-align: center;
	margin: 0 3px 0 0;
	padding: 2px;
	/*text-transform: uppercase;*/
	cursor: default;
	writing-mode: vertical-lr;
	transform: scale(-1, -1);
	height: 30px;
	font-size: 11px;
	color: #999;
}

.species-detail .bird-observ ol.months li.observ {
	background-color: var(--color-green-bright);
	color: #000;
}

.species-detail .bird-observ ol.months li.rare {
	background-color: var(--color-yellow-03);
	color: #666;
}

.species-detail .bird-observ ul.legend {
	display: block;
	margin: 0;
	padding: 0;
}

.species-detail .bird-observ li {
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 2px;
	font-size: 11px;
}

.species-detail .bird-observ li span {
	display: inline-block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	vertical-align: text-top;
	margin: 0 5px 0 0;
}

.species-detail .bird-observ li span.observ {
	background-color: var(--color-green-bright);
}

.species-detail .bird-observ li span.rare {
	background-color: var(--color-yellow-03);

}

/* ------------------------ */


.species-detail .insecta-observ {
	margin: 0 0 1em;
}


.species-detail .insecta-observ ol.decades {
	display: block;
	margin: 0 0 0;
	padding: 0;
	line-height: 0;
}

.species-detail .insecta-observ ol.decades li {
	display: inline-block;
	width: 8px;
	height: 8px;
	overflow: hidden;
	background-color: var(--color-green-light);
	text-align: center;
	margin: 0 1px 1px 0;
	padding: 0;
	cursor: default;
	/* writing-mode: vertical-lr; */
	/* transform: scale(-1, -1); */
	font-size: 1px;
	color: #999;
}

.species-detail .insecta-observ ol.decades li.observ {
	background-color: var(--color-green-bright);
	color: #000;
}

.species-detail .insecta-observ ol.decades.imago li.observ {
	background-color: violet;
}

.species-detail .insecta-observ ol.decades.pupa li.observ {
	background-color: #6992ff;
}

.species-detail .insecta-observ ol.decades.larva li.observ {
	background-color: #63e3d0;
}

.species-detail .insecta-observ ol.decades.ovum li.observ {
	background-color: #e9d583;
}

.species-detail .insecta-observ ol.decades.leaf li.observ {
	background-color: var(--color-green-bright);
}

.species-detail .insecta-observ ol.decades.flower li.observ {
	background-color: violet;
}

.species-detail .insecta-observ ol.decades.seed li.observ {
	background-color: #ffb822;
}


.species-detail .insecta-observ ol.decades li.rare {
	background-color: var(--color-yellow-03);
	color: #666;
}

.species-detail .insecta-observ ol.months {
	display: block;
	margin: 2px 0 0;
	padding: 0;
}

.species-detail .insecta-observ ol.months li {
	display: inline-block;
	width: 22px;
	overflow: hidden;
	background-color: #e1ead6;
	text-align: center;
	margin: 0 1px 0 0;
	padding: 2px;
	/* text-transform: uppercase; */
	cursor: default;
	/* writing-mode: vertical-lr; */
	/* transform: scale(-1, -1); */
	height: 14px;
	font-size: 11px;
	color: #000;
	box-sizing: content-box;
}

.species-detail .insecta-observ ol.months li.current {
	background-color: var(--color-green-bright);
	color: #000;
}

.species-detail .insecta-observ ul.legend {
	display: block;
	margin: 0;
	padding: 0;
}

.species-detail .insecta-observ li {
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 2px;
	font-size: 11px;
}

.species-detail .insecta-observ li span {
	display: inline-block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	vertical-align: text-top;
	margin: 0 5px 0 0;
}

.species-detail .insecta-observ li span.imago {
	background-color: violet;
}

.species-detail .insecta-observ li span.pupa {
	background-color: #6992ff;
}

.species-detail .insecta-observ li span.larva {
	background-color: #63e3d0;
}

.species-detail .insecta-observ li span.ovum {
	background-color: #e9d583;
}

.species-detail .insecta-observ li span.leaf {
	background-color: var(--color-green-bright);
}

.species-detail .insecta-observ li span.flower {
	background-color: violet;
}

.species-detail .insecta-observ li span.seed {
	background-color: #ffb822;
}





/* ------------------------ */

.species-detail .preview-text {
	margin: 0 0 1em;
}


.species-detail .description {
	margin: 24px 0 24px;
	overflow: hidden;
	clear: both;
}

.species-detail .description section {
	margin: 1.5em 0;
}

.species-detail ul.redbook {
	display: block;
	color: #aaa;
	margin: 0 0 1em;
	padding: 3px 0 0 35px;
	background: no-repeat 0 0 url(/ico/icons8/iosglyph/24/book-red.png);
	min-height: 30px;
}

.species-detail ul.redbook li {
	display: block;
	margin: 0;
	padding: 0;
}

.species-detail ul.redbook li.active {
	font-weight: bold;
}

.species-detail ul.redbook li.actual {
	color: #a00;
}

/* -------------------------------- */

.fauna-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.fauna-list .item {
	width: 33.333%;
	/* v2 */
	width: 25%;
}

.fauna-list .item-box {
	margin: 0 5px 10px;
	border-radius: 6px;
	border: 1px solid #eee;
	padding: 5px;
}

.fauna-list .item .preview-picture {
	height: 200px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	box-sizing: border-box;
}

.fauna-list .item h5 {
	text-align: center;
	font-size: 15px;
	margin: 0.5em 0 0.1em;
	font-weight: normal;
}

.fauna-list .item h5 a {
	text-decoration: none;
}

.fauna-list .item h5 a:hover {
	text-decoration: underline;
}

.fauna-list .item .latin {
	text-align: center;
	color: #666;
	font-style: italic;
	font-size: 12px;
}

.fauna-list .item .inat {
	text-align: center;
	color: #666;
	font-style: italic;
	font-size: 12px;
}

.fauna-list .item .conserv {
	text-align: center;
	color: #a00;
	font-style: italic;
	font-size: 12px;
}

.fauna-list .item .adv {
	display: none;
}

.fauna-list .item .adv::before {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 10px;
	background-color: #000;
	padding: 4px;
	content: 'АДВ';
	display: block;
}

.fauna-list .item.adventive .adv {
	display: block;
}

.fauna-list .item .redbook {
	display: none;
}

.fauna-list .item .redbook::before {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 10px;
	background-color: #a00;
	padding: 4px;
	content: 'КК';
	display: block;
}

.fauna-list .item.redbook .redbook {
	display: block;
}

.fauna-list .item.redbook .preview-picture {
	border: 1px solid #a00;
}

/* --------------- */

.flora-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.flora-list .item {
	width: 25%;
	/* v2 */
	width: 20%;
}

.flora-list .item-box {
	margin: 0 5px 10px;
	border-radius: 6px;
	border: 1px solid #eee;
	padding: 5px;
}

.flora-list .item .preview-picture {
	height: 250px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.flora-list .item .adv {
	display: none;
}

.flora-list .item .adv::before {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 10px;
	background-color: #000;
	padding: 4px;
	content: 'АДВ';
	display: block;
}

.flora-list .item.adventive .adv {
	display: block;
}



.flora-list .item .redbook {
	display: none;
}

.flora-list .item .redbook::before {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 10px;
	background-color: #a00;
	padding: 4px;
	content: 'КК';
	display: block;
}

.flora-list .item.redbook .redbook {
	display: block;
}

.flora-list .item.redbook .preview-picture {
	border: 1px solid #a00;
}













.flora-list .item h5 {
	text-align: center;
	font-size: 15px;
	margin: 0.5em 0 0.1em;
	font-weight: normal;
}

.flora-list .item h5 a {
	text-decoration: none;
}

.flora-list .item h5 a:hover {
	text-decoration: underline;
}

.flora-list .item .latin {
	text-align: center;
	color: #666;
	font-style: italic;
	font-size: 12px;
}

.flora-list .item .inat {
	text-align: center;
	color: #666;
	font-style: italic;
	font-size: 12px;
}

.geo-tile {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: -5px;
}

.geo-tile .item {
	width: 25%;
}

.geo-tile .item-box {
	margin: 0 5px 10px;
	border-radius: 6px;
	border: 1px solid #eee;
	padding: 5px;
}

.geo-tile .item .name {
	margin: 0.5em 0 0.1em;
	font-weight: bold;
}

.geo-tile .item .picture {
	width: 100%;
	height: 200px;
	background-color: #e1ead6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: block;
	box-sizing: border-box;
}

.geo-tile .item .picture.noimage {
	background-image: url(/ico/icons8/colorhanddrawn/100/lake.png);
	background-size: 50%;
}



.geo-tile .item.done .item-box {
	background-color: lightyellow;
}

.geo-tile .item.done .picture {
	box-shadow: 0 0 2px #000 inset;
}



.geo-tile .meta {
	margin: 0.5em 0 0;
	font-size: 12px;
	font-weight: normal;
	color: #aaa;
}

.geo-tile .meta .views {
	background: no-repeat center left url(/ico/icons8/iosglyph/12/eye-grey.png);
	padding: 0 5px 0 15px;
}




.geo-detail .detail-text {
	text-align: justify;
}

.geo-detail .detail-text ul {
	overflow: hidden;
}

.geo-detail address {
	font-size: smaller;
	font-style: normal;
	color: #666;
	background-color: lightyellow;
	margin: 2em 0 1em;
	padding: 1em;
	border-radius: 6px;
}

.geo-detail address h3 {
	margin: 0 0 0.5em;
}


.geo-detail .detail-picture {
	margin: 0 0 24px;
}

.geo-detail .detail-picture img {
	width: 100%;
	max-width: 100%;
}

.geo-detail figure {
	margin: 0.5em 0 0.5em -5px;
	clear: left;
}

.geo-detail .detail-text .side-box {
	float: left;
	margin: 0 1em 1em 0;
	width: 350px;
	box-sizing: border-box;
}

.geo-detail .detail-text .side-box table {
	box-sizing: border-box;
	width: 100%;
}

.geo-detail .detail-text .side-box table td,
.geo-detail .detail-text .side-box table th {
	font-size: 13px;
	text-align: left;
}

.geo-detail .detail-text .side-box table th {
	padding: 4px 12px 4px 4px;
}

.geo-detail .detail-text .side-box table td {
	padding: 4px 4px 4px 4px;
}

.geo-detail .detail-text .side-box table caption {
	caption-side: top;
	text-align: left;
	font-weight: bold;
	padding: 0 4px 4px 4px;
	border-bottom: 1px solid #ccc;
	font-size: 13px;
}

.geo-detail .detail-text .side-box table .child {
	margin: 0 0 0.1em;
}

.geo-detail figure img {
	max-width: 100%;
}

.geo-detail figure figcaption {
	color: #666;
	font-style: italic;
	margin-left: 0.7em;
	margin-top: 0.3em;
	font-size: 90%;
	text-align: left;
}

.geo-detail figure + br {
	display: none;
}

.tiles {
	margin: -5px -5px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
}

.tiles.left {
	float: left;
	width: 25%;
	display: block;
	margin: 0 1em 1em 0;
}

.tiles .item-wrapper {
	display: block;
	box-sizing: border-box;
	position: relative;
	flex-basis: 25%;
}

.tiles .item-box {
	height: 0;
	padding-top: 100%;
	position: relative;
	display: block;
}

.tiles .item {
	background-repeat: no-repeat;
	background-position: center 25%;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 5px solid #FFF;
	border-radius: 10px;
}

.geo-detail .slider .item {
	height2: 100vh;
	width2: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
}

/* ---------------- */

.river-meta {
	font-size: 13px;
}

.river-meta table {
	border-collapse: collapse;
	box-sizing: border-box;
	width: 100%;
}

.river-meta table tr {

}

.river-meta table th, 
.river-meta table td
{
	text-align: left;
	font-size: 13px;
}

.river-meta table th {
	padding: 4px 12px 4px 4px;
}

.river-meta table td {
	padding: 4px 4px 4px 4px;
}

.river-meta .children {
	padding: 4px 4px 4px 4px;
}


.cite {
	text-align: center;
}

.cite .item {
	font-size: 13px;
}

.cite blockquote {
	margin: 0 0 1em;
	padding: 0;
}

.cite .author {
	font-style: italic;
}

.cite .picture {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center 25%;
	background-size: cover;
	max-width: 100%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 15px 0 0;
	
}


/* ---------------- */

.notes-list {

}

.notes-list iframe {
	background-color: #ccc;
}

.notes-list .item {
	border: 1px solid #e1ead6;
	border-radius: 6px;
	padding: 8px 12px 14px;
	margin: 0 0 1.5em;
	/*
	background-position: top center;
	background-repeat: no-repeat;
	background-image: url(images/109.jpg);
	background-size: contain;
	*/
}

.notes-list .item h4 {
	margin: 0 0 3px;
	font-size: 20px;
	font-weight: normal;
}

.notes-list .item h4 a {
	text-decoration: none;
}

.notes-list .item h4 a:hover {
	text-decoration: underline;
}

.notes-list .item .date {
	font-size: 12px;
	color: #aaa;
	/* font-weight: bold; */
	/* font-style: italic; */
}

.notes-list .item .preview-text {
	margin: 10px 0 0;
}

.notes-list .item .photoes-wrapper {
	max-width: 570px;
	position: relative;
	margin: 1em 0 0;
	background2: #eee;
}

/* ------------ detail ------ */

.notes-list.note-detail .item {
	padding: 0;
	border: none;
}

.notes-list.note-detail .item .preview-text {
	text-align: justify;
}

.notes-list.note-detail .item-box {
	flex-direction: column;
	display: flex;
}

.notes-list.note-detail .item .meta {
	font-size: 12px;
	color: #aaa;
	order: 2;
	margin-top: 12px;
}

.notes-list.note-detail .item .meta .date {
	padding: 0 5px 0 0;
	display: inline-block;
}

.notes-list.note-detail .item .meta .visited {
	background: no-repeat center left url(/ico/icons8/iosglyph/12/eye-grey.png);
	padding: 0 5px 0 15px;
	display: inline-block;
}

.notes-list.note-detail .item .preview-text {
	order: 3;
}

.notes-list.note-detail .item .photoes-wrapper {
	order: 1;
}

.notes-list.note-detail .item .videos {
	order: 4;
}

.notes-list.note-detail .item .tags{
	order: 5;
}



/* ----- */

.notes-list .item .photoes-wrapper .meta {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	font-size: 12px;
	padding: 6px 12px 12px;
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0));
	display: none;
	border-radius: 6px 6px 0 0;
	z-index: 2;
}

.notes-list .item .photoes-wrapper:hover .meta {
	display: block;
}


.notes-list .item .photoes-wrapper .meta span.visited {
	background: no-repeat center left url(/ico/icons8/iosglyph/12/eye-white.png);
	padding: 0 5px 0 15px;
}

.notes-list .item .photoes-wrapper .meta span.comments {
	background: no-repeat center left url(/ico/icons8/iosglyph/12/comment-white.png);
	padding: 0 5px 0 15px;
}

.notes-list .item .photoes-wrapper .meta span.likes {
	background: no-repeat center left url(/ico/icons8/iosglyph/12/heart-white.png);
	padding: 0 5px 0 15px;
}


.notes-list .item .photoes-wrapper::after {
	content: '';
	display: block;
	padding-top: 66.66%;

}

.notes-list .item .photoes {
	display: grid;
	background-color2: #F00;
	gap: 1.5% 1%;
	border-radius: 6px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.notes-list .item .photoes.layout-0 {
	display: none;
}

.notes-list .item .photoes.layout-1 {
	grid-template-areas: "a";
}

.notes-list .item .photoes.layout-2 {
	grid-template-areas: "a b";
}

.notes-list .item .photoes.layout-3 {
	grid-template: "a b"
		"a c";
	grid-template-columns: 64% 35%;
}

.notes-list .item .photoes.layout-4 {
	grid-template: "a b"
		"c d";
	grid-template-columns: 49.5% 49.5%;
	grid-template-rows: 49.25% 49.25%;
}

.notes-list .item .photoes.layout-5 {
	grid-template: "a a b b"
		"c d d e";
	grid-template-columns: 32.5% 16% 16% 32.5%;
	grid-template-rows: 60.5% 38%;
}

.notes-list .item .photoes.layout-6 {
	grid-template: "a b c"
		"d e f";
	grid-template-columns: repeat(3, 32.66%);
	grid-template-rows: 49% 49%;
}

.notes-list .item .photoes.layout-7 {
	grid-template: "a a a a a b b b b b "
		"c c d d e e f f g g";
	grid-template-columns: repeat(10, 9.1%);
	grid-template-rows: 70.5% 28%;
}

.notes-list .item .photoes.layout-8 {
	grid-template: "a a a b b b "
		"c d e f g h";
	grid-template-columns: repeat(6, 16.66%);
	grid-template-rows: 70.5% 28%;
}

.notes-list .item .photoes.layout-9 {
	grid-template: "a b c" "d e f" "g h i";
	grid-template-columns: repeat(3, 32.66%);
	grid-template-rows: repeat(3, 32.33%);
}

.notes-list .item .photoes.layout-10 {
	grid-template: "a a b b" "a a b b" "c d e f" "g h i j";
}

.notes-list .p-0 {
	grid-area: a;
}

.notes-list .p-1 {
	grid-area: b;
}

.notes-list .p-2 {
	grid-area: c;
}

.notes-list .p-3 {
	grid-area: d;
}

.notes-list .p-4 {
	grid-area: e;
}

.notes-list .p-5 {
	grid-area: f;
}

.notes-list .p-6 {
	grid-area: g;
}

.notes-list .p-7 {
	grid-area: h;
}

.notes-list .p-8 {
	grid-area: i;
}

.notes-list .p-9 {
	grid-area: j;
}

.notes-list .p-10 {
	grid-area: k;
}

.notes-list .item .photoes .photo {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #EEE;
	position: relative;
}

.notes-list .item .photoes a.photo:hover::after {
	position: absolute;
	display: block;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(/ico/icons8/iosglyph/50/zoom-in-white.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba(0,0,0,0.2);
}

.notes-list .videos {
	max-width: 570px;
	margin: 1em 0;
}

.notes-list .video {
	margin: 0 0 1em;
}

.notes-list2 .item {
	border: 0;
	padding: 0;
}

.notes-list2 .item-box {
	overflow: hidden;
}

.notes-list2 .aside {
	float: left;
	width: 350px;
	margin-right: 2em; 
}

.notes-list2 .body {
	overflow: hidden;
}

.notes-list2 .item .photoes-wrapper {
	margin: 0 0 10px;
}

.notes-list2 .videos {
	margin: 0;
}

.notes-list2 .videos iframe {
	max-width: 100%;
	max-height: 260px;
}

.notes-list3 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.notes-list3 .item .aside {
	margin: 0 0 10px;
}

.notes-list3 .item {
	width: 25%;
	border: none;
	box-sizing: border-box;
}

.notes-list3 .item:nth-child(1) {
	width: 50%;
}

.notes-list3 .item:nth-child(1) h4 {
	font-size: 18px;
}

.notes-list3 .item:nth-child(2) {
	width: 50%;
}

.notes-list3 .item:nth-child(2) h4 {
	font-size: 18px;
}

.notes-list3 .item h4 {
	font-size: 15px;
	font-weight: bold;
}

.notes-list .siblings {
	overflow: hidden;
}

.notes-list .siblings .sibling-item {
	box-sizing: border-box;
	width: 50%;
}

.notes-list .siblings .sibling-item.prev {
	float: left;
	text-align: left;
	padding-right: 0.5em;
}

.notes-list .siblings .sibling-item.next {
	float: right;
	text-align: right;
	padding-left: 0.5em;
}

.notes-list .siblings .sibling-item .name {
	margin: 0 0 0.5em;
	font-size: 110%;
	font-weight: bold;
}

.notes-list .siblings .sibling-item .arrow {
	color: #666;
}


/* ----------------------------------------------- */

.notes-tile {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.notes-tile .item {
	width: 50%;
	border: none;
	box-sizing: border-box;
}

.side-box .notes-tile .item {
	width: 100% !important;
}



.notes-tile .item .preview-text {
	font-size: 13px;
	position: relative;
}

.notes-tile .item.long .preview-text {
	max-height: 200px;
	overflow: hidden;
}

.notes-tile .item .exp-button {
	display: none;
}

.notes-tile .item.long .exp-button {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
	text-align: center;
	cursor: pointer;
	height: 70px;
}


.side-box .notes-tile .item.long .exp-button {
	background: linear-gradient(rgba(255, 255, 255, 0), var(--color-green-light));
}

.notes-tile .item.long .exp-button button {
	cursor: pointer;
	border: 1px solid #a0b785;
	font-size: 11px;
	padding: 4px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	transform: translateX(-50%);
	border-radius: 6px;
	color: #465b2d;
}

.notes-tile iframe {
	max-width: 100%;
}


.tags {
	margin: 0 0 1em;
}

.tags ul {
	display: block;
	margin: 0 0 0.3em;
	padding: 0;
}

.tags ul li {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 0;
}

.tags ul li a {
	display: inline-block;
	background-color: #333;
	text-decoration: none;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-style: italic;
	color: #fff;
}

.tags ul.geo li a {
	background-color: #b75b48;
}

.tags ul.flora li a {
	background-color: #548724;
}

.tags ul.fauna li a {
	background-color: #2c87b9;
}

.tags ul.fungi li a {
	background-color: #952cb9;
}

.t-container {
	margin: 2em 0;
}

.t-container .item {
	height: 35vh;
	display: flex;
	flex-direction: row;
	overflow: hidden;
}

.t-container .picture {
	width: 50%;
	box-sizing: border-box;
	order: 1;
	position: relative;
}

.t-container .picture img {
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-out;
}

.t-container .picture.p0 img:nth-child(1) {
	opacity: 1;
}

.t-container .picture.p1 img:nth-child(2) {
	opacity: 1;
}

.t-container .picture.p2 img:nth-child(3) {
	opacity: 1;
}

.t-container .picture.p3 img:nth-child(4) {
	opacity: 1;
}

.t-container .picture.p4 img:nth-child(5) {
	opacity: 1;
}

.t-container .picture.p5 img:nth-child(6) {
	opacity: 1;
}

.t-container .picture.p6 img:nth-child(7) {
	opacity: 1;
}

.t-container .picture.p7 img:nth-child(8) {
	opacity: 1;
}

.t-container .picture.p8 img:nth-child(9) {
	opacity: 1;
}

.t-container .picture.p9 img:nth-child(10) {
	opacity: 1;
}

.t-container .picture.p10 img:nth-child(11) {
	opacity: 1;
}

.t-container .picture.p11 img:nth-child(12) {
	opacity: 1;
}


.t-container .body {
	width: 50%;
	box-sizing: border-box;
	padding: 24px 24px 12px;
	order: 2;
	text-align: center;
	vertical-align: middle;
	background: linear-gradient(90deg, #eee, transparent);
	position: relative;
}

.t-container .body .caption {
	font-size: 31px;
	margin: 0 0 12px;
}

.t-container .body .description {
	color: #666;
}

.t-container .item:nth-child(even) .body {
	order: 1;
	background: linear-gradient(90deg, transparent, #eee);
}

.t-container .item:nth-child(even) .picture {
	order: 2;
}

.t-container .icon {
	/*margin: 0 0 15px;*/
	margin: 0 0 0;
	text-align: center;
}

.t-container .icon span {
	display: inline-block;
	width: 80px;
	height: 80px;
	/*border: 2px solid #000;*/
	border-radius: 50%;
	opacity: 0.2;
	box-sizing: border-box;
	padding: 8px 0 0;
}

.nature-calendar {
	text-align: center;
}

.nature-calendar .item {
	font-size: 13px;
	margin: 0 0 2em;
}

.nature-calendar blockquote {
	margin: 0 0 1em;
	padding: 0;
}

.nature-calendar .author {
	font-style: italic;
}

.nature-calendar .picture {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center 25%;
	background-size: cover;
	max-width: 100%;
	width: 150px;
	height: 150px;
	border-radius: 10%;
	margin: 0 0 0;
	
}

.nature-calendar h4 {
	font-size: 15px;
	margin: 1em 0 1em;
}

.nature-calendar .caption {
	font-size: 12px;
	color: #999;
	font-style: italic;
}


/* ----------------------------------------------- */



@media screen and (max-width: 1400px) {

	#right-column {
		flex-basis: 100%;
	}

	#right-column section.side-box {
		max-width: 380px;
	}
}

@media screen and (max-width: 1230px) {

}

@media screen and (max-width: 1050px) {

	.news-tile .item {
		width: 50%;
	}

	.news-tile .preview-picture {
		height: 220px;
	}


	.cols3 {
		grid-template-columns: 1fr 1fr;
	}

	#footer .line-menu {
		columns: 2;
	}

}




@media screen and (max-width: 925px) {

	#main-wrapper {
		display: block;
	}

	#content-wrapper {
		padding: 12px;
		margin: 0;
	}

	#left-column {
		padding: 12px;
		margin: 12px;
	}

	#right-column {
		padding: 12px;
		margin: 12px;
	}

	.slider .owl-carousel .item h4 {
		font-size: 17px;
	}

	.geo-tile .item {
		width: 33.33%;
	}

	.species-detail .picture-wrapper {
		float: none;
	}

	.notes-list3 .item {
		width: 33.333%;
	}

	.notes-list3 .item:nth-child(1) {
		width: 33.333%;
	}

	.notes-list3 .item:nth-child(2) {
		width: 33.333%;
	}



}


@media screen and (max-width: 750px) {

	.fauna-list .item {
		width: 50%;
	}

	.flora-list .item {
		width: 33.333%;
	}

	.t-container .item {
		flex-direction: column;
		height: auto;
	}

	.t-container .body {
		width: 100%;
		height: 35vh;
	}

	.t-container .picture {
		width: 100%;
		height: 35vh;
	}

	.t-container .item:nth-child(even) .body {
		order: 2;
		background: linear-gradient(90deg, transparent, #eee);
	}
	
	.t-container .item:nth-child(even) .picture {
		order: 1;
	}
	
	.notes-list3 .item {
 		width: 100%;
	}

	.notes-list3 .item:nth-child(1) {
		width: 100%;
	}

	.notes-list3 .item:nth-child(2) {
		width: 100%;
	}

	.lib-detail .preview-picture {
		margin-right: 0;
		max-width: 100%;
	}

	.lib-detail .body {
		clear: left;
	}

	.lib-detail .preview-text {
		text-align: left;
	}

	.tiles.left {
		float: none;
		width: 38%;
	}

	.geo-detail .detail-text .side-box {
		width: 100%;
		padding: 12px 12px;
		float: none;
		margin: 0 0 1em 0;
	}

	.geo-detail .detail-text .side-box h3 {
		margin: -12px -12px 1em;
	}

}


@media screen and (max-width: 580px) {

	body {
		font-size: 15px;
	}

	.slider .owl-carousel .item .info {
		width: auto;
		max-width: inherit;
		right: 12px;
		bottom: 54%;
	}

	.news-tile .item {
		width: 100%;
	}

	.geo-tile .item {
		width: 50%;
	}

	.fauna-list .item {
		width: 100%;
	}

	.fauna-list .item .preview-picture {
		height: 300px;
	}

	.flora-list .item {
		width: 50%;
	}

	.form {
		display: block;
	}

	.form tbody {
		display: block;
	}

	.form tr {
		display: block;
	}

	.form tr > td {
		display: block;
		border: none;
	}

	.form tr > td.label {
		text-align: left;
		padding: 12px 12px 0;
		width: 100%;
		box-sizing: border-box;
	}


	.cols3 {
		grid-template-columns: 1fr;
	}

	#footer .line-menu {
		columns: 1;
	}

	.notes-list2 .item {
		margin-bottom: 3.5em;
	}

	.notes-list2 .aside {
		float: none;
		margin-right: 0;
	}

	.notes-list .siblings {
		display: flex;
		flex-direction: column;
	}

	.notes-list .siblings .sibling-item {
		box-sizing: border-box;
		width: 100%;
		margin: 0 0 1em;
		border: 1px solid #ddd;
		border-radius: 6px;
		padding: 12px;
	}

	.notes-list .siblings .sibling-item.prev {
		float: none;
		text-align: center;
		order: 2;
		padding-right: 0;
	}

	.notes-list .siblings .sibling-item.next {
		float: none;
		text-align: center;
		order: 1;
		padding-left: 0;
	}

	.tiles.left {
		float: none;
		width: 60%;
	}

	.geo-detail .detail-text {
		text-align: left;
	}


}

/* samsung galaxy */
@media screen and (max-width: 412px) {

	.geo-tile .item {
		width: 100%;
	}

	h1 {
		font-size: 28px;
	}

	.flora-list .item {
		width: 100%;
	}

	.flora-list .item .preview-picture {
		height: 300px;
	}

	.tiles.left {
		float: none;
		width: 100%;
		margin: 1em 0;
	}

	.geo-detail .detail-text {
		text-align: left;
	}

}

@media screen and (max-width: 340px) {

	.fauna-list .item .preview-picture {
		height: 200px;
	}

}


.detail-text .f-carousel__slide {
	background-color: #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider img.inslider {
	max-height: 700px;
}

.inat-window {
	margin: 24px 0;
	padding: 12px;
	border: 1px solid #eee;
	background-color: lightyellow;
	max-height: 500px;
	overflow: auto;
}

.inat-window #results {
	background-color: #fff;
}

.inat-window .photo img {
	width: 75px;
	height: 75px;
	background-color: #ddd;
	float: left;
	margin: 0 24px 0 0;
}

.inat-window .photo .body {
	overflow: hidden;
}

.inat-window .info {
	
}

.inat-window .species-guess {
	font-weight: bold;
}

.inat-window .taxon-name {
	font-style: italic;
}

.inat-window .quality-grade {
	font-size: smaller;
	display: inline-block;
	padding: 2px 4px;
}

.inat-window .quality-grade.research {
	background-color: #74ac00;
	color: #fff;
}

.inat-window .quality-grade.needs_id {
	background-color: #ffee91;
	color: #85743d;
}

.inat-window .quality-grade.casual {
	background-color: #ddd;
	color: #a3a3a3;
}

.inat-window .date {
	font-size: smaller;
}













