/*
Theme Name: TedwinaPro
Theme URI: http://www.ar-themes.com/tedwinapro
Author: ar-themes.com
Author URI: http://www.ar-themes.com/
Description: TedwinaPro theme is designed and developed for bloggers. TedwinaPro has a load of features: numbered pagination, custom widgets, social icons and much more!
Version: 2.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tedwinapro
Domain Path:   /languages/
tedwinapro is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc and Bootstrap framework getbootstrap.com .
*/

/*Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Reset
2. Typography
3. Elements
4. Forms
5. Header
6. Accessibility
7. Alignments
8. Clearings
9. Widgets
10. Content
11. Comments
12. Media
13. Extras
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}
body {
	background: #F8F3F0; /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol,
ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}
a {
	color: #e86741;
	text-decoration: none;
	-moz-transition: .25s ease, margin .25s ease;
	-webkit-transition: .25s ease, margin .25s ease;
	-o-transition: .25s ease, margin .25s ease;
	-ms-transition: .25s ease, margin .25s ease;
	transition: .25s ease, margin .25s ease;
}
a:visited {
}
a:hover,
a:focus,
a:active {
	color: #F96E45;
}
/*--------------------------------------------------------------
2. Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #AD8D79;
	font-family: 'Roboto', helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0.6em 0;
	font-family: 'Roboto', Arial, sans-serif;
	color: #5c5146;
	line-height: 1.62em;
	letter-spacing: 1px;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 14px;
}
p {
	margin-bottom: 1.5em;
}
b,
strong {
	font-weight: bold;
}
dfn,
cite,
em,
i {
	font-style: italic;
}
blockquote {
	font-family: Georgia, "URW Bookman L", serif;
	font-style: italic;
	margin: 0 3em 1em 4em;
	border-left: 5px solid #4daf7b;
	padding: .5em .5em .5em 2em;
	background: #FDFCF9;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}
abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
/*--------------------------------------------------------------
3. Elements
--------------------------------------------------------------*/
hr {
	background-color: #AD8D79;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul,
ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
	text-align: center;
}
table tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.05);
}
th {
	font-weight: bold;
}
/*--------------------------------------------------------------
4. Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	background: #85BA9E;
	color: #fff;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 2;
	padding: 0.5em 1em .3em;	
	border-left: 5px solid rgba(0, 0, 0, 0.05);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	color: #fff;
	background-color: rgba(84, 75, 65, 1);
	-moz-transition: .25s ease, margin .25s ease;
	-webkit-transition: .25s ease, margin .25s ease;
	-o-transition: .25s ease, margin .25s ease;
	-ms-transition: .25s ease, margin .25s ease;
	transition: .25s ease, margin .25s ease;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	color: #fff;
	background-color: rgba(84, 75, 65, 1);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	border: 1px solid #f4ece7;
	color: #8D7F62;
	font-size: 16px;
	line-height: 2;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}
/*--------------------------------------------------------------
5.	Header
--------------------------------------------------------------*/
#page {
	border-top: 5px solid #4daf7b;
}
#masthead {
	margin-top: 2%;
}
a.logo {
	display: inline-block;
	float: left;
	line-height: 120px;
	padding-right: 15px;
}
.site-branding {
	float: left;
	margin: 15px 0;
}
h1.site-title {
	margin: 0;
}
.site-title a {
	font-size: 30px;
	font-size: 3rem;
	text-decoration: none;
	color: #5c5146;
}
.site-description {
	font-size: 13px;
	font-size: 1.3rem;
	color: #5c5146;
	margin-bottom: 0;
}
#header-icons #searchform {
	float: right;
}
#header-icons .fa-search:before {
	position: absolute;
	top: 47px;
	right: 10px;
	font-size: 20px;
	color: rgb(197, 189, 170);
	pointer-events: none;
	z-index: 999;
}
#header-icons #searchform .submit {
	display: none;
}
#header-icons #searchform input#s {
	display: inline-block;
	width: 0;
	height: 40px;
	color: #8D7F62;
	background: transparent;
	margin: 0;
	padding: 0px 19px;
	text-indent: 16px;
	border-color: rgb(197, 189, 170);
	border-radius: 500px;
	position: absolute;
	right: 0;
	top: 38px;
	-webkit-transition: width 400ms ease;
	-moz-transition: width 400ms ease;
	-o-transition: width 400ms ease;
	-ms-transition: width 400ms ease;
	transition: width 400ms ease;
	cursor: pointer;
	opacity: 1;
}
#header-icons #searchform input#s:focus {
	width: 261px;
	cursor: text;
	z-index: 99;
	background-color: #fff;
}
#social-icons {
	margin-top: 3px;
	position: absolute;
	right: 44px;
	top: 35px;
}
#social-icons a {
	color: #fff;
	display: inline-block;
	background: #AD8D79;
	width: 40px;
	height: 40px;
	line-height: 30px;
	text-align: center;
	font-size: 2.2rem;
	padding: 6px;
	border-radius: 500px;
	text-decoration: none;
}
#social-icons .fa-facebook:hover {
	background: #4a6ea0;
}
#social-icons .fa-twitter:hover {
	background: #06abeb;
}
#social-icons .fa-pinterest:hover {
	background: #b62b28;
}
#social-icons .fa-instagram:hover {
	background:  #517fa4;
}
#social-icons .fa-github:hover {
	background:  #333;
}
#social-icons .fa-youtube:hover {
	background:  #bb0000;
}
#social-icons .fa-flickr:hover {
	background:  #ff0084;
}
#social-icons .fa-linkedin:hover {
	background: #007bb6;
}
#social-icons .fa-dribbble:hover {
	background: #ea4c89;
}
#social-icons .fa-whatsapp:hover {
	background: #25d366;
}
#social-icons .fa-snapchat:hover {
	background: #fffc00;
}
#social-icons span {
	display: none;
}
/* Menus */
.main-navigation {
	margin: 30px 0;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	background: #fff;
}
.main-navigation ul#access {
	list-style: none;
	max-width: 1140px;
	display: table;
	table-layout: fixed;
	float: none;
	margin: 0 auto;
	box-shadow: none;
}
#access li {
	float: left;
	position: relative;
}
#access li:first-child a {
	border-left: 1px solid #f4ece7;
}
#access a {
	display: block;
	color: #7b6d5e;
	text-decoration: none;
	font-size: 1.7rem;
	border-right: 1px solid #f4ece7;
	border-bottom: 3px solid transparent;
	padding: 2.1em 1.2em;
	-moz-transition: background-color .25s ease, margin .25s ease;
	-webkit-transition: background-color .25s ease, margin .25s ease;
	-o-transition: background-color .25s ease, margin .25s ease;
	-ms-transition: background-color .25s ease, margin .25s ease;
	transition: background-color .25s ease, margin .25s ease;
}
#access a:hover,
#access a:focus,
#access a:active {
	color: #e86741;
	background-color: #f8f3f0;
	border-bottom: 3px solid #4daf7b;
}
#access .dropdown-menu {
	padding: 0;
	border: none;
	border-radius: 0;
}
#access ul.dropdown-menu a {
	width: 200px;
	padding: 1em 1.2em;
	border: none;
	overflow: hidden;
}
.main-navigation li:hover > a,
.main-navigation li:focus > a,
.main-navigation li:active > a {
	color: #e86741;
	background-color: #f8f3f0;
	border-bottom: 3px solid #4daf7b;
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
/*--------------------------------------------------------------
6. Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.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: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}
/*--------------------------------------------------------------
7. Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}
/*--------------------------------------------------------------
8. Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}
/*--------------------------------------------------------------
9. Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 30px;
	line-height: 2em;
	font-size: 16px;
	background: #fff;
	padding-bottom: 20px;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
.widget .widget-title {
	font-family: 'Roboto', helvetica, sans-serif;
	font-weight: normal;
	margin: 0 0 20px 0;
	color: #FFFFFF;
	font-size: 25px;
	font-size: 2.5rem;
	line-height: 55px;
	background: #AD8D79;
	padding: 13px 30px;
	border-bottom: 7px solid rgba(0, 0, 0, 0.05);
}
.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.widget ul li {
	margin: 0;
	padding: 0 0 0 17px ;
	border-bottom: 1px dotted #F8F3F0;
}
.widget ul li:last-child {
	border-bottom: none;
}
.widget ul li a {
	display: inline-block;
	color: #7b6d5e;
	padding: 10px 15px 10px 32px;
	text-decoration: none;
}
.widget ul li:hover {
	background-color: #f8f3f0;
}
.widget ul li:hover a {
	color: #e86741;
}
/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}
/* Search widget */
.widget_search {
	padding: 30px 38px 30px 30px;
}
.widget_search input[type="search"] {
	width: 100%;
	text-indent: 25px;
	color: #8D7F62;
}
.widget_search label {
	width: 100%;
	position: relative;
}
.widget_search label:before {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	content: "\f002";
	position: absolute;
	top: 5px;
	left: 9px;
	color: #E2CCBE;
}
.widget_search input[type="submit"] {
	display: none;
}
::-webkit-input-placeholder {
   color: #E2CCBE;
}
:-moz-placeholder { /* Firefox 18- */
   color: #f4ece7;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #f4ece7;  
}
:-ms-input-placeholder {  
   color: #f4ece7;  
}
.widget_search .widget-title {
	display: none;
}
/* Author Bio Widget */
.widget_author_biography {
	background: #AD8D79;
	border-bottom: none;
	padding: 0;
}
.widget_author_biography .widget-title {
	background: transparent;
	border-bottom: none;
	text-align: center;
	margin: 0 0 10px 0;
}
.widget_author_biography .author-bio-img {
	text-align: center;
	border-radius: 50%;
	border: 7px solid rgba(0, 0, 0, 0.05);
	width: 140px;
	height: 140px;
	padding: 0;
	margin: 0 auto;
}
.widget_author_biography .author-bio-img img {
	width: 125px;
	height: 125px;
	border-radius: 50%;
}
.widget_author_biography .author-bio-desc {
	padding: 20px 10px;
	color: #fff;
	text-align: center;
}
.author-more-info a {
	display: block;
	color: rgba(0, 0, 0, 0.40);
	padding: 0px 0px 20px 0px;
	font-weight: bold;
	text-align: center;
}
#author-social-icons {
	background: rgba(0, 0, 0, 0.15);
	text-align: center;
}
#author-social-icons #social-icons {
	margin: 0;
  	position: relative;
  	right: auto;
  	left: auto;
}
#author-social-icons #social-icons a {
	background: rgba(0, 0, 0, 0.15) !important;
	margin: 5px;
}
/* Twitter Widget */
#secondary .widget_oauth_twitter_widget .widget-title {
	background-color: #06abeb;
	line-height: 55px;

}
.widget_oauth_twitter_widget .widget-title:before {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f099";
	display: block;
	font-size: 60px;
	float: right;
	padding-left: 10px;
}
.oauth-twitter-tweet {
	padding: 10px 32px 10px 15px;
}
.oauth-twitter-tweet-time {
	padding: 0px 32px 10px 15px;
	font-size: 14px;
	font-style: italic;
	color: rgb(171, 171, 171);
}

