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

	Theme Name: Garfunkel
	Version: 10.1
	Description: Garfunkel is a stylish and responsive Pinterest-style theme with Masonry layout. It features responsive and retina-ready design, support for six post formats (including a gallery slideshow), six custom widgets, two page templates, Jetpack Infinite Scroll support, editor styling and translation-ready code. Included translations: Swedish/svenska.
	Tags: black, red, white, dark, one-column, three-columns, fluid-layout, responsive-layout, custom-colors, custom-header, custom-menu, editor-style, featured-images, full-width-template, post-formats, sticky-post, theme-options, threaded-comments, translation-ready
	Author: Anders Norén
	Author URI: http://www.andersnoren.se
	Theme URI: http://www.andersnoren.se/teman/garfunkel-wordpress-theme/
	License: GNU General Public License version 2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	
	All files, unless otherwise stated, are released under the GNU General Public License
	version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

-----------------------------------------------------------------------------------

	0.	CSS Reset & Clearfix
	1.	Document Setup
	2.  Structure
	3.	Title Section
	4.	Navigation
	5.	Blog
	6.  Post Formats
	7.	Single Post
	8.	Post Content
	9.	Comments
	10.	Respond
	11.	Pagination
	12.	Page & Page Templates
	13.	Widget Area
	14. Credits
	15. No Javascript Fallback
	16.	Responsive

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


/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */

html, body { margin:0; padding:0;}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	font-weight:normal;
	font-style:normal;
	font-size:100%;
	line-height:1.2;
	font-family:inherit;
	text-align:left;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Cuprum, sans-serif;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

ol, ul {
	list-style:none;
}

blockquote:before, blockquote:after {
	content:" ";
}



a { outline:none; }

input[type=search] {
   -moz-appearance:none;
   -webkit-appearance:none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}


/* -------------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------------- */

html {
	background-color: #000;
}


body {
	margin: 0;
	padding: 0;
	border: none;
	color: #444;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	background-color: #000;
}

body * { -webkit-font-smoothing: antialiased; }

body a {
	color: #ca2017;
	text-decoration: none;
}

body a:hover {
	color: #ca2017;
	text-decoration: none;
}

* { 
	box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
}

img {
	max-width: 100%;
	height: auto;
}

.hidden { display: none; }
.clear { clear: both; width: 100% }

.socclear, .socclear1 { float: right; height: 1px; width: 1px; display: none;}

.fleft { float: left; }
.fright { float: right; }

::selection {
	background: #444;
	color: #FFF;
}

::-webkit-input-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }


/* Transitions --------------------------------------- */


{ 
	-webkit-transition: all 0s ease-in-out;
	 -moz-transition: all 0s ease-in-out;
	 -ms-transition: all 0s ease-in-out;
	 -o-transition: all 0s ease-in-out;
	 transition: all 0s ease-in-out;
}

body a {
	-webkit-transition: all 0.1s ease-in-out;
	 -moz-transition: all 0.1s ease-in-out;
	 -ms-transition: all 0.1s ease-in-out;
	 -o-transition: all 0.1s ease-in-out;
	 transition: all 0.1s ease-in-out;
}

.blog-title a,
.post-title a,
.main-menu a,
.main-menu > .has-children > a::after,
.main-menu > .page_item_has_children > a::after,
.search-toggle,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea,
.comment-form input[type="submit"],
.nav-toggle,
.nav-toggle .bar,
.main-menu ul > .has-children::after,
.main-menu ul > .page_item_has_children::after,
.post-nav-fixed a,
.flex-direction-nav a,
.tab-post-meta .post-nav a h4,
.author-content a .title,
.author-content a .post-icon,
.author-content a .post-icon .genericon,
.author-content a .post-icon img,
.widget_garfunkel_dribbble_widget .dribbble-shot,
.widget_garfunkel_flickr_widget .flickr_badge_image a,
.post-content input[type="submit"],
.post-content input[type="reset"],
.post-content input[type="button"],
.widget_garfunkel_recent_posts .title,
.widget_garfunkel_recent_comments .title,
a .post-icon,
a .post-icon .genericon,
a .post-icon img {
	-webkit-transition: all 0.2s ease-in-out;
	 -moz-transition: all 0.2s ease-in-out;
	 -ms-transition: all 0.2s ease-in-out;
	 -o-transition: all 0.2s ease-in-out;
	 transition: all 0.2s ease-in-out;
}

.featured-media img {
	width: 100% !important;
	height: auto;
}


/* -------------------------------------------------------------------------------- */
/*	2.	Structure
/* -------------------------------------------------------------------------------- */


.wrapper, .wrapper-long  {
	position: relative;
	z-index: 3;
}

.wrapper:before {
	content: "";
	display: block;
	height: 300px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
	position: absolute;
	top: -100px;
	right: 0;
	left: 0;
	z-index: -2;
}

