/*
Theme Name: sharliz
Theme URI: http://theme-preview.com/sharliz/
Author: IPkabuto
Author URI: http://theme-preview.com/
Description: sharliz a theme with a clean and creative design
Version: 1.0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, custom-colors, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: sharliz
Domain Path: /languages

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

sharliz is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# __NORMALIZE 
# __TYPOGRAPHY
# __ELEMENTS
# __FORMS
# __NAVIGATION
	## __LINKS
	## __MENU
# __ACCESSIBILITY
# __ALIGNMENTS
# __CLEARINGS
# __WIDGETS
# __CONTENT
	## __POSTS AND PAGES
	## __COMMENTS
# __INFINITE SCROLL
# __CAPTIONS
# __SIDEBAR
# __FOOTER
    # __FOOTER WIDGETS
# __MEDIA
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# __NORMALIZE
--------------------------------------------------------------*/

@font-face {
	font-family: Century Gothic; /* Имя шрифта */
	src: url(fonts/CenturyGothic.ttf); /* Путь к файлу со шрифтом */
}

body {
	background-color: #fff;
	font-size: 14px;
	line-height: 1.75;
	color: #535358;
	overflow-x: hidden;
	font-family: Century Gothic !important;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
main,
menu,
nav,
section,
summary {
	display: block;
	z-index: 2;
	position: relative;
}

article {
	background-color: #fff;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #222;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

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

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	border: 0;
	background-color: #aaa;
	border-radius: 50%;
	margin: 30px auto;
	position: relative;
	width: 5px;
	height: 5px;
}

hr:after,
hr:before {
	content: "";
  background-color: #aaa;
  border-radius: 50%;
  position: absolute;
  width: 5px;
  height: 5px;
}

hr:before {
	right: 15px;
}

hr:after {
	left: 15px;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: 'Source Code Pro', monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

th {
	color: #222;
}

td,
th {
	padding: 5px;
}

.site-content {
  margin: 0 auto;
}

/*--------------------------------------------------------------
# __TYPOGRAPHY
--------------------------------------------------------------*/

dfn,
i {
	font-style: normal;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #f4f4f4;
	font-family: "Courier 10 Pitch", Courier, 'Source Code Pro', monospace;
	font-size: 1em;
	line-height: 1.5em;
	margin-bottom: 1em;
	max-width: 100%;
	overflow: auto;
	padding: 1.5em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", 'Source Code Pro', monospace;
	font-size: 1em;
}

abbr,
acronym {
	border-bottom: 1px dotted #848484;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Century Gothic !important;
	color: #222;
	line-height: normal;
}

/*--------------------------------------------------------------
# __ELEMENTS
--------------------------------------------------------------*/

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

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

blockquote > p:before,
blockquote > p:after {
	color: #aaa;
	font-family: 'FontAwesome';
	font-size: 14px;
}

blockquote > p:before {
	content: "\f10d";
	margin-right: 10px;
}

blockquote > p:after {
	content: "\f10e";
	margin-left: 10px;
}

blockquote,
q {
	quotes: "" "";
}

li {
    position: relative;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

figure {
	margin: 1em 0; 
}

table {
	margin: 0;
	width: 100%;  
}

td,
tr {
    border: 1px solid #848484;
    padding: 5px;
}

/*--------------------------------------------------------------
# __FORMS
--------------------------------------------------------------*/

option {
    outline: none;
}

textarea {
	width: 100%;
}

.wpcf7-form-control-wrap.your-email,
.wpcf7-form-control-wrap.your-name {
	margin-bottom: 30px;
	display: block;
}

.wpcf7-form-control-wrap.your-subject {
	display: block;
	margin-bottom: 15px;
}

/*--------------------------------------------------------------
# __NAVIGATION
--------------------------------------------------------------*/

.sharliz-nav-logo {
	position: absolute;
	height: 100%;
	left: 3em;
}

.nav-area > div > .menu li.current-menu-item a {
	color: #8db392;
}

.sharliz-nav-featured {
	position: fixed;
	right: 30px;
	top: 0;
	height: 100px;
	z-index: 9999;
}

.admin-bar .sharliz-nav-featured {
	top: 32px;
}


.site-sidebar {
	padding: 17px 0;
}

.site-search {
	border-right: 1px solid #f4f4f4;
	border-left: 1px solid #f4f4f4;
}

/*--------------------------------------------------------------
## __LINKS
--------------------------------------------------------------*/

a {
	color: #222;
}

a:hover,
a:focus, 
a:active {
	color: #444;
	text-decoration: none;
}

/*--------------------------------------------------------------
# __ACCESSIBILITY
--------------------------------------------------------------*/

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; 
}

#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# __ALIGNMENTS
--------------------------------------------------------------*/

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

.alignleft,
.alignright {
    height: auto;
    max-width: 100%;
}

.alignright {
    margin: 30px 0 30px 15px;
    float: right;
}

.alignleft {
    margin: 30px 15px 30px 0;
    float: left;
}

.aligncenter {
    display: block;
    margin: 30px auto;
    height: auto;
}

.alignnone {
    margin: 30px 0;
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# __CLEARINGS
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# __WIDGETS
--------------------------------------------------------------*/

.null-instagram-feed .instagram-pics li a {
	position: relative;
	display: block;
}

.null-instagram-feed .instagram-pics li a:after {
	content: '\f16d';
	font-family: 'FontAwesome';
	display: inline-block;
	position: absolute;
	top: calc(50% - 11.5px);
	left: calc(50% - 8.5px);
	color: #fff;
	font-size: 20px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
}

.null-instagram-feed .instagram-pics li a:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(34, 34, 34, 0.50);
	display: block;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.null-instagram-feed .instagram-pics li a:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);	
}

.null-instagram-feed .instagram-pics li a:hover:before,
.null-instagram-feed .instagram-pics li a:hover:after {
	visibility: visible;
	opacity: 1;
}

.tagcloud > a {
	position: relative;
}

.tagcloud > a:before {
	content: '#';
	display: inline-block;
	color: #aaa;
}

.clear a,
.fn,
.widget_archive ul > li > a,
.widget_categories ul > li > a,
.sharliz_latest_posts_widget .post-item-text p a,
.post-item-text h3,
.post-item-text h3 a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  display: inline-block; 
  position: relative;
}

.post-item-text h3 a {
  letter-spacing: normal;	
}


.post-item-text h3,
.post-item-text h3 a {
	color: #222;
}

.comment-awaiting-moderation {
  color: #aaa;
  font-style: italic;
  letter-spacing: 1px;	
}

.fn {
	font-size: 18px;
	letter-spacing: normal;
	color: #222;
	text-transform: capitalize;
}

.widget_media_image img {
	width: 100%;
}

.sharliz_latest_posts_widget .latest-post .post-item-text span a {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
}

.sharliz-win-sidebar .widget_widget_about_me p {
	margin: 0;
	text-align: center;
}

.sharliz-cat-count {
  float: right;
  display: inline-block;
  width: 25px;
  font-size: 13px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #aaa;
  line-height: 25px;
  text-align: center;
  height: 25px;
}

.widget_widget_about_me p {
	margin: 0;
	padding: 0;
}

.widget_nav_menu .menu li > .sub-menu {
	padding-left: 20px;
	display: block;
}

.widget_nav_menu .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.searchform input[type="submit"] {
	display: none;
}

.instagram-pics.instagram-size-original li {
	display: inline-block;
}

.tagcloud a:last-child {
	margin: 0;
}

.widget {
	overflow: hidden;
	border: 1px solid #e8e8e8;
	padding: 30px;
	margin-bottom: 30px;
}

.widget .widget-title {
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
  line-height: 12px;
  text-align: left;
  margin: 0 0 30px 0;
  position: relative;
	word-wrap: break-word;
}

.post-image {
	width: 40%;
	float: left;
}

.post-item-text {
	float: left;
	width: 60%;
	padding-left: 15px;
}

.post-item-text h3 {
	display: block;
}

.latest-post p,
.post-item-text h3 {
	text-align: left;
}

.sharliz_latest_posts_widget .post-item-text p a {
	color: #aaa;
	text-transform: capitalize;
	font-style: italic;
}

.about-widget .widget-title {
	text-align: center;
}

.widget input {
	border: 1px solid;
	border-color: #e8e8e8;
}

.widget_search div {
	position: relative;
}

.widget input[type="submit"] {
	outline: none;
	padding: 10px 20px;
	text-transform: uppercase;
	color: #fff;
	background-color: #f4f4f4;
	border: 1px solid #e8e8e8;
	margin: 15px 0 0 0;
	font-size: 14px;
	font-weight: 700;
}

.mc4wp-form-fields > p:last-child {
	margin-bottom: 0;
}

input,
input[type="password"],
.widget select {
  width: 100%;
  color: #222;
  padding: 13.5px;
  outline: none;
  background-color: #f4f4f4;
  border: 1px solid #e8e8e8;
}

thead th {
	color: #999;
}

td, tr {
	border-color: #e8e8e8;
	font-size: 14px;
	color: #999;
}

.sharliz-win-sidebar .widget td a {
	color: #fff !important;
}

.widget ul li {
	line-height: 23px;
}

.sharliz-win-sidebar .widget  {
	padding: 30px;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 30px;
}

.widget > ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.widget_recent_entries li,
.widget_meta li,
.widget_archive li,
.widget_recent_comments .recentcomments,
.widget_categories .cat-item {
	color: #999;
	margin-bottom: 15px;
	position: relative;
}

.widget_categories .cat-item,
.widget_recent_entries li,
.widget_meta li,
.widget_archive li {
	margin-bottom: 0;
}

.widget_recent_comments .recentcomments:last-child,
.widget_categories .cat-item:last-child {
	margin-bottom: 0;
}

.widget_categories .cat-item a,
.widget_recent_entries li a,
.widget_meta li a,
.widget_archive li a {
	margin-bottom: 15px;
}

.widget_recent_comments .recentcomments a {
	padding-left: 15px;
	font-size: 13px;
}