/* Posts List Widget */
.widget-entries {
	padding: 0 20px;
}

.widget-entries .entry-title {
	font-size: 14px;
	margin-bottom: 0;
}
.widget-entries .entry-date {
	font-size: 12px;
}

.widget-entries .entry-thumbnail img {
	border-radius: 4px;
}
/* Ads Widget */
.widget_125x125_advertisement,
.widget_300x250_advertisement {
	border-bottom: none;
    background: transparent;
    box-shadow: none;
}
.advertisement-content {
	text-align: center;
}

.advertisement-content a.single_ad_125x125 {
    display: inline-block;
    margin: 1%;
    text-align: center;
}
/* Instagram Widget */
#secondary .wpmi-list a {
	margin: 0;
	padding: 0;
}
#secondary .wpmi-list  li{
	padding: 0 20px 20px;
}
#secondary .wpmi-list  li:hover {
	background: none;
}
#secondary .wpmi-list img {
	border-radius: 4px; 
}
#secondary .wpmi-me {
	position: relative;
    padding: 20px 0 0;
    text-align: center;
}
#secondary .wp-my-instagram .widget-title:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f16d";
    display: block;
    font-size: 60px;
    float: left;
    padding-right: 10px;
}
#secondary .wp-my-instagram .widget-title {
    background-color: #517fa4;
    line-height: 55px;
}
#instagram-gallery .wpmi-me {
	display: none;
}
/* Tags Cloud Widget */
.widget_tag_cloud .tagcloud {
	text-align: center;
}
.widget_tag_cloud a {
	background-color: #f7f1ed;
    color: #887e77;
    margin: 3px;
    display: inline-block;
    padding: 2px 11px;
    font-size: 12px !important;
    text-decoration: none;
    border-radius: 4px;
}
.widget_tag_cloud a:hover {
	color: #fff;
	background-color: #e86741;
}