.wrapper:after {
	content: "";
	display: block;
	background: #000;
	position: absolute;
	top: 200px;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.wrapper-long:before {
	content: "";
	display: block;
	height: 300px;
	position: absolute;
	top: -100px;
	right: 0;
	left: 0;
	z-index: -2;
}

.wrapper-long:after {
	content: "";
	display: block;
	position: absolute;
	top: 200px;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.bg-image.master,
.bg-shader.master {
	height: 960px;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
}

.bg-image.master {
	background-repeat: no-repeat;
	background-position: center top;
}

.bg-shader.master { 
	background: rgba(0,0,0,0.2); 
	z-index: 3;
}


/* Sitewide --------------------------------------- */


.section-inner {
	max-width: 90%;
	margin: 0 auto;	
	position: relative;
}

.wrapper-long .section-inner {
	max-width: 100%;
	margin: 0 auto;	
	position: relative;
}

.wrapper-long p, .wrapper-long .featured-media {
	width: 80% !important;
	margin: 0 auto;	
}

.wrapper-datas {
	width: 80% !important;
	margin: 0 auto;	
	padding: 0;
	clear: both;
}

.wrapper-datas-left {
	width: 72.5% !important;
	margin: 0 2.5% 50px 0;	
	float: left;
}

.wrapper-datas-left::after { }

.wrapper-datas-rigth {
	width: 25% !important;
	margin:  0 0 50px 0;
	padding: 0 0 0 2.5%;
	float: right;
	text-align: center;
	border-left: 1px solid #ebebeb;
}

.wrapper-datas-rigth::before { }

.wrapper-datas-rigth-logo {
	width: 300px;
	height: auto;
	margin: 20px auto 0;
	max-width: 100%;
}

.wrapper-datas-zag {
	font-size: x-large !important;
	margin: 30px 0 0 0 !important;
	color: #a3a2a2 !important;
	font-family: 'FuturaPTMedium', sans-serif !important;
	text-transform: uppercase!important;
}

.peoplecschet {
	font-size: 20px;
	display: inline-block;
	float: right;
	color: #444;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	font-style: normal;
	margin-right: 10%;
}

.section-inner.thin { width: 1000px; }

.bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg-shade {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.bg-dark { background: #1d1d1d; }


/* Columns --------------------------------------- */


.one-fourth { width: 21.5%; margin-left: 5%; float: left; }
.one-third { width: 30%; margin-left: 5%; float: left; }
.one-half { width: 47.5%; margin-left: 5%; float: left; }
.two-thirds { width: 65%; margin-left: 5%; float: left; }

.one-fourth:first-child,
.one-third:first-child,
.one-half:first-child,
.two-thirds:first-child { margin-left: 0; }


/* -------------------------------------------------------------------------------- */
/*	3. Title Section
/* -------------------------------------------------------------------------------- */


.title-section { position: relative; }

.home_first_page .title-section .section-inner { padding: 30px 0 100px 0;  }
.home_first_page .featured-longreed .section-inner { padding: 30px 0 100px 0;  }
.home_first_page .featured-longreed1 .section-inner { padding: 30px 0 100px 0;  }

.title-section .section-inner, .featured-longreed .section-inner, .featured-longreed1 .section-inner { 
	padding: 30px 0 120px 0; 
	position: relative;
	z-index: 10;
}

.blog-title { 
	text-align: center; 
	position: relative;
}

.blog-title a {
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-size: 3em;
	color: #fff;
	position: relative;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.blog-title a:hover { color: #ca2017; }

.blog-subtitle {
	font-size: 1.25em;
	font-weight: 400;
	color: rgba(255,255,255,0.8);
	text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
	margin: 30px 0 0 0;
	text-align: center;
	position: relative;
}


/* Blog logo ---------------------------------------- */


.blog-logo { text-align: center; z-index: 92; position: relative; }
.blog-logo a { display: inline-block; }

.blog-logo img {
	display: block;
	max-height: 200px;
	max-width: 100%;
	height: auto;
	width: auto;
}


/* Nav toggle --------------------------------------- */


.toggle-container { display: none; }

.nav-toggle { 
	display: block;
	padding: 14px; 
	border-radius: 0 0 2px 2px;
	background: #1D1D1D;
	position: absolute;
	top: 0;
	left: 0;
}

.nav-toggle .bars {
	height: 10px;
	width: 15px;
	float: left;
	position: relative;
	top: -1px;
}

.nav-toggle .bar {
	width: 15px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 0;
}

.nav-toggle .bar:nth-child(2) { top: 4px; }
.nav-toggle .bar:nth-child(3) { top: 8px; }

.nav-toggle p {
	font-size: 14px;
	line-height: 10px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: right;
	color: #fff;
	float: right;
	margin-right: 8px;
}

.nav-toggle .close { display: none; }

.nav-toggle:hover { cursor: pointer; }

.nav-toggle.active { background: #1d1d1d; } 

.nav-toggle.active .bar:nth-child(1),
.nav-toggle.active .bar:nth-child(3) { top: 4px; }

.nav-toggle.active .bar:nth-child(2) { opacity: 0; }

.nav-toggle.active .bar:nth-child(1) {
	transform: rotate(45deg); 
	-moz-transform: rotate(45deg);  
	-webkit-transform: rotate(45deg); 
}

.nav-toggle.active .bar:nth-child(3) { 
	transform: rotate(-45deg); 
	-moz-transform: rotate(-45deg);  
	-webkit-transform: rotate(-45deg); 
}

.nav-toggle.active .menu { display: none; }
.nav-toggle.active .close { display: block; }
.nav-toggle.active .mainmenu1 { display: block; }


/* -------------------------------------------------------------------------------- */
/*	4. Navigation
/* -------------------------------------------------------------------------------- */


.navigation { background: #1d1d1d; z-index: 95; text-align: center; width: 100%; position: relative;}
  
.navigation .section-inner { position: relative; }

.mobile-menu-container { display: none; }


/* Main menu --------------------------------------- */


.main-menu li { position: relative; }
.main-menu > li { float: left; }

.main-menu > li:before {
	content: "/";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -9px;
	margin-right: -3px;
	font-size: 16px;
	color: #444;
	font-weight: 300;
	z-index: 1000;
}

.main-menu > li:last-of-type:before { content: none; }

.main-menu a {
	font-size: 0.9em;
	color: #999;
}

.main-menu > li > a {
	display: block;
	padding: 27px;
}

.main-menu > li:first-child > a { margin-left: 0; }

.main-menu > .has-children > a,
.main-menu > .page_item_has_children > a { padding-right: 47px; position: relative; }

.main-menu > .has-children > a::after,
.main-menu > .page_item_has_children > a::after {
	content: "";
	display: block;
	border: 5px solid transparent;
	border-top-color: #999;
	position: absolute;
	z-index: 1001;
	right: 29px;
	top: 50%;
	margin-top: 1px;
}

.main-menu li:hover > a { cursor: pointer; color: #fff; }

.main-menu > .has-children:hover > a::after,
.main-menu > .page_item_has_children:hover > a::after { border-top-color: #fff; }


/* Sub menus --------------------------------------- */


.main-menu li ul {
	position: absolute;
	z-index: 10000;
	display: block;
	left: -9999px;
	top: 65px;
	opacity: 0;
	z-index: 999;
	-webkit-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
	 -moz-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
	 -ms-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
	 -o-transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
	 transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}

.main-menu > li > ul { padding-top: 20px; }

.main-menu > li > ul:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1000;
	top: 0px;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-bottom-color: #2d2d2d;
}

.main-menu ul li {
    float: none;
    display: block;
}

.main-menu ul > .has-children::after,
.main-menu ul > .page_item_has_children::after {
	content: "";
	display: block;
	border: 6px solid transparent;
	border-left-color: #999;
	border-left-color: rgba(255,255,255,0.2);
	position: absolute;
	z-index: 1001;
	right: 6px;
	top: 50%;
	margin-top: -6px;
}

.main-menu ul li { 	
	display: block;
	width: 240px; 
	background: #2d2d2d;
}

.main-menu ul a {
	display: block;
	text-align: center;
	padding: 20px;
	margin: 0;
	line-height: 130%;
	color: #999;
}

.main-menu ul li:hover > a { color: #fff; }

.main-menu li:hover > ul {
	opacity: 1;
	left: 50%;
	margin-left: -120px;
	top: 50px;
	display: block;
}


/* Deep down --------------------------------------- */


.main-menu ul li ul { top: 5px; }

.main-menu ul li:hover > ul {
	top: 0;
	left: 240px;
	margin-left: 0;
}

.main-menu ul li { background: #2d2d2d; }
.main-menu ul ul li { background: #3d3d3d; }
.main-menu ul ul ul li { background: #4d4d4d; }
.main-menu ul ul ul ul li { background: #5d5d5d; }
.main-menu ul ul ul ul ul li { background: #6d6d6d; }

.main-menu ul .has-children:hover::after,
.main-menu ul .page_item_has_children:hover::after { 
	border-width: 8px;
	margin-top: -8px; 
	right: -16px;
}

.main-menu ul > .has-children:hover::after,
.main-menu ul > .page_item_has_children:hover::after { 
	border-left-color: #2d2d2d;
}

.main-menu ul ul > .has-children:hover::after,
.main-menu ul ul > .page_item_has_children:hover::after { 
	border-left-color: #3d3d3d;
}

.main-menu ul ul ul > .has-children:hover::after,
.main-menu ul ul ul > .page_item_has_children:hover::after { 
	border-left-color: #4d4d4d;
}

.main-menu ul ul ul ul > .has-children:hover::after,
.main-menu ul ul ul ul > .page_item_has_children:hover::after { 
	border-left-color: #5d5d5d;
}

.main-menu ul ul ul ul ul > .has-children:hover::after,
.main-menu ul ul ul ul ul > .page_item_has_children:hover::after { 
	border-left-color: #6d6d6d;
}




/* Social menu --------------------------------------- */




.social 
{display: inline-block;
margin: 45px 0px 10px 0px;
position: absolute;
z-index: 90;
top: 0px;
right: 5%; 
float: right;
}

.soctop {
display: inline-block;
margin: 0px;
position: absolute;
z-index: 90;
bottom: 10px;
right: 10px; 
float: right;
}


.social ul, .socialautor ul{list-style: none outside none;
margin: 0;
padding: 0;}

.social ul li {
	float: right;
	margin-right: 10px;
	list-style: none outside none;
}

.social ul li a {display:block; height: 24px; width: 24px; font-size: 20px; line-height: 24px; color: #fff;}
.social ul li a:hover {color: #ebebeb; text-decoration: none; }



.socialautor ul li {
	padding: 0 20px 0 20px; margin: 10px 0 10px 0;
	font-family: Arial;
	font-size: 13px;
	line-height: 18px;
	color: #333;
	text-align: left;
	list-style: none outside none;
}


.socialautor ul li {display:block; height: 24px; line-height: 24px;}
.socialautor .ikon {display:block; height: 24px; line-height: 24px; width: 24px; float: left; margin: 0 10px 0 0; text-align: center; border-radius: 12px 12px 12px 12px;}

.socialautor .facebook {background: #304c8a;}
.socialautor .ok {background: #ee8208;}
.socialautor .vkontakte {background: #3c72af;}

.socialautor .ikon:hover{box-shadow:0 0 3px #000;}

.resumautor {
margin: -25px 0 15px 0;
padding: 0 0 0 10px;
font-family: Arial;
font-size: 13px;
line-height: 18px;
color: #333;
text-align: left;
display:block;
}

.resumautor2 {
margin: 0 0 5px 0;
padding: 0 0 0 20px;
font-family: Arial;
font-size: 15px;
line-height: 20px;
color: #333;
	text-align: left;
}


.twitter:before {
	content: "\e61b";
	color: #fff;
}

.facebook:before {
	content: "\f39e";
	color: #fff;
}

.feed:before {
	content: "\f09e";
	color: #fff;
}

.vkontakte:before {
	content: "\f189";
	color: #fff;
}

.avkfake:before {
	content: "\42";
	color: #fff;
}

.youtube:before {
	content: "\f167";
	color: #fff;
}

.moimir:before {
	content: "@";
  	color: #FF9E00;
  	font-family: 'Open Sans', sans-serif !important;
  	font-size: 26px !important;
	line-height: 31px !important;
	font-weight: 600;
}

.block-info .soclink .moimir:before {
	content: "@";
  	color: #fff !important;
  	font-family: 'Open Sans', sans-serif !important;
  	font-size: 100% !important;
  	line-height: 100% !important;
  	font-weight: 400;
}

.ok:before {
	content: "\f263";
	color: #fff;
}

.inst:before {
	content: "\f16d";
	color: #fff;
}

.lj:before {
	content: "\f040";
	font-family: "FontAwesome";
	color: #fff;
}

.tg:before {
	content: "\f3fe";
	color: #fff;
}

.pin:before {
	content: "\f231";
	color: #fff;
}

.linkedin:before {
	content: "\f0e1";
	color: #fff;
}

.ku:before {
	font-family: "FontAwesome";
	content: "\f66f";
	color: #fff;
}

.github:before {
	content: "\f09b";
	color: #fff;
}

.whatsapp:before {
	content: "\f232";
	color: #fff;
}

.yandex:before {
	content: "\f413";
	color: #fff;
}

.tt:before {
	content: "\e07b";
	color: #fff;
}

.website:before {
	content: "\f0c1";
	color: #fff;
	font-family: 'FontAwesome' !important;
}

.vkontakte:before, .github:before, .yandex:before, .linkedin:before, .avkfake:before {
	line-height: 35px !important;	
}



.navigation .section-inner .menu-social {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -18px;
}

.navigation .section-inner .menu-social li { 
	float: left;
	margin-left: 10px; 
}

.menu-social li:first-child { margin-left: 0; }

.screen-reader-text {
	position: absolute;
	top: -9999em;
	left: -9999em;
}

.menu-social a {
	display: block;
	width: 36px;
	height: 36px;
	background: #333;
	color: #fff;
	border-radius: 999px;
	position: relative;
}

.menu-social a:hover { 
	background-color: #ca2017; 
	color: #fff;
}

.menu-social li a::before {
	content: '\f408';
	display: inline-block;
	font-family: 'Genericons';
	font-size: 16px;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
	-webkit-font-smoothing: antialiased;
}

.menu-social li a[href*="codepen.io"]::before { content: '\f216'; }
.menu-social li a[href*="dribbble.com"]::before { content: '\f201'; }
.menu-social li a[href*="facebook.com"]::before { content: '\f204'; }
.menu-social li a[href*="flickr.com"]::before { content: '\f211'; }
.menu-social li a[href*="github.com"]::before { content: '\f200'; }
.menu-social li a[href*="instagram.com"]::before { content: '\f215'; }
.menu-social li a[href*="linkedin.com"]::before { content: '\f207'; }
.menu-social li a[href*="pinterest.com"]::before { content: '\f210'; }
.menu-social li a[href*="plus.google.com"]::before { content: '\f206'; }
.menu-social li a[href*="tumblr.com"]::before { content: '\f214'; }
.menu-social li a[href*="twitter.com"]::before { content: '\e61b'; }
.menu-social li a[href*="vimeo.com"]::before { content: '\f212'; }
.menu-social li a[href*="wordpress.org"]::before,
.menu-social li a[href*="wordpress.com"]::before { content: '\f205'; }
.menu-social li a[href*="youtube.com"]::before { content: '\f213'; }


/* -------------------------------------------------------------------------------- */
/*	5. Blog 
/* -------------------------------------------------------------------------------- */


.posts { overflow: visible !important; }

.post-container {
	width: 33.3%;
	padding: 0 1% 2.25% 1%;
/*-	float: left; - */
}

.post,
.posts .page,
.book,
.organization,
.location {
	width: 100%;
	position: relative;
	background: #fff;
	overflow: hidden;
}


/*  Sticky post  ----------------------------------------- */


.post.sticky .is-sticky {
	display: block;
	width: 32px;
	height: 32px;
	background: #ca2017;
	position: absolute;
	z-index: 999;
	top: 0;
	right: 16px;
}

.post.sticky .is-sticky .genericon {
	margin: 8px 0 0 8px;
	color: #fff;
}

.post.sticky .is-sticky:before,
.post.sticky .is-sticky:after {
	content: "";
	display: block;
	border: 8px solid transparent;
	position: absolute;
	bottom: -16px;
}

.post.sticky .is-sticky:before {
	left: 0px;
	border-top-color: #ca2017;
	border-left-color: #ca2017;
}

.post.sticky .is-sticky:after {
	right: 0px;
	border-top-color: #ca2017;
	border-right-color: #ca2017;
}


/*  Featured media  ----------------------------------------- */


.featured-media { position: relative; }

.featured-media a,
.featured-media img,
.featured-media iframe { display: block; font-size: 100% !important; }

.featured-media iframe,
.featured-media object { border: none; margin: 0; }

.featured-media a { overflow: hidden; }
.featured-media a:hover img { 
	opacity: 0.8;
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
}

.media-caption-container {
	padding: 50px 0 25px;
	background: #000;
	background: rgba(0,0,0,0.3);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.55))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#8c000000',GradientType=0 ); /* IE6-9 */
	position: absolute;
	z-index: 10;
	right: 0;
	bottom: 0;
	left: 0;
}

.featured-media .media-caption {
	width: 700px;
	max-width: 84%;
	margin: 0 auto;
	font-size: 0.9em;
	line-height: 120%;
	font-style: italic;
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/*  featured-longreed  ----------------------------------------- */

.featured-longreed, .featured-longreed1 {
	width: 100%;
	margin: -0;
	overflow: hidden;
	display: block;
   	background-repeat: no-repeat;
    background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	top: 0px;
	z-index: 3;
	
}

.featured-longreed::before {
    content: "";
    display: block;
    padding-top: 35%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.featured-longreed1::before {
    content: "";
    display: block;
    padding-top: 20%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.featured-longreed picture, .featured-longreed1 picture, .featured-autor picture {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
	object-fit: cover;
}

.featured-longreed picture img, .featured-longreed1 picture img, .featured-autor picture img {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
	object-fit: cover;
}

.media-longreed {
	width: 100%;
	margin: 0 auto;
	display: block;
	height: 100%;
	position: fixed;
	top: 0px;
}


/*  present-inner  ----------------------------------------- */

.present-inner { 
	padding: 10%; 
	width: 100%;
	position: absolute;
	z-index: 990;
	margin: 0;
	text-align: center;
}

.present-inner a { 
	padding: 0px 10px 0px 10px; 
}

.present-inner .black, .present-inner .black a,
.long-title .black, .long-title .black a { 
	color: #000000;
}

.present-inner .white, .present-inner .white a,
.long-title .white, .long-title .white a { 
	color: #ffffff;
}
 
.presentautor .black a:hover,
.present-inner .black a:hover {
	color: #ca2017;
}

.presentautor .white a:hover,
.present-inner .white a:hover {
	background: rgba(17, 17, 17, 0.75);
}


.present-title {
	font-size: 2em;
	width: 100%;
	line-height: 120%;
	font-weight: 400;
	margin: 0;
	word-break: break-word;
	-ms-word-break: break-word;
	text-align: center;

}

.presentautor {
	font-family: 'Tahoma', sans-serif;
	text-transform: uppercase;
	font-size: 0.75em;
	font-weight: 400;
	text-align: center;
	height: 35px;
	line-height: 35px;
	padding: 0;
	position: absolute;
	z-index: 999;
	width: 80%;
}

.presentdtlogo {
	text-align: center;
	height: 50px;
	line-height: 50px;
	padding: 0;
	position: relative;
	z-index: 999;
	width: 50%;
	margin: 0 auto;
}


.long-title {
	margin: 0;
	position: absolute;
	bottom: 30%;
	right: 0px;
	display: inline-block;
	max-width: 80%;
}

.long-title H1{
	font-size: 3em;
	line-height: 120%;
	font-weight: 400;
	padding: 25px 50px 25px 25px;
	word-break: break-word;
	-ms-word-break: break-word;
	display: inline-block;
	float:right;
	max-width: 100%;
}


.long-title H1 adaywithoutsun, 
.long-title H1.kashmir { font-size: 3em !important; }

.long-title H1.pushkin, 
.long-title H1.runic1, 
.long-title H1.runic2, 
.long-title H1.runic3 { font-size: 4em !important;}




.long-title H3{
	font-size: 2em;
	line-height: 120%;
	font-weight: 400;
	padding: 10px 15px 5px 15px;
	float:left;
}

.long-title H3.adaywithoutsun, 
.long-title H3.kashmir { font-size: 2em !important; }

.long-title H3.pushkin, 
.long-title H3.runic1, 
.long-title H3.runic2, 
.long-title H3.runic3 { font-size: 3em !important;}



.long-title H3 a {
	
}

.long-title .black { 
	color: #000000;
	background: rgba(255,255,255, 0.50);
}

.long-title .white { 
	color: #ffffff;
	background: rgba(17, 17, 17, 0.75);
}


/*  Post inner  ----------------------------------------- */


.post-title {
	font-size: 1.6em;
	line-height: 120%;
	font-weight: 700;
	margin-bottom: 10px;
	color: #222;
	word-break: break-word;
	-ms-word-break: break-word;
}

.post-title a { color: #222; }

.posts .post-inner { padding: 10%; }

.post-excerpt {
	font-family: 'Crimson Text', serif;
	font-size: 1.1em;
	line-height: 140%;
	color: #666;
}

.post-excerpt p + p { margin-top: 1em; }

.post-excerpt .more-link { border-bottom: 1px solid transparent; }
.post-excerpt .more-link:hover { border-bottom-color: #13C4A5; }


/*  Post inner  ----------------------------------------- */


.posts .post-meta {
	font-size: 0.85em;
	font-weight: 500;
}

.posts .post-excerpt + .post-meta,
.posts .post-header + .post-meta {
	margin-top: 20px;
	border-top: 2px solid #eee;
	padding-top: 12px;	
}

.posts .post-meta .genericon { 
	position: relative;
	bottom: -3px;
}

.posts .post-meta-comments .genericon { 
	position: relative;
	bottom: -2px;
}

.posts .post-meta-date { float: left; }
.posts .post-meta-comments { float: left; margin-left: 10px; }

.posts .post-meta a { color: #999; }


/* -------------------------------------------------------------------------------- */
/*	6. Post Formats
/* -------------------------------------------------------------------------------- */


/*  Format gallery  ----------------------------------------- */


.flexslider { 
	position: relative; 
	overflow: hidden;
}

.flexslider li { position: relative; }

.flexslider li img {
	display: block;
	margin: 0 auto;
}

.flex-direction-nav {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	margin-top: -30px;
}

.flex-direction-nav a {
	display: block;
	width: 30px;
	height: 60px;
	background: #2d2d2d no-repeat center;
	background-size: auto 10px;
	position: absolute;
	text-indent: -9999px;
}

.flex-direction-nav .flex-prev { 
	left: 0; 
	background-image: url(images/icons/chevron-left_w.png);
}

.flex-direction-nav .flex-next { 
	right: 0; 
	background-image: url(images/icons/chevron-right_w.png);
}

.flex-direction-nav a:hover { 
	width: 40px;
	background-color: #ca2017; 
} 

.flex-direction-nav .flex-prev:active { margin-left: -2px; }
.flex-direction-nav .flex-next:active { margin-right: -2px; }


/*  Format quote  ----------------------------------------- */


.post-quote {
	padding: 10% 8%;
	background: #ca2017;
	color: #fff;
}

.post-quote blockquote {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 1.25em;
	font-weight: 400;
	line-height: 140%;
}

.post-quote cite {
	display: block;
	margin-top: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8em;
	font-weight: 700;
}

.post-quote cite:before { content: "— " }


/*  Format link  ----------------------------------------- */


.post-link {
	padding: 10% 8%;
	background: #ca2017;
	color: #fff;
}

.post-link p {
	display: block;
	font-family: 'Fira Sans', sans-serif;
	font-size: 1.2em;
	font-weight: 400;
	line-height: 140%;
}

.post-link a { 
	display: block;
	margin-top: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8em;
	font-weight: 700;
	color: #fff; 
}

.post-link a:before {
	font: 32px/1 'Genericons';
	content: '\f107';
	position: relative;
	bottom: -11px;
}

.post-link a:hover { color: #fff; }

.post-link a:hover span { text-decoration: underline; }


/* -------------------------------------------------------------------------------- */
/*	7. Single post
/* -------------------------------------------------------------------------------- */


/* Format specific --------------------------------------- */


/* format quote */


.single-post .post-quote .inner {
	width: 700px;
	max-width: 100%;
	margin: 0 auto;
}

.single-post .post-quote blockquote {
	font-size: 2em; 
	line-height: 150%;
}

.single-post .post-quote cite {
	margin-top: 40px;
	font-size: 0.9em;
}


/* format link */


.single-post .post-link .inner {
	width: 700px;
	max-width: 100%;
	margin: 0 auto;
}

.single-post .post-link p { font-size: 2em; }


/* format gallery */


.single-post .flex-direction-nav { margin-top: -45px; }
.single-post .flex-direction-nav a { height: 90px; }


/* Post header --------------------------------------- */


.single-post .post-inner, .book .post-inner  { 
	padding: 10px 0 10px 10px;
	margin: 0 auto;
	float: left;
	width: 730px;
	max-width: 100%;
}

.single-post .post-header, .book .post-header, .organization .post-header, .location .post-header { margin-bottom: 5px; }

.single-post .post-date, .book .post-date, .organization .post-date, .location .post-date {
	display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	float:left;
	margin: 10px 0 31px 20px;
}

.post-date-icon::before {
    	position: relative;
    	content: '\f017';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
}

.post-date .post-views-icon, .post-date button  {
	margin: 0 0 0 10px;
}


.post-views-icon::before {
    	position: relative;
    	content: '\f06e';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
}

.post-date button {
	background: #fff;
	cursor: pointer;
}

.post-date button:hover {
	text-decoration: underline;
	color: #ff0000;
}

.post-date button::before {
    	position: relative;
    	content: '\f044';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;	
}

.single-post .post-autor, .book .post-autor, .organization .post-autor, .location .post-autor {
    display: inline-block;
	color: #000000;
	line-height: 20px;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	float:right;
	text-align:right;
	margin: 10px 20px 10px 0;
}

.single-post .origin, .book .origin, .fphotolargesm .post-date-icon {
    display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	text-align:left;
	float: left !important; 
	margin: 10px 0 10px 20px;
}

.wp-caption-people .post-date-icon {
    display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	text-align:left;
	float: left !important; 
	margin: 0 30px 0 0;
}

.single-post .origin::before, .book .origin::before {
    	position: relative;
    	content: '\f08e';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
}

.single-post .photolocation, .single-post .photoorg, .single-post .photoautor, .single-post .videoautor {
    display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	text-align:left;
	float: left !important; 
	margin: 10px 0 10px 20px;
}

.single-post .photoautor::before {
    	position: relative;
    	content: '\f083';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
		color: #000 !important;
}

.single-post .videoautor::before {
    	position: relative;
    	content: '\f03d';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
		color: #000 !important;
}

.single-post .photolocation::before {
    	position: relative;
    	content: '\f3c5';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
}

.single-post .photoorg::before {
    	position: relative;
    	content: '\f66f';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
}


.single-post .tags, .book .tags,  {
    display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	text-align:left;
	float: left !important; 
	margin: 10px 0 10px 20px;
}

.single-post .tags::before, .book .tags::before  {
    	position: relative;
    	content: '\f02c';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 6px 0 0;
}

.single-post .tags a, .book .tags a, .single-post .people a, .book .people a, .single-post .photolocation a {
  margin-right: 10px;
}

.single-post .tags a:nth-child(n+6), .book .tags a:nth-child(n+6),
.single-post .people a:nth-child(n+6), .book .people a:nth-child(n+6) {
  display: none;
}

.single-post .tags.open a:nth-child(n+6), .book .tags.open a:nth-child(n+6),
.single-post .people.open a:nth-child(n+6), .book .people.open a:nth-child(n+6) {
  display: inline-block;
}

.allpeople.open, .alltags.open {
  display: none;
}

.list-toggle, .list-toggle-people, .list-toggle-tags {
	background: #fff;
	color: #ff0000;
}

.list-toggle:hover, .list-toggle-people:hover, .list-toggle-tags:hover {
	background: #fff;
	color: #000000;
	text-decoration: underline;
}

.single-post .people, .book .people, .peoplephoto, .single-post .tags, .book .tags, .single-post .photolocation  {
    display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	text-align:left;
	float: left !important; 
	margin: 10px 0 10px 20px;
}

.single-post .people::before, .book .people::before, .peoplephoto::before {
    	position: relative;
    	content: '\f007';
    	font-family: FontAwesome;
    	left: 0;
    	top: 0;
    	font-size: 14px;
		text-transform: capitalize;
		margin: 0 10px 0 0;
}



.single-post .post-autor a:hover { text-decoration:underline; }

.single-post .post-date a, .single-post .tags a, .single-post .origin a, .single-post .photolocation a, .single-post .people a, .peoplephoto a, .single-post .photoorg a, .single-post .photoautor a, .single-post .photoautor, .single-post .videoautor { color: #999; position: relative; }
.single-post .post-date a:hover, .single-post .tags a:hover, .single-post .origin a:hover, .single-post .photolocation a:hover, .single-post .people a:hover, .peoplephoto a:hover, .single-post .photoorg a:hover, .single-post .photoautor a:hover, .single-post .videoautor a:hover { color: #ca2017; }


.single-post .post-share {
    display: inline-block;
	color: #000000;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	float:left;
	text-align:left;
	margin: 10px 0 10px 20px;
}


.ya-share2 {
	float:right;
	text-align:right;
}



.post-date .sep {
	margin: 0 10px;
	font-weight: 400;
	color: #ddd;
}

.single-post .post-title { font-size: 2.5em; }

.modal {
	  display: none;
	  position: fixed;
	  z-index: 100;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  overflow: auto;
	  background-color: rgb(0,0,0);
	  background-color: rgba(0,0,0,0.4);
	transition: all 3s;
    -moz-transition: all 3s;
    -webkit-transition: all 3s;
    -o-transition: all 3s;
}

.modalcontent {
	  background-color: #fefefe;
	  margin: 5% auto;
	  padding: 20px;
	  border: 1px solid #888;
	  width: 80%; 
}

.closemodal, .closemodal:before  {
	  color: #aaa;
	  float: right;
	  font-size: 32px;
	  font-weight: normal;
}

.closemodal:before {
    	content: '\f00d';
    	font-family: FontAwesome;
}

.closemodal:hover, .closemodal:focus,
.closemodal:hover:before, .closemodal:focus:before {
	  color: black;
	  text-decoration: none;
	  cursor: pointer;
}

.suggestedits {
	text-align: center; 
	padding: 20px; 
	border: 2px solid #ff0000;
}

.suggestedits button {
	color: #ff0000;
	background: #ffffff;	
}

.suggestedits button:hover {
	text-decoration: underline;
	color: #ff0000;
	cursor: pointer;
}

/* Page links --------------------------------------- */


.page-links {
	display: inline-block;
	margin-top: 10%;
	background: #f1f1f1;
	border-radius: 3px;
	overflow: hidden;
	font-family: 'Fira Sans', sans-serif;
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
	color: #666;
}

.page-links > a,
.page-links > span {
	display: inline-block;
	padding: 16px 16px 15px 16px;
}

.page-links > span:nth-of-type(2) {
	background: #333;
	color: #fff;
}

.page-links > a { color: #ca2017; }

.page-links > a:hover {
	background: #ca2017;
	color: #fff;
	text-decoration: none !important;
}


/* Post meta bottom --------------------------------------- */


.tab-selector { 
	width: 700px;
	max-width: 84%;
	margin: 0 auto;
}

.tab-selector li { 
	float: left; 
	margin-left: 10px;
}

.tab-selector li:first-child { margin-left: 0; }

.tab-selector a {
	display: block;
	padding: 20px 20px 18px 18px;
	border-bottom: none;
	font-size: 0.9em;
	font-weight: 500;
	color: #999;
	border-radius: 3px 3px 0 0;
}

.tab-selector a .genericon {
	position: relative;
	top: -1px;
}

.tab-selector a:hover { color: #666; }

.tab-selector .active { 
	background: #f1f1f1; 
	color: #333;
}

.tab-selector .active:hover { color: #333; }


/* post meta inner */


.post-meta-tabs { background: #f1f1f1; }

.post-meta-tabs-inner {
	width: 700px;
	max-width: 84%;
	padding: 80px 0;
	margin: 0 auto;
}

.post-meta-tabs .tab { display: none; }
.post-meta-tabs .tab-comments { display: block; }


/* Tab post meta --------------------------------------- */


/* post nav */


.tab-post-meta { position: relative; }

.tab-post-meta:after {
	content: "";
	display: block;
	width: 1px;
	background: #ddd;
	position: absolute;
	top: 0;
	left: 57.5%;
	bottom: 0;
}

.tab-post-meta .post-nav { width: 52.5%; }
.tab-post-meta .post-nav a { display: block; }

.tab-post-meta .post-nav a + a { 
	margin-top: 33px; 
	border-top: 1px solid #ddd;
	padding-top: 33px;
}

.tab-post-meta .post-nav p {
	font-size: 0.8em;
	font-weight: 700;
	color: #767676;
}

.tab-post-meta .post-nav h4 {
	font-size: 1.1em;
	line-height: 120%;
	font-weight: 700;
	margin-top: 5px;
	color: #333;
	word-break: break-word;
	-ms-word-break: break-word;
}

.tab-post-meta .post-nav a:hover h4 { color: #ca2017; }


/* post info items */


.post-info-items { width: 37.5%; }

.post-info-items li {
	font-size: 0.9em;
	line-height: 120%;
	color: #666;
}

.post-info-items li + li {
	margin-top: 12px;
	border-top: 1px solid #ddd;
	padding-top: 12px;
}

.post-info-items a { color: #666; }
.post-info-items a:hover { color: #ca2017; }


/* Tab author meta --------------------------------------- */


.tab-author-meta { position: relative; }

.tab-author-meta .avatar {
	display: block;
	width: 150px;
	height: auto;
	padding: 8px;
	background: #fff;
	border-radius: 999px;
	position: absolute;
	top: 0;
	left: 0;
}

.author-meta-inner {
	margin-left: 180px;
	min-height: 150px;
}

.author-name {
	font-size: 1.4em;
	font-weight: 700;
	color: #222;
}

.author-name a { color: #222; }
.author-name a:hover { color: #ca2017; }

.author-position {
	margin: 8px 0 20px;
	color: #767676;
}

.author-description {
	color: #555;
	line-height: 150%;
}


/* author content */


.author-content { margin-top: 10%; }

.content-by {
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ca2017;
	margin-bottom: 15px;
}

.author-content li {
	border-bottom: 1px solid #ddd;
	position: relative;
}

.author-content li:first-child { border-top: 1px solid #ddd; }

.author-content a { 
	display: block; 
	padding: 20px 0 20px 65px;
}

.author-content .post-icon { 
	width: 50px;
	height: 50px;
	background: #d8d8d8;
	border-radius: 999px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -25px;
}

.author-content .post-icon img { 
	border-radius: 999px;
}

.author-content .post-icon .genericon {
	font-size: 32px;
	height: 32px;
	width: 32px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
}

.author-content .title {
	display: inline-block;
	font-weight: 700;
	line-height: 120%;
	color: #333;
}

.author-content .meta,
.author-content .excerpt {
	font-size: 0.9em;
	line-height: 140%; 
	color: #999;
	margin-top: 3px;	
}

.author-content a:hover .title { color: #ca2017; }

.author-content a:hover .post-icon { background: #ca2017; } 
.author-content a:hover .post-icon .genericon { color: #fff; } 

.author-content a:hover .post-icon img { 
	opacity: 0.75;
	-moz-opacity: 0.75;
	-webkit-opacity: 0.75;
} 


/* Post navigation fixed --------------------------------------- */


.post-nav-fixed a {
	display: block;
	width: 40px;
	height: 160px;
	background: #282828;
	position: fixed;
	top: 50%;
	margin-top: -80px;	
}

.post-nav-fixed a .arrow {
	display: block;
	width: 100%;
	font-size: 24px;
	line-height: 24px;
	font-weight: 300;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -11px;
}

.post-nav-fixed .post-nav-prev { left: 0; }
.post-nav-fixed .post-nav-next { right: 0; }

.post-nav-fixed a:hover {
	width: 60px; 
	background: #ca2017;
}


/* -------------------------------------------------------------------------------- */
/*	8. Post content
/* -------------------------------------------------------------------------------- */


.post-content { 
font-family: 'Open Sans', sans-serif !important;
font-size: 16px;
line-height: 155%;
}


.wrapper-long .post-content { 
font-size: 20px !important;
}

.post-content p { 
	margin-bottom: 1.5em;
	padding: 5px 10px;
	line-height: 150%;
	width: 100%;
}

.post-content p.first:first-letter {
float: left;
font-size: 4.8em;
padding: 2px;
font-family: 'Cormorant Infant', serif; 
margin-right: 10px;  
line-height: 0.35em;
}


.post-content a:hover { text-decoration: underline; }

.post-content ul,
.post-content ol,
.post-content address,
.post-content dl,
.post-content .wp-caption,
.post-content pre {
	line-height: 160%;
	margin-bottom: 1.1em;
}


/* .post-content > *:first-child { margin-top: 0; } */
/* .post-content *:last-child { margin-bottom: 0; } */

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
	margin: 50px 0 20px 0;
	font-family:Cuprum,sans-serif;
	line-height: 120%;
	font-weight: 700;
	color: #222;
	padding: 0 10px 0 10px;
}

.wrapper-longt h1, .wrapper-long h2, .wrapper-long h3, .wrapper-long h4, .wrapper-long h5, .wrapper-long h6 {
	margin: 50px 0 20px 10%;
}

.post-content h1 { font-size: 2em; }

.post-content h2 { font-size: 1.75em; }

.post-content h3 { font-size: 1.5em; }

.post-content h4 { 
	font-size: 1.25em; 
	font-weight: 400;
}

.post-content h5 { 
	font-size: 1.1em; 
	font-weight: 400;
}

.post-content h6 {
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.post-content h1+h1, .post-content h1+h2, .post-content h1+h3, .post-content h1+h4, .post-content h1+h5, .post-content h1+h6,
.post-content h2+h1, .post-content h2+h2, .post-content h2+h3, .post-content h2+h4, .post-content h2+h5, .post-content h2+h6,
.post-content h3+h1, .post-content h3+h2, .post-content h3+h3, .post-content h3+h4, .post-content h3+h5, .post-content h3+h6,
.post-content h4+h1, .post-content h4+h2, .post-content h4+h3, .post-content h4+h4, .post-content h4+h5, .post-content h4+h6,
.post-content h5+h1, .post-content h5+h2, .post-content h5+h3, .post-content h5+h4, .post-content h5+h5, .post-content h5+h6,
.post-content h6+h1, .post-content h6+h2, .post-content h6+h3, .post-content h6+h4, .post-content h6+h5, .post-content h6+h6 {
	margin-top: 25px;
}

.post-content blockquote {
	padding: 5px;
	position: relative;
	font-size: 30px;
	font-weight: normal;
	font-family: 'Roboto Slab', serif ;
    	text-align: center !important; 
	margin: 0;
	width: 100%;
}

.post-content blockquote:before, .post-content blockquote:after {
	content:" ";
    	line-height: 42px; 
    	position: relative;  
	left: 50%;
   	display: block;  
	height:3px;
	width: 200px;
	margin-left: -100px;
	padding:0;
}

.post-content blockquote:before {
	border-top: 1px solid #111111;
    	bottom: 20px;
	margin-top: 15px;
}

.post-content blockquote:after {
	border-bottom: 1px solid #111111;
    	top: 20px;
	margin-bottom: 45px;
}



.post-content blockquote p { text-align: center; width: 100%; }

.post-content cite {
	font-family: 'Fira Sans', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 140%;
	color: #666;
}

.post-content cite:before { content: "— "; }

.post-content blockquote cite {
	display: block;
	margin-top: 1em;
}

.post-content blockquote cite em { font-style: italic; font-weight: bold; }

em, q {  font-style: italic;  }

.post-content strong em,
.post-content em strong {
	font-weight: bold;
	font-style: italic;
}

.post-content big { font-size: 1.25em; }

abbr, acronym { cursor: help; }

code, kbd, pre {
	font-size: 0.85em;
	background: #EEE;
	font-family: Menlo, Monaco, monospace;
}

.post-content .highlight {
	background: #fcf8a5;
	width: auto;
	display: inline;
	padding: 2px 3px;
}

.post-content kbd,
.post-content code {
	padding: 5px;
	border-radius: 3px;
}

.post-content dl { line-height: 160%; }

.post-content dl dt { font-weight: bold; }

.post-content hr {
	width: 120px;
	height: 4px;
	background: #EEE;
	margin: 40px auto;
	border: 0;
}

.post-content ul {
	list-style: disc;
	margin-left: 1.5em;
}

.post-content ul ul { list-style: circle; }
.post-content ul ul ul { list-style: square; }

.post-content ol {
	list-style: decimal;
	margin-left: 1.5em;
}

.post-content ol ol { list-style: lower-alpha; }
.post-content ol ol ol {
	list-style: lower-roman;
}

.post-content ul ul,
.post-content ul ol,
.post-content ol ul,
.post-content ol ol {
	margin-bottom: 0;
}

.post-content li {
	margin-bottom: 0.5em;
	line-height: 150%;
}

.post-content ol ol li:first-child,
.post-content ol ul li:first-child,
.post-content ul ul li:first-child,
.post-content ul ol li:first-child {
	margin-top: 0.5em;
}

.post-content ol > li:last-child,
.post-content ul > li:last-child {
	margin-bottom: 0;
}

.post-content address {
	padding: 3% 3.5%;
	background: #f1f1f1;
}

.post-content pre {
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	line-height: 140%;
	padding: 2% 2.5%;
	background: #333;
	font-size: 0.8em;
	color: #FFF;
	border-radius: 6px;
}


/* Post media --------------------------------------- */


img.alignleft,
.alignleft img,
img.aligncenter,
.aligncenter img,
img.alignright,
.alignright img {
	display: block;
	box-sizing: border-box;
	padding: 5px;
	border: 1px solid #EEE;
}


.post-content .alignleft,
.post-content .alignright {
	margin-bottom: 1.2em;
	max-width: 50%;
}

.post-content .wp-caption .alignleft,
.post-content .wp-caption .alignright {
	margin-bottom: 0;
}

.post-content .alignleft {
	float: left;
	margin-right: 1em;
}

.post-content .alignright {
	float: right;
	margin-left: 1em;
}

.post-content .aligncenter,
.post-content .aligncenter img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.post-content .wp-caption-text,
.post-content .gallery-caption {
	padding-top: 1em;
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.9rem;
	color: #666;
	font-style: italic;
	text-align: center;
}

.post-content .gallery-caption {
	font-size: 16px;
	line-height: 24px;
}

.wp-caption-people {
    margin-bottom: 130px;
    text-align: center;
    padding-top: 5px;
    max-width: 100% !important;
	position: relative;
	overflow: visible;
}

.wp-caption-people-edit {
    max-width: 100% !important;	
	display: inline-block;
	margin: 0 auto;
	position: relative;
}

.wp-caption-img-people {
	display: block;
	margin: 10px auto 5px;
	position: relative;
	overflow: visible;
}

.orientquad { 
    max-width: 80% !important;
    width: 80%;
}
.orientvert {
    max-width: 60% !important;
    width: 60%;
}
.orientgor {
    max-width: 100% !important;
    width: 100%;
}

.wp-caption-img-people .compass {
	display: block;
	width: calc(100% - 154px);
	height: 57px;
	padding: 0;
	position: absolute;
	top: 20px;
	left: 77px;
	right: 77px;
	z-index: 4000;
	float: left;
	line-height: 57px;
}

.wp-caption-img-people .compassback {
	display: block;
	width: 100%;
	height: 57px;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4010;
	filter:alpha(opacity=50);  /*  для IE 5.5+ */
	-moz-opacity:0.5;  /* для Mozilla 1.6 и ниже */
	-khtml-opacity:0.5;  /* для Konqueror 3.1, Safari 1.1 */
	opacity: 0.5; /* для Mozilla 1.7b+, Firefox 0.9+, Safari 1.2+, Opera 9 */
	line-height: 57px;
	background-size: contain;
}

.wp-caption-img-people .compass:before, .wp-caption-img-people .compass:after {
	width: 57px;
	height: 57px;
	display: block;
	content: "";
	line-height: 57px;
	position: absolute;
	top:0;
	background-size: contain;
	filter:alpha(opacity=50);  /*  для IE 5.5+ */
	-moz-opacity:0.5;  /* для Mozilla 1.6 и ниже */
	-khtml-opacity:0.5;  /* для Konqueror 3.1, Safari 1.1 */
	opacity: 0.5; /* для Mozilla 1.7b+, Firefox 0.9+, Safari 1.2+, Opera 9 */
}

.wp-caption-img-people .compass:before {
	float: left;
	left: -57px;
}

.wp-caption-img-people .compass:after {
	float: right;
	right: -57px;
}

.uservrag, .locationicon {
	display: block;
	width: 57px;
	height: 57px;
	position: absolute;
	top:0;
	margin: 0 0 0 -49px;
	line-height: 57px;
	background-size: contain;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity:1;
	opacity: 1;
}

.uservrag {
	z-index: 4050;
}

.locationicon {
	z-index: 4100;
	left: 50%
}

.oficialorgicon {
	display: block;
	width: 21px;
	height: 21px;
	float: right;
	margin: 0 0 0 10px;
	line-height: 21px;
	background-size: 200%;
	background-position: 50% 50%;
}


.wp-caption-people img {
    border: 0 none;
    padding: 0;
    margin: 0;
    max-width: 100%;
    height: auto;
}

.wp-caption-text-people {
    line-height: 1.5 !important;
    font-size: 16px !important;
    margin: 20px auto !important;
	display: inline-block !important;
	width: 80% !important;
}

.wp-caption-text-people-photo p {
	margin: 5px 0 50px 20px;
	font-family: Arial;
	font-size: 14px;
	line-height: 21px;
	text-align: left;
}

/* Tables --------------------------------------- */


.post-content table {
	border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-family: 'Fira Sans', sans-serif;
    font-size: 0.8em;
    width: 100%;
}

.post-content th,
.post-content td {
	padding: 2%;
	margin: 0;
	overflow: visible;
	line-height: 120%;
	border-bottom: 1px solid #DDD;
}

.post-content caption {
	color: #444;
	text-align: center;
	padding: 2%;
}

.post-content thead {
	vertical-align: bottom;
	white-space: nowrap;
}

.post-content th {
	font-weight: bold;
	color: #444;
}

/* .post-content table tbody > tr:nth-child(odd) > td { background: #f9f9f9; } */






/* Forms --------------------------------------- */


.post-content fieldset {
	padding: 25px;
	border: 2px solid #eee;
	margin-bottom: 1em;
}

.post-content fieldset legend {
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.9rem;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 12px;
	background: #ca2017;
	color: #fff;
}

.post-content label {
	font-family: 'Fira Sans', sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.post-content input { font-family: 'Fira Sans', sans-serif; }

.post-content input[type="text"],
.post-content input[type="tel"],
.post-content input[type="url"],
.post-content input[type="password"],
.post-content textarea {
	width: 100%;
	padding: 14px 16px;
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.85em;
	border: none;
	color: #333;
	border: 2px solid #eee;
	background: #fdfdfd;
	border-radius: 4px;
	-webkit-transition: background 0.2s ease-in-out;
	-moz-transition: background 0.2s ease-in-out;
	-ms-transition: background 0.2s ease-in-out;
	-o-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
	-webkit-appearance: none;
}

.post-content textarea { 
	height: 180px; 
	line-height: 140%;
}

.post-content input[type="text"]:focus,
.post-content input[type="tel"]:focus,
.post-content input[type="url"]:focus,
.post-content input[type="password"]:focus,
.post-content textarea:focus {
	background: #fdfdfd;
	outline: none;
}

.post-content input[type="submit"],
.post-content input[type="reset"],
.post-content input[type="button"] {
	padding: 12px 16px;
	margin: 0;
	border: none;
	background: #333;
	color: #fff;
	font-size: 0.9rem;
	line-height: 1;
	-webkit-appearance: none;
	border-radius: 3px;
}

.post-content input[type="submit"]:hover,
.post-content input[type="reset"]:hover,
.post-content input[type="button"]:hover {
	cursor: pointer;
	background: #ca2017;
	color: #fff;
}

.post-content input[type="submit"]:focus,
.post-content input[type="submit"]:active {
	outline: none;
}


/* -------------------------------------------------------------------------------- */
/*	9. Comments
/* -------------------------------------------------------------------------------- */


.comments-page-container {
	padding: 8% 0;
	background: #F1F1F1;
}

.comments-page-container-inner {
	width: 700px;
	max-width: 84%;
	margin: 0 auto;
}

.comments-title-container { margin-bottom: 40px; }

.comments-title { 
	font-size: 1.5em;
	font-weight: 700;
	color: #333; 
}

.comments-subtitle {
	font-size: 0.9em;
	position: relative;
	bottom: -8px;
}

.comments-subtitle a:hover { text-decoration: underline; }


/* No comments --------------------------------------- */


.nocomments { 
	text-align: center; 
	font-style: italic;
}

.comments + .nocomments {
	margin-top: 10%;
}


/* Comment --------------------------------------- */


.comments div.comment { 
	margin-top: 40px; 
	position: relative;
}

.comments .commentlist > li.comment:first-child > div.comment:first-child { margin-top: 0; }

.comments .children { margin-left: 8%; }

.comments div.comment { position: relative; }

.bypostauthor > .comment:before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #ca2017;
	position: absolute;
	z-index: 9;
	top: -8px;
	left: -8px;
}

.bypostauthor > .comment:after {
	content: '\f304';
	font: 16px/1 'Genericons';
	color: #fff;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
}

.comment-inner { 
	margin-left: 110px; 
	padding: 25px;
	background: #fff;
	position: relative;
	border-radius: 3px;
}

.comment-inner:after {
	content: "";
	display: block;
	border: 12px solid transparent;
	border-right-color: #fff;
	position: absolute;
	top: 28px;
	left: 0;
	margin-left: -24px;
}

.comment .avatar {
	float: left;
	width: 80px;
	border-radius: 3px;
}

.comment-header { margin-bottom: 15px; }

.comment-header h4 {
	display: inline-block;
	font-size: 1em;
	font-weight: 700;
	color: #333;
}

.comment-header h4 a { color: #ca2017; }
.comment-header h4 a:hover { text-decoration: underline; }

.comment-header p { 
	display: inline-block;
	font-size: 0.75em;
	font-weight: 500;
	margin-left: 4px;
}

.comment-header p,
.comment-header p a { color: #999; }

.comment-header p a:hover { color: #666; }


/* Comment content --------------------------------------- */


.comment-content { font-size: 1.1em; }

.comment-content p { line-height: 150%; }


/* Awaiting moderation --------------------------------------- */


.comment-awaiting-moderation {
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.9rem;
	line-height: 1;
	font-weight: 700;
	color: #999;
	position: absolute;
	bottom: 22px;
	right: 25px;
}


/* Comment actions --------------------------------------- */


.comment-actions { margin-top: 25px; }

.comment-actions a {
	font-size: 0.8em;
	font-weight: 500;
	color: #999; 
}

.comment-actions a:hover { color: #666; }

.comment-actions a + a { margin-left: 10px; }


/* Pingbacks and trackbacks --------------------------------------- */


.pingbacks-container { margin-top: 10%; }

.pingbacks-title {
	font-size: 1.4em;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.pingbacks-container li {
	padding: 14px 4px;
	border-top: 1px solid #ddd;
	line-height: 130%;
}

.pingbacks-container li a { color: #666; }

.pingbacks-container .edit-link {
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
}

.pingbacks-container li:last-child { border-bottom: 1px solid #ddd; }


/* Comment navigation --------------------------------------- */


.comments-nav {
	margin-top: 10%;
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
	padding: 25px 0;
	font-size: 0.9em;
	font-weight: 500;
}

.comments-nav a { color: #666; }
.comments-nav a:hover { color: #ca2017; }


/* -------------------------------------------------------------------------------- */
/*	10. Respond
/* -------------------------------------------------------------------------------- */


.comments + .comment-respond { 
	margin-top: 10%; 
	border-top: 2px solid #ddd;
	padding-top: 10%;
}

.comments-nav + .comment-respond { margin-top: 10%; }

.commentlist .comment-respond {
	padding: 40px 0;
	margin: 40px 0;
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
}

.comment-reply-title {
	font-size: 1.5em;
	font-weight: 700;
	color: #333;
}

#cancel-comment-reply-link {
	font-size: 1rem;
	font-weight: 700;
	margin-left: 4px;
}

#cancel-comment-reply-link:hover { text-decoration: underline; }

.comment-notes { 
	line-height: 120%;
	color: #666; 
}


/*  Comment form  ----------------------------------------- */


.comment-form { margin-top: 40px; }

.comment-form p { margin-top: 30px; } 

.comment-form p.logged-in-as,
.comment-form p.comment-notes { 
	line-height: 120%;
	margin: -20px 0 40px; 
}

p.must-log-in { 
	line-height: 120%;
	margin-top: 20px; 
}

.comment-form .logged-in-as a:hover,
p.must-log-in a:hover { text-decoration: underline; }

p.comment-form-author,
p.comment-form-email {
	width: 47.5%;
	float: left;
	margin: 0 0 30px;
}

p.comment-form-author { margin-right: 5%; }

.comment-form label {
	display: block;
	font-size: 0.9em;
	font-weight: 500;
	margin-bottom: 6px;
	color: #666;
}

.comment-form .required { 
	color: red; 
	margin-left: 3px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	display: block;
	width: 100%;
	padding: 14px 16px;
	border-radius: 3px;
	background: #fff;
	color: #333;
	border: none;
	font-family: 'Fira Sans', sans-serif;
	font-size: 1em;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

.comment-form textarea { height: 250px; }

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
	outline: none;
	background-color: #fff;
}

.comment-form input[type="submit"] {
	padding: 18px 20px 16px 20px;
	background: none;
	border: none;
	margin: none;
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.9em;
	line-height: 1;
	color: #fff;
	background: #ca2017;
	border-radius: 3px;
	border-top: 0px solid transparent;
	-webkit-appearance: none;
}

.comment-form input[type="submit"]:hover {
	cursor: pointer;
	background: #ca2017;
}

.form-allowed-tags {
	line-height: 140%;
	color: #767676;
}

.comment-subscription-form + .comment-subscription-form { margin-top: 10px; }


/* -------------------------------------------------------------------------------- */
/*	11. Pagination
/* -------------------------------------------------------------------------------- */


/* Page title --------------------------------------- */


.page-title { 
	margin-bottom: 40px; 
	text-align: center;
}

.page-title h5 {
	display: inline-block;
	padding: 10px 10px 8px 10px;
	background: rgba(17, 17, 17, 0.75);
	font-size: 2 em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.page-title a {
	color: #fff;
}

.page-title a:hover {
	color: #fff;
	text-decoration:underline;
}

.page-title h3 {
	display: inline-block;
	padding: 20px 20px 15px 50px;
	background: rgba(17, 17, 17, 0.75);
	font-size: 2 em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
    	position: absolute;
    	top: 0;
    	left: 0;
}



.page-description p {
	font-family:Cuprum,sans-serif;
	color: #fff;
	text-align: center;
	margin-top: 1em;
}


/* Archive navigation --------------------------------------- */


.infinite-scroll .archive-nav { display: none; }

.archive-nav { margin: 0 5% 0 5%; }

.archive-nav a { 
	color: #fff; 
	border-bottom: 1px solid transparent;
}

.archive-nav a:hover { 
	color: #fff;
	border-bottom-color: #fff;
}


/* Jetpack infinite scroll --------------------------------------- */


.infinite-loader,
.infinite-loader .spinner { display: none; }


/* -------------------------------------------------------------------------------- */
/*	12. Page & Page Templates
/* -------------------------------------------------------------------------------- */


/* Page --------------------------------------- */


.page .post-content .post-edit-link {
	font-family: 'Fira Sans', sans-serif;
	font-size: 1rem;
	font-weight: 700;
}


/* Full width template --------------------------------------- */


.page-template-template-fullwidth-php .post-inner {
	padding: 8% 0;
	width: auto;
}


/* Search form --------------------------------------- */


.search-form { position: relative; }

.search-field { 
	width: 100%;
	background: #fafafa;
	border: 2px solid #eee;
	padding: 15px 15px 15px 52px;
	margin: 0;
	border-radius: 5px;
	font-family: 'Fira Sans', sans-serif;
	font-size: 1em;
	color: #444;
}

.post-content .search-field { font-size: 1rem; }

.search-form .genericon {
	display: block;
	font: 32px/1 'Genericons';
	color: #AAA;
	position: absolute;
	top: 50%;
	left: 12px;
	margin-top: -16px;
}

.search-form .search-field:focus { outline: none; }


/* Archive template --------------------------------------- */


.page-template-template-archives-php .archive-box {
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.85em;	
}

.page-template-template-archives-php .archive-box ul { list-style: none; }

.page-template-template-archives-php .archive-col > ul,
.page-template-template-archives-php .archive-box li { margin: 0; }

.page-template-template-archives-php .archive-box a {
	display: block;
	color: #444;
	font-weight: 700;
	border-top: 1px solid #ddd;
	padding: 14px 0;
}

.page-template-template-archives-php .archive-col > ul > li:last-child > a { border-bottom: 1px solid #ddd; }

.page-template-template-archives-php .archive-box a span { font-weight: 400; }

.page-template-template-archives-php .archive-box a:hover { 
	color: #ca2017; 
	text-decoration: none;
}

.page-template-template-archives-php .archive-box a:hover span { color: #333; }


/* -------------------------------------------------------------------------------- */
/*	13. Widget Area
/* -------------------------------------------------------------------------------- */


.widget-area { padding: 8%; }

.post-inner + .widget-area { border-top: 1px solid #ddd; }

.widget + .widget { margin-top: 50px; }

.widget-title {
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}


/*  Widget content  ----------------------------------------- */


.widget-content {
	color: #555;
	font-size: 0.9em;
	display: inline-block;
    width: 100%;
}

.widget-content .textwidget a:hover { text-decoration: underline; }

.widget-content p {
	line-height: 150%;
	margin-top: 1em;
}

.widget-content p:first-child { margin-top: 0; }

.widget-content li {
	line-height: 140%;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.widget-content ul ul { margin-left: 1em; }

.widget-content ul ul li:first-child { 
	margin-top: 0.5em; 
	border-top: 1px solid #eee;
}

.widget-content > ul > li:first-child { padding-top: 0; }

.widget-content li:last-child { 
	padding-bottom: 0;
	border-bottom: none; 
}


/* Widget text --------------------------------------- */


.widget-content .textwidget { line-height: 150%; }


/* Widget icons --------------------------------------- */


.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_nav_menu li { color: #999; }

.widget_archive li a,
.widget_categories li a,
.widget_meta li a,
.widget_nav_menu li a { color: #333; }

.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_meta li a:hover,
.widget_nav_menu li a:hover { 
	color: #ca2017; 
	text-decoration: none;
}

.widget_archive li:before,
.widget_categories li:before,
.widget_meta li:before,
.widget_nav_menu li:before {
	font: 16px/1 'Genericons';
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	color: #999;
	margin-right: 8px;
	position: relative;
	top: -1px;
}

.widget_archive li:before { content: '\f307'; }
.widget_categories li:before { content: '\f301'; }
.widget_meta li:before { content: '\f445'; }
.widget_nav_menu li:before { content: '\f429'; }


/* Widget RSS --------------------------------------- */


.widget_rss .widget-title a { vertical-align: middle; }

.widget_rss .widget-content ul a.rsswidget { 
	display: block;
	line-height: 120%;
	font-weight: 500;
	color: #444;
}

.widget_rss .widget-content ul a.rsswidget:hover { color: #ca2017; }

.rss-date { 
	display: block;
	margin-top: 2px;
	font-size: 0.85em;
	font-weight: 500;
	color: #999;
}

.rssSummary { 
	margin-top: 5px; 
	color: #666;
}

.widget_rss cite {
	display: block;
	margin-top: 5px;
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

.widget_rss cite:before { content: "— "; }


/* Widget calendar --------------------------------------- */


#wp-calendar {
	width: 100%;
	max-width: 100%;
	color: #888;
	text-align: center;
}

#wp-calendar,
#wp-calendar caption,
#wp-calendar tr,
#wp-calendar td,
#wp-calendar th {
	text-align: center;
}

#wp-calendar th,
#wp-calendar td {
	padding: 4% 2%;
}

#wp-calendar caption,
#wp-calendar thead {
	color: #666;
	border-bottom: 1px solid #eee;
}

#wp-calendar caption {
	font-size: 0.9em;
	font-weight: 700;
	font-style: italic;
	text-transform: capitalize;
	color: #999;
	padding-bottom: 4%;
}

#wp-calendar thead {
	color: #ca2017;
}

#wp-calendar thead th {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9em;
}

#wp-calendar tfoot { border-top: 1px solid #EEE; }
#wp-calendar tfoot td { padding: 0; }
#wp-calendar tfoot #prev { text-align: left; }
#wp-calendar tfoot #next { text-align: right; }

#wp-calendar tfoot a {
	display: block;
	margin-top: 10px;
	font-size: 0.8em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

#wp-calendar tfoot a:hover {
	text-decoration: none;
	color: #333;
}


/* Widget Dribbble & Flickr --------------------------------------- */


.widget_garfunkel_dribbble_widget .dribbble-shot,
.widget_garfunkel_flickr_widget .flickr_badge_image {
	display: inline-block;
	width: 75px;
	height: auto;
	margin: 0 10px 3px 0;
}

.widget_garfunkel_dribbble_widget .dribbble-shot { margin-bottom: 7px; }

.widget_garfunkel_dribbble_widget .dribbble-shot img,
.widget_garfunkel_flickr_widget .flickr_badge_image a,
.widget_garfunkel_flickr_widget .flickr_badge_image img { 
	display: block; 
	border-radius: 3px;
}

.widget_garfunkel_dribbble_widget .dribbble-shot:hover,
.widget_garfunkel_flickr_widget .flickr_badge_image a:hover {
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}


/* Widget recent posts & recent comments --------------------------------------- */


.widget_garfunkel_recent_posts a,
.widget_garfunkel_recent_comments a { display: block; }

.widget_garfunkel_recent_posts .post-icon,
.widget_garfunkel_recent_comments .post-icon {
	display: block;
	float: left;
	width: 50px;
	height: 50px;
	background: #eee;
	border-radius: 999px;
	position: relative;
}

.widget_garfunkel_recent_comments .post-icon .avatar {
	border-radius: 999px;
}

.widget_garfunkel_recent_posts .inner,
.widget_garfunkel_recent_comments .inner {
	margin-left: 65px;
}

.widget_garfunkel_recent_posts .post-icon img { 
	border-radius: 999px; 
}

.widget_garfunkel_recent_posts .post-icon .genericon {
	font-size: 32px;
	height: 32px;
	width: 32px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
	color: #b4b4b4;
}

.widget_garfunkel_recent_posts .title,
.widget_garfunkel_recent_comments .title {
	line-height: 120%;
	font-weight: 700;
	color: #333;
	word-break: break-word;
	-ms-word-break: break-word;
}

.widget_garfunkel_recent_posts .meta {
	margin-top: 3px;
	color: #999;
}

.widget_garfunkel_recent_comments .excerpt {
	margin-top: 3px;
	font-size: 0.9em;
	line-height: 150%;
	color: #999;
}

.widget_garfunkel_recent_posts a:hover .title,
.widget_garfunkel_recent_comments a:hover .title { color: #ca2017; }

.widget_garfunkel_recent_posts a:hover .post-icon,
.widget_garfunkel_recent_comments a:hover .post-icon { background: #ca2017; }
.widget_garfunkel_recent_posts a:hover .post-icon .genericon { color: #fff; }

.widget_garfunkel_recent_posts a:hover .post-icon img,
.widget_garfunkel_recent_comments a:hover .post-icon img {
	opacity: 0.75;
	-moz-opacity: 0.75;
	-webkit-opacity: 0.75;
} 


/* Widget tag cloud --------------------------------------- */


.widget_tag_cloud a {
	display: inline-block;
	padding: 8px 10px;
	margin: 0 1px 4px 0;
	border-radius: 3px;
	background: #eee;
	font-size: 13px !important;
	line-height: 1;
	color: #444;
}

.widget_tag_cloud a:hover {
	background: #ca2017;
	color: #fff;
}


/* -------------------------------------------------------------------------------- */
/*	14. Credits
/* -------------------------------------------------------------------------------- */


.credits {
	margin: 20px 0px 20px 0px;
	padding: 0;
	font-size: 13px;
	background: #000000;
	color: #ebebeb;
	line-height: 150%;
}

.credits p { 
	color: #555; 
	text-align: center;
	line-height: 150%;
}

.credits p a { color: #555; }
.credits p a:hover { color: #fff; }

img#wpstats { display: none; }


/* -------------------------------------------------------------------------------- */
/*	15. No Javascript Fallback
/* -------------------------------------------------------------------------------- */


.no-js .post-container {
	width: 552px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.no-js .archive-nav { display: block; }

.no-js .tab-selector { display: none; }

.no-js .post-meta-tabs .tab {
	display: block !important;
	margin-bottom: 10%;
	border-bottom: 2px solid #ddd;
	padding-bottom: 10%;
}

.no-js .post-meta-tabs .tab:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}









.autormainblurout {
    	position: relative;
    	top: 0;
    	left: 0;
    	width: 100%;
  	height: auto;
	display: block;
	overflow: hidden;
	margin-bottom: 50px;
	z-index: 70;
	background-color: #000000;
}

.autormainblurout::before {
    	content: "";
    	display: block;
    	padding-top: 25%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}


.autormainblurin1 {
    	position: absolute;
    	top: -25%;
    	left: -25%;
    	width: 150%;
  		height: 150%;
		display: block;
		overflow: hidden;
   		background-repeat: no-repeat;
    	background-position: top center;
		background-attachment: absolute;
		background-size: cover;
		background-color: #000000;
    	z-index: 75;
    	opacity: 0.5;
	    filter: blur(3px);
	    -webkit-filter: blur(3px);
	    -moz-filter: blur(3px);
}

.autormainblurin2 {
    	position: absolute;
    	top: 0;
    	left: 0;

    	width: 100%;
  	height: 100%;
	display: block;
	overflow: hidden;

    	z-index: 80;
	float: left;
	padding: 2% 0 2% 0;
	text-align: center;
	color: #ffffff;

}





.autormain {
    	display: block;
    	margin: 0 3% 0 3%;
    	overflow: hidden;
    	float: left;
    	width: 14%;
    	padding: 0;
  	min-height: 270px;
}

.autorall {
    	display: block;
    	margin: 0 3% 0 3%;
    	overflow: hidden;
    	width: 94%;
    	padding: 0;
  	min-height: 270px;
}

.autormap {
    	display: block;
    	margin: 0 3% 0 3%;
    	overflow: hidden;
    	width: 94%;
    	padding: 0;
  	min-height: 270px;
}

.autorimg {
    	display: block;
    	margin: 0 3% 0 0;
    	overflow: hidden;
    	width: 40%;
	float:left;
}



.autorname {
    	width: 100%;
  	line-height: 150%;
	display: block;
	text-align: center !important;
	color: #ffffff;
}

.widget-content .autorname {
    width: 100%;
  	line-height: 150%;
	display: block;
	text-align: center !important;
	color: #000000;
}


.autorname H3 {
	font-size: 22px;
	display: block;
    width: 100%;
	text-align: center !important;
    margin: 0 !important;
}

.autorname p {
	font-size: 15px;
	display: block;
    width: 100%;
	text-align: center !important;
}









.autornameall {
    width: 100%;
  	line-height: 150%;
	display: block;
	text-align: center !important;
	color: #000;
}

.autornameall H3 {
	font-size: 24px;
	display: block;
    width: 100%;
	text-align: left;
    margin: 10px 0 0 0;
}

.autornameall p {
	font-size: 16px;
	display: block;
    	width: 100%;
	text-align: left;
}

.autornameall a {
	font-size: 13px;
  	line-height: 150%;
	display: inline-block;
	text-align: left;
    	padding: 5px 10px 5px 10px;
	float: left;
    	margin: 20px 30px 0 0;
	color: #fff;
    	background-color: #ff0000;

}



.autornameall a:hover {
    	background-color: #ffc600;
}








.autornamemap {
    	width: 100%;
  	line-height: 150%;
	display: block;
	text-align: center !important;
	color: #000;
}

.autornamemap H3 {
	font-size: 24px;
	display: block;
    	width: 100%;
	text-align: center !important;
    	margin: 10px 0 0 0;
}

.autornamemap p {
	font-size: 16px;
	display: block;
    	width: 100%;
	text-align: center !important;
}


.autornamemap a {
	color: #000;
}


.autornamemap a:hover {
    	color: #ff0000;
}






















/* -------------------------------------------------------------------------------- */
/*	Photo album - new
/* -------------------------------------------------------------------------------- */





.photoalbumnew {
	display: inline-block;
	width: 100%;
  	height: 100%;
	vertical-align: top;
	margin: 20px 0px 50px 0px;
	text-align:center;
	padding:0;
	border:0;
        clear: both !important;
}

.photoalbumnew li {
    	position: relative;
    	width: 16%; /* Произвольная ширина, которая требуется для блока */
    	float: left;
    	margin: 2% 4% 2% 0%;
    	overflow: hidden;
	text-align:center;
	list-style:none outside none;
    	border: 1px solid #e0e0e0;
    	background-color: #ffffff;
}

.photoalbumnew li::before {
    content: "";
    display: block;
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.photoalbumnew li:hover {
	border: 1px solid #ff0000; 
}











.photoalbumlong {
	display: inline-block;
	width: 100%;
  	height: 100%;
	vertical-align: top;
	margin: 20px 0px 50px 0px;
	text-align:center;
	padding: 0 1% 0 1%;
	border:0;
        clear: both !important;
}

.photoalbumlong li {
    	position: relative;
    	width: 13%; /* Произвольная ширина, которая требуется для блока */
    	float: left;
    	margin: 2% 1% 2% 1%;
    	overflow: hidden;
	text-align:center;
	list-style:none outside none;
    	border: 1px solid #e0e0e0;
    	background-color: #ffc600;
}

.photoalbumlong li::before {
    content: "";
    display: block;
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.photoalbumlong li:hover {
	border: 1px solid #ff0000; 
}









.photoalbumnewphoto {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover !important; 
}

.photoalbumnewphoto:hover {
    	background-size: 200% auto !important;
	opacity: 0.9;
    	filter: grayscale(1);
    	-webkit-filter: grayscale(1);
    	-moz-filter: grayscale(1);
}







.sidebarpage {
width: 260px;
max-width: 100%;
float:right;
margin: 10px 0px 0px 0px;
display:block;
}




#sideblock1  {
	display: block;
	position: relative;
	top: 0px;
	width: 220px;
} 

#sideblock2  {
	display: block;
	position: relative;
	top: 45px;
	width: 220px;
	z-index: 60
}











/* -------------------------------------------------------------------------------- */
/*	16. Responsive
/* -------------------------------------------------------------------------------- */


@media (max-width: 1100px) {
	
	
	/* Navigation --------------------------------------- */
	
	/* fix submenu hover on touch */
	
	.main-menu li ul {
		opacity: 1;
		display: none;
	}

	.main-menu > li:hover > ul,
	.main-menu ul li:hover > ul { 
		display: block;
	}

.single-post .post-inner { 
	width: 650px;
	max-width: 100%;
}
	
	
}


@media (max-width: 1040px) {

	/* header */
	
.home_first_page .title-section .section-inner { padding: 100px 0; }
.home_first_page .featured-longreed .section-inner { padding: 100px 0; }
.home_first_page .featured-longreed1 .section-inner { padding: 100px 0; }

	
	/* main content */

	.post-container {
		width: 49.75%;
		padding: 0 1.5% 3% 1.5%;
	}
	
	/* single post */
	
	.post-nav-fixed { display: none; }
	
.single-post .post-inner { 
	width: 650px;
	max-width: 100%;
}
			
}


@media (max-width: 1000px) {
	
.autormainblurout::before {
    	padding-top: 30%;
}
	
#sideblock1  {
	width: 100%; 
}
	
#sideblock2  {
	display: none !important; 
}

.photoalbumnew li {
    	width: 17%; 
    	margin: 1% 2% 1% 0%;
}
	
	/* navigation */
	
	.main-menu,
	.navigation .section-inner .menu-social { display: block; }
	

	
	.mobile-menu li { border-top: 1px solid #333; }
	
	.mobile-menu a {
		display: block;
		padding: 25px 8%;
		font-size: 0.9em;
		color: #999;
	}
	
	.mobile-menu a:hover { 
		background: #ca2017; 
		color: #fff;
	}
	
	.mobile-menu ul a { padding-left: 12%; }
	.mobile-menu ul ul a { padding-left: 16%; }
	.mobile-menu ul ul ul a { padding-left: 20%; }
	.mobile-menu ul ul ul ul a { padding-left: 24%; }
	
	.mobile-menu-container .menu-social {
		border-top: 1px solid #333;
		padding: 30px 8%;
	}
	
	.mobile-menu-container .menu-social .menu-items { text-align: center; }
	
	.mobile-menu-container .menu-social li {
		display: inline-block;
		margin: 0 3px;
	}
	
	.mobile-menu-container .menu-social a { background-color: #2d2d2d; }
	.mobile-menu-container .menu-social a:hover { background-color: #ca2017; }

.single-post .post-inner { 
	width: 770px;
	max-width: 100%;
}	
	
	
.widget-area .column { width: 100%; }
	
.sidebarpage {
float: none;
text-align: center;
margin: 30px 0 0 0;
width: 100%;
}	

.widget-area  { 
position: relative;
top: 0;
left: 0;
margin: 0;
float: none;
text-align: center;
}
	
.widget  { 
	float: left;
	width: 220px;
	margin: 10px 10px 0 5px;
}

.widget + .widget {
    margin-top: 10px;
}
	
.socseti {height: 500px;}
.socsetifb {height: 270px;}
.socsetiyb {height: 100px;}

.socsetimob {display: none;}
	
}


@media ( max-width: 900px ) {

.longalbum .glav {
	padding: 5px 0px 5px 0px;
}
	
	
	/* widget area */

.post-content blockquote { font-size: 20px; }
	


.single-post .post-inner { 
	width: 680px;
	max-width: 100%;
}
	
}







@media ( max-width: 800px ) {

	.main-menu,
	.navigation .section-inner .menu-social { display: none; }

.socclear { clear: both; height: 10px; width: 100%; display: block;}

.long-title {
	width: 100% !important;
	font-size: 2em;
    	position: absolute;
    	bottom: 50% !important;
    	left: 0px !important;
}

.long-title H1 {
	width: 100%;
	max-width: 100%;
	font-size: 2em;
    	position: absolute;
    	top: 0px !important;
   	left: 0px !important;
	float: left;
}

.long-title H3 {
     	position: absolute;
    	bottom: 0px !important;
    	left: 0px !important;
	font-size: 1.5em;
}


.wrapper-long p, .wrapper-datas {
	width: 90% !important;
	margin: 0 auto;	
}


.autorname H3 {
	font-size: 1.5em;
}

.autorname p {
	font-size: 12px;
}

.autormainblurout::before {
    	padding-top: 100%;
}

.featured-longreed::before, .featured-longreed1::before {
    padding-top: 50%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.longalbum .longleft, .longalbum .longright {
	float: none !important;
	width: 100% !important;
}

.autormain {
    	margin: 0 1% 0 1%;
    	float: left;
    	width: 31%;
}

.post-content blockquote { font-size: 18px; }

	body { font-size: 12px; }

	/* structure */
	
	.section-inner { max-width: 95%; }
	
	/* header */
	
	.toggle-container {
		position: fixed;
		top: 10px;
		right: 0;
		left: 0;
		text-align: center;
		z-index: 1000;
	}

.toggle-container { display: block; }
	
	.nav-toggle { 
		padding: 12px; 
		display: inline-block;
		position: static;
		top: auto;
		right: auto;
	}
	
	.blog-logo img { max-height: 100px; }
	
	/* title section */
	
	.home_first_page .title-section .section-inner,
	.home_first_page .featured-longreed .section-inner,
	.home_first_page .featured-longreed1 .section-inner,
	.featured-longreed .section-inner, 	.featured-longreed1 .section-inner,
	.title-section .section-inner { padding: 71px 0 66px; }
	
	.bg-image.master,
	.bg-shader.master {
		height: 600px;
	}
	

	/* widget area */
	
	.widget-area .column { width: 100%; }
	
.sidebarpage {
width: 100%;
margin: 0 auto;
}

.single-post .post-inner { 
	width: 800px;
	max-width: 100%;
}
	
	/* post formats */
	
	.single-post .post-quote blockquote { font-size: 1.6em; }
	
	.single-post .post-link p { font-size: 1.6em; }
	
}






@media (max-width: 600px) {

	.main-menu,
	.navigation .section-inner .menu-social { display: none; }

.socclear { clear: none; height: 10px; width: 0px; display: none;}
.socclear1 { clear: both; height: 10px; width: 100%; display: block;}


.photoalbumnew li {
    	width: 21%; 
    	margin: 1% 2% 1% 0%;
}

.longalbum .glav {
	padding: 0px !important;
}

.long-title {
	width: 100% !important;
	font-size: 16px;
    	position: absolute;
    	bottom: 50% !important;
    	left: 0px !important;
}

.long-title H1 {
	width: 100%;
	max-width: 100%;
	font-size: 1.8em;
    	position: absolute;
    	top: 0px !important;
   	left: 0px !important;
	float: left;
}


.long-title H3 {
     	position: absolute;
    	bottom: 0px !important;
    	left: 0px !important;
	font-size: 1.5em;
}

.wrapper-long p, .wrapper-datas {
	width: 95% !important;
	margin: 0 auto;	
	font-size: 16px !important;
}

.wrapper-datas {
	width: 95% !important;
	margin: 0 auto;	
}

.autorname H3 {
	font-size: 16px;
}

.autorname p {
	font-size: 11px;
}

.autormainblurout {display: none !important;}

.autormainblurout::before {
    	padding-top: 100%;
}

.featured-longreed::before, .featured-longreed1::before {
    padding-top: 50%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.longalbum .longleft, .longalbum .longright {
	float: none !important;
	width: 100% !important;
}

.autormain {
    	margin: 0 1% 0 1%;
    	float: left;
    	width: 31%;
}

.post-content blockquote { font-size: 14px; }

	body { font-size: 12px; }

	/* structure */
	
	.section-inner { max-width: 92%; }
	
	.wrapper:before, .wrapper-long:before { 
		top: -25px; 
		height: 225px;
	}


	
	.wrapper-inner { max-width: 100%; }
	
	.posts { 
		max-width: 92%; 
		margin: 0 auto;
	}
	
	/* header */
	
	.toggle-container {
		position: fixed;
		top: 10px;
		right: 0;
		left: 0;
		text-align: center;
		z-index: 1000;
	}

.toggle-container { display: block; }
	
	.nav-toggle { 
		padding: 12px; 
		display: inline-block;
		position: static;
		top: auto;
		right: auto;
	}
	
	.blog-logo img { max-height: 100px; }
	
	/* title section */
	
	.title-section .section-inner,
	.featured-longreed .section-inner,
	.home_first_page .featured-longreed .section-inner,
	.featured-longreed1 .section-inner,
	.home_first_page .featured-longreed1 .section-inner,
	.home_first_page .title-section .section-inner { padding: 64px 0 30px; }
	
	.bg-image.master,
	.bg-shader.master {
		height: 400px;
	}
	
	.blog-title a { font-size: 2em; }
	
	.blog-subtitle { 
		font-size: 1em; 
		margin-top: 15px;
	}
	
	/* main content */

	.post-container {
		width: 100%;
		padding: 0;
		margin-top: 7.5%;
	}
	
	.posts > .post-container:first-child { margin-top: 0; }
	
	/* single post */
	
	.single-post .post-title { font-size: 1.8em; }
	
	.page-links { font-size: 0.9rem; }
	
	.featured-media .media-caption-container { padding: 40px 0 20px; }
	
	/* post formats */
	
	.single-post .post-quote blockquote { font-size: 1.25em; }
	
	.single-post .post-quote cite { margin-top: 20px; }
	
	.single-post .post-link p { font-size: 1.25em; }
	
	.single-post .flex-direction-nav { margin-top: -30px; }
	
	.single-post .flex-direction-nav a { height: 60px; }
	
	/* post content */
	
	.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
		margin: 40px 0 15px 10px;
	}
	
	.post-content h1 { font-size: 1.5em; }
	.post-content h2 { font-size: 1.35em; }
	.post-content h3 { font-size: 1.25em; }	
	.post-content h4 { font-size: 1.1em; }
	.post-content h5 { font-size: 1em; }
	.post-content h6 { font-size: 0.85em; }
	
	.post-content blockquote { padding: 20px; }
	.post-content blockquote p { font-size: 1em; }
	.post-content blockquote cite { font-size: 0.9rem; }

.long-title {
    position: absolute;
    bottom: 50% !important;
    left: 0px;
}

	.post-content hr {
		width: 96px;
		height: 4px;
	}
		
	/* post meta */
	
	.tab-selector a { padding: 10px 12px; }
	
	.tab-selector span { display: none; }
	
	.tab-selector .genericon {
		font-size: 32px;
		height: 32px;
		width: 32px;
	}
	
	.post-meta-tabs-inner { padding: 40px 0; }
	
	/* tab author meta */
	
	.tab-author-meta .avatar { 
		width: 80px; 
		padding: 6px;
	}
	
	.tab-author-meta .author-meta-inner { 
		margin-left: 100px; 
		min-height: 80px;
	}
	
	.tab-author-meta .author-name { font-size: 1.25em; }
	
	.tab-author-meta .one-half {
		width: 100%;
		margin-left: 0;
		float: none;
	}
	
	.author-content,
	.tab-author-meta .one-half + .one-half { margin-top: 40px; }
	
	/* comments */
	
	.comments div.comment { margin-top: 30px; }
	
	.comment .avatar { width: 50px; }
	
	.comment-inner { margin-left: 70px; }
	
	.comment-inner:after {
		border-width: 8px;
		top: 17px;
		margin-left: -16px;
	}
	
	/* respond */
	
	.comment-form input[type="text"], 
	.comment-form input[type="email"], 
	.comment-form textarea {
		padding: 13px 15px;
		font-size: 0.9em;
	}
	
	.comment-form p + p { margin-top: 20px; }
	
	p.comment-form-author, 
	p.comment-form-email {
		width: 100%;
		float: none;
		margin: inherit;
	}
	
	.comment-form textarea { height: 150px; }
	
	.comment-form input[type="submit"] { padding: 12px 16px; }
	
	.form-allowed-tags { font-size: 0.8em; }
	
	/* credits */
	

	
		
}

@media (max-width: 500px) {

	
.longalbum .longleft, .longalbum .longright {
	float: none !important;
	width: 100% !important;
}

.autormainblurout {display: none !important;}
.autormainblurout::before {
    	padding-top: 200%;
}

.autormain {
    	margin: 0 1% 0 1%;
    	float: left;
    	width: 48%;
}

.photoalbumnew li {
    	width: 29%; 
    	margin: 1% 2% 1% 0%;
}

	/* navigation */
	
	.mobile-menu a { padding: 20px 8%; }
	
	/* post content */
	
	.post-content p,
	.post-content blockquote,
	.post-content ul,
	.post-content ol,
	.post-content address,
	.post-content dl,
	.post-content .wp-caption,
	.post-content pre {
		line-height: 150%;
	}
	
	.post-content .alignleft,
	.post-content .alignleft img,
	.post-content .alignright,
	.post-content .alignright img {
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
		max-width: 100%;
	}
	
	/* tab post meta */
	
	.tab-post-meta:after { content: none; }
	
	.tab-post-meta .post-nav,
	.tab-post-meta .post-info-items {
		width: 100%;
		float: none;
		margin: 0;
	}
	
	.post-info-items li { font-size: 1em; }
	
	.tab-post-meta .post-nav { 
		margin-top: 30px;
		border-top: 2px solid #ddd;
		padding-top: 30px;
	}
	
	.tab-post-meta .post-nav a + a {
		margin-top: 15px;
		padding-top: 15px;
	}
	
	.tab-post-meta .post-nav p { font-size: 0.9em; }
	
	.tab-post-meta .post-nav h4 { font-size: 1.2em; }
	
	/* comments */
	
	.comment .avatar { display: none; }
	
	.comment-inner { margin-left: 0; }
	
	.comment-inner:after { content: none; }
	
	.comment-header span { display: none; }
	
	/* respond */
	
	.comment-form p.logged-in-as, 
	.comment-form p.comment-notes {
		margin: -30px 0 25px;
	}
	
	.form-allowed-tags { display: none; }
	
	/* widget area */
	
	.widget-area .column {
		display: block !important;
		float: none;
		width: 100%;
		margin-left: 0;
	}
	
	.widget-area .column + .column,
	.widget + .widget { margin-top: 40px; }
	
	/* credits */
	
	.credits-left { 
		float: none; 
		text-align: center;
	}
	
	.credits-right { display: none; }
	
	
}


@media (max-width: 400px) {

.post-content blockquote { font-size: 12px; }

.longalbum .glav {
	padding: 0px;
}

.long-title H1 {
	max-width: 100%;
	font-size: 1.5em;
}


.long-title H1 {
	max-width: 100%;
	font-size: 1.3em;
}

.long-title {
    position: absolute;
    bottom: 50% !important;
    left: 0px;
	width: 100% !important;
}






.autorname H3 {
	font-size: 14px;
}

.autorname p {
	font-size: 15px;
}

.featured-longreed::before, .featured-longreed1::before {
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.wrapper-long p, .wrapper-datas ul {
    font-size: 14px !important;
}

.longalbum .longleft, .longalbum .longright {
	float: none;
	width: 100% !important;
}

.autormain {
    	margin: 20px 1% 20px 1%;
    	float: none;
    	width: 98%;
}

.autormainblurout {
  	min-height: 550px;
  	height: auto !imoprtant;
	display: none !important;
}

.autormainblurout::before {
    	content: "";
    	display: block;
    	padding-top: 600%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

	/* author */
	
	.tab-author-meta .avatar {
		width: 60px;
		padding: 4px;
	}
	
	.tab-author-meta .author-meta-inner { margin-left: 75px; }


}





.videoprew {
width: 73px;
height: 33px;
position: relative;
z-index: 110;
top: 22px;
left: -10px; 
margin: 0;
padding: 0;
background: url(images/videoSMALL.png);
display:block;
}

.videoprewbigg {
width: 146px;
height: 66px;
position: relative;
z-index: 110;
top: 46px;
left: -20px; 
margin: 0;
padding: 0;
background: url(images/videoBIG.png);
display:block;
}



.tvmenu a {
	color: #ff0000;
}

.tvmenu a:hover {
	color: #ff8f8f;
}







.site-informer {
	float: right;
	width: 100px;
	padding: 20px 0px 10px 0px;
	text-align: center;
	position: relative;
}


.site-info {
	float: left;
	width: 460px;
	padding: 20px 0px 20px 0px;
	margin: 0 10px 0 0;
	position: relative;
	z-index: 101;
	top: 0px;
	left: 5%; 
}


.site-schet {
	float: right;
	width: 460px;
	padding: 20px 0px 20px 0px;
	margin: 0 10px 0 0;
	position: relative;
	z-index: 102;
	top: 0px;
	right: 5%; 
}






.photoalbum {
		width: 700px;
		display:block;
		text-align:center;
		padding:0;
		border:0;
		font-family: Arial;
		font-size: 13px;
		line-height: 18px;
		clear: both !important;
}

.photoalbum li {
		width: 175px;
		height:175px;
		display:block;
		text-align:center;
		float:left;
		list-style:none outside none;
		padding:0;
}



.photoalbum a { 
		width: 175px;
		height:175px; 
}

.photoalbum a img {border: 1px solid #e0e0e0;}	
.photoalbum a img:hover {border: 1px solid #ff0000; opacity: 0.7;}	


.bottt {float: left; margin: 0 20px 0 20px;}	
.bottt a img {border: 1px solid #ffffff;}	
.bottt a img:hover {border: 1px solid #ff0000; opacity: 0.7;}	



.tooltip { /* стиль текста, наведя или нажав на который появится пояснение */
  display: inline-block;
  position: relative;
  text-indent: 0px;
  cursor: help; /* вид курсора */
  font-size: 10px;
  line-height: 10px;
}
.tooltip > span { /* стиль появляющейся подсказки */
  position: absolute;
  bottom: 100%;
  left: -20em; /* = max-width */
  right: -20em; /* = max-width */
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;  /* ширина подсказки может быть не более содержимого */
  max-width: 500px;  /* ширина подсказки может быть не более 20em */
  max-height: 300px; /* необязательное ограничение по высоте подсказки, 1vh — это 1% от ширины окна */
  overflow: auto;
  visibility: hidden;
  margin: 0 auto .4em; /* поднята на .4em над текстом, наведя или нажав на который появится пояснение */
  padding: .3em;
  border: solid rgb(200,200,200);
  background: #fff;
  font-size: 13px;
  line-height: normal;
  cursor: auto;
}

.tooltip.left > span { /* начинается от левого края */
  left: 0;
  right: -20em;
  margin: 0 0 .4em;
}
.tooltip.right > span { /* начинается от правого края */
  left: -20em;
  right: 0;
  margin: 0 0 .4em auto;
}
.tooltip:after { /* треугольничек под подсказкой; тут тоже везде .4em */
  content: "";
  position: absolute;
  top: -.4em;
  left: 50%;
  visibility: hidden;
  margin: 0 0 0 -.4em;
  border: .4em solid;
  border-color: rgb(200,200,200) transparent transparent transparent;
  cursor: auto;
}
.tooltip.left:after {
  left: 1em;
}
.tooltip.right:after {
  left: auto;
  right: .6em; /* 1em - .4em */

}

.tooltip:before { /* поле между текстом, наведя или нажав на который появится пояснение, и подсказкой нужно чтобы, если перевести курсор мышки на подсказку, та не исчезла; тут тоже везде .4em */
  content: "";
  position: absolute;
  top: -.4em;
  left: 0;
  right: 0;
  height: .4em;
  visibility: hidden;
}
.tooltip:hover > span,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus > span,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  transition: 0s .4s;
}
.tooltip:focus { /* убрать рамку в Хроме */
  outline: none;
}
.tooltip.anim > span,
.tooltip.anim:after { /* анимация */
  opacity: 0;
  transform: translateY(1.5em) scale(.3);
  transform-origin: center bottom;
}
.tooltip.anim:after {
  transform: translateY(.7em) scale(.3); /* 1.7 = 1.5 / (1.4*2) */
}
.tooltip.anim:hover > span,
.tooltip.anim:hover:after,
.tooltip.anim:focus > span,
.tooltip.anim:focus:after {
  opacity: 1;
  transition: .6s .4s;
  transform: translateY(0);
}
@media (max-width: 20em) { /* ширина подсказки может быть не более ширины окна браузера */
  .tooltip > span {
    max-width: 100vw; /* в 100vw входит полоса прокрутки, но на мобильных она часто отсутствует */
    box-sizing: border-box;
  }
}


.autoravatar {width:250px; float: left; margin: 0 10px 50px 0; text-align: center;}

@media (max-width: 500px) {
.autoravatar { position: relative; left:50%; top:0px; width:250px; float: none; margin: 0 0 50px -125px;}
}


.autorphoto {
	width: 200px;   	
	height: 200px;
	display: block;
	overflow: hidden;
	border-radius: 50%;
	margin: 50px 25px 50px 25px;
}


.autoradres {padding: 0 20px 0 30px; margin: 10px 0 10px 0;
font-family: Arial;
font-weight: bold;
font-size: 14px;
line-height: 18px;
color: #333;
text-align: left;
}

.imgautor {width:250px; float: left; }







.tooltipss { /* стиль текста, наведя или нажав на который появится пояснение */
  position: relative;
  text-indent: 0px;
}
.tooltipss > span { /* стиль появляющейся подсказки */
  position: absolute;
  bottom: 100%;
  left: -20em; /* = max-width */
  right: -20em; /* = max-width */
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;  /* ширина подсказки может быть не более содержимого */
  max-width: 20em;  /* ширина подсказки может быть не более 20em */
  max-height: 80vh; /* необязательное ограничение по высоте подсказки, 1vh — это 1% от ширины окна */
  overflow: auto;
  visibility: hidden;
  margin: 0 auto .4em; /* поднята на .4em над текстом, наведя или нажав на который появится пояснение */
  padding: .3em;
  border: solid rgb(200,200,200);
  font-size: 90%;
  background: #fff;
  line-height: normal;
  cursor: auto;
}


.tooltipss:before { /* поле между текстом, наведя или нажав на который появится пояснение, и подсказкой нужно чтобы, если перевести курсор мышки на подсказку, та не исчезла; тут тоже везде .4em */
  content: "";
  position: absolute;
  top: -.4em;
  left: 0;
  right: 0;
  height: .4em;
  visibility: hidden;
}
.tooltipss:hover > span,
.tooltipss:hover:before,
.tooltipss:hover:after,
.tooltipss:focus > span,
.tooltipss:focus:before,
.tooltipss:focus:after {
  visibility: visible;
  transition: 0s .4s;
}
.tooltipss:focus { /* убрать рамку в Хроме */
  outline: none;
}
.tooltipss.anim > span,
.tooltipss.anim:after { /* анимация */
  opacity: 0;
  transform: translateY(1.5em) scale(.3);
  transform-origin: center bottom;
}
.tooltipss.anim:after {
  transform: translateY(.7em) scale(.3); /* 1.7 = 1.5 / (1.4*2) */
}
.tooltipss.anim:hover > span,
.tooltipss.anim:hover:after,
.tooltipss.anim:focus > span,
.tooltipss.anim:focus:after {
  opacity: 1;
  transition: .6s .4s;
  transform: translateY(0);
}
@media (max-width: 20em) { /* ширина подсказки может быть не более ширины окна браузера */
  .tooltipss > span {
    max-width: 100vw; /* в 100vw входит полоса прокрутки, но на мобильных она часто отсутствует */
    box-sizing: border-box;
  }
}



.mainautor {
	font-family: Cuprum,sans-serif;
	font-size: 0.75em;
	font-weight: 400;
	text-align: right;
	margin: 0;
	padding: 0;
	float: right;
  	position: relative;
	top: -15px;
	right: 0px;
}

.mainautor a {
	color: #333;
}

.mainautor a:hover {
	color: #ca2017;
}










.scrollimage {
    	position: relative;
    	width: 100%; /* Произвольная ширина, которая требуется для блока */
    	overflow: hidden;
	background-color: #000;
	margin: 1em  0 1em 0;
}

.scrollimage::before {
    	content: "";
    	display: block;
    	padding-top: 40%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.scrollcontent {
    	position: absolute;
    	top: 0;
    	left: 0;
    	bottom: 0;
    	right: 0;
    	opacity: 0,9;
	background-size: cover; /* Растягиваем фон под размеры блока, если требуется */
	display: block;
   	background-repeat: no-repeat;
    	background-position: top center;
	background-attachment: fixed;
    	z-index: 99;
}

.scrolltext {
    	position: absolute;
    	top: 0;
    	left: 0;
    	z-index: 100;
	padding: 0;
	color: #FFF !important;
	font-size: 2em;
	font-family: 'Roboto Slab', serif;
}

.scrolltext p, .scrolltext h2 {
	margin: 10% 10% 0 0;
	padding: 1% 1% 1% 10%;
    display: inline-block;
	width: 121% !important;
}

.scrolltext p.back, .scrolltext h2.back {
	background-color: #000;
	background: rgba(17, 17, 17, 0.75);
}

.scrollimage h2 {
	color: #FFF !important;
}


.bluuur {
    	position: absolute;
    	top: -25%;
    	left: -25%;
    	width: 150%;
    	height: 150%;
    	display: block;
    	overflow: hidden;
    	background-repeat: no-repeat;
    	background-position: center center;
    	background-attachment: fixed;
    	background-size: cover;
    	z-index: 75;
    	opacity: 0.75;
	    filter: blur(10px);
	    -webkit-filter: blur(10px);
	    -moz-filter: blur(10px);
}

.bluuur1 {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 20%;
    	height: 100%;
    	display: block;
		overflow: hidden;
    	background: rgba(17, 17, 17, 0.75);
    	z-index: 70;
    	float: left;
}

.bluuur2 {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 20%;
    	height: 100%;
    	display: block;
		overflow: hidden;
		background-color: #111111;
		backdrop-filter: blur(10px);
    	z-index: 75;
    	opacity: 0.75;
}



.logobluuur {
    	position: absolute;
    	top: 0;
    	left: 0;

    	width: 20%;
  	height: 100%;
	display: block;
	overflow: hidden;

    	z-index: 80;
	float: left;
	padding-top: 1%;
	text-align: center;
	color: #ffffff;
}

.logobluuur img {
    	width: 80%;
}

.logounique {
    	width: 80%;
	display: block;
	margin: 0px 10% 30px 10%;
    	z-index: 80;
	text-align: center;
	color: #ffffff;
}


.shapbg {
    	width: 100%; /* Произвольная ширина, которая требуется для блока */
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
    	overflow: hidden;
	background-color: #000;
	margin: 0;
}

.shapbg::before {
    	content: "";
    	display: block;
    	padding-top: 66.66%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.shapbgin {
    	position: absolute;
    	top: 0;
    	left: 0;
    	bottom: 0;
    	right: 0;
    	opacity: 0,9;
	background-size: cover; /* Растягиваем фон под размеры блока, если требуется */
	display: block;
   	background-repeat: no-repeat;
    	background-position: 50% 50%;
	background-attachment: fixed;
    	z-index: 3;
}


.name600 {
	display: none;
	float: left;
}


@media (max-width: 800px) {
.bluuur1, .logobluuur, .autormainblurout {
	display: none !important;
}

.name600 {
	display: inline-block;
}
}












/* 10.22 contact_form7 */

.wpcf7-form p {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.wpcf7-form p label {
    font-weight: 500;
    font-size: 13px;
    color: #363840;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.wpcf7-form span.wpcf7-list-item-label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.wpcf7-form p i.fa {
    position: absolute;
    top: 50%;
    right: 10px;
    color: #ccd1db;
    font-size: 20px;
    margin-top: -10px;
}

.wpcf7-form p span {
    display: block;
}

.wpcf7-form p span input {
    color: #95979d;
    font-weight: 400;
    border: none;
    background: #f8f8f8;
    width: 100%;
    padding: 15px 10px;
    border: 2px solid #ebebeb;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    line-height: 1.4em;
    transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
}

/* .wpcf7-form p span input:focus {
    border: 2px solid #e45914;
} */

.wpcf7-form p span textarea {
    width: 100%;
    padding: 15px 10px;
    color: #95979d;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    border: none;
    background: #f8f8f8;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 185px;
}

.wpcf7-form p span textarea:focus {
/*    border: 1px solid #e45914; */
    outline: -webkit-focus-ring-color auto 0;
    background: transparent;
}

.wpcf7-form .wpcf7-submit {
    text-transform: uppercase;
    background: #e66423;
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
    width: 100%;
    padding: 16px 10px;
    letter-spacing: 2px;
}

.wpcf7-form .wpcf7-submit:hover, .wpcf7-form .wpcf7-submit:focus {
    background: #000;
	cursor: pointer;
}

.wpcf7-form p.tz_meetup_contact_textarea i.fa {
    top: 20px;
}

.wpcf7-form {
    margin: 48px 0 0;
}

div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ok {
    color: #e45914;
}





/* -------------------------------------------------------------------------------- */
/*	longreed album
/* -------------------------------------------------------------------------------- */



.longalbum {
	display: inline-block;
	width: 80%;
  	height: 100%;
	vertical-align: middle;
	margin: 20px 10% 50px 10%;
}

.longalbum .longleft, .longalbum .longright {
	display: block;
	width: 45%;
	text-align: center;
	vertical-align: middle;
  	height: 100%;
}

.longalbum .glav {
	margin: 0;
	padding: 10px 0px 10px 0px;
}

.longalbum .longleft {
	float:left;
}

.longalbum .longright {
	float: right;
}


.longalbumsingle {
    position: relative;
    width: 30%; /* Произвольная ширина, которая требуется для блока */
    float: left;
    margin: 1% 0% 1% 2%;
    background-color: #fff;
    overflow: hidden;
}
.longalbumsingle::before {
    content: "";
    display: block;
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}
.longalbumphoto {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover !important; /* Растягиваем фон под размеры блока, если требуется */
}

.longalbumphoto:hover {
    	background-size: 200% auto !important;
    	opacity: 0.9;
    	filter: grayscale(1);
    	-webkit-filter: grayscale(1);
    	-moz-filter: grayscale(1);
}














.longalbumsingleshort1, 
.longalbumsingleshort2, 
.longalbumsingleshort3, 
.longalbumsingleshort4 {
    position: relative;
    float: left;
    background-color: #fff;
    overflow: hidden;
}

.longalbumsingleshort1 {
    width: 98%; 
    margin: 1% 1% 1% 1% !important;
}

.longalbumsingleshort2 {
    width: 48%; 
    margin: 1% 1% 1% 1% !important;
}

.longalbumsingleshort3 {
    width: 31%; 
    margin: 1% 1% 1% 1% !important;
}

.longalbumsingleshort4 {
    width: 23%; 
    margin: 1% 1% 1% 1% !important;
}

.longalbumsingleshort1::before, 
.longalbumsingleshort2::before, 
.longalbumsingleshort3::before, 
.longalbumsingleshort4::before {
    content: "";
    display: block;
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}










.desktop { display: block; }
.mobile { display: none; }

@media (max-width: 600px) {
.desktop { display: none; }
.mobile { display: block; }
}



.longalbumphotoshort {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	text-align: center ;
  	-webkit-transition: all 1s ease;
 	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
  	-o-transition: all 1s ease;
  	transition: all 1s ease;
}

.longalbumphotoshort:hover {
  	top: -15%;
  	left: -15%;
  	bottom: -15%;
  	right: -15%;
  	opacity: 0.9;
  	filter: grayscale(1);
  	-webkit-filter: grayscale(1);
  	-moz-filter: grayscale(1);
}

.longalbumphotoshort img {
	object-fit: cover !important;
	-o-fit-object: cover;
	object-position: 50% 50%;
	min-width: 100% !important;
	min-height: 100% !important;
}















.autoriconout {
    position: relative;
    width: 80%; /* Произвольная ширина, которая требуется для блока */
    margin: 0 10% 0 10%;
    border-radius: 50%;
}

.autoriconout::before {
    content: "";
    display: block;
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.autoriconin {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 50%;
    background-size: cover !important; /* Растягиваем фон под размеры блока, если требуется */
    background-position: 50% 50%;
}

.autoriconin:hover {
    opacity: 0.8;
	background-color: #000;
	
    	/* -webkit-filter: blur(3px); */
    	/* -moz-filter: blur(3px); */
    	/* filter: blur(3px); */

    	/* filter: grayscale(1); */
    	/* -webkit-filter: grayscale(1); */
    	/* -moz-filter: grayscale(1); */
}

.profilelink {
	width: 100%;
	height: 100%;
}

.profilelink:hover { 
	text-decoration: none; 
}

.block-info {
	position: relative;
	overflow: hidden;
	top: 20px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.block-info .soclink {
	position: absolute;
	top: 50%;
	left: -20px !important;
	min-width: 50px;
	max-width: 50px;
	display: inline-block;
	transition: left .2s linear;	
	list-style: none outside none;
	margin: 0;
	padding: 0;
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.block-info:hover .soclink {
  left: 10px !important;
}

.block-info .soclink_right {
  position: absolute;
  top: 50%;
  right: -20px !important;
  width: 50px;
  height: 300px;
  display: block;
  transition: right .2s linear;	
}

.block-info:hover .soclink_right {
  right: 10px !important;
}

.block-info .soclink li, .block-info .soclink_right li {
		margin: 0 0 10px 0;
}

.soclink_horizontal {
	position: relative;
	top: 30px !important;
	left: 410px !important;
	min-height: 50px;
	max-height: 50px;
	display: inline-block;
	transition: left .2s linear;	
	list-style: none !important;
	margin: 0 !important;
	padding: 0;
}

.soclink_horizontal li {
	float: left;
	width: 38px;
	height: 38px;
	display: block !important;
	border-radius: 50%;
	text-align: center;
	line-height: 38px;
	margin: 0 15px 0 0;
}

.soclink_horizontal a {
	width: 36px;
	height: 36px;
	display: block !important;
	border-radius: 50%;
	text-align: center;
	line-height: 34px;	
	margin: 0;
}

.soclink_horizontal a {
	outline: none;
	text-decoration: none !important;
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.soclink_horizontal .jointg_user {
    border: 1px solid #0088cc;
    color: #fff !important;
    background-color: #0088cc !important;
}

.soclink_horizontal .jointg_user:hover {
    color: #0088cc !important;
    background-color: #fff !important;
}

.soclink_horizontal .jointg_user:hover::before {
    color: #0088cc !important;
}

.soclink_horizontal .joinfacebook_user {
    border: 1px solid #28457f;
    color: #fff !important;
    background-color: #28457f !important;
}

.soclink_horizontal .joinfacebook_user:hover {
    color: #28457f !important;
    background-color: #fff !important;
}

.soclink_horizontal .joinfacebook_user:hover::before {
    color: #28457f !important;
}

.soclink_horizontal .jointwitter_user {
    border: 1px solid #000000;
    color: #fff !important;
    background-color: #000000 !important;
}

.soclink_horizontal .jointwitter_user:hover {
    color: #000000 !important;
    background-color: #fff !important;
}

.soclink_horizontal .jointwitter_user:hover::before {
    color: #000000 !important; 
}	

.soclink_horizontal .joininstagram_user {
    border: 1px solid #fff;
    color: #fff !important;
    background: linear-gradient(to top right, #ffb04d, #a731bf) !important;
}

.soclink_horizontal .joininstagram_user:hover {
    border: 1px solid #9f32c1;
    color: #9f32c1 !important;
    background: #fff !important;
}

.soclink_horizontal .joininstagram_user:hover::before {
    color: #9f32c1 !important;
}


.soclink_horizontal .joinok_user {
    border: 1px solid #f58220;
    color: #fff !important;
    background-color: #f58220 !important;
}

.soclink_horizontal .joinok_user:hover {
    color: #f58220 !important;
    background-color: #fff !important;
}

.soclink_horizontal .joinok_user:hover::before {
	color: #f58220 !important; 
}

.soclink_horizontal .joinvk_user {
    border: 1px solid #5181b8;
    color: #fff !important;
    background-color: #5181b8 !important;
}

.soclink_horizontal .joinvk_user:hover {
    color: #5181b8 !important;
    background-color: #fff !important;
}

.soclink_horizontal .joinvk_user:hover::before {
    color: #5181b8 !important;
}

.soclink_horizontal .joinyoutube_user {
    border: 1px solid #ff0000;
    color: #fff !important;
    background-color: #ff0000 !important;
}

.soclink_horizontal .joinyoutube_user:hover {
    color: #ff0000 !important;
    background-color: #fff !important;
}

.soclink_horizontal .joinyoutube_user:hover::before {
    color: #ff0000 !important;
}

.soclink_horizontal .joinku_user {
    border: 1px solid #0094a9;
    color: #fff !important;
    background-color: #0094a9 !important;
	font-family: "FontAwesome" !important;
}

.soclink_horizontal .joinku_user:hover {
    color: #0094a9 !important;
    background-color: #fff !important;
}

.soclink_horizontal .joinku_user:hover::before {
    color: #0094a9 !important;
}

.soclink_horizontal .joinmoimir_user {
    border: 1px solid #005FF9;
    color: #FF9E00 !important;
    background-color: #005FF9 !important;
	font-family: "FontAwesome" !important;
}

.soclink_horizontal .joinmoimir_user:hover {
    color: #005FF9 !important;
    background-color: #fff !important;
}

.soclink_horizontal .joinmoimir_user:hover::before {
    color: #005FF9 !important;
}

.soclink_horizontal .userpoststab {
	display: inline-block !important;
	float: left;
	width: auto;
	min-height: 38px;
	border-radius: 19px;
	text-align: center;
	line-height: 38px;
	margin: 0 15px 0 0;
	font-family: 'Open Sans', sans-serif;
}

.soclink_horizontal .userpoststab a {
    color: #fff !important;
    background-color: #666 !important;
	display: inline-block !important;
	border: 1px solid #666;
	width: auto;
	min-height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 20px;
	padding: 0 20px;
	font-family: 'Open Sans', sans-serif;
}

.soclink_horizontal .userpoststab a:hover {
	color: #ff0000 !important;
    background-color: #ffffff !important;
}



.social ul li {
	float: right;
	margin-right: 10px;
	list-style: none outside none;
}

.profilelink .soclink li a {
	display:block; 
	height: 24px; 
	width: 24px; 
	font-size: 20px; 
	line-height: 24px;}

.profilelink .soclink li a:hover {
	color: #ebebeb; 
	text-decoration: none; 
}





.wind {
    	position: relative;
    	width: 100%; /* Произвольная ширина, которая требуется для блока */
    	float: left;
    	margin: 0 0 50px 0;
    	background-color: #ffc600;
    	overflow: hidden !important;
}

.wind::before {
    	content: "";
    	display: block;
    	padding-top: 35%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.windtextback {
    	position: absolute;
    	display: block;
    	width: 100%; /* Произвольная ширина, которая требуется для блока */
  	height: 100%;
    	top: 0;
    	left: 0;
    	bottom: 0;
    	right: 0;
  	z-index: 100;
	text-align: center;
  	background: #000;
    	opacity: 0.5;
}

.windtext {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	line-height: 34px;
	text-align: center;
    	display: inline-block;
  	z-index: 150;
}

@media (max-width: 900px) {
.windtext {
	font-size: 20px;
	line-height: 24px;
}
}

@media (max-width: 600px) {
.windtext {
	font-size: 12px;
	line-height: 16px;
}
}

.video-background {
  	background: #000;
  	position: absolute;
  	z-index: 10;
  	top: 0; right: 0; bottom: 0; left: 0;
}

.video-background iframe {
  	position: absolute;
  	top: 0;
  	left: 0;
	right: 0;
	bottom: 0;
  	width: 100% !important;
  	height: 100% !important;
  	pointer-events: none;
}

.video-foreground {
  	position: absolute;
  	top: -100%;
  	left: 0;
	right: 0;
	bottom: 0;
  	width: 100%;
  	height: 300%;
  	pointer-events: none;
}


@media all and (max-width: 600px) {
	.vid-info { width: 50%; padding: .5rem; }
	.vid-info h1 { margin-bottom: .2rem; }
}
@media all and (max-width: 500px) {
	.vid-info .acronym { display: none; }
}





.bgvideo {
  	position: absolute;
  	top: 0;
  	left: 0;
  	z-index: 1;
  	width: 100%;
  	height: 100%;
  	overflow: hidden;
	.screen {
    	position: absolute;
    	top: 0;
    	right: 0;
    	bottom: 0;
   	left: 0;
    	z-index: 1;
    	margin: auto;
    	opacity: 0;
    	transition: opacity .5s;
    &.active {
      	opacity: 1;
    }
  }
}



.prices {
	border-spacing:2px;
	margin:0 0 20px;
	font-size:110%
}

.prices td {
	border-bottom:1px solid #E2E2E2;
	border-top:1px solid #E2E2E2;
	border-left:0;
	border-right:0;
	line-height:14px; 
	text-align:center; 
	padding:10px 0;
}

.titleTable {
	background-color:#656565;
	color:#FFF;
	position:relative;
	font-size:15px;
	font-weight:700;
	line-height:16px;
}

.prices td.titleBlock {
	background:#DADADA !important;
	font-size:110%;
	padding-top:6px; 
	text-align:center; 
	font-weight:700;
}













.pricesleft {
	border-spacing:2px;
	margin:0 0 20px;
	font-size:100%
}

.pricesleft td.titleTable {
	background-color:#000000 !important;
	color:#FFF;
	position:relative;
	font-size:15px;
	font-weight:700;
	line-height:16px;
	text-align:center;
}

.pricesleft td {
	border-bottom:1px solid #E2E2E2;
	border-top:1px solid #E2E2E2;
	border-left:0;
	border-right:0;
	line-height:15px; 
	text-align:left; 
	padding:10px 0;
}

.pricesleft td.titleBlock {
	background:#DADADA !important;
	font-size:110%;
	padding-top:6px; 
	text-align:center; 
	font-weight:700;
}








.zero {
	display: block;
	background: #000000;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
  	width: 100px;
  	height: 65px;
}



.money {
  	width: 80%;
  	height: 100px;
  	line-height: 1;
	font-size: 1.2em;
	font-family: 'Roboto Slab', serif;
	margin: 0 10% 0 10%;
	padding: 20px 0 0 230px; 
}

.halykbank {background:url(images/halykbank.png) 0 0 no-repeat}
.qiwimoney {background:url(images/qiwimoney.png) 0 0 no-repeat}
.yamoney {background:url(images/yamoney.png) 0 0 no-repeat}
.webmoney {background:url(images/webmoney.png) 0 0 no-repeat}


.downloadout {
  	width: 100%;
  	height: 100px;
	text-align: center; 
	margin: 20px 0 20px 0;
	display: block;	
    padding: 0 0 0 50%;
}

.download {
  	width: 325px;
  	height: 100px;
  	background:url(images/download.png) 0 0 no-repeat;
	margin: 0 0 0 -162px;
	padding: 0; 
	display: block;
}





.zayav {
  	width: 50%;
  	line-height: 50px;
	font-size: 1.5em;
	font-family: 'Roboto Slab', serif;
	margin: 0 10% 0 10%;
	padding: 0; 
	background: ffffff;
}

.zayav tr {
	border: 0 0 1px 0;
	background: ffffff;
}

.zayav td {
  	width: 50%;
	background: ffffff;
	line-height: 50px;
 	padding: 0 0 0 20px !important;
	font-size: 1.2em;
	font-family: 'Roboto Slab', serif;
}







.featured-media .advertblack { 
	background-color: #fff;
}

.featured-media .advertwhite, .advert { 
	background-color: #000;
}




.advertblack, .advertwhite, .advert  {
    	position: relative;
    	width: 100%; /* Произвольная ширина, которая требуется для блока */
    	overflow: hidden;
		margin: 0;
		display: block;
}

.advertblack::before, .advertwhite::before, .advert::before {
    	content: "";
    	display: block;
    	padding-top: 150%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.advertblack img, .advertwhite img, .advert img  { 
	min-width: 100%;
	min-height: 100%;
	margin: 0 0 0 0;
  	-webkit-transition: all 2s ease;
 	-moz-transition: all 2s ease;
	-ms-transition: all 2s ease;
  	-o-transition: all 2s ease;
  	transition: all 2s ease;
}

.advertblack:hover img, .advertwhite:hover img, .advert:hover img {
    min-width: 120% !important;
	min-height: 120% !important;
	margin: -10% 0 0 -10%;
}

.advertblack:hover .presentdtlogo img, .advertwhite:hover .presentdtlogo img, .advert:hover .presentdtlogo img {
    min-width: 100% !important;
	min-height: 100% !important;
	margin: 0 0 0 0;
}











.featured-media .advertsnowblack { 
	background-color: #fff;
}

.featured-media .advertsnowwhite, .advert { 
	background-color: #000;
}

.advertsnowblack, .advertsnowwhite, .advertsnow  {
    	position: relative;
    	width: 100%; /* Произвольная ширина, которая требуется для блока */
    	overflow: hidden;
		margin: 0;
		display: block;
    z-index: 98;
	background-size: 150% auto;
   	background-repeat: no-repeat;
    background-position: center center;
    transition: all 3s;
    -moz-transition: all 3s;
    -webkit-transition: all 3s;
    -o-transition: all 3s;
}

.advertsnowblack::before, .advertsnowwhite::before, .advertsnow::before {
    	content: "";
    	display: block;
    	padding-top: 150%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.advertsnowblack:hover, .advertsnowwhite:hover, .advertsnow:hover  {
	background-size: 100% auto;
}

.advertsnowin {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.1;
	background-size: 200% auto;
  	-webkit-transition: all 4s ease-in-out;
  	-moz-transition: all 4s ease-in-out;
	-ms-transition: all 4s ease-in-out;
  	-o-transition: all 4s ease-in-out;
  	transition: all 4s ease-in-out;
	display: block;
   	background-repeat: no-repeat;
    background-position: center center;
    z-index: 99;
}

.advertsnowin:hover {
	opacity: 0.8;
    background-position: center center;
	background-size: 110% auto;
}


.advertin {
    	position: absolute;
    	top: 0;
    	left: 0;
    	bottom: 0;
    	right: 0;
    	opacity: 1;
		z-index: 99;
  	-webkit-transition: all 3s ease;
  	-moz-transition: all 3s ease;
	-ms-transition: all 3s ease;
  	-o-transition: all 3s ease;
 	 transition: all 3s ease;
	background-size: cover; /* Растягиваем фон под размеры блока, если требуется */
    background-size: 100% auto !important;
  	-webkit-transition: all 2s ease;
  	-moz-transition: all 2s ease;
	-ms-transition: all 2s ease;
  	-o-transition: all 2s ease;
  	transition: all 2s ease;
	display: block;
    background-position: center center;
}

.advertin:hover {
    	background-size: 150% auto !important;
	opacity: 0.7;
    	background-position: center center;
}


.attention {
	list-style: none outside none;
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1000;
}

.attention li {
	list-style: none outside none;	
	display: block;
	margin: 0 0 10px 0;
	height: 30px;
	min-width: 30px;
	border-radius: 15px;
	line-height: 30px;
	font-size: 15px;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	background: #000;
	font-weight: 700;
	font-family: "Font Awesome 6 Free";
	opacity: 0.5;
}

.attvideo { }
.attvideo::before {
	content: "\f008";
}

.attbook { }
.attbook::before {
	content: "\f518";
}

.attphotos { }
.attphotos::before {
	content: "\f302";
}

.attphotovideo { }
.attphotovideo::before {
	content: "\f87c";
}

.attmap { }
.attmap::before {
	content: "\f279";
}












.post-container .post-title {
	font-size: 1.6em;
	line-height: 120%;
	font-weight: 700;
	margin-bottom: 10px;
	color: #222;
	word-break: break-word;
	-ms-word-break: break-word;
}

.post-container .post-inner { padding: 10%; }

/* ftaccordion */

.ftaccordion a, .accordion a {
 	color:#000000;
}

.ftaccordion a:hover, .accordion a:hover {
 	color:#ff0000;
}

.ftaccordion .icon, .accordion .icon {
 	float: right;
	height: 40px;
	width: 40px;
	border: 1px #ebebeb solid
}

.ftaccordion .ac-click,
.accordion .ac-click{
	background-color: #f5f5f5;
	background-image: url(images/ac-arrows.png);
	background-repeat: no-repeat;
	background-position: 10px 16px;
    border: 0px solid;
    padding: 0px 0px 0px 35px;
	margin: 1px 0;
    position: relative;
    text-decoration: none;
	display: block;
	cursor: pointer;
	line-height: 40px;
	height: 40px;
	display: block;
font-family: 'Cuprum', sans-serif !important;
font-size: 15px;
}
.ftaccordion .ac-wrapper.open > .ac-click,
.accordion .ac-wrapper.open > .ac-click{
	background-position: 10px -41px;
}
.ftaccordion .ac-container,
.accordion .ac-container {
    background: #ffffff;
    border-radius: 0 0 5px 5px;
    padding: 15px 0 15px 20px;
	margin: -6px 0 0;
 	color:#000000;

}

.red {
 	color:#ff0000 !important;
}

.taglink {color: #001f6e !important;}
.taglink a {color: #001f6e !important;}

/* ftaccordion AND*/


/* .headersearch:before { */
/* 	content: "\f002"; */
/* 	font-family: FontAwesome; */
/* } */




.joinme {
    display: inline-block;
	width: 100%;
    margin: 10px 0 10px 0;
    padding: 30px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    cursor: pointer;
}

.joinme .joinikon {
    display: block;
    position: relative;
    width: 38px;
    top: 0;
    left: 0;
    float: left;
	font-family: FontAwesome;
	line-height: 1;
}

.joinme .joinikon::before {
	font-size: 38px;
	line-height: 1;
}

.joinme span {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    margin: 5px 0 0 65px;
    line-height: 20px;
	font-size: 20px;
}

@media screen and (max-width: 1000px){
.joinme span {
    margin: 0 0 0 65px;
    line-height: 20px;
	font-size: 18px;
}

.joinme .joinikon::before {
	font-size: 30px;
	line-height: 1;
}
}

@media screen and (max-width: 800px){
.joinme span {
    margin: 0 0 0 65px;
    line-height: 18px;
	font-size: 14px;
}

.joinme .joinikon::before {
	font-size: 26px;
	line-height: 1;
}
}

.jointg {
    border: 2px solid #0088cc;
    color: #fff !important;
    background-color: #0088cc !important;
}

.jointg:hover {
    color: #0088cc !important;
    background-color: #fff !important;
}

.joinfacebook {
    border: 2px solid #28457f;
    color: #fff !important;
    background-color: #28457f !important;
}

.joinfacebook:hover {
    color: #28457f !important;
    background-color: #fff !important;
}

.jointwitter {
    border: 2px solid #000000;
    color: #fff !important;
    background-color: #000000 !important;
}

.jointwitter:hover {
    color: #000000 !important;
    background-color: #fff !important;
}

.joininstagram {
    border: 2px solid #fff;
    color: #fff !important;
    background: linear-gradient(to top right, #ffb04d, #a731bf) !important;
}

.joininstagram:hover {
    border: 2px solid #9f32c1;
    color: #9f32c1 !important;
    background: #fff !important;
}

.joinok {
    border: 2px solid #f58220;
    color: #fff !important;
    background-color: #f58220 !important;
}

.joinok:hover {
    color: #f58220 !important;
    background-color: #fff !important;
}

.joinvk {
    border: 2px solid #5181b8;
    color: #fff !important;
    background-color: #5181b8 !important;
}

.joinvk:hover {
    color: #5181b8 !important;
    background-color: #fff !important;
}

.joinyoutube {
    border: 2px solid #ff0000;
    color: #fff !important;
    background-color: #ff0000 !important;
}

.joinyoutube:hover {
    color: #ff0000 !important;
    background-color: #fff !important;
}

/*.fa-facebook:before { */
/*  content: "\f09a";*/
/*}*/

/*.fa-ok:before {*/
/*  content: "\f263";*/
/*}*/

/*.fa-twitter:before {*/
/*  content: "\e61b";*/
/*}*/

/*.fa-vk:before {*/
/*  content: "\f189";*/
/*}*/

/*.fa-instagram:before {*/
/*  content: "\f16d";*/
/*}*/

/*.fa-tg:before {*/
/*  content: "\f1d8";*/
/*}  */

/*.fa-ok:before {*/
/*  content: "\f263";*/
/*}*/

/*.fa-youtube-play:before {*/
/*  content: "\f16a";*/
/*}*/







.snowimage {
    position: relative;
    width: 100%; /* Произвольная ширина, которая требуется для блока */
    overflow: hidden;
	margin: 1em  0 1em 0;
	background-size: 150% auto;
   	background-repeat: no-repeat;
    background-position: center center;
	background-attachment: fixed;
    z-index: 98;
    transition: all 6s;
    -moz-transition: all 6s;
    -webkit-transition: all 6s;
    -o-transition: all 6s;
}

.snowimage::before {
    content: "";
    display: block;
    padding-top: 40%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.snowimage:hover {
	background-size: 100% auto;
}

.snowcontent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.2;
	background-size: 200% auto;
	display: block;
   	background-repeat: no-repeat;
    background-position: center center;
	background-attachment: fixed;
    z-index: 99;
    transition: all 10s;
    -moz-transition: all 10s;
    -webkit-transition: all 10s;
    -o-transition: all 10s;
}

.snowcontent:hover {
	background-size: 100% auto;
    opacity: 0.9;
}

.snowtext {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
	padding: 0;
	color: #FFF;
	font-size: 2em;
	font-family: 'Roboto Slab', serif;
}

.snowtext p {
	margin: 10% 10% 0 0;
	padding: 1% 1% 1% 10%;
    display: inline-block;
	width: 100% !important;
}

.snowtext p.back {
	background-color: #000;
	background: rgba(17, 17, 17, 0.75);
}

.featured-autor {
	width: 100%;
	margin: -0;
	overflow: hidden;
	display: block;
   	background-repeat: no-repeat;
    	background-position: 50% center;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	top: 0px;
	z-index: 3;
}

.featured-autor::before {
    content: "";
    display: block;
    padding-top: 30%; /* С помощью этого padding мы задаем высоту равную ширине блока */
	background: rgba(17, 17, 17, 0.75);
}

.logobluuurautor {
   	position: absolute;
   	top: 50px;
   	left: 0;
   	width: 300px;
	display: block;
	overflow: hidden;
   	z-index: 80;
	float: left;
	text-align: center;
	color: #ffffff;
	margin: 0 0 0 50px;
}
.logobluuurautor img {
    	width: 80%;
}

.long-title-autor, .long-title-stat {
	margin: 0;
	width: 100%;
	padding: 0 0 20px 400px;
	left: 0px;
	display: block;
}

.long-title-autor {
	color: #ffffff;
	background: rgba(17, 17, 17, 0.10);
	position: absolute;
	bottom: 0;
}

.long-title-autor  H1 {color: #ffffff;}

.long-title-stat {
	color: #000000;
	background: rgba(255, 255, 255, 0.10);
	position: relative;
	top: 30px;
}

.long-title-stat h3 {
	color: #000000;	
	position: relative;	
	top: 0;
	left: 0;	
	margin: 20px 0 0 0;
	font-size: 1em;
}

.long-title-autor-mob, .long-title-autor-mob H1 {
	display: none;
}


.autornew {
	position: relative;	
	top: 0;
	left: 0;
	width: 400px;
	display: block;
	z-index: 2000;
	margin: -150px 0 -120px 0;
}

.autoriconoutpage {
    position: relative;
    width: 60%; /* Произвольная ширина, которая требуется для блока */
    margin: 0 20% 0 20%;
    overflow: visible;
    border-radius: 50%;
	border: 10px #fff solid;
}

.autoriconoutpage::before {
    content: "";
    display: block;
    padding-top: 100%; /* С помощью этого padding мы задаем высоту равную ширине блока */
}

.autoriconinpage {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 50%;
    background-size: cover !important; /* Растягиваем фон под размеры блока, если требуется */
    background-position: 50% 50%;
}

.user_content {
	margin: 50px 10% 50px 10%;
	max-width: 80%;
	display: block;
}




/* Карта */

#map {
	width: 100%; height: 500px; padding: 0; margin: 50px 0 50px 0;
}

.mapuser {
	display: inline-block;
	/* width: 340px; */
	text-align: center;
	padding: 20px;
}

.mapteg {
	display: block;
	position: absolute;
	overflow: visible;
	z-index: 1000;
}

.mapteg:hover {
	background: rgba(0, 170, 238, 0.9);
}

.mapteg .mapuser {
	display: none;
	position: absolute;
	left: 50%;
	margin-left: -190px;
	top: 0;
	z-index: 2000;
}

.mapteg:hover .mapuser {
	display: inline-block;
}

.mapava {
	border: 3px solid #f56048;
	overflow: hidden;
	width: 185px;
	height: 185px;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	display: block;
	margin: 0 auto;
}

.mapava span {
	border: 5px solid #ffffff;
	overflow: hidden;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	display: block;
}

.mapava img {
	border-radius: 50%;
	width: 171px;
	height: 171px;

}

.mapname, .mapname H3 {
	font-family: "Roboto", Arial, Tahoma, sans-serif;
	color: #242732;
	line-height: 1em;
	font-weight: 700;
	font-size: 24px;
	width: 100%;
	text-align: center;
}

.mapname H3 {
	margin: 10px 0 10px 0 !important;
}

.mapdescription {
	color: #646569;
	margin: 5px 0 0;
	line-height: 1.5em;
	font-family: "Open Sans", Arial, Tahoma, sans-serif;
	font-weight: 300;
	font-size: 14px;
	width: 100%;
	text-align: center;
}

/* Карта */

	.leaflet-container {
		height: 500px;
		width: 100%;
		max-width: 100%;
		max-height: 100%;
	}

/* Отметки-карта */

.phototooltipmap {
	width: 100%;
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 1);
	box-sizing: padding-box;
	margin: 0;
	z-index: 2000;
	cursor: pointer;
}

.photoavamap {
	border: 3px solid #f56048;
	overflow: hidden;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	display: block;
	margin: 0 120px 0 120px;
}

.photoavamap span {
	border: 5px solid #ffffff;
	overflow: hidden;
	width: 115px;
	height: 115px;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	display: block;
}

.photoavamap img {
	border-radius: 50%;
	width: 106px;
	height: 106px;

}

.photonamemap {
	font-family: "Roboto", Arial, Tahoma, sans-serif;
	color: #242732;
	line-height: 1em;
	font-weight: 300;
	font-size: 20px !important;
	width: 100%;
	text-align: center;
	margin: 20px 0 20px 0;
	position: relative;
}

.nodisplay {
	display: none;
}

/* Отметки-карта */

/* Отметки */

.photouser {
	display: inline-block;
	width: 500px;
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 1);
	position: absolute;
	border-radius: 10px;
	box-shadow: 0 0 8px rgba(0,0,0,0.25);
	box-sizing: padding-box;
	left: 50%;
	margin: -80px 0 0 -250px;
	top: 50%;
	z-index: 2000;
	cursor: pointer;
}

.phototooltip {
	display: none;
	width: 500px;
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 1);
	position: absolute;
	border-radius: 10px;
	box-shadow: 0 0 8px rgba(0,0,0,0.25);
	box-sizing: border-box;
	margin: 0 0 0 -250px;
	z-index: 2000;
	cursor: pointer;
	min-height: 160px;
}

.phototeg {
	display: block;	
}

.phototrigger {
	position: absolute;
	overflow: visible;
	z-index: 1000;
	cursor: pointer;
}

.phototrigger:hover {
	background: rgba(0, 0, 0, 0.25);
}

.phototrigger .photouser {
	display: none;
	transition: 2s;
}

.phototrigger:hover .photouser {
	display: inline-block;
	transition: 2s;
}

.photoava {
	border: 3px solid #f56048;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	display: block;
	margin: 0 20px 0 0;
	float: left;
	position: absolute;
}

.photoava span {
	border: 5px solid #ffffff;
	overflow: hidden;
	width: 115px;
	height: 115px;
	border-radius: 50%;
	box-sizing: border-box;
	text-align: center;
	display: block;
}

.photoava img {
	border-radius: 50%;
	width: 106px;
	height: 106px;

}

.photoname {
	font-family: "Roboto", Arial, Tahoma, sans-serif;
	color: #242732;
	line-height: 1em;
	font-weight: 300;
	font-size: 20px !important;
	width: 335px;
	text-align: left;
	margin: 10px 0 20px 140px;
	position: relative;
}

.photodescription, .sciencedescriotion, .photodescriptionnew {
	color: #646569;
	margin: 5px 0 0 185px;
	line-height: 1.5em;
	font-family: "Open Sans", Arial, Tahoma, sans-serif;
	font-weight: 300;
	font-size: 14px;
	width: 260px;
	text-align: left;
	position: relative;
	cursor: pointer;
}

.photodescriptionpage, .sciencedescriotionpage {
	color: #646569;
	font-family: "Open Sans", Arial, Tahoma, sans-serif;
	font-weight: 300;
	font-size: 100%;
	text-align: left;
	position: relative;
	width: 80%;	
	margin: 0 auto !important;	
}

.photodescriptionmap, .sciencedescriotionmap {
	color: #646569;
	margin: 5px 0 0 40px;
	line-height: 1.5em;
	font-family: "Open Sans", Arial, Tahoma, sans-serif;
	font-weight: 300;
	font-size: 14px;
	width: calc(100% - 40px);
	text-align: left;
	position: relative;
}

.photodescription:before, .sciencedescriotion:before, .photodescriptionnew:before,
.photodescriptionmap:before, .sciencedescriotionmap:before,
.photodescriptionpage:before, .sciencedescriotionpage:before {
	width: 20px;
	height: 25px;
	font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 32px;
    display: inline-block;
	margin: 0;
	position: absolute;
    left: -40px;
	top: 0px;
}

.photodescription:before,
.photodescriptionmap:before,
.photodescriptionpage:before {
    content: '\f0b1';	
}

.photodescriptionnew:before {
    content: '\f007';
}

.sciencedescriotion:before,
.sciencedescriotionmap:before,
.sciencedescriotionpage:before {
    content: '\f19d';	
}

.now {
	color: #646569 !important;
}

.ex {
	color: #9C9C9C !important;
}

.now a, .ex a {
	color: #ca2017 !important;
}

.now a:hover, .ex a:hover {
	color: #000 !important;
}

.countrylocationmarker { 
	position: relative;
	top: 0px;
	left: 30px;
	font-size: 16px;
	display: inline-block;

}

.countrylocationmarker img {
height: 30px;
width: auto;
position: relative;
display: block;
float: left;
margin: -5px 5px 0 0;
}

/* .countrylocationmarker:before {
	font-family: 'FontAwesome';
    content: '\f3c5';
	margin-right: 5px;
	color: #0000bd;
} */

.fphotolargesm {
	display: block;
	width: 23%;
	min-height: 400px;
	margin: 0px 1% 20px 1%; 
	float: left;
	background: #ffffff;
  	z-index: 20;
  	position: relative;
  	padding-top: 20px;
}

.fphotolargesm p {
	color: #666666; 
	padding: 0;
	margin: 10px auto 0;
}

.wrapper-datas-rigth .fphotolargesm {
	display: block;
	width: 98%;
	min-height: 315px;
	margin: 0px auto; 
	float: none;
	overflow: hidden;
}

.orcava {
   	filter: grayscale(1);
   	-webkit-filter: grayscale(1);
   	-moz-filter: grayscale(1);
}

.orcattention, .elfheart, .deadattention, .nowar {
	display: block;
	position: absolute;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	color: #fff;
	z-index: 6000;
/*	-webkit-box-shadow: 0 0 0 1px #fff;
	box-shadow: 0 0 0 1px #fff; */
	font-weight: 700;
	height: 22px;
	min-width: 22px;
	top: calc(14.6% - 11px);
	right: calc(14.6% - 11px);
}

/* .elfheart {
	font-size: 16px;
	background: #ffffff;
	line-height: 20px;
	padding: 0 0;
}

.elfheart:before {
	font-family: 'FontAwesome';
    content: '\f004';
	background-image: linear-gradient(#0066cc 50%, #ffcc00 50%); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.orcattention {
	font-size: 16px;
	background: #ed4014;
	line-height: 20px;
	padding: 0 4px;
}
.orcattention:before {
	color: #ffffff;
} */
	
.deadattention {
	font-size: 12px;
	background: #000;
	line-height: 20px;
	padding: 0 4px;
}

.deadattention:before {
	font-family: 'FontAwesome';
    content: ' ';
	color: #fff;
}

/* \f654 */

/* .nowar {
	font-size: 16px;
	background: #00a86b;
	line-height: 20px;
	padding: 0;
}

.nowar:before {
	font-family: 'FontAwesome';
    content: '\f67c';
	color: #fff;
} */







.soclink_horizontal {
	
	
}


/* Отметки */

/* Книги */

.bookiframe {
	border:none;
	width:100%;
	height:500px;
}

.bookframe {
	width: 80% !important;
	margin: 50px auto;		
}

/* Книги */

.horizontalsidebar {
	width:100%;
	min-width:100%;
	max-width:100%;
	height: auto;
	display: inline-block;
	border:none;
	padding: 50px 0 0 0;
	text-align: center;
	position: relative;
}

.horizontalsidebar p {
	text-align: center !important;
}

.spad1752 {display: inline-block;}

.spadomsk {display: none;}

.spadural {display: none;}

.spadarkona {display: none;}

.spadua {display: none;}

.copy_link_mess {
 	line-height: 40px;
	border-radius: 5px;
	background: #ff0000;
	color: #fff;
	position: fixed;
	padding: 0 15px;
	z-index: 99;
	bottom: 30px;
	left: 50%;
	width: 280px;
	margin-left: -140px;
	display: none;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px;
}

.copy_link_mess_on {
  	display: block !important;
	bottom: 50px;
}

.copy_link_mess_onn {
  	display: block !important;
	bottom: 100px;
}

@media (max-width: 1040px) {
.fphotolargesm {
	width: 31.33%;
	margin: 0px 1% 20px 1%; 
}

.wp-caption-img-people .compass {
	width: calc(100% - 96px);
	height: 38px;
	top: 10px;
	left: 48px;
	right: 48px;
	line-height: 38px;
}

.wp-caption-img-people .compass:before, .wp-caption-img-people .compass:after {
	width: 38px;
	height: 38px;
	line-height: 38px;
}

.wp-caption-img-people .compass:before { left: -38px; }
.wp-caption-img-people .compass:after { right: -38px; }
	
.wp-caption-img-people .compassback {
	height: 38px;
	line-height: 38px;
}
	
.uservrag, .locationicon {
	width: 38px;
	height: 38px;
	margin: 0 0 0 -29px;
	line-height: 38px;
}
	
}

@media (max-width: 1200px) {
	
	.wrapper-datas-left {
		width: 62.5% !important;
	}

	.wrapper-datas-rigth {
		width: 35% !important;
	}

}

@media (max-width: 800px) {

	.wrapper-datas-rigth, .wrapper-datas-left {
		float: none;
		width: 100% !important;
		border-left: 0px solid #fff;
		padding:0;
	}
	
	.wrapper-datas-rigth .fphotolargesm {
		width: 50% !important;
		margin: 0px auto 20px !important;		
	}

.featured-autor::before {
 padding-top: 400px;  /*С помощью этого padding мы задаем высоту равную ширине блока */
}
	
.long-title-autor {
	display: none;
}
	
.autornew {
  width: 400px;
  margin: -125px auto 0px;	
}
	
.logobluuurautor {
   	left: 50%;
	margin: 30px 0 0 -150px;
}	
	
.single-organization .logobluuurautor {
	display: none !important;
}
	
.social {
  margin: 20px 0px 10px 0px;	
}	

.photodescriptionpage, .sciencedescriotionpage {
	width: 90% !important;	
}

.long-title-autor-mob {
	margin: 0 auto;
	width: 90%;
	padding: 0;
	display: block;
	color: #000000;
	position: relative;
	top: -30px;
}

.long-title-autor-mob  H1 {
	color: #000;
	display: block; 
	text-align: center;
	}

.long-title-stat {
	top: -30px;
	margin: 0 auto;
	width: 80%;
	padding: 0;
	text-align: center;
}

.countrylocationmarker { 
	display: block;
	margin: 0 auto;
	top: 10px;
	left: 0px;
}
	
.soclink_horizontal {
	left: 11% !important;
	width: 90%;
	margin: 0 auto !important;
	min-height: 30px;
	max-height: 30px;
	top: 10px !important;
}
	
.user_content {
  margin: 40px 10% 50px 10%;
}

.orientquad, .orientvert, .orientgor {
    max-width: 90% !important;
    width: 90%;
}
	
.fphotolargesm {
	width: 46%;
	margin: 0px 2% 20px 2%; 
}

.wp-caption-img-people .compass {
	width: calc(100% - 58px);
	height: 19px;
	top: 10px;
	left: 29px;
	right: 29px;
	line-height: 19px;
	color: #ffffff;
}

.wp-caption-img-people .compass:before, .wp-caption-img-people .compass:after {
	width: 19px;
	height: 19px;
	line-height: 19px;
}

.wp-caption-img-people .compass:before { left: -19px; }
.wp-caption-img-people .compass:after { right: -19px; }
	
.wp-caption-img-people .compassback {
	height: 19px;
	line-height: 19px;
}
	
.uservrag, .locationicon {
	width: 19px;
	height: 19px;
	margin: 0 0 0 -20px;
	line-height: 19px;
}
	
@media (max-width: 600px) {

	.wrapper-datas-rigth .fphotolargesm {
		width: 60% !important;
		margin: 0px auto 20px !important;		
	}
	
@media (max-width: 500px) {

	.wrapper-datas-rigth .fphotolargesm {
		width: 75% !important;
		margin: 0px auto 20px !important;		
	}
	
}
	
}
