/*
Theme Name: Meek
Theme URI: https://themeforest.net/item/meek-wordpress-theme/8033713?ref=mytheme
Author: myTheme
Author URI: https://themeforest.net/user/mytheme/portfolio?ref=mytheme
Description: Responsive magazine theme. <a href="https://themeforest.net/item/meek-wordpress-theme/8033713?ref=mytheme">View details</a> <a href="https://mytheme.io/meek/wp-content/themes/meek/changelog.txt">View changelog</a>
Tags: responsive-layout, fluid-layout, custom-colors, custom-background, custom-menu, editor-style, featured-images, translation-ready, dark, light
License: GNU General Public License
License URI: license.txt
Text Domain: meek
Version: 2.0.0
*/
/*-----------------------------------------------------------------------------------*/
/*	LAYOUT
/*-----------------------------------------------------------------------------------*/
/* basics */
body {
  background: #fff;
  color: #333;
  line-height: 1.5;
  word-wrap: break-word;
}

body.dark {
  color: #ccc;
}

body::after {
  content: "";
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(images/body-top.png) repeat-x fixed;
}

body.dark::after {
  background-image: url(images/dark/body-top.png);
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
          box-sizing: border-box;
     -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* clearfixes */
.inner:after, .searchform:after, .nav:after, .page-navi:after, .widget_latest:after, .widget_commented:after, article:after, .related:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* structure */
header {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.main {
  padding: 0 1rem 3rem 1rem;
}

.inner {
  padding: 2rem 0;
}

section.related {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
}

.comments {
  background-color: rgba(0, 0, 0, 0.025);
  padding: 0 1rem;
}

aside {
  background: #eee;
  background: rgba(0, 0, 0, 0.05);
  clear: both;
  padding: 3rem 1rem;
}

.dark aside {
  background: rgba(0, 0, 0, 0.1);
}

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

/*-----------------------------------------------------------------------------------*/
/*	HEADER
/*-----------------------------------------------------------------------------------*/
/* logo */
.logo {
  display: inline-block;
  margin: 1rem 0;
  border: 0;
  transition: all 0.2s ease-in-out;
}

.logo:hover {
  opacity: 0.7;
}

.logo-text {
  text-decoration: none;
  font-size: 1.25em;
  line-height: 2;
  color: #eee;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* description */
.description {
  color: #666;
  font-style: italic;
  font-size: 0.875rem;
}

.dark .description {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

/*-----------------------------------------------------------------------------------*/
/*	NAVIGATION
/*-----------------------------------------------------------------------------------*/
.js .nav {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav.opened {
  max-height: 9999px;
}

.nav.disable-pointer-events {
  pointer-events: none !important;
}

/* navigation */
.nav {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  text-align: left;
}

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

.nav-ul li {
  width: 100%;
  display: block;
}

.nav-ul ul {
  margin: 0;
}

.nav-ul a {
  display: block;
  border: 0;
  padding: 0.5em 1em;
}

.nav-ul > li > a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-ul .sub-menu {
  padding-left: 0.5em;
}

.nav-ul .sub-menu a {
  font-weight: normal;
}

/* navigation toggle */
.nav-toggle {
  display: block;
  text-align: center;
  width: 90%;
  margin: 0 auto 1rem;
  padding: 0.5rem 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
  border: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}

.nav-toggle::after {
  font-size: 0.75rem;
  content: " \25BC";
}

.nav-toggle.active::after {
  content: " \25B2";
}

.nav-toggle, .nav {
  background-color: #fff;
}

.dark .nav, .dark .nav-toggle {
  background-color: #27292e;
  background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 960px) {
  .js .nav {
    position: relative;
    overflow: visible;
  }
  .js .nav.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
  /* navigation */
  .nav {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    background: transparent;
  }
  .dark .nav {
    background: transparent;
  }
  .nav-ul > li {
    display: inline-block;
    width: auto;
    margin: 0 0.5rem;
    position: relative;
  }
  .nav-ul > li > a {
    padding: 1rem 0.5rem;
  }
  .nav-ul a {
    display: block;
    position: relative;
    color: #333;
  }
  .dark .nav-ul > li > a {
    color: #ddd;
    color: rgba(255, 255, 255, 0.8);
  }
  /* drop-down navigation */
  .nav-ul .sub-menu {
    position: absolute;
    display: none;
    top: 100%;
    left: -0.5rem;
    z-index: 9999;
    background: #eee;
    min-width: 12rem;
    padding: 0;
  }
  .sub-menu:after {
    content: "";
    display: block;
    position: absolute;
    border: 6px solid transparent;
    border-bottom: 6px solid #eee;
    border-top-width: 6px;
    left: 1rem;
    top: -12px;
  }
  .sub-menu .sub-menu:after {
    display: none;
  }
  .nav-ul .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-left: 1px solid #ddd;
  }
  .nav-ul .sub-menu li {
    position: relative;
  }
  .nav-ul .sub-menu a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
  }
  .dark .nav-ul .sub-menu a {
    color: #666;
  }
  .nav-ul .sub-menu a:hover {
    color: #999;
  }
  .nav-ul .sub-menu li:last-child > a {
    border-bottom: 0;
  }
}

/*-----------------------------------------------------------------------------------*/
/*	CONTENT
/*-----------------------------------------------------------------------------------*/
/* default margins */
p, blockquote, ul, ol, dl, table, pre, address, hr {
  margin-bottom: 1rem;
}

/* headers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #ddd;
  color: rgba(255, 255, 255, 0.8);
}

h1 {
  font-size: 2.25rem;
  margin: 1.5rem 0 0.75rem 0;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin: 1.5rem 0 0.75rem 0;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem 0;
  line-height: 1.25;
}

h4 {
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

h5 {
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

h6 {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

h1.title {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}

h1.title-archive {
  margin: 0 0 2rem 0;
  text-align: center;
  line-height: 1;
}

/* lists */
li {
  list-style-position: inside;
}

ul ul, ol ol, ul ol, ol ul {
  margin: 0 0 0 1rem;
}

/* horizontal ruler */
hr {
  height: 5px;
  border: 0;
  background-repeat: repeat-x;
}

/* tables */
table {
  border-collapse: separate;
  border-spacing: 3px;
  width: 100%;
}

th {
  text-align: left;
}

.main th, .main td {
  padding: 0 0.25rem;
  background: rgba(0, 0, 0, 0.03);
}

.dark .main th, .dark .main td {
  background: rgba(255, 255, 255, 0.03);
}

/* code */
code {
  background: rgba(0, 0, 0, 0.03);
}

pre {
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  white-space: pre-wrap;
  background: rgba(0, 0, 0, 0.03);
  position: relative;
}

.dark pre {
  background: rgba(255, 255, 255, 0.03);
}

pre:after {
  content: "</>";
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  color: #ccc;
}

.dark pre:after {
  color: #666;
}

/* definition lists */
dt {
  font-weight: bold;
}

dd {
  margin-left: 1rem;
}

/* links */
a {
  color: #444;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a {
  border-bottom: 2px solid #ddd;
}

.dark a {
  color: #ccc;
  border-bottom-color: #555;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  color: #333;
  border: 0 !important;
}

.dark h1 a, .dark h2 a, .dark h3 a, .dark h4 a, .dark h5 a, .dark h6 a {
  color: #ddd;
  color: rgba(255, 255, 255, 0.8);
}

a:hover {
  color: #444;
  border-color: #ccc;
}

.dark a:hover {
  color: #ccc;
  border-color: #777;
  border-color: rgba(255, 255, 255, 0.2);
}

a > img {
  vertical-align: bottom;
}

a img {
  border: none;
}

/* responsive images, videos, etc. */
img, video {
  max-width: 100%;
  height: auto;
  border: 0;
}

.ie8 img, .ie8 video {
  width: auto;
}

iframe {
  border: 0;
}

/* text styles */
blockquote p, .pull-left, .pull-right {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  border-left: 10px solid #e4e4dd;
  border-color: rgba(0, 0, 0, 0.1);
  padding-left: 1em;
}

.dark blockquote p, .dark .pull-left, .dark .pull-right {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.03);
}

blockquote p:before {
  content: "\201C";
  color: #999;
}

blockquote p:after {
  content: "\201D";
  color: #999;
}

.archives-lead {
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.dark .archives-lead {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

.ingress {
  font-size: 1.25rem;
  color: #666;
}

.dark .ingress {
  color: #bbb;
  color: rgba(255, 255, 255, 0.6);
}

.pull-left, .pull-right {
  width: 40%;
  line-height: 1.25;
}

.pull-left {
  float: left;
  margin: 0 1rem 1rem 0;
}

.pull-right {
  float: right;
  margin: 0 0 1rem 1rem;
  text-align: right;
  border-left: 0;
  border-right: 10px solid rgba(0, 0, 0, 0.03);
  padding-right: 1rem;
}

/* captions  */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-bottom: 0;
  font-style: italic;
  color: #666;
}

.dark .wp-caption-text {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

.gallery-caption {
  margin-left: 0;
}

/* aligns */
.alignleft {
  float: left;
  margin: 0 2rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 2rem;
}

.aligncenter {
  display: block;
  margin: 0 auto 1rem auto;
}

.alignnone {
  display: block;
  margin: 0 0 1rem 0;
}

/* articles */
article.post {
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding: 1rem 1rem 0 1rem;
  margin-bottom: 2rem;
}

article.post h1 {
  margin: 0.5rem 0 1rem 0;
  text-align: center;
}

article .attachment-img-featured {
  display: block;
  margin-bottom: 1rem;
}

article.sticky {
  opacity: 1;
}

article .meta {
  text-align: center;
}

article .article-date {
  text-align: center;
  color: #666;
}

.dark article .article-date {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

/* meta */
.meta-hero {
  background: #f2f2f2;
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 2rem;
}

.dark .meta-hero {
  background: #323436;
  background: rgba(0, 0, 0, 0.1);
}

.meta li {
  display: inline-block;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

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

.meta li, .meta a {
  color: #666;
  font-weight: normal;
  border: 0;
}

.dark .meta li, .dark .meta a {
  color: #bbb;
  color: rgba(255, 255, 255, 0.6);
}

/* tags */
.meta-tags {
  clear: both;
}

.single .meta-tags {
  padding-top: 3rem;
  margin: 3rem auto 0 auto;
  text-align: center;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.meta-tags li {
  display: inline;
}

.meta-tags a {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  margin: 0 1rem 1rem 0;
  padding: 0.25rem 1.25rem;
  color: #eee;
  font-weight: normal;
  text-decoration: none;
  border: 0;
  -webkit-clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
          clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
  position: relative;
}

.meta-tags a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.3);
  border-right: 4px solid rgba(0, 0, 0, 0.3);
}

.single .meta-tags a {
  margin: 0 0.5rem 1rem 0.5rem;
}

.meta-tags a:hover {
  color: #ddd;
  color: rgba(255, 255, 255, 0.6);
}

/* author */
section.author {
  padding-top: 3rem;
  margin: 2rem auto 0 auto;
  text-align: center;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.author h4.author-title {
  font-size: 1.75rem;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  display: block;
}

.author .avatar {
  margin: 0 auto 0.5rem auto;
  border-radius: 50%;
  display: block;
}

.author p {
  margin-bottom: 0.5rem;
}

/* page navigation */
ul.page-numbers, .page-navi {
  clear: both;
  margin: 3rem 0;
  text-align: center;
}

.page-numbers li, .page-navi li {
  display: inline-block;
  margin: 0 0.25rem 1rem 0.25rem;
  color: #999;
}

.dark .page-numbers li, .dark .page-navi li {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

.page-numbers a, .page-navi a {
  color: #666;
  text-decoration: none;
  border: 0;
  font-weight: normal;
  padding: 0.375rem 0.75rem;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.05);
}

.dark .page-numbers a, .dark .page-navi a {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.page-numbers .current, .page-numbers.dots {
  color: #bbb;
  font-weight: bold;
}

.dark .page-numbers .current, .dark .page-numbers.dots {
  color: #666;
  color: rgba(255, 255, 255, 0.3);
}

/* related posts */
.related-item.one_third {
  margin-bottom: 2rem;
  text-align: center;
}

.related-item img {
  display: block;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
}

.related-item a:hover img {
  opacity: 0.7;
}

.related-item-date {
  display: block;
  color: #666;
  font-weight: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
}

.dark .related-item-date {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

/* alerts */
.alert {
  padding: 0.5rem;
  color: #333;
}

.alert.red {
  background: #ffe2e2;
}

.alert.green {
  background: #e5ffe2;
}

/*-----------------------------------------------------------------------------------*/
/*	HERO IMAGE
/*-----------------------------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  clear: both;
  width: auto;
  margin-top: -2rem;
}

.attachment-img-hero {
  display: block;
  margin: 0;
  width: auto;
  height: auto;
  float: left;
  max-width: none;
  height: 280px;
}

.hero h1 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem 1rem;
  width: 100%;
  background: rgba(42, 45, 50, 0.5);
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
}

/* hero title */
.hero h1 a {
  color: #fff;
}

.hero h1 a:hover {
  color: #ddd;
  color: rgba(255, 255, 255, 0.7);
}

/*-----------------------------------------------------------------------------------*/
/*	COMMENTS
/*-----------------------------------------------------------------------------------*/
.comments-title, .related h2 {
  position: relative;
  margin-bottom: 2rem;
  padding-top: 1.25rem;
  text-align: center;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

h3.comment-reply-title {
  margin: 0.25rem 0 0.75rem 0;
}

.commentlist {
  margin: 0;
  list-style: none;
}

.commentlist ul {
  list-style: none;
  margin: 0;
}

.commentlist li li {
  position: relative;
  padding-left: 1.5rem;
}

.commentlist li li::after {
  content: "\21aa";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

.dark .commentlist li li::after {
  color: #666;
}

article.comment {
  margin-bottom: 1.5rem;
}

.comment-body p {
  margin-bottom: 0.5rem;
}

/* comment author */
.comment-author {
  margin-bottom: 0.5rem;
}

.comment-author cite {
  font-style: normal;
  font-weight: bold;
  display: inline-block;
}

.comment-author .avatar {
  float: left;
  margin: 0 1rem 0.5rem 0;
  border-radius: 50%;
}

/* comment by post author */
.bypostauthor .comment-by-author {
  display: inline-block;
  background: #ddd;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  font-weight: normal;
  border-radius: 2px;
  color: #666;
}

.dark .bypostauthor .comment-by-author {
  color: #999;
  background: #b6b8ba;
  background: rgba(255, 255, 255, 0.1);
}

/* comment time */
.comment-time, .comment-reply-link {
  color: #666;
  font-weight: normal;
  font-size: 0.875rem;
  border: 0;
}

.dark .comment-time, .dark .comment-reply-link {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

.comment-reply-link {
  margin-left: 0.5rem;
}

/* reply to comment */
#cancel-comment-reply-link {
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  vertical-align: bottom;
  margin-left: 0.25rem;
}

.comment-pages {
  text-align: center;
}

/*-----------------------------------------------------------------------------------*/
/*	ASIDE
/*-----------------------------------------------------------------------------------*/
.widget-container {
  clear: both;
  margin-bottom: 2rem;
}

.widget-container h3 {
  margin: 0 0 1.25rem 0;
}

footer {
  clear: both;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

footer, footer a {
  color: #999;
}

.dark footer, .dark footer a {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
}

/*-----------------------------------------------------------------------------------*/
/*	WIDGETS
/*-----------------------------------------------------------------------------------*/
/* custom social links widget */
.meek-social-menu li {
  display: inline;
}

.meek-social-menu a {
  display: inline-block;
  margin: 0 1rem 1rem 0;
  border: 0;
}

.meek-social-menu a:hover {
  opacity: 0.7;
}

.author .meek-social-menu a {
  margin: 1rem 0.5rem;
}

/* custom post-it widget */
.meek-widget-postit {
  background: #fff8cf;
  padding: 0 25px;
  margin: 66px 0 60px 0;
  position: relative;
  max-width: 400px;
}

.one_third > .meek-widget-postit:first-child {
  margin-top: 17px;
}

.meek-widget-postit:after {
  content: "";
  position: absolute;
  background: url(images/sprite.png) 0 -50px no-repeat;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 30px;
}

.meek-widget-postit-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 25px;
}

.meek-widget-postit-inner:after {
  content: "";
  position: absolute;
  background: url(images/sprite.png) no-repeat;
  top: -34px;
  left: -40px;
  width: 85%;
  height: 49px;
}

.meek-widget-postit-inner:before {
  content: "";
  position: absolute;
  background: url(images/sprite.png) 100% 0 no-repeat;
  top: -34px;
  right: -35px;
  width: 85%;
  height: 49px;
}

.meek-widget-postit-inner h3, .meek-widget-postit-inner p, .meek-widget-postit-inner {
  color: #66644d !important;
  border-color: #ded8b4 !important;
}

.meek-widget-postit-inner h3 {
  padding: 0;
  margin: 0 0 0.5rem 0;
  background: none;
}

.meek-widget-postit-inner p {
  margin: 0.5rem 0 0 0;
}

.meek-widget-postit-inner a {
  color: #66644d;
  border-color: #9e9c7e;
}

/* custom flickr widget */
.meek-widget-flickr .flickr_badge_image {
  display: inline-block;
  margin: 0 1rem 1rem 0;
}

.meek-widget-flickr .flickr_badge_image a:hover {
  opacity: 0.7;
}

/* calendar widget */
.widget_calendar caption {
  text-align: left;
}

.widget_calendar table {
  width: 100%;
  border-collapse: collapse;
}

.widget_calendar th {
  text-align: left;
}

.widget_calendar #next {
  text-align: right;
}

/* rss widget */
.widget_rss li {
  margin: 0.5rem 0;
}

.rss-date {
  display: block;
}

/* recent posts widget */
.widget_recent_entries .post-date {
  display: block;
  font-weight: normal;
}

/* recent posts widget */
.widget_tag_cloud a {
  margin: 0 0.5rem 0 0;
}

/*-----------------------------------------------------------------------------------*/
/*	FORMS
/*-----------------------------------------------------------------------------------*/
input, textarea, button, select {
  font-family: inherit;
  font-size: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease-in-out;
}

label {
  font-weight: bold;
}

.wpcf7-form-control-wrap, .comment-form input, .comment-form textarea {
  display: block;
  margin-top: 0.5rem;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

input[type="text"], input[type="email"], textarea, .searchform {
  background: rgba(0, 0, 0, 0.025);
  color: #333;
  padding: 0.75rem 1rem;
  width: 100%;
  border: 0;
}

.dark input[type="text"], .dark input[type="email"], .dark textarea, .dark .searchform {
  background: rgba(255, 255, 255, 0.025);
  color: #ddd;
  color: rgba(255, 255, 255, 0.8);
}

::-moz-placeholder {
  opacity: 1;
}

input:focus, textarea:focus {
  outline: none;
}

/* submit button */
#submit, .form-submit input[type="submit"], .wpcf7-submit {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #333;
  margin-bottom: 1rem;
  border: 0;
  background: #e7e7e7;
  border-radius: 2px;
}

p.form-submit {
  margin: 0;
}

/* search */
.searchform {
  padding: 0;
}

.searchform .s {
  margin: 0;
  width: 80%;
  float: left;
  background: none;
  border: 0;
}

.dark .searchform .s {
  background: none;
  border: 0;
}

button.searchsubmit {
  width: 15%;
  float: right;
  background: transparent;
  margin-bottom: 0;
  border: 0;
  padding: 0.75rem;
  cursor: pointer;
}

.dark button.searchsubmit .meek-svg-icon {
  fill: #eee;
}

/*-----------------------------------------------------------------------------------*/
/*	ICONS
/*-----------------------------------------------------------------------------------*/
svg.meek-svg-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.meta svg.meek-svg-icon {
  fill: #666;
  width: 24px;
  height: 24px;
  margin-right: 0.25rem;
  vertical-align: bottom;
}

.meek-social-icon {
  fill: #eee;
  background: #666;
  display: block;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 7px 0;
  line-height: 1;
  text-align: center;
  margin-right: 0.5rem;
  border: 0;
}

.meek-social-icon:hover {
  opacity: 0.7;
}

.dark .meek-social-menu-grayscale .meek-social-icon {
  background: #999;
  fill: #333;
}

.meek-social-menu-color .meek-social-icon-facebook {
  background: #3b5998;
}

.meek-social-menu-color .meek-social-icon-instagram {
  background: #e4405f;
}

.meek-social-menu-color .meek-social-icon-pinterest {
  background: #bd081c;
}

.meek-social-menu-color .meek-social-icon-twitter {
  background: #1da1f2;
}

.meek-social-menu-color .meek-social-icon-google {
  background: #dc4e41;
}

.meek-social-menu-color .meek-social-icon-rss {
  background: #ffa500;
}

.meek-social-menu-color .meek-social-icon-flickr {
  background: #0063dc;
}

.meek-social-menu-color .meek-social-icon-vimeo {
  background: #1ab7ea;
}

.meek-social-menu-color .meek-social-icon-youtube {
  background: #f00;
}

.meek-social-menu-color .meek-social-icon-vk {
  background: #6383a8;
}

.meek-social-menu-color .meek-social-icon-tumblr {
  background: #36465d;
}

.meek-social-menu-color .meek-social-icon-linkedin {
  background: #0077b5;
}

.meek-social-menu-color .meek-social-icon-dribbble {
  background: #ea4c89;
}

.meek-social-menu-color .meek-social-icon-bandcamp {
  background: #408294;
}

.meek-social-menu-color .meek-social-icon-itunes {
  background: #000;
}

.meek-social-menu-color .meek-social-icon-lastfm {
  background: #d51007;
}

.meek-social-menu-color .meek-social-icon-lastfm {
  background: #d51007;
}

.meek-social-menu-color .meek-social-icon-quora {
  background: #b92b27;
}

.meek-social-menu-color .meek-social-icon-soundcloud {
  background: #f30;
}

/*-----------------------------------------------------------------------------------*/
/*	MEDIA QUERIES
/*-----------------------------------------------------------------------------------*/
@media screen and (min-width: 500px) {
  .inner, header {
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .attachment-img-hero {
    height: 100%;
  }
  .meta li.meta-comments {
    display: inline-block;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .main {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem 3rem 1rem;
  }
  article.post {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 660px) {
  .main {
    width: 600px;
    padding-left: 0;
    padding-right: 0;
  }
  .hero h1 {
    width: 600px;
    position: absolute;
    left: 50%;
    margin-left: -300px;
  }
  .meta li {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 2rem;
  }
}

@media screen and (min-width: 760px) {
  .inner, header {
    max-width: none;
  }
  .inner {
    width: 720px;
  }
  aside {
    padding-left: 0;
    padding-right: 0;
  }
  /* navigation */
  .nav {
    width: 600px;
    margin: 0 auto;
  }
  /* featured-content */
  .featured-content {
    margin-bottom: 4rem;
  }
  /* columns */
  .one_half, .one_third {
    float: left;
    display: block;
    width: 47.5%;
    margin-right: 5%;
  }
  .one_third {
    width: 30%;
  }
  .last {
    margin-right: 0;
  }
  .clear {
    clear: both;
  }
  /* articles */
  .article-grid {
    width: 720px;
    margin: 0 auto;
  }
  .article-grid article {
    display: block;
    width: 46%;
    float: left;
    margin-right: 8%;
  }
  .article-grid article.article-odd {
    float: right;
    clear: right;
    margin-right: 0;
  }
  .article-single {
    width: 331px;
    margin: 0 auto;
  }
  article.post {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 960px) {
  /* header */
  header {
    width: 100%;
    padding: 1rem 0 1rem 0;
  }
  .inner {
    width: 92%;
  }
  .article-grid {
    width: 92%;
    margin: 0 auto;
  }
  .article-single {
    width: 497px;
  }
  .related .inner {
    width: 600px;
  }
  /* hero */
  .hero {
    max-width: 1080px;
    margin: 0 auto;
  }
  .attachment-img-hero {
    height: auto;
  }
  /* author */
  .author {
    width: 70%;
  }
}

@media screen and (min-width: 1160px) {
  header {
    padding: 3rem 0 2rem 0;
  }
  .inner {
    width: 1080px;
    padding: 3rem 0;
  }
  .main {
    width: 600px;
  }
  footer {
    padding-top: 2rem;
  }
  .commentlist, .comment-respond {
    width: 600px;
    margin: 0 auto;
  }
  /* hero */
  .hero {
    width: 1080px;
    position: relative;
  }
  .hero h1 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  /* articles */
  .article-grid {
    width: 1080px;
  }
  .article-single {
    width: 497px;
  }
  .related .inner {
    width: 600px;
  }
}