/* Recent comments Widget */
.widget_recent_comments_widget li {
	padding: 5px 20px !important;
}
.widget_recent_comments_widget  .tab-item-avatar {
	float: left;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.widget_recent_comments_widget li a {
	padding: 0 !important;
}
.widget_recent_comments_widget li img {
	display: block;
    border-radius: 50%;
    margin: 0;
    padding-top: 5px;
}
.widget_recent_comments_widget  .tab-item-inner {
	margin-left: 75px;
}
.widget_recent_comments_widget  .tab-item-name {
	font-size: 15px;
	color: #948982;
}
.widget_recent_comments_widget .tab-item-comment {
	font-size: 13px;
    line-height: 20px;
}
/*--------------------------------------------------------------
10. Content
--------------------------------------------------------------*/
#content #primary,
#content #secondary {
	margin: 3em auto;
}
#main .hentry {
	position: relative;
	background: #fff;
	padding: 0;
	margin: 0 0 3em 0;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
.posts-list.twocol-style  { margin: 0 -15px; }
#main .hentry.twocol {
	width: 50%;
	background: transparent;
	margin: 0;
	box-shadow: none;
}
#main .hentry.twocol .post-wrap {
	margin: 0 15px 30px;
	background: #fff;
	padding: 0;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
#main .hentry.twocol:nth-of-type(2n) .post-wrap {
}
#main .hentry.twocol .entry-header .entry-thumbnail {
	height: 200px;
}
.hentry.twocol .entry-footer .entry-more, 
.hentry.twocol .entry-footer .entry-date, 
.hentry.twocol .entry-footer .entry-category, 
.hentry.twocol .attachment-size, 
.hentry.twocol .entry-footer .comments-link, 
.hentry.twocol .entry-footer .entry-views {
	width: 100%;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    padding-left: 2em;
    text-align: left;
}
.single .format-audio .entry-header,
.single .format-video .entry-header {
	padding: 2.5em 2.5em .5em 2.5em;
	position: relative;
	background: none;
}
.format-audio .entry-header,
.format-video .entry-header {
	padding: 2.5em;
	background: #333;
}
.format-audio .entry-header .entry-title, 
.format-video .entry-header .entry-title {
	padding: 0;
}
.format-audio .entry-attachment iframe,
.format-video .entry-attachment iframe {
	margin-bottom: -8px;
}
.format-audio .entry-header  .entry-title a,
.format-video .entry-header .entry-title a,
.single .format-audio  .entry-header .entry-title a:hover,
.single .format-video  .entry-header .entry-title a:hover {
	color: #fff !important;
}
.entry-header .entry-title, 
.entry-header .entry-title a,
.single .format-audio  .entry-header .entry-title a,
.single .format-audio  .entry-header .entry-title a {
	font-size: 26px;
	text-decoration: none;
	line-height: 2;
	color: #5c5146;
	margin: 0;
}