.widget_archive li a:before {
	right: -25px;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-widget {
	position: relative;
	overflow: hidden;
}

.about-widget .widget-title {
	margin: 15px 0 7px 0;
	border: none;
}

.sharliz_latest_posts_widget ul > li:last-child,
.widget_recent_entries ul > li:last-child,
.widget_archive ul > li:last-child,
.widget_meta ul > li:last-child,
.widget_pages ul > li:last-child,
.widget_categories ul > li:last-child,
.widget_rss ul > li:last-child {
	border-bottom: none;
	padding: 0;
}

.widget_rss li {
	margin-bottom: 45px;
}

.post-item-text p,
.post-item-text h3 {
	margin: 0;
}

.latest-post li {
	float: left;
}

.widget_rss li:last-child {
	margin-bottom: 0;
}

.sharliz_social_widget {
	text-align: center;
}

.instagram-size-small li,
.instagram-size-thumbnail li {
	width: 33.333%;
	padding: 2.5px;
	float: left;
}

.sharliz-instagram-footer .instagram-pics li {
	display: inline-block;
}

.clear {
	margin: 0;
	display: block;
	width: 100%;
	margin-top: 15px;
	float: left;
	text-align: center;
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 1px;
}

.instagram-size-original .clear {
	display: none;
	margin: 0;
	padding: 0;
}

.widget .rpwe-thumb {
  border: none !important;
  box-shadow: none !important;
  margin: 0;
}

.widget .rpwe-block li {
  border: none;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.widget .rpwe-block li:last-child {
	margin: 0;
}

.widget .rpwe-li {
	text-align: center;
}

.widget .rpwe-block h3 {
  margin-bottom: 0px !important;
  margin-top: 15px !important;
}

.widget .rpwe-block h3 a {
	font-size: 14px !important;
	text-transform: uppercase;
  padding: 0;
  color: #222;
  text-align: center;
  font-weight: 500;
  position: relative;
  letter-spacing: 1px;
  word-wrap: break-word;
}

.widget .rpwe-time {
	font-size: 13px;
	color: #bbb;
}

.widget .rpwe-ul {
	margin: 0;
}

.sharliz-featured-area .owl-dots {
	position: absolute;
	top: 50%;
	left: 2em;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.owl-dot {
	width: 13px;
	height: 13px;
	display: inline-block;
	margin-bottom: 15px;
	background-color: #fff;
	border: 1px solid #f4f4f4;
	border-radius: 50%;
}

.recent-posts-extended .owl-dot {
	border-color: #999;
	margin: 0 5px 0 0;
}

.recent-posts-extended .owl-dot:last-child {
	margin: 0;
}

.recent-posts-extended .owl-controls {
	text-align: center;
	margin-top: 5px;
}

.instagram-pics .owl-dots {
	text-align: center;
}

.recent-posts-extended .owl-dots {
	line-height: normal;
	text-align: center;
	padding-top: 5px;
}

.instagram-pics .owl-dot {
	margin-bottom: 0;
	border-color: #999;
	margin: 0 5px 0 0;
}

.owl-dot.active {
	width: 13px;
	height: 13px;
	background-color: #8db392;
	border-color: #8db392;
}

.latest-post li {
	margin-bottom: 20px;
	text-align: left;
}

.latest-post li:last-child {
	margin-bottom: 0;
}

.sharliz-win-sidebar {
  -ms-overflow-style: none;
}

.sharliz-win-sidebar {
  overflow: scrollbars-none;
}

.sharliz-win-sidebar::-webkit-scrollbar {
  width: 0;
}

.nav-search {
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 60%;
  visibility: hidden;
  opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);	
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.nav-search .sharliz-search input {
	background-color: #fff;
	padding: 50px;
	border-radius: 5px;
	font-size: 20px;
}

body.search-active .nav-search {
	visibility: visible;
	opacity: 1;
}

.nav-search .sharliz-search {
	width: 100%;
}

.nav-search-icon {
	right: 3.5em;
}

/*--------------------------------------------------------------
## __MENU
--------------------------------------------------------------*/

.nav-area > div > .menu a {
	color: #999;
}

.nav-area {
	text-align: center;
	height: 90px;
	cursor: initial;
}

.sharliz-background {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0%;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
	background-color: rgba(34, 34, 34, 0.60);
	-webkit-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

body.search-active .sharliz-background,
body.active .sharliz-background,
body.active-sidebar .sharliz-background {
	cursor: pointer;
	opacity: 1;
	visibility: visible;
}

.social_share_classic {
	list-style: none;
	padding: 10px 15px;
	margin: 0;
	overflow: hidden;
}

.social_share_classic li {
	float: left;
	width: 30px;
	margin-right: 5px;
}

.social_share_classic li i {
	color: #222;
}

.social_share_classic li:last-child {
	margin-right: 0;
}

.sharliz-logo {
	display: block;
	height: 50px;
	width: 200px;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.menu-menu-container {
	display: inline-block;
}

/*--------------------------------------------------------------
# __CONTENT
--------------------------------------------------------------*/

.sharliz-nav-logo .site-header {
	text-align: left;
	line-height: normal;
	margin: 15.5px 0;
}

.site-title {
	display: block;
	margin: 0;
	word-wrap: break-word;
}

.site-description {
	display: block;
	color: #444;
	font-size: 13px;
	word-wrap: break-word;
	text-align: left;
}

.nav-area input[type="password"],
.nav-area input,
.nav-area select {
	padding: 10px;
}

/*--------------------------------------------------------------
## __PROMO BOX
--------------------------------------------------------------*/

.sharliz-promo-box-area {
	padding: 60px 0;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(155,155,155,0.15) inset;
  -moz-box-shadow: 0px 0px 15px 0px rgba(155,155,155,0.15) inset;
  box-shadow: 0px 0px 15px 0px rgba(155,155,155,0.15) inset;
	background-color: #f2f2f2; 
	margin-bottom: 60px;
}

.sharliz-promo-area {
	padding: 0;
	margin: 0;
	display: block;
	list-style: none;
}

.sharliz-row {
	margin-left: -30px;
	margin-right: -30px;
}

.sharliz-promo-title {
	padding: 10px 15px;
	display: inline-block;
	min-width: 150px;
	top: 50%;
	left: 50%;
	position: absolute;
	background-color: #fff;
	text-align: center;
	color: #222;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-box-shadow: 0px 0px 10px 5px rgba(155,155,155,0.15);
	-moz-box-shadow: 0px 0px 10px 5px rgba(155,155,155,0.15);
	box-shadow: 0px 0px 10px 5px rgba(155,155,155,0.15);
}

.sharliz-promo-area li {
	float: left;
	position: relative;
	text-align: center;
	padding: 0 30px;
	width: 33.333%;
}

.sharliz-promo-area li a {
	height: 225px;
	display: block;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	-webkit-box-shadow: 0px 0px 15px 8px rgba(155,155,155,0.15);
  -moz-box-shadow: 0px 0px 15px 8px rgba(155,155,155,0.15);
  box-shadow: 0px 0px 15px 8px rgba(155,155,155,0.15);
}

/*--------------------------------------------------------------
## __POSTS AND PAGES
--------------------------------------------------------------*/

.sharliz-nav-logo .site-title {
	font-size: 18px;
}

.sharliz-chess article {
	overflow: hidden;
}

.page-template-demo .sharliz-post-excerpt {
	overflow: hidden;
	margin-bottom: 15px;
}

.page-template-demo .entry-meta {
	margin-bottom: 15px;
}

.page:not(.page-template-demo) .entry-content {
	padding: 35px 0;
}

.page.page-template-demo .entry-content {
	padding-top: 0;
	padding-bottom: 0;
}

.entry-content-no-img .entry-meta .sharliz_post_title {
	margin-top: 0;
	text-align: center !important;
}

.owl-next .sharliz-next {
	right: 0;
}

.owl-prev .sharliz-prev {
	left: 0;
}

.sharliz-header-logo {
	margin-top: 105px;
	text-align: center;
}

.admin-bar .sharliz-header-logo {
	margin-top: 135px;
}

.sharliz-header-logo .site-description,
.sharliz-header-logo .site-header {
	text-align: center;
	display: inline-block;
}

.sharliz-header-logo .sharliz-nav-logo {
	position: relative;
	left: initial;
	height: initial;
}

.sharliz-post-excerpt p {
	margin-bottom: 0;
}

.single .entry-meta .sharliz_post_title {
	margin-top: 5px;
}

.sharliz-post-category {
	display: none;
}

.sharliz-promo-enable {
	margin-top: 90px;
}

.sharliz-disable-slider {
	margin-top: 135px;
}

.sharliz_post_title a,
.sharliz_post_title,
.sharliz-grid .sharliz_post_title a,
.sharliz-grid .sharliz_post_title,
.sharliz-chess .sharliz_post_title a,
.sharliz-chess .sharliz_post_title,
.sharliz-list .sharliz_post_title a,
.sharliz-list .sharliz_post_title {
	line-height: 1.5em !important;
}

.search .sharliz-logo-disabled,
.archive .sharliz-logo-disabled,
.page .site-content,
.single .site-content {
	margin-top: 135px;
}

.sharliz-site-share ul li i,
.sharliz-share-area li a i {
	color: #aaa;
	-webkit-transition: .2s;
	 -o-transition: .2s;
	 transition: .2s; 
}

.sharliz-post-category {
	display: block;
	text-align: center;
}

.sharliz-pagination:before {
	content: none !important;
}

.sharliz-next-post,
.sharliz-previous-post {
	width: calc(50% - 22.5px);
	margin-top: 45px;
	background-color: #fff;
	padding: 30px;
}

.sharliz-previous-post {
	float: left;
	text-align: left;
}

.sharliz-next-post {
	float: right;
	text-align: right;
}

.sharliz-prev-icon,
.sharliz-next-icon {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.sharliz-prev-icon:before,
.sharliz-next-icon:after {
	font-family: 'FontAwesome';
	color: #222;
	font-size: 20px;
}

.sharliz-prev-icon:before {
	content: '\f177';
	margin-right: 10px;
}

.sharliz-next-icon:after {
	content: '\f178';
	margin-left: 10px;
}

.sharliz-post-excerpt a {
	text-decoration: underline;
}

.single .sharliz-excerpt-area {
	display: block;
}

.sharliz-excerpt-area {
	padding: 0;
}

.sharliz-post-format.post-gallery .sharliz-slide-item span {
	display: block;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.sharliz-post-excerpt {
	margin-bottom: 27px;
	overflow: hidden;
}

.search .sharliz-post-excerpt,
.archive .sharliz-post-excerpt,
.home .sharliz-post-excerpt {
	text-align: left;
}

.page-template-demo .site-content {
	margin-top: 35px !important;
}

.sharliz-content .sharliz-social-share > li {
	margin: 0 5px 0 0;
}

.single .sharliz-post-share {
	width: 100%;
	text-align: center;
}

.sharliz-content .sharliz-social-share > li:last-child,
.sharliz-social-share > li:last-child {
	margin: 0;
}

.social-widget i:before,
.sharliz-social-share i:before {
	font-size: 13px;
	z-index: 1;
	position: relative;
	display: inline-block;
}

.sharliz-social-share i:before {
	width: 20px;
	height: 15px;
}

.social-widget i:before {
	width: 15px;
	height: 15px;
}

.social-widget a {
  position: relative;
	color: #222;
	background-color: #f4f4f4;
	border-radius: 50%;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.sharliz-social-share li {
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
}

.sharliz-social-share li i {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.sharliz-social-share li:hover i {
	color: #222;
}

.social-widget a {
	display: inline-block;
	margin-right: 5px;
}

.social-widget a:last-child {
	margin-right: 0;
}

.social-widget {
	display: inline-block;
}

.social-widget a:hover {
	background-color: #8db392;
}

.social-widget a:hover i {
	color: #fff;
}

.sharliz-footer-share .sharliz-social-share > li:hover a {
	color: #8db392;
}

.sharliz-post-format {
	position: relative;
	overflow: hidden;
}

.sharliz-post-img .sharliz-post-format > span,
.sharliz-post-img .sharliz-post-format > a {
	display: block;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: cover !important;
}

.also-like-posts .sharliz-post-format .also-post-img {
	height: 265px;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: cover !important;
}

.archive-description {
	margin-top: 15px;
	color: #fff;
	text-align: center;
}

article.sticky .sharliz-post-format:before {
  font-family: 'FontAwesome';
  position: absolute;
  color: #222;
  font-size: 1.2em;
  z-index: 15;
  left: 0.5em;
  top: 50%;
  text-align: center;
  content: '\f005';
 	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: .2s ease-out;
	-o-transition: .2s ease-out;
	transition: .2s ease-out;
}

article.sticky .sharliz-post-format:after {
	content: '';
	position: absolute;
	left: -3.5em;
	width: 7em;
	top: 50%;
	border-radius: 50%;
	height: 7em;
	background-color: #fff;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-shadow: 3px 0px 5px rgba(0,0,0,.1);
	box-shadow: 3px 0px 5px rgba(0,0,0,.1);
	-webkit-transition: .2s ease-out;
	-o-transition: .2s ease-out;
	transition: .2s ease-out;
}

article.sticky .sharliz-post-format:hover:before {
	left: -10em;
}

article.sticky .sharliz-post-format:hover:after {
	left: -10em;
}

.sharliz-page-header {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 0 0 20px 0;
  margin-bottom: 35px;
  border-bottom: 1px solid #e8e8e8;
}

.sharliz-page-header .sharliz_post_title {
	margin: 0;
}

.title_404 h1 {
	font-size: 120px;
	line-height: 120px;
	margin-top: 0;
}

li.sharliz-no-results.not-found {
	width: 100%;
	padding: 30px !important;
	text-align: center;
}

li.sharliz-no-results.not-found a {
	text-decoration: underline;
}

.page-title {
	text-align: center;
	font-size: 18px;
	word-wrap: break-word;
}

.page-result {
	background-color: #fff;
}

.home .sharliz_post_title:hover {
	color: #444;
}

.sharliz_post_title {
	margin: 20px 0 5px 0;
	font-weight: 400;
	word-wrap: break-word;
}

.sharliz_post_title {
	position: relative;
}

.sharliz-grid,
.sharliz-list,
.sharliz-chess,
.sharliz-standard {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sharliz-grid > li,
.sharliz-list > li,
.sharliz-chess > li,
.sharliz-standard > li {
	float: inherit;
	margin-bottom: 45px;
	padding: 0;
}

.sharliz-chess > li,
.sharliz-list > li {
	overflow: hidden;
	position: relative;
}

.sharliz-post-img {
  position: relative;
  overflow: hidden;
}

.pagination {
	margin: 0;
}

.post_footer {
	display: inline-block;
	width: 100%;
	position: relative;
}

.sharliz-standard .porotfolio-wish {
	float: left;
}

.sharliz-standard .porotfolio-wish i {
	font-size: 13px;
	color: #222;
	cursor: pointer;
}

.sharliz-standard .porotfolio-wish i:focus,
.sharliz-standard .porotfolio-wish i:active {
	color: #f38844;
}

.sharliz-standard > li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.sharliz-content {
	padding: 0;
}

p {
	margin: 0 0 15px 0;
	color: #535358;
}

.sharliz-chess .entry-content-no-img .sharliz-post-excerpt:first-letter,
.sharliz-list .entry-content-no-img .sharliz-post-excerpt:first-letter,
.sharliz-standard .entry-content-no-img .sharliz-post-excerpt:first-letter,
.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-excerpt:first-letter,
.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-excerpt:first-letter,
.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-excerpt:first-letter,
.sharliz-standard .sharliz-post-excerpt:first-letter {
  font-size: 85px;
  float: left;
  line-height: 1em;
  color: #e8e8e8;
  margin-top: -5px;
  margin-right: 0.09em;
}

.sharliz-content p {
	font-size: 14px;
	line-height: 1.75;
	color: #535358;
  text-align: left;
  letter-spacing: normal;
}

.tagcloud a,
.tags a {
	position: relative;
	font-size: 13px !important;
	letter-spacing: 1px;
	line-height: 12px;
	color: #aaa;
	text-transform: uppercase;
	display: inline-block;
}

.tags a:before {
	content: '#';
	display: inline-block;
	color: #aaa;
}


.reply a,
.post-password-form input[type="submit"],
.wpcf7-form-control.wpcf7-submit,
.form-submit .submit,
.sharliz-post-button,
.sharliz-standard .sharliz-post-button {
	font-size: 12px;
	color: #fff;
	border-radius: 15px;
	letter-spacing: 1px;
	padding: 10px 15px;
	font-style: italic;
	background-color: #8db392;
	line-height: 12px;
	display: inline-block;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}


.tagcloud a:hover,
.tags a:hover {

}

.reply a:hover,
.post-password-form input[type="submit"]:hover,
.wpcf7-form-control.wpcf7-submit:hover,
.form-submit .submit:hover,
.sharliz-post-button:hover,
.sharliz-standard .sharliz-post-button:hover {
	background-color: rgb(78, 127, 84);
}

.sharliz-post-footer .sharliz-post-button {
	line-height: 54px;
	position: relative;
	padding-left: 10px;
}

.sharliz-post-footer .sharliz-post-button:before {
	content: '\f0da';
	font-family: 'FontAwesome';
	display: inline-block;
	color: #999;
	font-size: 14px;
	float: right;
	padding-left: 10px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.sharliz-post-footer .sharliz-post-button:hover:before {
	padding-left: 15px;
	color: #222;
}

.sharliz-post-comments:hover i,
.sharliz-author-name:hover:before,
.sharliz-post-date:hover:before {
	color: #222;
}

.tagcloud a {
	margin: 0 5px 5px 0;
}

.sharliz-link-pages {
	overflow: hidden;
}

.sharliz-link-pages > span,
.sharliz-link-pages a,
.page-numbers,
.sharliz-pagination a {
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	background: #8db392;
	font-weight: 700;
	line-height: normal;
	display: inline-block;
	padding: 15px 25px;
	margin-right: 5px;
	border: 1px solid #8db392;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.sharliz-link-pages a {
	float: left;
	margin-right: 5px;
	text-decoration: none;
}

.sharliz-link-pages > span {
	background-color: #fff;
	float: left;
	margin-right: 5px;
	color: #222;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.page-numbers.dots,
.sharliz-link-pages > span,
.page-numbers.current {
	border-color: #8db392;
	background-color: #fff;
	color: #222;
	border-radius: 15px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.sharliz-link-pages > span,
.sharliz-link-pages a,
.page-numbers,
.sharliz-pagination a {
	border-radius: 15px;
}

.slider-info .post-categories li a:hover {
	text-decoration: none;
} 

.sharliz-slide-item {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.post-categories {
	list-style: none;
	padding: 0;
	font-family: sans-serif;
	line-height: 12px;
	font-size: 13px;
	margin: 0;
	letter-spacing: 1px;
	position: relative;
	display: block;
	text-transform: uppercase;
}

.single .entry-content .sharliz-social-share,
.single .entry-content ul.post-categories {
  text-align: center;
  margin-bottom: 0;
}

.post-categories li {
	display: inline-block;
	margin-right: 5px;
}

.post-categories li a {
	color: #aaa;
}

.sharliz-excerpt-area {
	text-align: center;
	width: 100%;
}

.sharliz-featured-image {
	position: relative;
	z-index: 2;
}

.sharliz-featured-image:before {
	position: absolute;
	content: '';
	left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

.slider-info .sharliz-post-button {
	margin-bottom: 0;
}

.post-without-img {
	margin-top: 145px;
	margin-bottom: 35px;
}

.sharliz-post-comments, 
.sharliz-post-comments span,
.sharliz-post-comments i,
.sharliz-post-comments a,
.sharliz-author-name,
.sharliz-author-name a,
.also-text-area span,
.sharliz-post-date {
	color: #222;
	display: inline-block;
	font-size: 13px;
	letter-spacing: 1px;
}

.also-text-area span {
	font-size: 13px;
	letter-spacing: 1px;
	display: inline-block;
	color: #aaa;
	font-style: italic;
}

.pagination {
	margin-bottom: 45px;
}

.sharliz-post-comments {
}

.sharliz-post-comments a i {
	margin-right: 5px;
}

.sharliz-post-comments,
.sharliz-post-comments span,
.sharliz-author-name a,
.sharliz-author-name,
.sharliz-post-comments a,
.sharliz-post-date {
	display: inline-block;
	color: #aaa;
}

.sharliz-meta-area {
	position: relative;
	width: 100%;
	font-style: italic;
	line-height: 53px;
}

.sharliz-post-comments, 
.sharliz-author-name, 
.sharliz-post-date {
	margin: 0;
	line-height: normal;
}

.sharliz-author-name {
	float: left;
}

.sharliz-post-comments,
.sharliz-post-date {
	padding: 17px 20px 17px 15px;
	float: right;
}

.sharliz-share-area {
	float: right;
	padding-right: 15px;
}

.sharliz-author-name {
	padding: 17px 20px;
}

.sharliz-post-comments i {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.sharliz-post-date,
.sharliz-post-comments {
	border-left: 1px solid #eee;
}

.sharliz-author-name {
	font-style: italic;
}

.sharliz-post-footer {
	overflow: hidden;
	width: 100%;
	font-style: initial;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8
}

.sharliz-post-button {
	margin-bottom: 30px;
}

.widget .rss-date {
	position: relative;
	display: block;
	color: #848484;
	line-height: 23px;
}

.widget.sharliz_latest_posts_widget .post-item-text {
	display: block;
	text-align: center;
}

.sharliz-post-comments a > i {
	color: #aaa;
}

.sharliz-quote {
	height: inherit !important;
}
 
.sharliz-date,
.logged-in-as,
.commentmetadata a {
	color: #aaa;
	font-size: 13px;
	font-style: italic;
	letter-spacing: 1px;
}

.sharliz-social-share li {
	margin-right: 15px;
}

.post-categories li:last-child,
.sharliz-social-share li:last-child {
	margin: 0;
}

.sharliz-social-share li a {
	display: block;
}

.widget.sharliz_social_widget i,
.sharliz-social-share li a {
	font-size: 14px;
	color: #222;
	line-height: normal;
	padding: 10px;
}

.sharliz-social-share li a {
  padding: 0;
  color: #585858;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.single .sharliz-content .sharliz-social-share li a {
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #cacaca;
}

.single .sharliz-content .sharliz-social-share li a:hover {
	background-color: #e8e8e8
}

.sharliz-footer-share .sharliz-social-share li:hover a {
	color: #fff;
}

.widget.sharliz_social_widget i {
	display: inline-block;
}

.sharliz-win-sidebar .widget.sharliz_social_widget i {
	width: 38px;	
}

.nav-search-icon > i {
	font-size: 15px;
}

.nav-search-icon {
	position: absolute;
}

.sharliz-search {
	display: inline-block;
	line-height: 35px;
}

.sharliz-search input {
	outline: none;
	border: none;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: normal;
	background-color: #fff;
}

.menu li .menu-icon:before {
  font-family: 'FontAwesome';
  content: "\f107";
  margin-left: 5px;
  color: #aaa;
  font-size: 13px;
}

.sticky {

}

.sticky .entry-meta {
	background-color: #f2f2f2;
	padding: 15px;
}

.bypostauthor {
	
}

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
    margin: 0 0 15px 0 !important;
}

.gallery-item img {
    border: none !important;
    padding: 2px;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	font-style: italic;
  display: block;
  font-size: 13px;
}

.sharliz-full {
	width: 100%;
}

.entry-meta {
	padding: 0;
	text-align: center;
}

.single .entry-meta,
.archive .entry-meta,
.search .entry-meta,
.home .entry-meta {
	margin-bottom: 15px;
}

.entry-content .sharliz-post-share .sharliz-social-share {
	width: auto;
}

.entry-content .sharliz-post-share .sharliz-social-share li {
	display: inline-block;
}

.entry-content .sharliz-post-share .sharliz-social-share li i {
	padding: 20px;
}

.entry-meta .sharliz_post_title {
	text-align: center;
}

.archive .sharliz-meta-area,
.search .sharliz-meta-area {
	display: block;
}

.archive .entry-content,
.search .entry-content {
	padding: 0;
}

li.sharliz-pagination {
  display: block;
  background-color: rgba(255,255,255,0);
  text-align: center;
  width: 100% !important;
}

/*--------------------------------------------------------------
## __QUOTE POST
--------------------------------------------------------------*/

.single .sharliz-quote {
	display: block;
}

.single blockquote,
.page blockquote {
	padding: 20px;
	margin: 0;
	text-align: left;
	border-left: 5px solid #f4f4f4;
	font-size: 20px;
	font-style: italic;
	margin-bottom: 30px;
	margin-top: 15px;
}

.page blockquote p,
.single blockquote p {
  font-style: italic;
  color: #777;
  font-size: 17px;
  line-height: 30px;
}

.single .entry-content ul {
	text-align: left;
}

.single .sharliz-post-img .sharliz-quote {
	margin-top: 40px;
	height: inherit;
	background-color: #f4f4f4;
}

.post-quote blockquote:first-child {
	margin-top: 0;
}

/*--------------------------------------------------------------
## __AUTHOR BOX
--------------------------------------------------------------*/

.sharliz-author-box {
	float: left;
	width: 100%;
}

.author-content p {
  font-style: italic;
  color: #777;
  font-size: 17px;
  line-height: 30px;
  margin: 0;
}

.sharliz-author-box {
	margin: 45px 0 0 0;
	background-color: #f2f2f2;
	padding: 35px;
}

.sharliz-author-box .author-img {
	width: 16%;
	border-radius: 50%;
	float: left;
	overflow: hidden;
}

.sharliz-author-box .author-content {
	width: 84%;
	padding-left: 35px;
	float: left;
}

/*--------------------------------------------------------------
## __PAGE
--------------------------------------------------------------*/

.sharliz-single {
	margin-top: 130px;
}

.page .sharliz-header-logo {
	display: none;
}

.page.page-template-demo .sharliz-header-logo {
	display: block;
}

.sharliz-about-page .sharliz-post-img {
	float: right;
}

.sharliz-about-page .sharliz-post-img .sharliz-post-format {
	margin-bottom: 0;
}

.sharliz-about-page .entry-content {
	padding-right: 30px;
}

.sharliz-about-page .sharliz-post-img .sharliz-post-format > a {
	width: 350px;
	height: 350px;
	border-radius: 50%;
}

#back-top {
  position: fixed;
  width: 3em;
  height: 3em;
  bottom: 2em;
  right: 2em;
  display: none;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
}

#back-top:before {
	content: '\f106';
	font-family: 'FontAwesome';
	color: #8db392;
	display: inline-block;
  padding: 8px 10px 8px 7px;
	font-size: 30px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

#back-top:hover:before {
	color: #2f8e5e;
}

.sharliz-clear {
	padding: 0;
	position: relative;
}

.sharliz-center {
	float: none;
	margin: 0 auto;
}

/*--------------------------------------------------------------
## __404 PAGE
--------------------------------------------------------------*/

.error-404.not-found {
	background-color: #fff;
	padding: 30px;
	margin-top: 145px;
	margin-bottom: 45px;	
}

.error-404.not-found .sharliz-page-header {
	margin-top: 0;
}

.error-404.not-found .sharliz-page-header .sharliz_post_title {
	text-align: center;
}

.title_404 {
	text-align: center;
	overflow: hidden;
	word-wrap: break-word;
}

.content_404 input {
	width: 80%;
}

.content_404 .search_form {
	margin-top: 30px;
}

input[type="password"] {
	float: none;
	border-right: 1px solid #f4f4f4;
}

.post-password-form input[type="submit"] {
	width: inherit;
}

.content_404 input[type="submit"] {
	width: 20%;
	margin: 0;
}

.post-password-form label {
	margin: 0;
}

/*--------------------------------------------------------------
## __SINGLE PAGE
--------------------------------------------------------------*/

.sharliz-tags-area .tags {
	margin-bottom: 15px;
}

.sharliz-tags-area {
	text-align: left;
}

.single  .post-quote a {
	overflow: hidden;
	display: block;
}

.single .entry-footer:before {
	content: none;
}

.sharliz-tags-area ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.reply,
.sharliz-tags-area ul li,
.no-comments {
	display: inline-block;
	margin-right: 15px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.reply,
.no-comments {
	border-radius: 5px;
	border-color: #8db392;
}

.sharliz-tags-area ul li {
	margin-bottom: 5px;
}

.sharliz-tags-area ul li:last-child {
	margin-right: 0;
}

.social_share {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page .entry-content,
.single .entry-content {
	padding: 35px 0;
}

.social_share li {
  display: inline-block;
}

.porotfolio-wish {
	cursor: pointer;
}

.also-like-posts {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.also-text-area {
	overflow: hidden;
	position: relative;
	background-color: #fff;
}

.also-title {
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
  line-height: 12px;
  text-align: center;
  margin: 30px 0 0 0;
  position: relative;
  word-wrap: break-word;
}

.also-posts {
	width: 100%;
	overflow: hidden;
	padding-bottom: 30px;
	border-bottom: 1px solid #f4f4f4;
}

.also-posts .sharliz-post-format {
	margin-top: 0;
	margin-bottom: 0;
}

.sharliz-also-item {
	padding: 0 15px;
	float: left;
}

.also-like-posts > li:nth-child(2) {
	padding-left: 0;
}

.also-like-posts > li:nth-child(4)  {
	padding-right: 0;
}

.author-title,
.comments-title,
.comment-reply-title,
.sharliz-post-title {
	color: #222;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	font-size: 13px;
	line-height: 12px;
	text-align: center;
	position: relative;
	word-wrap: break-word;
}

.also-posts .sharliz-post-title {
  padding: 35px 0; 
  border-top: 1px solid #e8e8e8;
  margin: 45px 0 0 0;
}

.comments-area {
  overflow: hidden;
  width: 100%;
  padding: 35px 0px;
  background-color: #fff;
  display: inline-block;
}

.author-title,
.comments-title,
.comment-reply-title {
	margin: 0 0 30px 0;
}

.author-title {
  text-align: left;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 19px;
  color: #222;
}

.sharliz-standard > li {
	position: relative;
}

/*--------------------------------------------------------------
## __FEATURED SLIDER
--------------------------------------------------------------*/

.sharliz-slide-item-text {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  min-width: 400px;
  top: 50%;
  position: absolute;
	left: 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: .7s ease-in-out;
	-o-transition: .7s ease-in-out;
	transition: .7s ease-in-out;	
}

.slick-current .sharliz-slide-item-text {
	visibility: visible;
	opacity: 1;
}

.sharliz-featured-area .sharliz-slide-item {
  padding: 0;
  margin: 0;
  width: 1140px;
  outline: none;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sharliz-featured-area .sharliz-classic-slider .sharliz-slide-item {
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

.sharliz-featured-area .sharliz-classic-slider .sharliz-slide-item:before {
	content: '';
	background-color: rgba(34, 34, 34, 0.65);
	z-index: 9;
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	visibility: visible;
	opacity: 1;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.sharliz-featured-area .sharliz-classic-slider .sharliz-slide-item.slick-current {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.sharliz-featured-area .sharliz-slide-item.slick-current:before {
	content: '';
	background-color: #fff;
	z-index: 9;
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 999;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.arrow-prev {
	left: 30px;
}

.arrow-next {
	right: 30px;
}

.arrow-next:before,
.arrow-prev:before {
  display: block;
  cursor: pointer;
  font-family: 'FontAwesome';
  color: #fff;
  line-height: 36px;
  font-size: 25px;
  padding: 10px 23px;
  height: 56px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.arrow-next:before {
	content: '\f105';
}

.arrow-prev:before {
	content: '\f104';
}

.sharliz-featured-area .slick-dots {
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: normal;
	margin-top: 30px;
}

.sharliz-featured-area .slick-dots li {
	display: inline-block;
	margin-right: 10px;
}

.sharliz-featured-area .slick-dots li:last-child {
	margin-right: 0;
}

.sharliz-featured-area .slick-dots li button {
	opacity: .5;
	background: #fff;
	border: 1px solid #222;
	display: block;
	height: 6px;
	width: 6px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer;
	border-radius: 100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.sharliz-featured-area .slick-dots .slick-active button {
  opacity: 1;
  background: #8db392;
  border: 1px solid #8db392;
}

.sharliz-slide-item {
	width: auto;
}

.sharliz-featured-image-area {
	position: relative;
}

.sharliz-logo-featured {
	position: absolute;
	left: 50%;
	top: 39%;
	z-index: 10;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.sharliz-logo-featured {
	height: 150px;
	width: 300px;
	display: inline-block;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.sharliz-featured-title {
	margin: 0;
	text-align: center;
	position: absolute;
	width: 60%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 8em;
}

.sharliz-slider-container {
	display: none;
	padding: 0;
}

.sharliz-featured-area {
	margin: 135px 0 30px 0;
	padding: 0;
}

.sharliz-logo-enabled,
.sharliz-featured-area.sharliz-logo-enabled {
	margin-top: 35px;
}

.sharliz-featured-area .owl-dots  {
	font-size: 14px;
}

.sharliz-featured-area .owl-dot {
	border: 1px solid #fff;
	display: block;
	background-color: rgba(255,255,255,0);
}

.sharliz-featured-area .owl-dots .owl-dot.active {
	background-color: #fff;
}

.one-slide,
.sharliz-classic-slider {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.one-slide .post-categories a,
.sharliz-classic-slider .post-categories a {
	outline: none;
	display: inline-block;
}

.owl-item {
	position: relative;
	overflow: hidden;
}

.slider-info {
	position: relative;
}

.slider-info h2 {
	margin: 15px 0;
}

.slider-info h2 a {
  line-height: 35px;
  outline: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 15px 0 15px 0px;
}

.sharliz-post-button:hover,
.sharliz-post-button:focus,
.sharliz-post-button:active {
	color: #fff;
} 

.slider-info .sharliz-post-button {
	outline: none;
}

.one-slide.sharliz-slider-layout-second.owl-carousel .owl-item img,
.sharliz-classic-slider.sharliz-slider-layout-second.owl-carousel .owl-item img {
	position: absolute;
	top: 0;
}

.post-gallery .owl-prev {
	position: absolute;
	left: 30px;
	top: 50%;
	display: block;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.post-gallery .owl-next {
	position: absolute;
	right: 30px;
	top: 50%;
	display: block;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.post-gallery .owl-prev {
	left: 10px;
	right: inherit;
}

.post-gallery .owl-next {
	right: 10px;
	left: inherit;
}

.owl-prev .sharliz-prev,
.owl-next .sharliz-next {
	cursor: pointer;
}

.owl-prev .sharliz-prev:before,
.owl-next .sharliz-next:before {
	font-family: 'FontAwesome';
	font-size: 45px;
	cursor: pointer;
	text-align: center;
	display: inline-block;
	color: #fff;
}

.post-gallery .owl-prev .sharliz-prev:before,
.post-gallery .owl-next .sharliz-next:before {
	border: none;
	color: #fff;
	font-size: 25px;
}

.owl-prev .sharliz-prev:before {
	content: '\f104';
	padding: 10px 22px;
}

.owl-next .sharliz-next:before {
	content: '\f105';
	padding: 10px 22px;
}

.slider-info span {
	color: #bbb;
	position: relative;
	font-style: italic;
}

.page-numbers.current:hover {
	background-color: #fff;
	color: #222;
}

/*--------------------------------------------------------------
## __COMMENTS
--------------------------------------------------------------*/

.comments-area p > a {
	text-decoration: underline;
}

.sharliz-comment-area {
	background-color: #f9f9f9;
	display: inline-block;
}

.sharliz-email {
	margin: 0 0 0 25px;
}

.form-submit input {
	margin: 30px 0 0 0;
}

.email-notes {
	font-style: italic;
}

.single article {
	border-bottom: 1px solid #e8e8e8;
}

.comments-title {
	margin-bottom: 0;
}

.form-submit {
	margin: 0;
	display: block;
}

.form-submit input {
	display: inline-block;
	width: inherit;
}

.newer, 
.older {
	display: inline-block;
	margin: 0;
}

.newer a:before {
	content: '\f061';
	float: right;
	padding-left: 10px;
}

.older a:before {
	content: '\f060';
	float: left;
	padding-right: 10px;
}

.newer a:before, 
.older a:before {
	color: #8db392;
	font-family: 'FontAwesome';
	font-size: 14px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.newer a:hover:before, 
.older a:hover:before {
	color: #fff;
}

.textarea-form {
	height: 14em;
	outline: none;
	padding: 10px;
	margin-bottom: 20px;

}

.textarea-form,
.input-form {
	padding: 10px;
	border: 1px solid;
	border-color: #e8e8e8;
	outline: none;
	background-color: #f4f4f4;
	width: 100%;
	border-radius: 5px;
	font-size: 14px;
	line-height: 24px;
	color: #aaa;
}

.admin-bar .form-submit .submit {
	margin-top: 0;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 50px 0;
}

.comment-body {
  padding: 0 0 5px 120px;
}

.vcard {
  margin: 15px 20px 0 0;
  color: #222;
  display: inline-block;
}

.vcard img {
  left: 0;
  top: 0;
  border-radius: 50%;
}

.vcard img {
  position: absolute;
}

.reply {
	margin-right: 0;
}

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

.comment {
  margin-top: 30px;
}

.says {
  display: none;
}

.commentmetadata {
  margin: 0 0 5px 0;
}

.comments-area .children {
  list-style: none;
  padding-left: 30px;
}

.comment-notes {
	margin: 0 0 10px 0; 
	font-size: 14px;
	line-height: 24px;
	color: #aaa;
}

.commentmetadata {
	display: inline-block;
	position: relative;
}

.pingback .comment-body {
	padding: 0;
}

.comment-body p {
	letter-spacing: normal;
}

#cancel-comment-reply-link {
	background-color: #fff;
	position: relative;
}

.comment-list .pingback {
	margin-bottom: 30px;
}

.comment .comment-respond,
.children .comment-respond {
	margin-top: 50px;
}

.comment-list .pingback:last-child {
	margin-bottom: 0;
}

.no-comments {
	margin: 15px 0;
	display: inline-block;
}

/*--------------------------------------------------------------
# __INFINITE SCROLL
--------------------------------------------------------------*/

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { 
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
iframe,
object {
	width: 100%;
}

/*--------------------------------------------------------------
## __CAPTIONS
--------------------------------------------------------------*/

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}

.wp-caption .wp-caption-text {
	margin: 0 !important;
  font-style: italic;
  font-size: 13px;
	text-align: center !important;
}

/*--------------------------------------------------------------
## __SIDEBAR
--------------------------------------------------------------*/

.instagram-size-original .owl-controls {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.instagram-size-original .owl-controls .owl-dot {
	margin-right: 5px; 
}

.instagram-size-original .owl-controls .owl-dot.active {
	border-color: #8db392;
}

.instagram-size-original .owl-controls .owl-dot.active {
	background-color: #8db392;
}

.instagram-size-original .owl-controls .owl-dot:last-child {
	margin-right: 0;
}

.calendar_wrap td,
.calendar_wrap tr {
	text-align: center;
}

.widget_archive ul > li > a,
.widget_categories ul > li > a {
	display: inline-block;
}

.sharliz-win-sidebar .nav-area > div > .menu {
	padding: 0;
	list-style: none;
	margin: 0;
}

.cat-item .children {
	list-style: none;
	padding-left: 10px;
}

.sharliz-win-sidebar {
	text-align: left;
}

.site-sidebar span:last-child,
.site-sidebar span:first-child {
	margin: 0;
}

.site-sidebar {
	cursor: pointer;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.site-sidebar span {
	height: 1px;
	margin: 3px 0;
	background-color: #222;
	display: block;
	width: 20px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.site-sidebar:hover span {
	background-color: #000;
}

.sharliz-win-sidebar {
	width: 25%;
	padding: 0 30px 30px 30px;
	position: fixed;
	bottom: 0;
	z-index: 9999;
	right: -26%;
	background-color: #fff;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.sharliz-win-sidebar.active {
	right: -1px;
}

.back-top {
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.back-top.active {
	right: 28% !important;
}

caption {
	color: #999;
}

.sharliz-win-sidebar .sharliz_latest_posts_widget .post-item-text p a {
	color: #999 !important;
}


/*--------------------------------------------------------------
## __FOOTER
--------------------------------------------------------------*/

.site-info {
	padding: 15px 0 15px 0;
	font-size: 14px;
	display: block;
	text-align: center;
}

footer.site-footer {
  padding: 60px 0;
  width: 100%;
  float: left;
  -webkit-transition: padding .3s ease-out;
  transition: padding .3s ease-out;
  background: #1a1a1b;
}

.sharliz-footer-share {
	display: block;
	text-align: center;
	position: relative;
	padding-bottom: 15px;
}

.sharliz-footer-share:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 2px;
	background-color: #444;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.sharliz-footer-share .sharliz-social-share li {
	display: inline-block;
	position: relative;
}

.site-footer .sharliz-social-share {
	width: auto;
}

.site-footer .sharliz-social-share li {
	background-color: rgba(255,255,255,0) !important;
}

.site-footer .sharliz-social-share li i {
	color: #848484;
	padding: 10px;
	font-size: 16px;
}

.site-info a {
	color: #848484;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.site-info a:hover {
	color: #fff;
}

.site-footer .sharliz-social-share li i:hover {
	padding: 10px;
	color: #fff;
}

.sharliz-footer-share .sharliz-social-share li a {
	text-align: center;
}

.sharliz-footer-logo {
	text-align: center;
	margin-bottom: 30px;
}

.sharliz-header-logo .sharliz-nav-logo a,
.sharliz-logo-footer {
	height: 180px;
	width: 400px;
	display: inline-block;
	background-position: center !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

/*--------------------------------------------------------------
## __FOOTER WIDGETS
--------------------------------------------------------------*/

.sharliz-footer-sidebar-area .widget .rpwe-block h3 a,
.sharliz-footer-sidebar-area .post-item-text h3 {
	color: #fff;
}

.sharliz-instagram-feed {
	position: relative;
	margin-top: 30px;
	float: left;
	width: 100%;
}

.sharliz-instagram-feed .widget .widget-title {
	display: none;
}

.sharliz-instagram-feed .widget {
	border: none;
	padding: 0;
	margin-bottom: 0;
}

.sharliz-instagram-feed .widget .clear {
	background-color: #fff;
	padding: 15px 20px;
	text-align: center;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: initial;
	border-radius: 15px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.sharliz-footer-sidebar-area {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.sharliz-footer-sidebar-area > li {
	float: left;
	width: 33.333%;
}

.sharliz-footer-sidebar-area .widget {
	border: none;
	margin-bottom: 0;
}

.sharliz-footer-sidebar-area .widget .widget-title .rsswidget,
.sharliz-footer-sidebar-area .widget .widget-title {
	font-size: 15px;
	color: #fff;
}

.sharliz-footer-sidebar-area .widget .rpwe-block h3 a,
.sharliz-footer-sidebar-area .widget p,
.sharliz-footer-sidebar-area .widget a {
	color: #999;
}


/*--------------------------------------------------------------
## __MEDIA
--------------------------------------------------------------*/

@media ( max-width: 992px ) {

	.sharliz-featured-area .sharliz-slide-item {
		height: 500px;
	}

	.latest-post p,
	.post-item-text h3 {
		text-align: center;
	}

	.sharliz-right-sidebar,
	.sharliz-sidebar-area,
	.sharliz-left-sidebar {
		padding: 0;
		flex: 0 0 100%;
    max-width: 100%;
	}

	.sharliz-sidebar {
		flex: 0 0 100%;
    max-width: 100%;
	}

	.sharliz-also-item {
		width: 100%;
	}

	.also-like-posts .sharliz-post-format .also-post-img {
		height: 480px;
	}

	.sharliz-chess .sharliz-list-date,
	.sharliz-chess .sharliz-list-author,
	.sharliz-chess .sharliz-list-category,
	.sharliz-chess .sharliz-list-author a,
	.sharliz-list .sharliz-list-date,
	.sharliz-list .sharliz-list-author,
	.sharliz-list .sharliz-list-category,
	.sharliz-list .sharliz-list-author a {
		display: none !important;
	}

	.sharliz-chess .entry-content-no-img .sharliz-post-excerpt:first-letter,
	.sharliz-list .entry-content-no-img .sharliz-post-excerpt:first-letter,
	.sharliz-grid .sharliz-post-excerpt:first-letter,
	.sharliz-chess .sharliz-post-excerpt:first-letter,
	.sharliz-list .sharliz-post-excerpt:first-letter {
	  font-size: 85px;
	  float: left;
	  line-height: 1em;
	  color: #e8e8e8;
	  margin-top: -5px;
	  margin-right: 0.09em;
	}

	.sharliz-chess .sharliz-post-button,
  .sharliz-list .sharliz-post-button {
  	display: inline-block;
  }

	.post-item-text,
	.post-image,
	.sharliz-footer-sidebar-area > li {
		width: 100% !important;
	}

	.sharliz-footer-sidebar-area .widget {
		padding: 15px;
	}

	.post-item-text {
		margin-top: 15px;
		padding: 0;
	}

	.about-img {
		margin-bottom: 30px;
	}

	.sharliz-promo-area li a {
		height: 150px;
	}

	.sharliz-promo-area li {
		padding: 0 15px;
	}

	.sharliz-sidebar {
		padding: 0;
	}

	.sharliz-page-sidebar {
		padding: 0;
	}

	.about-widget .widget-title {
		margin-top: 0;
	}

	.form-submit input {
		margin-bottom: 30px;
	}

	.nav-search-icon {
		right: 3em;
	}

	.site-sidebar {
		padding: 40px 0;
	}

	.sharliz-comment-area {
		width: 100%;
	}

	.sharliz-email {
		margin: 30px 0 0 0;
	}

	.sharliz-comment-area:last-child {
		margin-bottom: 0;
	}

	.also-like-posts li:nth-child(2),
	.also-like-posts li {
		padding: 0 !important;
		margin-bottom: 30px;
	}

	.also-like-posts li:last-child {
		margin-bottom: 0;
	}

	.also-like-posts .sharliz-post-format .also-post-img {
		display: block;
	}

	.sharliz-social-share li:last-child {
		margin: 0;
	}

	.sharliz-standard .sharliz-post-format span,
	.single .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format span,
	.sharliz-post-img .sharliz-post-format > a {
		height: 405px;
	}

	.single .sharliz-post-img .sharliz-quote {
		margin-top: 30px;
	}

	.sharliz-win-sidebar {
		width: 40%;
		right: -41%;
	}

  .sharliz-pagination div {
		margin-bottom: 30px;
	}

	.sharliz-instagram-footer .null-instagram-feed {
		margin: 0 0 30px 0;
	}

	.sharliz-site-share,
	#back-top {
		visibility: hidden !important;
	}

	.instagram-pics li img {
		width: 100%;
	}

	.nav-area > div > .menu-sharliz-container {
		text-align: center;
	}

}

@media ( max-width: 900px ) {

	.sharliz-social-share li {
		display: inline-block;
		margin: 0 -5px 0 0;
	}

	.sharliz-social-share {
		padding: 0;
		margin: 0;
		overflow: hidden;
		display: block;
		text-align: center;
	}

}

@media ( min-width: 769px ) and ( max-width: 783px ) {

	.admin-bar .site .sharliz-main-navigation {
		top: 46px !important;
	}

	.admin-bar .sharliz-win-sidebar {
    top: 96px !important;
	}

}

@media ( max-width: 768px ) {

	.nav-area .sharliz-nav-logo {
		display: none;
	}

	.admin-bar .sharliz-header-logo {
		margin-top: 105px;
	}

	.sharliz-header-logo {
		margin-top: 75px;
	}

	.sharliz_post_title a,
	.sharliz_post_title {
		font-size: 25px;
	}

	.page .site-content,
	.single .site-content,
	.search .sharliz-logo-disabled,
	.archive .sharliz-logo-disabled {
		margin-top: 100px;
	}

	.single article {
		border: none;
	}

	.also-like-posts .sharliz-post-format .also-post-img {
		height: 430px;
	}

	.sharliz-disable-slider {
		margin-top: 0;
	}

	.sharliz-nav-logo {
		position: relative;
		height: initial;
		left: initial;
	}

	.sharliz-nav-featured {
		margin-left: 15px;
		right: initial;
		left: 0;
		display: inline-block;
		height: inherit;
	}

	.sharliz-featured-area,
	.sharliz-promo-box-area {
		display: none;
	}

	.post-without-img,
	.admin-bar .post-without-img {
		margin-top: 90px;
	}

	.sharliz_post_title a {
		display: inline-block;
	}

  .post-gallery .owl-prev {
		 left: 5px;
	}

	.post-gallery .owl-next {
		right: 5px;
	}

	.sharliz-next-post,
	.sharliz-previous-post {
		width: 100%;
		text-align: center;
	}

	.site-header {
		margin: 10px 15px;
	}

	.site-title {
		font-size: 20px;
	}

  .nav-search .sharliz-search input {
		padding: 25px;
	}

	.sharliz-win-sidebar.active {
		right: 0;
	}

	.sharliz-post-share {
		margin-bottom: 20px;
	}

	.nav-search-icon {
		right: 6em;
	}

	.nav-search {
		width: 85%;
	}

	.site-search {
    display: inline-block;
    float: right;
    line-height: 65px;
    border: none;
    z-index: 9999;
    margin-right: 130px;
   	-webkit-transition: .2s;
   	-o-transition: .2s;
   	transition: .2s;
  }

  .nav-search.active {
  	top: 0;
  }

	.sharliz-logo {
		display: none;
	}

	.sharliz-search {
		right: 0em;
	}

	.sharliz-instagram-footer {
		padding: 0;
	}

	.comment-body {
		padding-left: 120px;
	}

	.sharliz_post_title {
		margin: 20px 0 5px 0;
	}

	.entry-meta {
		margin: 0 0 20px 0;
	}

	.site-sidebar span {
		height: 2px;
		width: 25px;
	}

	.site-sidebar span.two {
		width: 15px;
		position: relative;
		left: 9px;
	}

	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-standard .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.single .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.sharliz-post-img .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format > a {
		height: 290px;
	}

	.nav-search {
    display: inline-block;
	}

	.sharliz-win-sidebar {
		top: 69px;
	}

	.admin-bar .sharliz-win-sidebar {
    top: 115px;
	}

	.nav-search-icon,
	.site-sidebar {
		position: fixed;
		cursor: pointer;
    padding: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    top: 0;
    margin-top: 10px;
    z-index: 999;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
	}

	.widget .widget-title {
		margin-bottom: 20px;
	}

	.sharliz-win-sidebar {
	 height: calc(100% - 67px);
	}

	.nav-search-icon {
		line-height: 15px;
		top: 0px;
	}

	.admin-bar .nav-search-icon {
		top: 46px;
	}

	article {
		float: inherit;
	}

	.site-content {
		margin-top: 0;
	}

	.sharliz-win-sidebar {
		width: 55%;
		right: -56%;
	}

	.single .sharliz-post-title {
		margin-top: 0;
	}

	.also-like-posts li:nth-child(2) {
		padding: 0;
	}

	.also-like-posts li:nth-child(3) {
		padding: 0;
	}

	.sharliz-chess,
	.sharliz-list,
	.sharliz-grid,
	.sharliz-standard {
		float: inherit;
	}

	.sharliz-chess,
	.sharliz-list,
	.sharliz-grid,
	.sharliz-standard {
		margin-top: 30px;
	}

	.sharliz-chess > li,
	.sharliz-list > li,
	.sharliz-grid > li,
	.sharliz-standard > li {
		float: inherit;
	}

	.sharliz-main-navigation {
    background: #fff;
    height: 70px;
    position: fixed;
    z-index: 9990;
    cursor: pointer;
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
     box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
   	-webkit-transition: .2s;
   	-o-transition: .2s;
   	transition: .2s;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
    -ms-overflow-style: none;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
	  overflow: -moz-scrollbars-none;
	}

	.sharliz-main-navigation .nav-area > div > .menu::-webkit-scrollbar {
    width: 0;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
		padding: 0 15px;
		width: 60%;
		position: fixed;
		z-index: 999;
		top: 65px;
		right: -100%;
		cursor: auto;
		background-color: #fff;
		height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}

  .sharliz-main-navigation .nav-area > div > .menu.active {
		 right: 0;
	} 

	.sharliz-nav-button {
		position: fixed;
		padding: 15px;
		right: 15px;
		border: 1px solid #e8e8e8;
		border-radius: 5px;
		margin-top: 10px;
		z-index: 999;
	}

	.sharliz-nav-button span {
		width: 25px;
		display: block;
		height: 2px;
		background-color: #535358;
	}

	.sharliz-nav-button span.two {
	    margin: 5px 0;
	    opacity: 1;
	}

	.nav-search {
		line-height: 60px;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
		list-style: none;
		padding: 30px !important;
		margin: 0;
		text-align: left;
	}

	.sharliz-main-navigation .nav-area > div > .menu ul {
		padding: 0 0 0 15px;
		margin: 0;
		background-color: #fff;
		list-style: none;
	}

	.sharliz-main-navigation .nav-area > div > .menu li {
		line-height: 30px;
		background-color: #fff;
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > ul > li > ul > li:hover,
	.sharliz-main-navigation .nav-area > div > .menu > li > ul > li:hover,
	.sharliz-main-navigation .nav-area > div > .menu > li:hover {
		background-color: #f4f4f4;
	}

	.sharliz-main-navigation .nav-area > div > .menu li .menu-icon:before {
    font-size: 20px;
    margin: 0;
    line-height: normal;
    cursor: pointer;
    color: #222;
    padding: 10px 15px;
    display: inline-block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
	}

	.sharliz-main-navigation .nav-area > div > .menu li .menu-icon.active:before {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.nav-search-icon > i {
		color: #535353;
		width: 30px;
		text-align: center;
	}

	.sharliz-main-navigation .nav-area > div > .menu li .menu-icon {
		float: right;
	}

	.sharliz-main-navigation .nav-area > div > .menu .sub-menu {
		display: none;
	}

	.sharliz-main-navigation .nav-area > div > .menu a {
		font-size: 14px;
		padding: 5px 15px;
		line-height: 30px;
		display: block;
		color: #555;
		letter-spacing: 1px;
		font-weight: 700;
		text-transform: uppercase;
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > ul > li > ul > li:hover > a,
	.sharliz-main-navigation .nav-area > div > .menu > li > ul > li:hover > a,
	.sharliz-main-navigation .nav-area > div > .menu > li:hover > a {
		color: #222;
		padding: 5px 15px 5px 20px;
	}

}

@media ( min-width: 601px ) and ( max-width: 768px ) {
	
	.admin-bar .nav-search-icon,
	.admin-bar .site-sidebar,
	.admin-bar .sharliz-main-navigation {
		top: 46px !important;
	}

	.admin-bar .sharliz-main-navigation .nav-area > div > .menu {
		top: 115px !important;
	}

}

@media ( max-width: 600px ) {

	.also-like-posts .sharliz-post-format .also-post-img {
		height: 335px;
	}


	.admin-bar .nav-search-icon {
		top: 0;
	}

	.sharliz-instagram-feed {
		display: none;
	}

	.sharliz-standard .entry-content-no-img .sharliz-post-excerpt:first-letter,
	.sharliz-chess .entry-content-no-img .sharliz-post-excerpt:first-letter,
	.sharliz-chess .sharliz-post-excerpt:first-letter,
	.sharliz-list .entry-content-no-img .sharliz-post-excerpt:first-letter,
	.sharliz-list .sharliz-post-excerpt:first-letter,
	.sharliz-grid .sharliz-post-excerpt:first-letter,
	.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-excerpt:first-letter,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-excerpt:first-letter, 
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-excerpt:first-letter, 
	.sharliz-standard .sharliz-post-excerpt:first-letter {
		font-size: 48px;
		margin-top: 0;
	}

	.sharliz-featured-image-area {
		height: 350px;
	}

	.subscribers-submit {
		width: 100%;
		display: inline-block;
		float: none;
		margin-top: 15px;
	}

	.subscribers-field,
	.mc4wp-form-fields input {
		width: 100%;
	}

	.sharliz-instagram-footer {
		display: none !important;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
		width: 70%;
	}

  .site-search {
		right: 130px;
		top: 0;
		position: fixed;
		margin: 0;
	}

	.sharliz-win-sidebar {
		width: 65%;
		right: -66%;
	}

	.content_404 input {
		width: 80%;
	}

	.comments-area .children  {
		padding-left: 15px;
	}

	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-standard .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.single .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.sharliz-post-img .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format > a {
		height: 250px;
	}

}

@media ( max-width: 480px ) {

	.page-template-demo .entry-meta {
		margin: 0;
	}

	.sharliz-header-logo {
		margin-bottom: 30px;
	}

	.sharliz-author-box {
		padding: 20px;
	}

	.sharliz-tags-area .tags {
		margin-bottom: 20px;
	}

	.sharliz-post-img,
	.sharliz-post-format {
		float: left;
		width: 100%;
	}

	.entry-content .sharliz-post-share .sharliz-social-share li {
		margin-right: 5px;
	}

	.entry-content .sharliz-post-share .sharliz-social-share li:last-child {
		margin-right: 0;
	}

	.single .entry-content {
		float: left;
		display: block;
	}

	.sharliz-post-img {
		margin-bottom: 20px;
	}

	.single .site-content {
		margin-top: 100px;
	}

	.sharliz-author-box .author-img {
		width: 60%;
		float: none;
		margin: 0 auto 20px auto;
	}

	.also-posts .sharliz-post-title {
		padding: 30px;
	}

	.also-title {
		margin-top: 20px;
	}

	.also-like-posts li:nth-child(1) {
		margin-bottom: 0;
	}

	.comments-area {
		margin-bottom: 0;
	}

	.comments-area,
	.sharliz-author-box {
		margin: 0 0 30px 0;
	}

	.author-title {
		text-align: center;
	}

	.also-like-posts .sharliz-post-format .also-post-img {
		height: 260px;
	}

	.sharliz-post-excerpt {
		overflow: visible;
		float: left;
		width: 100%;
		display: inline-block;
	}

	.sharliz-footer-sidebar-area .widget {
		padding: 15px 0;
	}

	.sharliz-header-logo .sharliz-nav-logo a,
	.sharliz-logo-footer {
	    height: 150px;
	    width: 250px;		
	}

	.sharliz-chess,
	.sharliz-list,
	.sharliz-grid,
	.sharliz-standard {
		margin-top: 0;
	}

	.sharliz-standard .entry-content-no-img .sharliz-post-excerpt:first-letter,
	.sharliz-chess .entry-content-no-img .sharliz-post-excerpt:first-letter,
  .sharliz-chess .sharliz-post-excerpt:first-letter, 
	.sharliz-list .entry-content-no-img .sharliz-post-excerpt:first-letter,
  .sharliz-list .sharliz-post-excerpt:first-letter, 
	.sharliz-grid .sharliz-post-excerpt:first-letter,
	.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-excerpt:first-letter,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-excerpt:first-letter,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-excerpt:first-letter,
	.sharliz-standard .sharliz-post-excerpt:first-letter {
		font-size: 59px;
	}

	.sharliz-post-button {
		margin-bottom: 30px;
	}

	.sharliz-author-name {
		display: none;
	}

	.sharliz-share-area {
		float: left;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
		padding: 15px !important;
	}

	.single .entry-meta,
	.archive .entry-meta,
	.search .entry-meta, 
	.home .entry-meta {
		margin: 0;
	}

	footer.site-footer {
		padding: 30px;
	}

	.sharliz-tags-area ul li {
		margin-right: 5px;
	}

	.sharliz-mobile-title .site-description,
	.sharliz-mobile-title {
		text-align: center;
	}

	.sharliz-mobile-title {
		margin: 0;
	}

	.author-title {
		margin: 0;
	}

	.sharliz-author-box .author-content {
		padding-left: 20px;
	}

	.form-submit input {
		margin-bottom: 0 !important;
	}

	.author-title,
	.comments-title,
	.comment-reply-title {
		margin-bottom: 20px;
	}

	.sharliz-email {
		margin-top: 20px;
	}

	.single .entry-content {
		padding: 20px 0;
	}

	.entry-content .sharliz-post-share .sharliz-social-share li i {
		padding: 15px;
	}

	.sharliz-excerpt-area {
		margin-bottom: 0;
	}

	.sharliz-post-footer {
		text-align: center;
	}

	.sharliz_post_title {
    float: left;
    width: 100%;
    margin: 0 0 5px 0 !important;
	}

	.single	.sharliz_post_title {
    margin: 0 0 15px 0 !important;
	}

	.archive .sharliz-logo-enabled,
	.search .sharliz-logo-enabled {
		margin-top: 10px;
	}

	.sharliz-post-button
	.single .sharliz-post-format {
		margin-bottom: 0;
	}

	.sharliz-standard .sharliz-excerpt-area {
		padding: 0;
	}

	.entry-meta {
		float: left;
		width: 100%;
		margin-bottom: 20px;
	}

	.sharliz-standard .sharliz-post-category,
	.sharliz-list .sharliz-post-category,
	.sharliz-chess .sharliz-post-category,
	.sharliz-grid .sharliz-post-category {
		display: block;
		float: left;
		margin-bottom: 15px;
		width: 100%;
	}

	.sharliz-content .sharliz-social-share > li {
    margin: 0px -5px 0 0;
	}

	.admin-bar .sharliz-nav-featured {
		top: 0;
	}

	.nav-search-icon {
		line-height: 11px;
	}

	li.sharliz-pagination {
		margin-top: 30px !important;
	}

	.sharliz-instagram-footer {
		margin-top: 50px;
	}

	.site-title {
		font-size: 50px;
	}

	.textarea-form,
	.input-form {
		font-size: 13px;
	}

	.sharliz-win-sidebar {
		width: 85%;
		right: -86%;
		padding: 15px 15px 30px 15px;
	}

	.reply {
    position: relative;
	}

	.comments-area .children  {
		padding-left: 0px;
	}

	.sharliz-page-header .sharliz_post_title {
		font-size: 20px;
		margin: 0 !important;
	}

	blockquote,
	.text-q,
	blockquote p,
	body {
		font-size: 15px;
		line-height: 30px;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
		width: 80%;
	}

	.sharliz-main-navigation .nav-area > div > .menu li .menu-icon:before {
    font-size: 14px;
	}

	.sharliz-win-sidebar .rssSummary,
	.sharliz-win-sidebar .widget p,
	.sharliz-win-sidebar .widget a,
	.sharliz-content p {
		font-size: 14px;
		line-height: 22px;
	}

	.sharliz-main-navigation .nav-area > div > .menu a {
		font-size: 13px;
	}

	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-standard .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.single .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.sharliz-post-img .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format > a {
		height: 240px;
	}

}

@media ( max-width: 320px ) {

	.sharliz-tags-area .tags {
		margin-bottom: 0;
	}

	.site-footer .sharliz-social-share li i {
		padding: 5px;
	}

	.sharliz-author-box .author-img {
		margin: 0 auto;
	}

	.comments-area,
	.sharliz-author-box {
		margin: 0 0 20px 0;
	}

	.widget,
	.also-posts .sharliz-post-title {
		padding: 20px;
	}

	.also-title {
		margin-top: 10px;
	}

	.also-like-posts .sharliz-post-format .also-post-img {
		height: 170px;
	}

	footer.site-footer {
		padding: 20px;
	}

  .single .entry-content {
		padding: 20px 0;
	}

	.sharliz-header-logo .sharliz-nav-logo a,
	.sharliz-logo-footer {
    height: 50px;
    width: 200px;
	}

	.sharliz_post_title a,
	.sharliz_post_title {
		font-size: 20px;
	}

	.sharliz-post-button {
		margin-bottom: 0;
	}

	.sharliz-footer-share .sharliz-social-share li a {
		padding: 0;
	}

	.sharliz-post-footer {
		display: none;
	}

	.entry-content .sharliz-post-share .sharliz-social-share li i {
		padding: 10px 10px;
	}

  .about-img {
		height: 120px;
	}

	.sharliz-social-share li i {
		padding: 20px;
	}

	.sharliz-author-box .author-content {
		width: 100%;
		padding: 0;
		margin-top: 15px;
	}

	.author-title {
		margin-top: 5px;
	}

	.comment-body {
		padding: 100px 0 0 0;
	}

	.sharliz_latest_posts_widget p {
    display: none;
	}

	.post-image {
    width: 40%;
	}

	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-standard .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.single .sharliz-post-format.post-gallery .sharliz-slide-item > span,
	.sharliz-post-img .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format > a {
    height: 190px;
	}

}

@media ( min-width: 769px ) {

	.single .sharliz-post-format.post-gallery .sharliz-slide-item > span {
		height: 545px;
	}

	.post-gallery .owl-next .sharliz-next {
		right: 0;
	}

	.post-gallery .owl-prev .sharliz-prev {
		left: 0;
	}

	.nav-search-icon {
		z-index: 999;
		padding: 10px;
		cursor: pointer;
		top: 50% !important;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.sharliz-post-share {
		float: right;
	}

	.also-post-img {
		overflow: hidden;
		display: block;
	}

	.nav-search-icon:hover > i {
		color: #000;
	}

	.site-sidebar:hover span {
		background-color: #000;
	}

	.sharliz-win-sidebar {
		top: 90px !important;
		height: calc(100% - 90px);
	}

	.admin-bar .sharliz-win-sidebar {
		top: 120px !important;
		height: calc(100% - 120px);
	}

	.site-search,
	.site-sidebar {
		float: right;
		line-height: 50px;
		top: 0 !important;
		position: relative;
		display: inline-block;
	}

	/* Desktop nav */

	.nav-area {
    position: relative;
	}

	.sharliz-main-navigation {
		background: #fff;
		height: 90px;
		position: fixed;
		z-index: 9999;
		box-shadow: 0px 1px 5px rgba(190, 190, 190, 0.47);
		-webkit-box-shadow: 0px 1px 5px rgba(190, 190, 190, 0.47);
		-moz-box-shadow: 0px 1px 5px rgba(190, 190, 190, 0.47);
		width: 100%;
		top: 0;
  }

	.sharliz-main-navigation  {
		top: 0 !important;
	}

	.admin-bar .sharliz-main-navigation {
		top: 32px !important;
	}

	.sharliz-main-navigation {
		text-align: center;
	}

	.sharliz-main-navigation .nav-area > div > .menu {
		padding: 0;
		text-align: left;
		top: 0 !important;
		display: inline-block;
		list-style: none;
		line-height: 87px;
		padding-left: 15px;
		position: relative;
		z-index: 1000;
		margin: 0;
	}

	.nav-area > div > .menu li a {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
    display: inline-block; 
    position: relative;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li {
		position: relative;
		float: left;
		margin-right: 15px;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li:last-child {
		margin: 0;
	}

	.sharliz-main-navigation .sub-menu {
		padding: 0;
		display: none;
		list-style: none;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li .sub-menu li {
		background-color: #fff;
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li:hover > .sub-menu,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li:hover > .sub-menu,
	.sharliz-main-navigation .nav-area > div > .menu > li:hover > .sub-menu {
		display: block;
	}

	.sharliz-main-navigation .nav-area > div > .menu .sub-menu a {
    display: block;
    width: 100%;
    line-height: 13px;
    position: relative;
    z-index: 2;
    padding: 15px 10px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
	}

	.sharliz-main-navigation .nav-area > div > .menu .sub-menu li {
		border-bottom: 1px solid #f4f4f4;
	}

	.sharliz-main-navigation .nav-area > div > .menu .sub-menu {
    padding: 0;
    position: absolute;
    left: 0;
    min-width: 210px;
    background-color: #fff;
	}

	.sharliz-main-navigation .nav-area > div > .menu > .sub-menu {
		padding: 20px 0 0 0;
	}

	.menu li .menu-icon:before {
		background-color: rgba(255,255,255,0);
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li > .sub-menu,
	.sharliz-main-navigation .nav-area > div > .menu li .sub-menu > li .sub-menu {
		left: 210px;
		top: 0;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li .menu-icon {
		float: right;
		display: inline-block;
	}

	.sharliz-main-navigation .nav-area > div > .menu  li .sub-menu .menu-icon {
		line-height: 40px;
		float: right;
		padding-right: 12px;
		margin-left: 0;
		display: inline-block;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li:hover,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li:hover,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:hover {
		background-color: #8db392;
		border-color: #8db392;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li:hover > .menu-icon:before,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li:hover > .menu-icon:before,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:hover > .menu-icon:before {
		color: #fff;
	}

	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li:hover > a,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li:hover > a,
	.sharliz-main-navigation .nav-area > div > .menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:hover > a {
		color: #fff;
		padding: 15px 10px 15px 20px;
	}

	.sharliz-search {
		display: inline-block;
		line-height: 35px;
	}

	.sharliz-search input {
		outline: none;
		border: none;
		border-bottom: 1px #7d7d7d;
	}

	.fix-nav {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 999;
	}

	.admin-bar .fix-nav {
		top: 32px !important;
	}

	/* end */

	.sharliz-share {
    position: absolute;
    top: 50%;
    display: inline-block;
    -webkit-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
     -o-transform: translateY(-50%);
     transform: translateY(-50%);
    left: 5%;
	}

}

@media ( min-width: 900px ) {

	.sharliz-social-share li {
		display: inline-block;
		margin: 0; 
	}

	.sharliz-social-share {
		margin: 0;
		padding: 0;
		display: inline-block;
		list-style: none;
	}

	.sharliz-share-area {
		display: inline-block;
	}

}

@media ( min-width: 993px ) {

	.sharliz-featured-area .sharliz-slide-item {
		height: 540px;
	}

	.sharliz-chess > li:nth-child(2n) .sharliz-post-img {
		float: right;
	}

	.sharliz-also-item {
		width: 33.333%;
	}

	.sharliz-left-sidebar {
		padding-right: 0;
		padding-left: 45px;
		float: right;
	}

	.sharliz-right-sidebar .also-like-posts .sharliz-post-format .also-post-img,
	.sharliz-left-sidebar .also-like-posts .sharliz-post-format .also-post-img {
		height: 145px;
	}

	.sharliz-right-sidebar {
		padding-left: 0;
		padding-right: 45px;
		float: left;
	}

	.sharliz-sidebar-area {
		padding: 0;
		display: inline-block;
	}

	.sharliz-grid .sharliz-post-button {
		margin-bottom: 0;
	}

	.sharliz-grid .sharliz_post_title {
		margin-bottom: 5px;
	}

	.sharliz-grid > li {
		float: left;
		width: 50%;
		padding-right: 22.5px;
	}

	.sharliz-grid > li:nth-child(2n) {
		padding-left: 22.5px;
		padding-right: 0;
	}

	.sharliz-first-post .sharliz-grid > li:not(:first-child):nth-child(2n+1) {
		padding: 0 0 0 22.5px;
	}

	.sharliz-grid .sharliz_post_title a,
	.sharliz-grid .sharliz_post_title,
	.sharliz-chess .sharliz_post_title a,
	.sharliz-chess .sharliz_post_title, 
	.sharliz-list .sharliz_post_title a,
	.sharliz-list .sharliz_post_title {
		font-size: 25px;
	}

	.sharliz-chess .sharliz-list-date,
	.sharliz-chess .sharliz-list-author,
	.sharliz-list .sharliz-list-date,
	.sharliz-list .sharliz-list-author {
		display: inline-block;
		font-size: 13px;
		font-style: italic;
		color: #aaa !important;
		letter-spacing: 1px;
	}

	.sharliz-chess .sharliz-list-category,
	.sharliz-chess .sharliz-list-author a,
	.sharliz-chess .sharliz-post-button, 
	.sharliz-list .sharliz-list-category,
	.sharliz-list .sharliz-list-author a,
	.sharliz-list .sharliz-post-button {
		display: inline-block;
	}

	.sharliz-chess .sharliz_post_title,
	.sharliz-list .sharliz_post_title {
		margin: 0;
	}

	.sharliz-chess .sharliz-list-category,
	.sharliz-list .sharliz-list-category {
		margin-bottom: 5px;
	}

	.sharliz-list-author,
	.sharliz-list-author a {
		color: #aaa;
		font-style: italic;
	}

	.sharliz-chess .entry-meta,
	.sharliz-list .entry-meta {
		text-align: left;
	}

	.sharliz-chess .sharliz-post-button,
	.sharliz-list .sharliz-post-button {
		margin-bottom: 0;
	}

	.sharliz-chess .entry-content,
	.sharliz-chess .sharliz-post-img,
	.sharliz-list .entry-content,
	.sharliz-list .sharliz-post-img {
		width: 50%;
	}

	.sharliz-chess .entry-content {
    right: 0;
	}

	.sharliz-chess li:nth-child(2n) .entry-content {
    left: 0;
	}

	.sharliz-chess .entry-content {
    width: 50%;
    top: 0;
    bottom: 0;
    position: absolute;
    text-align: center;
	}

	.sharliz-chess .sharliz-content,
	.sharliz-list .entry-content {
		padding-left: 30px;
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-content,
	.sharliz-chess .entry-content-no-img .sharliz-content {
		padding-left: 0;
		position: relative;
		top: 0;
		right: 0;
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%)		
	}

	.sharliz-chess > li:nth-child(2n) .sharliz-content {
		padding-left: 0;
		padding-right: 30px;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .entry-content,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img ,
	.sharliz-first-post .sharliz-list > li:first-child .entry-content,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img {
		width: 100%;
	}

	.sharliz-first-post .sharliz-grid > li:first-child .sharliz_post_title a,
	.sharliz-first-post .sharliz-grid > li:first-child .sharliz_post_title,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz_post_title a,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz_post_title,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz_post_title a,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz_post_title {
		font-size: 30px;
	}

  .sharliz-first-post .sharliz-chess > li:first-child .entry-content,
	.sharliz-first-post .sharliz-list > li:first-child .entry-content {
		padding: 0;
		position: relative;
		top: initial;
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
	}

  .sharliz-chess .sharliz-post-footer,
	.sharliz-list .sharliz-post-footer {
		display: none;
	}

	.sharliz-chess .entry-content-no-img .sharliz-post-footer,
	.sharliz-list .entry-content-no-img .sharliz-post-footer {
		display: block;
	}

	.sharliz-grid .sharliz-post-footer,
	.sharliz-chess .sharliz-post-date,
	.sharliz-chess .sharliz-author-name,
	.sharliz-chess .sharliz-post-category,
	.sharliz-list .sharliz-post-date,
	.sharliz-list .sharliz-author-name,
	.sharliz-list .sharliz-post-category {
		display: none;
	}

	.sharliz-chess .entry-content-no-img .entry-meta,
	.sharliz-list .entry-content-no-img .entry-meta {
		text-align: center !important;
		margin-bottom: 15px !important;
	}

	.sharliz-chess .entry-content-no-img .sharliz-post-date,
	.sharliz-chess .entry-content-no-img .sharliz-author-name,
	.sharliz-chess .entry-content-no-img .sharliz-post-category,
	.sharliz-list .entry-content-no-img .sharliz-post-date,
	.sharliz-list .entry-content-no-img .sharliz-author-name,
	.sharliz-list .entry-content-no-img .sharliz-post-category {
		display: inline-block;
	}

	.sharliz-chess .entry-content-no-img .sharliz-post-button,
	.sharliz-list .entry-content-no-img .sharliz-post-button {
		margin-bottom: 30px;
	}

	.sharliz-chess .entry-content-no-img .sharliz-excerpt-area,
	.sharliz-list .entry-content-no-img .sharliz-excerpt-area {
		text-align: center !important;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .entry-meta,
	.sharliz-first-post .sharliz-list > li:first-child .entry-meta {
		text-align: center;
		margin-bottom: 15px;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-button,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-button {
		margin-bottom: 30px;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-excerpt-area,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-excerpt-area {
		text-align: center;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz_post_title,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz_post_title {
		margin-top: 20px;
		text-align: center;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-footer,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-footer,
	.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-footer {
		display: block;
	}

	.sharliz-first-post .sharliz-grid > li:nth-child(2n) {
		padding: 0 22.5px 0 0 !important;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-list-date,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-list-author,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-category.sharliz-list-category,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-list-date,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-list-author,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-category.sharliz-list-category {
		display: none;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-date,
	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-author-name,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-date,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-author-name {
		display: inline-block;
	}

	.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-category,
	.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-category {
		display: block;
	}

	.sharliz-first-post .sharliz-grid > li:first-child {
		width: 100%;
		padding: 0;
	}

	.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-button {
		margin-bottom: 30px;
	}

	.sharliz-chess .sharliz-excerpt-area,
	.sharliz-chess .sharliz-post-category.sharliz-list-category,
	.sharliz-chess .entry-meta .sharliz_post_title,
	.sharliz-list .sharliz-excerpt-area,
	.sharliz-list .sharliz-post-category.sharliz-list-category,
	.sharliz-list .entry-meta .sharliz_post_title {
		text-align: left;
	}

	.sharliz-chess > li:nth-child(2n) .sharliz-content p,
	.home .sharliz-chess > li:nth-child(2n) .sharliz-post-excerpt,
	.sharliz-chess > li:nth-child(2n) .entry-meta,
	.sharliz-chess > li:nth-child(2n) .sharliz-excerpt-area,
	.sharliz-chess > li:nth-child(2n) .sharliz-post-category.sharliz-list-category,
	.sharliz-chess > li:nth-child(2n) .entry-meta .sharliz_post_title {
		text-align: right;
	}

	.sharliz-chess > li:nth-child(2n) .entry-content-no-img .sharliz-content p,
	.home .sharliz-chess > li:nth-child(2n) .entry-content-no-img .sharliz-post-excerpt {
		text-align: left;
	}

	.sharliz-chess .sharliz-list-date,
	.sharliz-chess .sharliz-list-author,
	.sharliz-chess .sharliz-post-category.sharliz-list-category,
	.sharliz-list .sharliz-list-date,
	.sharliz-list .sharliz-list-author,
	.sharliz-list .sharliz-post-category.sharliz-list-category {
		display: inline-block;
	}

	.sharliz-sidebar {
		padding-left: 0;
		padding-right: 45px;
		float: left;
		display: inline-block;
	}

	.sharliz-page-sidebar {
		padding-right: 0;
		padding-left: 0;
		display: inline-block;
	}

	/* Descktop nav*/

	.sharliz-nav-featured .site-sidebar {
		top: 50% !important;
		padding: 15px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.sharliz-site-share {
		position: fixed;
		left: 0;
		z-index: 99999;
		top: 50%;
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}

	.sharliz-site-share.active {
		visibility: visible;
		opacity: 1;
	}

	.sharliz-site-share li:hover i {
		padding: 20px 25px;
	}

	.sharliz-site-share ul {
		margin: 0;
		padding: 0;
		width: 60px;
		display: inline-block;
		list-style: none;
	}

	.sharliz-site-share ul li {
		line-height: 50px;
		display: block;
		margin-right: 10px;
	}

	.sharliz-site-share ul li i:before {
		width: 20px;
		height: 15px;
		display: inline-block;
		font-size: 15px;
	}

	.also-posts {
		width: 100%;
	}

 .also-posts {
		margin-top: 30px;
	}

	.sharliz-excerpt-area {
		display: inline-block;
	}

	.sharliz-standard .sharliz-post-format span {
		height: 455px;
	}

	.single .sharliz-post-format > span,
	.sharliz-standard .sharliz-post-format span,
	.sharliz-post-img .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format > a {
		height: 455px;
	}

	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar .sharliz-standard .sharliz-post-format span,
	.sharliz-sidebar .sharliz-standard .sharliz-post-img .sharliz-post-format > a {
		height: 370px;
	}

	.sharliz-win-sidebar {
		width: 35%;
		right: -36%;
	}

	.sharliz-sticky-header {
		margin-top: 135px;
	}

	.sharliz-slider-container {
		display: block;
	}

	.sharliz-content-right {
		float: right;
	}

	.sharliz-win-sidebar > section:last-child {
		margin-bottom: 0;
	}

  .sharliz-comment-area {
		width: 47.7%;
	}

	.single .sharliz-post-format > span {
    	height: 370px;
	}

	.sharliz-chess .sharliz-post-format span,
	.sharliz-chess .sharliz-post-img .sharliz-post-format > a,
	.sharliz-list .sharliz-post-format span,
	.sharliz-list .sharliz-post-img .sharliz-post-format > a {
		height: 250px;
	}

	.home .sharliz-chess .entry-meta,
	.home .sharliz-list .entry-meta {
		margin-bottom: 0;
	}

	.sharliz-grid .sharliz-post-format span,
	.sharliz-grid .sharliz-post-img .sharliz-post-format > a {
		height: 220px;
	}

	.sharliz-full-width .sharliz-grid .sharliz-post-format span,
	.sharliz-full-width .sharliz-grid .sharliz-post-img .sharliz-post-format > a {
		height: 250px;
	}

	.sharliz-full-width.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-full-width.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-full-width .sharliz-chess .sharliz-post-format span,
	.sharliz-full-width .sharliz-chess .sharliz-post-img .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-full-width .sharliz-list .sharliz-post-format span,
	.sharliz-full-width .sharliz-list .sharliz-post-img .sharliz-post-format > a {
		height: 300px;
	}

}

@media ( min-width: 1200px ) {

	.sharliz-featured-area .sharliz-slide-item {
		height: 700px;
	}

	.sharliz-standard .sharliz-post-format span,
	.sharliz-post-img .sharliz-post-format > span,
	.sharliz-post-img .sharliz-post-format > a {
		height: 455px;
	}

	.sharliz-right-sidebar .also-like-posts .sharliz-post-format .also-post-img,
	.sharliz-left-sidebar .also-like-posts .sharliz-post-format .also-post-img {
		height: 175px;
	}

	.sharliz-chess .sharliz-post-format span,
	.sharliz-chess .sharliz-post-img .sharliz-post-format > a,
	.sharliz-list .sharliz-post-format span,
	.sharliz-list .sharliz-post-img .sharliz-post-format > a {
		height: 270px;
	}

	.sharliz-full-width .sharliz-chess .sharliz-post-format span,
	.sharliz-full-width .sharliz-chess .sharliz-post-img .sharliz-post-format > a,
	.sharliz-full-width .sharliz-list .sharliz-post-format span,
	.sharliz-full-width .sharliz-list .sharliz-post-img .sharliz-post-format > a {
		height: 360px;
	}

	.sharliz-grid .sharliz-post-img .sharliz-post-format span,
	.sharliz-grid .sharliz-post-img .sharliz-post-format > a {
		height: 260px;
	}

	.sharliz-full-width .sharliz-grid .sharliz-post-format span,
	.sharliz-full-width .sharliz-grid .sharliz-post-img .sharliz-post-format > a {
		height: 310px;
	}

	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-sidebar.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-img .sharliz-post-format > a,
	.sharliz-sidebar .sharliz-standard .sharliz-post-format span,
	.sharliz-sidebar .sharliz-standard .sharliz-post-img .sharliz-post-format > a {
		height: 455px;
	}

	.sharliz-comment-area {
		width: 48.6%;
	}

	.sharliz-left-sidebar .sharliz-comment-area,
	.sharliz-right-sidebar .sharliz-comment-area {
		width: 48.1%;
	}

  	.nav-search.active {
    right: 0em;
	}

	.also-post-img {
		overflow: hidden;
		display: block;
	}

	.sharliz-win-sidebar {
		width: 25%;
	}

	.sharliz-full-width.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format > a,
	.sharliz-full-width.sharliz-first-post .sharliz-grid > li:first-child .sharliz-post-format span,
	.sharliz-full-width.sharliz-first-post .sharliz-list > li:first-child .sharliz-post-format span,
	.sharliz-full-width.sharliz-first-post .sharliz-chess > li:first-child .sharliz-post-format span,
	.sharliz-full-width .sharliz-post-format span,
	.sharliz-full-width .sharliz-post-format > a {
    	height: 640px;
	}

}