.entry-header .entry-title {
	font-size: 26px;
	padding: 70px 40px 0 40px;
}
.entry-header .entry-thumbnail {
	margin-bottom: -35px;
}

.mejs-container, .mejs-embed, .mejs-embed body, .mejs-container .mejs-controls {
	background: #444 !important;
}
.entry-header .entry-title a:hover {
	color: #e86741;
}

.entry-header .post-date {
    background: transparent url(img/ribbon-date.png) no-repeat;
    position: absolute;
    text-align: center;
    padding-top: 15px;
    overflow: hidden;
    width: 56px;
    height: 64px;
    top: -3px;
    left: 20px;
}
.entry-header .post-date {
	padding-top: 15px;
    line-height: 1em;
    display: block;
    font-weight: bolder;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
}

.entry-header .post-date .date  {
	display: block;
	font-size: 18px;
	padding-bottom: 5px;
}
#main .entry-content,
#main .entry-summary {
	padding: .5em 40px 1em 40px;
	margin: 0;
	font-size: 15px;
	line-height: 2.2;
	color: #8E8071;
}
.page-header {
	padding: 10px 40px;
	margin: 0 0 3em 0 !important;	
	background: #4daf7b;
	margin: 0;
	border-bottom: none;
	color: #fff;
}
.page-header h1 {
	color: #fff;
}
.page-content {
	background: #fff;
	margin: 0 0 3em 0;
	padding: 1em 2.5em;
	line-height: 1.8;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}
.wow {
	visibility: hidden;
}
.sticky {
	display: block;
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.page-links a > span, 
.post-tags a {
	margin: 5px;
	padding: 2px 8px;
	background: #BABABA;
	color: #fff;
}
.page-links span {
	padding: 2px 8px;
	background-color: #545353;
	color: #fff;
}
.page-links a > span:hover, 
.post-tags a:hover {
	background-color: #e86741;
	text-decoration: none;
	color: #fff;
}
.entry-footer {
	background: rgba(231, 215, 199, 1);
}
.entry-footer .entry-more, 
.entry-footer .entry-date, 
.entry-footer .entry-category, 
.entry-footer .attachment-size, 
.entry-footer .comments-link, 
.entry-footer  .entry-views {
	float: left;
	padding: 18px 0;
	color: #AD8D79;
	font-size: 15px;
	font-weight: bold;
	background: #f6f1ed;
	border-right: 1px solid #fff;
	text-align: center;
	text-transform: uppercase;
	max-height: 58px;
}
.entry-footer .entry-views {
	border-right: none;
}
.entry-footer a {
	color: #AD8D79;
	text-decoration: none;
}
.entry-footer a:hover {
	color: #e86741;
	-moz-transition: .25s ease, margin .25s ease;
	-webkit-transition: .25s ease, margin .25s ease;
	-o-transition: .25s ease, margin .25s ease;
	-ms-transition: .25s ease, margin .25s ease;
	transition: .25s ease, margin .25s ease;
}
.entry-footer a span {
	vertical-align: middle;
}
.entry-footer .icons {
	padding-right: 15px;
	font-size: 22px;
	vertical-align: middle;
}
.entry-footer .fa-stack {
	top: -5px;
	font-size: 12px;
	width: 12px;
	height: 12px;
}
.entry-footer .fa-stack .fa-comments-o {
	left: 2px;
	font-size: 14px;
}
.post-tags {
	margin-top: 40px;
	margin-left: 40px;
}
span.edit-link:before {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	content: "\f040";
	padding-right: 5px;
	color: #F96E45;
}
span.edit-link {
	display: block;
	padding: 20px 0;
	margin-left: 40px;
}
/* Attachment */
.attachment #image-navigation {
	margin: 30px 0;
}
/* Sharing buttons  */
.entry-content.share {
	min-height: 354px;
	position: relative;
}

.entry-content.share .content {
	float: left;
	max-width: 540px;
}
.sharrre-container { 
	float: right;
	width: 70px; 
	padding: 0 10px; 
	-webkit-border-radius: 4px; 
	border-radius: 4px;
	margin: 60px 0 0 0; 
}

.sharrre-container .title { 
	color: #aaa; 
	display: block; 
	text-align: center; 
	font-size: 11px; 
}
.social-buttons span {display: none;}

.crunchify-link  { 
	width: 50px;
    height: 50px;
    display: block;
    font-size: 20px;
    line-height: 50px;
    margin-top: 7px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: #fff; 
}
.crunchify-link:hover {
	color: #fff;
	opacity: 0.85;
}
.crunchify-twitter { 
	background-color: #00acee; 
}

.crunchify-facebook{ 
	background-color: #3b5999; 
}

.crunchify-whatsapp {
	display: none; 
	background-color: #0bd560; 
}
/* Pagination */
#main .pagination {
	width: 100%;
}
#main .nav-links {
	display: inline-block;
    width: 100%;
    text-align: center;
}
#main .pagination .page-numbers {
	padding: 10px 15px;
	margin: 4px;
	text-decoration: none;
	background: #fff;
	color: #9f9183;
	display: inline-block;
	box-shadow: 0 0 6px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 6px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 6px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 6px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 6px rgba(171,139,110,.38);
}
#main .pagination .page-numbers:hover {
	background: #e86741;
	color: #FFFFFF;
}
#main .pagination .page-numbers.dots:hover {
	background: #fff;
	color: #9f9183;	
}
#main .pagination .current, 
#main .pagination .current:hover {
	color: #fff;
	background: #e86741;
}
/* Related Posts */
#related-posts {
	background: #fff;
	padding-bottom: 20px;
	margin: 0 0 3em 0;
	width: 100%;
	float: right;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
#related-posts h3.title {
	font-family: 'Roboto', helvetica, sans-serif;
	color: #fff;
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.4;
	background: #AD8D79;
	padding: 13px 30px;
	border-bottom: 7px solid rgba(0, 0, 0, 0.05);
	margin: 0;
	margin-bottom: 20px;
}
#related-posts .related-post {
	padding-left: 10px;
	padding-right: 	10px;
}
#related-posts .related-post:last-child {
	padding-right: 20px;
}
#related-posts a.related-title {
	display: block;
	padding-top: 10px;
	text-decoration: none;
}
/* Slider */
#posts-slider {
	padding: 0;
	margin: 0 0 3em 0;
}
#posts-slider .carousel-inner,
#gallery-slider .carousel-inner {
	margin: 0;
	padding: 0;
}
#posts-slider .carousel-control,
#gallery-slider .carousel-control {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: none;
	background-repeat: no-repeat;
	background-color: #4daf7b;
	top: 50%;
	margin-top: -20px;
}
#posts-slider .carousel-caption {
	font-size: 20px;
	font-size: 2rem;
	background-color: rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 5%;
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 25%;
    top: 25%;
    width: 70%;
    height: 50%;

}
.featured-post-inner,
.entry-header .entry-thumbnail {
	background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 290px;
}
/*--------------------------------------------------------------
11. Footer
--------------------------------------------------------------*/
.site-footer {
	background: #fff;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
}
#footer-ads {
    border-bottom: 1px dotted #F8F3F0;
}
#tedwinapro-ad-block {
	box-shadow: none;
	border: none;
	text-align: center;
	background: #fff;
	padding: 0;
	margin: 30px 0 20px;
}
/* Footer Widgets */
#footer-widgets {
	padding-top: 20px;
    background: #fff;
	padding-top: 20px;
}
#footer-widgets .footer-widget {
	margin: 0 0 1.5em;
	line-height: 2em;
	font-size: 16px;
	padding-bottom: 20px;
}
#footer-widgets .widget-title {
	font-family: 'Roboto', helvetica, sans-serif;
	font-weight: normal;
	margin: 5px 0 10px 0;
	font-size: 28px;
	font-size: 2.8rem;
	background: none;
	color: #e86741;
	line-height: 1.62em;
	padding: 0;
	border-bottom: none;
}
#footer-widgets .widget {
	background: none;
	border-bottom: none;
	box-shadow: none;
	color: #AD8D79;
}
#footer-widgets ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer-widgets ul li {
	margin: 0;
	padding: 3px 0; 
}
#footer-widgets ul li:hover {
	background: none;
}
#footer-widgets li,
#footer-widgets li a {
	color: #AD8D79;
}

#footer-widgets ul li a {
	display: inline-block;
	text-decoration: none;
    padding: 10px;
    line-height: 24px;
}
#footer-widgets a:hover {
	color: #e86741;
}
#footer-widgets .widget_author_biography .author-bio-desc {
	color: #AD8D79;
}
.copyrights {
    color: rgba(255, 255, 255, 0.9);
    padding: 2em 0;
    margin: 0;
}
#designed-by {
    display: inline-block;
    margin: 0;
}
#designed-by:before {
    display: inline-block;
    content: '';
    margin: 0 10px;
    width: 1px;
    height: 13px;
    vertical-align: top;
    background: #fff;
    margin-top: 5px;
}
#designed-by a {
    color: #fff;
}
.site-footer #social-icons {
	position: relative;
	right: auto;
	top: auto;
}
.site-footer #social-icons a {
	background-color: #fff;
	color: #C1A982;
	margin: 1px;
}
.site-footer #social-icons a:hover {
	color: #fff;
}
.site-info {
	padding: 60px 0 35px;
    text-align: center;
    background: #b49a77;
    background: -moz-linear-gradient(45deg, #9F8369 0%, #deca97 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#9F8369), color-stop(100%,#deca97));
    background: -webkit-linear-gradient(30deg, #9F8369 0%,#deca97 100%);
    background: -o-linear-gradient(45deg, #9F8369 0%,#deca97 100%);
    background: -ms-linear-gradient(45deg, #9F8369 0%,#deca97 100%);
    background: linear-gradient(45deg, #9F8369 0%,#deca97 100%);
    box-shadow: inset 0 6px 0 rgba(0,0,0,.1);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr= "#9F8369",endColorstr= "#deca97",GradientType=1 );
}
#footer-instagram {
	border: none;
	box-shadow: none;
}
#footer-instagram .widget-title {
	display: none;
}
#footer-instagram {
	position: relative;
	overflow: hidden;
	height: 100%;
	margin: 0;
	padding: 0;
}
#footer-instagram ul {
	position: relative;
	z-index: 1;
	max-height: 170px;
    overflow: hidden;
}
#footer-instagram ul li {
	list-style: none;
	float: left;
	width: 10%;
	overflow: hidden;
	padding: 0;
}
#footer-instagram li a {
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#footer-instagram li:hover {
	background-color: transparent !important;
}
#footer-instagram ul li img {
	opacity: 0.82;
	filter: alpha(opacity=82);
	transition: all .4s ease-in-out;
	-webkit-transition: .95s ease-out;
	-moz-transition: .95s ease-out;
	transition: .95s ease-out;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}
#footer-instagram ul li img:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	transform: scale(1.08);
}
#footer-instagram p.clear {
	display: none;
}
/*--------------------------------------------------------------
11. Comments
--------------------------------------------------------------*/
#fbcomments {
	margin: 0 0 3em 0;
	background: #fff;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
#disqus_thread {
	margin: 0 0 3em 0;
	background: #fff;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
	width: 100%;
	float: left;
}
#comments {
	float: left;
	width: 100%;
}
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
	display: block;
}
#respond {
	margin: 0 0 3em 0;
	background: #fff;
	padding: 1em 2.5em;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
#commentform {
	font-size: 	16px;
	font-size: 	1.6rem;
}
.comment-notes {
	font-size: 12px;
	font-size: 	1.2rem;
	line-height: 16px;
}
.form-allowed-tags,
.form-allowed-tags code {
	color: #B19E75;
	font-size: 12px;
	line-height: 16px;
}
.comments-area ol {
	margin-left: 0;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.comments-area ul li, 
.comments-area ol li {
	margin: 0 0 30px 0;
	list-style: none;
}
.comments-area ul.children {
	margin-top: 30px;
}
.comments-area ul.children li {
	margin-bottom: 30px;
}
.comment {
	display: block;
	min-height: 25px;
	padding: 0;
}
li.bypostauthor {
	border-bottom: 5px solid #4daf7b;
}
.comment-body {
	background: #fff;
	overflow: hidden;	
	padding: 1.5em;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
.comment .avatar {
 	float: right;
 	margin-left: 20px;
	margin-bottom: 20px;
}
cite.fn a {
	color: #5c5146;
	font-style: normal;
}
.comment-meta {
	margin-bottom: 1em;
}
a.comment-reply-link {
	float: left;
	padding: 4px 15px;
	background: #4daf7b;
	color: #FFF;
	text-decoration: none;
	border-left: 5px solid rgba(0, 0, 0, 0.05);
}
a.comment-reply-link:hover {
	color: rgba(0, 0, 0, 0.30);
}
cite.fn {
        font-weight: bold;
        font-style: normal;
}
body.dark .post-content footer .voting .vote-down, body.dark .post-content footer .voting .vote-up, body.dark .post-content footer a, body.dark .post-content header .voting .vote-down, body.dark .post-content header .voting .vote-up, body.dark .post-content header a {
	color: #909090 !important;
} 
div#layout li a > span, .community-name strong, div#no-posts, body.dark #footer ul li a  {
    color:rgba(0,0,0,0.5);
}

div#layout li a > span:hover, .community-name strong:hover, body.dark #footer ul li a:hover {
    color:rgba(0,0,0,1);
}

body.dark .nav>ul>li>a, body.dark .nav>ul>li>div>a {
    color:rgba(0,0,0,0.5)!important;
}

body.dark .nav>ul>li>a:hover, body.dark .nav>ul>li>div>a:hover {
    color:rgba(0,0,0,1)!important;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}
/* Captions */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
/* Galleries */
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.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 {
	display: block;
}
/* Mediaelement Player */
.mejs-audio .mejs-controls .mejs-time-rail .mejs-time-current {
	background: #e86741 !important;
}
.mejs-audio .mejs-controls .mejs-time-rail .mejs-time-handle {
	width: 22px !important;
	height: 22px !important;
	border-radius: 500px !important;
	background: #fff;
	display: block;
	top: -7px !important;
	border: 6px solid #e86741 !important;
}
.mejs-video .mejs-controls .mejs-time-rail .mejs-time-current {
	background: #e86741 !important;
}
.mejs-video .mejs-controls .mejs-time-rail .mejs-time-handle {
	width: 22px !important;
	height: 22px !important;
	border-radius: 500px !important;
	background: #fff;
	display: block;
	top: -7px !important;
	border: 6px solid #e86741 !important;
}
.mejs-offscreen {
	position: absolute!important;
	top: -10000px;
	overflow: hidden;
	width: 1px;
	height: 1px;
}
.mejs-controls .mejs-offscreen {
	display: none !important;
}
.wp-video {
	width: 100% !important;
}
/*--------------------------------------------------------------
13. Extras
--------------------------------------------------------------*/
.fb_iframe_widget_fluid span  {width: 100% !important;}
#smoothup {
	display: none;
	overflow: hidden;
	z-index: 999;
	padding: 0px;
	text-align: center;
	height: 40px;
	width: 40px;
	line-height: 40px;
	font-size: 25px;
	float: right;
	position: fixed;
	bottom: 50px;
	right: 20px;
	color: #fff;
	background: #4daf7b;
	box-shadow: 0 0 12px rgba(171,139,110,.38);
	-webkit-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-khtml-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-moz-box-shadow: 0 0 12px rgba(171,139,110,.38);
	-ms-box-shadow: 0 0 12px rgba(171,139,110,.38);
}
#smoothup:hover {
	background: #e86741;
	color: #fff;
}
::-webkit-scrollbar {
    width: 10px;
    height: 30px;
}
 
::-webkit-scrollbar-track {
    background: rgb(249, 244, 244);
	-webkit-box-shadow: inset 1px 1px 2px #E0E0E0;
	border: 1px solid #D8D8D8;
}
 
::-webkit-scrollbar-thumb {
    background: #4daf7b;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #4daf7b; 
}
::selection {
	background: #4daf7b;
	color: #fff;
	text-shadow: 1px 1px 0 #555;
}
::-moz-selection {
	background: #4daf7b;
	text-shadow: 1px 1px 0 #555;
	color: #fff;
}

/* = Responsive Design
----------------------------------------------- */
@media (max-width: 991px) {
	#masthead .col-xs-12 {
		text-align: center;
	}
	a.logo {
		width: 100%;
	}
	.site-branding {
		float: none;
		margin: 0;
	}
	#header-icons #searchform input#s {
		width: 100%;
	}
	#header-icons #searchform input#s:focus {
		width: 100%;
	}
	#social-icons {
		line-height: 0;
		margin-top: 100px;
		position: initial;
		right: auto;
	}
	#content #primary, #content #secondary {
		margin: 1em auto;
	}
	.entry-content.share .content {
	    max-width: 510px;
	}
}
@media (max-width: 767px) {
	.navbar-header {
		background: #4daf7b;
	}
	.navbar-toggle {
		border: 2px solid #fff;
		border-radius: 0;
		padding: 5px 15px;
	}
	.navbar-collapse {
		padding: 0;
	} 
	#access {
		display: block;
		width: 100%;
	}
	#access .dropdown-menu {
		background: rgb(236, 236, 236);
	}
	#access ul.dropdown-menu a {
		width: 100%;
	}
	#access li {
		float: none;
	}
	#access a {
		border-right: none;
		padding: 1.3em 1.5em;
	}
	.entry-footer .entry-more,.entry-footer .entry-date, .entry-footer .entry-category,
	.attachment-size, .entry-footer .comments-link,
	.entry-footer .entry-views {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.55);
		padding-left: 2em;
		text-align: left;
	}
	.entry-footer .entry-views {
		border-bottom: none;
	}
	.widget .widget-title {
		text-align: center;
	}
	#posts-slider .carousel-caption {
		font-size: 15px;
		font-size: 1.5rem;
		background-color: transparent;
	}
	.carousel-caption {
		bottom: .2em;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	#smoothup {
		bottom: 30px;
		right: 5px;
	}
	.entry-content.share .content {
		float: none;
		width: 100%;
	}
	.sharrre-container {
		left: auto !important;
		top: auto !important;
		float: none;
		width: 100%;
		text-align: center;	
	}
	.crunchify-link,
	.crunchify-whatsapp {
		display: inline-block;
		margin: 7px;
	}
	.posts-list {
		margin: 0;
	}
	#main .hentry.twocol {
		width: 100%;
	}
	#main .hentry.twocol .post-wrap {
		margin: 0 0 30px;
	}
}
@media (max-width: 620px) {
	.entry-header .entry-title, .entry-header .entry-title a {
	    font-size: 20px !important;
	}
	#content .container {
		padding-right: 0;
		padding-left: 0;
	}
	#primary.col-xs-12,
	#secondary.col-xs-12 {
		padding-right: 0;
		padding-left: 0;		
	}
	#content #primary, #content #secondary {
		margin: 1.5em auto;
	}
	#main .entry-content, #main .entry-summary {
		padding: .5em 1.5em;
	}
	.format-audio .entry-header, .format-video .entry-header {
		padding: 2.5em 1.5em;
	}
}

@media (max-width: 400px) {
	#respond input { width: 100%; }
}

